/* ================================================================ 
Menu Style
=================================================================== */

.menu {	
	width: 899px;
	margin: 0 auto;
	height: 35px;
	line-height: 35px;
	border-left: 1px solid #0099d8;
}

/* restroe list style */
.menu ul {
	padding:0;
	margin:0;
	list-style-type:none;
}

/* width of the sub menu */
.menu ul ul {
	width:128px;
}

/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {
	float:left;
	position:relative;
	border-right: 1px solid #3FB4E2;
}

/* style the links for the main Nav */
.menu a, .menu a:visited {
	font: 14px/35px "Trebuchet MS", Arial;
	background: url(images/nav-bg.gif) repeat-x 0px 0px;
	text-align: center;
	width: 128px;
	display: block;
	color: #FFFFFF;
	text-decoration: none;
	line-height: 35px;
}

/* style the second level background */
.menu ul ul a.drop, .menu ul ul a.drop:visited {
	background:#d4d8bd;
}

/* style the second level hover */
.menu ul ul a.drop:hover{
	background: url(images/nav-bg.gif) repeat-x 0px -35px;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
	visibility:hidden;
	position:absolute;
	height:0;
	top:35px;
	left:0;
	width:128px;
}

/* style the table so that it takes no ppart in the layout - required for IE to work */
.menu table {
	position:absolute;
	top:0;
	left:0;
	border-collapse:collapse;
}

/* style the 2nd level links */
.menu ul ul a, .menu ul ul a:visited {
	background: #001d91;
	color:#fff;
	height:24px;
	line-height:24px;
	width:128px;
	font-size:11px;
	text-align:left;
	text-indent:10px;
	filter: Alpha(Opacity=90);
	-moz-opacity:0.9;
	font-family: Arial, Helvetica, sans-serif;
}

/* style the top level hover */
.menu a:hover {color:#FFF; 
	background: url(images/nav-bg.gif) repeat-x 0px -35px;
}
.menu :hover > a {
background: url(images/nav-bg.gif) repeat-x 0px -35px;
}
.menu ul ul a:hover {
	color: #fff; background:#95c61d;
}
.menu ul ul :hover > a {color: #fff; background:#95c61d;
}
/* make the second level visible when hover on first level list OR link */
.menu ul li:hover ul,
.menu ul a:hover ul{
	visibility:visible;
}


/* ================================================================ 
   This CSS is further CSS I have created specifically for Wordpress
   so that the current page is highlighted in two levels.
   If you want it in three levels let me know.

   Author: Isaac Rowntree
   Website: www.zackdesign.biz
===================================================================

*/

/* 1st menu */
.menu .current_page_item a {
	background: url(images/nav-bg.gif) repeat-x 0px -70px;
}
.menu ul .current_page_item ul a {
	background: #001d91;
	color:#fff;
	height:24px;
	line-height:24px;
	width:128px;
	font-size:11px;
	text-align:left;
	text-indent:10px;
	filter: Alpha(Opacity=90);
	-moz-opacity:0.9;
	font-family: Arial, Helvetica, sans-serif;
}
.menu ul .current_page_item ul a:hover {
color: #fff; background:#95c61d;
}

/* 2nd menu */
.menu ul ul .current_page_item a {
	background:#95c61d;
	color:#fff;
	height:24px;
	line-height:24px;
	width:128px;
	font-size:11px;
	text-align:left;
	text-indent:10px;
	filter: Alpha(Opacity=90);
	-moz-opacity:0.9;
	font-family: Arial, Helvetica, sans-serif;
}

/* While 1st menu highlighted, this will remind the 2nd menu style 
.menu ul .current_page_item ul a {
  color: white;
  font-weight: normal;
}
 */