/* Start of CMSMS style sheet 'Menu' */

#menu_horiz {
	height: 70px;
	float: right;
	width: 400px;
	padding-top: 30px;
	font-size: 16px;
	color: #666666;
	font-weight: bold;
}
/********************

MENU

*********************/



/* hack for Internet Explorer */

* html div#menu_horiz {

   /* hide ie/mac \*/

   height: 1%;

   /* end hide */

}









/* 

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;
	border-left:  1px solid #C0C0C0;
	float: right;

}





/* menu list items */

div#menu_horiz li {

   float: left; /* makes the list horizontal */

   list-style: none; /* hides the list bullet */ 

   margin: 0 ;

   border-right: 1px solid #C0C0C0;

}

#menu_horiz /* the links, that is each list item */

a  {
	margin: 0; /* margin outside each list item box */
	text-decoration: none; /* no underline for links */
	color: #666666;
	;
	display: block; /* IE has problems with this, fixed above */
	padding: 8px 8px 8px 8px;

}





/* hover state for links */

div#menu_horiz li a:hover {
	color: #CA1011;


}

div#menu_horiz a.activeparent:hover {


}



/* active parent, that is the first-level parent of a child page that is the current page */

div#menu_horiz li.activeparent a {
	color: #666666;

}



div#menu_horiz h3 {
	padding: 8px 8px 8px 8px; /* padding inside the list item box */
	margin: 0; /* margin outside each list item box */
	text-decoration: none; /* no underline for links */
	color: #666666;
	background-image: url(images/item_current.jpg);
	;
	font-size: 16px;

}

#menu_horiz dfn {

	display: none;

}

/* End of 'Menu' */

