@charset "UTF-8";
body {
	font: 75% Arial, Helvetica, sans-serif;
	background: rgb(67,101,10);
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0 0 32px 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}
#container {
	width: 928px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	position: relative;
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
}
#header {
	background: url(../images/bg-splash.jpg) rgb(125,162,39) no-repeat; 
	padding: 0;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	color: white;
	overflow: hidden;
	height: 170px;
}
#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#header .gllLogo {
	float: right;
	margin-top: 18px;
	margin-right: 15px; 
	z-index: 999;
}
#mainNav {
	position: absolute;
	top: 36px;
	left: 0;
}
#mainNav ul {
	display: block;
	list-style-type: none;
	padding: 48px 0 0;
}
#mainNav li {
	display: inline;
	list-style-type: none;
	padding-right: 24px;
}
#mainNav li a {
	color: white;
	text-decoration: none;
}
#mainNav li a:focus {
	outline: 1px dotted white;
}
#mainNav li a:hover {
	text-decoration: underline;
}
#mainNav li:first-child {
	padding-left: 24px;
}
#mainContent {
	padding: 40px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
	overflow: auto;
}
#footer {
	height: 46px;
	padding: 60px 10px 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: url(../images/bg-footer.jpg) rgb(125,162,39) no-repeat;
}
.fltlft {
	float: left;
	margin-right: 12px;
}
.fltrt {
	float: right;
	margin-left: 12px;
}
.clrflt {
	clear: both;
}
a.externalLink {
	color: rgb(212,121,9);
	text-decoration: none;
	font-weight: normal;
}
a.externalLink:focus {
	outline: dotted 1px rgb(212,121,9);
}
a.externalLink:hover {
	text-decoration: underline;
}
address {
	margin-top: .5em;
	font-style: normal;
}
h1, h2 {
	font-size: 150%;
	margin-top: 1.5em;
}
h1, h2, h3 {
	color: rgb(90,110,39);
}
h3 {
	margin-top: 1em;
}
h6 {
	text-align: center;
	font-weight: bold;
	color: rgb(90,110,39);
	text-transform: uppercase;
}
h6 span {
	font-weight: normal;
	text-transform: none;
}
img {
	display: block;
}
#mainContent img {
	margin: 12px auto;
}
#mainContent .callout img {
	margin: 0 auto .5em;
}
img.arrow, #mainContent img.arrow {
	display: inline;
	margin: 0 .25em 0 0;
	vertical-align: -.2em;
}
#mainContent img.arrow {
	margin-right: .5em;
	vertical-align: -.05em;
}
#mainContent img.fltlft {
	margin: 12px 12px 12px 0;
}
p {
	margin-top: 1em;
}
strong {
	color: rgb(212,121,9);
	font-weight: bold;
}
ul {
	list-style-type: disc;
	margin-left: 1em;
	margin-top: 1em;
}
*:first-child {
	margin-top: 0;
}
.gllName {
	text-transform: uppercase;
}
ul.staff {
	font-weight: bold;
	color: rgb(212,121,9);
	list-style-type: none;
	margin-left: 0;
}
.callout {
	margin: 24px 24px 0;
}


