@charset "UTF-8";
header {
	position: relative;
	z-index: 60;
	width: 100%;
	left: 0px;
	top: 0px;
	height: 80px;
	background-color: #fff;
}
@media only screen and (min-width: 768px) {
	header {
		border-top-width: 20px;
		height: 100px;
		-moz-box-shadow: 0px 0px 0px #666;
		-webkit-box-shadow: 0px 0px 0px #666;
		box-shadow: 0px 0px 0px #666;
		transition: all 0.3s ease-in-out;
		-webkit-transition: all 0.3s ease-in-out;
		-moz-transition: all 0.3s ease-in-out;
	}
	/*
	header:hover {
		-moz-box-shadow: 0px 3px 4px #666;
		-webkit-box-shadow: 0px 3px 4px #666;
		box-shadow: 0px 3px 4px #666;
	}
	*/
}
@media only screen and (min-width: 1024px) {
	header {
		height: 130px;
	}
}
/* LOGO */
#logo {
	position: absolute;
	width: 250px;
	left: 30px;
	top: 30px;
	z-index: 40;
}
#logo img {
	width:100%;
}
@media only screen and (min-width: 768px) {
	#logo {
		left: 40px;
	}
}

@media only screen and (min-width: 1024px) {
	#logo {
		width: 300px;
		left: 70px;
		top: 50px;
	}
}