/* Basic CSS */
html {
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: aliased;
}

#header{ 
position: fixed;
background: rgba(0, 120, 40, 0.75);
	border-bottom: 1px solid #e6e6e6;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	width:100%;
	height: 50px;
	margin:0 auto !important;
}

#header div.glonav {
	max-width:1220px;
	width:100%;
	height:50px;
	margin:0 auto;
	text-align:center;
}

#header div.glonav img {
	float: left;
	padding-left:1em;
}


#header div.glonav nav {
	text-align: right;
}

#header div.glonav nav ul {
	margin: 0;
	padding: 1em;
	list-style-type: none;
}
#header div.glonav nav ul li {
	display: inline;
	margin-left: 2em;
}
#header div.glonav nav ul li:first-child {
	margin-left: 0;
}
#header div.glonav nav ul li ul {
	display: none;
}
a {
	color: #fff;
}
a:hover {
	color: #34495e;
}
a, a:hover {
	-o-transition: color 0.25s ease-in;
	-webkit-transition: color 0.25s ease-in;
	-moz-transition: color 0.25s ease-in;
	transition: color 0.25s ease-in;
	text-decoration: none;
}
section, article, header {
	display: block;
	float: left;
	width: 100%;
}