@charset "utf-8";
/* CSS Document */
	html {
		background-image: url("imgs/Background_HiRes.png");
		background-repeat: no-repeat;
		background-position: center center;
		background-attachment: fixed;
		-webkit-background-size: cover;
		moz-background-size: cover;
		-o-background-size: cover;
		background-size: cover;
	}

	html, body{
		border:none;
		padding:0; 
		margin:0;
		color: white;
		font-weight: 300;
		font-family:"Roboto",sans-serif;
	}

#title-wrapper {
	width: 100%;
	margin: 0;
	padding: 20px;
	background-color: rgba(15, 17, 46, 1);
}

.site-header {
	width: 100%;
	margin: 0;
	padding-top: 0;
	padding-bottom: 0;
	padding: 0;
}

.logo {
	box-sizing: border-box;
	max-height: 100%;
	max-width: 100%;
	margin: 0;
	padding-left: 0px;
	padding-right: 30px;
	padding-top: 0;
	padding-bottom: 0px;
	width: 300px;
}

	h1 {
	font-family: futura-book, Arial, Helvetica, sans-serif;
		font-weight: 400;
		letter-spacing: .1px;
		font-style: normal;
		color:#FFFFF;
	}

#testWrapper {
	padding-top: 35px;
	padding-right:0;
	padding-left: 0;
	margin: 0;
	text-align:center;
}

#startStopBtn{
		display:inline-block;
		margin:0 auto;
		color:#FFFFFF;
		background-color:rgba(241, 138, 0, 1);
		border:1px solid transparent;
		border-radius:25px;
	
		transition:all 0.3s;
		box-sizing:border-box;
		text-transform: uppercase;
		width:6em; height:2em;
		line-height: 1.9em;
		cursor:pointer;
		box-shadow: 0 0 0 rgba(0,0,0,0.1), inset 0 0 0 rgba(0,0,0,0.1);
	}
	#startStopBtn:hover{
		box-shadow: 0 0 2em rgba(0,0,0,0.1), inset 0 0 1em rgba(0,0,0,0.1);
	}
	#startStopBtn.running{
		background-color:#FF3030;
		border-color:#FF6060;
		color:#FFFFFF;
	}
	#startStopBtn:before{
		content:"Start";
	}
	#startStopBtn.running:before{
		content:"Abort";
	}
	#test{
		margin-top:2em;
		margin-bottom:12em;
	}
	div.testArea{
		display:inline-block;
		width:16em;
		height:12.5em;
		position:relative;
		box-sizing:border-box;
		background-image: url("imgs/Gauge_bg.png");
		background-repeat: no-repeat;
		background-position: top center;
		background-size: cover;
	}
	div.testArea2{
		display:inline-block;
		width:14em;
		height:7em;
		position:relative;
		box-sizing:border-box;
		text-align:center;
	}
	div.testArea div.testName{
		position:absolute;
		top:0.1em; left:0;
		width:100%;
		font-size:1.4em;
		z-index:9;
	}
	div.testArea2 div.testName{
        display:block;
        text-align:center;
        font-size:1.4em;
	}
	div.testArea div.meterText{
		position:absolute;
		bottom:1.55em; left:0;
		width:100%;
		font-size:2.25em;
		z-index:9;
	}
	div.testArea2 div.meterText{
        display:inline-block;
        font-size:2.5em;
	}
	div.meterText:empty:before{
		content:"0.00";
	}
	div.testArea div.unit{
		position:absolute;
		bottom:2em; left:0;
		width:100%;
		font-size: 12.5px;
		line-height: 1.25em;
		z-index:9;
	}
	div.testArea2 div.unit{
		display:inline-block;
	}
	div.testArea canvas{
		position:absolute;
		top:0; left:0; width:100%; height:100%;
		z-index:1;
	}
	div.testGroup{
		display:block;
        margin: 0 auto;
	}

	/* Landspace tablets and Medium Desktops */
	@media all and (min-width: 992px) and (max-width:1199px) {
		html{
			background-image: url("imgs/Background.png");
			background-repeat: no-repeat;
			background-position: center center;
			background-attachment: fixed;
			-webkit-background-size: cover;
			moz-background-size: cover;
			-o-background-size: cover;
			background-size: cover;
			background-color: rgba(9, 19, 42, 1);
		}
	
	}

	@media all and (max-width:400px){
		html {
			background-image: none;
			background-color: rgba(15, 17, 46, 1);
		}
		
		body #title-wrapper .site-header{
			box-sizing: border-box;
			margin: 0 auto 0 auto;
			max-width: 100%;
		}
		
		.logo {
			box-sizing: border-box;
			max-height: inherit;
		}
	}