/*
html,body {
    height:100%;
}
*/

.clearfix {
    content: "";
    clear: both;
    display: table;
}

html {
	min-width: 100%;
	width: 100%;
	margin: 0 0 0 0;
}

body {
	margin: 0 0 0 0;
	/*min-width: 100%;*/
	/*width: 100%;*/
}

header {
	overflow: hidden;

	background-image: url('/images/Fire.JPG');
	background-color:#000000;
	background-position: left;
	background-size: auto 100%;
	background-repeat: no-repeat;
	/*width: 100%;*/
	min-width: 100%;
	color: #00ddff;
	margin: 0 0 0 0;
	position: fixed;
	position: relative; /* must be for children to be absolute*/
	z-index: 0; /*Below `top-of-header` and `header-gradient` */
	clear: right;
}

h1 {
	font-family: arial, times, sans-serif;
}

#top-of-header {
	height: 85%;
	z-index: 4; /* Above `header` and `header-gradient` */
}

#left-header-block {
	/*position: absolute;*/
	height: 85%;
	width: 100%;
	padding-left: 20px;
	z-index: 2;  /* Must be below `nav-bar` */
	display: flex;
	
	/*
	This is needed when a padding is specified because padding
	fucks with the width of this element *AFTER* the sizing is done,
	resulting in the fade element being pushed to the next row.
	Solution from <http://stackoverflow.com/questions/31479394>
	*/
	/*box-sizing: border-box;*/
}

#left-header-text {
	/*margin: 30 30 30 30;*/
	/*vertical-align: middle;*/
	/*transform: translate(0%, 30%)*/
}

#left-header-text h1{
	color: rgb(255,246,240);
}

#left-header-text h2{
	color: rgb(250, 200, 100);
}

#left-header-text h3{
	color: rgb(250, 140, 50);
}

#header-gradient {
	position: absolute;
	float: right;
	left: 60%;
	background: -webkit-linear-gradient(left, rgba(0, 0, 255, 0.0), rgba(30, 0, 0, 1.0));
	background: -moz-linear-gradient(left, rgba(0, 0, 255, 0.0), rgba(30, 0, 0, 1.0));
	background: -o-linear-gradient(left, rgba(0, 0, 255, 0.0), rgba(30, 0, 0, 1.0));
	background: linear-gradient(to right, rgba(0, 0, 255, 0.0), rgba(30, 0, 0, 1.0));
	background: rgba(0,0,0,0);
	width: 40%;
	height: 100%;
	z-index: -1;
}

#canvas-div {
	z-index: 2;
}

#sim-canvas {
	position: absolute;
	float: right;
	width: 2000px;
	height: 100%;
	left: 250px;
	z-index: 2;
}

#under-header-bar {
	height: 20px;
	margin: 0px;
}