@charset "utf-8";
/* CSS Document */
.dropdownmenu ul, .dropdownmenu li {
	margin: 0;
	padding: 0;
}
.dropdownmenu ul {
	background: gray;
	list-style: none;
	width: 100%;
}
.dropdownmenu li {
	float: left;
	position: relative;
	width:auto;
}
.dropdownmenu a {
	background: #30A6E6;
	color: #FFFFFF;
	display: block;
	font: bold 12px/20px sans-serif;
	padding: 10px 25px;
	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;
}
.dropdownmenu li:hover a {
	background: #000000;
	color:#fff;
}
#submenu1, #submenu2 {
	left: 0;
	opacity: 0;
	position: absolute;
	top: 35px;
	visibility: hidden;
	z-index: 1;
	width:auto;
	/*width:198px;*/
}
#submenu1 {
	width:190px;	
}
li:hover ul#submenu1, li:hover ul#submenu2 {
	opacity: 1;
	top: 40px;	/* adjust this as per top nav padding top & bottom comes */
	visibility: visible;
}
#submenu1 li , #submenu2 li{
	float: none;
	width: 100%;
}
#submenu1 a:hover, #submenu2 a:hover  {
	/*background: #DF4B05;*/
	background: #bbf8a5;
	color:#444;
	font-weight:bold;
	
}
#submenu1 a, #submenu2 a {
	background-color:#000000;
}
