/* CSS Document */

.menu {
	height:20px;
	position:relative;
	z-index:100;
	font-family:arial, sans-serif;
	text-align: center;
	font-size: 9px;
	vertical-align: middle;
	text-decoration: none;
	line-height: 15px;
	border-top-width: thin;
	border-top-style: groove;
	border-top-color: #779F2B;
}
/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
	padding:0;
	margin:0;
	list-style-type:none;
	background-color: #99CC33;
	line-height: 15px;
	font-size: 9px;
}
/* .menu ul ul {
	width:95px;
	background-color: #FFFFFF;
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {
	float:right;
	width:95px;
	position:relative;
	background-color: #99CC33;
	font-size: 9px;
}
/* style the links for the top level */
.menu a, .menu a:visited {
	display:block;
	color:#FFFFFF;
	width:95px;
	height:20px;
	font-weight:bold;
	background-color: #000033;
}
 
/* style the second level background */
.menu ul ul a.drop, .menu ul ul a.drop:visited {
}
/* style the second level hover */


 
/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
	visibility:hidden;
	position:absolute;
	top:20px;
	left:0px;
	width:95px;
	background-color: #99CC33;
	font-size: 9px;
}
/* another hack for IE5.5 */
* html .menu ul ul {top:20px;top:20px;}
 
/* position the third level flyout menu */
.menu ul ul ul{
	left:115px;
	top:-1px;
	width:95px;
	background-color: #99CC33;
	font-size: 9px;
}
 
/* position the third level flyout menu for a left flyout */
.menu ul ul ul.left {
	left: -115px;
	background-color: #99CC33;
}
 
/* 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 second level links */
.menu ul ul a, .menu ul ul a:visited {
	height:auto;
	line-height:1em;
	width:95px;
	border-width:0 1px 1px 1px;
	padding-right: 10px;
	padding-bottom: 5px;
	padding-left: 10px;
	background-color: #99CC33;
}
/* yet another hack for IE5.5 */
* html .menu ul ul a, * html .menu ul ul a:visited {width:95px;w\idth:95px;}
 
/* style the top level hover */
.menu a:hover, .menu ul ul a:hover{
	color:#000;
	font-weight: bold;
	background-color: #99CC33;
	line-height: 15px;
}
.menu :hover > a, .menu ul ul :hover > a {
	color:#000;
	font-weight: bold;
	background-color: #99CC33;
}
 
/* 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;
}
/* keep the third level hidden when you hover on first level list OR link */
.menu ul :hover ul ul{
	visibility:hidden;
}
/* make the third level visible when you hover over second level list OR link */
.menu ul :hover ul :hover ul{
	visibility:visible;
}
 
