

/*---------*/
/*--LOGO--*/
/*-------*/
#logo {
	display: inline-block;
	z-index: 100;
	position: relative;
	border: none;
	max-width: 100%;
	margin: 0px 0 0 5px;
	outline: none;
	font-size: 200%;
	font-weight: lighter;
	line-height: 1em;
}
#logo:hover {
	background: none;
}
#logo img {
	display: block; 
	max-width: 100%; 
	height: auto;
	border-style:none;

}


/*-------------------------*/
/*--HEADER IMAGE----*/
/*-----------------------*/

#header {
	position: fixed;
	z-index: 10000;
	left: 0px;
	top: 0;
	width: 100%;
	background: #000;
	
	line-height: 3em;
	
	}

	body {
		padding-top: 0em;
	}
#headerImages {
	position: absolute;
	z-index: 0;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	overflow: hidden;
}
#headerImages:after {
	content: '';
	display: block;
	position:absolute; 
	top:0; 
	left:0; 
	right:0; 
	bottom:0; 
	z-index:2;  
	background-color: #000;
}
.header-image {
	display: none;
	position: absolute;
	z-index: 1;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	background-size: cover;  
	background-position: center; 
	background-repeat: no-repeat;
}
.header-image:first-child {
	display: block;
}
.header-image.activeBg {
	z-index: 2;
}
.header-image img {
	display: none;
}
