/* Start of CMSMS style sheet 'DC horiz nav' */
/********************
MENU
*********************/

/* hack for Internet Explorer */
* html div#menu_horiz
{
	/* hide ie/mac \*/
	height: 1%;
	/* end hide */
}

/* 
background-color for the entire menu row, 
covering 100% of the width and text center-aligned 
*/

div#menu_horiz2
{
	background-color: transparent;
	clear: both;
	height: 1.6em;
	margin: 1em auto;
}

/* 
the menu ul box has top and left border, 
right border is provided by the li elements 
*/

div#menu_horiz2 ul
{
	width: 76.5%;
	height: 1.6em;
	margin: 0 auto;
	padding: 0;
	border-top: 1px solid #323433;
}

/* menu list items */
div#menu_horiz2 li
{
	float: left;
	/* makes the list horizontal */
	list-style: none;
	/* hides the list bullet */
	margin: 0;
}

/* the links, that is each list item */
div#menu_horiz2 a
{
	height: 1.5em;
	line-height: 1.5em;
	vertical-align: middle;
	padding: 0 10px;
	/* padding inside the list item box */
	margin: 0;
	/* margin outside each list item box */
	text-decoration: none;
	/* no underline for links */
	color: #bbbbbb;
	display: block;
	/* IE has problems with this, fixed above */
	font-weight: bold;
	font-family: garamond, times, georgia, serif;
}

div#menu_horiz2 li a
{
	border-right: 1px solid #000;
	border-left: 1px solid #000;
}

/* hover state for links */
div#menu_horiz2 li a:hover
{
	background-color: #400e0a;
	color: #fff;
}

div#menu_horiz2 a.activeparent:hover
{
	background-color: #8d8e8e;
	color: #000;
}

/* active parent, that is the first-level parent of a child page that is the current page */
div#menu_horiz2 li.activeparent a
{
	background-color: #61130f;
	color: black;
}

div#menu_horiz2 h3
{
	padding: 0 10px;
	/* padding inside the list item box */
	height: 1.3em;
	line-height: 1.3em;
	vertical-align: middle;
	margin: 0;
	/* margin outside each list item box */
	text-decoration: none;
	/* no underline for links */
	color: #e8e8e8;
	background: #400e0a;
	display: block;
	/* IE has problems with this, fixed above */
	font-size: 1.1em;
	/* instead of the normal font size for <h3> */
}

/* End of 'DC horiz nav' */

