﻿/**************************************************************/
/*** Menu ***/
/**************************************************************/
.nav {
	z-index:999999;
	position:relative;
}
.nav ul {
	width:1000px;
	margin:0px 0px 0px 0px;
	padding: 0 0 0px 0;
	list-style: none;
	font-size:15px;
}
.nav li span {
	display: block;
}
.nav a {
	display: block;
	width: auto;
	height:50px;
	color: #f6e9bd;
	text-decoration: none;
	-webkit-transition: color .5s, background .5s, height .5s;
	-moz-transition: color .5s, background .5s, height .5s;
	-o-transition: color .5s, background .5s, height .5s;
	-ms-transition: color .5s, background .5s, height .5s;
	transition: color .5s, background .5s, height .5s;
	line-height:20px;
}
.nav ul:hover a {
	color: rgba(249, 249, 249, .6);
	/*color: #001a1b;*/
}
.nav ul:hover a:hover {
	color: #fec031;
}
.nav li {
		float: left;
		width:calc(992px/8);
		text-align: center;
		-webkit-transition: border .5s;
		-moz-transition: border .5s;
		-o-transition: border .5s;
		-ms-transition: border .5s;
		transition: border .5s;
		border-right:solid 1px rgba(249, 249, 249, .5);
		/*background:-webkit-gradient(linear,left top,left bottom,from(#fe142d),to( #c90202));
	background:-moz-linear-gradient(top,#fe142d, #c90202);
	background-color: #fe142d;*/
	background:-webkit-gradient(linear,left top,left bottom,from(#0e0518),to( #1c0e27));
	background:-moz-linear-gradient(top,#0e0518, #1c0e27);
	background-color: #0e0518;
		padding-bottom:3px;
	}
.nav li:hover {
		color:#f6e9bd;
	}
.nav li:last-child {
    	/*border-right:none;*/
}
.nav li:first-child {
    	/*border-right:none;*/
}
.nav li span {
		text-shadow: 0px 1px 1px rgba(0,0,0,0.1);
		/*text-shadow:1px 1px 1px #F8FF00;*/
	}
.icon {
		padding-top:5px;
	}
.icon + span {
		-webkit-transition: margin .5s;
		-moz-transition: margin .5s;
		-o-transition: margin .5s;
		-ms-transition: margin .5s;
		transition: margin .5s;
	}
.nav i {
		position: relative;
		display: inline-block;
		margin: 0 auto -1px auto;
		font-size:24px;
		-webkit-transform: translate3d(0, 0, 0);
		-moz-transform: translate3d(0, 0, 0);
		-o-transform: translate3d(0, 0, 0);
		-ms-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}	
