/* CONFIG -------------------- */
/* Fonts */
/* Colors */
/* 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 -------------------- */
@import url(https://fonts.googleapis.com/css?family=PT+Sans:400,700,400italic,700italic|PT+Sans+Narrow:400,700|Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800|Oswald:400,300,700);
.font-heading {
  font-family: 'Oswald', sans-serif;
  font-weight: normal;
}
.font-content {
  font-family: 'Open Sans', sans-serif;
}
.font-highlight {
  font-family: 'PT Sans Narrow', sans-serif;
}
/* MIXINS -------------------- */
.nav-yellow-box {
  color: #333333;
  background: url("/assets/img/nav-highlight-bg.png") top left repeat-y;
}
.nav-yellow-box:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  top: -2px;
  left: 0;
  background: url("/assets/img/nav-highlight-top.png") top left repeat-y;
}
.nav-yellow-box:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  bottom: -3px;
  left: 0;
  background: url("/assets/img/nav-highlight-bottom.png") top left repeat-y;
}
.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;
}
.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 {
  width: 214px;
  position: relative;
  margin-left: -3px;
}
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 a {
  font-family: 'Open Sans', sans-serif;
  display: block;
  text-decoration: none;
  color: #333333;
  font-size: 13px;
  padding: 10px;
}
nav ul li.parent a.parent-link {
  /* Main Nav - Current Page Item */
  padding-left: 30px;
}
nav ul li.parent a.parent-link.active {
  color: #333333;
  background: url("/assets/img/nav-highlight-bg.png") top left repeat-y;
}
nav ul li.parent a.parent-link.active:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  top: -2px;
  left: 0;
  background: url("/assets/img/nav-highlight-top.png") top left repeat-y;
}
nav ul li.parent a.parent-link.active:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  bottom: -3px;
  left: 0;
  background: url("/assets/img/nav-highlight-bottom.png") top left repeat-y;
}
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: #4d4d4d;
  color: #ffffff;
}
nav ul ul {
  position: relative;
  display: none;
  width: 250px;
  /* Level 2 Nav Items */
  /* Level 3+ Nav Items */
}
nav ul ul li a {
  font-size: 12px !important;
  color: #000000;
  font-family: 'Open Sans', sans-serif !important;
  padding: 10px 7px;
  border-bottom: 1px solid #eaeaea;
}
nav ul ul li a:hover {
  background: #4d4d4d;
  color: #ffffff;
}
nav ul ul li.sfHover > a,
nav ul ul li.sfHover > a {
  background-color: #333333 !important;
  color: #ffffff;
}
nav ul ul li:last-child a {
  border-bottom: 0;
}
nav ul ul ul {
  background: #9c9c9c !important;
}
nav ul ul ul li a {
  border-bottom: 1px solid #b7b7b7;
}
/*** ESSENTIAL STYLES ***/
.sf-menu {
  line-height: normal;
  position: relative;
  z-index: 100;
}
.sf-menu ul {
  list-style-type: none;
  position: absolute;
  top: -999em;
  margin: 0;
  padding: 0;
}
.sf-menu ul li {
  width: 100%;
}
.sf-menu li:hover {
  visibility: inherit;
  /* fixes IE7 'sticky bug' */
}
.sf-menu li {
  position: relative;
  z-index: 10;
}
.sf-menu li:hover ul,
.sf-menu li.sfHover ul {
  left: 0;
  top: 24px;
  /* match top ul list item height VAR */
  z-index: 11;
}
ul.sf-menu li:hover li ul,
ul.sf-menu li.sfHover li ul {
  top: -999em;
}
ul.sf-menu li li:hover ul,
ul.sf-menu li li.sfHover ul {
  left: 12em;
  /* match ul width */
  top: 2px;
}
ul.sf-menu li li:hover li ul,
ul.sf-menu li li.sfHover li ul {
  top: -999em;
}
ul.sf-menu li li li:hover ul,
ul.sf-menu li li li.sfHover ul {
  left: 12em;
  /* match ul width */
  top: 3px;
}
/*** DEMO SKIN ***/
.sf-menu li li {
  background-color: #FFC242;
  /*BACKGROUND COLOR VAR*/
  __background: transparent url(../assets/img/backgroundTexture.jpg) repeat;
  vertical-align: top;
}
.sf-menu li li a {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 12px;
  font-weight: normal;
  display: block;
  text-decoration: none;
  line-height: normal;
  padding: 5px;
  __border-bottom: 1px solid #C4333A;
  /*BORDER COLOR VAR*/
  color: #000000 /*ANCHOR CORLOR VAR*/;
}
.sf-menu li li a.first {
  border-top: 1px solid #c4333a;
}
.sf-menu li li a.submenu {
  padding-right: 26px;
}
.sf-menu li li:hover,
.sf-menu li li.sfHover,
__.sf-menu li li.parent.sfHover:hover a.submenu .sf-menu li li a:focus,
.sf-menu li li a:hover,
.sf-menu li li a:active {
  __background: #F7F7F7;
  /*HOVER BG COLOR VAR*/
  __color: #C4333A;
  /*HOVER FONT COLOR VAR*/
  outline: 0;
  __text-decoration: underline;
  font-weight: bold;
}
/*** arrows **/
.sf-menu a.sf-with-ul {
  padding-right: 2.25em;
  min-width: 1px;
  /* trigger IE7 hasLayout so spans position accurately */
}
.sf-sub-indicator {
  position: absolute;
  display: block;
  right: .75em;
  top: 1.05em;
  /* IE6 only */
  width: 10px;
  height: 10px;
  text-indent: -999em;
  overflow: hidden;
  background: url('../images/arrows-ffffff.png') no-repeat -10px -100px;
  /* 8-bit indexed alpha png. IE6 gets solid image only */
}
a > .sf-sub-indicator {
  /* give all except IE6 the correct values */
  top: .8em;
  background-position: 0 -100px;
  /* use translucent arrow for modern browsers*/
}
/* apply hovers to modern browsers */
a:focus > .sf-sub-indicator,
a:hover > .sf-sub-indicator,
a:active > .sf-sub-indicator,
li:hover > a > .sf-sub-indicator,
li.sfHover > a > .sf-sub-indicator {
  background-position: -10px -100px;
  /* arrow hovers for modern browsers*/
}
/* point right for anchors in subs */
.sf-menu ul .sf-sub-indicator {
  background-position: -10px 0;
}
.sf-menu ul a > .sf-sub-indicator {
  background-position: 0 0;
}
/* apply hovers to modern browsers */
.sf-menu ul a:focus > .sf-sub-indicator,
.sf-menu ul a:hover > .sf-sub-indicator,
.sf-menu ul a:active > .sf-sub-indicator,
.sf-menu ul li:hover > a > .sf-sub-indicator,
.sf-menu ul li.sfHover > a > .sf-sub-indicator {
  background-position: -10px 0;
  /* arrow hovers for modern browsers*/
}
/*** shadows for all but IE6 ***/
.sf-shadow ul {
  background: url('../images/shadow.png') no-repeat bottom right;
  padding: 0 8px 9px 0;
  -moz-border-radius-bottomleft: 17px;
  -moz-border-radius-topright: 17px;
  -webkit-border-top-right-radius: 17px;
  -webkit-border-bottom-left-radius: 17px;
}
.sf-shadow ul.sf-shadow-off {
  background: transparent;
}
/**** my addon *****/
.submenu {
  background: url('../images/arrow.png') no-repeat 150px center;
  cursor: default;
}
/*** adding sf-vertical in addition to sf-menu creates a vertical menu ***/
.sf-vertical li ul {
  border: 1px solid #c19100;
}
.sf-vertical,
.sf-vertical li {
  __width: 6em;
}
/* this lacks ul at the start of the selector, so the styles from the main CSS file override it where needed */
.sf-vertical li:hover ul,
.sf-vertical li.sfHover ul {
  left: 215px;
  /* match ul width */
  top: 0;
}
/*** alter arrow directions ***/
.sf-vertical .sf-sub-indicator {
  background-position: -10px 0;
}
/* IE6 gets solid image only */
.sf-vertical a > .sf-sub-indicator {
  background-position: 0 0;
}
/* use translucent arrow for modern browsers*/
/* hover arrow direction for modern browsers*/
.sf-vertical a:focus > .sf-sub-indicator,
.sf-vertical a:hover > .sf-sub-indicator,
.sf-vertical a:active > .sf-sub-indicator,
.sf-vertical li:hover > a > .sf-sub-indicator,
.sf-vertical li.sfHover > a > .sf-sub-indicator {
  background-position: -10px 0;
  /* arrow hovers for modern browsers*/
}
#mobile-toggle {
  display: none;
}
.wrapper {
  width: 910px;
}
#inner-content {
  height: 100%;
  width: 725px;
  position: relative;
}
#inner-content .wrapper {
  width: 675px;
  padding: 20px 0;
}
#main-wrapper {
  height: 1000px;
  position: relative;
  top: -3px;
  margin: auto;
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
}
#sidebar {
  position: relative;
  width: 235px;
  padding-left: 25px;
}
#sidebar #sidebar-inner {
  position: relative;
  height: 100%;
  background: #eee;
  border-right: 1px solid #dbdbdb;
  border-left: 1px solid #dbdbdb;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}
#sidebar #sidebar-inner #logo {
  position: relative;
  top: -30px;
  z-index: 20;
  margin: auto;
  text-align: center;
}
#sidebar #sidebar-inner nav {
  margin-bottom: 50px;
}
#sidebar #sidebar-inner #email-signup,
#sidebar #sidebar-inner #follow-us {
  width: 195px;
  position: relative;
  margin-left: -3px;
  margin-bottom: 30px;
}
#sidebar #sidebar-inner #email-signup aside,
#sidebar #sidebar-inner #follow-us aside {
  padding: 10px 20px 13px;
  font-size: 14px;
  color: #333333;
  font-family: 'PT Sans Narrow', sans-serif;
}
#sidebar #sidebar-inner #email-signup aside *,
#sidebar #sidebar-inner #follow-us aside * {
  cursor: pointer;
}
#sidebar #sidebar-inner #email-signup aside a,
#sidebar #sidebar-inner #follow-us aside a {
  color: #333333;
  font-family: 'PT Sans Narrow', sans-serif;
  text-decoration: none;
}
#sidebar #sidebar-inner #email-signup aside a:hover,
#sidebar #sidebar-inner #follow-us aside a:hover {
  text-decoration: underline;
}
#sidebar #sidebar-inner #email-signup aside img {
  float: left;
  margin-right: 15px;
}
#sidebar #sidebar-inner #follow-us aside {
  text-align: center;
}
#sidebar #sidebar-inner #follow-us aside div {
  margin-top: 5px;
}
#sidebar #sidebar-inner #follow-us aside div img {
  margin: 0 2px;
}

.alert-box{
  background-color: #ffc100;
  padding: 15px;
  margin-bottom: 20px;
}