/**********************************************************************************************************************
 *  Rain CSS Coding Standards outlined at http://standards.mediarain.com/html-css
 *
 *      @Section: Applies to all page sections
 *      **Search for @ symbol or @Section: to search by category
 *
 *      Color Reference:
 *      - White: #FFFFFF - @white
 *      - Black: #000000 - @black
 *      - Gray: #333333 - @gray
 *
 *      Font-Family Reference:
 *      - Helvetica
 *      - Arial
 *      - Sans-Serif
 *
 *
***********************************************************************************************************************/
/**************************************************************************************************
 *
 *  @Section: Varaibles
 *
***************************************************************************************************/
/**************************************************************************************************
 *
 *  @Section: Mixins
 *
***************************************************************************************************/
.clear {
  content: '';
  display: block;
  clear: both;
  height: 0;
  line-height: 0;
}
/**************************************************************************************************
 *
 *  @Section: Imports
 *
***************************************************************************************************/
/**************************************************************************************************
 *
 *  @Section: Reset Default Browser Styles
 *
***************************************************************************************************/
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
*:focus {
  outline: none !important;
}
/**********************************************************************************************************************
 *  Rain CSS Coding Standards outlined at http://standards.mediarain.com/html-css
 *
 *      @Section: Applies to all page sections
 *      **Search for @ symbol or @Section: to search by category
 *
 *      Color Reference:
 *      - White: #FFFFFF - @white
 *      - Black: #000000 - @black
 *      - Gray: #333333 - @gray
 *
 *      Font-Family Reference:
 *      - Helvetica
 *      - Arial
 *      - Sans-Serif
 *
 *
***********************************************************************************************************************/
/**************************************************************************************************
 *
 *  @Section: Global Styles
 *
***************************************************************************************************/
* {
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
}
body {
  font-size: 1.6rem;
  line-height: 1.3;
  color: #000000;
  font-family: 'Sailec-Regular', Arial, Helvetica, Sans-Serif;
}
body.no-overflow {
  overflow: hidden;
}
a {
  text-decoration: none;
  display: inline-block;
}
a:hover {
  text-decoration: none;
}
a:focus,
a:active {
  text-decoration: none;
  color: inherit;
}
img {
  width: 100%;
  height: auto;
  display: block;
}
.browserupgrade {
  background: #bebebe;
  color: #000000;
  margin: 20px 0;
  padding: 20px 0;
}
.container {
  position: relative;
  width: 90%;
  max-width: 960px;
  margin: auto;
  padding: 50px 0;
}
@media only screen and (max-width: 767px) {
  .container {
    padding: 30px 0;
  }
}
section + section .container {
  padding-top: 0;
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
}
.overlay.visible {
  opacity: 1;
  visibility: visible;
}
.overlay .overlay-contents {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@-webkit-keyframes speakingAnimation {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes speakingAnimation {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.overlay .overlay-contents.listening .button-state .mic-button {
  background-position: -6px -289px;
}
.overlay .overlay-contents.listening .button-state .button-background {
  background-color: #003483;
  -webkit-animation: speakingAnimation 2s infinite;
  animation: speakingAnimation 2s infinite;
}
.overlay .overlay-contents.listening p {
  opacity: 0;
}
@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.overlay .overlay-contents.processing .button-state .mic-button {
  background-position: -6px -572px;
  -webkit-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
}
.overlay .overlay-contents.processing .button-state .button-background {
  background-color: #003483;
}
.overlay .overlay-contents.processing p {
  opacity: 0;
}
.overlay .overlay-contents .button-state {
  position: relative;
  cursor: pointer;
}
.overlay .overlay-contents .button-state .mic-button {
  position: relative;
  width: 271px;
  height: 271px;
  background-position: -6px -6px;
  background-image: url(/img/sprite-button.png);
  z-index: 5;
}
.overlay .overlay-contents .button-state .button-background {
  margin: auto;
  width: 125%;
  height: 125%;
  border-radius: 50%;
  opacity: 0.6;
  background-color: #2b486d;
  -webkit-filter: blur(30px);
  -moz-filter: blur(30px);
  -o-filter: blur(30px);
  -ms-filter: blur(30px);
  filter: blur(30px);
  z-index: 1;
  opacity: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transition: 0.5s 0.2s ease-out;
}
.overlay .overlay-contents p {
  position: relative;
  top: 60px;
  font-size: 1.8rem;
  opacity: 1;
  color: #FFFFFF;
  transition: all 0.2s ease-out;
}
.btn-container {
  position: relative;
  text-align: center;
}
.btn-container.right {
  text-align: right;
}
.btn-container .btn {
  display: inline-block;
}
.btn {
  padding: 15px 20px 12px;
  cursor: pointer;
  text-transform: uppercase;
  border: none;
  box-shadow: none;
  border-radius: 3px;
  font-size: 1.6rem;
  line-height: 1;
  color: #FFFFFF;
  font-family: 'Sailec-Regular', Arial, Helvetica, Sans-Serif;
  transition: all 0.2s ease-out;
}
.btn.blue {
  background-color: #4980eb;
}
@media only screen and (min-width: 767px) {
  .btn.blue:active {
    background-color: #5688E8;
    color: #FFFFFF;
  }
  .btn.blue:hover {
    background-color: #2864D4;
  }
}
.tan-bar {
  width: 100%;
  height: 30px;
  opacity: 0.05;
  background-image: linear-gradient(93deg, #393838, #454141 23%, #090909);
}
.section-intro h1 {
  font-size: 6rem;
  margin-bottom: 30px;
  font-family: 'Sailec-Thin', Arial, Helvetica, Sans-Serif;
}
@media only screen and (max-width: 767px) {
  .section-intro h1 {
    font-size: 5rem;
    line-height: 1;
  }
}
.section-intro p {
  margin-bottom: 40px;
  line-height: 1.8;
}
.section-intro p:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .form-box .container {
    width: 100%;
  }
}
.form-box .form-container {
  padding: 40px;
  background-color: #f3f3f3;
}
@media only screen and (max-width: 767px) {
  .form-box .form-container {
    padding: 5%;
  }
}
form .form-row {
  position: relative;
  margin-bottom: 30px;
}
form .form-row:after {
  content: '';
  display: block;
  clear: both;
  height: 0;
  line-height: 0;
}
form .form-row:last-child {
  margin-bottom: 0;
}
form .form-row .btn-container {
  text-align: right;
}
@media only screen and (max-width: 767px) {
  form .form-row .btn-container {
    text-align: center;
  }
}
form .form-row label,
form .form-row input,
form .form-row textarea {
  float: left;
}
@media only screen and (max-width: 767px) {
  form .form-row label,
  form .form-row input,
  form .form-row textarea {
    float: none;
  }
}
form .form-row label {
  width: 112px;
  line-height: 3.4rem;
  margin-right: 10px;
  text-align: right;
  font-family: 'Sailec-Medium', Arial, Helvetica, Sans-Serif;
}
@media only screen and (max-width: 767px) {
  form .form-row label {
    display: block;
    width: 100%;
    text-align: left;
    line-height: 1;
    margin: 0 0 15px;
  }
}
form .form-row label.error {
  white-space: nowrap;
  line-height: 1;
  font-size: 1.2rem;
  text-transform: none;
  color: #cb4b30;
  position: absolute;
  margin: 0;
  bottom: -18px;
  left: 122px;
  cursor: default;
  float: none;
  letter-spacing: 0;
}
form .form-row label.error:before,
form .form-row label.error:after {
  display: none !important;
}
@media only screen and (max-width: 767px) {
  form .form-row label.error {
    left: 0;
  }
}
form .form-row input,
form .form-row textarea {
  width: calc(100% - 122px);
}
@media only screen and (max-width: 767px) {
  form .form-row input,
  form .form-row textarea {
    width: 100%;
  }
}
form input,
form textarea {
  width: 100%;
  font-size: 1.6rem;
  line-height: 1;
  padding: 7px 10px;
  background-color: #ffffff;
  box-shadow: -1px -1px 0 0 #c7c7c7;
  border: solid 1px #e7e7e7;
}
form input.error,
form textarea.error {
  box-shadow: 0 0 10px #cb4b30;
}
form textarea {
  height: 150px;
  resize: none;
}
/**************************************************************************************************
 *
 *  Header Nav Styles
 *
***************************************************************************************************/
header {
  width: 100%;
  position: relative;
  transition: all 0.6s cubic-bezier(0.7, 0.01, 0.3, 1);
}
header.open {
  background-color: #000000;
}
header.open .nav .nav-logo img.nav-default {
  opacity: 0;
}
header.open .nav .nav-logo img.nav-open {
  opacity: 1;
}
header .container {
  padding: 0;
}
header .nav {
  height: 67px;
  padding: 18px 0;
}
header .nav .nav-logo img {
  position: absolute;
  display: block;
  left: 5%;
  top: 18px;
  max-width: 178px;
  transition: all 0.6s cubic-bezier(0.7, 0.01, 0.3, 1);
}
header .nav .nav-logo img.nav-default {
  opacity: 1;
}
header .nav .nav-logo img.nav-open {
  opacity: 0;
}
header .nav .nav-container {
  position: absolute;
  right: 5%;
  top: 0;
  bottom: 0;
  margin: auto;
}
header .nav .nav-container ul {
  padding: 23px 0;
}
header .nav .nav-container li {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
}
header .nav .nav-container li:last-child {
  margin-right: 0;
}
header .nav .nav-container li a {
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #2565e1;
  transition: all 0.2s ease-out;
}
header .nav .nav-container li a.active:after {
  content: '';
  display: block;
  position: absolute;
  bottom: -30px;
  width: 100%;
  height: 3px;
}
header .nav .nav-container li a:hover {
  color: #000000;
}
header .nav .nav-container li .btn {
  color: #FFFFFF;
}
header .nav .nav-container li .btn.active:after {
  display: none;
}
header .nav .nav-container li .btn:hover {
  color: #FFFFFF;
}
header .nav .mobile-btn,
header .nav .mobile-schedule {
  display: none;
}
/**************************************************************************************************
 *
 *  Header Nav Media Queries
 *
***************************************************************************************************/
@media only screen and (max-width: 767px) {
  header.open .nav .nav-container {
    visibility: visible;
  }
  header.open .nav .nav-container ul {
    visibility: visible;
    opacity: 1;
    -webkit-transform: perspective(600px) rotateX(0deg);
    transform: perspective(600px) rotateX(0deg);
  }
  header.open .nav .mobile-btn .bar:first-child {
    -webkit-transform: rotate(45deg) translate3d(3px, 6px, 0);
    -ms-transform: rotate(45deg) translate3d(3px, 6px, 0);
    transform: rotate(45deg) translate3d(3px, 6px, 0);
  }
  header.open .nav .mobile-btn .bar:nth-child(2) {
    opacity: 0;
  }
  header.open .nav .mobile-btn .bar:last-child {
    -webkit-transform: rotate(-45deg) translate3d(3px, -6px, 0);
    -ms-transform: rotate(-45deg) translate3d(3px, -6px, 0);
    transform: rotate(-45deg) translate3d(3px, -6px, 0);
  }
  header .nav {
    position: relative;
  }
  header .nav .nav-container {
    position: absolute;
    visibility: hidden;
    top: 100%;
    left: 0;
    width: 100%;
    background: none;
    z-index: 50;
    transition: all 0.6s cubic-bezier(0.7, 0.01, 0.3, 1);
  }
  header .nav .nav-container ul {
    position: relative;
    visibility: hidden;
    width: 100%;
    height: calc(100vh - 67px);
    padding: 0 0 2vh;
    opacity: 0;
    background-color: #000000;
    transition: all 0.6s cubic-bezier(0.7, 0.01, 0.3, 1);
  }
  header .nav .nav-container ul li {
    display: block;
    width: 100%;
    margin: 0 0 20px;
  }
  header .nav .nav-container ul li:last-child {
    margin-bottom: 0;
  }
  header .nav .nav-container ul li a {
    width: 100%;
    padding: 2vh;
    font-size: 2.4rem;
    color: #FFFFFF;
    font-family: 'Sailec-Thin', Arial, Helvetica, Sans-Serif;
  }
  header .nav .nav-container ul li a:hover {
    color: #FFFFFF;
  }
  header .nav .nav-container ul li a.active {
    color: #FFFFFF;
    background-color: rgba(203, 75, 48, 0.8);
  }
  header .nav .nav-container ul li a.active:after {
    display: none;
  }
  header .nav .nav-container ul li .btn {
    max-width: 95%;
    margin: auto;
  }
  header .nav .mobile-btn {
    display: block;
    position: relative;
    float: right;
    right: 5%;
    top: 8px;
    z-index: 10;
    cursor: pointer;
  }
  header .nav .mobile-btn .bar {
    display: block;
    background-color: #bebebe;
    width: 25px;
    height: 3px;
    margin-top: 3px;
    transition: all 0.2s ease-out;
  }
  header .nav .mobile-btn .bar:first-child {
    margin-top: 0;
  }
  header .nav .mobile-schedule {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    text-align: left;
    line-height: 1.2;
  }
}
/**************************************************************************************************
 *
 *  Footer Nav Styles
 *
***************************************************************************************************/
footer {
  position: relative;
}
footer .container {
  padding: 0 0 40px;
}
footer .disclaimer {
  display: inline-block;
  font-size: 1.2rem;
  padding: 7px 0;
  font-family: 'Sailec-Thin', Arial, Helvetica, Sans-Serif;
}
footer .footer-logo {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 128px;
}
@media only screen and (max-width: 767px) {
  footer .footer-logo {
    position: relative;
  }
}
/**************************************************************************************************
 *
 *  @Section: Home Page Styles
 *
***************************************************************************************************/
.info-slider {
  position: relative;
  background-image: linear-gradient(137deg, #393838, #454141 23%, #090909);
}
.info-slider .slider {
  height: calc(100vh - 67px);
}
@media only screen and (max-width: 767px) {
  .info-slider .slider {
    height: inherit;
    margin-bottom: 20px;
    background-image: linear-gradient(163deg, #393838, #454141 23%, #090909);
  }
}
.info-slider .slider:after {
  content: '';
  position: absolute;
  bottom: 0;
  display: block;
  width: 100%;
  height: 40px;
  background-color: #FFFFFF;
}
@media only screen and (max-width: 767px) {
  .info-slider .slider:after {
    bottom: -20px;
  }
}
.info-slider .slider li {
  height: calc(100vh - 67px);
  padding: 40px;
}
@media only screen and (max-width: 767px) {
  .info-slider .slider li {
    height: inherit;
    padding: 40px 40px 0;
  }
}
.info-slider .slide-text {
  max-width: 45%;
}
@media only screen and (max-width: 767px) {
  .info-slider .slide-text {
    max-width: 100%;
  }
}
.info-slider .slide-text h1,
.info-slider .slide-text p {
  color: #FFFFFF;
}
.info-slider .slide-text h1 {
  font-size: 6rem;
  line-height: 1;
  margin-bottom: 30px;
  font-family: 'Sailec-Thin', Arial, Helvetica, Sans-Serif;
}
@media only screen and (max-width: 767px) {
  .info-slider .slide-text h1 {
    font-size: 5rem;
  }
}
.info-slider .slide-text p {
  font-size: 1.6rem;
  line-height: 1.8;
}
.info-slider .foreground-image {
  max-width: 37%;
  max-height: 90%;
  position: absolute;
  right: 9%;
  bottom: 0;
}
@media only screen and (max-width: 767px) {
  .info-slider .foreground-image {
    position: relative;
    left: inherit;
    right: inherit;
    max-width: 100%;
    margin: auto;
  }
}
.info-slider .foreground-image.echo {
  bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .info-slider .foreground-image.echo {
    bottom: 0;
    max-width: 80%;
  }
}
.info-slider .foreground-image.phone {
  right: 3%;
  max-width: 42%;
  z-index: 5;
}
@media only screen and (max-width: 767px) {
  .info-slider .foreground-image.phone {
    max-width: 100%;
    bottom: 0;
    right: inherit;
  }
}
.info-slider .foreground-image img {
  width: auto;
  max-width: 100%;
}
.info-slider .try-alexa {
  cursor: pointer;
  position: absolute;
  bottom: 80px;
  left: 5%;
  text-align: center;
  transition: all 0.2s ease-out;
}
@media only screen and (max-width: 767px) {
  .info-slider .try-alexa {
    position: relative;
    bottom: inherit;
    left: inherit;
    padding: 40px 0;
    margin: 0 0 40px;
    background-image: linear-gradient(129deg, #393838, #454141 23%, #090909);
  }
}
.info-slider .try-alexa img {
  width: 99px;
  margin: 0 auto 20px;
}
.info-slider .try-alexa p {
  color: #FFFFFF;
}
.try-reverb h2 {
  font-size: 4.8rem;
  margin-bottom: 20px;
  font-family: 'Sailec-Thin', Arial, Helvetica, Sans-Serif;
}
.try-reverb p {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 20px;
}
.download-links ul:after {
  content: '';
  display: block;
  clear: both;
  height: 0;
  line-height: 0;
}
.download-links ul li {
  width: 32%;
  margin-right: 2%;
  float: left;
}
@media only screen and (max-width: 767px) {
  .download-links ul li {
    float: none;
    width: 100%;
    margin: 0 0 20px;
  }
  .download-links ul li:last-child {
    margin: 0;
  }
}
.download-links ul li img {
  width: auto;
  max-width: 100%;
  margin: auto;
  margin-bottom: 20px;
}
.download-links ul li a {
  display: block;
  text-align: center;
}
.download-links ul li a img {
  max-width: 150px;
}
.download-links ul li:last-child {
  margin-right: 0;
}
/**************************************************************************************************
 *
 *  @Section: Legal Page Styles
 *
***************************************************************************************************/
.legal-copy h1 {
  font-size: 6rem;
  margin-bottom: 30px;
  font-family: 'Sailec-Thin', Arial, Helvetica, Sans-Serif;
}
@media only screen and (max-width: 767px) {
  .legal-copy h1 {
    font-size: 5rem;
    line-height: 1;
  }
}
.legal-copy p {
  margin-bottom: 40px;
  line-height: 1.8;
}
.legal-copy p:last-child {
  margin-bottom: 0;
}
/**
 * BxSlider v4.1.2 - Fully loaded, responsive content slider
 * http://bxslider.com
 *
 * Written by: Steven Wanderski, 2014
 * http://stevenwanderski.com
 * (while drinking Belgian ales and listening to jazz)
 *
 * CEO and founder of bxCreative, LTD
 * http://bxcreative.com
 */
/** RESET AND LAYOUT
===================================*/
.bx-wrapper {
  position: relative;
  padding: 0;
  *zoom: 1;
}
.bx-wrapper img {
  max-width: 100%;
  display: block;
}
/** THEME
===================================*/
.bx-wrapper .bx-viewport {
  /*fix other elements on the page moving (on Chrome)*/
  -webkit-transform: translatez(0);
  -ms-transform: translatez(0);
  transform: translatez(0);
}
.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
  position: absolute;
  bottom: 80px;
  right: 40px;
}
@media only screen and (max-width: 767px) {
  .bx-wrapper .bx-pager,
  .bx-wrapper .bx-controls-auto {
    bottom: 40px;
    right: 20px;
  }
}
/* LOADER */
.bx-wrapper .bx-loading {
  min-height: 50px;
  background: url(../img/bx_loader.gif) center center no-repeat #fff;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2000;
}
/* PAGER */
.bx-wrapper .bx-pager {
  text-align: center;
  color: #666;
}
.bx-wrapper .bx-pager .bx-pager-item,
.bx-wrapper .bx-controls-auto .bx-controls-auto-item {
  display: inline-block;
  *zoom: 1;
  *display: inline;
}
.bx-wrapper .bx-pager.bx-default-pager a {
  background-color: rgba(215, 215, 215, 0.5);
  text-indent: -9999px;
  display: block;
  width: 13px;
  height: 13px;
  margin: 0 5px;
  outline: 0;
  border-radius: 50%;
}
.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active {
  background-color: rgba(215, 215, 215, 0.8);
}
/* DIRECTION CONTROLS (NEXT / PREV) */
.bx-wrapper .bx-prev {
  left: 10px;
}
.bx-wrapper .bx-next {
  right: 10px;
}
.bx-wrapper .bx-prev:hover {
  background-position: 0 0;
}
.bx-wrapper .bx-next:hover {
  background-position: -43px 0;
}
.bx-wrapper .bx-controls-direction a {
  position: absolute;
  top: 50%;
  margin-top: -16px;
  outline: 0;
  width: 32px;
  height: 32px;
  text-indent: -9999px;
  z-index: 9999;
}
.bx-wrapper .bx-controls-direction a.disabled {
  display: none;
}
/* AUTO CONTROLS (START / STOP) */
.bx-wrapper .bx-controls-auto {
  text-align: center;
}
.bx-wrapper .bx-controls-auto .bx-start {
  display: block;
  text-indent: -9999px;
  width: 10px;
  height: 11px;
  outline: 0;
  background: url(images/controls.png) -86px -11px no-repeat;
  margin: 0 3px;
}
.bx-wrapper .bx-controls-auto .bx-start:hover,
.bx-wrapper .bx-controls-auto .bx-start.active {
  background-position: -86px 0;
}
.bx-wrapper .bx-controls-auto .bx-stop {
  display: block;
  text-indent: -9999px;
  width: 9px;
  height: 11px;
  outline: 0;
  background: url(images/controls.png) -86px -44px no-repeat;
  margin: 0 3px;
}
.bx-wrapper .bx-controls-auto .bx-stop:hover,
.bx-wrapper .bx-controls-auto .bx-stop.active {
  background-position: -86px -33px;
}
/* PAGER WITH AUTO-CONTROLS HYBRID LAYOUT */
.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
  text-align: left;
  width: 80%;
}
.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
  right: 0;
  width: 35px;
}
/* IMAGE CAPTIONS */
.bx-wrapper .bx-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #666\9;
  background: rgba(80, 80, 80, 0.75);
  width: 100%;
}
.bx-wrapper .bx-caption span {
  color: #fff;
  font-family: Arial;
  display: block;
  font-size: .85em;
  padding: 10px;
}
