/**
 * CSS Menu
 */

/**
 * Menu area height
 */
#menucontainer
{
	height: 18px;
}

/**
 * General menu settings
 */
#menu 
{
	/* General text alignment */
	text-align: left;
	
	list-style: none;
	padding: 2px 0 0 0px;
	font-size: 80%;	
}

/**
 * General menu settings
 */
#menu ul
{
	color: #BFAD9B;
	font-weight: bold;
}

/**
 * General menu item settings
 */
#menu li
{
	/* General menu text color */
	color: #BFAD9B;	
	
	/* General menu background */
	background: inherit;
	z-index: -1;
}

/**
 * General menu item settings
 */
#menu a, #menu h3
{
	margin: 0 0;
	color: #8F7459;
	font-weight: normal;
	text-transform: uppercase;
	padding: 0px 10px 0px 10px;
	
}

/**
 * General menu link settings
 */
#menu a
{
	text-decoration: none;
}

/**
 * Menu level 2 (and 3 if not otherwise defined) item settings
 */
#menu ul ul li a, #menu ul ul li h3
{
	color: #106ABD;
	background: #fff;
}

#menu ul ul
{
	width: 190px;
	border: solid 1px #BFAD9B;
}

#menu ul ul li
{
	display: block;
	width: 100%;
	z-index: 999;
}

#menu ul ul ul li a
{
	width: 160px;
}

/**
 * General selected item
 */

#menu a:hover, #menu h3:hover
{
	color: #0B44A0;
	background: #BFAD9B;
}

/**
 * Menu level 3 frame (not HTML frame) settings
 */
#menu ul ul ul
{
	/* Menu level 3 width */
	width: 100%;
	border: none;
	position: absolute;
	z-index: 2000;
	left: 190px;
	background: #fff;
	border: solid 1px #BFAD9B;
}

#menu ul ul ul a {
	padding: 0px 15px 0px 15px;
}

html body #menu ul li ul li.has_kids a
{
	background-image: url(/_composer/images/arrow.gif);
	background-position: right;
	background-repeat: no-repeat;
}

html body #menu ul li ul li.has_kids a:hover
{
	background-image: url(/_composer/images/arrow_white.gif);
}


html body #menu ul li ul li.has_kids li a,
html body #menu ul li ul li.has_kids li a:hover
{
	background-image: none;
}



