@charset "UTF-8";
body {
	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;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 100%;
	background-color: #8B9298;
	background-image: url(images/gradient1.jpg);
	background-repeat: repeat-x;
}

a {
	color: #333399;
}

a:visited { 
	color: #000000;
}
	
a:hover { 
	color: #A00000; 
}

h1 {
	text-align: center;
	font-style: italic;
	font-size: 1.2em;
}

h2 {
	text-align: center;
	font-style: italic;
	font-size: 1.1em;
	margin-top: 2.6em;
}

h3 {
	text-align: center;
	font-style: italic;
	font-size: 1em;
	margin-top: 2.4em;
}

.onecolfixedcenter #container {
	width: 770px;
	margin: 0 auto; /* 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. */
	background-color: #FFFFFF;
}

.onecolfixedcenter #header {
	background: #DDDDDD; 
}

.onecolfixedcenter #maincontent {
	background: #FFFFFF;
}

.onecolfixedcenter #text {
	margin: 0;
	padding: 20px;
	float: left;
	width: 730px;
	}

.onecolfixedcenter #footer {
	clear: both;
	background-color: #A00000;
	background-image: url(images/gradient2.jpg);
	background-repeat: repeat-y;
	border-top-width: 1px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: solid;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-top-color: #000000;
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 10px;
}

.onecolfixedcenter #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 0px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: 80%;
}

.red {
	color: #A00000;
}

/*******************************************************************************

 MENU

 *******************************************************************************/

/* The outermost container of the Menu Bar, an auto width box with no margin or padding */
ul.menubarhor
{
	margin: 0px;
	padding: 0px;
	list-style-type: none;
	font-size: 90%;
	cursor: default;
	width: 770px;
	background-color: #DDDDDD;
}
/* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
ul.menubaractive
{
	z-index: 1000;
}
/* Menu item containers, position children relative to this container and are a fixed width */
ul.menubarhor li
{
	margin: 0px;
	padding: 0px;
	list-style-type: none;
	font-size: 100%;
	position: relative;
	text-align: center;
	cursor: pointer;
	width: 110px;
	float: left;

}


/*******************************************************************************

 DESIGN INFORMATION: describes color scheme, borders, fonts

 *******************************************************************************/

/* Menu items are a light gray block with padding and no text decoration */
ul.menubarhor a
{
	display: block;
	cursor: pointer;
	background-color: #DDDDDD;
	padding: 0.5em 0.75em;
	color: #000000;
	text-decoration: none;
	height: 40px;
}
/* Menu items that have mouse over or focus have a blue background and white text */
ul.menubarhor a:hover, ul.menubarhor a:focus
{
	background-color: #A00000;
	color: #FFF;
}



/*******************************************************************************

 BROWSER HACKS: the hacks below should not be changed unless you are an expert

 *******************************************************************************/

/* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
ul.menubarhor iframe
{
	position: absolute;
	z-index: 1010;
}
/* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
@media screen, projection
{
	ul.menubarhor li.menubaritemIE
	{
		display: inline;
		f\loat: left;
		background: #FFF;
	}
}
