html, body {height: 100%;}
html { 
	background-color: rgb(0,0,0);
	color: rgb(255,255,255);
	font-family: Helvetica;
}

a {
	color: rgb(200,200,220);
	text-decoration:underline;
}

a:hover{
	color: rgb(150,150,250);
	text-decoration: none;
}
a:active{
	color: rgb(150,150,250);
	text-decoration:none;
}

img{
	text-align:center;	
}

#page{
	width: 800px ;
	margin-left: auto ;
	margin-right: auto ;
	min-height: 100%;
}

#header{	
	padding: 5px 10px 5px 10px;
	margin-bottom: 5px;
	text-align:right;
}

#mainBody{
	overflow:auto;
	padding-bottom: 100px;	
}

#menuList{	
	float:left;
	padding: 5px 5px 5px 5px;
	list-style-type: none;	
	width: 20%;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

#menuList li{
	background-color: rgb(50,50,100);
	padding: 4px 4px 4px 6px;
	margin: 5px 0 0 0;
	border-left-style:solid;
	border-color: rgb(50,75,150);
	border-width:3px;
}

#menuList li:hover {
	background-color: rgb(50,100,200);
	-webkit-transition: background-color;
	-webkit-transition-timing-function: ease-out;
	-webkit-transition-duration: 300ms;
}

#content{
	background-color: rgb(50,75,150);
	padding: 0 10px 0 10px;
	margin-left:165px;
	min-height: 300px;
	border-style:solid none;
	border-width:3px;
	border-color: rgb(50,50,100);
	text-indent: 15px;
	text-align: justify;
}

#footer{
	margin-left:165px;
	position: relative;
	margin-top: -100px;
	height: 100px;
	clear:both;
	text-align:center;
	font-size: 10px;	
}

body:before {
	content:"";
	height:100%;
	float:left;
	width:0;
	margin-top:-32767px;/
}