@charset "utf-8";
/* CSS Document */

/*------------------------------------*\
	NAV
\*------------------------------------*/
#nav li{
	float:left;
	position:relative;
}
/*--- DROPDOWN ---*/
#nav ul{
/* Adding a background makes the dropdown work properly in IE7+. Make this as close to your page's background as possible (i.e. white page == white background). */
	list-style:none;
	position:absolute;
	margin-top: 7px;
	padding:0px;
	z-index:8000;
	left:-9999px; /* Hide off-screen when not needed (this is more accessible than display:none;) */
}
 .float {
		  float:left;
	  }
	  

#nav li:hover ul{ /* Display the dropdown on hover */
	left:0; /* Bring back on-screen when needed */
	z-index:8000;

}
.destry li{
	padding: 7px 53px !important;
}
.destry1 li{
	padding: 7px 62px !important;
}
#nav li:hover ul a{ /* The persistent hover state does however create a global style for links even before they're hovered. Here we undo these effects. */
	text-decoration:none;
}

