@charset "UTF-8";
/* CSS Document */

body {
	behavior:url(/includes/lib/csshover.htc);
	}
#drop_down_menus * {
	margin:0;
	padding:0; /* remove the default margins and padding on the menu elements */
	text-decoration: none;
	}
#drop_down_menus {
	/*	behavior:url(file:/lib/js_tools/csshover.htc);*/
	font-family:Verdana, Arial, Helvetica, sans-serif;
	float:left;
	width: 960px;
	letter-spacing: .04em;
	}
#drop_down_menus ul  {
	/* border:2px solid red; */   /*  show the container */
	float:left;
	text-decoration: none;
	}
#drop_down_menus li  {   /* this div represents the container (left column, perhaps) that you drop the menu into - the menu will expand horizontally to fill the space available */
	list-style-type:none; /* removes the bullet off each list item */
	float:left; /* make the list items sit side by side */
	position:relative; /*positioning content for the nested ul (the drop-down) */
	background-color:#e0df72;
	margin: 0 5px 0 5px;
	padding: 0;
	}
#drop_down_menus li:first-child  {
	border-left:none; /* no divider needed to the left of the first list items */
	}
#drop_down_menus a {
	display:block; /* make the link fill the list item correctly */
	padding:.3em 10px; /* pad the link text away from the edge of the list item */
	color:#333333;
	text-decoration:none;
	font-size: 12px;
	letter-spacing: 0.05em;
	}
#drop_down_menus a:hover {
	color:#999999;/* different background color for the hover */
	}
#drop_down_menus li ul {
	position:absolute; /* positions the drop-down relative the parent li positioning context */
	display:none; /* set the width of the drop-down */
	left:0px;
	width: 100%;
	}
#drop_down_menus li:hover ul {
	display:block; /* display the menu when hovered */
	}
#drop_down_menus li ul li {
	width:100% !important;
	width:18em;
	margin-right:!important;
	margin-right:600px;
	}
#drop_down_menus li ul li:first-child {
	}
/* a hack for IE 6 - doesn't understand first-child \*/
