@charset "utf-8";
/* CSS Document */

	html {
		margin: 0;
		padding: 0;
		border: 0;
		height: 100%;		
	}
	
	html, body {
		min-height: 100%;
    	margin: 0;
    	padding: 0;
	}
	
	header {
		display: block;
  		width: 100%;
  		height: 120px;
  		overflow: hidden;
	}
	
	#headerContainer {
		text-align: center;
	}
	
	#headerImage {
		position: relative;
	}

	#bannerLocation {
		position: absolute;
		top: 80px;
		right: 20px;
		color: white;
		font: 25px "Trebuchet MS", Verdana, sans-serif;
	}
	
	nav {
		display: table;
		width: 100%;
		background-color: #962803;
		font: 22px "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
		
	}
	
	nav > ul {
		display: table-row;
	}
		
	nav > ul > li {
		text-align: center;
		border: none;
		border-top: 1px solid #aaa;
		border-bottom: 1px solid #333;
		background: -moz-linear-gradient(top, #965b47 0%, #962803 100%); /* FF3.6+ */
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#965b47), color-stop(100%,#962803)); /* Chrome,Safari4+ */
		background: -webkit-linear-gradient(top, #965b47 0%,#962803 100%); /* Chrome10+,Safari5.1+ */
		background: -o-linear-gradient(top, #965b47 0%,#962803 100%); /* Opera 11.10+ */
		background: -ms-linear-gradient(top, #965b47 0%,#962803 100%); /* IE10+ */
		background: linear-gradient(top, #965b47 0%,#962803 100%); /* W3C */
	}
	
	nav > ul > li:first-child {
		border-top: none;
	}

	nav > ul > li:last-child {
		border-bottom: none;
	}

	nav > ul > li > a {
		display: block;
		width: 100%;
		height: 40px;
		line-height: 40px;
	}

	nav a {
		color: #ffd99a;
	}
	
	article {
		margin: 20px 20px 20px 20px;
	}
	
	h2 {
		padding: 25px 0 0 5px;
		font: 24px "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
	}
	
	h3 {
		color: #6c9300;
		font: 20px "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
	}
	
	.scriptwarning {
		color: red;
		font-weight: bold;
		font-size: 14px;
		font-family: monospace;
		text-align: center;
	}
	
	footer {
		position: relative;
		right: 0;
		bottom: 0;
		left: 0;
		padding: 10px;
		background-color: #efefef;
		text-align: center;
		font: 14px "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
	}
	
	

