body
{
	behavior: url(csshover.htc);
	font-family:Arial, Helvetica, sans-serif;
	background-color: #FFFFFF;
	background-image: url(images/sidebar.gif);
	background-repeat: repeat-y;
	background-position: top left;
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
}

#menu ul li 
{
float: left; width: 100%;
}

#menu ul li a 
{
height: 1%;
}

a {
	font-size: 11px;
	color: #000000;
	text-decoration: none;
}

#topright a {
	color:#EEFFEE;
	font-weight:normal;
}

#topright a:hover {
	color:#000000;
	font-weight:normal;
}

#pagefooter a {
	color:#000000;
	font-weight: normal;
}

#pagefooter a:hover {
	text-decoration: underline;
}

/* Space that sets up where the menu is */
#menu_position
{
	position: absolute;
	top: 48px;	
	background-color: #000000;
	width: 700px;
}

/* Space to the left of menu */
#menu
{
	padding-left: 0px;
}


#menu ul
{
	list-style: none;
	margin: 0;
	padding: 0;
	float: left;
	text-align: left;
}

/* Main menu width */
#menu ul.menu_row1
{
	width: 112px;
}
#menu ul.menu_row2
{
	width: 118px;
}
#menu ul.menu_row3
{
	width: 72px;
}
#menu ul.menu_row4
{
	width: 85px;
}
#menu ul.menu_row5
{
	width: 103px;
}
/* Sub-menu width */
#menu ul.menu_row1 li ul
{
	width: 138px;
	background: url(images/menubg.gif) bottom left no-repeat;
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	padding: 0.2em 0 0.5em 0;
	border-right: solid 1px #4c935b;
}

#menu ul.menu_row2 li ul
{
	width: 118px;
	background: url(images/menubg.gif) bottom left no-repeat;
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	padding: 0.2em 0 0.5em 0;
	border-right: solid 1px #4c935b;
}
#menu ul.menu_row3 li ul
{
	width: 115px;
	background: url(images/menubg.gif) bottom left no-repeat;
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	padding: 0.2em 0 0.5em 0;
	border-right: solid 1px #4c935b;
}
#menu ul.menu_row4 li ul
{
	width: 125px;
	background: url(images/menubg.gif) bottom left no-repeat;
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	padding: 0.2em 0 0.5em 0;
	border-right: solid 1px #4c935b;
}
#menu ul.menu_row5 li ul
{
	width: 134px;
	background: url(images/menubg.gif) bottom left no-repeat;
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	padding: 0.2em 0 0.5em 0;
	border-right: solid 1px #4c935b;
}

#menu a,
#menu h2
{
	display: block;
	height: 22px;
	margin: 0;
}

/* Color of text in main menu */
a.menu_header{
color: #EEFFEE;
cursor: default;

}

/* Background color of menu */
#menu a,
#menu a:link,
#menu a:visited,
#menu a:active
{
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	line-height: 20px;
}

/* Background color of highlight in menu */
#menu a:hover
{
	background-color: #000000;
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: heavy;
	line-height: 20px;
}


/* Background color of highlight in dropdown portion of menu */
#menu ul li ul li a:hover
{
	background: none;
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	line-height: 18px;
	margin-bottom: 1px;
	margin-top: 1px;
	border: solid #4c935b;
	border-width: 0 3px 0 4px;
	text-indent: -4px;
}

/* Padding, Color, and alignment for sub-menu*/
#menu ul li ul li a,
#menu ul li ul li a:link,
#menu ul li ul li a:visited,
#menu ul li ul li a:hover,
#menu ul li ul li a:active
{
	padding-left: 8px;
	padding-top: 1px;
	padding-bottom: 1px;
	font-weight: heavy;
	color: #000000;
}


#menu ul li a,
#menu ul li a:link,
#menu ul li a:visited,
#menu ul li a:hover,
#menu ul li a:active
{
	padding-left: 8px;
	padding-bottom: 1px;
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: heavy;
	line-height: 20px;	
}


#menu li
{
	position: relative;
}

#menu ul ul
{
	position: absolute;
	z-index: 500;
	text-align: left;
	float: none;
	left: 0px;
}

div#menu ul ul
{
	display: none;
}

div#menu ul li:hover ul
{
	display: block;
}

activateMenu = function() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("nav");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}
	}
}
window.onload=activateMenu;