/*************************************************************************
* This is the SKIN style definition for the CSS menu.                    *
* Feel free to customize this section.                                   *
*************************************************************************/

/*
 * Menu container settings
 * Applies to the first level menu container
 */
.menu {
	font-family: "Trebuchet MS", Arial, sans-serif;
	vertical-align: middle;   
	font-size: 11px;
	font-weight:bold;
	line-height: 18px;
	color:#FFFFFF;
	padding:0px 5px;
	}

/*
 * Menu container settings
 * Applies to second (or more) level menu containers
 */
.menu ul {}
	

/*
 * Menu items settings
 * Applies to all menu items in all menu containers
 */
.menu li {}
/*
 * Menu items settings
 * Applies to second (or more) level menu items
 */
.menu ul li {
	margin: 0px;
	vertical-align:middle;
	background-image:none;
	background: #6A6A6A;
	color:##FFFFFF;
	filter:alpha(opacity=90);
	-moz-opacity:.90;opacity:.90;
}

/*
 * Menu link settings
 * Applies to links that are to be found within the menu items, no matter the menu level
 */
.menu a {
	text-align:left;
	text-decoration: none;
	color: #FFFFFF;
	line-height: 15px;
	cursor: pointer;
	padding:10px 3px;
	background: none;
}

/*
 * Menu link settings
 * Applies to links located in the second (or more) level menu items
 */
.menu ul a {
background-image:none;
color:#FFFFFF;
font-weight:bold;
line-height:15px;
padding:0px 14px;
text-decoration:none;
text-transform: none;
}


/***************************************************************************
* In this section, we will define what happens when mouse-overing an item  *
***************************************************************************/

/*
 * Mouse over on menu items
 * Applies to all menu items in all menu containers
 */
.menu li.hover {
	background: none;
}
  
/*
 * Mouse over on menu items
 * Applies to second (or more) level menu items
 */
.menu ul li.hover {
	background: #272626;
}

/*
 * Mouse over on links
 * Applies to all links in all menu items
 */
.menu a.hover {
	color:#FFFFFF !important;
	background: none;	
	text-decoration:none; 	

	
}

/*
 * Mouse over on links
 * Applies to links located in the second (or more) level menu items
 */
.menu ul a.hover {
  	color:#FFFFFF !important;
	background: #FFFFFF;
	vertical-align: center;
	line-height:25px;
	padding:0px 14px;
	 text-decoration:none;
	
}



