
/*--------------------
	Color palette
--------------------*/
.orange{background:#FFAA69;}
.gray{background:#212121;}
.black{background:#333333;}
.white{background:#F2F2F2;}
.blue{background:#0148A5;}
.green{background:#8FB557;}
.red{background:#b26357;}

/*--------------------
	System styles
--------------------*/
html{
	margin:0;
	padding:0;
	min-width:100%;
	min-height:100%;
	font-size:calc(12px + .5vw);
	font-family: 'Abel', sans-serif;	
}
body{
	margin:0;
	padding:0;
    height:100%;
    overflow:auto;	
}
h1{}
h2{}
h3{}
a:link{color:white;}
a:visited{color:white;}
a:active{color:white;}
a:hover{}

/*--------------------
	Mobile & Tablet overrides
--------------------*/

/*Phone*/
@media only screen and (max-width: 480px){
	
}

#page_content{
	float:left;
	width:100%;
	height:100%;
	position:relative;
}

/*Main Window*/
#overlay{
	width:100%;
	position:absolute;
	top:0;
	left:0;
	background:white;
	display:none;
	z-index:0;
}

/*Window Content*/
#overlay_content{
	width:100%;
}

#overlay_content img{
	float:left;
	width:100%;
	margin-top:1vh;
}