@charset "UTF-8";
body  {
	font: 100% Arial, Helvetica, sans-serif;
	background: #f26524 url(../images/ojbg.jpg);
	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: 900px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto;
	text-align: left;
	border-top: #000000;
	border-right: #000000;
	border-bottom: #000000;
	border-left: #000000;
	padding: 0px;
} 
#header {
	background: #FFFFFF;
	padding: 0;  /* 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. */
	margin: 0px;
	list-style: none;
} 
#header a {
	text-decoration: none;
	display: block;
	color: #f26524;
	width: 100%;
}
#header a:hover {
	text-decoration: none;
	color: #FFFFFF;
	display: block;
	width: 100%;
}
#header ul {
	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: 0px;
	float: left;
	display: block;
	width: 900px;
	background: #ffdd00;
	list-style: none;
	font-size: 75%;
}
#header   ul li {
	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: 5px 10px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	display: block;
	list-style: none;
	float: left;
	color: #25408f;
	font-weight: bold;
	text-decoration: none;
	position: relative;
	background: #ffdd00;
	width: 92px;
}
#header ul li:hover {
	display: block;
	list-style: none;
	float: left;
	color: #FFFFFF;
	text-decoration: none;
	position: relative;
	background: #f26524;
}
#header ul li:hover ul {
	display: block;
	float: left;
	width: 100%;
	color: #FFFFFF;
}
#header   ul   li   ul  {
	display: none;
	font-size: 100%;
	color: #FFFFFF;
	position: absolute;
	left: 0px;
	width: 100%;
	top: 100%;
}
#header ul li ul:hover {
	display: block;
	float: left;
	position: absolute;
	color: #FFFFFF;
	width: 100%;
}
#header ul li ul li {
	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: 5px 10px;
	float: left;
	color: #f26524;
	font-weight: normal;
	background: #FFFFFF;
	width: 100%;
	list-style: none;
	position: relative;
}
#sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 260px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 20px 10px 10px;
	height: 240px;
	font-size: 85%;
	margin: 0px;
}
#mainContent {
	font-size: 85%;
	overflow: auto;
	height: 250px;
	position: relative;
	float: left;
	width: 575px;
	margin-left: 15px;
	padding-top: 0;
	padding-right: 30;
	padding-bottom: 10;
} 
#mainContent   h1 {
	font-size: 130%;
	font-weight: bold;
	color: #f26524;
}
#mainContent h2 {
	font-weight: bold;
	color: #25408f;
	text-align: center;
	font-size: 130%;
}
#mainContent p {
	padding-bottom: 2px;
	font-size: 85%;
}
#mainContent  tr {
	font-size: 100%;
}
#mainContent ul {
	font-size: 85%;
	list-style: disc;
}
#mainContent a {
	color: #f26524;
	text-decoration: none;
}
#footer {
	padding: 0; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#25408f;
	width: 900px;
	margin: 0px;
} 
#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 */
	color: #FFFFFF;
}
#footer h1 {
	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; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	color: #ffdd00;
	font-size: 150%;
	font-weight: bold;
}
.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;
}
