@charset "utf-8";
body  {
	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-color: #ffffff;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 75%;
}
#container  {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	border-right-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #000000;
	border-left-color: #000000;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #000000;
} 
#header  {
	background-color: #000000;
	border-bottom-width: 5px;
	border-bottom-style: solid;
	border-bottom-color: #FFFFFF;
} 
#navbar  {
	width: 100%;
	background-color: #0065fc;
	text-align: center;
	color: #ffffff;
	display: block;
	font-size: 0.9em;
	padding-top: 8px;
	padding-right: 0px;
	padding-bottom: 8px;
	padding-left: 0px;
	margin: 0px;
	background-repeat: repeat-x;
	background-image: url(../images/nav_bg.gif);
}
#navbar a:link {
	color: #ffffff;
	text-decoration: none;
}
#navbar a:visited {
	color: #ffffff;
	text-decoration: none;
}
#navbar a:hover {
	color: #999999;
	text-decoration: none;
}
#navbar a:active {
	color: #999999;
	text-decoration: none;
}


#sidebar  {
	float: right; /* since this element is floated, a width must be given */
	width: 150px;
	padding: 0px;
}
#mainContent  {
	width: 600px;
	margin: 0;
	padding: 15px;
	float: left;
	font-size: 0.9em;
	color: #000000;
} 
#mainContent a:link {
	color: #000000;
	text-decoration: underline;
}
#mainContent a:visited {
	color: #000000;
	text-decoration: underline;
}
#mainContent a:hover {
	color: #666666;
	text-decoration: underline;
}
#mainContent a:active {
	color: #666666;
	text-decoration: underline;
}
.img_flt_lh_border {
	border: 1px solid #000000;
	float: left;
	margin-top: 5px;
	margin-right: 5px;
	margin-bottom: 5px;
}

#latest_news {
	background-color: #0065fc;
	height: 80px;
	width: 598px;
	background-image: url(../images/latest_news_bg.jpg);
	background-repeat: no-repeat;
	border: 1px solid #000000;
	text-align: center;
	vertical-align: middle;
	color: #FFFFFF;
	margin: 0px;
	padding: 0px;
}
.light_blue {
	color: #8AB9BD;
}
.blue {
	color: #0065fc;
}
.red {
	color: #FF0000;
}
.test_boxes {
	border: 1px solid #000000;
	padding: 10px;
	color: #FF0000;
	text-align: center;
}

#footer  { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD; 
} 
#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;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
}
.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;
}
h1 {
	font-size: 1.6em;
	text-align: left;
	text-transform: capitalize;
	color: #0065fc;
}
.caps {
	text-transform: uppercase;
}
h2 {
	font-size: 1.4em;
	font-style: italic;
	color: #0065fc;
}
.img_flt_rh_border {
	border: 1px solid #000000;
	float: right;
	margin-top: 5px;
	margin-bottom: 5px;
	margin-left: 5px;
}
.latestnews {
	font-weight: bold;
	font-size: 1.2em;
	padding-top: 15px;
}
#copyright {
	color: #000000;
	background-color: #ffffff;
	text-align: center;
	font-size: 0.8em;
}
#copyright a:link {
	color: #000000;
	text-decoration: none;
}
#copyright a:visited {
	color: #000000;
	text-decoration: none;
}
#copyright a:hover {
	color: #666666;
	text-decoration: none;
}
#copyright a:active {
	color: #666666;
	text-decoration: none;
}

.red_box {
	padding: 20px;
	width: 100%;
	border: 1px solid #FF0000;
}
.black {
	color: #000000;
}
