*{
	margin:0px;
	padding:0px;
}

p,div{
	margin-bottom:5vw;
}
#banner{
	width:100%;
}

h1{
	font-size:5vw;
	text-align:left;
	margin-bottom:30pt;
	margin-top:15pt;
	color:white;
	/* background: linear-gradient(#9DE458, #64CE3B); */
	/* background: -webkit-linear-gradient(#9DE458, #64CE3B); */ /* For Safari */
	/* background: -o-linear-gradient(#9DE458, #64CE3B); */ /* For Opera 11.1 to 12.0 */
	/* background: -moz-linear-gradient(#9DE458, #64CE3B); */ /* For Firefox 3.6 to 15 */
	text-align:center;
}

h2{
	font-size:1.2em;
	margin-bottom:10pt;
}

h3{
	font-size:1em;
	margin-bottom:10pt;
}

#infotable{
	border-collapse:collapse;
	width:100%;
	margin:auto auto 20pt auto;
}

#infotable td{
	padding-left:10pt;
	height:2em;
	vertical-align:middle;
	border:1px solid white;'
}

.darkgreen{
	background-color:#A9D284;
	font-weight:bold;
	width:35%;
}

.lightgreen{
	background-color:#DEE9B1;
}

ul,ol{
	margin-left:8%;
	margin-bottom:20pt;
}

.imgdisplay div{
	display:inline-block;
}

.fullwidth{
	width:100% !important;
}

.hidden{
	display:none;
}

#topbar{
	margin-top:20pt;
	margin-bottom:20pt;
	margin-left:5%;
	font-size: 30px;
}

#topbar a{
	color:blue;
	text-decoration:none;
	font-size:3.5vw;
}

#bread{
	width:95%;
	margin:auto;
	font-size:5vw;
}

#bread a{
	color:blue;
}

#container{
	font-size:5vw;
	text-align:justify;
	width:95%;
	margin:auto;
	word-wrap:break-word;
	padding-top: 10px;
}

#container img{
	width:100%;
	margin:auto;
}

.tb-border-1 td,
.tb-border-1 th{
	border: 1px solid #000000;
}
table.poster  tr:nth-child(2n){
	background-color:#fafad9;
}
table.poster  tr:nth-child(2n+1){
	background-color:#f8f0b8;
}
table.poster  tr:nth-child(1){

	background-color:#006601;
}
table.poster h1{
	color:#ffffff;
	border-bottom: 0px;
}

/* Hamburger Menu Styles */
.hamburger-menu {
	position: fixed;
	top: 80px;
	right: 15px;
	z-index: 1000;
	cursor: pointer;
	background-color: #64CE3B;
	border-radius: 4px;
	padding: 10px;
	box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.hamburger-icon {
	display: block;
	width: 30px;
	height: 20px;
	position: relative;
}

.hamburger-icon span {
	display: block;
	position: absolute;
	height: 3px;
	width: 100%;
	background: white;
	border-radius: 3px;
	opacity: 1;
	left: 0;
	transform: rotate(0deg);
	transition: .25s ease-in-out;
}

.hamburger-icon span:nth-child(1) {
	top: 0px;
}

.hamburger-icon span:nth-child(2) {
	top: 8px;
}

.hamburger-icon span:nth-child(3) {
	top: 16px;
}

.hamburger-icon.open span:nth-child(1) {
	top: 8px;
	transform: rotate(135deg);
}

.hamburger-icon.open span:nth-child(2) {
	opacity: 0;
	left: -60px;
}

.hamburger-icon.open span:nth-child(3) {
	top: 8px;
	transform: rotate(-135deg);
}

.nav-menu {
	position: fixed;
	top: 0;
	left: -80%;
	width: 80%;
	height: 100%;
	background-color: white;
	z-index: 999;
	overflow-y: auto;
	transition: left 0.3s ease-in-out;
	box-shadow: 2px 0 5px rgba(0,0,0,0.2);
}

.nav-menu.open {
	left: 0;
}

.nav-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.5);
	z-index: 998;
	display: none;
}

.nav-overlay.open {
	display: block;
}

.nav-menu-header {
	background: linear-gradient(#9DE458, #64CE3B);
	padding: 15px;
	color: white;
	font-size: 6vw;
	font-weight: bold;
	text-align: center;
}

.nav-menu ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.nav-menu li {
	border-bottom: 1px solid #eee;
}

.nav-menu li a {
	display: block;
	padding: 15px;
	color: #005B25;
	text-decoration: none;
	font-size: 5vw;
}

.nav-menu li a:hover, 
.nav-menu li a:active {
	background-color: #f5f5f5;
}

/* Hide the original navigation when hamburger menu is active */
.hamburger-active .main-nav {
	display: none;
}