@charset "utf-8";
body  {
	font: 100%;
	font-family:"Times New Roman", Times, serif
	background: #666666;
	background-image: url(images/about/sunset.png);
	background-attachment: fixed;
	background-repeat: no-repeat;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	color: #000000;
}
p  {
	Font: 100% Helvetica, Verdana, sans-serif;
}
.style a:link {
	color:#000066;
	text-decoration: underline;
}
.style a:visited {
	text-decoration: underline;
	color:#000066;

}
.style a:hover {
	text-decoration:none;
	color: #000066;
	font-weight:bolder;
}
.style a:active {
	text-decoration: underline;
	color: #000066;
	font-weight:bolder;
}
.style #container {
	background-color:#FFFFFF;	
	width: 600px;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	margin: 0 0 0 350px; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #FFFFFF;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.style #header {
	background:none;
	padding: 0;
}
.style #maincontent{
	background: transparent;
}
.style #nav{
	margin: 0;
}
.style #nav li{
	list-style:none;
}
.style #footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	color: #000066;
	font-size: 12px;	
} 
.style #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: 12px;
}
.style #footer a {
	color:#000066;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
