/* common styling */
/* set up the overall width of the menu div, the font and the margins */
.find_menu {
	padding: 17px 0px 0px 25px;
	
	/* from menu */
	font-family: arial, sans-serif; 
	width:170px; 
	position:relative;
	z-index:100;
}
.find_menu a {
	border: none !important;
}
.menu_td {
	padding-right: 20px;
}
.menu {
	font-family: arial, sans-serif; 
	width:170px; 
	margin-left: 10px; 
	/*margin:20px 0 60px 0;*/
	position:relative;
	z-index:100;

}
.menu_header {
	width: 170px;
	height: 25px;
	font-size: 14px;
	line-height: 24px;
	color: #ffffff;
	/*background: #a40e14;*/
	background: url("./../../../../templates/cenflex/gfx/findit_buttons.jpg");
	text-align: center;
	vertical-align: middle;
}

/* remove the bullets and set the margin and padding to zero for the unordered list */
.find_menu ul {
padding:0; 
margin:0;
list-style-type: none;

}

/* float the list so that the items are in a line and their position relative so that the drop down list will appear in the right place underneath each list item */
.find_menu ul li {
float:left; 
position:relative;

}
.menu_hr {
	position: relative;
	margin-top: -8px;
	margin-bottom: -8px;
	color: #000000;

}
/* style the links. Set the background color and the font size. */
.find_menu ul li a, 
.find_menu ul li a:visited {
	display:block; 
	text-align: center; 
	vertical-align: middle;
	text-decoration: none; 
	width:170px; 
	height:25px; 
	color:#ffffff; 
	background:#666666; 
	line-height:25px; 
	font-size:13px;
	border: hidden;
}
/* make the dropdown ul invisible */
.find_menu ul li ul {
display: none;
}

/* specific to non IE browsers */
/* set the background and foreground color of the main menu li on hover */
.find_menu ul li:hover a {
color:#ffffff; 
background:#333333;
}
/* make the sub menu ul visible and position it beneath the main menu list item */
.find_menu ul li:hover ul {
display:block; 
position:absolute; 
top:25px; 
left:0; 
width:170px;
}
/* style the background and foreground color of the submenu links */
.find_menu ul li:hover ul li a {
display:block; 
background:#666666; 
color:#ffffff;
font-weight: normal;
}
/* style the background and forground colors of the links on hover */
.find_menu ul li:hover ul li a:hover {
background:#333333; 
color:#ffffff;
}
