/***************************************************************************************
	Cascading Menu stylesheet

	Author: Dan Curren				
	Date:	2008.09.22				

/**********************************/
/* Div styles styles for the Menu */
/**********************************/
	/* Font for the Cascade Menu's top row. */
div#horiz-menu {
	font-family: Verdana;
	font-size: 11px;
	height: 23px;		/* Height of the Menu's top row */
	width: 672px;
    background: #474135;
	float: left;
	text-align: center;
}

	/* Margin and Padding for all sub-menus. */
div#horiz-menu ul {
	margin: 0;
	padding: 0;
	
}

	/* Main Menu item settings */
div#horiz-menu li a {
	width: 82px;
	
}

div#horiz-menu li {
	margin-left: 0;
	padding: 0;
	padding-right: 0px;
	list-style: none;
	white-space: nowrap;
	float: left;
	width: auto;
	border: 1px solid #000000;
}

	/* Main Menu item hyperlink settings */

	
div#horiz-menu a:link,
div#horiz-menu a:visited {
	margin: 0;
	display: block;
	padding: 0px;
	height: 23px;		/* Height of the Menu's top row */
	line-height: 23px;	/* Height of the Menu's top row */
	text-decoration: none;
	float: left;
	font-weight: bold;	
	
}

	/* Alignment of the hyperlink tags in the menu */
div#horiz-menu a {
	margin: 0;
	padding: 0px;
	text-decoration: none;
	cursor: pointer;
	background: none;
	font-weight: normal;
	float: left;
	
}

	/* Hyperlink Text location with a sub-menu item. */
#horiz-menu li li a:link,
#horiz-menu li li a:visited{
	background: none;
	padding: 0;
	text-indent: 10px;	/* Indent the sub-menu item text */
	
}

	/* Hyperlink Font within a sub-menu item. */
#horiz-menu li li a:link,
#horiz-menu li li a:visited {
	border: 0;
	font-size: 9pt;
	font-weight: normal;
}

	/* Background image for subitems with subitems */
#horiz-menu ul li a.parentsubitem:link,
#horiz-menu li li a.parentsubitem:visited  {
	background: url("/Images/Arrow.gif") 100% 50% no-repeat;
}

	/* The formatting for items*/
#horiz-menu li a.active:link,
#horiz-menu li a:link,
#horiz-menu li a:visted,
#horiz-menu li a.active:visited  {
	font-weight: normal;
}

	/* The width of sub-menu items. */
#horiz-menu li li {
	background: none;
	padding: 0;
	width: 226px;
}

	/* Basic Sub-Menu settings. */
#horiz-menu ul ul a:link,
#horiz-menu ul ul a:visited {
	width: 226px;
	height: 23px;
	line-height: 23px;
	display: block;
	text-decoration: none;
	text-transform: none;
	background: none;
	text-align: left;
}

	/* Positioning of the top level menu items. */
#horiz-menu ul li {
	position: relative;
	float: left;
	z-index: 100;
}
	/* Positioning of sub-menues with parent menu items.
		Note: left: -999em is used to move the sub-menu off
		the page until we hover over it. */
#horiz-menu li ul {
	height: auto;
	width: auto;
 	top: 13px;			/* Height of the menuitems. */
	position: absolute;
	z-index: 10;
	left: -999em;
	font-weight: normal;
	border-width: 0;
	margin: 0;
	padding-top: 11px;
}

/*
	Margin for pullouts:
		-23px = the defined height of a menuitem.
		223px = the defined width of a menuitem.
 */
#horiz-menu li ul ul {
	margin: -23px 0 0 223px;
}

#horiz-menu li ul li {
	margin: -1px;
}

/*********************************/
/* Color Formating styles for the Menu */
/*********************************/

	/* The formatting for items which are the currently active items*/
#horiz-menu.cascadingmenu li a.active:link,
#horiz-menu.cascadingmenu li a.active:visited  {
	font-weight: normal;
	color: #FF9900;
	background: #BB0000;
}
#horiz-menu.cascadingmenu li a.active:hover{
	font-weight: bold;
	color: #FFFF00;
	background: #BB0000;
}

	/* The Text and Background colors of the menuitems in a menu
		when the mouse is not over them. */
#horiz-menu.cascadingmenu a,
#horiz-menu.cascadingmenu li {
	color: #FF9900;
	background: #800000;
}

	/* The Text and Background colors of the menuitems in a sub-menu
		 when the mouse is not over them. */
#horiz-menu.cascadingmenu li li a,
#horiz-menu.cascadingmenu li li {
	color: #FF9900;
	background: #800000;
	border: 1px solid #000000;
}

	/* The Text and Background colors of the hyperlinks in a menu
		 when the mouse is over them. */
#horiz-menu.cascadingmenu a:hover,
#horiz-menu.cascadingmenu li li:hover,
#horiz-menu.cascadingmenu li li.cmHover {
	color: #FFFF00;
	background: #800000;
}

/*********************************/
/* Cascading styles for the Menu */
/*********************************/

#horiz-menu li:hover ul ul, 
#horiz-menu li:hover ul ul ul,
#horiz-menu li:hover ul ul ul ul,  
#horiz-menu li.cmHover ul ul, 
#horiz-menu li.cmHover ul ul ul, 
#horiz-menu li.cmHover ul ul ul ul 
{
	display: none;
/*	left: -999em;*/
}

#horiz-menu li:hover ul, 
#horiz-menu li li:hover ul, 
#horiz-menu li li li:hover ul, 
#horiz-menu li li li li:hover ul,
#horiz-menu li.cmHover ul, 
#horiz-menu li li.cmHover ul,
#horiz-menu li li li.cmHover ul,
#horiz-menu li li li li.cmHover ul
{
	left: 0;
	display: block;
	
}

#horiz-menu li:hover,
#horiz-menu li.cmHover {
	left: 0;
	display: block;
}
