/* original based off final_drop.css by Stu Nicholls at CSS Play (www.cssplay.co.uk) */
/* modified by Atlantic BT */

/* leave alone! */
* html body { behavior: url(/style/csshover2.htc); }

#nav ul { position: relative; z-index: 800; }
#nav ul li { position: relative; }
#nav ul li ul { display: none; margin: 0; }
/* extra drop down */
#nav ul li:hover ul li ul { position: absolute; left: -9000em; top: 25px; margin: 0; }


/* EDITABLE AREA */
#nav ul li:hover a { }
	/* keep hover state on */
	
			/* in this case, hover state includes background shift */
			#nav ul li:hover a { }



/* style of drop down */
#nav ul li:hover ul {
	display: block; 
	position: absolute; 
	top: 18px; left: 0; /* top = height of primary nav button */
	/* basic style */
	margin: 0; padding: 0;
	width: 190px;
	background: #98984e;
	color: #fff;
	/* end basic style */
	z-index: 900; /* leave z-index */
	height: auto; /* override height from nav */
	font-size: 170%; /* override height from nav */
}
	#nav ul li#n_home:hover ul { left: -53px; }

#navwrap #nav ul li:hover ul li {
	/* margin: 0 0 2px 0; padding: 0 0 2px 0; */
	line-height: 12px;
	height: auto; /* override height from nav */
	width: 190px;
	border-bottom: 1px solid #fff;
}
	#navwrap #nav ul li:hover ul li.last { border: none; }

#navwrap #nav ul li:hover ul li a {
	padding: 4px;
	background: none;
	text-align: left;
	text-indent: 0;
	color: #fff;
	height: auto; /* override height from nav */
	/* width: 190px; */
	display:block;
}
	#navwrap #nav ul li:hover ul li a:hover { color:#FFF; background-color: #3A2426; /*#4D2758; /*#727b34;*/ }
	#navwrap #nav ul li:hover ul li.drop
	{ background: url(/images/icons/i_drop-leaf-lft.gif) no-repeat left bottom; }


/* for these IE needs a <div> around the inner <ul>, to be ingored in the css -- only there for holder */
#wrapper #nav ul li ul li:hover ul {
	display: block; 
	position: absolute; 
	left: 170px; 
	top: 0;
	width: 160px;
	font-size: 100%;
}

#wrapper #navwrap #nav ul li ul li:hover ul.left { left: -170px; }
