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

#menu {
	position:absolute;
	left:-2px;
	top:98px;
	z-index:10000;
	width:102%;
}

/*
* The menu bar that contains the top level items
*/
.yuimenubar {
	width: 100%;
	border-bottom:1px solid #000000;
	border-top:1px solid #000000;	
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 8px;
	height:28px;
	background:#dddddd url(../styleImages/topnav_bg.gif);
	padding-left:3px;
}

/*
* Each menu item in the top bar 
*/
.yuimenubaritem {
	height: 28px;
	font-weight:normal;
	font-size: 15px;
	margin-left:20px;
	float:left;	
}

/*
* The container for the drop down items
*/
.yuimenubaritem .bd ul{
	width:275px;
	background: #eeeeee;
	border:1px solid #000000;
	z-index:100000;
	text-align:left;
	padding:2px;
}


.yuimenubaritem .bd a {
	color:#000000;	
}

/*
* Each menu item below the first level
*/
.yuimenuitem {
	font-weight:normal;
	width:275px;
	height: 18px;
	padding:4px;
}

/*
* The label (text) of each item in the top menu bar
*/
.yuimenubaritemlabel {
	text-decoration:none;
	text-align:center;
	color:#333333;	
	padding-left: 4px;
	padding-top: 4px;
	margin-top:2px;
	margin-right: 12px;		
}

.yuimenubaritemlabel:hover {
	color:#F60;
	background:#FFF; 
}
/*
* The label (text) of each item in the drop down menus
*/
.yuimenuitemlabel {
	text-align:left;	
	text-decoration:none;
	color:#000000;
	padding: 4px;
}

/*
* The mouse over state of any drop down menu item
*/
.yuimenuitem:hover a {
	color:#F60;
	background:#FFF;  
}

/*
* The mouse over state of any menu item in the top menu bar
*/
.yuimenubaritem:hover {
	color:#F60;
	background:#FFF; 
}

/*
* Class applied to any drop down menu item that has sub items
*/
.yuimenuitem-hassubmenu {
	background-image: url(../styleImages/right.gif);
	background-position: 135px 10px;
	background-repeat:no-repeat;
}

/*
* Class applied to any menu item in the top menu bar that has sub items
*/
.yuimenubaritem-hassubmenu {
	background-image: url(../styleImages/1downarrow.png);
	background-position: 95px 0px;
	background-repeat:no-repeat;
}

.submenuindicator {
	text-indent: -1000px;
	overflow:hidden;
	background-image: url(../styleImages/right.gif);
	background-position: 135px 10px;
	background-repeat:no-repeat;
	display:none;
	
}

