@charset "utf-8";
/* CSS Document */

html{
	overflow-y: scroll;
}
body, html{
	min-width: 100%;  /* IMPORTANT */
	height: 100%; /* IMPORTANT */
	padding: 0;
	margin: 0;
	border: 0;
	background: #ffffff;
}
h1{
	text-transform: uppercase;
	font-size: 200%;
	line-height: 175%;
	color: #111;
}
h2{
	font-size: 125%;
	color: #666;
	line-height: 100%;
	text-transform: uppercase;
}
p{
	font-size: 125%;
	line-height: 175%;
	color: #111;
	text-transform: uppercase;
}
#note{
	text-transform: uppercase;
	line-height: 115%;
	color: #111;
}
a{
	margin: 0;
	font-size: 100%;
	color: #FAFAFA;
	text-decoration: none;
}
a:hover {color: #50b946;}

img{
	width: 100%;
	height: auto;
	user-drag: none;
	-moz-user-select: none;
	-webkit-user-drag: none;
}
a img {
	border: 0px;
	text-decoration: none;
}
*, a, :focus { outline:none;}
*, a, a:visited, a:focus, a:active, a:hover {outline:0 none !important;}

/******************
BULLET LISTS
******************/
ul {
	margin: 0;
	padding: 0;
    counter-reset: foo;
    display: table;
}
	ul > li {
		font-size: 100%;
		line-height: 150%;
		color: #111;
		list-style: none;
		counter-increment: foo;
		display: table-row;
		text-align: left;
	}
		ul > li::before {
			content: counter(foo, disc) " ";
			display: table-cell;
			text-align: left;
			padding-right: 0.5em;
		}

ol {
	margin: 0;
	padding: 0;
    counter-reset: foo;
    display: table;
}
	ol > li {
		font-size: 100%;
		line-height: 150%;
		color: #111;
		list-style: none;
		counter-increment: foo;
		display: table-row;
		text-align: left;
	}
		ol > li::before {
			content: counter(foo, decimal) " ";
			display: table-cell;
			text-align: left;
			padding-right: 0.5em;
		}

/******************************
HEADER
*******************************/
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0;
    z-index: 1000;
    transition: all 0.2s ease-in-out;
    height: auto;
    background-color: transparent;
    text-align: center;
    line-height: 75px;
}
	.header.active {
		background: #111;
		-webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
		-moz-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
		box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
	}

/******************
BUTTONS
******************/
.scroll-button{
	margin: 0;
	padding: 0;
	width: auto;
	height: auto;
	text-align: center;
}
.link-button{
	margin: 0;
	padding: 0;
	width: auto;
	height: auto;
}
.material-icons{
	font-family: 'Material Icons';
	font-weight: normal;
	font-style: normal;
	font-size: 200% !important;
	margin: 0;
	padding: 0;
	line-height: 50px;
	vertical-align: middle;
	display: inline-block;
	text-transform: none;
	letter-spacing: normal;
	word-wrap: normal;
	white-space: nowrap;
	direction: ltr;

	/* Support for all WebKit browsers. */
	-webkit-font-smoothing: antialiased;
	/* Support for Safari and Chrome. */
	text-rendering: optimizeLegibility;
	/* Support for Firefox. */
	-moz-osx-font-smoothing: grayscale;
	/* Support for IE. */
	font-feature-settings: 'liga';
}
#scroll_down {
    font-weight: 400;
    margin: 0;
    padding: 0;
    line-height: 300%;
    color: #FFF;
    border: 2px solid #FFF;
    text-transform: uppercase;
	background: rgb(17, 17, 17);
    background: rgba(17, 17, 17, .6);

	width: 50px;
	height: 50px;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;

    -webkit-transition-property: background;
    -moz-transition-property: background;
    -o-transition-property: background;
    transition-property: background;

    -webkit-transition-duration: .5s;
    -moz-transition-duration: .5s;
    -o-transition-duration: .5s;
    transition-duration: .5s;

    -webkit-transition-timing-function: ease;
    -moz-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
}
#scroll_down:hover {
    background: #50b946;
    color: #FFF;
}
#button_link {
	letter-spacing: 1px;
    margin: 0;
    padding: 0 4%;
    line-height: 300%;
    color: #FFF;
	border: 2px solid #FFF;
    text-transform: uppercase;
	background: rgb(17, 17, 17);
    background: rgba(17, 17, 17, .6);

    -webkit-transition-property: background;
    -moz-transition-property: background;
    -o-transition-property: background;
    transition-property: background;

    -webkit-transition-duration: .5s;
    -moz-transition-duration: .5s;
    -o-transition-duration: .5s;
    transition-duration: .5s;

    -webkit-transition-timing-function: ease;
    -moz-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
}
#button_link:hover {
	background: #50b946;
    color: #FFF;
}

/******************
SUBNAV
******************/
.section-subnav {
	margin: 0;
	padding: 0;
    width: 100%;
    height: auto;
}
.subnav-button {
	font-size: 125%;
	text-transform: uppercase;
	line-height: 75px;
    width: 100%;
	border: none;
	border-bottom: 1px solid #111;
	border-top: 1px solid #111;
	margin: 0;
    padding: 0;
    text-align: center;
    background: #111;
    color: #FAFAFA;

    -webkit-transition-property: background;
    -moz-transition-property: background;
    -o-transition-property: background;
    transition-property: background;

    -webkit-transition-duration: .5s;
    -moz-transition-duration: .5s;
    -o-transition-duration: .5s;
    transition-duration: .5s;

    -webkit-transition-timing-function: ease;
    -moz-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
}
.subnav-button:hover{
	background: #ffffff;
	color: #111;
	border-bottom: 1px solid #CCC;
	border-top: 1px solid #CCC;
}

/******************************
CONTAINER CELL
*******************************/
.container_image{
	position: relative;
	width: 100%;
	height: 100%;
	margin: 0 auto;
	padding: 0;
	display: block;
	overflow: hidden;
	zoom: 1;
	z-index: 996;
	background: url(../css/images/typewriter.jpg);

	background-repeat: no-repeat !important;
	background-position: center center !important;
	background-size: 100% 100% !important;
	-webkit-background-size: cover !important;
	-moz-background-size: cover !important;
	-o-background-size: cover !important;
	background-size: cover !important;
}
	.container_table{
		display: table;
		width: 100%;
		height: 100%;
		margin: 0 auto;
		padding: 0;
		text-align: center;
	}
		.container_cell{
			display: table-cell;
			vertical-align: middle;
		}
.logo{
	width: 25%;
	height: auto;
	margin: 0 auto;
	text-align: center;
}

/******************************
SECTION
*******************************/
.section{
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	display: block;
	overflow: hidden;
	text-align: center;
}
article{
	overflow: hidden;
	width: 80%;
	height: auto;
	margin: 0 auto;
	padding: 0;
}
	.section-slider {
		display: block;
		overflow: hidden;
		color: #111;
		margin: 0;
		padding: 2em 0 2em 0;
		text-align: center;
	}

	.section-slider article h1 {
		margin: 0;
		margin-bottom: 2%;
		padding: 0;
	}


	.section-content {
		display: block;
		overflow: hidden;
		color: #111;
		margin: 0;
		padding: 7% 0;
		text-align: center;
	}
		.section-content article h1 {
			margin: 0;
			margin-bottom: 2%;
			padding: 0;
		}
		.section-content article p {
			margin: 0;
			padding: 0;
		}
		.section-content article p a{
			color: #111;
		}
		.section-content article p a:hover{
			color: #50b946;
		}
		.section-content article #note {
			margin-top: 3%;
		}
		.section-content > article span.tree{
			display: block;
			width: 100%;
			height: auto;
			margin: 0;
			padding: 0;
		}
		.section-content > article span.tree img{
			width: 18%;
			padding-bottom: 2%;
		}

.section-image {
	width: 100%;
	min-width: 100%;
	min-height: 600px;
    overflow: hidden;
    position: relative;
}
		.section-image img{
			width: auto;
			min-height: 100%;
			position: absolute;
			top: -9999px;
			bottom: -9999px;
			left: -9999px;
			right: -9999px;
			margin: auto;
		}

/******************************
STATIC CAROUSEL
*******************************/
.static-carousel{
	width: 80%;
	margin: 0 auto;
	margin-top: 4%;
}
	.static-carousel-frame{
		width: 18%;
		display: inline-block;
		margin-right: 2.5%;
		text-align: center;
	}
	.static-carousel-frame:last-child {margin-right: 0;}

/******************************
WIDGETS
*******************************/
.section-widget{
	width: 80%;
	height: auto;
	margin: 0 auto;
	padding: 5% 0;
}
	.section-widget .widget{
		 display: inline-block;
		 width: 21.25%;
		 height: auto;
		 margin: 0 5% 0 0;
		 padding: 0;
		 vertical-align: top;
	}
	.section-widget .widget:last-child {margin-right:0}

	.section-widget .widget h1{
		font-size: 150%;
		padding: 2% 0;
		border-bottom: 2px solid #111;
		border-top: 2px solid #111;
	}
	.section-widget .widget ul li a{
		color: #111;
	}
	.section-widget .widget ul li a:hover{
		color: #50b946;
	}
		.section-widget .widget ul > li::before {
			padding: 0;
			content: counter(foo, none) " ";
		}
.widget-button {
	font-size: 125%;
	background: none;
	text-transform: uppercase;
	line-height: 75px;
    width: 100%;
	border: none;
	margin: 0;
    padding: 0;
    text-align: left;
	color: #111;

    -webkit-transition-property: background;
    -moz-transition-property: background;
    -o-transition-property: background;
    transition-property: background;

    -webkit-transition-duration: .5s;
    -moz-transition-duration: .5s;
    -o-transition-duration: .5s;
    transition-duration: .5s;

    -webkit-transition-timing-function: ease;
    -moz-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
}
.widget-button:hover{
    color: #50b946;
}

.widget-gallery{
	width: 80%;
	height: auto;
	margin: 0 auto;
	display: block;
	overflow: hidden;
}
	.widget-gallery-frame{
		width: 21.25%;
		margin-right: 5%;
		margin-top: 4%;
		display: inline-block;
		text-align: center;
	}
	.widget-gallery-frame:last-child {margin-right: 0;}

/******************************
EVENTS
*******************************/
.section-events{
	width: 100%;
	height: auto;
}
	.events-content-table{
		display: table;
		float: left;
		width: 75.2%;
		height: 470px;
		padding: 0 5%;
		border-top: 1px solid #CCC;
	}
		.events-content-cell{
			display: table-cell;
			vertical-align: middle;
		}
	.events-image{
		clear: both;
		float: left;
		width: 24.7%;
		height: auto;
	}
		.events-image img{
			width: 100%;
			height: auto;
			display: block;
		}

		.events-content-table h1 {
			margin: 0;
			margin-bottom: 2%;
			padding: 0;
		}
		.events-content-table p {
			margin: 0;
			padding: 0;
		}
		.events-content-table #note {
			margin-top: 2.5%;
		}
			.events-content-table #note a{
				color: #111;
			}
			.events-content-table #note a:hover{
				color: #50b946;
			}

/******************
MAP
******************/
.section-map{
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
}
	.map{
		width: 100%;
		height: 600px;
		overflow: hidden;
	}

/******************************
FOOTER
*******************************/
#sitefooter{
	background: #111;
}
	#sitefooter p{
			margin: 0;
			line-height: 75px;
			font-size: 100%;
			color: #FFF;
			text-align: center;
	}

/******************************
VIDEO
*******************************/
.section-video{
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background-color: #FFAFA;
	line-height: 0;
}
	.vid_content{
		position: absolute;
		z-index: 2;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}
		video {
		  display: block;
		}
		.video {
			position: absolute;
			z-index: 1;
			width: auto;
			height: auto;
			background-size: cover;
			background-repeat: no-repeat center;
			background-size: 100% 100%;
			left: 50%;
    		top: 50%;

			/* The following will size the video to fit the full container. Not necessary, just nice.*/
			min-width: 100%;
			min-height: 100%;
			-webkit-transform: translate(-50%,-50%);
			-moz-transform: translate(-50%,-50%);
			-ms-transform: translate(-50%,-50%);
			transform: translate(-50%,-50%);
		}


    /******************
    CLIP
    ******************/
    .section-clip{
    	width: 100%;
    	height: auto;
    	margin: 0;
    	padding: 0;
    }
    .videoWrapper {
        position: relative;
        padding-bottom: 56%;/* ADJUST HEIGHT OF VIDEO */
        padding-top: 0px;
        height: 0;
    }
    .videoWrapper iframe {
        position: absolute;
        top: 0;
        left: 0%;
        right: 0%;
        margin: auto;
        width: 100%;
        height: 100%;
    }

.events-content-cell p a{ color: #50b946 !important; }


/*
playback timings (ms):
  captures_list: 0.437
  exclusion.robots: 0.019
  exclusion.robots.policy: 0.011
  esindex: 0.009
  cdx.remote: 14.207
  LoadShardBlock: 72.0 (3)
  PetaboxLoader3.datanode: 128.084 (5)
  load_resource: 237.759 (2)
  PetaboxLoader3.resolve: 138.533 (2)
*/

