/* CSS Document */

.menu { 
	width:763px; /* width originally 760 but expanded to proportion 6 menu items */
	font-size:12px;
	position:relative;
	z-index:100;
	height: 30px;
	background-image: url(../images/CSS/nav_bar_bg_over.png);
}
.menu UL {
	margin: 0; 
	list-style-type: none;
	padding: 0;
}
.menu UL UL { 
	/*width: 152px;*/
	width: 109px;
}
.menu LI { 
	float: left;
	/*width: 152px; width of top-layer blue menu item each */
	/*width: 127px; */
	width: 109px; 
	position: relative;
	background-color: #003333;
	background-image: url(../images/CSS/nav_bar_bg.png);
}
.menu A { 
	display: block; 
	padding-left: 10px; 
	font-size: 11px; 
	/*width: 142px;*/
	width: 116px;
	color: #fff; 
	line-height: 27px; 	 
	height: 30px; 
	text-decoration: none;
	font-family: verdana, arial, sans-serif;
	border-left: 1px solid #295165;
}
 HTML .menu A { 
	/* width of underlying green during hover */
	/*width: 141px; */ 
	width: 98px; 
}
.menu UL UL A.drop { 
	background: #E1E2D7;
}
.menu UL UL A.drop:hover {
	background: url(../images/CSS/sub_arrow_wh.gif) no-repeat right center #295165;
}
.menu UL UL UL A {
	background: #EFEEE4;
}
.menu UL UL UL A:hover {
	background: #295165; 
}
.menu UL UL UL A.firstopt {
	border-top: #698898 1px solid;
}

.menu UL UL {
	left: 0px; 
	visibility: hidden; 
	/*width: 152px; */
	width: 109px; 
	position: absolute; 
	top: 31px; 
	height: 0px;
}

 HTML .menu UL UL {
	top: 30px
}
.menu UL UL UL {
	/* 3rd level/right drop settings */
	/*left: 152px; 
	width: 152px; */
	left: 109px; 
	width: 109px; 
	/*top: 3px;*/
	top: 1px;
}

.menu UL UL UL UL{
	left: 148px; 
	/* not sure what this width does */
	/*width: 152px; */
	width: 109px; 
	top: 3px;
}
.menu UL UL UL UL A.secondopt {
	border-top: #698898 1px solid; 
}
TABLE {
	left: 0px; 
	position: absolute; 
	top: 0px
}
.menu UL UL A {
	padding-top: 5px;
	padding-right: 10px; 
	padding-left: 10px; 
	padding-bottom: 5px; 
	background: #E1E2D7;
	/* not sure what this width does */
	width: 109px;
	color: #000; 
	line-height: 1em; 
	height: auto;
}
HTML .menu UL UL A {
	/* width: 131px; width of 2nd level gray drop-down */
	width: 88px; 
	border-right: #698898 1px solid; 
	border-left: #698898 1px solid; 
	border-bottom: #698898 1px solid;
}
.menu A:hover {
	background: url(../images/CSS/nav_bar_bg_over.png); 
	color: #fff;
}
.menu UL UL A:hover {
	background: #295165; 
	color: #fff;
}
.menu UL :hover UL {
	visibility: visible;
	z-index:100;
}
.menu UL :hover UL UL {
	visibility: hidden;
}
.menu UL :hover UL :hover UL UL {
	visibility: hidden;
}
.menu UL :hover UL :hover UL {
	visibility: visible;
	z-index:100;
}
.menu UL :hover UL :hover UL :hover UL {
	visibility: visible;
	z-index:100;
}
.menu :hover > A {
	background-image: url(../images/CSS/nav_bar_bg_over.png);
	color: #fff;
}
.menu UL UL :hover > A.drop {
	background: url(../images/CSS/sub_arrow_wh.gif) no-repeat right center #295165;
	color: #fff;
}
