/* VERTICAL POPOUT MENUS */

#menu 
{/* set width of menu */
	width: 195px; 
} 

#menu .pop_ind
{
	position : absolute;
	right : 0px;
	top : 4px;
	z-index : 0;
}	

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

/* style, color and size links and headings to suit */
#menu a
 {
	font-size:  12px;
	line-height : 18px;
	display: block;
	margin: 0 ;
	padding: 2px 10px 2px 5px;
	color: #6C4900;
	text-decoration: none;
}

#menu a:hover 
{
	color: #FFCD00;
	background-color : #6C4900;
}

#menu a.active
{
	color : #FFCD00;
}

#menu a.has_child 
{
	background-image : url(../../images/site/arrow_right.gif);
	background-position : 98% 7px;
	background-repeat : no-repeat;
}

#menu a.has_child:hover 
{
	background-image : url(../../images/site/arrow_right_white.gif);
	background-position : 98% 7px;
	background-repeat : no-repeat;
}


#menu li /* make the list elements a containing block for the nested lists */ 
{
	position: relative;
} 

#menu ul ul ul 
{
	position: absolute;
	top: 0;
	left: 100%; /* to position them to the right of their containing block */
	width: 100%; /* width is based on the containing block */
	border : 1px solid #990;
	background-color : #F9F5E6;
	text-align : left;
}

div#menu ul ul ul, div#menu ul ul li:hover ul ul
{
	display: none;
}

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



	
