/* dropdown */

#dropdown-wrap {
	margin-bottom: 8px;
	background: url(/images/dropdown-wrap-bg.png) top left repeat-x;
}

/* use this to set the width and height */
#dropdown {
	width: 960px; 
	height: 24px;
	margin: auto;
	background: #d9d8d8;
}

#dropdown ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: inline;
}

/* use this to position the tabs, eg margin auto or left */
#dropdown ul#dropdown-tabs {
	margin: 0;
	padding: 0;
}

#dropdown li {
	padding: 0;
	margin: 0;
	float: left;
}

#dropdown li.dropdown-tab {
	margin-right: 1px;
}

#dropdown li.dropdown-tab a:hover {
	background: #1e95d1;
}

#dropdown li:hover ul , #dropdown li.sfhover ul {
	left: auto;
	z-index: 100;
}

/* fix ie7 sticky bug */
#dropdown li:hover, #dropdown li.hover {
    position: static;
}

#dropdown li.dropdown-item {
	line-height: 16pt;
}

#dropdown ul li a {
	padding: 0;
	margin: 0;
	display: block;
	width: 119px;
	text-decoration: none;
	color: #005696;
	background: #fff url(/images/dropdown-li-bg.png) top left repeat-x;
	text-align: center;
	min-height: 24px;
	height: auto !important; /* IE6 */
	height: 24px; /* IE6 */
	cursor: pointer;
}

#dropdown ul li.dropdown-tab a {
	min-height: 24px;
}

/* set the inset of the tab title in it's box */
#dropdown ul li a span {
	display: block;
	padding: 4px 8px 0 8px;
}

#dropdown ul li ul {
	position: absolute;
	width: 154px;
	left: -999em;
	z-index: 100;
}

#dropdown ul li ul li {
}

/* use this to set left and right borders for dropdown items, and
inset of item text from those borders via padding */

#dropdown ul li ul li a span {
	display: block;
	min-height: 24px;
	border-right: 1px solid #999;
	border-left: 1px solid #999;
	padding-left: 2px;
	padding-right: 2px;
}

#dropdown ul li a:hover {
	color: #fff;
	background: #666;
}

#dropdown ul#dropdown-tabs li a.dropdown-active {
	color: #fff;
	display: block;
	font-weight: bold;
	background: #1e95d1;
}

#dropdown ul#dropdown-tabs li a.dropdown-active:hover {
	display: block;
	font-weight: bold;
	background: #1e95d1;
}

/* use this to set the bottom border of the menus */
#dropdown ul.dropdown-items {
	border-bottom: 1px solid #999;
}

/* use this to set the line above each menu item */
#dropdown ul.dropdown-items a {
	border-top: 1px solid #999;
	background:  #666;
}

#dropdown ul.dropdown-items a:hover {
	color: #fff;
	background: #333;
}

