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

html,body {
	text-align: center;
	margin:0;
	padding:0;
	height:100%; /* needed for container min-height */
	background:black;
	font-family:Times New Roman,arial,sans-serif;
	font-size:small;
	color:#090973;
}


div#container {
	position:relative; /* needed for footer positioning*/
	margin:0 auto; /* center, not in IE5 */
	margin-left: auto;
	margin-right: auto;
	width:750px;
	background:#f0f0f0;
	
	height:auto !important; /* real browsers */
	height:100%; /* IE6: treated as min-height*/

	min-height:100%; /* real browsers */
}

div#header {
	padding: 0 0 .2em 0;
	background:#b5c2df;
/*	background:#dddddd; */
	border-bottom:1px solid gray;
	height: 100px;
}
	div#header p {
		padding:0em;
		margin:0;
		line-height: 1;
	/*	background:#b5c2df;  */
	/*	background:#dddddd; */
		font-size: 30px;
		font-family: Times New Roman;
		font-style: oblique;
		letter-spacing: .1ex;
		font-weight:bold;
		color:#090973;
	}

div#menu {
	padding: 0 0 .2em 0;
/*	background:#b5c2df; */
	background:#dddddd; 
	border-bottom:1px solid gray;
	clear: both;
}
	div#menu a {
	font: 0.8em Tahoma, sans-serif;
	font-size: 11px;
	font-weight:bold;
	color:#999999;
	text-decoration:none;
	}
	div#menu a:hover{
	text-decoration:underline;
	}
	

div#content {
	padding:1em 1em 5em; /* bottom padding for footer */
}
	div#content p {
		text-align:justify;
		padding:0 1em;
	}
	div#content a:hover{
	text-decoration:underline;
	}

div#footer {
	position:absolute;
	padding: .1em 0 .5em 0;
	width:750px;
	bottom:0; /* stick to bottom */
	background:#ddd;
	border-top:1px solid gray;
}
	div#footer p {
		padding:1em;
		margin:0;
	}
	div#footer a {
	font: 0.8em Tahoma, sans-serif;
	font-size: 11px;
	font-weight:bold;
	color:#999999;
	text-decoration:none;
	}
	div#footer a:hover{
	text-decoration:underline;
	}
	