/*code based on Stu Nicholls "ultimate dropdown menu"
http://www.cssplay.co.uk*/
/*menu container*/
.menucontainer
{
	background: #fff url(/_img/menu/bgOFF.gif) no-repeat bottom left;
}
/*main nav over state*/
.menu ul li a:hover 
{
	color:#000000;background: transparent url(_img/menu/bgON.gif) bottom left repeat-x;text-decoration:none; font-weight:100;
}
/*positioning for sub nav*/
.menu ul li a:hover ul 
{
	display:block;position:absolute;top:29px;left:0;background:#fff;margin-top:0;margin-top:1px;
	border-top:1px solid #fff; text-decoration:none; font-weight:100;
}
/*drop-down on state*/
.menu ul li a:hover ul li a 
{
	display:block;background:#e3e3e3;color:#000000;height:auto;
	line-height:16px;padding:2px 16px 2px 16px;
	width:130px;width:120px;border-bottom:1px solid #fff;
	text-decoration:none; font-weight:100;
	}
/*drop-down over state*/
.menu ul li a:hover ul li a:hover 
{
	color:#fff;background: #666666; url(/_img/menu/sub-arrow.gif) no-repeat;
	background-position: 4px 8px; text-decoration:none;
}

.menu UL LI A:hover UL LI A UL {
	VISIBILITY: hidden; WIDTH: 0px; POSITION: absolute; HEIGHT: 0px
}
.menu UL LI A:hover UL LI A:hover UL {
	LEFT: 120px; VISIBILITY: visible; COLOR: #000; POSITION: absolute; TOP: 0px;
}
.menu UL LI A:hover UL LI A:hover UL.left {
	LEFT: -150px;
}

.menu UL LI A:hover UL LI A.drop {
	BACKGROUND: url(/_img/menu/drop.gif) #e3e3e3 no-repeat right bottom;
}