/*------------------------------------*\
    Flaunt JS Navigation
\*------------------------------------*/

ul.nav-list, ul.nav-submenu {
	list-style:none;
}
.center {
	width:800px;
	height:auto;
}
.nav {
	width:100%;
	display:inline-block;
	font-family:Arial, Helvetica, sans-serif;
  	font-size:14px;
  	font-weight:500;
	text-transform:uppercase;
}
.nav-list {
	text-align:left;
}
.nav-item {
	float:left;
	*display:inline;
	zoom:1;
	position:relative;
}
.nav-item a {
	display:block;
	color:#FFF;
	line-height:64px;
	padding:0 35px;
	height:64px;
	background:#141414;
}
.nav-item.arrow a {
	background:url(../images/arrow-menu.png) no-repeat center 45px #141414;
}
.nav-item.arrow a:hover {
	background:url(../images/arrow-menu.png) no-repeat center 48px #a31811;
}
.nav-item > a:hover {
	background:#a31811;
	color:#FFF;
	text-decoration:none;
}
.nav-item:hover .nav-submenu {
	display:block;
}
/* Navigation submenu */
.nav-submenu {
	display:none;
	position:absolute;
	left:0px;
	width:250px;
}
.arrow .nav-submenu-item a {
	background:#a31811;
	color:#FFF;
	text-decoration:none;
	display:block;
	padding:10px 15px;
	font-size:12px;
	line-height:20px;
	height:auto;
	border-bottom:solid 1px #d50821;
}
.nav-submenu-item a {
	background:#a31811;
	color:#FFF;
	text-decoration:none;
	display:block;
	padding:10px 15px;
	font-size:12px;
	line-height:20px;
	height:auto;
	border-bottom:solid 1px #d50821;
}
.arrow .nav-submenu-item a:hover {
	background:#141414;
	color:#fff;
	text-decoration:none;
}
.nav-submenu-item a:hover {
	background:#141414;
	color:#fff;
	text-decoration:none;
}
/* Mobile navigation */
.nav-mobile {
	display:none; /* Hide from browsers that don't support media queries */
	cursor:pointer;
	position:absolute;
	top:0;
	right:0;
	background:#3D3D3B url(../images/nav.svg) no-repeat center center;
	background-size:18px;
	height:50px;
	width:50px;
}
/* Mobile navigation, clickable area for revealing <ul> */
.nav-click {
	position:absolute;
	top:0;
	right:0;
	display:none;
	height:50px;
	width:50px;
	cursor:pointer;
}
.nav-click i {
	display:block;
	height:48px;
	width:48px;
	background:url(../images/drop.png) no-repeat center center;
}
.nav-click:hover {
	background-color:#d50821;
}
.nav-rotate {
	-webkit-transform:rotate(180deg);
	-moz-transform:rotate(180deg);
	-ms-transform:rotate(180deg);
	-o-transform:rotate(180deg);
	transform:rotate(180deg);
}

.nav-list>.nav-item>.search-mobile {
  	display:none;
}

@media only screen and (min-width: 980px) and (max-width: 1024px) {

.nav-item a {
	display:block;
	padding:0 12px;
}

.nav-list>.nav-item>.search-mobile {
  	display:none;
}

}

/*------------------------------------*\
    Media Queries
\*------------------------------------*/

@media only screen and (min-width: 240px) and (max-width: 767px) {
.nav-list>.nav-item>.search-mobile {
	float:none;	
  	width:100%;
  	font-family:Arial, Helvetica, sans-serif;
  	font-size:12px;
  	color:#fff;
  	padding:10px 20px;
  	background:url(../images/icon-search.png) no-repeat center right 10px #a31811;
  	box-sizing:border-box;
  	-moz-box-sizing:border-box;
  	-ms-box-sizing:border-box;
  	-o-box-sizing:border-box;
 	-webkit-box-sizing:border-box;
  	border:none;
	display:block;
}	
	
}

@media only screen and (min-width: 240px) and (max-width: 980px) {
	.nav-mobile {
		display:block;
	}
	.nav {
		width:100%;
		padding:0;
	}
	.nav-list {
		display:none;
	}
	.nav-item {
		width:100%;
		float:none;
	}
	.nav-item a {
	display:block;
	color:#FFF;
	line-height:40px;
	padding:0 0;
	height:40px;
	background:#141414;
	border-bottom:solid 1px #1b1b1b;
	}
	.nav-item a:hover {
	border-bottom:solid 1px #a31811;
	}
	.nav-item > a {
		padding:5px 0 5px 20px;
	}
	.nav-item.arrow a {
	background:#141414;
	border-bottom:solid 1px #1b1b1b;
}
.nav-item.arrow a:hover {
	background:#a31811;
	border-bottom:solid 1px #a31811;
}
	.nav-click {
		display:block;
	}
	.nav-mobile-open {
		border-radius:5px 5px 0 0;
		-webkit-border-radius:5px 5px 0 0;
		-moz-border-radius:5px 5px 0 0;
	}
	.nav-item:hover .nav-submenu {
		display:none;
	}
	.nav-submenu {
		position:static;
		width:100%;
	}
}