/* Start of CMSMS style sheet 'Master Horiz Menul' */
/********************
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: 960px;
	margin: 0;
	height: 40px;
}

/* 
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;
}


/* menu list items */
div#menu_horiz li {
	float: left; /* makes the list horizontal */
	list-style: none; /* hides the list bullet */
	margin: 0;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-weight: normal;
	font-variant: normal;
	letter-spacing: -1px;
	font-size: 16px;
}


/* 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 */
	line-height: 40px;
	vertical-align: middle;
	padding-right: 8px;
	padding-left: 20px;
	background-attachment: scroll;
	background-image: url(images/cms/arrow-right.gif);
	background-repeat: no-repeat;
	background-position: 8px 16px;
}


/* hover state for links */
div#menu_horiz li a:hover {
	background-color: #FF6600;
	color: #000000;
	background-attachment: scroll;
	background-image: url(images/cms/arrow-right_on.gif);
	background-repeat: no-repeat;
	background-position: 8px 16px;
}
div#menu_horiz a.activeparent:hover {
	background-color: #FF6600;
	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: #fff;
	background-color: #333333;
	background-image: url(images/cms/arrow-down.gif);
	background-repeat: no-repeat;
	background-position: 0.4em center;
}

div#menu_horiz h3 {
	margin: 0; /* margin outside each list item box */
	text-decoration: none; /* no underline for links */
	color: #fff;
	;
	display: block; /* IE has problems with this, fixed above */
	font-size: 16px;                           /* instead of the normal font size for <h3> */
	font-weight: normal;
	background-attachment: scroll;
	background-color: #333333;
	background-image: url(images/cms/arrow-right.gif);
	background-repeat: no-repeat;
	background-position: 8px 16px;
	line-height: 40px;
	vertical-align: middle;
	padding-left: 20px;
	padding-right: 8px;
}



/* End of 'Master Horiz Menul' */

