﻿  /* CSS layout */
html {
	height: 100%;
}
body {
	margin: 0px;
	padding: 0px;
	height: 100%;
	font-family: 'Open Sans', sans-serif;
}

#logoImg {
    position: absolute;
    left: 0px;
    top: 30px;
    width:300px;
    padding: 5px;
}

#left_col {
    position: absolute;
    left: 0px;
    top: 200px;
	font-family: 'Open Sans', sans-serif;
	font-size: 12px;
	width: 200px;
}

#top_nav {
    clear: both;
	font-family: 'Open Sans', sans-serif;
	font-size: 12px;
	height: 20px;
	padding: 5px;
	padding-left: 220px;
	background-color: rgba(150, 150, 150, 1);
}

#container {
	min-width: 600px;
	font-family: 'Open Sans', sans-serif;
	font-size: 12px;
	height: 80%;
}


#page_content {
    position: absolute;
    left: 220px;
    top: 40px;
    overflow: auto;
    overflow-x: auto;
    -webkit-overflow-scrolling:touch;
    height: calc( 100vh - 20px - 20px );
    width: calc( 100vw - 200px - 20px );
    font-family: 'Open Sans', sans-serif;
}

#I1 {
    width: 98%;
    height: 93%;
	font-family: 'Open Sans', sans-serif;
}

#footer {
    position: absolute;
    left: 0px;
    top: calc( 100vh - 20px - 20px );
	font-family: 'Open Sans', sans-serif;
	font-size : 10px;
	text-align: center;
    height: 20px;
    width: 100%;
}

