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

/**************************
  			TOC
	*Global
	*Structure
	*Sidebar
	*Navigation
	*Footer
	*Forms
	*Misc

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

/**************************
 		Global
**************************/

*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
  background: #6dadad url(../img/main-bg.gif);
  margin: 0 auto;
  padding: 0;
  color: #000;
}

ul,
ol,
dl {
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Georgia, "Times New Roman", Times, serif;
  text-transform: uppercase;
  padding-right: 15px;
  padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
}

p {
  font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
  padding: 0 15px;
  margin: 15px 10px;
}

h1 {
  color: #6eadad;
  font-size: 18px;
  margin: 1.3em 0 0.5em;
}
h2 {
  color: #58595b;
  font-size: 15px;
  margin: 1.3em 0 0.5em;
}
h3 {
  color: #e7e2cf;
  font-size: 13px;
  margin: 1.3em 0 0.5em;
}
h4 {
  color: #58595b;
  text-transform: none;
  margin: 8px 0 0;
}

img,
object,
embed {
  height: auto;
  max-width: 100%;
}

a img {
  border: none;
}

a:link {
  color: #4ca998;
  text-decoration: underline;
}
a:visited {
  color: #4ca998;
  text-decoration: underline;
}
a:hover,
a:active,
a:focus {
  text-decoration: none;
}

/**************************
		STRUCTURE
**************************/
.container {
  max-width: 980px;
  min-width: 320px;
  background: #fff;
  margin: 0 auto;
  clear: both;
}

.header {
  background: #ffffff;
  padding: 15px;
}

.content {
  padding: 0 2% 10px;
  width: 100%;
  clear: left;
}

.content ul,
.content ol {
  padding: 0 15px 15px 40px;
}

/**************************
		ROUTINE STUFF
**************************/
.space-80 {
  padding: 80px 0;
}

.space-40 {
  padding: 40px 0;
}

.space-30 {
  padding: 30px 0;
}

.space-20 {
  padding: 20px 0;
}

.space-15 {
  padding: 15px 0;
}

.space-10 {
  padding: 10px 0;
}

.space-5 {
  padding: 5px 0;
}

.space-1 {
  padding: 1px 0;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.caps {
  text-transform: uppercase;
}

.nomargin {
  margin: 0;
}

.nomargin-top {
  margin-top: 0;
}

.nomargin-bottom {
  margin-bottom: 0;
}

ul.bullet {
  list-style: none;
  margin: 0;
  padding: 0 0 10px 20px;
}

.bullet li {
  font-size: 16px;
  line-height: 24px;
  position: relative;
  padding-left: 18px;
}

.bullet li:before {
  content: "•";
  font-size: 12px;
  padding: 0 10px 0 0;
  color: #6eadad;
  position: absolute;
  top: 0;
  left: 0;
}

/**************************
		SIDEBAR
**************************/

.sidebar1 {
  float: right;
  width: 220px;
  max-width: 40%;
  background-color: #e7e2cf;
  padding-bottom: 0px;
  margin: 0 0 0 3%;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
  height: 100%;
}

.sidebar1 .banner {
  background-color: #c0e3dd;
  padding: 10px;
  color: #58595b;
  text-transform: uppercase;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}

.sidebar1 p {
  font-size: 12px;
  padding: 0;
}

.sidebar1 img {
  margin: 0 auto;
  display: block;
}

/************************
       MAIN NAV
*************************/
#nav {
  background-color: #515151;
  color: #fff;
  border-bottom: 3px solid #fbd323;
  padding: 0;
  font: Verdana, Geneva, sans-serif;
  min-height: 43px;
}

#nav ul {
  margin-left: 0;
  padding-left: 0;
  display: inline;
  display: flex;
  justify-content: space-around;
}

#nav ul li {
  list-style: none;
  display: inline;
  font-size: 11px;
}

#nav ul a,
#nav ul a:visited {
  text-decoration: none;
  float: left;
  padding: 10px 3px;
  background-color: #515151;
  color: #ffffff;
  border-bottom: 1px;
  border-bottom-color: #515151;
  border-bottom-style: solid;
}

#nav ul a:hover,
#nav ul a:active,
#nav ul a:focus {
  background-color: #898989;
}

.select {
  background-color: #666;
  padding: 10px 3px;
  display: inline;
  float: left;
}

.first {
  margin-left: 45px;
}

#subnav li {
  margin: 0 0 15px 15px;
  list-style: none;
}

/**************************
 		Footer
**************************/
.footer {
  padding: 10px 0;
  background: #666;
  position: relative; /* this gives IE6 hasLayout to properly clear */
  clear: both;
}

.footer p {
  font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
  color: #fff;
  text-align: center;
}

.footer a {
  color: #fff;
}

/**************************
  		Forms
**************************/

.contact-form-container {
  width: 450px;
  max-width: 100%;
  font-size: 0.9em;
  padding: 0 25px;
  margin: 0 0 40px 0;
}

div.checkboxes {
  float: left;
  margin: 15px 0 0 0px;
}

div.row-contact {
  clear: left;
  padding-top: 11px;
}

div.row-contact span.label-contact {
  float: left;
  margin-right: 5px;
  width: 120px;
}

div.row-contact span.formw-contact {
  text-align: left;
  margin: 0 0 0 10px;
}

textarea {
  max-width: 100%;
}

textarea,
input[type="text"] {
  outline: 1px solid #6eadad;
}

input[type="submit"] {
  background: #eeeeee;
}

input[type="reset"] {
  background: #eeeeee;
}

/************************
         MISC
*************************/
.fltrt {
  float: right;
  margin-left: 8px;
}
.fltlft {
  float: left;
  margin-right: 8px;
}
.clearfloat {
  clear: both;
  height: 0;
  font-size: 1px;
  line-height: 0px;
}

.caption {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 16px;
  color: #666;
  text-align: center;
}

.caption-spacer {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
}

.quote {
  color: #532317;
  font-size: 18px;
}

.pink {
  color: #f39;
}

.red {
  color: #f00;
  font-weight: bold;
}

.phone {
  text-align: right;
  color: #6eadad;
  margin: 0;
}

/* Video */
/* line 505, scss/_base.scss */
.video-container {
  position: relative;
  padding-bottom: 41.5%;
  padding-top: 1.875rem;
  height: 0;
  overflow: hidden;
}

/* line 513, scss/_base.scss */
.video-container iframe,
.video-container object,
.video-container embed,
.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
