/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
  background-color: #2682ab;
  color: #000000;
  font-family: Arial, Helvetica, sans-serif;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  text-align: center; /* Centers the page content container in IE 5 browsers. */
}

/*************************************************/
/* CHANGE TEXT SIZE BASED ON SCREEN SIZE */
@media (max-width: 790px) {
    html {
        font-size: 100%;
    }
}
@media (max-width: 726px) {
    html {
        font-size: 85%;
    }
}
@media (max-width: 465px) {
    html {
        font-size: 75%;
    }
}

/*************************************************/
/* STYLE ALL P AND HEADING TAGS */
p, h1, h2, h3, h4, h5, h6 {
	padding: 7px;
    margin: 0px;
}
/* P TAGS */
p {
	color: #000000;
	font-size: 1em;
}
/* PAGE HEADINGS */
h1 { 
  font-size: 1.9em;
  color: #2682ab;
  padding-bottom: 0;
}
/* SUBTITLES */
h2 {
  font-size: 1.1em;
  color: #e7c733;
  padding-top: 0;
}
h3 { 
  font-size: 1.3em;
  color: #2682ab;
}
h4 { 
	font-size: 1.3em;
}
h5 { 
  font-size: 1em;
  color: #2682ab;
}
/* FOOTER COPYRIGHT TEXT */
h6 { 
	font-size: .7em;
  text-align: center;
  color: #9b9b9b;
  font-weight: lighter;
  padding: 0 7px;
}

/*************************************************/
/* DEFAULT WEBSITE LINKS */
/* Sets the style for unvisited links. */
a,  a:link, a:visited, a:focus {
  color: #2682ab; text-decoration: underline; font-weight: normal !important;
}
/* Sets the style for links on mouseover. */
a:hover, a:active {
  color: #2682ab; text-decoration: none; font-weight: normal !important;
}

/* FOOTER H6 LINKS */
/* Sets the style for unvisited links. */
h6 a,  h6 a:link, h6 a:visited, h6 a:focus {
  color: #2682ab; text-decoration: none; display: inline-block;
}
/* Sets the style for links on mouseover. */
h6 a:hover, h6 a:active {
  color: #2682abb; text-decoration: underline; display: inline-block;
}

/*************************************************/
/* TOP NAVIGATION HIGHLIGH OPEN PAGE */
.current {
  color: #000000;
  background-color: transparent !important;
}

/*************************************************/
/* TEXT STYLES */
.body-text-small {
	font-size: .8em;
}
.inline-text {
	display: inline-block;
}
.white {
	color: #ffffff;
}
.black {
	color: #000000;
}
.blue {
	color: #2682ab;
}
.red-bold {
	font-size: 1em;
	font-weight: bold;
	color: #CC0033;
}
.separator {
	margin: 0 5px;
}
.list {
	text-indent:  -10px;
	padding: 7px 15px 7px 25px;
}
.centered {
	text-align: center !important;
}
.form {
	font-size: .8em;
	padding: 4px;
	color: #333333;
}
.side {
	text-align: left;
	padding: 0px;
    margin: 7px 5px 7px 8px;
}
.table {
	color: #000000;
	font-size: .95em;
	padding: 3px;
    margin: 3px;
	text-align: left;
}
.image-float-left {
	float: left;
	padding-right: 10px;
}
.image-float-right {
	float: right;
	padding-left: 10px;
}
@media (max-width: 400px) {
	.image-float-left, .image-float-right {
		float: none;
		padding: 0;
	}
}

/*************************************************/
/* ADDITIONAL STYLES */
hr {
	width: 90%; 
	text-align: center; 
	border: 0; 
	color: #dddddd; 
	background-color: #dddddd; 
	height: 1px;
}
.content-full-with-sidebar li, .content-full li
{
	font-size: 1em;
  padding: 2px 7px 2px 7px;
  margin: 0;
}

/*************************************************/

/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */

/* DIV SURROUNDING ENTIRE WEBSITE */
#fullPageWrapper {
  margin: 0 auto;
  text-align: left;
  width: 100%;
  position: relative;
}
#fullPage {
  margin: 0 auto;
  text-align: left;
  width: 100%;
  max-width: 840px;
  background-color: #ffffff;
  position: relative;
}

/*************************************************/
/* HEADER */
#headerWrapper {
  width: 100%;
  max-width: 840px;
  padding: 0px 0px 0px 0px;
  margin: 0 auto;
}
#header {
	width: 100%;
    padding: 0px 0px 0px 0px;
    margin: 1em auto 0 auto;
}

/*************************************************/
/* DIV TAG WRAPPING AROUND SIDEBAR, CONTENT, AND BOTTOM BOXES */
#contentWrapper {
  overflow: hidden;
  width: 100%;
  max-width: 840px;
  margin: 0 auto;
}

/*************************************************/
/* CONTENT DEFAULT */
#content {
  padding: 0;
  margin: 0 auto;
  max-width: 840px;
  overflow: hidden;
}
/* CONTENT SUB AREAS */
.content-full {
  padding: 0;
  margin: 0;
  width: 100%;
}
.content-half {
  padding: 0;
  margin: 0;
  width: 50%;
  float: left;
}
@media (max-width: 600px) {
    .content-half {
		float: none;
		width: 100%;
	}
}
.content-25-percent {
  padding: 0;
  margin: 0;
  width: 25%;
  float: left;
}
@media (max-width: 600px) {
    .content-25-percent {
		width: 50%;
	}
}
@media (max-width: 400px) {
    .content-25-percent {
		float: none;
		width: 100%;
	}
}
.content-40-percent {
  padding: 0;
  margin: 0;
  width: 40%;
  float: left;
}
.content-60-percent {
  padding: 0;
  margin: 0;
  width: 60%;
  float: left;
}
@media (max-width: 600px) {
    .content-40-percent, .content-60-percent {
		float: none;
		width: 100%;
	}
}
.content-30-percent {
  padding: 0;
  margin: 0;
  width: 30%;
  float: left;
}
.content-70-percent {
  padding: 0;
  margin: 0;
  width: 70%;
  float: left;
}
@media (max-width: 600px) {
    .content-30-percent, .content-70-percent {
		float: none;
		width: 100%;
	}
}
.content-33-percent {
  padding: 0;
  margin: 0;
  width: 33.3%;
  float: left;
}
@media (max-width: 600px) {
    .content-33-percent {
		float: none;
		width: 100%;
	}
}
.content-no-percentage {
  padding: 0;
  margin: 0;
  float: left;
}

/*************************************************/
/* CONTENT WITH SIDEBAR */
.content-full-with-sidebar {
  padding: 0;
  margin: 0 1%;
  width: 67%;
  float: left;
}
@media (max-width: 825px) { /* CONTENT AREA GETS SMALLER */
    .content-full-with-sidebar {
		width: 62%;
	}
}
@media (max-width: 710px) { /* CONTENT AREA GETS SMALLER */
    .content-full-with-sidebar {
		width: 58%;
	}
}
@media (max-width: 640px) { /* CONTENT AREA GETS SMALLER */
    .content-full-with-sidebar {
		width: 53%;
	}
}
@media (max-width: 575px) { /* SIDEBAR MOVES */
    .content-full-with-sidebar {
		padding: 2%;
		margin: 0;
		width: 96%;
	}
}

/*************************************************/
/* SIDEBAR */
.content-sidebar-right {
  padding: 0;
  margin: 0;
  width: 20%;
  min-width: 250px;
  float: right;
}
.content-sidebar-part-1, .content-sidebar-part-2 {
  padding: 0;
  margin: 0;
  width: 250px;
  max-width: 250px;
  display: inline-block;
  vertical-align: top;
}
@media (max-width: 575px) { /* LEFT SIDEBAR BECOMES SLIDE OUT NAVIGATION */
	.content-sidebar-left {
		display: none;
	}
}
@media (max-width: 575px) { /* SIDEBAR GOES TO BOTTOM */
    .content-sidebar-right {
		padding: 0;
		  margin: 0 auto;
		  width: 100%;
		  max-width: 840px;
		  background-color: #ffffff;
		  overflow: hidden;
		  text-align: center;
	}
	.content-sidebar-part-1, .content-sidebar-part-2 {
		  width: 200px;
		  max-width: 200px;
	}
	.content-sidebar-right #navbarside {
		display: none;
	}
}

/*************************************************/
/* SIDE NAVIGATION MENU */
div#navbarside {
	background-color: #2682ab;
	margin: 0px;
	padding: 0px;
	width: 100%;
	min-width: 250px;
}
div#navbarside ul {
	margin: 0px;
	padding: 0px;
	font-weight: bold;
	font-size: 15px;
	color: #e7c733;
	line-height: 30px;
	width: 100%;
	min-width: 250px;
	text-indent: 8px;
	border-bottom: solid 1px #e7c733;
}
div#navbarside li {
	list-style-type: none;
	display: block;
	margin: 0px;
	padding: 0px;
}
/* LINK STYLES */
div#navbarside li a:link, div#navbarside li a:visited {
	text-decoration: none;
	margin: 0px;
	padding: 0px;
	font-weight: bold !important;
	color: #e7c733;
	display: block;
	width: 100%;
	min-width: 250px;
}
/* ROLLOVER STYLES */
div#navbarside li a:hover, div#navbarside li a:active {
	text-decoration: none;
	margin: 0px;
	padding: 0px;
	font-weight: bold !important;
	color: #2682ab;
	background-color: #e7c733;
	display: block;
	width: 100%;
	min-width: 250px;
}

/*************************************************/
/* SLIDE IN/OUT NAVIGATION MENU */
.menu {
	width: 250px;
	height: 100%;
	position: absolute;
	left: -250px;
	transition: all .3s ease-in-out;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	z-index: 999;
}
.menu-icon {
	padding: 10px 20px;
	background: #e7c734;
	color: #2682ab;
	cursor: pointer;
	margin: 6px 6px 0 0;
	border-radius: 5px;
	position: absolute;
	top: 25px;
	right: 0;
	z-index: 999;
}
#menuToggle { display: none; }
#menuToggle:checked ~ .menu { position: absolute; left: 0; }
@media (min-width: 575px) { /* LEFT SIDEBAR BECOMES SLIDE OUT NAVIGATION */
	.menu-icon {
		display: none;
	}
}

/*************************************************/
/* PHOTO GALLERY PAGE */
.photo-gallery-wrapper {
	width: 100%;
	text-align: center;
}
.photo-gallery-thumb {
	width: 100px;
	padding: .5em;
	margin: .2em;
	display: inline-block;
	vertical-align: top;
	background-color: #ffffff;
	font-size: .7em;
}

/*************************************************/
/* FOOTER */

#footerWrapper {
  background-color: #ffffff;
  padding: 0px 0px 10px 0px;
  margin: 10px auto 0 auto;
  width: 100%;
  max-width: 840px;
  background-image: url(../images/footer-bg.jpg);
  background-repeat: no-repeat;
  background-size: contain;
  overflow: hidden;
}
#footerWrapper #footer {
  padding: 0px 0px 0px 0px;
  margin: 0 auto;
  max-width: 840px;
  width: 100%;
  overflow: hidden;
}
#insidefooter {
  max-width: 360px;
  float: right;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: center;
}
@media (max-width: 710px) {
	#footerWrapper {
		background-image: none;
	}
	#insidefooter {
	  float: none;
	  margin: 0 auto;
	}
	h6 {
		font-size: .9em;
	}
	#footer div, #footer h4 {
		text-align: center;
		padding-left: 0;
		margin: 0 auto;
	}
}