/**
 * 100% height layout with header and footer
 * ----------------------------------------------
 * originally from http://www.xs4all.nl/~peterned/examples/csslayout1.html
 * modifyied by stuffbysteff.com * http://stuffbysteff.com
 * Feel free to copy/use/change/improve code (not images used in design)
 */

html,body {
	margin:0;
	padding:0;
	height:100%; /* needed for container min-height */
}
body {	
	background:#000000;
	font-family:arial,sans-serif;
	font-size:11px;
}


#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 */
	background-repeat: repeat-y;
}

#header {
	background:#000000;
	background-image: url("/assets/images/header.gif");
	height:132px;
	background-repeat: no-repeat;
	padding:0px
}
.red a:link {
	color:red;
	text-decoration:none;
	font-weight:bold;

}
.red a:visited {
	color:red;
	text-decoration:none;
	font-weight:bold;
}
.red a:hover {
	color:red;
	text-decoration:underline;
	font-weight:bold;

}
.red a:active {
	color:red;
	text-decoration:none;
	font-weight:bold;
}

a:link {
	color:#027F6C;
	text-decoration:none;
	font-weight:bold;	
	font-family:arial,sans-serif;
	font-size:9px;
	font-weight:bold;

}
a:visited {
	color:#027F6C;
	text-decoration:none;
	font-weight:bold;
	font-family:arial,sans-serif;
	font-size:9px;
	font-weight:bold;
}
a:hover {
	color:#027F6C;
	text-decoration:underline;
	font-weight:bold;
	font-family:arial,sans-serif;
	font-size:9px;
	font-weight:bold;

}
a:active {
	color:#027F6C;
	text-decoration:none;
	font-weight:bold;
	font-family:arial,sans-serif;
	font-size:9px;
	font-weight:bold;

}

#navbar {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9pt;
	text-transform: uppercase;
	text-align:left;
	height: 20px;
	width:740px;
	background-image:  url("/assets/images/nav.gif");
	background-repeat: repeat-y;
	padding:0px 0px 0px 10px;
}
#container{
	width:750px;
}
#content {
	padding: 20px 0px 0px 10px;
	width:650px;
}
#content p {
		text-align:justify;
		padding:0 1em;
	}
#footer {
	position:absolute;
	width:750px;
	bottom:0; /* stick to bottom */
	background-image: url("/assets/images/footer.gif");
	background-repeat: repeat-y;
	background-color:#FFFFFF;
	text-align:center;
	}
#footer p {
	padding-top: 1em;
	padding-left:2em;
	padding-bottom: 1em;
	margin:0;
	}
