@charset "UTF-8";
body  {
	font: .9em Verdana, Arial, Helvetica, sans-serif;
	background: #9fb6e8;
	background-image:url(images/bkgr_grad.jpg);
	background-position:top;
	background-repeat:repeat-x;
	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;
}
#container { 
	width: 930px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 2px solid #FFFFFF;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
#header { 
	padding: 0px;
	margin: 0px;
	text-align:center;
	background-color:#347ACF;
} 
#header img { 
	border:none;
	padding: 0;
	margin: 0;
} 
#header a { 
	border:none;
	padding: 0;
	margin: 0;
} 
#topNav { 
	border:none;
	margin: 0;
	padding: 0;
	background-image:url(images/nav_grad.jpg);
	background-position:bottom;
	background-repeat:repeat-x;
} 
#topNav ul { 
	white-space:nowrap;
	padding: 0px 0px 5px 0px;
	margin: 0;
} 
#topNav li { 
	list-style:none;
	display:inline;
	margin: 0;
} 
#topNav a { 
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:.8em;
	color:#FFFFFF;
	text-decoration:none;
	font-weight:bold;
	padding: 0px 10px 0px 10px;
}
#topNav a:hover { 
	color:#ccddff;
	text-decoration:underline;
}
#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 200px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #EBEBEB; /* 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 250px;
	padding: 0 20px;
}
#mainContentHome { 
	margin: 15px 0 0 10px;
	padding: 0 20px;
} 
#mainContentHome h1 { 
	margin: 5px 0 0 0px;
	padding: 0;
	color:#347acf;
	font-size:1.6em;
} 
#mainContentHome li { 
	list-style:none;
	padding-bottom: 5px;
} 
#mainContentHome li img { 
	vertical-align:middle;
	margin-right:8px;
} 
#mainContentHome li a { 
	text-decoration:none;
	color:#d40707;
	font-weight:bold;
} 
#mainContentHome li a:hover { 
	text-decoration:underline;
	color:#500000;
}
#mainContentHome a { 
	text-decoration:none;
	color:#347acf;
	font-weight:bold;
} 
#mainContentHome a:hover { 
	text-decoration:underline;
	color:#ccddff;
	font-weight:bold;
}
#footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#ccddff; 
} 
#footer p {
	margin: 0; 
	padding: 10px 0;
	color:#347acf;
}
.fltrt { 
	float: right;
	margin-left: 25px;
}
.fltlft { 
	float: left;
	margin-right: 12px;
}
.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;
}