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

/*FAQ PAGE*/
.faq hr{
  border:0;
  height: 1px;
  background: #CCCCCC;
  margin: 2.5em 0
}

.faq dl dt{
  font-size: 1.25em;
  line-height: 1.65em;
  font-weight: 600;
  padding-left: 30px;
}

.faq dl dt:before{
  color: #1E97D4;
  content: 'Q. \0000a0';
  font-weight: bold;
  margin-left: -30px;
}

.faq dl dd{
  font-size: 1.125em;
  line-height: 1.675em;
  margin-top: 0.2em;
  font-weight: 400;
  margin-left:30px;
}

/*FAQ SEARCH BAR*/

/*http://speckyboy.com/2012/02/15/how-to-build-a-stylish-css3-search-box/*/

/* Form wrapper styling */
.form-wrapper {
  width: 75%;
  margin: 0 auto;
  height: 50px;
  background: #fff;
}

/* Form text input */
.form-wrapper input {
  height: 52px;
  width: calc(100% - 65px);
  padding: 0 0 0 1em;
  float: left;
  font-size: 1.125em;
  font-family: 'Source Sans Pro', sans-serif;
  background: #fff;
  border: solid 2px #cccccc;
  transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -webkit-transition: all .25s ease-in-out;
}

.form-wrapper input:focus {
  outline: 0;
  background: #fff;
  border: solid 2px #1e98d5;
}

.form-wrapper input::-webkit-input-placeholder {
  color: #999;
  font-weight: normal;
}

.form-wrapper input:-moz-placeholder {
  color: #999;
  font-weight: normal;
}

.form-wrapper input:-ms-input-placeholder {
  color: #999;
  font-weight: normal;
  font-style: italic;
}

/* Form submit button */
.form-wrapper button {
  overflow: visible;
  position: relative;
  border: 0;
  padding: 0;
  cursor: pointer;
  height: 52px;
  width: 65px;
  font-size: 0.75em;
  color: #fff;
  text-transform: uppercase;
  background: #66bc29;
  transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -webkit-transition: all .25s ease-in-out;
}


.form-wrapper button:hover{
  background: #55a51c;
}

.form-wrapper button:active,
.form-wrapper button:focus{
  background: #66bc29;
  outline: 0;
}


.form-wrapper button::-moz-focus-inner { /* remove extra button spacing for Mozilla Firefox */
  border: 0;
  padding: 0;
}
/*END OF FAQ PAGE*/


@media screen and (max-width: 50em){
  .form-wrapper {
    width: 100%;
  }
}


