.btnCapability {
	padding: 0 0 10px 0;
	background-repeat: no-repeat;
	background-position: 0px 0px;
}
.btnCapability:hover {
	background-position: 0 -27px;
}
.btnCapability2 {
	padding: 0 0 10px 0;
	background-repeat: no-repeat;
	background-position: 0px 0px;
}
.btnCapability2:hover {
	background-position: 0 -21px;
}
/*========================= TOP OF THE MENU CASCADE =========================*/
.menu {
	position: absolute;
/* establish a menu-relative positioning context */
	float: right;
/* play nicely with others */
	margin: 0px;
	margin-left: 0px;
	padding: 0;
	border: 0;
	width: 147px;
/* we always want our menu to fill the available space */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
/* this (and also below) sets the menu's font size */
	margin-bottom: 0px;
	display: block;
	clear: both;
	bottom: 0px;
	right: 0px;
}
.menu ul {
	padding: 0;
	margin: 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;
/* 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 {
	width: 146px;
	height: 24px;
	padding: 0px 0 3px 0;
	background-image: url(/templates/faqint/images/menu_indent.gif);
	background-repeat: no-repeat;
	list-style: none;
	background-position: 0px 0px;
	/*border-bottom: 1px solid #787aa8;
*/
}
.menu ul li:hover {
	background-position: 0px -27px;
}
.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;
/* initially hide the entire list hierarchy */
	padding: 1px;
/* this is our box border width */
}
.menu ul li a, .menu ul li a:visited {
/* unselected top-level menu items */
	display: block;
	float: left;
	text-decoration: none;
	width: 147px;
	height: 26px;
	_height: 24px;
	padding: 0px 0px 0px 0px;
	color: #222222;
	font: normal 10px Arial, Helvetica, sans-serif;
}
.menu ul li:hover a, .menu ul li a:hover {
/* selected top-level menu items */
height:28px;
_height: 24px;
width:146px;
}
/*======================== 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-top: -1px;
	top: 0px;
/* place us just up underneath the top-level images */
	right: 189px;
	_right: 139px;
/* left-align our drop-down to the previous button border */
	height: auto;
/* the drop-down height will be determiend by line count */
	width: 100px;
	color: #222222;
/* this sets the unselected-text color */
	margin-right: 3px;
}
.menu ul li:hover ul li, .menu ul li a:hover ul li {
	width: 150px;
/* this sets the drop-down menu background color */
	background-repeat: no-repeat;
	background-position: 0px 0px;
}
.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;
/* this sets the unselected drop-down text color */
	width: 142px;
/* this sets the drop-down menu background color */
	display: block;
	padding: 7px 0px 0px 0px;
	text-align: right;
}
.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 */
	background-position: 0px -27px;
	color: #e26a39;
	height: 24px;
	_height: auto;
}
