/*/////////////////////////////////////////////////////////////////*/
/*///////////////////////// GENERAL ///////////////////////////////*/
/*/////////////////////////////////////////////////////////////////*/


html, body { 			/* -- HIDE SCROLLBAR ON IE -- */
	height:100%; 
	width:100%; 
	overflow:auto; 
} 

body {
	margin: 0px;
	background: #FFF;
	font-family: Arial, Verdana, Helvetica, sans-serif;
	font-size: 12px;
	color: #454545;
}



/*/////////////////////////////////////////////////////////////////*/
/*////////////////////// GLOBAL LAYOUT ////////////////////////////*/
/*/////////////////////////////////////////////////////////////////*/


#navigation {
	position: fixed;
	margin: 0px;
	padding: 0px;
	top: 0px;
	width: 40%;
	height: 100%; 
	background: #F5F5F5;
	overflow: auto;
}

#container {
	position: fixed;
	top: 0px;
	bottom: 30px;
	left: 40%;
	width: 60%;
	overflow: auto;
	overflow-x: hidden; 
}

#content {
	width: 500px;	/*420px; */
	padding: 35px;
}

#footer {
	position: fixed; 
	bottom: 0px; 
	left: 40%; 
	width: 60%; 
	height: 23px; 
	background: #7A7A7A; 
	padding-left: 35px;
	padding-top: 7px;
	color: #FFF;
}

#copyright {
	position: fixed;
	width: 40%;
	height: 20px;
	bottom: 0px;
	padding-left: 35px;
	padding-top: 10px;
	background: #7A7A7A;
	font-size: 9px;
	color: #B2B2B2;
}

hr {
	display: none;
}








