.dropdown {
	float:left;
	margin: 0 auto;
	padding: 0;
}
.dropdown dt {
	cursor:pointer; 
	text-align: center;
}
.dropdown dt a {
	display: block;
	color: #eee;
	text-decoration: none;
	padding: 5px 22px 0 22px;
	width: 100px;
	height: 24px;
	border-right: dotted 1px #999;
}
.dropdown dt.current a ,
.dropdown dt a:hover {
	color: #fff;
}

.dropdown dd {
	position:absolute; 
	overflow:hidden; 
	display:none; 
	background:#111; 
	z-index:200; 
	opacity:0;
}
.dropdown ul {
	border:1px solid #000; 
	list-style:none; 
	border-top:none;
}
.dropdown li {
	display:inline;
}
.dropdown dd a, .dropdown dd a:active, .dropdown dd a:visited {
	display:block; 
	padding:5px; 
	color:#99aabb; 
	text-decoration:none; 
	background:#111; 
	border-bottom:1px solid #333;
	width:130px;
}
.dropdown dd a:hover {
	background:#222; 
	color:#aabbcc;
}
.dropdown .underline {
	border-bottom:1px solid #333;
}
.dropdown dd a span {
	font-size: 125%;
	font-weight: bold;
	color: #f60;
}


