/**
 * 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:#000;
	
	font-family:arial,sans-serif;
	font-size:small;
	color:#000;
}

h1 { 
	font-size:1.50em; 
	font-weight: bold;
}

h2 {
	font:1.25em; 
	margin:0 0 0.5em;
	font-weight: bold;
}
	h1, h2, a {
		color:#b0002e;
	}

p { 
	text-align: left;
	font: 1.0em/1.5em Verdana, Arial, "Sans serif";
	
}

div#topstars {  
    position: absolute;
    top:60px;
    right:-114px;
    width: 114px;
    height: 224px;
    background: transparent url("images/topstars.jpg") 0 0 no-repeat;
}

div#bottomstars {
    width: 112px;
    height: 270px;
    margin: -146px 0 0 -111px;
    background: transparent url("images/bottomstars.jpg") 0 0 no-repeat;
}

div#container {
	position:relative; /* needed for footer positioning*/
	margin:0 auto; /* center, not in IE5 */
	width:798px;
	background:#000 url("images/cent_col_back.jpg") 0 0 repeat-y;
	
	height:auto !important; /* real browsers */
	height:100%; /* IE6: treaded as min-height*/

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

div#header {
	width:798px;
	height:239px;
}
	
div#content {
	padding:1em 2em 11em; /* bottom padding for footer */
}
	div#content p {
		text-align:justify;
		
	}
	
	div#content ul {
	font: 1.0em/1.5em Verdana, Arial, "Sans serif";		
	}

div#footer {
	position:absolute;
	width:100%;
	height: 129px;
	bottom:0; /* stick to bottom */
	background:#000 url("images/footer.jpg") 0 0 no-repeat;
}
	div#footer p {
		padding:1em;
		margin:0;
	}