#tabs {
	list-style: none;
	margin: 0;
	padding: 0;
}

#tabs li {
	float: left;
	margin: 0 2px 0 0;
	text-align: left;
	width: 11em;
	background: #80b6d3;
	text-transform: uppercase;
	position: relative;
	
}

#tabs li a {
	display: block;
	margin: 0 5px 0 10px;
	color: #006ca7;
}

#tabs li.active, #tabs li.over {
	background: #fff;	
}

#tabs li.active a, #tabs li.over a {
	color: #00ab93;
}

#tabs li ul {
	display: none;
	list-style: none;
	position: absolute;
	width: 18em;
	z-index: 1;
	left: 0px;
	top: 2em;
	margin: 5px 0;
	padding: 0;
	filter:alpha(opacity:92);
	opacity: .92;
	border-left: 2px solid #fff;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
}

#tabs li ul li {
	float: none;
	padding: 1px 0;
	margin: 0;
	border-bottom: 1px solid #9ab;
	width: auto;
	line-height: normal;
	background: #fff;
}

#tabs li ul li a {
	display: block;
	width: auto !important;
	width: 100%;
	background: #fff;
	padding: 3px;
	margin: 0;
	line-height: normal;
}

#tabs li ul li a:hover {
	background: #006ca7;
	color:#fff;
	text-decoration: none;
}

#tabs li.over ul {
	display: block;
	width:220px;
}