/*************************************************/
/*                                               */
/*                                               */
/*                                               */
/*                                               */
/*************************************************/
#menu {
	/*background: #ccc url(images/menu-bg.jpg) repeat-x;*/
	height: 35px;
	background-color: #fff;
	border-bottom: 1px solid #fff;
	}

#menu ul {
	/*background: #ccc url(images/menu-bg.jpg) repeat-x;*/
	text-align:center;
	margin:0px;
	padding:0px;	
	}

#menu li {
	font-size: 12px;
	font-weight: bold;
	}
	
/*************************************************/
/*                                               */
/*                                               */
/*                                               */
/*                                               */
/*************************************************/

#menu ul li {
	background: #525252 url('../images/menu_bg.gif') no-repeat;
	width:20%;
	}

#menu a {
	color:#fff;
	font-size:1.1em;
	text-transform:uppercase;
	padding:9px 0px 10px 0px;
	text-decoration:none;
	}

#menu a:active {
	color:#060;
	}

#menu a:visited {
	color:#fff;
	}

#menu a:hover {
	color:#c3c3c3;
	}
	
/*************************************************/
/* 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: 1px solid #ccc;
	}

#menu ul ul li {
	text-align:left;
	background: #f5f9f5;
	font-size: 10px;
	font-weight: bold;
	}

#menu ul ul a {
	color: #525252;
	font-weight:bold;
	font-size: 1em;
	padding:3px;
	text-decoration:none;
	text-transform: capitalize;
	}

#menu ul ul a:active {
	color:#060;
	}

#menu  ul ul a:visited {
	color:#000;
	}

#menu ul ul a:hover {
	color:#0a78c4;
	background:#fff;
	}
	
/*************************************************/
/* 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%;
	}
