.menu,
.menu ul,
.menu li,
.menu a {
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
}

.menu {
	height: 50px;
	width: 600px;
	z-index: 500;

	background: #84ce0c;
	/*background: -webkit-linear-gradient(top, #4c4e5a 0%,#2c2d33 100%);
	background: -moz-linear-gradient(top, #4c4e5a 0%,#2c2d33 100%);
	background: -o-linear-gradient(top, #4c4e5a 0%,#2c2d33 100%);
	background: -ms-linear-gradient(top, #4c4e5a 0%,#2c2d33 100%);
	background: linear-gradient(top, #4c4e5a 0%,#2c2d33 100%);*/

	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
}

.menu li {
	position: relative;

	text-align: center;
	list-style: none;
	float: left;
	display: block;
	height: inherit;
}

/*.menu ul { display: none; }*/

/*
	MENU LINKS
*/

.menu li a {
	display: block;
	padding: 11px 14px 11px;
	/*height: 39px;*/
	/*margin: 6px 0;*/
	line-height: 28px;
	text-decoration: none;

	/*border-left: 1px solid #393942;*/
	border-right: 1px solid #6ba30f;

	text-transform: uppercase;
	font-size: 14px;
	font-weight: 600;

	color: #FFF;
	/*text-shadow: 1px 1px 1px rgba(0,0,0,.6);*/

	-webkit-transition: color .2s ease-in-out;
	-moz-transition: color .2s ease-in-out;
	-o-transition: color .2s ease-in-out;
	-ms-transition: color .2s ease-in-out;
	transition: color .2s ease-in-out;
}

.menu li:first-child a { border-left: none; }
.menu li:last-child a{ border-right: none; }

.menu li:hover > a { color: #8fde62; background: #484848; }

/*
	SUB MENU
*/

.menu ul {
	position: absolute;
	top: 50px;
	left: 0;
	z-index: 500;

	opacity: 1;
	background: rgba(72, 72, 72, 0.83);

	/*-webkit-border-radius: 0 0 5px 5px;
	-moz-border-radius: 0 0 5px 5px;
	border-radius: 0 0 5px 5px;*/

	-webkit-transition: opacity .25s ease .1s;
	-moz-transition: opacity .25s ease .1s;
	-o-transition: opacity .25s ease .1s;
	-ms-transition: opacity .25s ease .1s;
	transition: opacity .25s ease .1s;
}

.menu li:hover > ul { opacity: 1; }

.menu ul li {
	height: 0;
	overflow: hidden;
	padding: 0;
	clear: left;

	-webkit-transition: height .25s ease .1s;
	-moz-transition: height .25s ease .1s;
	-o-transition: height .25s ease .1s;
	-ms-transition: height .25s ease .1s;
	transition: height .25s ease .1s;
}

.menu li:hover > ul li {
	height: 36px;
	overflow: visible;
	width: inherit;
	padding: 0;
}

.menu ul li a {
	/*width: inherit;*/
	padding: 4px 8px 4px 8px;
	margin: 0;
	text-align: left;
	font-size: 13px;

	border: none;
	/*border-bottom: 1px solid #353539;*/
}

.menu ul li:last-child a { border: none; }

/*=================================================================*/

.member-menu{
	width: 100%;
	height: 50px;
}

.member-menu li {
	width: 25%;

}

.member-menu ul{
	width: 242px;
}

