/*************************************************/
/*                                               */
/*                                               */
/*                                               */
/*                                               */
/*************************************************/
#menu {
	/*background: #ccc url(images/menu-bg.jpg) repeat-x;*/
	margin-top: 6px;
	width: 100%;
	z-index: 500;
}

#menu ul
{
	/*background: #ccc url(images/menu-bg.jpg) repeat-x;*/
	text-align:center;
	margin:0px;
	padding:0px;
	position: relative;
		left: 34px;	
}

#menu li
{
}
/*************************************************/
/*                                               */
/*                                               */
/*                                               */
/*                                               */
/*************************************************/
#menu ul li 
{

	margin-right: 2px;
}

#menu a
{
	color:#ffffff;
	font-size:1.2em;
	text-transform: capitalize;
	padding:6px 30px 7px 30px;
	text-decoration:none;
}

#menu a:active
{
	color:#ffffff;
}

#menu a:visited
{
	color:#ffffff;
}

#menu a:hover
{
	color:#ffffff;
}
/*************************************************/
/* 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: none;
}

#menu ul ul li 
{
	background: #263c64;
}

#menu ul ul a
{
	color: #8fb3ff;
	font-weight:bold;
	font-size: 1em;
	padding:3px;
	text-decoration:none;
	text-transform: capitalize;
}

#menu ul ul a:active
{
	color:#9cceff;
}

#menu  ul ul a:visited
{
	color:#9cceff;
}

#menu ul ul a:hover
{
	color:#fff;
	background:#436ebb;
}
/*************************************************/
/* 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%;
}
