/*****************/
/* HEADER STYLES */
/*****************/

header {
	width: 100%;
	height: 146px;
	position: relative;
	z-index: 3;
	background: url(../img/template/header_bck.jpg) no-repeat center #000;
	background-size: cover;
	text-align: center;
}
#logo {
	display: block;
	width: 160px;
	padding: 30px;
	clear: both;
	margin: auto;
	cursor: pointer;
}

#logo-small {
	cursor: pointer;
}

#top-links {
	width: 50px;
	height: 44px;
	position: absolute;
	top: 45px;
	right: 0px;
	color: #FFF;
}
#top-links ul {
	padding: 0;
	margin: 0;
}
#top-links li {
	display: inline-block;
	margin-left: 4px;
	background-color: #1A1817;
	-webkit-box-shadow: 0 0 4px #111;
	-moz-box-shadow: 0 0 4px #111;
	box-shadow: 0 0 4px #111;
	width: 40px;
	margin-bottom: 1px;
}

#top-links li:first-child {
	border-radius: 4px 0px 0px 0px;
}

#top-links li:last-child {
	border-radius: 0px 0px 0px 4px;
}

#top-links li:hover {
	background-color: #3A3735;
}

#top-links a {
	display: block;
	color: #4f4f4e;
	padding: 5px 10px;
}

#top-links a:hover {
	color: #fff;
}

#account img, #newsletter img, #social img {
	width: 32px;
	height: 32px;
	padding: 6px 9px;
}
.social img {
	width: 28px;
	height: 28px;
	margin: 8px;
	opacity: 0.5;
	-webkit-transition: opacity 250ms ease;
	-moz-transition: opacity 250ms ease;
	transition: opacity 250ms ease;
}
.social:hover img {opacity: 1;}
#account, #newsletter {cursor: help;}
#side-links {
	display: none;
	height: 44px;
	float: right;
}
#side-links li {
	border-left: solid 1px #000;
	background-color: rgba(0,0,0,0.5);
	cursor: pointer;
}
#social ul {
	display: none;
	position: absolute;
	top: 44px;
	right: 0;
	z-index: -1;
	border-left: solid 1px #282828;
	border-bottom: solid 1px #282828;
	background: transparent;
	-webkit-box-shadow:  0 0 4px #000;
	-moz-box-shadow:  0 0 4px #000;
	box-shadow: 0 0 4px #000;
	color: #fff;
}
#social ul li {
	display: list-item;
	height: 60px;
	padding: 0;
	margin: 0;
	border: none;
	background-color: rgba(0,0,0,0.85);
	
	min-width: 60px;
	max-height: 40px;
}
#social ul li img {
	padding: 14px 9px;
	margin: 0;
}

/* MENU */
header nav {
	width: 100%;
	height: 44px;
	position: relative;
}
header nav.minimized {
	position: fixed;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.85);
	height: 56px;
}

header .minimized #menu {
	background-color: transparent;
	border-top: transparent;
}

.minimized .submenu {
	top: 11px;
}

header nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
header nav li {
	display: inline-block;
	line-height: 30px;
}
header nav a {
	display: block;
	width: 100%;
	height: 100%;
}
#menu {
	width: 100%;
	font-size: 14px;
	background-color: rgba(0, 0, 0, 0.6);
	border-top: 1px solid rgba(255, 255, 255, 0.3);
}

#menu li a.active { 
	color: #F0B800; 
}

#menu li ul li a.active:hover {
	color: #000;
}

/* DESKTOP */
@media screen and (min-width: 971px) {
	#logo-small {
		-webkit-transition: opacity 250ms ease;
		-moz-transition: opacity 250ms ease;
		transition: opacity 250ms ease;
		width: 90px;
		margin-bottom: -75px;
		position: relative;
	}
	#logo-small.displayed {
		opacity: 1;
		width: 60px;
		margin-top: 10px;
		margin-bottom: -60px;
	}
	#menu-button {display: none;}
	#menu, .submenu {
		padding: 0;
		overflow: hidden;
		margin: 0;
	}
	#menu li:not(.subitem) {
		width: 20%;
		color: #FFF;
		text-shadow: 1px 1px #111;
		-webkit-transition: color 250ms ease;
		-moz-transition: color 250ms ease;
		transition: color 250ms ease;
		cursor: pointer;
		margin: 0px 20px;
	}
	#menu li:not(.subitem):hover {color: #F0B800;}
	#menu li:hover > .submenu {
		display: block;
		-webkit-transform: translateY(45px);
		-moz-transform: translateY(45px);
		transform: translateY(45px);
		-webkit-transition-delay: 0ms !important;
		-moz-transition-delay: 0ms !important;
		transition-delay: 0ms !important;
	}
	.submenu {
		position: absolute;
		top: 22px;
		z-index: -100;
		background-color: rgba(0, 0, 0, 0.9);
		font-size: 14px;
		text-shadow: none;
		overflow: hidden;
		width: 100%;
		max-width: 180px;
		text-align: left;
		opacity: 1;
		display: none;
	}
	.subitem {
		padding: 0 10px;
		color: #fff;
		background-color: rgba(0, 0, 0, 0.9);
		cursor: pointer;
		width: 100%;
		border-bottom: 1px dashed #373936;
		text-indent: 10px;
	}

	.subitem:last-child {
		border-bottom: 1px solid transparent;
	}
	.subitem:hover {
		text-decoration: none;
		background-color: #cf9d25;
		color: #000;
		border-bottom: 1px solid #cf9d25;
	}

}

@media screen and (min-width: 1000px) {
	.submenu {
		margin-left: 30px;
	}
}

@media screen and (min-width: 1300px) {
	.submenu {
		margin-left: 80px;
	}
}

@media screen and (min-width: 1500px) {
	.submenu {
		margin-left: 100px;
	}
}


@media screen and (min-width: 1700px) {
	.submenu {
		margin-left: 110px;
	}
}


@media screen and (min-width: 1920px) {
	.submenu {
		margin-left: 130px;
	}
}



 
/* TABLET & SMARTPHONE */
@media screen and (max-width: 970px) {
	header {
		background: #000;
		height: auto;
	}
	#top-links {display: none;}
	#side-links {display: block;}
	#logo-small {
		width: 60px;
	}
	#logo-small.displayed {display: none;}
	#menu-button {
		width: 28px;
		float: left;
		padding: 8px 10px;
		border-right: solid 1px #000;
		background-color: rgba(0,0,0,0.5);
		cursor: pointer;
	}
	#menu {
		display: none;
		width: 210px;
		position: absolute;
		top: 44px;
		left: 0;
		z-index: -1;
		border-right: solid 1px #282828;
		border-bottom: solid 1px #282828;
		background: transparent;
		-webkit-box-shadow:  0 0 4px #000;
		-moz-box-shadow:  0 0 4px #000;
		box-shadow: 0 0 4px #000;
	}
	#menu li {
		display: inherit;
		width: 190px;
		height: auto;
		min-height: 44px;
		padding-left: 20px;
		background-color: rgba(0,0,0,0.85);
		text-align: left;
		color: #FFF;
		text-shadow: 1px 1px #000;
	}

	#menu li ul li a.active:hover {
		color: #F0B800;
	}

	#menu li ul li {
		padding-left: 0px;
		min-height: 38px;
		background: none;
	}

	#menu li ul li a {
		margin-left: 20px;
	}


	header nav {
		background-color: #000;
		padding-top: 5px;
	}

	#side-links li {
		border-left: solid 1px transparent;
		background-color: transparent;
	}

	#logo {
		display: none;
	}
}

/* SMARTPHONE */
@media screen and (max-width: 720px) {

	
}