/*
* Simple CSS menu styles for the YUI Menu version 2.4.1
* Author: Stephen Delaney
* Date: 15/02/2008
*/

/*
* The menu bar that contains the top level items
*/
.yuimenubar {
	width: 100%;
	
	font-size: 11px;
	height:39px;
	background:transparent;
}



/*
* Each menu item in the top bar 
*/
.yuimenubaritem {
	width: auto;
	height: 39px;
	font-weight:bold;
	overflow-x:hidden;
	margin:0;
	float:left;	
	
}

/*
* The container for the drop down items
*/
.yuimenubaritem .bd ul{
	width: 160px;
	background: #fafafa;
	border:1px solid #555;margin:-1px 0 0 0;position:relative;*position:static;
}

/*
* Each menu item below the first level
*/
.yuimenuitem {
	font-weight:normal;
	width:160px;
	height: auto;
}

/*
* The label (text) of each item in the top menu bar
*/
.yuimenubaritemlabel {
	text-decoration:none;
	color:#000;	
	padding:10px 25px;background:url(/_styles/images/nav-border.jpg) no-repeat center right		
}

/*
* The label (text) of each item in the drop down menus
*/
.yuimenuitemlabel {
	text-decoration:none;
	color:#000000;
	padding: 2px;
}

/*
* The mouse over state of any drop down menu item
*/
.yuimenuitem:hover {
	background-color:#58A2DE;
	font-weight:normal;
}

/*
* The mouse over state of any menu item in the top menu bar
*/
.yuimenubaritemlabel:hover {
	
	color:#0B56A4;
        
}

/*
* Class applied to any drop down menu item that has sub items
*/
.yuimenuitem-hassubmenu {
	background-image: url(/_styles/images/1rightarrow.gif);
	background-position: center right;
	background-repeat:no-repeat;
}

.yuimenuitem-hassubmenu:hover {
	background-image: url(/_styles/images/1rightarrow.gif);
	background-position: center right;
	background-repeat:no-repeat;
}



/*
* Class applied to any menu item in the top menu bar that has sub items
*/
.yuimenubaritem-hassubmenu {
	background-image: url(/_styles/images/1downarrow.gif);
	background-position: center right;
	background-repeat:no-repeat;	
	
}


.yuimenubaritem-hassubmenu:hover {
	background-image: url(/_styles/images/1downarrow.gif);
	background-position: center right;
	background-repeat:no-repeat;	
	
}


