/*========================= TOP OF THE MENU CASCADE =========================*/
.menu {
	position: relative;
/* establish a menu-relative positioning context */
	float: left;
/* play nicely with others */
	padding: 0px 0px 0px 167px;
	margin: 0px;
	border: 0;
	width: 836px;
/* 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;
	text-align: left;
	background-color: #484848;
}
.menu ul {

	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 */
	display: block;
	float: left;
	margin: 0;
	padding: 0;
	width: 836px;
}
/* this must be 1.0 or 1.5 or 2.0 for Mozilla */
.menu li {
/* this creates the side-by-side array of top-level buttons */
	position: relative;
/* create local positioning contexts for each button */
	display: block;
	float: left;
	height: auto;

	margin-left: 1px;
	padding: 0;
}
.menu ul li {

	/*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 */
}
/*======================== 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;
*/
	color: #686868;
	font-size: 13px;
	font-family: verdana, Arial, Helvetica, sans-serif;
	background-image: url(/templates/stacks/images/menuHovers.jpg);
	background-position: 0px 1px;
	height: auto;
	padding: 0px 15px 0px 15px;
	
	text-decoration: none;
	width: 100%;
}
.menu ul li:hover a, .menu ul li a:hover {
	color: #FFFFFF;
	background-position: 0 -20px;
}
/*======================== 2ND LEVEL MENU DEFINITIONS ========================*/
.menu ul li:hover ul, .menu ul li a:hover ul {
/* 2nd level drop-down box */
	display: block;
	width: 160px;
	position: absolute;
	margin-left: 0px;
	top: 17px;
/* place us just up underneath the top-level images */
	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: 170px;

	color: #ffffff;
	background-color: #7d7d7d;
/* this sets the unselected-text color */
	/*background: #008CC7;
*/
/* this sets our menu's effective "border" color */
}
.menu ul li:hover ul li, .menu ul li a:hover ul li {
	width: 170px;
	background-color: #4b4b4b;
	background-repeat: repeat;
	behavior: url(/templates/faqint/css/iepngfix.htc);
	margin: 0px 0px 1px 0px;
	min-height: 20px;
}
.menu ul li:hover ul li a, .menu ul li a:hover ul li a {
/* 2nd level unselected items */
	border: 0;
	margin: 0;
	padding: 0px 5px 0px 5px;
	color: #FFFFFF;
	text-align: left;
	background: none;
/* this sets the drop-down menu background color */
	width: 160px;

	display: block;
}
.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;
	background-color: #606060;
	min-height: 20px;
}
/*======================== 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;
	padding-left: 1px;
/* bring the top edge of the 3rd level menu up one */
	top: 0;
	left: 160px;
	_left: 130px;
	width: 170px;
	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: 160px;
	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;
	height: auto;
/* this sets the drop-down menu background color */
	width: 160px;
	display: block;
	color: #ffffff;
	
	background-color: #4b4b4b;
}
.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: 160px;
	background-color: #606060;
	color: #ffffff;
}