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


/**********************************/
/* Div styles styles for the Menu */
/**********************************/

	/* Font for the Cascade Menu's top row. */
div#horiz-menu {
	font-family: Arial;
	font-size: 10pt;
	height: 34px;		/* Height of the Menu's top row */
	width: 100%;
	padding-left: 5px;
}

	/* Margin and Padding for all sub-menus. */
div#horiz-menu ul {
	margin: 0;
	padding: 0;
	height: auto;
}
	/* Main Menu item settings */
div#horiz-menu li {
	margin: 0;
	padding: 0;
	padding-right: 0px;
	list-style: none;
	white-space: nowrap;
}
	/* Main Menu item hyperlink settings */
div#horiz-menu a:link,
div#horiz-menu a:visited {
	display: block;
	padding: 0 8px;
	height: 34px;		/* Height of the Menu's top row */
	line-height: 34px;	/* Height of the Menu's top row */
	text-decoration: none;
	float: left;
}
	/* Alignment of the hyperlink tags in the menu */
div#horiz-menu a {
	display: block;
	height: 34px;		/* Height of the Menu's top row */
	line-height: 34px;	/* Height of the Menu's top row */
	padding: 0 0px;
	text-decoration: none;
	cursor: pointer;
	background: none;
	text-align: 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: 15px;	/* 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: 10pt;
	font-weight: normal;
}

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

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

	/* Positioning of the top level menu items. */
#horiz-menu ul li {
	position: relative;
	float: left;
}
	/* 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 {
 	top: 34px;			/* Height of the menuitems. */
	position: absolute;
	z-index: 10;
	left: -999em;
	height: auto;
	font-weight: normal;
	border-width: 0;
	margin: 0;
	padding: 0;
	width: 190px;
}

	/* Size of sub-menues. */
#horiz-menu ul ul a:link,
#horiz-menu ul ul a:visited {
	height: 25px;
	line-height: 25px;
	font-weight: normal;
}

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

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

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

	/* 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 #1F1F1F;
	border-bottom: 1px solid #1F1F1F;
	border-left: 1px solid #1F1F1F;
	border-right: 1px solid #1F1F1F;
}
	/* The Text and Background colors of the hyperlinks in a menu
		 when the mouse is over them. */
#horiz-menu.cascadingmenu li li a:hover,
#horiz-menu.cascadingmenu li li.cmHover {
	color: #92a8e1;
	background: #000000;
}

	/* The Text and Background colors of the menuitems
		 when the mouse is not over them. */
#horiz-menu.cascadingmenu li a,
#horiz-menu.cascadingmenu li {
	color: #ffffff;
	background: #000000;
}
	/* The Text and Background colors of the hyperlinks
		 when the mouse is over them. */
#horiz-menu.cascadingmenu li a:hover,
#horiz-menu.cascadingmenu li.cmHover {
	color: #92a8e1;
	background: #000000;
}

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

/*
#horiz-menu li li.active {

}
*/



