/* VERTICAL POPOUT MENUS */

#menu /* set width of menu */
{
	width: 140px; 
/*	font-weight : bold;*/
/*	background: #eae;*/
} 

#menu .pop_ind
{
	position : absolute;
	right : 3px;
	top : 8px;
}	

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

/* style, color and size links and headings to suit */
#menu a
 {
	font-size:  12px;
	line-height : 16px;
	display: block;
	border-bottom: 2px groove #F00;    /*#D9AAAA;*/
/*	border-top : 1px solid #88473C;*/
	margin: 0;
	padding: 2px 3px 2px 5px;
	color: #FFF;
	text-decoration: none;
}

#menu a:hover {
color: #FFCD00;
/*background: #eff;*/
}

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

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

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

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

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

#menu ul ul a
{
	color : #000;
	text-decoration : none;
	border : none;
	font-weight : normal;
}

#menu ul ul a:hover
{
	color : #fff;
	background-color : #C82825;
}


	