@import url(http://fonts.googleapis.com/css?family=Lato:100,300,400,700,900,100italic,300italic,400italic,700italic,900italic);
/* CONFIG -------------------- */
/* Fonts */
/* Widths */
/* Nav (Parent Items) */
/* Darkened by 15 on each level */
/* On Touch / On Dropdown */
/* Current Page */
/* Sub-Nav (Non-parent items)*/
/* Darkened by 20% on each level */
/* Reduced by 1px on each level */
/* FONTS -------------------- */
.font-heading {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
}
.font-content {
  font-family: 'Lato', sans-serif;
}
/* MIXINS -------------------- */
.text-selection-off,
.text-selection-off * {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: moz-none;
  -ms-user-select: none;
  user-select: none;
}
.text-selection-on,
.text-selection-on * {
  -webkit-touch-callout: auto !important;
  -webkit-user-select: auto !important;
  -khtml-user-select: auto !important;
  -moz-user-select: moz-all !important;
  -ms-user-select: auto !important;
  user-select: auto !important;
}
.transition-all {
  -webkit-transition: all 0.1s linear;
  -o-transition: all 0.1s linear;
  -moz-transition: all 0.1s linear;
  -ms-transition: all 0.1s linear;
  -kthtml-transition: all 0.1s linear;
  transition: all 0.1s linear;
}
.background-cover {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.hover-opacity {
  -webkit-transition: all 0.1s linear;
  -o-transition: all 0.1s linear;
  -moz-transition: all 0.1s linear;
  -ms-transition: all 0.1s linear;
  -kthtml-transition: all 0.1s linear;
  transition: all 0.1s linear;
}
.hover-opacity:hover {
  opacity: 0.7;
}
.inline-block {
  display: inline-block;
  vertical-align: middle;
}
.pre-wrap {
  white-space: -moz-pre-wrap;
  /* Mozilla */
  white-space: -hp-pre-wrap;
  /* HP printers */
  white-space: -o-pre-wrap;
  /* Opera 7 */
  white-space: -pre-wrap;
  /* Opera 4-6 */
  white-space: pre-wrap;
  /* CSS 2.1 */
  white-space: pre-line;
  /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word;
  /* IE */
}
.break-word {
  -ms-word-break: break-all;
  word-break: break-all;
  word-break: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}
a.block-link {
  display: block;
  width: 100%;
  height: 100%;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
/* NAVIGATION --------------- */
nav {
  display: inline-block;
}
nav * {
  -webkit-transition: all 0.1s linear;
  -o-transition: all 0.1s linear;
  -moz-transition: all 0.1s linear;
  -ms-transition: all 0.1s linear;
  -kthtml-transition: all 0.1s linear;
  transition: all 0.1s linear;
}
nav ul {
  list-style: none;
  /* Main Nav Items */
}
nav ul li {
  /* Main Nav - Active Item */
}
nav ul li.parent {
  display: inline-block;
  vertical-align: middle;
}
nav ul li.parent a {
  font-family: 'Lato', sans-serif;
  display: block;
  text-decoration: none;
  color: #b4a76a;
  font-size: 20px;
  padding: 10px;
}
nav ul li.parent a.parent-link {
  /* Main Nav - Current Page Item */
  text-shadow: 1px 1px 1px #000;
}
nav ul li.parent a.parent-link.active {
  background: transparent;
  color: #e8e8e8;
}
nav ul li:hover,
nav ul li.sfHover {
  -webkit-transition: none;
  transition: none;
}
nav ul li:hover > a,
nav ul li.sfHover > a,
nav ul li:hover > a,
nav ul li.sfHover > a {
  background-color: rgba(0, 0, 0, 0.5);
  color: #ffffff;
}
nav ul ul {
  position: relative;
  display: none;
  width: 200px;
  background-color: rgba(0, 0, 0, 0.9);
  /* Level 2 Nav Items */
  /* Level 3+ Nav Items */
}
nav ul ul li a {
  font-size: 14px !important;
  color: #000000;
  font-family: 'Lato', sans-serif !important;
  padding: 10px 7px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}
nav ul ul li a:hover {
  background: rgba(0, 0, 0, 0.5);
  color: #ffffff;
}
nav ul ul li.sfHover > a,
nav ul ul li.sfHover > a {
  background-color: rgba(0, 0, 0, 0.5) !important;
  color: #ffffff;
}
nav ul ul li:last-child a {
  border-bottom: 0;
}
nav ul ul ul {
  background: #7d7243 !important;
}
nav ul ul ul li a {
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}
/* Superfish - Essential Styles */
.sf-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
.sf-menu li {
  position: relative;
}
.sf-menu ul {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  z-index: 99;
}
.sf-menu > li {
  float: left;
}
.sf-menu li:hover > ul,
.sf-menu li.sfHover > ul {
  display: block;
}
.sf-menu a {
  display: block;
  position: relative;
}
.sf-menu ul ul {
  top: 0;
  left: 100%;
}
/* Has-Children (Sideways Arrow) */
.sf-arrows ul .sf-with-ul:after {
  content: '';
  position: absolute;
  top: 50%;
  right: .5em;
  margin-top: -3px;
  height: 0;
  width: 0;
  border: 5px solid transparent;
  border-top-color: #b4a76a;
  margin-top: -5px;
  margin-right: -3px;
  border-color: transparent;
  border-left-color: #b4a76a;
}
.sf-arrows > li > .sf-with-ul:focus:after,
.sf-arrows > li:hover > .sf-with-ul:after,
.sf-arrows > .sfHover > .sf-with-ul:after {
  border-top-color: #b4a76a;
}
.sf-arrows ul li > .sf-with-ul:focus:after,
.sf-arrows ul li:hover > .sf-with-ul:after,
.sf-arrows ul .sfHover > .sf-with-ul:after {
  border-left-color: #ffffff;
}
#mobile-toggle {
  display: none;
}
.wrapper {
  width: 1060px;
}
html.cms-frontend,
body.cms-frontend,
.cms-frontend .wrapper {
  min-width: 1060px;
}
#sidebar-badge {
  position: fixed;
  left: 0;
  top: 280px;
  width: 73px;
  height: 132px;
  padding-top: 10px;
  z-index: 9;
  text-align: center;
  font-size: 18px;
  color: #fff;
  background: url("/assets/img/side-bar-badge-background.png") no-repeat;
  cursor: pointer;
}
#sidebar-badge * {
  cursor: pointer;
}
#sidebar-badge img {
  width: 40px;
}
#sidebar-badge label small {
  font-size: 14px;
}
header {
  height: 740px;
  background-position: bottom center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
header #header-mask {
  position: absolute;
  top: 0;
  left: 0;
  height: 740px;
  width: 100%;
  background: url("/assets/img/header-mask.png") top center no-repeat;
  z-index: 1;
}
header #header-sparkle {
  position: absolute;
  top: 0;
  left: 0;
  height: 740px;
  width: 100%;
  background: url("/assets/img/header-sparkle.png") top center no-repeat;
  z-index: 2;
}
header #header-top-bar {
  position: relative;
  z-index: 4;
  background-color: #1f1f1f;
  height: 62px;
}
header #header-top-bar #header-events-link {
  /*position: relative;
  float: left;
  width: 196px;
  height: 62px;
  background: url("/assets/img/top-bar-badge-background.png") no-repeat;
  color: #fff;*/
  position: relative;
  float: left;
  width: auto;
  padding-right: 50px;
  height: 62px;
  background-image: url("/assets/img/top-bar-badge-background.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  color: #fff;
}
header #header-top-bar #header-events-link a {
  text-decoration: none;
  color: #fff;
  display: block;
  width: 100%;
  height: 100%;
  padding: 3px 17px;
}
header #header-top-bar #header-events-link a * {
  cursor: pointer;
}
header #header-top-bar #header-events-link a span {
  display: inline-block;
  vertical-align: middle;
  width: 18px;
  height: 18px;
}
header #header-top-bar #header-events-link a label {
  display: inline-block;
  vertical-align: middle;
  margin-left: 12px;
  font-weight: bold;
  font-size: 24px;
}
header #header-top-bar #header-events-link a label small {
  font-weight: normal;
  font-size: 16px;
}
header #header-top-bar #header-icons {
  position: relative;
  float: right;
  padding-top: 10px;
  padding-right: 15px;
}
header #header-top-bar #header-icons ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
header #header-top-bar #header-icons ul li {
  float: left;
  padding: 0 10px;
}
header #header-navigation {
  position: relative;
  z-index: 45;
  text-align: center;
  padding-top: 93px;
}
header #header-navigation nav .multi-nav {
  display: inline-block;
  vertical-align: middle;
}
header #header-navigation nav #nav-left {
  width: 350px;
  text-align: left;
}
header #header-navigation nav #nav-left li.parent a {
  padding: 19px  21px;
}
header #header-navigation nav #nav-middle {
  width: 360px;
}
header #header-navigation nav #nav-middle a {
  display: block;
  width: 100%;
  height: 100%;
}
header #header-navigation nav #nav-middle li:hover,
header #header-navigation nav #nav-middle li.sfHover {
  -webkit-transition: none;
  transition: none;
}
header #header-navigation nav #nav-middle li:hover > a,
header #header-navigation nav #nav-middle li.sfHover > a,
header #header-navigation nav #nav-middle li:hover > a,
header #header-navigation nav #nav-middle li.sfHover > a {
  background-color: transparent !important;
}
header #header-navigation nav #nav-right {
  width: 350px;
  text-align: right;
}
header #header-navigation nav #nav-right li.parent a {
  padding: 19px  17px;
}
header #header-navigation nav #nav-right li.parent ul {
  text-align: left;
}
#home-text {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center center;
}
#home-text #ht-inner {
  padding-top: 90px;
}
#home-text #ht-inner #ht-text {
  margin: 30px 0;
}
#content-inner {
  margin-top: -425px;
}
#content-inner.home {
  margin-top: -350px;
}
.feature-buckets {
  width: 1245px;
  min-width: 1245px;
}
#church-locator #cl-form {
  margin-top: -200px;
  width: 333px;
}
