@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; /* 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-image: url(file:///O|/Web/Images/Background4.jpg);
	background-repeat: repeat-x;
}
#container {
	width: 1002px;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	background-repeat: repeat-x;
} 
#header {
	padding-top: 5px;
	padding-right: 5px;
	padding-left: 0px;
	padding-bottom: 5px;
	/* Do rounding (native in Firefox and Safari) */
    -webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
} 

#header img {
	border: thin solid #C5C28B;
}

#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 */
}

#menubar{
	overflow: hidden;
	background-color: #0863B6;
	/* Do rounding (native in Firefox and Safari) */
    -webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	padding-left: 30px;
	padding-top: 2px;
	padding-bottom: 2px;
}

#menubar ul{
	margin: 0;
	padding: 0;
	padding-left: 10px; /*offset of tabs relative to browser left edge*/
	font: bold 12px Verdana;
	list-style-type: none;
}

#menubar li{
	display: inline;
	margin: 0;
}

#menubar li a{
	float: left;
	display: block;
	text-decoration: none;
	margin: 0;
	padding: 7px 8px; /*right divider between tabs*/
	color: #C7E4F6; /*background of tabs (default state)*/
	background-color: #43A3F1;
	border-right-width: 2px;
	border-right-style: solid;
	border-right-color: #0863B6;
}

#menubar li a:visited{

}

#menubar li a:hover, .menubar li.selected a{
	background-color: #0409A3;
}

#mainContent {
	margin: 0;
	border: thin solid #0938DD;
	/* Do rounding (native in Firefox and Safari) */
    -webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 45px;
	background-image: url(images/mainback.gif);
} 
#mainContent h1 {
	color: #075BA7;
}
#mainContent h2 {
	color: #075BA7;
}
#mainContent a, a:visited {

}



#roundedImage {
	/* Do rounding (native in Firefox and Safari) */
    -webkit-border-radius: 19px;
	-moz-border-radius: 19px;
	border-radius: 19px;
	background-image: url(images/header.jpg);
	background-repeat: no-repeat;
	height: 150px;
	width: 1000px;
} 

#footer {
	background-color: #0863B6;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
	/* Do rounding (native in Firefox and Safari) */
    -webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
} 
#footer a ,a:visited{
	color: #B9DBFE;
}

#footer p {
	margin: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: x-small;
	color: #CCC;
	padding-top: 10px;
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 0;
}

#footer-left p {
	text-align: left;
	float: left;
}

#footer-right p {
	text-align: right;
}

.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;
}
h1	{
	color:#075BA7;
	font-size: x-large;
}

h2	{
	color: #075BA7;
	font-size: large;
}

h3	{
	color: #FFFFFF;
	background: #075BA7;
}

h4	{
	background: #075BA7;
}

a:link	{
	color:#3300FF;
}

a:hover	{
	color:#FF0000;
}

a:active {
	color:#CCCCCC;
}

a:visited {
	color:#330066;
}

