/* ================================================================ 
This copyright notice must be untouched at all times.

The original version of this stylesheet and the associated (x)html
is available at http://www.cssplay.co.uk/menus/final_drop3.html
Copyright (c) 2005-2007 Stu Nicholls. All rights reserved.
This stylesheet and the associated (x)html may be modified in any 
way to fit your requirements.
=================================================================== */

/* style the outer div to give it width */
.sector_menu {
	position: absolute;
	margin: 0px 0px 0px 0px;
	height: 24px;
	width: 212px;
	top: 230px;
	left: 726px;
	float: left;
	padding: 0px 0px 0px 0px;
	text-align: left;
	z-index: 100;
}

/* remove all the bullets, borders and padding from the default list styling */
.sector_menu ul {
	padding: 0;
	margin: 0;
	list-style-type: none;
	height: 28px;
	display: block;
}

/* float the top list items to make it horizontal and a relative positon so that you can control the dropdown sector_menu positon */
.sector_menu ul li {
	float: left;
	height: 22px;
	list-style-type:none;
	padding: 0px 0px 0px 0px;
	width: 200px;	
}

/* style the sub level list items */
.sector_menu ul ul li {
	display: block;
	height: auto;
	position: relative;
	line-height: 1em;
	width: 157px;
	margin:0px 0 0 0;
	padding:0 0px 0px 0px;
	line-height:1px;
	float:left;
}

/* style the links for the top level */
.sector_menu a, .sector_menu a:visited { width: 202px; display: block; float: left; height: 100%; font-size:1em; text-decoration: none; color: #666565; padding: 4px 0px 0px 10px; }

/* style the sub level links */
.sector_menu ul ul a, .sector_menu ul ul a:visited {
	display: block; background: #ededed; color: #000; width: 147px; height: 100%; line-height: 1em;	padding: 5px 5px;
}

.sector_menu ul li.sector_menu_top_level a, .sector_menu ul li.sector_menu_top_level a:visited { border-top: solid 1px #ccc; }
.sector_menu ul table ul a, .sector_menu ul table ul a:visited  { width:147px; w\idth:147px; }

/* style the table so that it takes no part in the layout - required for IE to work */
.sector_menu table { position:absolute; left:0; top:0; font-size:1em; z-index:-1; }
.sector_menu ul ul table { lef\t:-1px; }
.sector_menu ul ul table ul.left { margin-lef\t:2px; }

.sector_menu li:hover { position:relative; }
* html .sector_menu a:hover { position:relative; }

/* style the third level background */
.sector_menu ul ul ul a, .sector_menu ul ul ul a:visited { background:#ededed; color:#000; }
/* style the fourth level background */
.sector_menu ul ul ul ul a, .sector_menu ul ul ul ul a:visited { background:#ddd; }
/* style the sub level 1 background */
.sector_menu ul :hover a.sub1 { background:#ee2e24; color: #fff; }

/* style the level hovers */
/* first */
.sector_menu a:hover { color:#000; }
.sector_menu :hover > a { color:#000; }
/* second */
.sector_menu ul ul a:hover{ color:#fff; background:#ee2e24; text-decoration: none; }
.sector_menu ul ul :hover > a { color:#fff;background:#ee2e24; text-decoration: none; }

/* hide the sub levels and give them a positon absolute so that they take up no room */
.sector_menu ul ul { visibility: hidden; position: absolute; height: 0; top: 24px; left: -260px; width: 140px; }

/* make the second level visible when hover on first level list OR link */
.sector_menu ul li:hover ul, .sector_menu ul a:hover ul {
	position: absolute;
	visibility: visible;
	width: 471px;
	height: auto;
	padding-bottom: 0em;
	background: #ededed;
	float: right;
	right: 0px;
	border: solid 1px #c5c5c5;
}