/* Start of CMSMS style sheet 'Fire Safe Menu Horiz CSS' */
/********************
MENU horizontal
*********************/

/* 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_horiz {
	text-transform: uppercase;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size:13px;
	font-weight:bold;
	background:#4F4E4E;
	width:100%;
height:32px;
	border-top: solid #EB6D07 7px;
}
/* 
the menu ul box has top and left border, 
right border is provided by the li elements 
*/
div#menu_horiz ul {
	margin: 0;
	padding: 0px 0px 0px 7px;
	height: 38px;
}
/* menu list items */
div#menu_horiz li {
	float: left; /* makes the list horizontal */
	list-style: none; /* hides the list bullet */
	margin: 0;
	padding:0;
}
/* the links, that is each list item */
div#menu_horiz a {
	padding: 9px 15px; /* padding inside the list item box */
	margin: 0; /* margin outside each list item box */
	text-decoration: none; /* no underline for links */
	color: #FFFFFF;
	display: block; /* IE has problems with this, fixed above */
}
/* hover state for links */
div#menu_horiz li a:hover {
	background: #C71318;
	color: #FFFFFF;
}
div#menu_horiz li.menuactive{
	background: #C71318;
	color: #FFFFFF;
}

div#menu_horiz li li.menuactive a:hover{
	background: #C71318;
}

/* active parent, that is the first-level parent of a child page that is the current page */
div#menu_horiz li.activeparent a {
		background: #F78B00;
	color: #FFFFFF;
}
div#menu_horiz h3 {
	padding: 7px 15px; /* padding inside the list item box */
	margin: 0; /* margin outside each list item box */
	text-decoration: none; /* no underline for links */
	color: #FFFFFF;
height: 16px;
	background: #D33402;
	display: block; /* IE has problems with this, fixed above */
	font-size: 1em;                           /* instead of the normal font size for <h3> */
}

/* End of 'Fire Safe Menu Horiz CSS' */

