#dropmenu{
	float: right;
	position: relative;
	padding-right: 4em;
}
#dropmenu li{
	position: relative;
	float: left;
	margin: 0;
	text-align: center;
	width: 14em;
	height: calc(39px + 1.1em);
	line-height: 39px;
	border-radius: 0 0 3px 3px;
}
#dropmenu > li:last-child {
	position: absolute;
	font-size: 65%;
	float: none;
	right: 0px;
	top: 10px;
	margin: -1em 0 0;
	text-align: right;
	width: 6.5em;
	height: 1em;
	line-height: 1em;
	padding-left: 20px;
}
#dropmenu > li:last-child:before{
	display: block;
	content: "";
	position: absolute;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	top: 50%;
	left: 9px;
	width: 10px;
	height: 10px;
	margin-top: -5px;
	background: #EEE;
	}
#dropmenu > li:last-child:after{
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	left: 0px;
	width: 16px;
	height: 16px;
	margin-top: -8px;
	background: rgba(0,0,0,1.00);
	}
#dropmenu li a{
	display: block;
	margin: 0;
	color: #fff;
	height: 39px;
	text-decoration: none;
	padding: 0;
	width: 100%;
	font-weight: 200;
}
#dropmenu li:hover > a{
}
#dropmenu > li:hover > a{
	border-bottom-color: rgba(102,102,102,1.00);
}
#dropmenu li ul{
	list-style: none;
	position: absolute;
	top: 100%;
	left: 0;
	margin: 0;
	padding: 0;
	background-color: rgba(68,68,68,1.00);
}
#dropmenu li:last-child ul{
	left: 0;
  	width: 100%;
}
#dropmenu li ul li{
	overflow: hidden;
	width: 100%;
	height: 0;
	padding: 0;
	-moz-transition: .2s;
	-webkit-transition: .2s;
	-o-transition: .2s;
	-ms-transition: .2s;
	transition: .2s;
}
#dropmenu li ul li a{
	background-color: rgba(68,68,68,1.00);
	text-align: center;
	font-weight: 200;
	padding: 0;
	height: 100%;
	line-height: 3em;
	border-bottom: none;
	color: rgba(255,255,255,1.00);
}
#dropmenu li ul li:hover a {
	background: rgba(0,0,0,1.00);
}
#dropmenu li:hover ul li{
	overflow: visible;
	height: 3em;
	border-top: 1px solid rgba(102,102,102,1.00);
	z-index: 9990;
	margin-top: -1px;
}
#dropmenu li:hover ul li:first-child{
  border-top: 0;
}
#dropmenu li:hover ul li:last-child{
  border-bottom: 0;
}
/*#dropmenu li:hover ul li:last-child a{
	border-bottom: 1px solid rgba(102,102,102,1.00);
}
*/