/* CCS header style sheet */

.header {
	background-color: white;
    float: left;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    z-index: 3;
    margin-top: -96px;
	border-color:rgba(82, 168, 236, 0.8);
	-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 8px rgba(82, 168, 236, 0.6);
	-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 8px rgba(82, 168, 236, 0.6);
	box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 8px rgba(82, 168, 236, 0.6);
}

.header .logo{
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	height: 76px;
	margin: 0 10px;
	position: relative;
	width: 217px;
}

/* RESPONSIVE CODE */
@media screen and (max-width: 640px) {
	.header .logo{
		margin: 0;
		width: 100%;
	}
}