/**
 * 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: url("graphics/bg.gif") repeat-x;
	font-family:arial,sans-serif;
	font-size:13px;
	color:#000000;
	
}

/* main table */

div#container {
	position:relative; /* needed for footer positioning*/
	margin:0 0 0 150px; /* center, not in IE5 */
	width:950px; 
	padding: 0;
	height:auto !important; /* real browsers */
	height:100%; /* IE6: treaded as min-height*/

	min-height:100%; /* real browsers */
}
	
div#content {
	padding:0 0 50px 0; /* bottom padding for footer */
	margin: 0 auto 0 auto;
}

div#footer {
	width:950px;
	height:50px;
	background: url("/graphics/footer.gif") #d9d9d9 no-repeat;
	font-size:11px;
	color: #2a363b;
	margin: 0 auto 0 auto;
	
	position:absolute;
	bottom:0; /* stick to bottom */
	visibility: hidden;

}





/* content formatting */

#pagecontent {
	width: 800px;
	margin: 122px 50px 20px 0;
	overflow: auto;
	background: url("/graphics/bodybg.gif") no-repeat;
	line-height:22px;
	float:right;
	display:inline;
}

#pagecontent ul {
	list-style: none;
	margin: -10px 0 0 20px;
	padding:0;
	}
	
#pagecontent li {
	background: url("/graphics/bull2.gif") no-repeat 0 7px;
	padding:0 0 0 13px;
	line-height:20px;
	}
	
#pagecontent li a {
	font-weight:bold;
	font-size:13px;
	text-decoration:none;
	line-height:20px;
}


#clear {
	clear: both;
}

div.clear {
	clear: both;
}





h1 {
	font-weight:bold;
	font-size:15px;
	color: #c50000;
	text-transform: uppercase;
	margin:0 0 26px 0;
}


p { 
	margin:26px 0 26px 0;
}
