.dropdown {
	float:left;
}
.dropdown dt {
	cursor:pointer;
	width:100px;
	font-weight:bold;
}
.dropdown dt:hover {
}
.dropdown dd {
	color:#FFF;
	margin-top:7px;
	position:absolute;
	overflow:hidden;
	display:none;
	background:#333;
	z-index:200;
	width: 130px;
}
.dropdown ul {
	list-style:none;
	width:130px;
}
.dropdown li {
	display:inline;
}
.dropdown a, .dropdown a:active, .dropdown a:visited {
	width:130px;
	font-size:12px;
	color:#FFF;
	font-weight:normal;
	display:block;
	padding:5px;
	text-decoration:none;
}
.dropdown a:hover {
	background:#d9e1e4;
	color:#000
}
.dropdown .underline {
	border-bottom:#FFF 1px solid;
}
