@charset "utf-8";
body  {
	font: 100% 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;
	background-color: #192934;
}
#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 */
	border: 1px solid #000000;
	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;
	padding-bottom: 0px;
} 
#header  {
	padding: 0 10px 0 20px;  /* 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. */
	background-color: #E3EEF9;
	height: 100px;
	background-image: url(images/headerbg.jpg);
} 
#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 */
}
.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;
}
#mainContent  {
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 250px;
	padding-top: 0;
	padding-right: 20px;
	padding-bottom: 0;
	padding-left: 20px;
	border-left-style: solid;
	border-left-color: #0000FF;
	border-left-width: 1px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
} 
#mainContent h1 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #004AF1;
	font-size: 24px;
}
#mainContent h2 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 16px;
	color: #004AF1;
}

#mainContent table {
	border: 1px solid #004AF1;
}


#mainContent p {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #192934;
	line-height: 120%;
}
#mainContent a {
	color: #3078CC;
}
#mainContent a:hover {
	color: #192934;
	text-decoration: none;
}
#mainContent #leftcolumn {
	width: 200px;
	float: left;
}
#mainContent #rightcolumn {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 215px;
}
 	
#mainContent p.title {
	font-size: 12px;
	color: #494AF1;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
}



#nav  ul {
	text-align: center;
	margin: 0px;
	padding: 0px;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-weight: bolder;
	text-decoration: none;
}
#nav  li {
	display: inline;
	margin-right: 10px;
	margin-left: 10px;
}
#nav    a {
	text-decoration: none;
	color: #FFFFFF;

}

#nav  a:hover {
	color: #CCCCCC;
	text-decoration: none;
}
.copyrighttext {
	font-family: Arial, Helvetica, sans-serif;
	font-size: x-small;
	font-style: normal;
	line-height: normal;
	font-weight: normal;
	font-variant: normal;
	color: #3078CC;
	text-align: center;
	letter-spacing: 4px;
}
.copyrightsymbol {
	font-size: small;
	color: #3078CC;
	font-weight: bolder;
	font-family: Arial, Helvetica, sans-serif;
}

#sidebar1 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #000000;
	border: 0px none #003EAB;
	float: left;
	width: 230px;
	margin: 0px;
	padding: 0px;
}
#sidebar1 #newsbox {
	background-image: url(images/sidebar.png);
	height: 170px;
	width: 189px;
	padding: 10px;
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 10px;
}

#sidebar1  h1 {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	color: #004AF1;
}
#sidebar1 .title {
	font-size: 12px;
	font-weight: bold;
	color: #494AF1;
}
#sidebar1 #nav1 {
	height: 30px;
	width: 180px;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	background-position: center;
}
#sidebar1 #nav1 a:hover {
	height: 30px;
	width: 180px;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: dotted;
	border-right-style: dotted;
	border-bottom-style: dotted;
	border-left-style: dotted;
	background-position: center;
	display: block;
	background-color: #000000;
}
#footer  {
	background-color: #CFE0F3;
} 
#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 */
}
#footer #sitemap ul {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	background-color: #3078CC;
	margin: 0px;
	padding: 0px;
	text-align: center;
}
#footer #sitemap li {
	list-style-type: none;
	display: inline;
	margin-right: 10px;
	margin-left: 10px;
}
#footer #sitemap a {
	color: #FFFFFF;
	text-decoration: none;
}
#footer #sitemap a:hover {
	color: #CCCCCC;
}
#sidebar2 {
	clear: both;
}

