.dropdownmenu ul {
	margin: 0;
	padding: 0;
}
.dropdownmenu li {
	margin-right: 5px;
	padding: 0;
}
.dropdownmenu ul {
	background: white;
	list-style: none;
	width: 100%;
}
.dropdownmenu li {
	float: left;
	position: relative;
	width:auto;
  border-radius: 5px;
  box-shadow:-2px 0px 10px gray;
}
.dropdownmenu a {
	background:#3CB371;
	color:white;
	height:0.6cm;
	font-weight: 500;
	display: block;
	font: cambria;
	font-size:14px;
	padding: 10px 25px;
	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: #006400;

	border-radius: 0 45px 0 45px;

	height:0.4cm;
	-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;
}