/* Start of CMSMS style sheet 'Menu - Horizontal' */
/* Horizontal Menu */
/* Evan Lyon */

div#horizontal_menu {
/* hack for IE6 */
	* html div#menu_horiz {
	/* hide ie/mac \*/
	height: 1%;
	/* end hide */
	}
}

div#menu_horiz {
	clear: both;
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	font-size: 140%;
	width: 930px;
	height: 40px;
	margin: 0px;
	padding: 0px;
	font-weight: bold;
}

div#menu_horiz ul {
/* remove any default bullets */
	list-style-type: none;
	margin: 0;
	padding-left: 10px;
	height: 32px;
	border-bottom-color: #000000;
	border-width: 1px;
	border-bottom-style: solid;
}

/* menu list items */
div#menu_horiz li {
	/* makes the list horizontal */
	float: left;
	/* remove any default bullets */
	list-style: none;
	/* still no margin */
	margin: 0;
	padding: 0px;
	border-color: #a0a0a0;
	border-bottom-color: #000000;
	border-width: 1px;
	border-style: solid;
	background-color: #e8e8e8;
	height: 31px;
}

/* the links, that is each list item */
div#menu_horiz a {
	/* pushes li out from the text, sort of like making links a certain size, if you give them a set width and/or height you may limit you ability to have as much text as you need */
	padding: 5px 10px 5px 10px;
	/* still no margin */
	margin: 0;
	/* removes default underline */
	text-decoration: none;
	/* default link color */
	color: #000099;
	/* makes it hold a shape, IE has problems with this, fixed above */
	display: block;
}

/* hover state for links */
div#menu_horiz li a:hover {;
	color: #000033;

}
div#menu_horiz a span {
}
div#menu_horiz li.parent a span {

}
div#menu_horiz li.parent a:hover span {
	color: #000033;
}
div#menu_horiz li.menuactive {
	color: #000066;
	background-color: #ffffff;
	border-color: #000000;
	border-width: 1px;
	border-bottom-color: #ffffff;
	border-style: solid;
}

div#menu_horiz li.menuactive a span {
	color: #000066;
}
div#menu_horiz li.menuactive a:hover span {
	color: #000033;
}
/* active parent, that is the first level parent of a child page that is the current page */
div#menu_horiz li.menuactive, div#menu_horiz li.menuactive a:hover {
	color: #000033;

}
/* End of 'Menu - Horizontal' */

