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

html,body {
	margin:0;
	padding:0;
	height:100%;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:small;
	color:#666;
	background-color: #F0F0F0;
}

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

h2 {
	font:1.25em georgia,serif; 
	margin:0 0 0.5em;
}
	h1, h2, a {
	color:#666666;
	}

p { 
	line-height:1.5; 
	margin:0 0 1em;
}

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

div#header {
background-color:#000000;
height:130px;
}
	div#header p {
		font-style:italic;
		font-size:1.1em;
		margin:0;
	}
	
div#nav {
background-color:#000000
}
div#media {
background-color:#000000
}
div#content {
	padding:1em 1em 5em; /* bottom padding for footer */
	margin-top:50px;
}
	div#content p {
		text-align:justify;
		padding:0 1em;
	}
	
div#title {
}

div#body {
margin-top:25px;
}
div#footer {
	position:absolute;
	width:100%;
	bottom:0; /* stick to bottom */
	background-color:#E8E8E8;
	color:#FFFFFF;
	border-top:1px gray;
	font-size:9px;
}
	div#footer p {
	padding-left:1em;
	padding-top:1em;
	}
	
	div#headlogo  
{
	position: absolute;
	top: 170px;
	right:10px;
 }

