.menu {
	background:url(images/bg_menu.gif) repeat-x top;
	margin-top:5px;
	height:25px;
}

.menu ul {	/* ----------------------------------------------------------------------------- Menu Item Width -------------------- */
	width:90px;
}

div.menu li:hover{	/* --------------------------------------------------------------------- Menu Cursor ------------------------ */
	cursor:pointer;
}

/* ----------------------------------------------------------------------------------------- Main Menu Items -------------------- */
.menu h2 a {
	font:bold 12px arial,helvetica,sans-serif;
	text-decoration:none;
	text-align:center;
	color:#fff;
	border-right:1px solid #999;
	height:25px;
	line-height:25px;
	margin-bottom:0;
}

.menu ul li:hover h2 a {		/* ------------ Main Menu - Hover ----------- */
	color: #fff ;
	background:url(images/bg_menu_hover.gif) repeat-x top;
}
.menu h2 a:active {				/* ------------ Main Menu - Active ---------- */
}
.menu h2 a:visited {			/* ------------ Main Menu - Visited --------- */
}

/* ----------------------------------------------------------------------------------------- Sub Menu Items --------------------- */
.menu ul ul {
	border:1px solid #ccc;
	width:150px;
}

.menu ul ul a,
.menu ul ul ul a,
.menu ul ul ul li:hover ul a,
.menu ul ul li:hover ul a,
.menu ul ul ul li:hover a {
	font:bold 11px arial,helvetica,sans-serif;
	text-decoration:none;
	background-color:#efefef;
	color:#000;
	padding:4px;
	/*width:100px;*/	/* Be sure to set the "Second Level Subment" width to match as described below */
}
.menu ul ul a:hover,
.menu ul ul ul li:hover a,
.menu ul ul li:hover ul a:hover,
.menu ul ul ul li:hover ul a:hover,
.menu ul ul a:hover, 
.menu ul ul li:hover a, 
.menu ul ul ul a:hover {		/* ------------ Sub Menu - Hover ----------- */
	background:#4a6e9e;
	color: #fff;
}
.menu ul ul a:active {			/* ------------ Sub Menu - Active ---------- */
	background:#f2ba57;
}
.menu ul ul a:visited {			/* ------------ Sub Menu - Visited --------- */

}

.menu ul ul {	/* ------------------------------------------------------------------------- First Level Submenus --------------- */
	left:-1px;
}
.menu ul ul ul{	/* ------------------------------------------------------------------------- Second Level Submenus --------------- */
	top:-1px;
	left:100%;
	/*left:108px;*/		/* Should be slightly larger than the sub-menu item width. Adjust to fit. */
}

