@charset "UTF-8";
/* CSS Document */


body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #C0C0C0;
}
#container {
	width: 800px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left;
	background-image: url(../images/1x1_brown.gif);
} 
#header {
	background-image: url(../images/header.jpg);
	height: 135px;
} 
#logo {
	margin-left: 45px;
	float: left;
}
p {
	color: #FFFFFF;
	font-size: 0.9em;
	line-height: 1.5em;
	margin-top: 0px;
	padding-top: 0px;
}

#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 350px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 20px;
}
#mainContent {
	margin: 0 0 0 400px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 20px 20px 0 20px;
} 
#midContent {
	background-color: #FFFFFF;
}
#links a {
	color: #333333;
}
.opaque {
	background-image: url(../images/mainImageOPAQUE.jpg);
	background-repeat: no-repeat;
}
.nonopaque {
	background-image: url(../images/mainImage.jpg);
	background-repeat: no-repeat;
}
#midContent p {
	color: #333333;
}
#content {
	background-image: url(../images/mainContentBg.jpg);
	background-repeat: no-repeat;
	background-position: top;
	margin: 0px;
	padding: 0px;
}
#footer {
	padding: 20px 0 0 0;
	background-color: #FFFFFF;
} 
#sidebar1 a {
	color: #FFFFFF;
}
img {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
#footer p {
	margin: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.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;
}
.flyspecktrig a {
	color: #7A6868;
	text-decoration: none;
	font-size: 10px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}
#topnav {
	float: right;
	margin-top: 5px;
	margin-right: 22px;
	margin-bottom: 0px;
	margin-left: 0px;
	font-size: 0.7em;
}
#topnav a {
	font-weight: normal;
	color: #FFFFFF;
	text-decoration: none;
}
#links {
	margin: 0px 10px 0 10px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 20px 20px 0 20px;
}

a {
	color: #FFFFFF;
	font-size: 1em;
	line-height: 1.5em;
	margin-top: 0px;
	padding-top: 0px;
}