/***************************************************************************************
	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: Arial;
	font-size: 11pt;
	height: 20px;		/* Height of the Menu's top row */
	width: auto;
      background: #000000;
	float: left;
	border-top: 0px solid #A1A1A1;
	border-bottom: 0px solid #A1A1A1;
	text-align: center;
	padding-left: 210px;
}

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

div#horiz-menu li {
	margin-left: 0;
	padding: 0;
	padding-right: 0px;
	list-style: none;
	white-space: nowrap;
	float: left;
	width: auto;
	border-top: 0px solid #398500;
	border-bottom: 0px solid #398500;
	border-right: 3px solid #333333;
}

	/* Main Menu item hyperlink settings */

	
div#horiz-menu a:link,
div#horiz-menu a:visited {
	margin: 0;
	display: block;
	padding: 0px;
	height: 30px;		/* Height of the Menu's top row */
	line-height: 30px;	/* 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: 20px;
	line-height: 20px;
	display: block;
	text-decoration: none;
	text-transform: none;
	background: none;
}

	/* 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: 20px;			/* 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:
		-20px = the defined height of a menuitem.
		225px = the defined width of a menuitem.
 */
#horiz-menu li ul ul {
	margin: -20px 0 0 225px;
}

#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  {
	color: #FFFFFF;
	background: #76923c;
}

	/* 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: #ffffff;
	background: #000000;
}

	/* 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: #ffffff;
	background: #000000;
	border-top: 1px solid #333333;
	border-bottom: 1px solid #333333;
	border-left: 1px solid #333333;
	border-right: 1px solid #333333;
}

#horiz-menu.cascadingmenu li a.active:hover {
	color: #ffff00;
	background: #FFFFFF;
}


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

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