/*
 * CSS for css menu helper.
 * Author: John Reeves
 * Credit given to Jake Gordon, author of Nice Menus module
 * for Drupal, for much of the idea.
 */
ul.css_menu_hv,
ul.css_menu_hv ul{
	list-style: none;
	margin: 0;
	padding: 1px;
}

ul.css_menu_hv ul{
	display: none;
	position: absolute;
	margin-right: 0;
	z-index: 5;
}

ul.css_menu_hv li{
	margin: 0;
}

ul.css_menu_hv li{
/*	background-color:#4F4B4A; */
/*	color:#E5E5E5; */
	font-family:Arial,Helvetica,Verdana,sans-serif;
	font-size:12px;
	font-style:normal;
	font-weight:bold;
	letter-spacing:1px;
	line-height:normal;
	padding: 5px 15px 2px 15px;
	border-left:1px solid #E5E5E5;
	text-align:left;
	text-decoration:none;
	list-style: none;
	float: left;
	position: relative;
	
}
ul.css_menu_hv li:first-child {
 border-left: none
}
ul.css_menu_hv a:link, a:visited, a:active{
	color: #BBB;
	text-decoration: none
}
ul.css_menu_hv a:hover {
	text-decoration: none;
}

ul.css_menu_hv ul li{
	display: block;
}

ul.css_menu_hv:after{
	clear: both;
	display: block;
	height: 0;
	visibility: hidden;
}

ul.css_menu_hv li:hover{
	background-color: #666666;
}

/*
 * Hide sub menus that are not hovered over.
 * It only works for 5 levels deep.  If for some reason you need
 * more, it should be easy to see how to copy the last selector and
 * add one more li:hover.  Same goes for the display: block; part below.
 */
ul.css_menu_hv ul,
ul.css_menu_hv li:hover ul ul,
ul.css_menu_hv li:hover li:hover ul ul,
ul.css_menu_hv li:hover li:hover li:hover ul ul{
  display: none; 
} 

/* show hovered submenus */
ul.css_menu_hv li:hover ul,
ul.css_menu_hv li:hover li:hover ul,
ul.css_menu_hv li:hover li:hover li:hover ul,
ul.css_menu_hv li:hover li:hover li:hover li:hover ul{
	display: block;
}

/* RIGHT type menus */
ul.cmhv_right a:link, a:active{
	color: #ffffff;
	text-decoration: none
}
ul.cmhv_right a:visited{
	color: #bbb;
	text-decoration: none
}

ul.cmhv_right li:hover{
	background-color: #CCCCCC;
}

ul.cmhv_right li{
	float: none;
	padding:3px 2px 3px 4px;
	border-left:0px;
	font-family:Arial,Helvetica,Verdana,sans-serif;
	font-size:11px;
	font-style:normal;
	font-weight:bold;
	letter-spacing:0px;
}
ul.cmhv_right li:first-child {
}

ul.cmhv_right li.parent:hover,
ul.cmhv_right li li.parent:hover{ 
	background: #666666 url(/img/bullet_arrow_right.gif) right center no-repeat;
}

ul.cmhv_right li.parent,
ul.cmhv_right li li.parent{ 
	background-image: url(/img/bullet_arrow_right.gif);
	background-position: right center;
	background-repeat: no-repeat;
}

ul.cmhv_right li ul,
ul.cmhv_right li ul li.parent ul{
	left: 5.9em;
	top: -2px;
}


/* LEFT type menus */

ul.cmhv_left li{
	float: none;
	padding-left: 15px;
}

ul.cmhv_left li.parent:hover,
ul.cmhv_left li li.parent:hover{ 
	background: #666666 url(/img/bullet_arrow_left.gif) left center no-repeat;
}

ul.cmhv_left li.parent,
ul.cmhv_left li li.parent{ 
	background-image: url(/img/bullet_arrow_left.gif);
	background-position: left center;
	background-repeat: no-repeat;
}

ul.cmhv_left li ul,
ul.cmhv_left li ul li.parent ul{
	left: -7.8em;
	top: -2px;
}



/* DOWN type menus */
ul.cmhv_down li ul{
	top: 1.5em;
	left: -4px;
}

ul.cmhv_down li ul li.parent ul{
	left: 5.9em;
	top: -0.1em;
}

ul.cmhv_down li img{
  margin: -6px;
}
ul.cmhv_down li:hover img{
  margin: -6px;
}
ul.cmhv_down li:hover{
	background: url(/img/menuback_002.png) right repeat-x;
	padding:5px 15px 2px 15px;
}

ul.cmhv_down li.parent{
}

ul.childcmhv_down li, ul.childcmhv_down li:hover{
 width: 100%;
	top: 5px;
	left: 3px;
	font-family:Arial,Helvetica,Verdana,sans-serif;
	background-color: #545454;
	border-left:0px;
	font-size:11px;
	font-style:normal;
	font-weight:bold;
	line-height:normal;
	padding:3px 5px 4px 5px;
	text-align:left;
	text-decoration:none;
	list-style: none;
	float: left;
	position: relative;
}
ul.cmhv_down li li.parent:hover{ 
	background: url(/img/bullet_arrow_right.gif) right center no-repeat;
}

ul.cmhv_down li li.parent{ 
	background-image: url(/img/bullet_arrow_right.gif);
	background-position: right center;
	background-repeat: no-repeat;
}
div.menubarright {
	background: #666666;
}
