#cssmenu {
	// background: #009090;  // For web browsers that don't support RGBa
	background: rgba(0, 144, 144, 0.6);  // Semi-transparent (CSS3)
	list-style: none;
	margin: 0;
	padding: 0;
}
#cssmenu ul {
        list-style-type: none;
        margin-left: 0;
        padding-left: 0;
        line-height: 1.4em;
}
#cssmenu li {
	font: 90% 'Lucida Sans Unicode', 'Bitstream Vera Sans', 'Trebuchet Unicode MS', 'Lucida Grande', Verdana, Helvetica, sans-serif;
	margin: 0;
	padding: 0;
}
#cssmenu a {
	// background: #009090;
	background: rgba(0, 144, 144, 0.6);
	border-bottom: 1px solid #007070;
	color: #ccc;
	display: block;
	margin: 0;
	padding: 8px 0 8px 9px;
	text-decoration: none;
}
#cssmenu a:hover {
	background: #2580a2 !important;
	color: #fff;
	padding-bottom: 8px;
}
#cssmenu .highlighted * {
	background: #009090 !important;
        color: #fff !important;
	font-weight:bold;
}

