/**
 * 100% height layout with header and footer
 * ----------------------------------------------
 * Feel free to copy/use/change/improve
 */

html,body {
	margin:0;
	padding:0;
	height:100%; /* needed for container min-height */
	background:#0d114c;
	font-family:arial,sans-serif;
	font-size:small;
	color:#000;
}

h1 { 
	font:1.5em georgia,serif; 
	margin:0.5em 0;
}

h2 {
	font:1.25em georgia,serif; 
	margin:0 0 0.5em;
}


a { 
	line-height:1.5; 
	margin:0 0 1em;
	color: #000000;
	text-decoration: none;
	font-size: 15px;
	
}

div#container {
	position:relative; /* needed for footer positioning*/
	margin:0 auto; /* center, not in IE5 */
	width:870px;
	background:#0d114c;
	
	height:auto !important; /* real browsers */
	height:100%; /* IE6: treaded as min-height*/
	padding:0px;
	min-height:100%; /* real browsers */
}

div#header {
	padding:0;
	background:#fff ;
	height: 320px;
	

}
div#header p {
	font-style:italic;

	margin:0;
	}

div#content {
	margin:0;
	background: #ffd300;
	height: 270px;
	padding-left:0px;
	padding-top: 0px;
	padding-left: 0px;
	padding-right: 80px;
	overflow: auto;
}
div#content p {
	text-align:justify;

	}

div#menu {
	
	padding-left: 40px;
	padding-top: 40px;

}
div#footer {
	position:absolute;
	top: 641px;
	width:100%;
	bottom:0; /* stick to bottom */

}
	div#footer p {
	padding:1em;
	margin:0;
	}
	
div#text {
	text-align: justify;
/*	padding-left: 40px;*/
/*	padding-top: 30px;*/

	
	
}

