 !important /*Sliders MUST go inside columns; either of the three are fine. It cannot go inside '.row' or else it will display incorrectly.*/
 div {
 font-family: 'candara';
 padding:0px;
 margin:0px;
 overflow:scroll;
  -webkit-overflow-scrolling: touch;
}

a img{
	opacity:1;
}
a img:hover{
	opacity:0.8;
}

/*+++++ Cards contain all page content, except for sliders. They go inside sections or columns. +++++*/
.card {
	background-color: #e69e32;
	background-image: url(tess-orange.jpg);
	-webkit-box-shadow: 0px 0px 10px #111;
	box-shadow: 0px 0px 10px #111;
	overflow: hidden;
	padding: 0px;
	margin: 5px;
}

.card li {
	list-style: square;
}

/*Fixes spacing issues*/
.column-right .card, .column-left .card, .column .card {
	margin: 5px 5px 10px 5px;
}

.column-right .card:last-of-type, .column-left .card:last-of-type, .column .card:last-of-type {
	margin: 5px;
}




a {
	text-decoration: none;
	color: #005B88;
}

a:hover {
	text-decoration: underline;
}

p {
	margin: 20px;
	font-family: 'Candara';
}

img {
	width: 100%;
	float: left;
	border: none;
	margin-bottom: -5px;
}

p img {
	margin: 0;
}

.embed {
	margin: auto 10% auto 10%;
	width: 80%;
}

iframe {
	border: none;
	width: 100%;
	margin-bottom: -5px;
}

/*Defines a row format*/
.row {
	display: block;
	float: left;
	width: 100%;
}

/*There are bugs with match-height when content is loaded dynamically after the document is ready(twitter); use row special with custom scripting instead. */
.row-special {
	display: block;
	float: left;
	width: 100%;
}


/*Defines column views*/
/*A single column class for single column format*/
.column {
	width: 100%;
	float: left;
}

/*Both left and right for 2 columns*/
.column-right {
	width: 34%;
	float: right;
}

.column-left {
	width: 66%;
	float: left;
}
/*Sections are used in row format. Section3 = 100% width, section2 = 66%*, section1 = 34%, .section-half = 50%, .section-third = 33.33%, section-fourth = 25%*/
.section3, .section2, .section1, .section, .section-half, .section-third, .section-fourth {
	float: left;
	display: block;
}

.section3 {
	width: 100%;
}

@media only screen and (min-width: 1224px) {

.section-third {
	width: 33.33%;
}

.section-fourth {
	width: 25%;
}

.section-half {
	width: 50%;
}

.section2 {
	width: 66%;
}

.section1 {
	width: 34%;
}

#logo {
	margin-left: 30px;
}

.card ul {
	margin: 10px 20px 20px 20px;
	width: 80%;
	font-family: 'candara';
}

div {
	font-size: 18px;
}

.card {
	font-size: 18px;
}
}

@media only screen and (max-width: 1223px) {

.section-third {
	width: 33.33%;
}

.section-fourth {
	width: 50%;
}

.section-half {
	width: 50%;
}

.section2 {
	width: 66%;
}

.section1 {
	width: 34%;
}

.column-right {
	width: 34%;
	float: right;
}

.column-left {
	width: 66%;
	float: left;
}

#logo {
	margin-left: 20px;
}

div {
	font-size: 17px;
}

.card {
	font-size: 17px;
}
}

@media only screen and (max-width: 767px) {

.section-third {
	min-width: 50%;
}

.section-fourth {
	width: 100%;
}

.section-half {
	width: 100%;
}

.section2 {
	width: 100%;
}

.section1 {
	width: 100%;
}

#logo {
	margin-left: 10px;
}

.column-right {
	width: 100%;
}

.column-left {
	width: 100%;
}

div {
	font-size: 16px;
}

.card {
	font-size: 16px;
}
}

/*+++++++++++++++++++++++++++++++++++++  Slider and slider caption  ++++++++++++++++++++++++++++++++

To create a slider with a smaller/bigger size, just put it side of a 'section' or 'div' with the right size in the flex layout. 
*/

.caption {
	position: absolute;
	width: 100%;
	height: 36px;
	top: auto;
	bottom: 0px;
	line-height: 36px;
	background: rgba(0,137,123,0.3);
	text-align: center;
	color: #999;
	font: bold 18px/36px Verdana;
}

#slider {
	display: block;
	margin: 5px; /*center aligned*/
	-webkit-box-shadow: 0px 0px 10px #111;
	box-shadow: 0px 0px 10px #111;
	background-image: url(gallery/slider/bg.jpg);
	background-position: center;
	-webkit-background-size: cover cover;
	background-size: cover;
	margin-bottom: -7px;
}

#slider > ul {
	padding: 0;
}

/* slide */
#slider li > div, #slider li > a {
	padding: 0;
	max-width: 1224px;
	margin: 0 auto; /* center each slide */
	/*background:#999;*/
	position: relative;
	display: block;
}

/* loading image indicator */    
#slider div.preload {
	background: url(gallery/slider/loading.gif) no-repeat center center;
}

/*------ pager ------*/      
/* The pager id should be: slider id + "-pager" */    
#slider-pager {
	display: none;
	padding-top: 12px; /* set the distance away from the slider */
	margin: 0 auto; /* center align */
	text-align: center;
	display: table;
	font-size: 0;
}

/* --------- navigation controls ------- */   
/* The nav id should be: slider id + ("-prev", "-next", and "-pause-play") */    
#slider-prev, #slider-next {
	opacity: 0.3;
	position: absolute;
	top: 40%;
	width: 64px;
	height: 64px;
	display: inline-block;
	margin: 0;
	background-image: url(gallery/slider/navs.png);
	background-position: 0 0;
}

#slider-next {
	right: 0;
	background-position: -64px 0;
}

#slider-next:hover {
	opacity: 1;
	background-position: -64px -64px;
}

#slider-prev:hover {
	opacity: 1;
	background-position: 0px -64px;
}

#slider-pause-play {
	display: none;
}

/*------- Settings that usually don't need to change ------- */
#slider > ul {
	-webkit-backface-visibility: hidden;
	-webkit-perspective: 1000px;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-perspective: 1000px;
	perspective: 1000px;
	-webkit-tap-highlight-color: transparent;
}

#slider-pager, #slider-prev, #slider-next, #slider-pause-play {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
}

#slider {
	position: relative;
	overflow: hidden;
	/*visibility: hidden;*/
	padding: 0;
}

#slider > ul {
	overflow: hidden;
	position: relative;
	list-style: none;
	margin: 0;
}

#slider > ul > li {
	float: left;
	width: 100%;
	position: relative;
	list-style: none;
	padding: 0;
	margin: 0;
}

/*++++++++++++++++++++++++++++++Youtube Channel Embedder for tutorials+++++++++++++++++++++++++++++=*/
.ytv-canvas {
	display: block;
	background: #e69e32;
	background-image: url(file:///C|/xampp/htdocs/tess-orange.jpg);
	overflow: hidden;
	font-family: arial, sans-serif;
	-webkit-box-shadow: 0px 0px 10px #111;
	box-shadow: 0px 0px 10px #111;
}
 .ytv-canvas ::-webkit-scrollbar-thumb {
 background: rgba(0,102,102, 0.9);
 border-radius:10px;
}

/*
 * Video
 */
.ytv-video {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	height: 100%;
}

.ytv-video iframe {
	width: 100%;
	height: 100%;
	border: none;
	outline: none;
	display: block;
}

/*
 * List
 */
.ytv-list {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	height: 100%;
}

.ytv-list-inner {
	overflow: auto;
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	-webkit-overflow-scrolling: touch;
}

.ytv-list ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.ytv-list .ytv-active a {
	border-left: 2px solid #099;
}

.ytv-list a {
	display: block;
	text-decoration: none;
	color: #000;
	font-family: 'candara';
	border-bottom: 1px solid rgba(0,0,0,0.5);
}

.ytv-list a b {
	overflow: hidden;
	display: block;
	text-overflow: ellipsis;
}

.ytv-list li:first-child a {
	border-top: none;
}

.ytv-list li:last-child a {
	border-bottom: none;
}

.ytv-list a:hover {
	background: rgba(100,100,100,0.08);
}

.ytv-list .ytv-thumb img {
	display: block;
}

.ytv-list .ytv-thumb span {
	display: none;
}

.ytv-views {
	display: none;
}

.ytv-list-header a, .ytv-list-header a:hover {
	-webkit-box-shadow: 5px 0px 10px #111;
	box-shadow: 5px 0px 10px #111;
	background: rgb(237,145,59); /* Old browsers */ /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(1%, rgba(237,145,59,1)), color-stop(12%, rgba(242,138,33,1)), color-stop(50%, rgba(244,122,0,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, rgba(237,145,59,1) 1%, rgba(242,138,33,1) 12%, rgba(244,122,0,1) 50%); /* Chrome10+,Safari5.1+ */ /* Opera 11.10+ */ /* IE10+ */
	background: linear-gradient(to bottom, rgba(237,145,59,1) 1%, rgba(242,138,33,1) 12%, rgba(244,122,0,1) 50%); /* W3C */
 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ed913b', endColorstr='#f47a00', GradientType=0 ); /* IE6-9 */
	position: relative;
	z-index: 10;
	font-family: 'zekton';
	text-shadow: 0px 1px 5px rgba(0,0,0,8);
	color: #FC6;
	text-decoration: none;
}

.ytv-list-header img, .ytv-list .ytv-playlists .ytv-thumb img {
	vertical-align: middle;
}

/*
 * Playlists
 */
.ytv-playlists {
	z-index: 9;
	position: absolute;
	background: #282828;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: auto;
	display: none;
}

.ytv-playlists img, .ytv-list-header img {
	float: left;
}

.ytv-playlists a span, .ytv-list-header a span {
	white-space: nowrap;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
}

.ytv-list-header .ytv-playlists a {
	background: none;
}

.ytv-playlist-open .ytv-playlists {
	display: block;
}

/*
 * Modifiers
 */
.ytv-relative {
	position: relative;
	width: 100%;
	height: 100%;
}

.ytv-full {
	position: fixed;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
	margin: 0 !important;
}

.ytv-arrow {
	display: none;
}

.ytv-list-header a:after, .ytv-clear:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}

.playlists .special {
	display: none;
}

.ytv-list-header a {
	border-bottom: none;
}

@media only screen and (min-width: 1224px) {

#video-frame, .description {
	height: 538px;
}
 .ytv-canvas ::-webkit-scrollbar {
 width: 7px;
}

.ytv-video {
	right: 300px;
}

.ytv-list {
	width: 300px;
}

.ytv-list-inner {
	top: 50px;
}

.ytv-list a {
	width: 271px;
	font-size: 11px;
	padding: 10px;
	padding-left: 8px;
	padding-right: 0px;
	border-left: 4px solid transparent;
}

.ytv-list .ytv-active a {
	border-left: 4px solid rgba(0,102,102, 0.9);
}

.ytv-list-header a {
	width: auto;
}

.ytv-list a b {
	max-height: 65px;
	font-size: 18px;
}

.ytv-list .ytv-content {
	padding-left: 125px;
}

.ytv-list .ytv-thumb img {
	width: 120px;
}

.ytv-list-header {
	height: 52px;
	width: 100%;
}

.ytv-list-header img, .ytv-list .ytv-playlists .ytv-thumb img {
	width: 30px;
}

.ytv-list-header span {
	font-size: 16px;
}

.ytv-playlists {
	top: 52px;
}

.ytv-list-header a span {
	padding-left: 10px;
}

.ytv-list-header > a span {
	line-height: 30px;
}
}

/*tablets, some larger phones*/
@media only screen and (max-width: 1223px) {

#video-frame, .description {
/*height: 393px;*/
	/*0.409375*/
}
 .ytv-canvas ::-webkit-scrollbar {
 width: 0px;
}

.ytv-video {
	right: 250px;
}

.ytv-list {
	width: 250px;
}

.ytv-list-inner {
	top: 40px;
}

.ytv-list .ytv-active a {
	border-left: 4px solid rgba(0,102,102, 0.9);
}

.ytv-list a {
	font-size: 11px;
	padding: 5px;
	border-left: 2px solid transparent;
}

.ytv-list a b {
	max-height: 56px;
	font-size: 16px;
}

.ytv-list .ytv-content {
	padding-left: 0px;
}

.ytv-list .ytv-thumb img {
	width: 100px;
	padding-right: 5px;
}

.ytv-list-header {
	height: 44px;
}

.ytv-list-header img, .ytv-list .ytv-playlists .ytv-thumb img {
	width: 30px;
}

.ytv-list-header span {
	font-size: 16px;
}

.ytv-playlists {
	top: 44px;
}

.ytv-list-header a span {
	padding-left: 5px;
}

.ytv-list-header > a span {
	line-height: 30px;
}
}

/*phones*/
@media only screen and (max-width: 767px) {
 .ytv-canvas ::-webkit-scrollbar {
 width: 0px;
}

.ytv-video {
	right: 120px;
}

.ytv-list {
	width: 120px;
}

.ytv-list-inner {
	top: 0px;
}

.ytv-list .ytv-active a {
	border-left: 4px solid rgba(0,102,102, 0.9);
}

.ytv-list a {
	font-size: 11px;
	padding: 5px;
	border-left: 2px solid transparent;
}

.ytv-list a b {
	max-height: 56px;
	font-size: 16px;
}

.ytv-list .ytv-content {
	padding-left: 0px;
}

.ytv-list .ytv-thumb img {
	width: 0px;
}

.ytv-list-header {
	height: 0px;
}

.ytv-list-header img, .ytv-list .ytv-playlists .ytv-thumb img {
	width: 0px;
}

.ytv-list-header span {
	font-size: 0px;
}

.ytv-playlists {
	top: 0px;
}

.ytv-list-header a span {
	padding-left: 0px;
}

.ytv-list-header > a span {
	line-height: 0px;
}

.ytv-list-header a, .ytv-list-header a:hover {
	-webkit-box-shadow: none;
	box-shadow: none;
	background: none;
}
}

/*footer*/
#footer {
	min-height: 75px;
	width: 100%;
	background-image: url(tess-orange-red.jpg);
	background-color: #FF8E1C;
	margin-top: 5px;
	-webkit-box-shadow: 0px 0px 10px #111;
	box-shadow: 0px 0px 10px #111;
	float: left;
}

#footer-content {
	font-family: 'candara';
	max-width: 1170px;
	margin-left: auto;
	margin-right: auto;
	padding: 25px;
}

#footer span {
	padding-bottom: 20px;
	line-height: 1.5;
	width: auto;
	font-size: 0.9em;
}

/*table and list styles*/
table {
	float: left;
	border-color: rgba(244,122,0, 0.5);
	border-style: solid;
	margin: 10px 20px 20px 20px;
}

thead td {
	text-align: left;
	color: #399;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.7);
	font-size: 18px;
	font-weight: bold;
}

th {
	text-align: left;
	padding: 5px 15px 5px 15px;
	font-size: 16px;
}

td {
	padding: 5px 15px 5px 15px;
	font-size: 16px;
}

/* Custom fonts */

@font-face {
	font-family: 'zekton';
	src: url('font/zekton-webfont-webfont.eot');
	src: url('font/zekton-webfont-webfont.eot?#iefix') format('embedded-opentype'), url('font/zekton-webfont-webfont.woff') format('woff'), url('font/zekton-webfont-webfont.ttf') format('truetype'), url('font/zekton-webfont-webfont.svg#zektonregular') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'candara';
	src: url('font/candara-webfont.eot');
	src: url('font/candara-webfont.eot?#iefix') format('embedded-opentype'), url('font/candara-webfont.woff') format('woff'), url('font/candara-webfont.ttf') format('truetype'), url('font/candara-webfont.svg#candararegular') format('svg');
	font-weight: normal;
	font-style: normal;
}

/*+++++++++++++++++++++++++++++++++++++  Menu Drawer  ++++++++++++++++++++++++++++++++*/


/*Laptop/Desktop*/
@media only screen and (min-width: 1224px) {

#menu-drawer {
	margin-top: 0px;
}
}

/*tablets*/
@media only screen and (max-width: 1223px) {

#menu-drawer {
	margin-top: 44px;
}
}

/*phones*/
@media only screen and (max-width: 767px) {

#menu-drawer {
	margin-top: 44px;
}
}

#menu-drawer {
	
	width: 0px;
	background-image: url(tess-dark.jpg);
	background-color: #004d40;
	background-attachment: fixed;
	text-shadow: 0px 1px 5px rgba(0,0,0,0.8);
	color: #FC6;
	left: auto;
	z-index: 1;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 295px;
	height: auto;
	overflow: scroll;
	-webkit-overflow-scrolling: touch;
	-webkit-transition: width 0.3s ease;
	transition: width 0.3s ease;
}

#menu-drawer .icon {
	opacity: 1;
	width: 24px;
	height: 24px;
	float: right;
	margin: 8px;
}

#menu-drawer .icon:hover {
	opacity: 0.8;
}

#menu-drawer h3 {
	font-size: 36px;
	font-weight: normal;
	margin: 30px 0px 90px 45px;
}

#menu-drawer h4 {
}

#menu-drawer ul {
	padding: 0;
	margin-left: 30px;
	list-style-type: none;
	margin-bottom: 0;
}

#menu-drawer li a {
	font-family: 'candara';
	opacity: 1;
	font-weight: bold;
	display: block;
	padding: 10px;
	text-decoration: none;
	text-shadow: 0px 1px 5px rgba(0,0,0,8);
	color: #FC6;
	text-indent: 20px;
	height: 20px;
}

#menu-drawer li a:hover {
	opacity: 0.8;
}

#menu-drawer p {
	opacity: 0.5;
	padding: 15px;
	font-size: 12px;
}

#menu-drawer ul li a {
	color: #F90;
}

#menu-drawer ul ul li a {
	color: #FC3;
}

#menu-drawer ul ul ul li a {
	color: #FC6;
}

/*+++++++++++++++++++++++++++++++++++++  Title bar on top of tablet/phones  ++++++++++++++++++++++++++++++++*/


/*Laptop/Desktop*/
@media only screen and (min-width: 1224px) {

#title-bar {
	display: none;
}
}

/*tablets*/
@media only screen and (max-width: 1223px) {

#title-bar {
	display: block;
}
}

/*phones*/
@media only screen and (max-width: 767px) {

#title-bar {
	display: block;
}
}

#title-bar {
	-webkit-box-shadow: 0px 0px 10px #111;
	box-shadow: 0px 0px 10px #111;
	position: fixed;
	z-index: 100;
	top: 0;
	right: 0;
	left: 0;
	width: auto;
	height: 44px;
	background: rgb(237,145,59); /* Old browsers */ /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(1%, rgba(237,145,59,1)), color-stop(12%, rgba(242,138,33,1)), color-stop(50%, rgba(244,122,0,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, rgba(237,145,59,1) 1%, rgba(242,138,33,1) 12%, rgba(244,122,0,1) 50%); /* Chrome10+,Safari5.1+ */ /* Opera 11.10+ */ /* IE10+ */
	background: linear-gradient(to bottom, rgba(237,145,59,1) 1%, rgba(242,138,33,1) 12%, rgba(244,122,0,1) 50%); /* W3C */
 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ed913b', endColorstr='#f47a00', GradientType=0 ); /* IE6-9 */
}

#title-bar span {
	padding-top: 8px;
	text-shadow: 0px 1px 5px rgba(0,0,0,0.8);
	color: #FC6;
	font-size: 20px;
	line-height: 22px;
	text-align: center;
	position: absolute;
	top: 0;
	right: 44px;
	left: 44px;
	width: auto;
	height: 44px;
}

#menu-button {
	display: block;
	opacity: 1;
	float: right;
	background: center center no-repeat;
	background-image: url(icons/open.png);
	width: 44px;
	height: 44px;
}

/*+++++++++++++++++++++++++++++++++++++  Background containers of the site  ++++++++++++++++++++++++++++++++*/
.content-pane {
	padding: 0px;
	-webkit-box-shadow: 0px 0px 10px #111;
	box-shadow: 0px 0px 10px #111;
	background-color: #00897b;
	background-image: url(tess.jpg);
	background-attachment: fixed;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: auto;
	height: auto;
	z-index: 2;
	overflow: scroll;
	-webkit-overflow-scrolling: touch;
	-webkit-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.wrapper {
	max-width: 1214px;
	padding: 0;
	margin-left: auto;
	margin-right: auto;
}

#bg1 {
	width: 100%;
	background-attachment: fixed;
	-webkit-background-size: cover cover;
	background-size: cover;
}

.bg-0 {
	background-color: #004d40;
	background-image: url(tess-dark.jpg);
	background-attachment: local;
	position: absolute;
	margin: 0;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: auto;
	height: auto;
}

html, body {
	font-family: sans-serif;
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background-color: #004d40;
	background-image: url(tess-dark.jpg);
}

/*+++++++++++++++++++++++++++++++++++++  Navigation bar on laptop/desktop  ++++++++++++++++++++++++++++++++*/

/*Laptop/Desktop*/
@media only screen and (min-width: 1224px) {

#nav-bar {
	display: block;
}
}

/*tablets*/
@media only screen and (max-width: 1223px) {

#nav-bar {
	display: none;
}
}

/*phones*/
@media only screen and (max-width: 767px) {

#nav-bar {
	display: none;
}
}

#nav-bar .icon {
	width: 24px;
	height: 24px;
	float: right;
	margin: 8px;
	opacity: 0.5;
}

#nav-bar .icon:hover {
	opacity: 1;
}

#nav-bar {
	-webkit-box-shadow: 0px 0px 10px #111;
	box-shadow: 0px 0px 10px #111;
	position: relative;
	z-index: 100;
	width: 100%;
	height: 40px;
	background: rgb(237,145,59); /* Old browsers */ /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(1%, rgba(237,145,59,1)), color-stop(12%, rgba(242,138,33,1)), color-stop(50%, rgba(244,122,0,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, rgba(237,145,59,1) 1%, rgba(242,138,33,1) 12%, rgba(244,122,0,1) 50%); /* Chrome10+,Safari5.1+ */ /* Opera 11.10+ */ /* IE10+ */
	background: linear-gradient(to bottom, rgba(237,145,59,1) 1%, rgba(242,138,33,1) 12%, rgba(244,122,0,1) 50%); /* W3C */
 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ed913b', endColorstr='#f47a00', GradientType=0 ); /* IE6-9 */
}

nav li {
	border: none;
	list-style: none;
	min-width: 115px;
	line-height: 39px;
	background-color: transparent;
	margin-left: 0px;
	margin-right: 0px;
	margin-top: 0px;
	margin-botton: 0px;
	width: auto;
	text-align: center;
	font-family: 'zekton';
	font-size: 16px;
}

nav li a {
	text-shadow: 0px 1px 5px rgba(0,0,0,8);
	color: #FC6;
	text-decoration: none;
}

nav ul ul {
	display: none;
}

nav ul li:hover > ul {
	display: inherit;
}

nav ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
	position: relative;
	display: inline-table;
}

nav ul:after {
	content: "";
	clear: both;
	display: block;
}

nav ul li {
	z-index: 20;
	float: left;
	text-align: center;
}

nav ul li:hover {
	background-color: rgba(255,255,100,0.1);
}

nav ul li:hover a {
	color: #FC6;
	text-decoration: none;
}

nav ul li a {
	display: block;
	text-decoration: none;
}

nav ul ul {
	-webkit-box-shadow: 2px 5px 10px #333;
	box-shadow: 2px 5px 10px #333;
	background-color: rgb(237,145,59);
	padding: 0;
	position: absolute;
	top: 100%;
}

nav ul ul li {
	z-index: 10;
	float: none;
	border-top: 1px solid rgb(237,145,59);
	border-left: 1px solid rgb(237,145,59);
	border-right: 1px solid rgb(237,145,59);
	font-size: 14px;
	position: relative;
	background-color: rgba(244,122,0, 0.9);
}

nav ul ul li a {
}

nav ul ul li a:hover {
}

nav ul ul ul {
	position: absolute;
	left: 100%;
	top: 0;
	z-index: 10;
}

/*Headings*/
h1 {
	font-size: 50px;
	font-family: 'zekton';
	color: #F60;
	text-shadow: 1px 1px 3px rgba(255,233,171,1), -1px -1px 3px rgba(255,233,171,1), -1px 1px 3px rgba(255,233,171,1), 1px -1px 3px rgba(255,233,171,1), 2px 1px 2px rgba(255,233,171,1), -2px -1px 2px rgba(255,233,171,1), -2px 1px 2px rgba(255,233,171,1), 2px -1px 2px rgba(255,233,171,1), 2px 2px 2px rgba(255,233,171,1), -2px -2px 2px rgba(255,233,171,1), -2px 2px 2px rgba(255,233,171,1), 2px -2px 2px rgba(255,233,171,1), 3px 4px 6px rgba(0,0,0,0.9);
	margin: 25px 20px 10px 20px;
	max-width: 100%;
	text-align: center;
}

h2 {
	font-family: 'zekton';
	margin: 20px;
	color: #399;
	font-size: 45px;
	line-height: 1;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.8);
	text-decoration: none;
}

h2 a {
	color: #399;
	font-size: 45px;
	line-height: 1;
	margin-top: 0px;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.8);
	text-decoration: none;
}

h2 a:hover {
	color: #399;
	font-size: 45px;
	line-height: 1;
	margin-top: 0px;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.8);
	text-decoration: underline;
}

h3 {
	font-family: 'zekton';
	margin: 15px 20px 10px 20px;
	color: #FF5500;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.8);
	font-size: 26px;
	text-decoration: none;
}

h3 a {
	color: #FF5500;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.8);
	font-size: 26px;
	text-decoration: none;
}

h3 a:hover {
	color: #FF5500;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.8);
	font-size: 26px;
	text-decoration: underline;
}

h4 {
	font-family: 'zekton';
	width: 100%;
	margin: 20px;
	padding-top: 10px;
	line-height: 0.1;
	color: #399;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.8);
}

/*Laptop/Desktop*/
@media only screen and (min-width: 1224px) {

h1, h1 a, h1 a:hover {
	font-size: 50px;
}

h2, h2 a, h2 a:hover {
	font-size: 45px;
}

h3, h3 a, h3 a:hover {
	font-size: 26px;
}

h4, h4 a, h4 a:hover {
	font-size: 20px;
}
}

@media only screen and (max-width: 1223px) {

h1, h1 a, h1 a:hover {
	font-size: 45px;
}

h2, h2 a, h2 a:hover {
	font-size: 40px;
}

h3, h3 a, h3 a:hover {
	font-size: 24px;
}

h4, h4 a, h4 a:hover {
	font-size: 18px;
}
}

@media only screen and (max-width: 767px) {

h1, h1 a, h1 a:hover {
	font-size: 40px;
}

h2, h2 a, h2 a:hover {
	font-size: 35px;
}

h3, h3 a, h3 a:hover {
	font-size: 22px;
}

h4, h4 a, h4 a:hover {
	font-size: 17px;
}
}

/* Styling for page header */
#header {
	display: block;
	width: 100%;
	position: relative;
	background-image: url(bg.jpg);
	background-attachment: local;
	-webkit-background-size: cover cover;
	background-size: cover;
	-webkit-box-shadow: 0px 0px 10px #111;
	box-shadow: 0px 0px 10px #111;
}

#header-content {
	height: 100%;
	display: block;
	margin-left: auto;
	margin-right: auto;
	max-width: 1210px;
}

