/* 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 {
  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;
}
#content p, #content-no-sidebar p {
	text-align: justify;
}
/* PAGE HEADINGS */
h1 { 
  font-size: 1.3em;
  color: #013305;
	font-family: "Times New Roman", Times, serif;
	font-weight: normal;
}
/* SUBTITLES */
h2 {
  font-size: 1.3em;
  color: #013305;
	font-family: "Times New Roman", Times, serif;
	font-weight: normal;
}
.subtitle {
	font-size: 1.15em;
}
/* SIDEBAR HEADINGS */
h3 { 
  font-size: 1.1em;
  color: #cbc29e;
  text-align: center;
  text-transform: uppercase;
	font-family: "Times New Roman", Times, serif;
}
/* FOOTER LOCATIONS HEADER */
h4 { 
    color: #011e02;
	font-size: 1.4em;
	font-family: "Times New Roman", Times, serif;
	text-align: center;
	padding: 20px 7px;
}
/* FOOTER LINE SEPARATORS IN BETWEEN LINKS */
h5 { 
  font-size: .9em;
  color: #c4c2b8;
  text-align: center;
}
/* FOOTER COPYRIGHT TEXT */
h6 { 
	font-size: .9em;
  font-weight: normal;
  color: #1e1e1e;
  text-align: center;
}

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

/* FOOTER LOCATIONS LINKS */
/* Sets the style for unvisited links. */
#footerLocations a,  #footerLocation a:link, #footerLocation a:visited, #footerLocation a:focus {
  color: #565555; text-decoration: none;
}
/* Sets the style for links on mouseover. */
#footerLocation a:hover, #footerLocation a:active {
  color: #565555; text-decoration: underline;
}

/* FOOTER H5 LINKS */
/* Sets the style for unvisited links. */
h5 a,  h5 a:link, h5 a:visited, h5 a:focus {
  color: #a39157; text-decoration: none; margin: 0 10px; display: inline-block;
}
/* Sets the style for links on mouseover. */
h5 a:hover, h5 a:active {
  color: #a39157; text-decoration: underline; margin: 0 10px; display: inline-block;
}

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

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

/*************************************************/
/* TEXT STYLES */
.body-text-small {
	font-size: .8em;
}
.read-more {
	font-size: .8em;
	 display: inline-block;
	 text-transform: uppercase;
}
.white {
	color: #ffffff;
}
.black {
	color: #000000;
}
.separator {
	margin: 0 5px;
}
.red-bold {
	font-size: 1em;
	font-weight: bold;
	color: #CC0033;
}
.office-title {
	text-transform: uppercase;
	font-family: "Times New Roman", Times, serif;
	color: #011e02;
}
.list {
	text-indent:  -10px;
	padding: 7px 15px 7px 25px;
}
.centered {
	text-align: center !important;
}
.formtable p {
	padding: 5px;
	font-size: .9em;
	text-transform: uppercase;
}
input, textarea {
	background-color: #f4f3ed;
	border: none;
	resize: none;
	padding: 5px;
}
.formtable input, .formtable textarea, .formtable select {
	border: none;
	resize: none;
}
.padding-top-no-bottom {
	padding: 7px 7px 0px 7px;
}
.padding-bottom-no-top {
	padding: 0px 7px 7px 7px;
}
.form {
	font-size: .8em;
	padding: 4px;
}
.button {
	background-color: #937f44;
	color: #ffffff;
	padding: 5px 25px;
	font-size: 1.1em;
	border: none;
}

/*************************************************/
/* ADDITIONAL STYLES */
hr {
	width: 99%; 
	text-align: center; 
	border: 0; 
	color: #dddddd; 
	background-color: #dddddd; 
	height: 1px;
}
#content li, #content-no-sidebar 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%;
   background-color: #d8d5c0;
}

/*************************************************/
/* TOP NAVIGATION */
#topNavigationWrapper {
	background-color: #021a00;
  width: 100%;
  padding: 0;
  margin: 0 auto;
  border-bottom: solid 1px #354533;
  font-family: "Times New Roman", Times, serif;
}
#topNavigation {
  max-width: 1003px;
  padding: 0;
  margin: 0 auto;
  position: relative;
  min-height: 45px;
}

/*************************************************/
/* HEADER */
#headerWrapper {
  background-color: #011f02;
  width: 100%;
  padding: 0px 0px 0px 0px;
  margin: 0;
}
#header {
  width: 100%;
  max-width: 1003px;
  padding: 0px 0px 0px 0px;
  margin: 0 auto;
}

/* SEE NAV.CSS FOR ADDITIONAL TOP NAVIGATION CSS */

/*************************************************/
/* DIV TAG WRAPPING AROUND SIDEBAR, CONTENT, AND BOTTOM BOXES */
#contentWrapper {
  overflow: hidden;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
}

/*************************************************/
/* CONTENT DEFAULT */
#content {
  background-color: #ffffff;
  margin: 0 auto;
  max-width: 1003px;
  overflow: hidden;
  background-image: url(../images/bg-content.jpg);
  background-repeat: repeat-y;
}
@media (max-width: 680px) { /* WHEN SIDEBAR DISAPPEARS, REMOVE BACKGROUND IMAGE */
    #content {
		background-image: none;
	}
}
#content-no-sidebar {
  background-color: #ffffff;
  margin: 0 auto;
  max-width: 1003px;
  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: 620px) { /* CONTENT AREA GETS SMALLER AT 900 WIDE */
    .content-half {
	  padding: 0;
	  margin: 0;
	  width: 100%;
	  float: none;
	}
}
.content-25-percent {
  padding: 0;
  margin: 0;
  width: 25%;
  float: left;
}
@media (max-width: 660px) { /* CONTENT AREA GETS SMALLER AT 900 WIDE */
    .content-25-percent {
	  padding: 0;
	  margin: 0;
	  width: 50%;
	  float: left;
	}
}
@media (max-width: 340px) { /* CONTENT AREA GETS SMALLER AT 900 WIDE */
    .content-25-percent {
	  padding: 0;
	  margin: 0;
	  width: 100%;
	  float: none;
	}
}
.content-40-percent {
  padding: 0;
  margin: 0;
  width: 40%;
  float: left;
}
.content-60-percent {
  padding: 0;
  margin: 0;
  width: 60%;
  float: left;
}
.content-30-percent {
  padding: 0;
  margin: 0;
  width: 30%;
  float: left;
}
.content-33-percent {
  padding: 0;
  margin: 0;
  width: 33%;
  float: left;
}
@media (max-width: 660px) { /* CONTENT AREA GETS SMALLER AT 900 WIDE */
    .content-33-percent {
	  padding: 0;
	  margin: 0;
	  width: 50%;
	  float: left;
	}
}
@media (max-width: 340px) { /* CONTENT AREA GETS SMALLER AT 900 WIDE */
    .content-33-percent {
	  padding: 0;
	  margin: 0;
	  width: 100%;
	  float: none;
	}
}
.content-70-percent {
  padding: 0;
  margin: 0;
  width: 70%;
  float: left;
}
.content-no-percentage {
  padding: 0;
  margin: 0;
  float: left;
}
.content-padding {
	padding: 2%;
	margin: 0;
}

/*************************************************/
/* CONTENT WITH SIDEBAR */
.content-full-with-sidebar {
  padding: 0;
  margin: 0;
  width: 66%;
  float: left;
}
@media (max-width: 900px) { /* CONTENT AREA GETS SMALLER AT 900 WIDE */
     .content-full-with-sidebar {
		width: 56%;
	}
}
@media (max-width: 680px) { /* SIDEBAR DISAPPEARS AT 680 WIDE */
    .content-full-with-sidebar {
		padding: 2%;
		margin: 0;
		width: 96%;
	}
}

/*************************************************/
/* SIDEBAR */
.content-sidebar {
  padding: 10px;
  width: 270px;
  float: left;
  background-color: #f4f3ed;
}
.content-sidebar-bottom {
  padding: 0;
  margin: 0 auto;
  width: 100%;
  max-width: 1003px;
  background-color: #f4f3ed;
  display: none;
  overflow: hidden;
  text-align: center; 
}
.content-sidebar-part-1, .content-sidebar-part-2 {
  padding: 0;
  margin: 0;
  width: 270px;
  display: inline-block;
  vertical-align: top;
  text-align: center;
}
@media (max-width: 680px) { /* SIDEBAR DISAPPEARS AT 680 WIDE */
    .content-sidebar {
		display: none;
	}
	.content-sidebar-bottom {
		display: block;
	}
}

/*************************************************/
/* SIDE NAVIGATION MENU */
div#navbarside {
	margin: 0px;
	padding: 0px;
	width: 100%;
	min-width: 270px;
}
div#navbarside ul {
	margin: 0px;
	padding: 0px;
	font-size: 12px;
	text-transform: uppercase;
	text-align: left;
	color: #232323;
	line-height: 20px;
	width: 100%;
	min-width: 270px;
	border-bottom: solid 2px #f4f3ed;
}
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;
	color: #232323;
	background-color: #ebeae4;
	display: block;
	width: 100%;
	min-width: 270px;
}
/* ROLLOVER STYLES */
div#navbarside li a:hover, div#navbarside li a:active {
	text-decoration: none;
	margin: 0px;
	padding: 0px;
	color: #aaaaaa;
	background-color: #ebeae4;
	display: block;
	width: 100%;
	min-width: 270px;
}

/*************************************************/
/* SIDEBAR BOXES */
.sidebarBox {
	background-color: #ffffff;
	width: 270px;
	border: solid #aeab95 1px;
	margin: 0px;
	padding: 0px;
	margin-top: 10px;
	text-align: left;
}
.sidebarBoxHeader {
	background-color: #011e02;
	width: 100%;
}

/*************************************************/
/* CONTACT FORM TABLE */
.contact-form {
	min-width: 360px !important;
}

/*************************************************/
/* FULL PAGE WIDTH MAP */
#mapWrapper {
	background-color: #eeeeee;
  width: 100%;
  padding: 0;
  margin: 0;
}
@media (max-width: 600px) {
    #mapWrapper iframe {
		height: 200px !important;
	}
}

/*************************************************/
/* BOTTOM LOCATIONS BAR */
#footerLocationsWrapper {
  background-color: #e0dcca;
  padding: 0px 0px 0px 0px;
  margin: 0px 0px 0px 0px;
  width: 100%;
}
#footerLocations {
  padding: 0px 0px 0px 0px;
  margin: 0 auto;
  max-width: 1003px;
  width: 100%;
}

/*************************************************/
/* BOTTOM FOOTER LOGO */
#footerLogoWrapper {
  background-color: #001c04;
  padding: 0px 0px 0px 0px;
  margin: 0px 0px 0px 0px;
  width: 100%;
}
#footerLogo {
  padding: 0px 0px 0px 0px;
  margin: 0 auto;
  max-width: 1003px;
  width: 100%;
}
.locationBox {
	padding: 10px 10px 20px 10px;
  margin: 0px 0px 0px 0px;
}

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

#footerWrapper {
  background-color: #ffffff;
  padding: 0px 0px 0px 0px;
  margin: 0px 0px 0px 0px;
  width: 100%;
}
#footerWrapper #footer {
  padding: 0px 0px 0px 0px;
  margin: 0 auto;
  max-width: 1003px;
  width: 100%;
}