/* CSS Document */

body, html {
	margin:0px;
	padding:0px;
	background-color:#fff;
}

div {
	display:block;
}

.header {
height: 160px;
    background-color: #fff;
    margin-bottom: 10px;
    -webkit-box-shadow: 0 3px 5px 3px rgba(0,0,0,0.3);
    box-shadow: 0 3px 5px 3px rgba(0,0,0,0.3);
    width: 100%;
	position:relative;
	z-index:2;
}

.logo {
	margin-top:30px;
}

.container {
	max-width:1240px;
	margin:0 auto;
	position:relative;
	z-index:1;
	top:-20px;
}

img {
	max-width:100%;
	height:auto;
}

@media screen and (max-width:460px) {

body, html  {
	background-color:#009ed1;
}
.header {
	height:80px;
}

.logo {
	max-width:180px;
}

}