/*========================= TOP OF THE MENU CASCADE =========================*/
.menu {
	position: relative;
/* establish a menu-relative positioning context */
	float: right;
/* play nicely with others */
	margin: 0px;
	padding: 0px 10px 0px 0px;
	border: 0;
	width: auto;
	
/* we always want our menu to fill the available space restrict this to make the menu vertical */
	background: none;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
/* this (and also below) sets the menu's font size */
	display: block;
	z-index: 9999;
	position: absolute;
	top: 75px;
	right: 0px;
}
.menu ul {
	padding: 0 0 0 0;
	_padding: 3px 0px 0px 0px;
	margin: 0;
	margin-left: 0;
	border: 0;
	list-style-type: none;
/* we don't want to view the list as a list */
	line-height: 1.5em;
/* globally set the menu's item spacing. note */
}
/* this must be 1.0 or 1.5 or 2.0 for Mozilla */
.menu li {
	float: left;
	color: #ffffff;
/* this creates the side-by-side array of top-level buttons */
	position: relative;
/* create local positioning contexts for each button */
	margin: 0;
}
.menu ul li {
	padding:2px 0px 4px 7px;
	_padding: 0px 0px 4px 7px;
		color: #ffffff;


	/*border-bottom: 1px solid #787aa8;
*/
}
.menu ul li:hover {
	color: #FFFFFF;
}
.menu ul li table {
	margin: -1px 0;
/* IE5 needs -1px top and bottom table margins */
	margin: 0;
/* re-zero the table margins for everyone but IE5 */
	border-collapse: collapse;
/* IE5 needs this for the sub-menus to work */
	font-size: 12px;
/* this sets the base font size for our entire menu */
z-index: 999;
}
/*======================== TOP LEVEL MENU DEFINITIONS ========================*/
.menu ul li ul {
	display: none;
	padding: 0px;
}
.menu ul li a, .menu ul li a:visited {
	display: block;
	float: left;
	text-decoration: none;
padding:0 0 8px 0px;
	color: #ffffff;
	font-size: 11px;
	font-family: verdana, Arial, Helvetica, sans-serif;
}
.menu ul li:hover a, .menu ul li a:hover {
	color: #ffffff;
	text-decoration: underline;
}
/*======================== 2ND LEVEL MENU DEFINITIONS ========================*/
.menu ul li:hover ul, .menu ul li a:hover ul {
/* 2nd level drop-down box */
	display: block;
	position: absolute;
	margin-left: 0px;
	top: 23px;
/* place us just up underneath the top-level images */
	_top: 19px;
	left: 0px;
/* left-align our drop-down to the previous button border */
	height: auto;
/* the drop-down height will be determiend by line count */
	width: 110px;
	_width: 149px !important;
		color: #ffffff;
		text-decoration: none;
/* this sets the unselected-text color */
/*	background: #008CC7;        */
/* this sets our menu's effective "border" color */
z-index: 999;
}
.menu ul li:hover ul li, .menu ul li a:hover ul li {
	width: 120px;
	_width: 155px !important;
	background-image: url(/templates/bushmans/images/v2_submenu.png);
	background-repeat: repeat;
	_behavior: url(/templates/faqint/css/iepngfix.htc);
	/*margin:2px 0px -1px 0px; */
	margin: 0px;
	padding: 2px 5px 2px 5px;
}
.menu ul li:hover ul li a, .menu ul li a:hover ul li a {
/* 2nd level unselected items */
	border: 0;
	margin: 0;
	padding: 0;
	height: auto;
	color: #ffffff;
		text-decoration: none;
  text-align: left;
	background: none;
/* this sets the drop-down menu background color */
	width: 120px;
	_width: 155px !important;
	display: block;
	height: auto;
}
.menu ul li:hover ul li:hover, .menu ul li a:hover ul li:hover,
/* 2nd level selected item */
.menu ul li:hover ul li:hover a, .menu ul li a:hover ul li a:hover {
/* 2nd level selected item */
	color: #ffffff;
		text-decoration: underline;
}
/*======================== 3RD LEVEL MENU DEFINITIONS ========================*/
.menu ul li:hover ul li ul, .menu ul li a:hover ul li a ul {
/* hide inactive 3rd-level menus */
	visibility: hidden;
}
.menu ul li:hover ul li:hover ul, .menu ul li a:hover ul li a:hover ul {
/* 3rd level drop-down box */
	visibility: visible;
	position: absolute;
	margin-top: -1px;
	padding-left: 2px;
/* bring the top edge of the 3rd level menu up one */
	top: 0;
	left: 126px;
	width: 130px;
	display: block;
	height: auto;
/* the drop-down height will be determiend by line count */
	color: #ffffff;
/* this sets the unselected-text color */
/* this sets our menu's effective "border" color */
}
.menu ul li:hover ul li:hover ul li, .menu ul li a:hover ul li a:hover ul li {
/* 3rd level unselected items */
		width: 130px;
margin:1px 0px 0px 0px;
padding:0px 0px 0px 0px;
	height: auto;
	display: block;
}
.menu ul li:hover ul li:hover ul li a, .menu ul li a:hover ul li a:hover ul li a {
/* 3rd level unselected items */
	border: 0;
	margin: 0;
padding:3px 0px 6px 5px;
	height: auto;   
/* this sets the drop-down menu background color */
	width: 130px;
	display: block;
	color: #ffffff;
		text-decoration: none;
}
.menu ul li:hover ul li:hover ul li:hover, .menu ul li a:hover ul li a:hover ul li:hover, .menu ul li:hover ul li:hover ul li a:hover, .menu ul li a:hover ul li a:hover ul li a:hover {
/* level3 selected items */
		width: 130px;
		color: #ffffff;
		text-decoration: underline;
}
