/* VERTICAL POPOUT MENUS */

#menu_vert /* set width of menu */
{
	width : 160px;
	font-size : 12px;
} 

#menu_vert ul /* remove bullets and list indents */
{ 
	list-style: none;
	margin: 0;
	padding: 0;
}

/* style, color and size links and headings to suit */
#menu_vert a
 {
	line-height : 26px;
	display: block;
	text-align : center;
	margin: 0;
	padding : 0;
	color: #5E4A00;
	font-weight : bold;
	text-decoration: none;
	}
#menu_vert a:hover {
color: #BA9300;
/*background: #eff;*/
}
#menu_vert a.active
{
	color : #FFCD00;
}

#menu_vert li /* make the list elements a containing block for the nested lists */ 
{
	position: relative;
	height : 32px;
	background-image : url(../../images/site/button_nav.jpg);
	background-repeat : no-repeat;
	z-index : 10;
} 

#menu_vert ul li a.popInd
{
	background-image : url(../../images/site/arrow_pop_right.gif);
	background-position : 142px 16px;
	background-repeat : no-repeat;
} 
#menu_vert ul ul li
{
	background-image : none;
	height : 24px;
}
#menu_vert ul ul li a
{
}
#menu_vert ul ul li a.popInd
{
	background-image : url(../../images/site/arrow_pop_right.gif);
	background-position : 98% 50%;
	background-repeat : no-repeat;
} 
#menu_vert ul ul 
{
	position: absolute;
	top: 5px;
	left: 160px; /* to position them to the right of their containing block */
	width: 100%; /* width is based on the containing block */
	border : 1px solid #5E4A00;
	background-color : #E6D87F;
	z-index : 100;
}

#menu_vert ul ul, #menu_vert ul ul li:hover ul 
{
	display: none;
}

div#menu_vert ul li:hover ul, div#menu_vert ul ul li:hover ul
{
	display: block;
}

#menu_vert ul ul a
{
	color : #5E4A00;
	text-decoration : none;
	border : none;
/*	font-weight : normal;*/
	text-align : left;
	padding : 0 0 0 5px;
}

#menu_vert ul ul a:hover
{
	color : #fff;
	background-color : #BA9300;
}

#menu_vert a img 
{
	border : none;
}
	