/*************************************************/
/*                                               */
/*                                               */
/*                                               */
/*                                               */
/*************************************************/
#menu {
	/*background: #ccc url(images/menu-bg.jpg) repeat-x;*/
}

#menu ul
{
	/*background: #ccc url(images/menu-bg.jpg) repeat-x;*/
	text-align:center;
	margin:0px;
	padding:0px;	
}
#menu li
{
}
/*************************************************/
/*                                               */
/*                                               */
/*                                               */
/*                                               */
/*************************************************/
#menu ul li
{
	/*background: #ccc url(images/menu-bg.jpg) repeat-x;*/
	width:14%;
}

#menu a
{
	color:#FFFFFF;
	font-size:1em;
	font-weight:bold;
	text-transform:uppercase;
	border-right:1px solid #FFFFFF;
	padding:5px 0px;
	text-decoration:none;
}

#menu a:active
{
	color:#FFFFFF;
	background:#ccc;
}

#menu a:visited
{
	color:#FFFFFF;
}

#menu a:hover
{
	color:#000000;
	background:#DDDDDD;
}
/*************************************************/
/* 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%;

}

#menu ul ul li 
{
	border-width:1px;
	border-style:solid;
	border-color:#ccc #888 #555 #bbb;
	background:#eee;
}

#menu ul ul a
{
	color:#000;
	font-weight:bold;
	padding:0px;
	text-decoration:none;
}

#menu ul ul a:active
{
	color:#000;
	background:#ccc;
}

#menu  ul ul a:visited
{
	color:#000;
}

#menu ul ul a:hover
{
	color:#A00;
	background:#ddd;
}
/*************************************************/
/* 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%;
}