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


header nav {
	float: right;
	padding: 20px;	
}

header img {
	height:100%;
}

#logo{
	margin: 10px;
	float: left;
	width: 200px;
	height: 40px;
	background: url(../img/PFS-Logo.png) no-repeat center;
	display: block;

}

#menu-icon {
	background-color: lightgrey;
	height: 40px;
	width: 40px;
	display: none;
    vertical-align: middle
}

a:hover#menu-icon {
	background-color: #444;
	border-radius: 10px 10px 0 0;
}

.ui-icon-bullets:after {
    /* Make your icon fit */
    height:30px;
    width:30px;
    background-size: 17px 17px;
    margin: -15px;
}
header ul {
	list-style: none; /*Removes the bullet points*/
}

nav ul li {
	float: left;
	padding: 10px
}

.ui-content {margin-top: 76px;}

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

	header {
		position: absolute;
	}

	#menu-icon {
		display:inline-block;
	}

	nav ul, 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;

	}

	nav li {
		text-align: center;
		width: 100%;
		padding: 10px 0;
		margin: 0;
	}

	nav:hover ul {
		display: block;
	}
}