.menuBarThrash ul, .menuBarThrash li {
	margin: 0;
	padding: 0;
}
.menuBarThrash ul {
	background: gray;
	list-style: none;
	width: 100%;
}
.menuBarThrash li {
	float: left;
	position: relative;
	width:100px;
}
.menuBarThrash li a {
	background-color: #30A6E6;
	color: #FFFFFF;
	display: block;
	font: bold 12px/20px sans-serif;
	padding: 10px;
	text-align: center;
	text-decoration: none;
	-webkit-transition: all .25s ease;
	-moz-transition: all .25s ease;
	-ms-transition: all .25s ease;
	-o-transition: all .25s ease;
	transition: all .25s ease;
}
.menuBarThrash li:hover a {
	background: #00F;
}
#active {
    background-color: #8BCDF1;
    color: yellow;
}
.active {
    background-color: #8BCDF1;
    color: yellow;
}
#active:hover {
    background-color: #FFF;
    color: #000;
}
#submenu {
	left: 0;
	opacity: 0;
	position: absolute;
	top: 35px;
	width: 200px;
	visibility: hidden;
	z-index: 1;
}
li:hover ul#submenu {
	opacity: 1;
	top: 40px;	/* adjust this as per top nav padding top & bottom comes */
	visibility: visible;
}
#submenu li {
	float: none;
	width: 100%;
}
#submenu a:hover {
	background: #00F;
}
#submenu a {
	background-color:#30A6E6;
}
#submenu a:active {
	background:#8BCDF1;
}
@media 
only screen and (max-width: 910px),
(min-device-width: 780px) and (max-device-width: 1024px)  {
	ul li {
		font-family:"Lucida Sans Unicode", "Lucida Grande", sans-serif;
	}
.menuBarThrash li:hover a {
	background: #00F;
	font-weight:bold;
}
.active {
	font-weight:bold;
	background-color:#EEEEEE;
	
    color: #000;
}
}
