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

body  {
	font: 80% Trebuchet MS, 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: #000000;
	background: url(images/stripe_2.png);
}
 #container {
	width: 825px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
	border-right: 1px solid #003366;
	border-bottom: 1px solid #003366;
	border-left: 1px solid #003366;
} 
 #header {
	background: #FFFFFF;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
} 
 #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 200px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 5px;
	clear: left;
}
#header img {
	display: block;
	float: left;
	margin-top: 5px;
	margin-left: 5px;
}
 #mainContent {
	margin: 0 0 0 230px;
	clear: right;
} 
#mainContent p, #mainContent ul {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 1.1em;
	line-height: 1.4em;
	width: 525px;
	margin-left: 25px;
	color: #333333;
}
#mainContent h1 {
	font-family: Trebuchet MS, Verdana, Arial, Helvetica, sans-serif;
	font-size: 0.75em;
	margin: 30px 0px 0px;
	text-transform: uppercase;
	color: #000000;
	letter-spacing: 0.1em;
}
#mainContent h2 {
	font-family: Trebuchet MS, Verdana, Arial, Helvetica, sans-serif;
	font-size: .9em;
	letter-spacing: 0.1em;
	width: 200px;
	margin-top: 40px;
}
#nav {
	height: 110px;
	width: 595px;
	float: right;
	background: #CCCCC0;
	border-bottom: 6px solid #000000;
	border-left: 1px solid #003366;
	margin-bottom: 25px;
}

#MenuBar1 span {
	display: block;
	margin-left: 20px;
}
 #footer {
	padding: 0; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#FFFFFF;
	width: 595px;
	margin-left: 230px;
	font-size: 0.8em;
	font-family: Trebuchet MS, Geneva, Arial, Helvetica, sans-serif;
} 
 #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 */
}
.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;
	margin-top: 20px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
	padding-left: 25px;
}
.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;
}
.applyclear {
	clear: both;
}
#test {
	width: 100%;
}
strong {
	color: #000000;
}
#mainContent a:link, #sidebar1 a:link {
	color: #990000;
	text-decoration: underline;
}
#mainContent a:visited, #sidebar1 a:visited {
	color: #996600;
	text-decoration: underline;
}
#mainContent a:hover, #mainContent a:active, #sidebar1 a:hover, #sidebar1 a:hover {
	color: #FFFFFF;
	text-decoration: none;
	background: #990000;
}

