	#header {
		max-width: 1280px;
		width: 100%;
		position: fixed;
		top: 0;
		margin: 0 auto;
		
		font-family: "OstrichBlack", Helvetica, sans-serif;
		font-size: 1.5em;
		background-color: #000;
		border-top: 5px solid #0066cc;
		height: 55px;
		color: #0066cc;
		z-index: 99;
	}
	
	#header a {
		color: #ffffff;
	}
	
	#logo {
		position: absolute;
		top: 0;
		margin: 0 5px;
		height: 55px;
	}	
	
	#menuButton {
		position: absolute;
		top: 15px;
		right: 15px;
		visibility: hidden;
	}
	
	#menuBG {
		position: absolute;
		top: 0px;
		width: 100%;
		height: 2560px;
		visibility: hidden;
		background-color: #000;
		opacity: 0.60;
		filter: alpha(opacity=60); /* For IE8 and earlier */	
		cursor: pointer;
	}
	
	#navMenu {
		position: absolute;
		top: 10px;
		right: 15px;
		width: 96%;
		visibility: hidden;
		cursor: pointer;
	}
	
	#navMenu ul {
		list-style-type: none;
		margin: 0;
		padding: 0;
	}
	
	#navMenu li {
		text-align: right;
		line-height: 1.4em;
		border-bottom: 1px solid #333;
	}		
	
	
	#navbar {
		position: static;
		padding: 15px;
		margin: 0;
		visibility: visible;
	}
	
	#navbar ul {
		list-style-type: none;
		float: right;
		margin: 0;
	}
	
	#navbar li {
		padding-left: 20px;
		text-align: right;
		float: left;
		line-height: 1em;
	}
	
	
	#footer {
		clear: both;
		margin-top: 30px;
		padding: 5px 15px;
		background-color: #0066cc;
		color: #ffffff;
		font-size: 0.8em;
		line-height: 1.5em;
	}
	
	#footer a {
		color: #ffffff;
	}
	
	#copyright {
		
	}
	
	#contact {
		float: right;
	}
	
	

	@media screen and (max-width: 520px){
		#navbar {
			visibility: visible;
		}
		
		#navbar li {
			font-size: 0em;
		}
	
		#menuButton {
			visibility: visible;
		}
	}
	
	@media screen and (max-width: 420px){
		#footer {
			clear: both;
			padding: 5px 5%;
			text-align: center;
		}

		#contact {
			clear: left;
			width: 100%;
			display: block;
			margin-bottom: 4px;
		}
		
		#copyright {
			width: 100%;
			display: block;
		}
	}
	
		
