@charset "UTF-8";
body  {
	margin: 0px; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0px;
	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: #CCCCCC;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11pt;
	background-color: #000030;
}
a {
	color: #6699CC;
	font-weight:bold;
	text-decoration:none;
}
h2, h3, h4, h5 {
	color: #ffffff;
}
.left {
	background-image: url(background_images/left.jpg);
	background-repeat: repeat-y;
	background-position: right;
}
.right { 
background-image: url(background_images/right.jpg);
	background-repeat: repeat-y;
	background-position: left;
	
	 }
a:hover {text-decoration:underline; color:#ffffff;}


 #container {
	width: 860px;
	margin: 0 auto;
	padding:0;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #002F66;
	border:0px;
	background-image: url(background_images/blue.gif);
}
 #sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 300px;
	font-size:10pt;
	
	padding-top: 0px;
	padding-right: 40px;
	padding-bottom: 15px;
	padding-left: 10px;
}
 #mainContent {
	line-height:22px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	margin-top: 0;
	margin-right: 340px;
	margin-bottom: 0;
	margin-left: 0;
	padding-top: 0;
	padding-right: 45px;
	padding-bottom: 0;
	padding-left: 50px;
} 

#sidebar1 img {margin-bottom:8px;}
.rightLink {text-align:right;padding-top:8px;padding-bottom:3px;}
.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;
}

