.megamenu{
position: absolute;
display: none;
background: white;
border: 1px solid #f06b24;
border-width: 5px 1px;
padding: 10px;
font: normal 12px Verdana;
z-index: 100;
margin-left:-162px;
width:964px;

}

.navigation-box{width:240px; font-family:tahoma; font-weight:bold; font-size:12px; color:#000; line-height:22px; float:left;}


#nav{
	float:left;
	width:100%;
	list-style:none;
	font-weight:bold;
	margin-bottom:10px;
}
#nav li{
	float:left;
	margin-right:10px;
	position:relative;
	display:block;
	list-style-image:url(../images/arrow.jpg); list-style-position:inside; padding-left:10px;
}
#nav li a{
	display:block;
	padding:5px;
	color:#000;
	text-decoration:none;
	list-style-image:url(../images/arrow.jpg); list-style-position:inside; padding-left:10px;
	font-family:tahoma; font-size:11px;
	}
#nav li a:hover{
	color:#fff;
	background:#CCC;
	
}

/*--- DROPDOWN ---*/
#nav ul{
	list-style:none;
	position:absolute;
	left:-9999px; /* Hide off-screen when not needed (this is more accessible than display:none;) */
	
}
#nav ul li{
	padding-top:1px; /* Introducing a padding between the li and the a give the illusion spaced items */
	float:none;
}
#nav ul a{
	white-space:nowrap; /* Stop text wrapping and creating multi-line dropdown items */
	display:block;
}
#nav li:hover ul{ /* Display the dropdown on hover */
	left:94%;
	top:-1px;/* Bring back on-screen when needed */
	width:100%;
	z-index:1500;/* Fade to opaque */
}
#nav li:hover a{ /* Set styles for top level when dropdown is hovered */
	background:#60865d;
	}
#nav li:hover ul a{ /* Override some top level styles when dropdown is hovered */
	text-decoration:none;
}
#nav li:hover ul li a:hover{ /* Set styles for dropdown when items are hovered */
	background:#ff6600;
	
}
