/* Dexx Menu Drop Down Flyout */

.cms_drop {
	max-width:844px;
	height:28px;
	z-index:1000;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	position:relative;
	font-weight:normal;
	float:right;
}
/* hack to correct IE5.5 faulty box model */
* html .cms_drop {
	width:844px;
	width:844px;
}
/* remove all the bullets, borders and padding from the default list styling */
.cms_drop ul {
	padding:0;
	margin:0;
	list-style-type:none;
}
.cms_drop ul ul {
	width:140px;
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.cms_drop li {
	float:left;
	position:relative;
	margin-left:-1px;
	border-left:solid #999999 1px;
	border-right:solid #999999 1px;
	text-align:center;
	height:28px;
}
/* style the links for the top level */
.cms_drop a, .cms_drop a:visited {
	background:url(cms_menu/space.gif) no-repeat 17px bottom;
	display:block;
	font-size:13px;
	text-decoration:none;
	color:#666;
	height:28px;
	padding-bottom:12px;
	padding-left:15px;
	padding-right:15px;
	line-height:28px;
	font-weight:normal;
	text-align: center;
}
/* a hack so that IE5.5 faulty box model is corrected */
* html .cms_drop a, * html .cms_drop a:visited {
	width:140px;
	width:140px;
}
/* style the second level background */
.cms_drop ul ul a.drop, .cms_drop ul ul a.drop:visited {
	background:#3366CC url(cms_menu/bluemenu.jpg) repeat-y left;
}
/* style the second level hover */
.cms_drop ul ul a.drop:hover {
	background:#003399 url(cms_menu/bluemenu_o.jpg) repeat-y left;
}
.cms_drop ul ul :hover > a.drop {
	background:#003399 url(cms_menu/bluemenu_o.jpg) repeat-y left;
}
.cms_drop ul ul a:hover {
	background:#003399 url(cms_menu/bluemenu_o.jpg) repeat-y left;
}
/* style the third level background */
.cms_drop ul ul ul a, .cms_drop ul ul ul a:visited {
	background:#3366CC url(cms_menu/bluemenu.jpg) repeat-y left;
}
/* style the third level hover */
.cms_drop ul ul ul a:hover {
	background:#003399 url(cms_menu/bluemenu_o.jpg) repeat-y left;
}
/* hide the sub levels and give them a positon absolute so that they take up no room */
.cms_drop ul ul {
	visibility:hidden;
	position:absolute;
	height:0;
	top:28px;
	left:0;
	width:140px;
}

.cms_drop ul ul li {
	border:none;
	text-align:left;
	height:auto;
}
/* another hack for IE5.5 */
* html .cms_drop ul ul {
	top:30px;
	top:31px;
}
/* position the second level flyout menu */
.cms_drop ul ul {
	left:18px;
	top:40px;
	width:140px;
}
/* position the third level flyout menu */
.cms_drop ul ul ul {
	left:140px;
	top:0px;
	width:140px;
	border:none;
}
.cms_drop ul ul ul li {
	border:none;
	text-align:left;
	height:auto;
}
/* position the third level flyout menu for a left flyout */
.cms_drop ul ul ul.left {
	left:-140px;
}
/* style the table so that it takes no ppart in the layout - required for IE to work */
.cms_drop table {
	position:absolute;
	top:0;
	left:0;
	border-collapse:collapse;
}
/* style the second level links */
.cms_drop ul ul a, .cms_drop ul ul a:visited {
	background:#3366CC url(cms_menu/bluemenu.jpg) repeat-y left;
	color:#FFF;
	height:auto;
	font-size:12px;
	line-height:15px;
	padding:2px 10px 4px 10px;
	width:120px;
	text-align:left;
}
/* yet another hack for IE5.5 */
* html .cms_drop ul ul a, * html .cms_drop ul ul a:visited {
	width:120px;
	width:120px;
}
/* style the top level & hover */
.cms_drop ul a, .cms_drop ul a:visited {
	color:#666;
}
.cms_drop ul a:hover {
	color:#003399;
	background:url(cms_menu/arrow.gif) no-repeat 17px bottom;
} /**/
/* style second level drop hover */
.cms_drop ul ul a:hover {
	color:#003399;
} /**/
.cms_drop :hover > a {
	color:#003399;
	background:url(cms_menu/arrow.gif) no-repeat 17px bottom;
}
.cms_drop ul ul :hover > a {
	background:#003399 url(cms_menu/bluemenu_o.jpg) repeat-y left;
	color:#FFF;
}/**/
/* make the second level visible when hover on first level list OR link */
.cms_drop ul li:hover ul, .cms_drop ul a:hover ul {
	visibility:visible;
}
/* keep the third level hidden when you hover on first level list OR link */
.cms_drop ul :hover ul ul {
	visibility:hidden;
}
/* make the third level visible when you hover over second level list OR link */
.cms_drop ul :hover ul :hover ul {
	visibility:visible;
}
/* make the selected menu item standout */
.cms_drop a.cms_current_page, .cms_drop a.cms_current_page:visited {
	color: #003399;
}

.cms_drop ul ul a.cms_current_page, .cms_drop ul ul a.cms_current_page:visited {
	color: #FFFFFF;
}