/**
 *	CSS for Happy Factor, Infoviz lab 2
 *	1010x544 resolution
 *	Alexandre Andrieux @ Feb. 2015
 */

/*** Skeleton ***/
 
*,
body,
html{
	margin:0;
	padding:0;
	white-space:nowrap;
	position:absolute;
	font-family: 'Yanone Kaffeesatz', sans-serif;
	font-family: 'Playball', sans-serif;
	overflow:hidden;
	/* No selection */
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	/* No unwanted drag */
	-webkit-user-drag: none;
	user-drag: none;
	cursor:default;
}
html,
body{
	height:100%;
	width:100%;
	background:rgba(250,250,250,1);
}
#whole{
	/* THERE IS NO zoomCheat.js FOR THIS APP */
	width:100%;
	height:100%;
	box-shadow:rgba(0,0,0,0.8) 0px 0px 15px;
}

/*** Actual content! ***/

.loading{
	width:100%;
	height:100%;
	display:none;
}
.loading p{
	font-size:50px;
	width:100%;
	text-align:center;
	color:rgba(0,0,0,0.6);
	top:200px;
	animation:blink 1s alternate infinite;
	-webkit-animation:blink 1s alternate infinite;
}
@keyframes blink{
  from{opacity:0.2;}
  to{opacity:1;}
}
@-webkit-keyframes blink{
  from{opacity:0.2;}
  to{opacity:1;}
}
.loadstate .loading{
	display:inherit;
}
.header{
	width:100%;
	height:10%;
}
.header p.hp{
	font-size:30px;
	left:15%;
	top:12%;
	text-shadow:rgba(0,0,0,0.5) 0px 0px 1px;
}
.header p.sub{
	color:rgba(0,0,0,0.5);
	top:40%;
	font-size:12px;
	left:33%;
}

.parapara{
	width:90%;
	left:5%;
	height:65%;
	top:10%;
	background:rgba(0,50,80,0.05);
	box-shadow:rgba(0,0,0,0.5) 0px 0px 8px;
}
.loadstate .parapara{
	display:none;
}
.controls{
	width:100%;
	height:10%;
	top:90%;
}
.c1{
	height:100%;
	width:33%;
}
.c2{
	height:100%;
	width:33%;
	left:33%;
}
.c3{
	height:100%;
	width:33%;
	left:66%;
	position:relative;
}
.controls p{
	width:90%;
	left:5%;
	height:50%;
}
.controls input{
	width:90%;
	left:5%;
	height:50%;
	top:50%;
}
.c3 select{
	width:100%;
	height:50%;
}
.c3 option{
	width:100%;
	height:100%;
}
.info{
	width:100%;
	height:25%;
	top:75%;
}
.info p{
	position:relative;
	text-align:center;
	top:10%;
	width:90%;
	left:5%;
	white-space: pre-wrap;
	font-family: 'Yanone Kaffeesatz', sans-serif;
}
.info p:nth-of-type(3),
.info p:nth-of-type(4),
.info p:nth-of-type(5),
.info p:nth-of-type(6){
	top:20px;
	color:rgba(0,0,0,0.5);
	font-size:10px;
}
.info p span{
	position:relative;
	color:rgba(50,100,0,0.9);
	font-size:11px;
}