/* Start of CMSMS style sheet 'fzn_simple_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_horiz {
	width: 814px;
	margin: 0;
}

/* 
the menu ul box has top and left border, 
right border is provided by the li elements 
*/
div#menu_horiz ul {
	margin: 0;
	padding: 0;
	height:20px;
}


/* menu list items */
div#menu_horiz li {
	float: left; /* makes the list horizontal */
	list-style: none; /* hides the list bullet */
	margin: 0;
	border-right-width: 0px;
	border-right-style: solid;
	border-right-color: #FFFFFF;
}


/* the links, that is each list item */
div#menu_horiz a {
	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 */
	padding-top: 2px;
	padding-right: 1.5em;
	padding-bottom: 3px;
	padding-left: 1.5em;
}


/* hover state for links */
div#menu_horiz li a:hover {
	background-color: #BFD9E5;
	color: #000000;
}
div#menu_horiz a.activeparent:hover {
	background-color: #BFD9E5;
	color: #000000;
}

/* active parent, that is the first-level parent of a child page that is the current page */
div#menu_horiz li.activeparent a {
	color: #000000;
	background-color: #FFFFFF;
	background-image: url(images/cms/arrow-down.gif);
	background-repeat: no-repeat;
	background-position: 0.4em center;
	padding-top: 2px;
	padding-right: 2em;
	padding-bottom: 3px;
	padding-left: 2em;
	}

div#menu_horiz h3 {
	margin: 0; /* margin outside each list item box */
	text-decoration: none; /* no underline for links */
	color: #000000;
	display: block; /* IE has problems with this, fixed above */
	font-size: 1em;                           /* instead of the normal font size for <h3> */
	padding-top: 2px;
	padding-right: 2em;
	padding-bottom: 3px;
	padding-left: 2em;
	background-color: #FFFFFF;
	background-image: url(images/cms/arrow-right-active.gif);
	background-repeat: no-repeat;
	background-position: 0.4em center;
}

/* End of 'fzn_simple_horiz_nav' */

