#menubox {
	width: 160px;
	position: fixed;
	top: 235px;
	left: 10px;
	z-index: 999;
	}

#cssmenu > ul{
	list-style: none;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
	line-height: 1;
	}

#cssmenu > ul {
	display: block;
	position: relative;
	width: 150px;
	}

#cssmenu > ul li {
	display: block;
	position: relative;
	margin: 0;
	padding: 0;
	width: 150px;	
	}

#cssmenu > ul li a {
	display: block;
	position: relative;
	margin: 0;
	border-top: 1px dotted #fff;
	padding: 9px 20px;
	width: 110px;
	font-family:  Helvetica, Arial, sans-serif;
	color: #F8F844;
	text-decoration: none;
	text-transform: uppercase;
	text-shadow: 0 1px 0 #A0A29A;
	font-size: 10px;
	font-weight: bold;
	background: #006600; /* Old browsers */
	background: -moz-linear-gradient(top, #006600 0%, #006600 50%, #006600 51%, #006600 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#006600), color-stop(50%,#006600), color-stop(51%,#006600), color-stop(100%,#006600)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #006600 0%,#006600 50%,#006600 51%,#006600 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #006600 0%,#006600 50%,#006600 51%,#006600 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #006600 0%,#006600 50%,#006600 51%,#006600 100%); /* IE10+ */
	background: linear-gradient(to bottom, #006600 0%,#006600 50%,#006600 51%,#006600 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#006600', endColorstr='#006600',GradientType=0 ); /* IE6-9 */
	z-index: 999;
	}

#cssmenu > ul li:first-child>a {
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-top: 0;
	z-index: 999;
	}

#cssmenu > ul li:last-child>a {
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	border-bottom: 0;
	z-index: 999;
	}

#cssmenu > ul li>a:hover, 

#cssmenu > ul li:hover>a {
	color: #000;
	text-shadow: 0 1px 0 rgba(0, 0, 0, .3);
	background: #ccff99; /* Old browsers */
	background: -moz-linear-gradient(top, #ccff99 0%, #ffff99 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ccff99), color-stop(100%,#ffff99)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #ccff99 0%,#ffff99 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #ccff99 0%,#ffff99 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #ccff99 0%,#ffff99 100%); /* IE10+ */
	background: linear-gradient(to bottom, #ccff99 0%,#ffff99 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ccff99', endColorstr='#ffff99',GradientType=0 ); /* IE6-9 */
	}

#cssmenu > ul .has-sub>a::after {
 	 color: #F8F844;
	text-decoration: none;
	text-shadow: 0 1px 0 #A0A29A;
	font-size: 11px;
	font-weight: bold;
	
 
 /* content: '';
    position: absolute;
	top: 16px;
	right: 10px;
	width: 0px;
	height: 0px;
	border: 4px solid transparent;
	border-left: 4px solid #3dafea; */
	}

#cssmenu > ul .has-sub>a::before {
	content: '';
	position: absolute;
	top: 17px;
	right: 10px;
	width: 0px;
	height: 0px;
	border: 4px solid transparent;
	border-left: 4px solid #fff;
	}

#cssmenu > ul li>a:hover::after, 

#cssmenu > ul li:hover>a::after {
	border-left: 4px solid #fff;
	}

#cssmenu > ul li>a:hover::before, 

#cssmenu > ul li:hover>a::before {
	border-left: 4px solid rgba(0, 0, 0, .25);
	}

#cssmenu > ul ul {
	position: absolute;
	left: 150px;
	top: -9999px;
	padding-left: 5px;
	opacity: 0;
	-webkit-transition: opacity .3s ease-in;
	-moz-transition: opacity .3s ease-in;
	-o-transition: opacity .3s ease-in;
	-ms-transition: opacity .3s ease-in;
	z-index: 999;
	}

#cssmenu > ul li:hover>ul {
	top: 0px;
	opacity: 1;
	} 
