/**
 * 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: #ffffff;
	font-family:arial,sans-serif;
	font-size:12px;
	color:#000000;
}

/* main table */

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

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

div#header {
	width:800px;
	height:110px;
	background: url("./graphics/header.gif") no-repeat;
	margin: 0 auto 0 auto;
}
	
div#content {
	padding:0 0 50px 0; /* bottom padding for footer */
	margin: 0 auto 0 auto;
	background: url("./graphics/bodybg.gif") no-repeat;
}

div#footer {
	position:absolute;
	width:800px;
	height:38px;
	bottom:0; /* stick to bottom */
	border-top: 1px solid 064666;
	background: #ffffff;
	font-size:10px;
	margin: 0 auto 0 auto;
}








/* content formatting */

#pagecontent {
	width: 690px;
	padding: 20px 50px 20px 60px;
	overflow: auto;
	line-height:15px;
}

#right_foot {
	color: #2a363b;
	float: right;
	padding-top: 8px;
	padding-right:20px;
}

#left_foot {
	color: #2a363b;
	float: left;
	padding-top: 8px;
	padding-left:20px;
}



#clear {
	clear: both;
}






/* text styles */



a {
	color: #00498a;
	text-decoration: underline;
}
a:hover {
	color: #c50000;
	text-decoration: underline;
}

a.imedia {
	color: #2a363b;
	text-decoration: underline;
}
a.imedia:hover {
	color: #c50000;
	text-decoration: underline;
}



h1 {
	font-weight:bold;
	font-size:15px;
	color: #064666;
	text-transform: uppercase;
	margin:5px 0 26px 0;
}


p { 
	margin:12px 0 12px 0;
}





