@charset "UTF-8";
/* CSS Document */
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: #333333;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 0.8em;
	background-color: #fff;
	background-image: url(../images/cross.png);
	background-repeat: repeat;
}
a:link, a:visited {
	color: #0e76bc;
	text-decoration: none;
}
a:hover, a:active {
	text-decoration: underline;
	color: #F00;
}
h1 {
	font-size: 1.8em;
	font-weight: lighter;
	color: #F00;
	line-height: 50%;
	padding-top: 10px;
	padding-bottom: 0px;
}
h2 {
	font-size: 1.8em;
	font-weight: lighter;
	color: #999999;
	line-height: 50%;
	padding-top: 10px;
	padding-bottom: 0px;
}
h3 {
	font-size: 1.5em;
	font-weight: normal;
	text-align: left;
	line-height: 110%;
	color: #F00;
}
h4 {
	font-size: 1.1em;
	text-align: left;
	line-height: 110%;
	font-weight: lighter;
}
li {
	list-style-position: inherit;
	list-style-color: #0e76bc;
}
.legal {
	font-size: 0.7em;
	color: #666;
	margin-bottom: 10px;
}
.divider {
	color: #F00
}
.services {
	font-size: 1.0em;
	font-weight: lighter;
	text-align: left;
	line-height: 180%;
	vertical-align: top;
}
hr {
	color: #CCCCCC;
	line-height: 20%;
}

.open #container {
	width: 860px;
	background: #FFFFFF;
	text-align: left;
	min-height: 500px;
	padding: 10px;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}
.open #header {
	border-bottom: 2px dotted #999;
	padding-top: 10px;
	margin-bottom: 5px;
	padding-bottom: 10px;
	background-color: #FFFFFF;
} 
.open #feature {
	height: 280px;
	padding-top: 0px;
	padding-bottom: 10px;
} 
.open #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.open #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 260px; /* padding keeps the content of the div away from the edges */
	padding: 0 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
.open #mainContent { 
	margin-top: 0;
	margin-right: 0px;
	margin-bottom: 0;
	margin-left: 300px;
	padding: 0 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
.open #clock {
	float: right;
	top: 0px;
	right: 0px;
	position: relative;
	visibility: visible;
}.open #topnav {
	float: right;
	clear: left;
}
.open #mainContent3 {
	margin-top: 0;
	margin-right: 0px;
	margin-bottom: 0;
	margin-left: 180px;
	padding: 0 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */

}
.open #footer {
	width: 860px;
	background: #FFFFFF;
	margin: 0 auto;
	border-top: 2px dotted #999;
	text-align: left;
	color: #999999;
	font-size: 95%;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
	border-bottom: 2px dotted #ccc;

} 
.open #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;
	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;
	margin-top: 10px;
}
 
</style>[if IE 5]>
<style type="text/css"> 
/* place css box model fixes for IE 5* in this conditional comment */
.open #sidebar1 { width: 180px; }
.open #sidebar2 { width: 190px; }
</style>
<![endif][if IE]>
<style type="text/css"> 
/* place css fixes for all versions of IE in this conditional comment */
.open #sidebar2, .open #sidebar1 { padding-top: 30px; }
</style>
<![endif]

