@charset "utf-8";
/* CSS Document */

html {
	height: 100%;
}

body {
	height: 100%;
	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: #333333;
	font-family: Arial, Helvetica, sans-serif;
	background-color: #404040;
}

#container  {
	position: relative;
	min-height: 100%;
	width: 780px;  /* 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;
}

#topBanner {
	padding-top: 10px;

}

#menuh
	{
	font-size: x-small;
	width: 100%;
	float: left;
	font-weight: bold;
	margin-left: 20px;
	font-family: Arial, Helvetica, sans-serif;
	margin-top: 60px;
	}
	
#menuh ul
	{
	list-style: none;
	margin: 0;
	padding: 0;
	float: left;
	width: 8em;	/* width of all menu boxes */
	}


	
#menuh a
	{
	text-align: center;
	display:block;
	white-space:nowrap;
	margin:0;
	padding: 0.4em;
	}
	
#menuh a:link, #menuh a:visited, #menuh a:active	/* menu at rest */
	{
	color: #FFFFFF;
	text-decoration:none;
	}
	
#menuh a:hover	/* menu at mouse-over  */
	{
	color: #C00000;
	text-decoration:none;
	}	

#rightBar {
	color: #C00000;
	font-weight: bold;
	font-size: small;
	padding-top: 40px;
}

#headerText {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	font-weight: bold;
	color: #FFFFFF;
	padding-left: 30px;
}

#mainContent  {
	font-size: small;
	line-height: 1.5;
	padding: 10px 15px 10em 15px;
}
#mainContent  ul li {
	margin: 0;
	padding-left: 25px;
	list-style-type: none;
	background: url(bullet.jpg) left 0.6em no-repeat;
	margin-left: -25px;
}

#mainContent  #plainLink a:link, #mainContent #plainLink a:visited,#mainContent #plainLink a:active {
	color: #333333;
	text-decoration:none;
}
#mainContent  #plainLink a:hover {
	color: #C00000;
	text-decoration:none;
}

#mainContent a:link, #mainContent a:visited, #mainContent a:active {
	color: #333333;
	text-decoration:underline;
}

#mainContent a:hover {
	color: #333333;
	text-decoration:none;
}
#mainContent #redLink a:link, #mainContent #redLink a:visited, #mainContent #redLink a:active {
	color: #C00000;
	text-decoration:underline;
}
#mainContent #redLink a:hover {
	color: #C00000;
	text-decoration:none;
}


.underline {
	text-decoration: underline;
}

#footer {
	position: relative;
	margin: -5em auto 0 auto;
	width: 780 px;
}

#footerText {
	font-family: Arial, Helvetica, sans-serif;
	font-size: x-small;
}
#footerText   a:link, #footerText   a:visited, #footerText   a:active {
	color: #333333;
	text-decoration:underline;
}
#footerText a:hover {
	color: #333333;
	text-decoration:none;
}

#footerTextRight {
	font-family: Arial, Helvetica, sans-serif;
	font-size: x-small;
	color: #FFFFFF;
}

#footerTextRight a:link, #footerTextRight a:visited, #footerTextRight a:active {
	color: #FFFFFF;
	text-decoration:none;
}

#footerTextRight a:hover {
	color: #C00000;
	text-decoration:none;
}

*html  #container {
	height: 100%;
}

/* A CSS hack that only applies to IE -- specifies a different height for the footer */
*html #footer {
	margin-top: -4.9em;
}

