header a {

	color: #4C9CF1;
	text-decoration: none;
	font-weight: bold;

}

header a:hover {

	color: #444;

}

header img {

	width: 100%;

}

header {

	background: #fff;
	width: 100%;
	height: 76px;
	position: fixed;
	top: 0;
	left: 0;
	border-bottom: 4px solid #4C9CF1;
	z-index: 100;

}

header #logo{

	margin-left: 20px;
	float: left;
	height: 40px;
	display: block;

}

header nav {

	float: right;
	padding: 20px;	

}

header #menu-icon {

	display: hidden;
	width: 40px;
	height: 40px;
	background: #4C8FEC url(../images/menu-icon.png) center;

}

header a:hover#menu-icon {

	background-color: #444;
	border-radius: 4px 4px 0 0;

}

header ul {

	list-style: none;

}

header li {

	display: inline-block;
	float: left;
	padding: 10px;

}

header .current {

	color: #2262AD;

}

header section {

	margin: 80px auto 40px;
	max-width: 980px;
	position: relative;
	padding: 20px

}

header h1 {

	font-size: 2em;
	color: #2262AD;
	line-height: 1.15em;
	margin: 20px 0 ;

}

header p {

	line-height: 1.45em;
	margin-bottom: 20px;

}

/*MEDIA QUERY*/
@media only screen and (max-width : 730px) {

	header {

		position: relative;

	}

	header #menu-icon {

		display:inline-block;

	}

	header nav ul, header nav:active ul { 

		display: none;
		position: absolute;
		padding: 20px;
		background: #fff;
		border: 5px solid #444;
		right: 20px;
		top: 60px;
		width: 50%;
		border-radius: 4px 0 4px 4px;

	}

	header nav li {

		text-align: center;
		width: 100%;
		padding: 10px 0;
		margin: 0;

	}

	header nav:hover ul {

		display: block;

    }
    
}