#dropdown-wrap {
	background: #ccc url(/images/dropdown-bg.png);
	height: 32px;
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ccc;
	font-size: 9pt;
}

/* use this to set the width and height */
#dropdown {
	width: 960px; 
	height: 32px;
	margin: auto;
}

#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 {
	line-height: 23pt;
	margin-right: 2px;
}

#dropdown li.dropdown-tab a:hover {
	background: url(/images/dropdown-bg.png) 0 -32px repeat-x;
	color: #000;
}

/* IE6 suckerfish */
#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 {
}

#dropdown ul li a {
	padding: 0;
	margin: 0;
	display: block;
	width: 154px;
	text-decoration: none;
	color: #000;
	text-align: left;
	min-height: 32px;
	height: auto !important; /* IE6 */
	height: 32px; /* IE6 */
	cursor: pointer;
}

#dropdown ul li.dropdown-tab a {
	min-height: 32px;
}

/* set the inset of the tab title in it's box */
#dropdown ul li a span {
	display: block;
	padding: 2px 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: 32px;
	border-right: 1px solid #ccc;
	border-left: 1px solid #ccc;
	padding: 4px 6px;
	line-height: 140%;
}

#dropdown ul li a:hover {
	color: #fff;
	background: #ccc url(/images/dropdown-bg.png);
}

#dropdown ul#dropdown-tabs li a.dropdown-active {
	display: block;
	font-weight: bold;
}

#dropdown ul#dropdown-tabs li a.dropdown-active:hover {
	display: block;
	font-weight: bold;
}

/* use this to set the bottom border of the menus */
#dropdown ul.dropdown-items {
}

/* use this to set the line above each menu item */
#dropdown ul.dropdown-items a {
	border-bottom: 1px solid #ccc		;
	background: #ccc url(/images/dropdown-item-bg.png);
}

#dropdown ul.dropdown-items a:hover {
	color: #000;
	background: #ccc url(/images/dropdown-item-bg.png) 0 -64px;
}
