.dropdownmenu ul {
	margin: 0;
	padding: 0;
}
.dropdownmenu li {
	padding: 0;
}
.dropdownmenu ul {
	background: white;
	list-style: none;
	width: 100%;
}
.dropdownmenu li {
	float: left;
	position: relative;
	width:auto;
	border-radius: 5px;
}
.dropdownmenu a {
	background:black;
	color:white;
	height:0.7cm;
	font-weight: 500;
	display: block;
	font: cambria;
	font-size:.5cm;
	padding: 5px 12px;
	text-align: center;
   -webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-ms-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
	text-decoration: none;
	border-radius: 5px;
}
.dropdownmenu li:hover a {
	background: #FF4500;
	height:0.7cm;
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-ms-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
}
#submenu {
	left: 0;
	opacity: 0;
	position: absolute;
	top: 35px;
	visibility: hidden;
	z-index: 1;
	background: #90EE90;
	width:6.3cm;
}
li:hover ul#submenu {
	opacity: 1;
  -webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-ms-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
	top: 35px;	/* adjust this as per top nav padding top & bottom comes */
	visibility: visible;
}
#submenu li {
	float: none;
	width: 100%;
	margin-top:5px;
	margin-bottom:5px;
}
#submenu a:hover {
	background: #006400;
}
#submenu a {
	background:#3CB371;
	height:.6cm;
	width:5cm;
}