*
{
	margin: 0;
	padding: 0;
}
BODY
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	background: #FFFFFF;
	color: #000000;
}
A
{
	color: #D90000;
}
A:hover
{
	color: #000000;
}
H1, H2, H3
{
	color: #D90000;
}
#container
{
	width: 1000px;
/*using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar*/
	height: 900px;
	background: #FFFFFF url(../images/siteBackground.jpg) no-repeat left top;
	margin: 0 auto;
/*the auto margins (in conjunction with a width) center the page*/
	text-align: left;
/*this overrides the text-align: center on the body element.*/
}
#header
{
	text-align: center;
	margin-bottom: 20px;
}
#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 0;
/*using padding instead of margin will allow you to keep the element away from the edges of the div*/
	font-size: 48px;
}
#header SPAN
{
	margin-left: 450px;
	/*[empty]border:;*/
}
#sidebar1
{
	float: left;
/*since this element is floated, a width must be given*/
	width: 282px;
/*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*/
}
#sidebar2
{
	float: right;
/*since this element is floated, a width must be given*/
	width: 282px;
/*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*/
}
#footer
{
	text-align: center;
}
#footer P
{
	padding: 20px 0;
}
.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;
}
#menu
{
	margin-top: 20px;
	background: url(../images/menuBackground.jpg) no-repeat left top;
	width: 1000px;
	height: 75px;
}
#menu UL
{
	padding-top: 20px;
}
#navlist LI
{
	display: inline;
	list-style-type: none;
	padding-right: 60px;
}
#navlist LI A
{
	font-size: 18px;
	color: #D90000;
	text-decoration: none;
	font-weight: bold;
}
#navlist LI A:hover
{
	font-size: 18px;
	color: #D90000;
	text-decoration: underline;
	font-weight: bold;
}
/*--------------------------------------begin border----------------------------------*/
.body-panel
{
	background: #FFFFFF;
}
.top-left-corner-tabs, .top-right-corner-tabs, .bottom-left-corner-tabs, .bottom-right-corner-tabs
{
	background-image: url( ../images/corners1280x18HomeTabsBody.gif );
	height: 9px;
	font-size: 2px;
}
.top-left-corner, .top-right-corner, .bottom-left-corner, .bottom-right-corner
{
	background-image: url( ../images/corners1280x18.gif );
	height: 9px;
	font-size: 2px;
}
.top-left-corner, .bottom-left-corner, .top-left-corner-tabs, .bottom-left-corner-tabs
{
	margin-right: 9px;
}
.top-right-corner, .bottom-right-corner, .top-right-corner-tabs, .bottom-right-corner-tabs
{
	margin-left: 9px;
	margin-top: -9px;
}
.top-right-corner, .top-right-corner-tabs
{
	background-position: 100% 0;
}
.bottom-left-corner, .bottom-left-corner-tabs
{
	background-position: 0 -9px;
}
.bottom-right-corner, .bottom-right-corner-tabs
{
	background-position: 100% -9px;
}
.inside
{
	border-left: 1px solid #C1C1C1;
	border-right: 1px solid #C1C1C1;
	padding: 0px 10px;
	height: 100%;
}
.inside P
{
	padding: 0.2em 0 1em;
}
.tabsInside
{
	border-left: 1px solid #C1C1C1;
	border-right: 1px solid #C1C1C1;
	padding: 0px 10px;
	height: 150px;
}
/*--------------------------------------end border----------------------------------*/
