/*************************************************/
/*                                               */
/*                                               */
/*                                               */
/*                                               */
/*************************************************/
#menu {
	/*background: #ccc url(images/menu-bg.jpg) repeat-x;*/
	background-color:#917945;
	padding:0px 0px 8px 2px;
	width:901px;
	z-index:500;
	position:relative;
}

#menu ul
{
	/*background: #ccc url(images/menu-bg.jpg) repeat-x;*/
	text-align:center;
	margin:0px;
	padding:0px;	
}

#menu li
{
}
/*************************************************/
/*                                               */
/*                                               */
/*                                               */
/*                                               */
/*************************************************/
#menu ul li 
{
	background: #fff;
	width:130px;
	margin-right: 1px;
	border-top: 6px solid #232463;
}

#menu ul ul li { border-top: none; }

#menu ul ul { margin: 0px; }

#menu  li a
{
	color: #242565;
	font-size:1.1em;
	font-weight: bold;
	letter-spacing: -1px;
	text-transform:uppercase;
	padding:6px 0px 7px 0px;
	text-decoration:none;
}


#menu li:hover a
{
	color:#fff;
	background: #232462;
}
/*************************************************/
/* Every ul inside another ul is a submenu. They */
/* are hidden until hovered over. It is not      */
/* moved left since the 1st ul->ul is a vertical */
/* dropdown. top:auto makes sure the menu is     */
/* directly under the 1st ul parent              */
/*************************************************/
#menu ul ul
{
	top:auto;
	left:0px;
	height:auto;
	width:100%;
	border-top: 0px;

}

#menu ul ul li 
{
	background: #f5f9f5;
}

#menu li:hover li a
{
	color: #525252;
	background: #f5f9f5;
	font-weight:bold;
	font-size: 1.1em;
	padding:3px;
	text-decoration:none;
	text-transform: capitalize;
}

#menu ul ul a:active
{
	color:#060;
}

#menu  ul ul a:visited
{
	color:#525252;
	background: #f5f9f5;
}

#menu li:hover li:hover a
{
	color:#0a78c4;
	background:#fff;
}
/*************************************************/
/* Every ul->ul->ul is a side popout menu from   */
/* an existing dropdown. This overrides the      */
/* vertical drop of all menus following the 1st  */
/* top:0px; left:100% makes sure the menu is     */
/* inline with its parent                        */
/*************************************************/
#menu ul ul ul
{
	top:0px;
	left:100%;
}
