/*
 jQuery.mmenu CSS
 */
/*
 jQuery.mmenu panels CSS
 */
.mm-menu.mm-horizontal > .mm-panel {
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease; }

.mm-menu .mm-hidden {
  display: none; }

.mm-wrapper {
  overflow-x: hidden;
  position: relative; }

.mm-menu, .mm-menu > .mm-panel {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0; }

.mm-menu {
  background: inherit;
  display: block;
  overflow: hidden;
  padding: 0; }
  .mm-menu > .mm-panel {
    background: inherit;
    -webkit-overflow-scrolling: touch;
    overflow: scroll;
    overflow-x: hidden;
    overflow-y: auto;
    box-sizing: border-box;
    padding: 20px;
    -webkit-transform: translate(100%, 0);
    -moz-transform: translate(100%, 0);
    -ms-transform: translate(100%, 0);
    -o-transform: translate(100%, 0);
    transform: translate(100%, 0); }
    .mm-menu > .mm-panel.mm-opened {
      -webkit-transform: translate(0%, 0);
      -moz-transform: translate(0%, 0);
      -ms-transform: translate(0%, 0);
      -o-transform: translate(0%, 0);
      transform: translate(0%, 0); }
    .mm-menu > .mm-panel.mm-subopened {
      -webkit-transform: translate(-30%, 0);
      -moz-transform: translate(-30%, 0);
      -ms-transform: translate(-30%, 0);
      -o-transform: translate(-30%, 0);
      transform: translate(-30%, 0); }
    .mm-menu > .mm-panel.mm-highest {
      z-index: 1; }
  .mm-menu .mm-list {
    padding: 20px 0; }
  .mm-menu > .mm-list {
    padding-bottom: 0; }
    .mm-menu > .mm-list:after {
      content: '';
      display: block;
      height: 40px; }

.mm-panel > .mm-list {
  margin-left: -20px;
  margin-right: -20px; }
  .mm-panel > .mm-list:first-child {
    padding-top: 0; }

.mm-list, .mm-list > li {
  list-style: none;
  display: block;
  padding: 0;
  margin: 0; }

.mm-list {
  font: inherit;
  font-size: 14px; }
  .mm-list a, .mm-list a:hover {
    text-decoration: none; }
  .mm-list > li {
    position: relative; }
    .mm-list > li > a, .mm-list > li > span {
      text-overflow: ellipsis;
      white-space: nowrap;
      overflow: hidden;
      color: inherit;
      line-height: 20px;
      display: block;
      padding: 10px 10px 10px 20px;
      margin: 0; }
  .mm-list > li:not(.mm-subtitle):not(.mm-label):not(.mm-search):not(.mm-noresults):after {
    content: '';
    border-bottom-width: 1px;
    border-bottom-style: solid;
    display: block;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0; }
    .mm-list > li:not(.mm-subtitle):not(.mm-label):not(.mm-search):not(.mm-noresults):after {
      width: auto;
      margin-left: 20px;
      position: relative;
      left: auto; }
  .mm-list a.mm-subopen {
    background: rgba(3, 2, 1, 0);
    width: 40px;
    height: 100%;
    padding: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2; }
    .mm-list a.mm-subopen:before {
      content: '';
      border-left-width: 1px;
      border-left-style: solid;
      display: block;
      height: 100%;
      position: absolute;
      left: 0;
      top: 0; }
    .mm-list a.mm-subopen.mm-fullsubopen {
      width: 100%; }
      .mm-list a.mm-subopen.mm-fullsubopen:before {
        border-left: none; }
    .mm-list a.mm-subopen + a, .mm-list a.mm-subopen + span {
      padding-right: 5px;
      margin-right: 40px; }
  .mm-list > li.mm-selected > a.mm-subopen {
    background: transparent; }
    .mm-list > li.mm-selected > a.mm-fullsubopen + a, .mm-list > li.mm-selected > a.mm-fullsubopen + span {
      padding-right: 45px;
      margin-right: 0; }
  .mm-list a.mm-subclose {
    text-indent: 20px;
    padding-top: 30px;
    margin-top: -20px; }
  .mm-list > li.mm-label {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    font-size: 10px;
    text-transform: uppercase;
    text-indent: 20px;
    line-height: 25px;
    padding-right: 5px; }
  .mm-list > li.mm-spacer {
    padding-top: 40px; }
    .mm-list > li.mm-spacer.mm-label {
      padding-top: 25px; }
  .mm-list a.mm-subopen:after, .mm-list a.mm-subclose:before {
    content: '';
    border: 2px solid transparent;
    display: inline-block;
    width: 7px;
    height: 7px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin-bottom: -5px;
    position: absolute;
    bottom: 50%; }
  .mm-list a.mm-subopen:after {
    border-top: none;
    border-left: none;
    right: 18px; }
  .mm-list a.mm-subclose:before {
    border-right: none;
    border-bottom: none;
    margin-bottom: -15px;
    left: 22px; }

.mm-menu.mm-vertical .mm-list .mm-panel {
  display: none;
  padding: 10px 0 10px 10px; }
  .mm-menu.mm-vertical .mm-list .mm-panel li:last-child:after {
    border-color: transparent; }
  .mm-menu.mm-vertical .mm-list li.mm-opened > .mm-panel {
    display: block; }
  .mm-menu.mm-vertical .mm-list > li > a.mm-subopen {
    height: 40px; }
    .mm-menu.mm-vertical .mm-list > li > a.mm-subopen:after {
      top: 16px;
      bottom: auto; }
  .mm-menu.mm-vertical .mm-list > li.mm-opened > a.mm-subopen:after {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg); }
  .mm-menu.mm-vertical .mm-list > li.mm-label > a.mm-subopen {
    height: 25px; }

html.mm-opened .mm-page {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); }

.mm-menu {
  background: #107792;
  color: #fff; }
  .mm-menu .mm-list > li:after {
    border-color: rgba(255, 255, 255, 0.15); }
  .mm-menu .mm-list > li > a.mm-subclose {
    background: rgba(0, 0, 0, 0.1);
    color: rgba(255, 255, 255, 0.6); }
    .mm-menu .mm-list > li > a.mm-subopen:after, .mm-menu .mm-list > li > a.mm-subclose:before {
      border-color: rgba(255, 255, 255, 0.6); }
    .mm-menu .mm-list > li > a.mm-subopen:before {
      border-color: rgba(255, 255, 255, 0.15); }
  .mm-menu .mm-list > li.mm-selected > a:not(.mm-subopen), .mm-menu .mm-list > li.mm-selected > span {
    background: rgba(0, 0, 0, 0.1); }
  .mm-menu .mm-list > li.mm-label {
    background: rgba(255, 255, 255, 0.05); }
  .mm-menu.mm-vertical .mm-list li.mm-opened > a.mm-subopen, .mm-menu.mm-vertical .mm-list li.mm-opened > ul {
    background: rgba(255, 255, 255, 0.05); }
/*
 jQuery.mmenu offcanvas addon CSS
 */
.mm-page {
  box-sizing: border-box;
  position: relative; }

.mm-slideout {
  -webkit-transition: -webkit-transform 0.4s ease;
  -ms-transition: -ms-transform 0.4s ease;
  transition: transform 0.4s ease; }

html.mm-opened {
  overflow: hidden;
  position: relative; }
  html.mm-opened body {
    overflow: hidden; }

html.mm-background .mm-page {
  background: inherit; }

#mm-blocker {
  background: rgba(3, 2, 1, 0);
  display: none;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999999; }

html.mm-opened #mm-blocker, html.mm-blocking #mm-blocker {
  display: block; }

.mm-menu.mm-offcanvas {
  display: none;
  position: fixed; }
  .mm-menu.mm-current {
    display: block; }

.mm-menu {
  width: 80%;
  min-width: 140px;
  max-width: 440px; }

html.mm-opening .mm-slideout {
  -webkit-transform: translate(80%, 0);
  -moz-transform: translate(80%, 0);
  -ms-transform: translate(80%, 0);
  -o-transform: translate(80%, 0);
  transform: translate(80%, 0); }

@media all and (max-width: 175px) {
  html.mm-opening .mm-slideout {
    -webkit-transform: translate(140px, 0);
    -moz-transform: translate(140px, 0);
    -ms-transform: translate(140px, 0);
    -o-transform: translate(140px, 0);
    transform: translate(140px, 0); } }

@media all and (min-width: 550px) {
  html.mm-opening .mm-slideout {
    -webkit-transform: translate(440px, 0);
    -moz-transform: translate(440px, 0);
    -ms-transform: translate(440px, 0);
    -o-transform: translate(440px, 0);
    transform: translate(440px, 0); } }
/*
 jQuery.mmenu buttonbars addon CSS
 */
.mm-buttonbar {
  border: 1px solid transparent;
  border-radius: 5px;
  display: block;
  line-height: 20px;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: relative;
  text-align: center; }
  .mm-buttonbar:after {
    content: '';
    display: block;
    clear: both; }
  .mm-buttonbar > * {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    border-left: 1px solid transparent;
    box-sizing: border-box;
    display: block;
    float: left;
    height: 100%;
    width: 100%; }
  .mm-buttonbar > a {
    text-decoration: none; }
  .mm-buttonbar > input {
    left: -1000px;
    position: absolute;
    top: -1000px; }
  .mm-buttonbar > input:checked + label {
    border-color: transparent !important; }
  .mm-buttonbar > *:first-child, .mm-buttonbar > input:first-child + * {
    border-left: none; }
  .mm-buttonbar.mm-buttonbar-2 > * {
    width: 50%; }
  .mm-buttonbar.mm-buttonbar-3 > * {
    width: 33.33%; }
  .mm-buttonbar.mm-buttonbar-4 > * {
    width: 25%; }
  .mm-buttonbar.mm-buttonbar-5 > * {
    width: 20%; }

.mm-header .mm-buttonbar {
  margin-left: -30px;
  margin-right: -30px;
  margin-top: 20px; }

.mm-footer .mm-buttonbar {
  border: none;
  border-radius: none;
  line-height: 100px;
  margin: -10px -10px 0 -20px; }
  .mm-footer .mm-buttonbar > * {
    border-left: none; }

.mm-list > li > .mm-buttonbar {
  margin: 10px 20px; }

.mm-menu .mm-buttonbar {
  border-color: #fff;
  background: #107792; }
  .mm-menu .mm-buttonbar > * {
    border-color: #fff; }
  .mm-menu .mm-buttonbar > input:checked + label {
    background: #fff;
    color: #107792; }
/*
 jQuery.mmenu counters addon CSS
 */
em.mm-counter {
  display: block;
  font: inherit;
  font-size: 14px;
  font-style: normal;
  line-height: 20px;
  margin-top: -10px;
  position: absolute;
  right: 40px;
  text-indent: 0;
  top: 50%; }
  em.mm-counter + a.mm-subopen {
    padding-left: 40px; }
  em.mm-counter + a.mm-subopen + a, em.mm-counter + a.mm-subopen + span {
    margin-right: 80px; }
  em.mm-counter + a.mm-fullsubopen {
    padding-left: 0; }

.mm-vertical em.mm-counter {
  margin-top: 0;
  top: 12px; }

.mm-nosubresults > em.mm-counter {
  display: none; }

.mm-menu em.mm-counter {
  color: rgba(255, 255, 255, 0.6); }
/*
 jQuery.mmenu dragOpen addon CSS
 */
html.mm-opened.mm-dragging .mm-menu, html.mm-opened.mm-dragging .mm-page, html.mm-opened.mm-dragging .mm-fixed-top, html.mm-opened.mm-dragging .mm-fixed-bottom, html.mm-opened.mm-dragging #mm-blocker {
  -webkit-transition-duration: 0s;
  -moz-transition-duration: 0s;
  -ms-transition-duration: 0s;
  -o-transition-duration: 0s;
  transition-duration: 0s; }
/*
 jQuery.mmenu footer addon CSS
 */
.mm-footer {
  background: inherit;
  border-top: 1px solid transparent;
  bottom: 0;
  box-sizing: border-box;
  height: 100px;
  left: 0;
  line-height: 80px;
  padding: 10px 10px 0 20px;
  position: absolute;
  text-align: center;
  width: 100%;
  z-index: 2; }

.mm-menu.mm-hasfooter > .mm-panel:after {
  height: 140px; }

.mm-menu .mm-footer {
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6); }
/*
 jQuery.mmenu header addon CSS
 */
.mm-header {
  background: inherit;
  border-bottom: 1px solid transparent;
  box-sizing: border-box;
  height: 60px;
  left: 0;
  line-height: 20px;
  padding: 0 50px;
  position: absolute;
  text-align: center;
  top: 0;
  width: 100%;
  z-index: 2; }
  .mm-header .mm-title, .mm-header .mm-prev, .mm-header .mm-next, .mm-header .mm-close {
    padding-top: 30px; }
  .mm-header .mm-title {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
    position: relative;
    width: 100%; }
  .mm-header .mm-prev, .mm-header .mm-next, .mm-header .mm-close {
    box-sizing: border-box;
    display: block;
    height: 100%;
    min-width: 10px;
    position: absolute;
    text-decoration: none;
    top: 0;
    z-index: 1; }
  .mm-header .mm-prev {
    left: 0;
    padding-left: 20px;
    padding-right: 10px; }
  .mm-header .mm-next, .mm-header .mm-close {
    padding-left: 10px;
    padding-right: 20px;
    right: 0; }
  .mm-header [href].mm-prev:before, .mm-header [href].mm-next:after {
    content: '';
    border: 2px solid transparent;
    display: inline-block;
    width: 7px;
    height: 7px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg); }
  .mm-header [href].mm-prev:before {
    border-right: none;
    border-bottom: none;
    margin-left: 2px;
    margin-right: 5px; }
  .mm-header [href].mm-next:after, .mm-header [href].mm-close:after {
    margin-left: 5px;
    margin-right: -2px; }
  .mm-header [href].mm-next:after {
    border-top: none;
    border-left: none; }
  .mm-header [href].mm-close:after {
    content: 'x'; }

.mm-menu.mm-hassearch .mm-header {
  height: 50px;
  top: 50px; }
  .mm-menu.mm-hassearch .mm-header .mm-title, .mm-menu.mm-hassearch .mm-header .mm-prev, .mm-menu.mm-hassearch .mm-header .mm-next, .mm-menu.mm-hassearch .mm-header .mm-close {
    padding-top: 20px; }

.mm-menu.mm-hasheader li.mm-subtitle {
  display: none; }
  .mm-menu.mm-hasheader > .mm-panel {
    padding-top: 80px; }
  .mm-menu.mm-hasheader > .mm-panel.mm-list {
    padding-top: 60px; }
  .mm-menu.mm-hasheader > .mm-panel > .mm-list:first-child {
    margin-top: -20px; }
  .mm-menu.mm-hasheader.mm-hassearch > .mm-panel {
    padding-top: 120px; }
  .mm-menu.mm-hasheader.mm-hassearch > .mm-panel.mm-list {
    padding-top: 100px; }

.mm-menu .mm-header {
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6); }
  .mm-menu .mm-header .mm-prev:before, .mm-menu .mm-header .mm-next:after, .mm-menu .mm-header .mm-close:after {
    border-color: rgba(255, 255, 255, 0.6); }
/*
 jQuery.mmenu labels addon CSS
 */
.mm-list li.mm-label > span {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  line-height: 25px;
  padding: 0; }
  .mm-list li.mm-label.mm-opened a.mm-subopen:after {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg); }
  .mm-list li.mm-collapsed:not( .mm-uncollapsed) {
    display: none; }

.mm-menu.mm-vertical .mm-list > li.mm-label > a.mm-subopen:after {
  top: 8.5px; }

.mm-menu .mm-list li.mm-label > div > div {
  background: rgba(255, 255, 255, 0.05); }
/*
 jQuery.mmenu searchfield addon CSS
 */
.mm-search, .mm-search input {
  box-sizing: border-box; }

.mm-list > li.mm-search {
  margin-top: -20px;
  padding: 10px; }
  .mm-list > li.mm-subtitle + li.mm-search {
    margin-top: 0; }

div.mm-panel > div.mm-search {
  padding: 0 0 10px 0; }

.mm-menu.mm-hasheader .mm-list > li.mm-search {
  margin-top: 0; }

.mm-menu > .mm-search {
  background: inherit;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2; }

.mm-search {
  padding: 10px; }
  .mm-search input {
    border: none;
    border-radius: 30px;
    display: block;
    font: inherit;
    font-size: 14px;
    height: 30px;
    line-height: 30px;
    margin: 0;
    outline: none;
    padding: 0 10px;
    width: 100%; }
  .mm-search input::-ms-clear {
    display: none; }

.mm-menu .mm-noresultsmsg {
  display: none;
  font-size: 21px;
  padding: 60px 0;
  text-align: center; }
  .mm-menu .mm-noresultsmsg:after {
    border: none !important; }

.mm-noresults .mm-noresultsmsg {
  display: block; }

.mm-menu li.mm-nosubresults > a.mm-subopen {
  display: none; }
  .mm-menu li.mm-nosubresults > a.mm-subopen + a, .mm-menu li.mm-nosubresults > a.mm-subopen + span {
    padding-right: 10px; }
  .mm-menu.mm-hassearch > .mm-panel {
    padding-top: 70px; }
    .mm-menu.mm-hassearch > .mm-panel > .mm-list:first-child {
      margin-top: -20px; }
  .mm-menu.mm-hasheader > .mm-panel > div.mm-search:first-child {
    margin-top: -10px; }
    .mm-menu.mm-hasheader > .mm-panel > div.mm-search:first-child + .mm-list {
      padding-top: 0; }

.mm-menu .mm-search input {
  background: rgba(255, 255, 255, 0.6);
  color: #fff; }
  .mm-menu .mm-noresultsmsg {
    color: rgba(255, 255, 255, 0.6); }
/*
 jQuery.mmenu toggles addon CSS
 */
input.mm-toggle, input.mm-check {
  left: -10000px;
  position: absolute; }

label.mm-toggle, label.mm-check {
  bottom: 50%;
  margin: 0;
  position: absolute;
  z-index: 2; }
  label.mm-toggle:before, label.mm-check:before {
    content: '';
    display: block; }

label.mm-toggle {
  border-radius: 30px;
  height: 30px;
  margin-bottom: -15px;
  width: 50px; }
  label.mm-toggle:before {
    border-radius: 30px;
    height: 28px;
    margin: 1px;
    width: 28px; }

input.mm-toggle:checked ~ label.mm-toggle:before {
  float: right; }

label.mm-check {
  height: 30px;
  margin-bottom: -15px;
  width: 30px; }
  label.mm-check:before {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    border-bottom: 3px solid;
    border-left: 3px solid;
    height: 20%;
    margin: 25% 0 0 20%;
    opacity: 0.1;
    width: 40%; }

input.mm-check:checked ~ label.mm-check:before {
  opacity: 1; }

.mm-menu.mm-vertical .mm-list > li label.mm-toggle, .mm-menu.mm-vertical .mm-list > li label.mm-check {
  bottom: auto;
  margin-bottom: 0; }
  .mm-menu.mm-vertical .mm-list > li label.mm-toggle {
    top: 5px; }
  .mm-menu.mm-vertical .mm-list > li label.mm-check {
    top: 5px; }

label.mm-toggle, label.mm-check {
  right: 20px; }

label.mm-toggle + a, label.mm-toggle + span {
  margin-right: 70px; }

label.mm-check + a, label.mm-check + span {
  margin-right: 50px; }

a.mm-subopen + label.mm-toggle, a.mm-subopen + label.mm-check {
  right: 50px; }

a.mm-subopen + label.mm-toggle + a, a.mm-subopen + label.mm-toggle + span {
  margin-right: 100px; }

a.mm-subopen + label.mm-check + a, a.mm-subopen + label.mm-check + span {
  margin-right: 80px; }

em.mm-counter + a.mm-subopen + label.mm-toggle, em.mm-counter + a.mm-subopen + label.mm-check {
  right: 90px; }

em.mm-counter + a.mm-subopen + label.mm-toggle + a, em.mm-counter + a.mm-subopen + label.mm-toggle + span {
  margin-right: 140px; }

em.mm-counter + a.mm-subopen + label.mm-check + a, em.mm-counter + a.mm-subopen + label.mm-check + span {
  margin-right: 120px; }

.mm-menu label.mm-toggle {
  background: rgba(255, 255, 255, 0.15); }
  .mm-menu label.mm-toggle:before {
    background: #107792; }
  .mm-menu input.mm-toggle:checked ~ label.mm-toggle {
    background: #4bd963; }

.mm-menu label.mm-check:before {
  border-color: #fff; }
/*
 jQuery.mmenu effects extension CSS
 */
html.mm-slide .mm-menu {
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease; }
  html.mm-slide.mm-opened .mm-menu {
    -webkit-transform: translateX(-30%);
    -moz-transform: translateX(-30%);
    -ms-transform: translateX(-30%);
    -o-transform: translateX(-30%);
    transform: translateX(-30%); }
  html.mm-slide.mm-opening .mm-menu {
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%); }
  html.mm-slide.mm-right.mm-opened .mm-menu {
    -webkit-transform: translateX(30%);
    -moz-transform: translateX(30%);
    -ms-transform: translateX(30%);
    -o-transform: translateX(30%);
    transform: translateX(30%); }
  html.mm-slide.mm-right.mm-opening .mm-menu {
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%); }
  html.mm-slide.mm-top.mm-opened .mm-menu {
    -webkit-transform: translateY(-30%);
    -moz-transform: translateY(-30%);
    -ms-transform: translateY(-30%);
    -o-transform: translateY(-30%);
    transform: translateY(-30%); }
  html.mm-slide.mm-top.mm-opening .mm-menu {
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%); }
  html.mm-slide.mm-bottom.mm-opened .mm-menu {
    -webkit-transform: translateY(30%);
    -moz-transform: translateY(30%);
    -ms-transform: translateY(30%);
    -o-transform: translateY(30%);
    transform: translateY(30%); }
  html.mm-slide.mm-bottom.mm-opening .mm-menu {
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%); }

html.mm-zoom-menu .mm-menu {
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease; }
  html.mm-zoom-menu.mm-opened .mm-menu {
    -webkit-transform: scale(0.7, 0.7) translateX(-30%);
    -moz-transform: scale(0.7, 0.7) translateX(-30%);
    -ms-transform: scale(0.7, 0.7) translateX(-30%);
    -o-transform: scale(0.7, 0.7) translateX(-30%);
    transform: scale(0.7, 0.7) translateX(-30%);
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -ms-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center; }
  html.mm-zoom-menu.mm-opening .mm-menu {
    -webkit-transform: scale(1, 1) translateX(0%);
    -moz-transform: scale(1, 1) translateX(0%);
    -ms-transform: scale(1, 1) translateX(0%);
    -o-transform: scale(1, 1) translateX(0%);
    transform: scale(1, 1) translateX(0%); }
  html.mm-zoom-menu.mm-right.mm-opened .mm-menu {
    -webkit-transform: scale(0.7, 0.7) translateX(30%);
    -moz-transform: scale(0.7, 0.7) translateX(30%);
    -ms-transform: scale(0.7, 0.7) translateX(30%);
    -o-transform: scale(0.7, 0.7) translateX(30%);
    transform: scale(0.7, 0.7) translateX(30%);
    -webkit-transform-origin: right center;
    -moz-transform-origin: right center;
    -ms-transform-origin: right center;
    -o-transform-origin: right center;
    transform-origin: right center; }
  html.mm-zoom-menu.mm-right.mm-opening .mm-menu {
    -webkit-transform: scale(1, 1) translateX(0%);
    -moz-transform: scale(1, 1) translateX(0%);
    -ms-transform: scale(1, 1) translateX(0%);
    -o-transform: scale(1, 1) translateX(0%);
    transform: scale(1, 1) translateX(0%); }
  html.mm-zoom-menu.mm-top.mm-opened .mm-menu {
    -webkit-transform: scale(0.7, 0.7) translateY(-30%);
    -moz-transform: scale(0.7, 0.7) translateY(-30%);
    -ms-transform: scale(0.7, 0.7) translateY(-30%);
    -o-transform: scale(0.7, 0.7) translateY(-30%);
    transform: scale(0.7, 0.7) translateY(-30%);
    -webkit-transform-origin: center top;
    -moz-transform-origin: center top;
    -ms-transform-origin: center top;
    -o-transform-origin: center top;
    transform-origin: center top; }
  html.mm-zoom-menu.mm-top.mm-opening .mm-menu {
    -webkit-transform: scale(1, 1) translateY(0%);
    -moz-transform: scale(1, 1) translateY(0%);
    -ms-transform: scale(1, 1) translateY(0%);
    -o-transform: scale(1, 1) translateY(0%);
    transform: scale(1, 1) translateY(0%); }
  html.mm-zoom-menu.mm-bottom.mm-opened .mm-menu {
    -webkit-transform: scale(0.7, 0.7) translateY(30%);
    -moz-transform: scale(0.7, 0.7) translateY(30%);
    -ms-transform: scale(0.7, 0.7) translateY(30%);
    -o-transform: scale(0.7, 0.7) translateY(30%);
    transform: scale(0.7, 0.7) translateY(30%);
    -webkit-transform-origin: center bottom;
    -moz-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    -o-transform-origin: center bottom;
    transform-origin: center bottom; }
  html.mm-zoom-menu.mm-bottom.mm-opening .mm-menu {
    -webkit-transform: scale(1, 1) translateY(0%);
    -moz-transform: scale(1, 1) translateY(0%);
    -ms-transform: scale(1, 1) translateY(0%);
    -o-transform: scale(1, 1) translateY(0%);
    transform: scale(1, 1) translateY(0%); }

html.mm-zoom-panels .mm-menu.mm-horizontal > .mm-panel {
  -webkit-transform: scale(1.5, 1.5) translateX(100%);
  -moz-transform: scale(1.5, 1.5) translateX(100%);
  -ms-transform: scale(1.5, 1.5) translateX(100%);
  -o-transform: scale(1.5, 1.5) translateX(100%);
  transform: scale(1.5, 1.5) translateX(100%);
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition-property: -webkit-transform, left;
  transition-property: transform, left; }
  html.mm-zoom-panels .mm-menu.mm-horizontal > .mm-panel.mm-opened {
    -webkit-transform: scale(1, 1) translateX(0%);
    -moz-transform: scale(1, 1) translateX(0%);
    -ms-transform: scale(1, 1) translateX(0%);
    -o-transform: scale(1, 1) translateX(0%);
    transform: scale(1, 1) translateX(0%); }
  html.mm-zoom-panels .mm-menu.mm-horizontal > .mm-panel.mm-opened.mm-subopened {
    -webkit-transform: scale(0.7, 0.7) translateX(-30%);
    -moz-transform: scale(0.7, 0.7) translateX(-30%);
    -ms-transform: scale(0.7, 0.7) translateX(-30%);
    -o-transform: scale(0.7, 0.7) translateX(-30%);
    transform: scale(0.7, 0.7) translateX(-30%); }
/*
 jQuery.mmenu fullscreen extension CSS
 */
.mm-menu.mm-fullscreen {
  width: 100%;
  min-width: 140px;
  max-width: 10000px; }

html.mm-opening.mm-fullscreen .mm-slideout {
  -webkit-transform: translate(100%, 0);
  -moz-transform: translate(100%, 0);
  -ms-transform: translate(100%, 0);
  -o-transform: translate(100%, 0);
  transform: translate(100%, 0); }

@media all and (max-width: 140px) {
  html.mm-opening.mm-fullscreen .mm-slideout {
    -webkit-transform: translate(140px, 0);
    -moz-transform: translate(140px, 0);
    -ms-transform: translate(140px, 0);
    -o-transform: translate(140px, 0);
    transform: translate(140px, 0); } }

@media all and (min-width: 10000px) {
  html.mm-opening.mm-fullscreen .mm-slideout {
    -webkit-transform: translate(10000px, 0);
    -moz-transform: translate(10000px, 0);
    -ms-transform: translate(10000px, 0);
    -o-transform: translate(10000px, 0);
    transform: translate(10000px, 0); } }

html.mm-right.mm-opening.mm-fullscreen .mm-slideout {
  -webkit-transform: translate(-100%, 0);
  -moz-transform: translate(-100%, 0);
  -ms-transform: translate(-100%, 0);
  -o-transform: translate(-100%, 0);
  transform: translate(-100%, 0); }

@media all and (max-width: 140px) {
  html.mm-right.mm-opening.mm-fullscreen .mm-slideout {
    -webkit-transform: translate(-140px, 0);
    -moz-transform: translate(-140px, 0);
    -ms-transform: translate(-140px, 0);
    -o-transform: translate(-140px, 0);
    transform: translate(-140px, 0); } }

@media all and (min-width: 10000px) {
  html.mm-right.mm-opening.mm-fullscreen .mm-slideout {
    -webkit-transform: translate(-10000px, 0);
    -moz-transform: translate(-10000px, 0);
    -ms-transform: translate(-10000px, 0);
    -o-transform: translate(-10000px, 0);
    transform: translate(-10000px, 0); } }

.mm-menu.mm-front.mm-fullscreen.mm-top, .mm-menu.mm-front.mm-fullscreen.mm-bottom {
  height: 100%;
  min-height: 140px;
  max-height: 10000px; }

html.mm-opened.mm-fullscreen .mm-page {
  box-shadow: none !important; }
/*
 jQuery.mmenu position extension CSS
 */
.mm-menu.mm-top, .mm-menu.mm-bottom {
  width: 100%;
  min-width: 100%;
  max-width: 100%; }

.mm-menu.mm-right {
  left: auto;
  right: 0; }

.mm-menu.mm-bottom {
  top: auto;
  bottom: 0; }

html.mm-right.mm-opening .mm-slideout {
  -webkit-transform: translate(-80%, 0);
  -moz-transform: translate(-80%, 0);
  -ms-transform: translate(-80%, 0);
  -o-transform: translate(-80%, 0);
  transform: translate(-80%, 0); }

@media all and (max-width: 175px) {
  html.mm-right.mm-opening .mm-slideout {
    -webkit-transform: translate(-140px, 0);
    -moz-transform: translate(-140px, 0);
    -ms-transform: translate(-140px, 0);
    -o-transform: translate(-140px, 0);
    transform: translate(-140px, 0); } }

@media all and (min-width: 550px) {
  html.mm-right.mm-opening .mm-slideout {
    -webkit-transform: translate(-440px, 0);
    -moz-transform: translate(-440px, 0);
    -ms-transform: translate(-440px, 0);
    -o-transform: translate(-440px, 0);
    transform: translate(-440px, 0); } }
/*
 jQuery.mmenu z-position extension CSS
 */
html.mm-front .mm-slideout {
  -webkit-transform: none !important;
  -moz-transform: none !important;
  -ms-transform: none !important;
  -o-transform: none !important;
  transform: none !important;
  z-index: 0 !important; }

.mm-menu.mm-front {
  z-index: 1;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5); }

html.mm-opened.mm-next .mm-page {
  box-shadow: none; }

.mm-menu.mm-front, .mm-menu.mm-next {
  -webkit-transition: -webkit-transform 0.4s ease;
  -ms-transition: -ms-transform 0.4s ease;
  transition: transform 0.4s ease;
  -webkit-transform: translate(-100%, 0);
  -moz-transform: translate(-100%, 0);
  -ms-transform: translate(-100%, 0);
  -o-transform: translate(-100%, 0);
  transform: translate(-100%, 0); }
  .mm-menu.mm-front.mm-right, .mm-menu.mm-next.mm-right {
    -webkit-transform: translate(100%, 0);
    -moz-transform: translate(100%, 0);
    -ms-transform: translate(100%, 0);
    -o-transform: translate(100%, 0);
    transform: translate(100%, 0); }
  .mm-menu.mm-front.mm-top {
    -webkit-transform: translate(0, -100%);
    -moz-transform: translate(0, -100%);
    -ms-transform: translate(0, -100%);
    -o-transform: translate(0, -100%);
    transform: translate(0, -100%); }
  .mm-menu.mm-front.mm-bottom {
    -webkit-transform: translate(0, 100%);
    -moz-transform: translate(0, 100%);
    -ms-transform: translate(0, 100%);
    -o-transform: translate(0, 100%);
    transform: translate(0, 100%); }

html.mm-opening .mm-menu.mm-front, html.mm-opening .mm-menu.mm-next {
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0); }

.mm-menu.mm-front.mm-top, .mm-menu.mm-front.mm-bottom {
  height: 80%;
  min-height: 140px;
  max-height: 880px; }
/*
 jQuery.mmenu themes extension CSS
 */
html.mm-opened.mm-light .mm-page {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); }

.mm-menu.mm-light {
  background: #f3f3f3;
  color: rgba(0, 0, 0, 0.6); }
  .mm-menu.mm-light .mm-list > li:after {
    border-color: rgba(0, 0, 0, 0.1); }
  .mm-menu.mm-light .mm-list > li > a.mm-subclose {
    background: rgba(255, 255, 255, 0.6);
    color: rgba(0, 0, 0, 0.3); }
    .mm-menu.mm-light .mm-list > li > a.mm-subopen:after, .mm-menu.mm-light .mm-list > li > a.mm-subclose:before {
      border-color: rgba(0, 0, 0, 0.3); }
    .mm-menu.mm-light .mm-list > li > a.mm-subopen:before {
      border-color: rgba(0, 0, 0, 0.1); }
  .mm-menu.mm-light .mm-list > li.mm-selected > a:not(.mm-subopen), .mm-menu.mm-light .mm-list > li.mm-selected > span {
    background: rgba(255, 255, 255, 0.6); }
  .mm-menu.mm-light .mm-list > li.mm-label {
    background: rgba(0, 0, 0, 0.03); }
  .mm-menu.mm-light.mm-vertical .mm-list li.mm-opened > a.mm-subopen, .mm-menu.mm-light.mm-vertical .mm-list li.mm-opened > ul {
    background: rgba(0, 0, 0, 0.03); }

.mm-menu.mm-light .mm-buttonbar {
  border-color: rgba(0, 0, 0, 0.6);
  background: #f3f3f3; }
  .mm-menu.mm-light .mm-buttonbar > * {
    border-color: rgba(0, 0, 0, 0.6); }
  .mm-menu.mm-light .mm-buttonbar > input:checked + label {
    background: rgba(0, 0, 0, 0.6);
    color: #f3f3f3; }

.mm-menu.mm-light label.mm-check:before {
  border-color: rgba(0, 0, 0, 0.6); }

.mm-menu.mm-light em.mm-counter {
  color: rgba(0, 0, 0, 0.3); }

.mm-menu.mm-light .mm-footer {
  border-color: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.3); }

.mm-menu.mm-light .mm-header {
  border-color: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.3); }
  .mm-menu.mm-light .mm-header .mm-prev:before, .mm-menu.mm-light .mm-header .mm-next:after, .mm-menu.mm-light .mm-header .mm-close:after {
    border-color: rgba(0, 0, 0, 0.3); }

.mm-menu.mm-light .mm-list li.mm-label > div > div {
  background: rgba(0, 0, 0, 0.03); }

.mm-menu.mm-light .mm-search input {
  background: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.6); }
  .mm-menu.mm-light .mm-noresultsmsg {
    color: rgba(0, 0, 0, 0.3); }

.mm-menu.mm-light label.mm-toggle {
  background: rgba(0, 0, 0, 0.1); }
  .mm-menu.mm-light label.mm-toggle:before {
    background: #f3f3f3; }
  .mm-menu.mm-light input.mm-toggle:checked ~ label.mm-toggle {
    background: #4bd963; }

html.mm-opened.mm-white .mm-page {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); }

.mm-menu.mm-white {
  background: #fff;
  color: rgba(0, 0, 0, 0.6); }
  .mm-menu.mm-white .mm-list > li:after {
    border-color: rgba(0, 0, 0, 0.1); }
  .mm-menu.mm-white .mm-list > li > a.mm-subclose {
    background: rgba(0, 0, 0, 0.06);
    color: rgba(0, 0, 0, 0.3); }
    .mm-menu.mm-white .mm-list > li > a.mm-subopen:after, .mm-menu.mm-white .mm-list > li > a.mm-subclose:before {
      border-color: rgba(0, 0, 0, 0.3); }
    .mm-menu.mm-white .mm-list > li > a.mm-subopen:before {
      border-color: rgba(0, 0, 0, 0.1); }
  .mm-menu.mm-white .mm-list > li.mm-selected > a:not(.mm-subopen), .mm-menu.mm-white .mm-list > li.mm-selected > span {
    background: rgba(0, 0, 0, 0.06); }
  .mm-menu.mm-white .mm-list > li.mm-label {
    background: rgba(0, 0, 0, 0.03); }
  .mm-menu.mm-white.mm-vertical .mm-list li.mm-opened > a.mm-subopen, .mm-menu.mm-white.mm-vertical .mm-list li.mm-opened > ul {
    background: rgba(0, 0, 0, 0.03); }

.mm-menu.mm-white .mm-buttonbar {
  border-color: rgba(0, 0, 0, 0.6);
  background: #fff; }
  .mm-menu.mm-white .mm-buttonbar > * {
    border-color: rgba(0, 0, 0, 0.6); }
  .mm-menu.mm-white .mm-buttonbar > input:checked + label {
    background: rgba(0, 0, 0, 0.6);
    color: #fff; }

.mm-menu.mm-white label.mm-check:before {
  border-color: rgba(0, 0, 0, 0.6); }

.mm-menu.mm-white em.mm-counter {
  color: rgba(0, 0, 0, 0.3); }

.mm-menu.mm-white .mm-footer {
  border-color: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.3); }

.mm-menu.mm-white .mm-header {
  border-color: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.3); }
  .mm-menu.mm-white .mm-header .mm-prev:before, .mm-menu.mm-white .mm-header .mm-next:after, .mm-menu.mm-white .mm-header .mm-close:after {
    border-color: rgba(0, 0, 0, 0.3); }

.mm-menu.mm-white .mm-list li.mm-label > div > div {
  background: rgba(0, 0, 0, 0.03); }

.mm-menu.mm-white .mm-search input {
  background: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.6); }
  .mm-menu.mm-white .mm-noresultsmsg {
    color: rgba(0, 0, 0, 0.3); }

.mm-menu.mm-white label.mm-toggle {
  background: rgba(0, 0, 0, 0.1); }
  .mm-menu.mm-white label.mm-toggle:before {
    background: #fff; }
  .mm-menu.mm-white input.mm-toggle:checked ~ label.mm-toggle {
    background: #4bd963; }

html.mm-opened.mm-black .mm-page {
  box-shadow: none; }

.mm-menu.mm-black {
  background: #000;
  color: rgba(255, 255, 255, 0.6); }
  .mm-menu.mm-black .mm-list > li:after {
    border-color: rgba(255, 255, 255, 0.2); }
  .mm-menu.mm-black .mm-list > li > a.mm-subclose {
    background: rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.3); }
    .mm-menu.mm-black .mm-list > li > a.mm-subopen:after, .mm-menu.mm-black .mm-list > li > a.mm-subclose:before {
      border-color: rgba(255, 255, 255, 0.3); }
    .mm-menu.mm-black .mm-list > li > a.mm-subopen:before {
      border-color: rgba(255, 255, 255, 0.2); }
  .mm-menu.mm-black .mm-list > li.mm-selected > a:not(.mm-subopen), .mm-menu.mm-black .mm-list > li.mm-selected > span {
    background: rgba(255, 255, 255, 0.25); }
  .mm-menu.mm-black .mm-list > li.mm-label {
    background: rgba(255, 255, 255, 0.15); }
  .mm-menu.mm-black.mm-vertical .mm-list li.mm-opened > a.mm-subopen, .mm-menu.mm-black.mm-vertical .mm-list li.mm-opened > ul {
    background: rgba(255, 255, 255, 0.15); }

.mm-menu.mm-black .mm-buttonbar {
  border-color: rgba(255, 255, 255, 0.6);
  background: #000; }
  .mm-menu.mm-black .mm-buttonbar > * {
    border-color: rgba(255, 255, 255, 0.6); }
  .mm-menu.mm-black .mm-buttonbar > input:checked + label {
    background: rgba(255, 255, 255, 0.6);
    color: #000; }

.mm-menu.mm-black label.mm-check:before {
  border-color: rgba(255, 255, 255, 0.6); }

.mm-menu.mm-black em.mm-counter {
  color: rgba(255, 255, 255, 0.3); }

.mm-menu.mm-black .mm-footer {
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.3); }

.mm-menu.mm-black .mm-header {
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.3); }
  .mm-menu.mm-black .mm-header .mm-prev:before, .mm-menu.mm-black .mm-header .mm-next:after, .mm-menu.mm-black .mm-header .mm-close:after {
    border-color: rgba(255, 255, 255, 0.3); }

.mm-menu.mm-black .mm-list li.mm-label > div > div {
  background: rgba(255, 255, 255, 0.15); }

.mm-menu.mm-black .mm-search input {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.6); }
  .mm-menu.mm-black .mm-noresultsmsg {
    color: rgba(255, 255, 255, 0.3); }

.mm-menu.mm-black label.mm-toggle {
  background: rgba(255, 255, 255, 0.2); }
  .mm-menu.mm-black label.mm-toggle:before {
    background: #000; }
  .mm-menu.mm-black input.mm-toggle:checked ~ label.mm-toggle {
    background: #4bd963; }
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0; }
  .slick-list:focus {
    outline: none; }
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand; }

.slick-slider .slick-track, .slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block; }
  .slick-track:before, .slick-track:after {
    content: "";
    display: table; }
  .slick-track:after {
    clear: both; }
  .slick-loading .slick-track {
    visibility: hidden; }

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none; }
  [dir="rtl"] .slick-slide {
    float: right; }
  .slick-slide img {
    display: block; }
  .slick-slide.slick-loading img {
    display: none; }
  .slick-slide.dragging img {
    pointer-events: none; }
  .slick-initialized .slick-slide {
    display: block; }
  .slick-loading .slick-slide {
    visibility: hidden; }
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent; }
/*!
 *  Font Awesome 4.3.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url('/fonts/fontawesome/fonts/fontawesome-webfont.eot?v=4.3.0');
  src: url('/fonts/fontawesome/fonts/fontawesome-webfont.eot?#iefix&v=4.3.0') format('embedded-opentype'), url('/fonts/fontawesome/fonts/fontawesome-webfont.woff2?v=4.3.0') format('woff2'), url('/fonts/fontawesome/fonts/fontawesome-webfont.woff?v=4.3.0') format('woff'), url('/fonts/fontawesome/fonts/fontawesome-webfont.ttf?v=4.3.0') format('truetype'), url('/fonts/fontawesome/fonts/fontawesome-webfont.svg?v=4.3.0#fontawesomeregular') format('svg');
  font-weight: normal;
  font-style: normal; }

.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translate(0, 0); }
/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333em;
  line-height: 0.75em;
  vertical-align: -15%; }

.fa-2x {
  font-size: 2em; }

.fa-3x {
  font-size: 3em; }

.fa-4x {
  font-size: 4em; }

.fa-5x {
  font-size: 5em; }

.fa-fw {
  width: 1.28571em;
  text-align: center; }

.fa-ul {
  padding-left: 0;
  margin-left: 2.14286em;
  list-style-type: none; }
  .fa-ul > li {
    position: relative; }

.fa-li {
  position: absolute;
  left: -2.14286em;
  width: 2.14286em;
  top: 0.14286em;
  text-align: center; }
  .fa-li.fa-lg {
    left: -1.85714em; }

.fa-border {
  padding: 0.2em 0.25em 0.15em;
  border: solid 0.08em #eee;
  border-radius: 0.1em; }

.pull-right {
  float: right; }

.pull-left {
  float: left; }

.fa.pull-left {
  margin-right: 0.3em; }
  .fa.pull-right {
    margin-left: 0.3em; }

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear; }

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8); }

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }

  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg); } }

@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }

  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg); } }

.fa-rotate-90 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg); }

.fa-rotate-180 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg); }

.fa-rotate-270 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg); }

.fa-flip-horizontal {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0);
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1); }

.fa-flip-vertical {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1); }

:root .fa-rotate-90, :root .fa-rotate-180, :root .fa-rotate-270, :root .fa-flip-horizontal, :root .fa-flip-vertical {
  filter: none; }

.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle; }

.fa-stack-1x, .fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center; }

.fa-stack-1x {
  line-height: inherit; }

.fa-stack-2x {
  font-size: 2em; }

.fa-inverse {
  color: #fff; }
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
 readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "\f000"; }

.fa-music:before {
  content: "\f001"; }

.fa-search:before {
  content: "\f002"; }

.fa-envelope-o:before {
  content: "\f003"; }

.fa-heart:before {
  content: "\f004"; }

.fa-star:before {
  content: "\f005"; }

.fa-star-o:before {
  content: "\f006"; }

.fa-user:before {
  content: "\f007"; }

.fa-film:before {
  content: "\f008"; }

.fa-th-large:before {
  content: "\f009"; }

.fa-th:before {
  content: "\f00a"; }

.fa-th-list:before {
  content: "\f00b"; }

.fa-check:before {
  content: "\f00c"; }

.fa-remove:before, .fa-close:before, .fa-times:before {
  content: "\f00d"; }

.fa-search-plus:before {
  content: "\f00e"; }

.fa-search-minus:before {
  content: "\f010"; }

.fa-power-off:before {
  content: "\f011"; }

.fa-signal:before {
  content: "\f012"; }

.fa-gear:before, .fa-cog:before {
  content: "\f013"; }

.fa-trash-o:before {
  content: "\f014"; }

.fa-home:before {
  content: "\f015"; }

.fa-file-o:before {
  content: "\f016"; }

.fa-clock-o:before {
  content: "\f017"; }

.fa-road:before {
  content: "\f018"; }

.fa-download:before {
  content: "\f019"; }

.fa-arrow-circle-o-down:before {
  content: "\f01a"; }

.fa-arrow-circle-o-up:before {
  content: "\f01b"; }

.fa-inbox:before {
  content: "\f01c"; }

.fa-play-circle-o:before {
  content: "\f01d"; }

.fa-rotate-right:before, .fa-repeat:before {
  content: "\f01e"; }

.fa-refresh:before {
  content: "\f021"; }

.fa-list-alt:before {
  content: "\f022"; }

.fa-lock:before {
  content: "\f023"; }

.fa-flag:before {
  content: "\f024"; }

.fa-headphones:before {
  content: "\f025"; }

.fa-volume-off:before {
  content: "\f026"; }

.fa-volume-down:before {
  content: "\f027"; }

.fa-volume-up:before {
  content: "\f028"; }

.fa-qrcode:before {
  content: "\f029"; }

.fa-barcode:before {
  content: "\f02a"; }

.fa-tag:before {
  content: "\f02b"; }

.fa-tags:before {
  content: "\f02c"; }

.fa-book:before {
  content: "\f02d"; }

.fa-bookmark:before {
  content: "\f02e"; }

.fa-print:before {
  content: "\f02f"; }

.fa-camera:before {
  content: "\f030"; }

.fa-font:before {
  content: "\f031"; }

.fa-bold:before {
  content: "\f032"; }

.fa-italic:before {
  content: "\f033"; }

.fa-text-height:before {
  content: "\f034"; }

.fa-text-width:before {
  content: "\f035"; }

.fa-align-left:before {
  content: "\f036"; }

.fa-align-center:before {
  content: "\f037"; }

.fa-align-right:before {
  content: "\f038"; }

.fa-align-justify:before {
  content: "\f039"; }

.fa-list:before {
  content: "\f03a"; }

.fa-dedent:before, .fa-outdent:before {
  content: "\f03b"; }

.fa-indent:before {
  content: "\f03c"; }

.fa-video-camera:before {
  content: "\f03d"; }

.fa-photo:before, .fa-image:before, .fa-picture-o:before {
  content: "\f03e"; }

.fa-pencil:before {
  content: "\f040"; }

.fa-map-marker:before {
  content: "\f041"; }

.fa-adjust:before {
  content: "\f042"; }

.fa-tint:before {
  content: "\f043"; }

.fa-edit:before, .fa-pencil-square-o:before {
  content: "\f044"; }

.fa-share-square-o:before {
  content: "\f045"; }

.fa-check-square-o:before {
  content: "\f046"; }

.fa-arrows:before {
  content: "\f047"; }

.fa-step-backward:before {
  content: "\f048"; }

.fa-fast-backward:before {
  content: "\f049"; }

.fa-backward:before {
  content: "\f04a"; }

.fa-play:before {
  content: "\f04b"; }

.fa-pause:before {
  content: "\f04c"; }

.fa-stop:before {
  content: "\f04d"; }

.fa-forward:before {
  content: "\f04e"; }

.fa-fast-forward:before {
  content: "\f050"; }

.fa-step-forward:before {
  content: "\f051"; }

.fa-eject:before {
  content: "\f052"; }

.fa-chevron-left:before {
  content: "\f053"; }

.fa-chevron-right:before {
  content: "\f054"; }

.fa-plus-circle:before {
  content: "\f055"; }

.fa-minus-circle:before {
  content: "\f056"; }

.fa-times-circle:before {
  content: "\f057"; }

.fa-check-circle:before {
  content: "\f058"; }

.fa-question-circle:before {
  content: "\f059"; }

.fa-info-circle:before {
  content: "\f05a"; }

.fa-crosshairs:before {
  content: "\f05b"; }

.fa-times-circle-o:before {
  content: "\f05c"; }

.fa-check-circle-o:before {
  content: "\f05d"; }

.fa-ban:before {
  content: "\f05e"; }

.fa-arrow-left:before {
  content: "\f060"; }

.fa-arrow-right:before {
  content: "\f061"; }

.fa-arrow-up:before {
  content: "\f062"; }

.fa-arrow-down:before {
  content: "\f063"; }

.fa-mail-forward:before, .fa-share:before {
  content: "\f064"; }

.fa-expand:before {
  content: "\f065"; }

.fa-compress:before {
  content: "\f066"; }

.fa-plus:before {
  content: "\f067"; }

.fa-minus:before {
  content: "\f068"; }

.fa-asterisk:before {
  content: "\f069"; }

.fa-exclamation-circle:before {
  content: "\f06a"; }

.fa-gift:before {
  content: "\f06b"; }

.fa-leaf:before {
  content: "\f06c"; }

.fa-fire:before {
  content: "\f06d"; }

.fa-eye:before {
  content: "\f06e"; }

.fa-eye-slash:before {
  content: "\f070"; }

.fa-warning:before, .fa-exclamation-triangle:before {
  content: "\f071"; }

.fa-plane:before {
  content: "\f072"; }

.fa-calendar:before {
  content: "\f073"; }

.fa-random:before {
  content: "\f074"; }

.fa-comment:before {
  content: "\f075"; }

.fa-magnet:before {
  content: "\f076"; }

.fa-chevron-up:before {
  content: "\f077"; }

.fa-chevron-down:before {
  content: "\f078"; }

.fa-retweet:before {
  content: "\f079"; }

.fa-shopping-cart:before {
  content: "\f07a"; }

.fa-folder:before {
  content: "\f07b"; }

.fa-folder-open:before {
  content: "\f07c"; }

.fa-arrows-v:before {
  content: "\f07d"; }

.fa-arrows-h:before {
  content: "\f07e"; }

.fa-bar-chart-o:before, .fa-bar-chart:before {
  content: "\f080"; }

.fa-twitter-square:before {
  content: "\f081"; }

.fa-facebook-square:before {
  content: "\f082"; }

.fa-camera-retro:before {
  content: "\f083"; }

.fa-key:before {
  content: "\f084"; }

.fa-gears:before, .fa-cogs:before {
  content: "\f085"; }

.fa-comments:before {
  content: "\f086"; }

.fa-thumbs-o-up:before {
  content: "\f087"; }

.fa-thumbs-o-down:before {
  content: "\f088"; }

.fa-star-half:before {
  content: "\f089"; }

.fa-heart-o:before {
  content: "\f08a"; }

.fa-sign-out:before {
  content: "\f08b"; }

.fa-linkedin-square:before {
  content: "\f08c"; }

.fa-thumb-tack:before {
  content: "\f08d"; }

.fa-external-link:before {
  content: "\f08e"; }

.fa-sign-in:before {
  content: "\f090"; }

.fa-trophy:before {
  content: "\f091"; }

.fa-github-square:before {
  content: "\f092"; }

.fa-upload:before {
  content: "\f093"; }

.fa-lemon-o:before {
  content: "\f094"; }

.fa-phone:before {
  content: "\f095"; }

.fa-square-o:before {
  content: "\f096"; }

.fa-bookmark-o:before {
  content: "\f097"; }

.fa-phone-square:before {
  content: "\f098"; }

.fa-twitter:before {
  content: "\f099"; }

.fa-facebook-f:before, .fa-facebook:before {
  content: "\f09a"; }

.fa-github:before {
  content: "\f09b"; }

.fa-unlock:before {
  content: "\f09c"; }

.fa-credit-card:before {
  content: "\f09d"; }

.fa-rss:before {
  content: "\f09e"; }

.fa-hdd-o:before {
  content: "\f0a0"; }

.fa-bullhorn:before {
  content: "\f0a1"; }

.fa-bell:before {
  content: "\f0f3"; }

.fa-certificate:before {
  content: "\f0a3"; }

.fa-hand-o-right:before {
  content: "\f0a4"; }

.fa-hand-o-left:before {
  content: "\f0a5"; }

.fa-hand-o-up:before {
  content: "\f0a6"; }

.fa-hand-o-down:before {
  content: "\f0a7"; }

.fa-arrow-circle-left:before {
  content: "\f0a8"; }

.fa-arrow-circle-right:before {
  content: "\f0a9"; }

.fa-arrow-circle-up:before {
  content: "\f0aa"; }

.fa-arrow-circle-down:before {
  content: "\f0ab"; }

.fa-globe:before {
  content: "\f0ac"; }

.fa-wrench:before {
  content: "\f0ad"; }

.fa-tasks:before {
  content: "\f0ae"; }

.fa-filter:before {
  content: "\f0b0"; }

.fa-briefcase:before {
  content: "\f0b1"; }

.fa-arrows-alt:before {
  content: "\f0b2"; }

.fa-group:before, .fa-users:before {
  content: "\f0c0"; }

.fa-chain:before, .fa-link:before {
  content: "\f0c1"; }

.fa-cloud:before {
  content: "\f0c2"; }

.fa-flask:before {
  content: "\f0c3"; }

.fa-cut:before, .fa-scissors:before {
  content: "\f0c4"; }

.fa-copy:before, .fa-files-o:before {
  content: "\f0c5"; }

.fa-paperclip:before {
  content: "\f0c6"; }

.fa-save:before, .fa-floppy-o:before {
  content: "\f0c7"; }

.fa-square:before {
  content: "\f0c8"; }

.fa-navicon:before, .fa-reorder:before, .fa-bars:before {
  content: "\f0c9"; }

.fa-list-ul:before {
  content: "\f0ca"; }

.fa-list-ol:before {
  content: "\f0cb"; }

.fa-strikethrough:before {
  content: "\f0cc"; }

.fa-underline:before {
  content: "\f0cd"; }

.fa-table:before {
  content: "\f0ce"; }

.fa-magic:before {
  content: "\f0d0"; }

.fa-truck:before {
  content: "\f0d1"; }

.fa-pinterest:before {
  content: "\f0d2"; }

.fa-pinterest-square:before {
  content: "\f0d3"; }

.fa-google-plus-square:before {
  content: "\f0d4"; }

.fa-google-plus:before {
  content: "\f0d5"; }

.fa-money:before {
  content: "\f0d6"; }

.fa-caret-down:before {
  content: "\f0d7"; }

.fa-caret-up:before {
  content: "\f0d8"; }

.fa-caret-left:before {
  content: "\f0d9"; }

.fa-caret-right:before {
  content: "\f0da"; }

.fa-columns:before {
  content: "\f0db"; }

.fa-unsorted:before, .fa-sort:before {
  content: "\f0dc"; }

.fa-sort-down:before, .fa-sort-desc:before {
  content: "\f0dd"; }

.fa-sort-up:before, .fa-sort-asc:before {
  content: "\f0de"; }

.fa-envelope:before {
  content: "\f0e0"; }

.fa-linkedin:before {
  content: "\f0e1"; }

.fa-rotate-left:before, .fa-undo:before {
  content: "\f0e2"; }

.fa-legal:before, .fa-gavel:before {
  content: "\f0e3"; }

.fa-dashboard:before, .fa-tachometer:before {
  content: "\f0e4"; }

.fa-comment-o:before {
  content: "\f0e5"; }

.fa-comments-o:before {
  content: "\f0e6"; }

.fa-flash:before, .fa-bolt:before {
  content: "\f0e7"; }

.fa-sitemap:before {
  content: "\f0e8"; }

.fa-umbrella:before {
  content: "\f0e9"; }

.fa-paste:before, .fa-clipboard:before {
  content: "\f0ea"; }

.fa-lightbulb-o:before {
  content: "\f0eb"; }

.fa-exchange:before {
  content: "\f0ec"; }

.fa-cloud-download:before {
  content: "\f0ed"; }

.fa-cloud-upload:before {
  content: "\f0ee"; }

.fa-user-md:before {
  content: "\f0f0"; }

.fa-stethoscope:before {
  content: "\f0f1"; }

.fa-suitcase:before {
  content: "\f0f2"; }

.fa-bell-o:before {
  content: "\f0a2"; }

.fa-coffee:before {
  content: "\f0f4"; }

.fa-cutlery:before {
  content: "\f0f5"; }

.fa-file-text-o:before {
  content: "\f0f6"; }

.fa-building-o:before {
  content: "\f0f7"; }

.fa-hospital-o:before {
  content: "\f0f8"; }

.fa-ambulance:before {
  content: "\f0f9"; }

.fa-medkit:before {
  content: "\f0fa"; }

.fa-fighter-jet:before {
  content: "\f0fb"; }

.fa-beer:before {
  content: "\f0fc"; }

.fa-h-square:before {
  content: "\f0fd"; }

.fa-plus-square:before {
  content: "\f0fe"; }

.fa-angle-double-left:before {
  content: "\f100"; }

.fa-angle-double-right:before {
  content: "\f101"; }

.fa-angle-double-up:before {
  content: "\f102"; }

.fa-angle-double-down:before {
  content: "\f103"; }

.fa-angle-left:before {
  content: "\f104"; }

.fa-angle-right:before {
  content: "\f105"; }

.fa-angle-up:before {
  content: "\f106"; }

.fa-angle-down:before {
  content: "\f107"; }

.fa-desktop:before {
  content: "\f108"; }

.fa-laptop:before {
  content: "\f109"; }

.fa-tablet:before {
  content: "\f10a"; }

.fa-mobile-phone:before, .fa-mobile:before {
  content: "\f10b"; }

.fa-circle-o:before {
  content: "\f10c"; }

.fa-quote-left:before {
  content: "\f10d"; }

.fa-quote-right:before {
  content: "\f10e"; }

.fa-spinner:before {
  content: "\f110"; }

.fa-circle:before {
  content: "\f111"; }

.fa-mail-reply:before, .fa-reply:before {
  content: "\f112"; }

.fa-github-alt:before {
  content: "\f113"; }

.fa-folder-o:before {
  content: "\f114"; }

.fa-folder-open-o:before {
  content: "\f115"; }

.fa-smile-o:before {
  content: "\f118"; }

.fa-frown-o:before {
  content: "\f119"; }

.fa-meh-o:before {
  content: "\f11a"; }

.fa-gamepad:before {
  content: "\f11b"; }

.fa-keyboard-o:before {
  content: "\f11c"; }

.fa-flag-o:before {
  content: "\f11d"; }

.fa-flag-checkered:before {
  content: "\f11e"; }

.fa-terminal:before {
  content: "\f120"; }

.fa-code:before {
  content: "\f121"; }

.fa-mail-reply-all:before, .fa-reply-all:before {
  content: "\f122"; }

.fa-star-half-empty:before, .fa-star-half-full:before, .fa-star-half-o:before {
  content: "\f123"; }

.fa-location-arrow:before {
  content: "\f124"; }

.fa-crop:before {
  content: "\f125"; }

.fa-code-fork:before {
  content: "\f126"; }

.fa-unlink:before, .fa-chain-broken:before {
  content: "\f127"; }

.fa-question:before {
  content: "\f128"; }

.fa-info:before {
  content: "\f129"; }

.fa-exclamation:before {
  content: "\f12a"; }

.fa-superscript:before {
  content: "\f12b"; }

.fa-subscript:before {
  content: "\f12c"; }

.fa-eraser:before {
  content: "\f12d"; }

.fa-puzzle-piece:before {
  content: "\f12e"; }

.fa-microphone:before {
  content: "\f130"; }

.fa-microphone-slash:before {
  content: "\f131"; }

.fa-shield:before {
  content: "\f132"; }

.fa-calendar-o:before {
  content: "\f133"; }

.fa-fire-extinguisher:before {
  content: "\f134"; }

.fa-rocket:before {
  content: "\f135"; }

.fa-maxcdn:before {
  content: "\f136"; }

.fa-chevron-circle-left:before {
  content: "\f137"; }

.fa-chevron-circle-right:before {
  content: "\f138"; }

.fa-chevron-circle-up:before {
  content: "\f139"; }

.fa-chevron-circle-down:before {
  content: "\f13a"; }

.fa-html5:before {
  content: "\f13b"; }

.fa-css3:before {
  content: "\f13c"; }

.fa-anchor:before {
  content: "\f13d"; }

.fa-unlock-alt:before {
  content: "\f13e"; }

.fa-bullseye:before {
  content: "\f140"; }

.fa-ellipsis-h:before {
  content: "\f141"; }

.fa-ellipsis-v:before {
  content: "\f142"; }

.fa-rss-square:before {
  content: "\f143"; }

.fa-play-circle:before {
  content: "\f144"; }

.fa-ticket:before {
  content: "\f145"; }

.fa-minus-square:before {
  content: "\f146"; }

.fa-minus-square-o:before {
  content: "\f147"; }

.fa-level-up:before {
  content: "\f148"; }

.fa-level-down:before {
  content: "\f149"; }

.fa-check-square:before {
  content: "\f14a"; }

.fa-pencil-square:before {
  content: "\f14b"; }

.fa-external-link-square:before {
  content: "\f14c"; }

.fa-share-square:before {
  content: "\f14d"; }

.fa-compass:before {
  content: "\f14e"; }

.fa-toggle-down:before, .fa-caret-square-o-down:before {
  content: "\f150"; }

.fa-toggle-up:before, .fa-caret-square-o-up:before {
  content: "\f151"; }

.fa-toggle-right:before, .fa-caret-square-o-right:before {
  content: "\f152"; }

.fa-euro:before, .fa-eur:before {
  content: "\f153"; }

.fa-gbp:before {
  content: "\f154"; }

.fa-dollar:before, .fa-usd:before {
  content: "\f155"; }

.fa-rupee:before, .fa-inr:before {
  content: "\f156"; }

.fa-cny:before, .fa-rmb:before, .fa-yen:before, .fa-jpy:before {
  content: "\f157"; }

.fa-ruble:before, .fa-rouble:before, .fa-rub:before {
  content: "\f158"; }

.fa-won:before, .fa-krw:before {
  content: "\f159"; }

.fa-bitcoin:before, .fa-btc:before {
  content: "\f15a"; }

.fa-file:before {
  content: "\f15b"; }

.fa-file-text:before {
  content: "\f15c"; }

.fa-sort-alpha-asc:before {
  content: "\f15d"; }

.fa-sort-alpha-desc:before {
  content: "\f15e"; }

.fa-sort-amount-asc:before {
  content: "\f160"; }

.fa-sort-amount-desc:before {
  content: "\f161"; }

.fa-sort-numeric-asc:before {
  content: "\f162"; }

.fa-sort-numeric-desc:before {
  content: "\f163"; }

.fa-thumbs-up:before {
  content: "\f164"; }

.fa-thumbs-down:before {
  content: "\f165"; }

.fa-youtube-square:before {
  content: "\f166"; }

.fa-youtube:before {
  content: "\f167"; }

.fa-xing:before {
  content: "\f168"; }

.fa-xing-square:before {
  content: "\f169"; }

.fa-youtube-play:before {
  content: "\f16a"; }

.fa-dropbox:before {
  content: "\f16b"; }

.fa-stack-overflow:before {
  content: "\f16c"; }

.fa-instagram:before {
  content: "\f16d"; }

.fa-flickr:before {
  content: "\f16e"; }

.fa-adn:before {
  content: "\f170"; }

.fa-bitbucket:before {
  content: "\f171"; }

.fa-bitbucket-square:before {
  content: "\f172"; }

.fa-tumblr:before {
  content: "\f173"; }

.fa-tumblr-square:before {
  content: "\f174"; }

.fa-long-arrow-down:before {
  content: "\f175"; }

.fa-long-arrow-up:before {
  content: "\f176"; }

.fa-long-arrow-left:before {
  content: "\f177"; }

.fa-long-arrow-right:before {
  content: "\f178"; }

.fa-apple:before {
  content: "\f179"; }

.fa-windows:before {
  content: "\f17a"; }

.fa-android:before {
  content: "\f17b"; }

.fa-linux:before {
  content: "\f17c"; }

.fa-dribbble:before {
  content: "\f17d"; }

.fa-skype:before {
  content: "\f17e"; }

.fa-foursquare:before {
  content: "\f180"; }

.fa-trello:before {
  content: "\f181"; }

.fa-female:before {
  content: "\f182"; }

.fa-male:before {
  content: "\f183"; }

.fa-gittip:before, .fa-gratipay:before {
  content: "\f184"; }

.fa-sun-o:before {
  content: "\f185"; }

.fa-moon-o:before {
  content: "\f186"; }

.fa-archive:before {
  content: "\f187"; }

.fa-bug:before {
  content: "\f188"; }

.fa-vk:before {
  content: "\f189"; }

.fa-weibo:before {
  content: "\f18a"; }

.fa-renren:before {
  content: "\f18b"; }

.fa-pagelines:before {
  content: "\f18c"; }

.fa-stack-exchange:before {
  content: "\f18d"; }

.fa-arrow-circle-o-right:before {
  content: "\f18e"; }

.fa-arrow-circle-o-left:before {
  content: "\f190"; }

.fa-toggle-left:before, .fa-caret-square-o-left:before {
  content: "\f191"; }

.fa-dot-circle-o:before {
  content: "\f192"; }

.fa-wheelchair:before {
  content: "\f193"; }

.fa-vimeo-square:before {
  content: "\f194"; }

.fa-turkish-lira:before, .fa-try:before {
  content: "\f195"; }

.fa-plus-square-o:before {
  content: "\f196"; }

.fa-space-shuttle:before {
  content: "\f197"; }

.fa-slack:before {
  content: "\f198"; }

.fa-envelope-square:before {
  content: "\f199"; }

.fa-wordpress:before {
  content: "\f19a"; }

.fa-openid:before {
  content: "\f19b"; }

.fa-institution:before, .fa-bank:before, .fa-university:before {
  content: "\f19c"; }

.fa-mortar-board:before, .fa-graduation-cap:before {
  content: "\f19d"; }

.fa-yahoo:before {
  content: "\f19e"; }

.fa-google:before {
  content: "\f1a0"; }

.fa-reddit:before {
  content: "\f1a1"; }

.fa-reddit-square:before {
  content: "\f1a2"; }

.fa-stumbleupon-circle:before {
  content: "\f1a3"; }

.fa-stumbleupon:before {
  content: "\f1a4"; }

.fa-delicious:before {
  content: "\f1a5"; }

.fa-digg:before {
  content: "\f1a6"; }

.fa-pied-piper:before {
  content: "\f1a7"; }

.fa-pied-piper-alt:before {
  content: "\f1a8"; }

.fa-drupal:before {
  content: "\f1a9"; }

.fa-joomla:before {
  content: "\f1aa"; }

.fa-language:before {
  content: "\f1ab"; }

.fa-fax:before {
  content: "\f1ac"; }

.fa-building:before {
  content: "\f1ad"; }

.fa-child:before {
  content: "\f1ae"; }

.fa-paw:before {
  content: "\f1b0"; }

.fa-spoon:before {
  content: "\f1b1"; }

.fa-cube:before {
  content: "\f1b2"; }

.fa-cubes:before {
  content: "\f1b3"; }

.fa-behance:before {
  content: "\f1b4"; }

.fa-behance-square:before {
  content: "\f1b5"; }

.fa-steam:before {
  content: "\f1b6"; }

.fa-steam-square:before {
  content: "\f1b7"; }

.fa-recycle:before {
  content: "\f1b8"; }

.fa-automobile:before, .fa-car:before {
  content: "\f1b9"; }

.fa-cab:before, .fa-taxi:before {
  content: "\f1ba"; }

.fa-tree:before {
  content: "\f1bb"; }

.fa-spotify:before {
  content: "\f1bc"; }

.fa-deviantart:before {
  content: "\f1bd"; }

.fa-soundcloud:before {
  content: "\f1be"; }

.fa-database:before {
  content: "\f1c0"; }

.fa-file-pdf-o:before {
  content: "\f1c1"; }

.fa-file-word-o:before {
  content: "\f1c2"; }

.fa-file-excel-o:before {
  content: "\f1c3"; }

.fa-file-powerpoint-o:before {
  content: "\f1c4"; }

.fa-file-photo-o:before, .fa-file-picture-o:before, .fa-file-image-o:before {
  content: "\f1c5"; }

.fa-file-zip-o:before, .fa-file-archive-o:before {
  content: "\f1c6"; }

.fa-file-sound-o:before, .fa-file-audio-o:before {
  content: "\f1c7"; }

.fa-file-movie-o:before, .fa-file-video-o:before {
  content: "\f1c8"; }

.fa-file-code-o:before {
  content: "\f1c9"; }

.fa-vine:before {
  content: "\f1ca"; }

.fa-codepen:before {
  content: "\f1cb"; }

.fa-jsfiddle:before {
  content: "\f1cc"; }

.fa-life-bouy:before, .fa-life-buoy:before, .fa-life-saver:before, .fa-support:before, .fa-life-ring:before {
  content: "\f1cd"; }

.fa-circle-o-notch:before {
  content: "\f1ce"; }

.fa-ra:before, .fa-rebel:before {
  content: "\f1d0"; }

.fa-ge:before, .fa-empire:before {
  content: "\f1d1"; }

.fa-git-square:before {
  content: "\f1d2"; }

.fa-git:before {
  content: "\f1d3"; }

.fa-hacker-news:before {
  content: "\f1d4"; }

.fa-tencent-weibo:before {
  content: "\f1d5"; }

.fa-qq:before {
  content: "\f1d6"; }

.fa-wechat:before, .fa-weixin:before {
  content: "\f1d7"; }

.fa-send:before, .fa-paper-plane:before {
  content: "\f1d8"; }

.fa-send-o:before, .fa-paper-plane-o:before {
  content: "\f1d9"; }

.fa-history:before {
  content: "\f1da"; }

.fa-genderless:before, .fa-circle-thin:before {
  content: "\f1db"; }

.fa-header:before {
  content: "\f1dc"; }

.fa-paragraph:before {
  content: "\f1dd"; }

.fa-sliders:before {
  content: "\f1de"; }

.fa-share-alt:before {
  content: "\f1e0"; }

.fa-share-alt-square:before {
  content: "\f1e1"; }

.fa-bomb:before {
  content: "\f1e2"; }

.fa-soccer-ball-o:before, .fa-futbol-o:before {
  content: "\f1e3"; }

.fa-tty:before {
  content: "\f1e4"; }

.fa-binoculars:before {
  content: "\f1e5"; }

.fa-plug:before {
  content: "\f1e6"; }

.fa-slideshare:before {
  content: "\f1e7"; }

.fa-twitch:before {
  content: "\f1e8"; }

.fa-yelp:before {
  content: "\f1e9"; }

.fa-newspaper-o:before {
  content: "\f1ea"; }

.fa-wifi:before {
  content: "\f1eb"; }

.fa-calculator:before {
  content: "\f1ec"; }

.fa-paypal:before {
  content: "\f1ed"; }

.fa-google-wallet:before {
  content: "\f1ee"; }

.fa-cc-visa:before {
  content: "\f1f0"; }

.fa-cc-mastercard:before {
  content: "\f1f1"; }

.fa-cc-discover:before {
  content: "\f1f2"; }

.fa-cc-amex:before {
  content: "\f1f3"; }

.fa-cc-paypal:before {
  content: "\f1f4"; }

.fa-cc-stripe:before {
  content: "\f1f5"; }

.fa-bell-slash:before {
  content: "\f1f6"; }

.fa-bell-slash-o:before {
  content: "\f1f7"; }

.fa-trash:before {
  content: "\f1f8"; }

.fa-copyright:before {
  content: "\f1f9"; }

.fa-at:before {
  content: "\f1fa"; }

.fa-eyedropper:before {
  content: "\f1fb"; }

.fa-paint-brush:before {
  content: "\f1fc"; }

.fa-birthday-cake:before {
  content: "\f1fd"; }

.fa-area-chart:before {
  content: "\f1fe"; }

.fa-pie-chart:before {
  content: "\f200"; }

.fa-line-chart:before {
  content: "\f201"; }

.fa-lastfm:before {
  content: "\f202"; }

.fa-lastfm-square:before {
  content: "\f203"; }

.fa-toggle-off:before {
  content: "\f204"; }

.fa-toggle-on:before {
  content: "\f205"; }

.fa-bicycle:before {
  content: "\f206"; }

.fa-bus:before {
  content: "\f207"; }

.fa-ioxhost:before {
  content: "\f208"; }

.fa-angellist:before {
  content: "\f209"; }

.fa-cc:before {
  content: "\f20a"; }

.fa-shekel:before, .fa-sheqel:before, .fa-ils:before {
  content: "\f20b"; }

.fa-meanpath:before {
  content: "\f20c"; }

.fa-buysellads:before {
  content: "\f20d"; }

.fa-connectdevelop:before {
  content: "\f20e"; }

.fa-dashcube:before {
  content: "\f210"; }

.fa-forumbee:before {
  content: "\f211"; }

.fa-leanpub:before {
  content: "\f212"; }

.fa-sellsy:before {
  content: "\f213"; }

.fa-shirtsinbulk:before {
  content: "\f214"; }

.fa-simplybuilt:before {
  content: "\f215"; }

.fa-skyatlas:before {
  content: "\f216"; }

.fa-cart-plus:before {
  content: "\f217"; }

.fa-cart-arrow-down:before {
  content: "\f218"; }

.fa-diamond:before {
  content: "\f219"; }

.fa-ship:before {
  content: "\f21a"; }

.fa-user-secret:before {
  content: "\f21b"; }

.fa-motorcycle:before {
  content: "\f21c"; }

.fa-street-view:before {
  content: "\f21d"; }

.fa-heartbeat:before {
  content: "\f21e"; }

.fa-venus:before {
  content: "\f221"; }

.fa-mars:before {
  content: "\f222"; }

.fa-mercury:before {
  content: "\f223"; }

.fa-transgender:before {
  content: "\f224"; }

.fa-transgender-alt:before {
  content: "\f225"; }

.fa-venus-double:before {
  content: "\f226"; }

.fa-mars-double:before {
  content: "\f227"; }

.fa-venus-mars:before {
  content: "\f228"; }

.fa-mars-stroke:before {
  content: "\f229"; }

.fa-mars-stroke-v:before {
  content: "\f22a"; }

.fa-mars-stroke-h:before {
  content: "\f22b"; }

.fa-neuter:before {
  content: "\f22c"; }

.fa-facebook-official:before {
  content: "\f230"; }

.fa-pinterest-p:before {
  content: "\f231"; }

.fa-whatsapp:before {
  content: "\f232"; }

.fa-server:before {
  content: "\f233"; }

.fa-user-plus:before {
  content: "\f234"; }

.fa-user-times:before {
  content: "\f235"; }

.fa-hotel:before, .fa-bed:before {
  content: "\f236"; }

.fa-viacoin:before {
  content: "\f237"; }

.fa-train:before {
  content: "\f238"; }

.fa-subway:before {
  content: "\f239"; }

.fa-medium:before {
  content: "\f23a"; }

@font-face {
  font-family: 'FontAwesome';
  font-style: normal;
  font-weight: normal;
  src: url('/fonts/fontawesome/fonts/fontawesome-webfont.eot');
  src: url('/fonts/fontawesome/fonts/fontawesome-webfont.eot?#iefix') format('embedded-opentype'), url('/fonts/fontawesome/fonts/fontawesome-webfont.woff') format('woff'), url('/fonts/fontawesome/fonts/fontawesome-webfont.ttf') format('truetype'), url('/fonts/fontawesome/fonts/fontawesome-webfont.svg#fontawesomeregular') format('svg'); }
/* = Variables = */
/**
 * = BASE =
 * = Table of Contents =
 * Web Fonts
 * Variables
 * Mixins
 * Base
 * Typography
 * Iconography
 * Forms
 * Messaging
 * Tables
 * Components
 * Page Specific
 * Media Queries
 */
/* = Mixins = */
/* = Base = */
a, abbr, address, article, aside, audio, b, blockquote, body, canvas, cite, code, dd, div, dl, dt, em, fieldset, footer, form, h1, h2, h3, h4, h5, h6, header, html, hr, i, iframe, img, label, li, nav, object, ol, p, pre, section, span, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, ul, video {
  border: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font: inherit;
  font-size: 100%;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline; }

article, aside, audio, canvas, footer, header, nav, section, video {
  display: block; }

html, body {
  height: 100%;
  margin: 0;
  padding: 0; }

html {
  background: #fff;
  color: #231f20;
  font-family: ;
  font-size: 16px;
  height: 100%;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%; }

body {
  background: #f2f2ef;
  min-width: 300px;
  overflow-x: hidden; }

.container:before, .group:before, .container:after, .group:after {
  content: '';
  display: table; }
  .container:after, .group:after {
    clear: both; }

.container {
  clear: both;
  margin-left: auto;
  margin-right: auto;
  max-width: 1100px;
  padding-left: 16px;
  padding-right: 16px;
  position: relative; }

.columns > hr {
  display: none; }
  @media only screen and (min-width: 600px) {
  .columns {
    display: table;
    table-layout: fixed;
    width: 100%; }
    .columns > * {
      display: table-cell;
      vertical-align: top; }

    .columns > hr {
      display: table-cell;
      width: 16px; }

    .columns > div:first-child {
      padding-right: 3em; }
      .columns > div:first-child.callout {
        padding-right: 1.5em; }
        .columns > div:first-child.callout + div {
          padding-left: 1.5em; } }
  html.lt-ie9 .columns {
    display: table;
    table-layout: fixed;
    width: 100%; }
  html.lt-ie9 .columns > * {
    display: table-cell;
    vertical-align: top; }
  html.lt-ie9 .columns > hr {
    display: table-cell;
    width: 16px; }

img {
  border: 3px solid #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  margin: 16px;
  max-width: 100%;
  vertical-align: middle; }
  img.justified_right {
    float: right;
    margin-left: 1em;
    margin-bottom: 1em; }
  img.justified_left {
    float: left;
    margin-right: 1em;
    margin-bottom: 1em; }
  img.justified_center {
    float: none;
    display: block;
    margin: 0 auto 2em; }

::-moz-selection {
  background: #fff1b5;
  text-shadow: none; }

::selection {
  background: #fff1b5;
  text-shadow: none; }

.hidden {
  display: none !important; }
/* = Typography = */
h1 {
  font-family: 'Raleway', Arial, sans-serif;
  font-weight: normal;
  padding-bottom: 24px;
  background: url('/img/site/tscpa_default_header.jpg') no-repeat top center #255d6e;
  background-size: cover;
  color: #fff;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 32px;
  padding: 48px 0;
  position: relative;
  text-transform: uppercase; }
  h1:before, h1:after {
    background: #255d6e;
    content: "";
    height: 100%;
    position: absolute;
    right: 100%;
    top: 0;
    width: 100%; }
  h1:after {
    left: 100%;
    right: auto; }
  h1 span {
    display: block;
    font-size: 24px;
    font-weight: normal;
    text-transform: none; }

.education h1 {
  background-image: url('/img/site/tscpa_header2.jpg'); }

.news h1, .article h1, .resources h1 {
  background: url('/img/site/tscpa_header4.jpg') no-repeat top center #39a2b8;
  background-size: cover; }
  .news h1:before, .article h1:before, .resources h1:before, .news h1:after, .article h1:after, .resources h1:after {
    background: #39a2b8; }

.cpe h1 {
  background: url('/img/site/tscpa_header3.jpg') no-repeat top center #406066;
  background-size: cover; }
  .cpe h1:before, .cpe h1:after {
    background: #406066; }

.about h1 {
  background: url('/img/site/tscpa_header5.jpg') no-repeat top center #406066;
  background-size: cover; }
  .about h1:before, .about h1:after {
    background: #406066; }

.membership h1 {
  background-image: url('/img/site/tscpa_header2.jpg'); }

h2 {
  font-family: 'Raleway', Arial, sans-serif;
  font-weight: normal;
  padding-bottom: 24px;
  color: #57585a;
  font-size: 24px;
  line-height: 1.2;
  padding-bottom: 14px; }
  @media only screen and (min-width: 768px) {
  h2 {
    font-size: 32px; } }

h3 {
  font-family: 'Raleway', Arial, sans-serif;
  font-weight: normal;
  padding-bottom: 24px;
  color: #ebad48;
  font-size: 24px;
  line-height: 1.3;
  padding-bottom: 0.5em; }

h4 {
  font-family: 'Raleway', Arial, sans-serif;
  font-weight: normal;
  padding-bottom: 24px;
  border-bottom: 3px solid #ddd;
  color: #ebad48;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 600;
  margin-bottom: 0.5em;
  padding-bottom: 0.5em; }

h5, h6 {
  font-family: 'Raleway', Arial, sans-serif;
  font-weight: normal;
  padding-bottom: 24px; }

h5 {
  font-weight: bold; }

.meta {
  color: #888;
  font-size: 1em;
  margin-bottom: 0.5em; }

abbr[title] {
  border-bottom: 1px dotted; }

b, strong {
  font-weight: bold; }

i, em {
  font-style: italic; }

blockquote, pre {
  color: #888;
  margin-bottom: 1.5em; }
  blockquote:before, pre:before, blockquote:after, pre:after {
    content: '';
    display: table; }
  blockquote:after, pre:after {
    clear: both; }

blockquote {
  border-left: 1px solid #888;
  font-style: italic;
  padding-left: 16px; }

article {
  margin-bottom: 3em; }

pre, code {
  font-family: Menlo, 'Ubuntu Mono', Consolas, 'Courier New', monospace;
  font-size: 14px; }

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word; }

p {
  margin-bottom: 1.5em; }
  p + h4 {
    margin-top: 2em; }

address {
  margin-bottom: 1.5em; }

hr {
  border: 0;
  border-top: 1px solid #888;
  display: block;
  height: 0;
  margin: 2em auto 3em;
  width: 100%; }

a {
  color: #0094b6;
  font-weight: bold;
  text-decoration: none; }
  a:hover, a:active {
    color: #1d7382; }
  a:focus {
    outline: thin dotted; }
  a.cta {
    color: #ebad48;
    font-weight: bold; }
  a.remove {
    -webkit-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
    border: 1px solid #1d7382;
    color: #1d7382;
    display: inline-block;
    float: right;
    padding: 5px; }
  a.remove:hover {
    border-color: #ebad48;
    color: #ebad48; }

ol, ul, dl {
  margin-bottom: 1.5em; }

ol, ul {
  padding-left: 2em; }
  ol li, ul li, ol dt, ul dt, ol dd, ul dd {
    margin-bottom: 0.5em; }

ul {
  list-style: disc; }

dl {
  background: #f6f6f6;
  padding: 1em; }
  dl dt, dl dd {
    float: none;
    font-weight: bold;
    margin-left: 0;
    padding-bottom: 1em; }
  dl dd {
    font-weight: normal;
    margin-left: 0;
    padding-bottom: 1em; }
  dl dd:last-child {
    margin-bottom: 0; }

sup, sub {
  font-size: 80%; }

sup {
  vertical-align: top; }

sub {
  vertical-align: bottom; }
/* = Iconography = */
a.doc:before, a.docx:before, a.pdf:before, a.word:before, [class*='icon-']:before, a.doc:after, a.docx:after, a.pdf:after, a.word:after, [class*='icon-']:after {
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  speak: none; }

a.doc:before, a.docx:before, a.pdf:before, a.word:before, a[class*='icon-']:before {
  display: inline-block;
  padding-right: 0.1em;
  text-align: center;
  width: 1em; }

a.doc:after, a.docx:after, a.pdf:after, a.word:after, a[class*='icon-']:after {
  display: inline-block;
  text-align: center;
  width: 1em; }

.icon-only {
  font-size: 0;
  overflow: visible; }
  .icon-only:before {
    font-size: 32px; }

.icons {
  padding-left: 9px; }
  .icons li {
    list-style: none; }
  .icons li a.doc:before, .icons li a.docx:before, .icons li a.pdf:before, .icons li a.word:before, .icons li a[class*='icon-']:before, .icons li .doc:after, .icons li a.docx:after, .icons li a.pdf:after, .icons li a.word:after, .icons li a[class*='icon-']:after {
    color: #231f20;
    padding-right: 0.5em; }

a.button[class*='icon-']:before {
  padding-right: 0.5em; }
/* = Icon Definitions = */
.icon-download-alt:before {
  content: '\f019'; }

.icon-file:before {
  content: '\f15b'; }

a.doc:before, a.word:before, a.docx:before, a.pdf:before, .icon-file-alt:before {
  content: '\f016'; }

.icon-file-text:before {
  content: '\f15c'; }

.icon-file-text-alt:before {
  content: '\f0f6'; }

.icon-exclamation:before {
  content: '\f12a'; }

.icon-info:before {
  content: '\f129'; }

.icon-ok:before {
  content: '\f00c'; }

.icon-question:before {
  content: '\f128'; }

.icon-remove:before {
  content: '\f00d'; }

.icon-envelope:before {
  content: '\f0e0'; }

.icon-facebook:before {
  content: '\f09a'; }

.icon-rss:before {
  content: '\f09e'; }

.icon-linkedin:before {
  content: '\f0e1'; }

.icon-twitter:before {
  content: '\f099'; }

.icon-youtube:before {
  content: '\f167'; }

.icon-cog:before {
  content: '\f013'; }

.icon-comment:before {
  content: '\f075'; }

.icon-globe:before {
  content: '\f0ac'; }

.icon-map-marker:before {
  content: '\f041'; }

.icon-mobile-phone:before {
  content: '\f10b'; }

.icon-phone:before {
  content: '\f095'; }

.icon-play:before {
  content: '\f04b'; }

.icon-search:before {
  content: '\f002'; }

.icon-youtube-play:before {
  content: '\f16a'; }

.icon-cart:before {
  content: '\f07a'; }

.icon-chevron-right {
  color: #0094b6;
  display: block;
  font-size: 0.875em;
  font-weight: bold;
  margin: 1em 0;
  position: relative; }
  .icon-chevron-right:after {
    color: #ebad48;
    content: '\f054';
    margin-left: 10px; }

.icon-chevron-left:before {
  content: '\f053';
  margin-right: 10px; }

.icon-circle-right:after {
  content: '\f18e'; }

@font-face {
  font-family: 'si';
  font-style: normal;
  font-weight: normal;
  src: url('../fonts/socicon-1.3/socicon.eot');
  src: url('../fonts/socicon-1.3/socicon.eot?#iefix') format('embedded-opentype'), url('../fonts/socicon-1.3/socicon.woff') format('woff'), url('../fonts/socicon-1.3/socicon.ttf') format('truetype'), url('../fonts/socicon-1.3/socicon.svg#icomoonregular') format('svg'); }

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  @font-face {
    font-family: si;
    src: url('../fonts/socicon-1.3/socicon.svg#icomoonregular') format(svg); } }

.soc {
  list-style: none;
  margin: 0;
  overflow: hidden;
  padding: 5px 0 0 0; }
  .soc li {
    display: inline-block;
    zoom: 1;
    *display: inline; }
  .soc li a {
    background-color: #107792;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: #fff;
    display: block;
    font-family: si !important;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    height: 30px;
    line-height: 30px;
    margin-right: 9px;
    overflow: hidden;
    position: relative;
    text-align: center;
    text-decoration: none;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition: 0.1s;
    -moz-transition: 0.1s;
    -ms-transition: 0.1s;
    -o-transition: 0.1s;
    transition: 0.1s;
    -webkit-transition-property: transform;
    transition-property: transform;
    width: 30px;
    z-index: 1;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
    .soc li a:hover {
      -webkit-transform: translateY(-2.5px);
      transform: translateY(-2.5px);
      z-index: 2; }

.soc-icon-last {
  margin: 0 !important; }

.soc-twitter:before {
  content: 'a'; }

.soc-facebook:before {
  content: 'b'; }

.soc-google:before {
  content: 'c'; }

.soc-linkedin:before {
  content: 'j'; }

.soc-youtube:before {
  content: 'r'; }

.soc-instagram:before {
  content: 'x'; }
/* = Forms = */
button, input, select, textarea {
  font-size: 100%; }

label {
  color: #333;
  display: block;
  font-weight: bold;
  line-height: 2; }

.required:before {
  color: #ac181b;
  content: "*";
  margin-left: -10px;
  margin-right: 5px; }

input[type='password'], input[type='text'], input[type='email'], input[type='tel'], textarea {
  border: 1px solid #ccc;
  color: #231f20;
  display: block;
  font-family: ;
  font-size: 16px;
  margin-bottom: 2em;
  padding: 0.4em 1%;
  width: 98%; }

input[type='text'] + p.note {
  margin-top: -1.5em; }

input[type='file'] {
  border: none;
  margin-bottom: 1em; }

select {
  margin-bottom: 2em; }

.multiple select {
  padding-left: 5px;
  padding-right: 10px; }

textarea {
  height: 12em;
  overflow: auto;
  resize: vertical; }

input[type='textarea'] {
  height: 12em;
  overflow: auto;
  resize: vertical; }

.radio, .checkbox {
  font-weight: normal; }
  .radio label, .checkbox label {
    width: 100%; }

input[type='checkbox'], input[type='radio'] {
  margin-right: 5px;
  padding: 0; }

input[type='file'] {
  color: #333;
  display: block;
  font-size: 16px;
  max-width: 250px;
  width: 100%; }

legend {
  clear: both;
  color: #ebad48;
  font-family: 'Raleway', Arial, sans-serif;
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 1em;
  white-space: normal;
  display: inline-table; }

button, input[type='button'], input[type='reset'], input[type='submit'] {
  cursor: pointer;
  max-width: 100%;
  -webkit-appearance: button;
  -moz-appearance: button; }

button, input[type='button'], input[type='reset'], input[type='submit'], a.button {
  -webkit-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
  background: #f1ae2f;
  border: none;
  border-radius: 4px;
  color: #444;
  display: inline-block;
  font-family: 'Raleway', Arial, sans-serif;
  font-size: 1em;
  font-weight: bold;
  padding: 2% 5%;
  line-height: 1;
  margin-bottom: 0.5em;
  margin-left: 0;
  margin-right: 0.5em;
  padding: 0.6em 0.7em;
  text-align: center;
  text-decoration: none; }
  button:hover, input[type='button']:hover, input[type='reset']:hover, input[type='submit']:hover, a.button:hover, button:focus, input[type='button']:focus, input[type='reset']:focus, input[type='submit']:focus, a.button:focus {
    background: #1d7382;
    cursor: pointer; }
  button.suggested, input[type='button'].suggested, input[type='reset'].suggested, input[type='submit'].suggested, a.button.suggested {
    background: #1d7382;
    color: #fff; }
  button.suggested:hover, input[type='button'].suggested:hover, input[type='reset'].suggested:hover, input[type='submit'].suggested:hover, a.button.suggested:hover, button.suggested:focus, input[type='button'].suggested:focus, input[type='reset'].suggested:focus, input[type='submit'].suggested:focus, a.button.suggested:focus {
    background: #12525d;
    color: #fff; }
  button.submit, input[type='button'].submit, input[type='reset'].submit, input[type='submit'].submit, a.button.submit {
    font-size: 1.25em; }

button.default {
  display: none; }

button.disabled, input[type='button'][disabled], input[type='reset'][disabled], input[type='submit'][disabled], a.button.disabled {
  background-image: -webkit-linear-gradient(bottom, #888, #6f6f6f);
  background-image: -o-linear-gradient(bottom, #888, #6f6f6f);
  background-image: linear-gradient(to bottom, #888, #6f6f6f);
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=bottom, startColorStr='#FF888888', endColorStr='#FF6E6E6E');
  border-color: #6f6f6f;
  cursor: default; }

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0; }

form > section {
  border-bottom: 1px solid #ddd;
  display: inline-block;
  margin-bottom: 2em;
  padding-bottom: 1em;
  width: 100%; }
  form + iframe[name=gateway] {
    display: none; }

form fieldset {
  margin-bottom: 1em; }
  form fieldset div {
    margin-bottom: 2em;
    position: relative; }
  form fieldset > div {
    clear: both;
    margin-bottom: 0; }
  form fieldset.full {
    margin-left: 0;
    width: 100%; }
    form fieldset.full > div {
      clear: none;
      margin-bottom: 1em; }
    form fieldset.full > div input {
      float: left;
      margin-left: 0;
      margin-right: 1em;
      width: auto; }
    form fieldset.full > div label {
      clear: none;
      margin-right: 1em;
      width: 80%; }
    form fieldset.full > div.submit {
      float: none;
      width: 100%; }
      form fieldset.full > div.submit input {
        float: right; }
    form fieldset.full > .messaging {
      float: none;
      margin-bottom: 2em;
      width: 100%; }
    form fieldset.full.employer label {
      clear: left; }
    form fieldset.full.employer input {
      width: 95%; }
    form fieldset.full.employer > div > div {
      clear: both;
      margin-bottom: 0; }
  form fieldset.school > div {
    width: 100%; }
    form fieldset.school > div label {
      clear: left; }
    form fieldset.school > div input {
      width: 90%;
      float: none; }
    form fieldset.school > div .messaging {
      width: 90%; }
  form fieldset .textarea label {
    float: none; }
  form fieldset.contact {
    clear: left; }
  form fieldset.search button {
    margin-top: 20px; }
  form label {
    font-size: 0.93em;
    line-height: 1.2;
    margin-bottom: 0.25em; }
  form .attachment input {
    max-width: 250px; }
  form .submit input {
    margin-left: 0; }
  form input + button, form select + button {
    margin-left: 1em; }
  form input[type="hidden"] + button {
    margin-left: 0; }
  form .actions {
    clear: both; }
  form.firm_location {
    margin: 2em 0; }
  form.firm_location label {
    float: left; }
  form.firm_location select {
    float: left;
    margin-left: 0.5em; }
  form.firm_location a.button {
    float: right;
    margin-right: 0; }
  form.group .full > .messaging {
    float: none;
    margin-bottom: 2em;
    width: 100%; }
    form.group .full label {
      width: fit-content; }
/* = Messaging = */
.success {
  border-radius: 4px;
  margin-bottom: 1.5em;
  padding: 1em 3.25em;
  position: relative;
  background: #73b34a; }
  .success a {
    text-decoration: underline; }
  .success:before {
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    speak: none;
    content: '';
    display: block;
    font-size: 20px;
    height: 23px;
    left: 1em;
    position: absolute;
    top: 0.6em;
    width: 23px; }
  .success hr {
    margin: 1em 0;
    border-color: #666; }
  .success :last-child {
    margin-bottom: 0; }
  .success:before {
    content: '\f00c'; }

.error {
  border-radius: 4px;
  margin-bottom: 1.5em;
  padding: 1em 3.25em;
  position: relative;
  background: #ffd8d9;
  clear: both;
  padding: 0.5em 2.25em;
  top: 0; }
  .error a {
    text-decoration: underline; }
  .error:before {
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    speak: none;
    content: '';
    display: block;
    font-size: 20px;
    height: 23px;
    left: 1em;
    position: absolute;
    top: 0.6em;
    width: 23px; }
  .error hr {
    margin: 1em 0;
    border-color: #666; }
  .error :last-child {
    margin-bottom: 0; }
  .error:before {
    content: '\f12a';
    top: 0.25em; }

.info {
  border-radius: 4px;
  margin-bottom: 1.5em;
  padding: 1em 3.25em;
  position: relative;
  background: #b8e0f9; }
  .info a {
    text-decoration: underline; }
  .info:before {
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    speak: none;
    content: '';
    display: block;
    font-size: 20px;
    height: 23px;
    left: 1em;
    position: absolute;
    top: 0.6em;
    width: 23px; }
  .info hr {
    margin: 1em 0;
    border-color: #666; }
  .info :last-child {
    margin-bottom: 0; }
  .info:before {
    content: '\f0a2'; }
  .info a.button {
    text-decoration: none; }

.help {
  border-radius: 4px;
  margin-bottom: 1.5em;
  padding: 1em 3.25em;
  position: relative;
  background: #f2f2ef;
  clear: both; }
  .help a {
    text-decoration: underline; }
  .help:before {
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    speak: none;
    content: '';
    display: block;
    font-size: 20px;
    height: 23px;
    left: 1em;
    position: absolute;
    top: 0.6em;
    width: 23px; }
  .help hr {
    margin: 1em 0;
    border-color: #666; }
  .help :last-child {
    margin-bottom: 0; }
  .help:before {
    content: '\f129'; }

.warning {
  border-radius: 4px;
  margin-bottom: 1.5em;
  padding: 1em 3.25em;
  position: relative;
  background: #fcf9b5;
  /*#faffb1;*/ }
  .warning a {
    text-decoration: underline; }
  .warning:before {
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    speak: none;
    content: '';
    display: block;
    font-size: 20px;
    height: 23px;
    left: 1em;
    position: absolute;
    top: 0.6em;
    width: 23px; }
  .warning hr {
    margin: 1em 0;
    border-color: #666; }
  .warning :last-child {
    margin-bottom: 0; }
  .warning:before {
    content: '\f071'; }

.alert {
  border-radius: 4px;
  margin-bottom: 1.5em;
  padding: 1em 3.25em;
  position: relative;
  background: #ebad48;
  text-align: center; }
  .alert a {
    text-decoration: underline; }
  .alert:before {
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    speak: none;
    content: '';
    display: block;
    font-size: 20px;
    height: 23px;
    left: 1em;
    position: absolute;
    top: 0.6em;
    width: 23px; }
  .alert hr {
    margin: 1em 0;
    border-color: #666; }
  .alert :last-child {
    margin-bottom: 0; }
/* = Alert Banner = */
.alert-banner {
  background: #1d7382;
  color: #fff;
  padding: 1em 0;
  text-align: center; }
  .alert-banner a {
    color: #fff;
    font-weight: 600; }
  .alert-banner a:hover {
    text-decoration: underline; }
  .alert-banner i {
    margin-right: 0.5em; }
  .alert-banner p {
    display: inline; }
  .alert-banner p:last-of-type {
    margin: 0; }
/* = Tables = */
table, div.table {
  border-collapse: collapse;
  border-spacing: 0;
  border: 2px solid #f2f2ef;
  display: table;
  margin-bottom: 1.5em;
  width: 100%; }
  table caption, div.table caption {
    font-size: 12px;
    margin-bottom: 0.75em; }
  table td, div.table td, table th, div.table th {
    padding: 0.5em 1em;
    text-align: left;
    vertical-align: top; }
  table th, div.table th {
    background: #ddd;
    color: #231f20;
    font-weight: bold;
    text-transform: uppercase; }
  table th.total, div.table th.total {
    font-size: 18px; }
  table td, div.table td, table > a, div.table > a {
    background: #f8f8f8;
    border-right: 1px solid #dededc;
    padding: 15px 10px; }
  table tr:nth-child(even) td, div.table tr:nth-child(even) td, table > a:nth-child(even), div.table > a:nth-child(even) {
    background: #fff; }
  table a, div.table a {
    display: table-row;
    padding: 0; }
  table a > div, div.table a > div {
    border-right: 1px solid #dededc;
    display: table-cell;
    font-size: 14px;
    padding: 15px 10px;
    text-align: left; }
    table a > div:last-child, div.table a > div:last-child {
      border: none; }
/* = Custom Patterns = */
.intro {
  color: #888;
  font-size: 1.6em;
  margin-bottom: 2em; }

h1 + nav.secondary {
  margin-top: -32px; }

nav.secondary {
  background: #f6f6f6;
  margin: 1em 0 3em;
  padding: 0.5em 0;
  position: relative; }
  nav.secondary ul {
    margin-bottom: 0;
    padding: 0;
    text-align: center; }
  nav.secondary ul li {
    background: #f6f6f6;
    display: inline-block;
    font-size: 0.9em;
    margin: 0.25em 0;
    padding: 0.5em 0 0.5em 20px;
    position: relative; }
    nav.secondary ul li:after {
      color: #666;
      content: "|";
      margin: 0 0 0 20px;
      position: relative;
      right: 0; }
    nav.secondary ul li:first-child, nav.secondary ul li:last-child {
      margin-right: 0;
      padding-right: 0; }
    nav.secondary ul li:first-child:after, nav.secondary ul li:last-child:after {
      content: "";
      margin: 0; }
  nav.secondary > ul li:first-child {
    background: none;
    font-weight: bold; }
  nav.secondary ol {
    background: #f6f6f6; }
  nav.secondary:before, nav.secondary:after {
    background: #f6f6f6;
    content: "";
    height: 100%;
    position: absolute;
    right: 100%;
    top: 0;
    width: 100%; }
  nav.secondary:after {
    left: 100%;
    right: auto; }

.callout {
  background: #f6f6f6;
  margin-bottom: 1.5em;
  padding: 16px; }
  .callout p:last-child {
    margin-bottom: 0; }

.back_to_top {
  font-size: 0.8em;
  background: #ebad48;
  color: #000;
  padding: 12px 17px;
  position: fixed;
  z-index: 99999;
  bottom: 100px;
  right: 5%;
  opacity: 0;
  text-transform: uppercase;
  transition: all 0.2s linear; }
  .back_to_top:before {
    display: inline-block;
    padding-right: 10px;
    position: relative;
    top: 0;
    font-family: "FontAwesome";
    content: "\f077";
    transition: all 0.1s linear; }
  .back_to_top:hover:before {
    top: -5px; }
  .back_to_top.visible {
    opacity: 1; }
  .back_to_top:hover {
    cursor: pointer; }

.boxes > div, .articles > div, .boxes > a, .articles > a, .boxes > article, .articles > article {
  -webkit-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
  background: #fff;
  border-top: 7px solid #107792;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  display: block;
  margin-bottom: 3em;
  overflow: hidden;
  padding: 1em;
  position: relative; }
  .boxes > div p, .articles > div p, .boxes > a p, .articles > a p, .boxes > article p, .articles > article p {
    color: #231f20;
    position: relative;
    z-index: 10; }
    .boxes > div p.icon-chevron-right, .articles > div p.icon-chevron-right, .boxes > a p.icon-chevron-right, .articles > a p.icon-chevron-right, .boxes > article p.icon-chevron-right, .articles > article p.icon-chevron-right {
      color: #0094b6; }
  .boxes > div a, .articles > div a, .boxes > a a, .articles > a a, .boxes > article a, .articles > article a {
    margin-bottom: 0; }
  .boxes > div i, .articles > div i, .boxes > a i, .articles > a i, .boxes > article i, .articles > article i {
    -webkit-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
    bottom: -40px;
    color: #f6f6f6;
    font-size: 140px;
    position: absolute;
    right: -25px;
    z-index: 5; }
  .boxes > div:hover, .articles > div:hover, .boxes > a:hover, .articles > a:hover, .boxes > article:hover, .articles > article:hover {
    background: #f6f6f6;
    cursor: pointer; }
    .boxes > div:hover h3, .articles > div:hover h3, .boxes > a:hover h3, .articles > a:hover h3, .boxes > article:hover h3, .articles > article:hover h3 {
      color: #1d7382; }
    .boxes > div:hover i, .articles > div:hover i, .boxes > a:hover i, .articles > a:hover i, .boxes > article:hover i, .articles > article:hover i {
      color: #fff; }
  .boxes > div.clear, .articles > div.clear, .boxes > a.clear, .articles > a.clear, .boxes > article.clear, .articles > article.clear {
    clear: both;
    margin-left: 0; }
  .boxes > article:hover, .articles > article:hover {
    background: #fff;
    cursor: default; }
    .boxes > article:hover i, .articles > article:hover i {
      color: #ffe0a9; }

.articles > a, .articles > article {
  border-top-color: #ebad48; }
  .articles > a h2, .articles > article h2, .articles > a p, .articles > article p {
    width: 75%; }
  .articles > a img, .articles > article img {
    position: absolute;
    right: 0;
    top: 0;
    width: 15%; }
  .articles > a i, .articles > article i {
    color: #ffe0a9; }
  .articles > a img, .articles > article img {
    border: none;
    box-shadow: none; }

.pagination {
  clear: both;
  text-align: center; }
  .pagination ul {
    padding-left: 0; }
  .pagination ul li {
    background: #ddd;
    display: inline-block;
    list-style-type: none;
    margin: 0.5em;
    padding: 0; }
    .pagination ul li a {
      display: block;
      padding: 0.25em 1em; }
    .pagination ul li.current {
      background: #1d7382; }
    .pagination ul li.current a {
      color: #fff; }

.directory > a, .directory > div {
  -webkit-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
  color: #57585a;
  display: block;
  margin-bottom: 1em;
  padding: 1em; }
  .directory > a p, .directory > div p {
    color: #888;
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 0; }
  .directory > a span, .directory > div span {
    color: #888;
    font-size: 1em; }
  .directory > a:hover, .directory > div:hover {
    background: #f6f6f6; }
    .directory > a:hover h4, .directory > div:hover h4 {
      color: #1d7382;
      border-color: #ddd; }
    .directory > a:hover p, .directory > div:hover p, .directory > a:hover span, .directory > div:hover span {
      color: #57585a;
      color: #57585a; }

.dashboard > div {
  border-bottom: 1px solid #ccc;
  margin-bottom: 2em;
  margin-left: 2%;
  padding-bottom: 1em; }
  .dashboard > div .amount {
    display: block;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 2em; }
    .dashboard > div .amount.inline {
      display: inline-block; }
  .dashboard > div.primary {
    margin-left: 0;
    padding-left: 0;
    padding-right: 2%; }
    .dashboard > div.primary img {
      border-radius: 250px;
      margin: 0 0.5em 2em 0; }
    .dashboard > div.primary > div > div {
      margin-bottom: 1em; }
      .dashboard > div.primary > div > div > div {
        margin-bottom: 1em; }
  .dashboard > div.join {
    background: rgba(255, 255, 255, 0.3);
    padding: 1em; }
  .dashboard > div a.icon-chevron-right {
    display: block; }
  .dashboard > div h2 {
    font-size: 1.625em; }
  .dashboard > div h3 {
    font-size: 0.975em;
    font-weight: bold;
    padding-bottom: 0.5em;
    text-transform: none; }
  .dashboard p {
    margin-bottom: 0.5em; }
  .dashboard a.button {
    font-size: 0.75em;
    line-height: 1.2;
    margin: 16px 0; }

.person img {
  margin-bottom: 2em; }
  .person h2 {
    font-size: 1.625em; }
  .person h3 {
    font-size: 0.975em;
    font-weight: bold;
    text-transform: none; }
  .person p, .person a {
    margin-bottom: 0.5em; }
  .person p a, .person a a {
    margin-bottom: 0; }
  .person a {
    display: inline-block; }
  .person .company {
    margin-bottom: 2em; }

div.credits h3, div.dues h3, div.committees h3 {
  padding-bottom: 0.5em; }
  div.credits p, div.dues p, div.committees p {
    line-height: 1.5; }
  div.credits .amount, div.dues .amount, div.committees .amount {
    font-size: 3em; }
  div.credits time, div.dues time, div.committees time {
    font-weight: bold; }

article {
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  padding: 1em;
  position: relative; }
  article .meta {
    display: block;
    font-size: 1em; }
  article p {
    position: relative;
    z-index: 65; }
  article i.fa {
    color: #ffe0a9;
    font-size: 140px;
    position: absolute;
    right: -20px;
    bottom: -30px;
    z-index: 50; }
  article img {
    position: absolute;
    right: 0;
    top: 0;
    width: 15%; }
  article div {
    width: 80%; }
  article div h2 {
    font-size: 24px; }

.legend {
  text-align: right; }
  .legend i {
    color: #ebad48; }
  .legend span {
    color: #ac181b; }

.content {
  margin-bottom: 3em; }
  .content iframe, .content img {
    clear: right;
    float: right;
    margin-bottom: 1.5em;
    margin-left: 5%; }

body["id*=tennessee_cpa_journal"] .articles {
  border-top: 1px solid #ddd;
  clear: both;
  padding-top: 2em; }

body#tscpa_instructional_video_series section[role="main"] > section {
  text-align: center; }

body#tscpa_young_cpa_workgroup nav.secondary ul li:after {
  content: ""; }

.filter_by_category {
  margin: 1em 0 2em; }
  .filter_by_category h3 {
    padding: 0;
    vertical-align: middle; }
  .filter_by_category a {
    -webkit-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
    background: #ebad48;
    color: #fff;
    display: inline-block;
    margin: 0.25em;
    padding: 0.5em 1em;
    text-transform: uppercase;
    vertical-align: middle; }
  .filter_by_category a.active {
    background: #1d7382; }
  .filter_by_category a span {
    font-weight: normal; }

.details {
  clear: left; }
  .details h3 {
    padding-bottom: 14px; }
  .details h4 span span {
    color: #ccc; }
  .details > div, .details > table, .details > section {
    margin-bottom: 3em; }

.start_time, .end_time {
  color: #888; }
  .start_time span, .end_time span {
    font-size: 16px; }

aside.meta {
  background: #f6f6f6;
  margin-bottom: 2em;
  margin-left: 0;
  padding: 2%; }
  aside.meta h3 {
    font-size: 20px; }
  aside.meta .date_time {
    font-size: 24px;
    width: 60%; }
  aside.meta .date_time .start_date {
    display: block; }
  aside.meta dl.group {
    padding-left: 0; }
  aside.meta dl.group dt {
    margin-bottom: 1em;
    margin-left: 0;
    width: 60%; }
  aside.meta dl.group dd {
    margin-bottom: 1em;
    width: 38%; }
  aside.meta .contact {
    float: left;
    padding: 0;
    width: 100%; }
  aside.meta .contact dl {
    padding: 1em 0; }
  aside.meta .contact dt, aside.meta .contact dd {
    float: left;
    margin-left: 0;
    padding-left: 0;
    width: auto; }
  aside.meta .contact dt {
    clear: left; }
  aside.meta .contact dd {
    margin-bottom: 0;
    margin-left: 2%; }
  aside.meta > div {
    clear: left;
    margin-bottom: 0.5em; }
  aside.meta .address {
    clear: both; }
  aside.meta .address > span {
    display: block; }

.ads {
  background: #fff;
  padding: 4em 0;
  text-align: center; }
  .ads .columns div {
    padding: 0 1em; }

.actions {
  margin: 1em 0; }

p.note, span.note {
  color: #888;
  font-size: 14px;
  font-style: italic; }

.listing.image {
  border: none;
  clear: both; }
  .listing.image div {
    border-bottom: 1px solid #ddd;
    margin-bottom: 1em;
    padding: 1em 0; }
  .listing.image div:last-child {
    border: none; }
  .listing.image img, .listing.image p, .listing.image ul {
    float: right;
    margin-left: 2%;
    width: 78%; }
  .listing.image img {
    float: left;
    margin: 0;
    max-height: 100px;
    max-width: 200px;
    width: auto; }

.bios_short {
  column-count: 1; }
  .bios_short .group {
    width: 100%;
    break-inside: avoid; }
  .bios_short > p, .bios_short > div {
    background: #f6f6f6;
    margin-bottom: 32px;
    padding: 16px; }
  .bios_short > p img, .bios_short > div img {
    float: left;
    margin: 0 32px 32px 0; }
  .bios_short > p > div, .bios_short > div > div {
    width: calc(100% - 152px);
    float: right; }

#staff .bios_short img {
  max-width: 120px; }

.bios > div {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  margin-bottom: 32px; }
  .bios > div img {
    float: left;
    margin: 32px 32px 16px 16px; }
  .bios > div p {
    padding: 0 16px; }

section[role="main"] > section, #tscpa-policies-bylaws > section, #benefit-partners > section, #onsite-course-topics > section, #why-join > section, #college_member_details > section, #workgroup-intro > section {
  border-bottom: 1px solid #ddd;
  margin-bottom: 2em;
  padding-bottom: 2em; }
  section[role="main"] > section:last-child, #tscpa-policies-bylaws > section:last-child, #benefit-partners > section:last-child, #onsite-course-topics > section:last-child, #why-join > section:last-child, #college_member_details > section:last-child, #workgroup-intro > section:last-child {
    border: none; }
  section[role="main"] > .messaging, #tscpa-policies-bylaws > .messaging, #benefit-partners > .messaging, #onsite-course-topics > .messaging, #why-join > .messaging, #college_member_details > .messaging, #workgroup-intro > .messaging {
    margin-bottom: 2em;
    margin-top: 1em; }

.video_wrapper {
  margin-bottom: 32px;
  position: relative;
  padding-top: 35px;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden; }
  .video_wrapper iframe {
    left: 0;
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%; }
  .video_wrapper.course {
    padding-bottom: 34.6%; }

#new_member_orientation .video_wrapper {
  padding-bottom: 53.25%; }

iframe {
  border: 3px solid #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  margin-bottom: 32px; }
  iframe.video {
    float: right;
    margin: 32px 0 32px 32px; }

.columns div iframe {
  width: 100%; }

#leadership h1 {
  margin-bottom: 0; }
  #leadership nav.secondary {
    margin-top: -16px; }
  #leadership nav.secondary ul {
    text-align: left; }

.select2-container {
  box-sizing: border-box;
  display: block;
  width: 100% !important;
  margin: 0;
  position: relative;
  vertical-align: middle; }
  .select2-container .select2-selection--single {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    height: 28px;
    user-select: none;
    -webkit-user-select: none; }
  .select2-container .select2-selection--multiple {
    box-sizing: border-box;
    cursor: pointer;
    min-height: 28px;
    display: block;
    user-select: none;
    -webkit-user-select: none;
    border-radius: 0; }

.receipt hr {
  margin: 1em 0; }
  .receipt table {
    border: none;
    margin: 0; }
  .receipt table tr th, .receipt table tr td {
    padding: 5px;
    background-color: #fbfbfb;
    border: none; }
/* Page Specific Styles */
body#contact .columns {
  margin-bottom: 32px; }
  body#contact .columns img {
    border: none;
    margin: 0; }
  body#contact .columns div.headquarters {
    vertical-align: bottom; }
  body#contact .columns dl {
    background: none;
    padding-left: 0;
    padding-top: 0; }
    body#contact .columns dl dt {
      margin-left: 0; }

body#search form.search {
  margin-bottom: 1em; }
  body#search form.search .text, body#search form.search .submit {
    display: inline-block;
    margin-bottom: 0;
    margin-left: 0.5em;
    margin-right: 0;
    vertical-align: top; }
  body#search form.search .text {
    margin-left: 0;
    width: 60%; }
  body#search form.search input, body#search form.search button {
    margin-bottom: 0; }
  body#search ul.items {
    list-style: none;
    padding-left: 0; }
  body#search ul.items li {
    border-bottom: 2px solid #f6f6f6;
    margin-bottom: 1.5em; }
    body#search ul.items li .content {
      margin-bottom: 0; }

@media only screen and (min-width: 600px) {
  h1 {
    font-size: 40px;
    padding: 64px 0; }

  dl {
    margin-bottom: 1em;
    padding: 1em; }
    dl dt, dl dd {
      float: left;
      margin-left: 2%;
      width: 48%; }
    dl dt {
      clear: left;
      width: 40%; }

  .directory > a, .directory > div {
    margin-bottom: 3em;
    min-height: 5em; }
    .directory.group > a, .directory.group > div {
      float: left;
      margin-left: 3%;
      min-height: 5em;
      width: 47%; }
      .directory.group > a:first-child, .directory.group > div:first-child {
        margin-left: 0; }
      .directory.group > a:nth-child(2n + 1), .directory.group > div:nth-child(2n + 1) {
        clear: left;
        margin-left: 0; }

  form.group fieldset.full {
    width: 100%; }
    form.group fieldset.full > div {
      float: left;
      margin-bottom: 1em;
      width: 50%; }
      form.group fieldset.full > div.submit {
        float: none;
        width: 100%; }
        form.group fieldset.full > div.submit input {
          float: right; }

  .dashboard {
    margin-bottom: 4em; }
    .dashboard p {
      line-height: 1.5; }
    .dashboard > div {
      border-bottom: none;
      clear: none;
      float: left;
      width: 31.33%; }
    .dashboard > div .amount {
      font-size: 2em; }
    .dashboard > div.primary {
      float: left;
      width: 100%; }
    .dashboard > div.primary img {
      float: left;
      margin: 0;
      width: 35%; }
    .dashboard > div.primary > div {
      float: left;
      margin-left: 5%;
      width: 60%; }
      .dashboard > div.primary > div > div {
        float: left;
        width: 48%; }
    .dashboard > div.join {
      margin-top: -1em;
      width: 62%; }

  .person img {
    float: left;
    margin: 0;
    width: 35%; }
    .person .profile {
      float: left;
      margin-left: 5%;
      width: 60%; }

  aside.meta h2 {
    float: left;
    padding-bottom: 24px; }
    aside.meta h2.credits {
      float: right;
      margin-left: 2%; }
    aside.meta h3 {
      padding-bottom: 14px; }
    aside.meta .date_time {
      width: 100%; }
    aside.meta > div {
      clear: none;
      float: left;
      margin-left: 3%; }
    aside.meta > div.location {
      clear: left; }

  .boxes.group > div.quarter, .articles.group > div.quarter, .boxes.group > a.quarter, .articles.group > a.quarter, .boxes.group > article.quarter, .articles.group > article.quarter {
    float: left;
    margin-left: 2%;
    min-height: 8em;
    width: 48%; }
    .boxes.group > div.quarter:first-child, .articles.group > div.quarter:first-child, .boxes.group > a.quarter:first-child, .articles.group > a.quarter:first-child, .boxes.group > article.quarter:first-child, .articles.group > article.quarter:first-child, .boxes.group > div.quarter:nth-child(2n+1), .articles.group > div.quarter:nth-child(2n+1), .boxes.group > a.quarter:nth-child(2n+1), .articles.group > a.quarter:nth-child(2n+1), .boxes.group > article.quarter:nth-child(2n+1), .articles.group > article.quarter:nth-child(2n+1) {
      margin-left: 0; }
    .boxes.group > div.quarter p, .articles.group > div.quarter p, .boxes.group > a.quarter p, .articles.group > a.quarter p, .boxes.group > article.quarter p, .articles.group > article.quarter p {
      margin-bottom: 0; }

  #staff .bios_short > div {
    min-height: 270px; }

  nav.secondary ol > div {
    float: left;
    padding: 0.5em;
    width: 50%; }
    nav.secondary.fixed {
      position: fixed;
      top: 32px;
      width: 100%;
      z-index: 400; }
    nav.secondary.fixed + .intro {
      margin-top: 144px; }

  #leadership nav.secondary.fixed {
    top: 16px; } }

@media only screen and (min-width: 768px) {
  h1 {
    padding: 102.4px 0; }

  body, html {
    overflow-x: visible; }

  .boxes.group > div, .articles.group > div, .boxes.group > a, .articles.group > a, .boxes.group > article, .articles.group > article {
    float: left;
    margin-bottom: 3em;
    margin-left: 3%;
    min-height: 15em;
    width: 31.33%; }
    .boxes.group > div:first-child, .articles.group > div:first-child, .boxes.group > a:first-child, .articles.group > a:first-child, .boxes.group > article:first-child, .articles.group > article:first-child {
      margin-left: 0; }
    .boxes.group > div:nth-child(3n+1), .articles.group > div:nth-child(3n+1), .boxes.group > a:nth-child(3n+1), .articles.group > a:nth-child(3n+1), .boxes.group > article:nth-child(3n+1), .articles.group > article:nth-child(3n+1) {
      clear: left;
      margin-left: 0; }
    .boxes.group > div.double, .articles.group > div.double, .boxes.group > a.double, .articles.group > a.double, .boxes.group > article.double, .articles.group > article.double {
      width: 65.66%; }
    .boxes.group > div.quarter, .articles.group > div.quarter, .boxes.group > a.quarter, .articles.group > a.quarter, .boxes.group > article.quarter, .articles.group > article.quarter {
      clear: none;
      margin-left: 2%;
      min-height: 0;
      width: 22%; }
      .boxes.group > div.quarter:nth-child(2n+1), .articles.group > div.quarter:nth-child(2n+1), .boxes.group > a.quarter:nth-child(2n+1), .articles.group > a.quarter:nth-child(2n+1), .boxes.group > article.quarter:nth-child(2n+1), .articles.group > article.quarter:nth-child(2n+1) {
        margin-left: 2%; }
      .boxes.group > div.quarter:first-child, .articles.group > div.quarter:first-child, .boxes.group > a.quarter:first-child, .articles.group > a.quarter:first-child, .boxes.group > article.quarter:first-child, .articles.group > article.quarter:first-child {
        margin-left: 0; }
    .boxes.half > div, .articles.half > div, .boxes.half > a, .articles.half > a, .boxes.half > article, .articles.half > article {
      float: left;
      margin-left: 2%;
      width: 48%; }
    .boxes.half > div.clear, .articles.half > div.clear, .boxes.half > a.clear, .articles.half > a.clear, .boxes.half > article.clear, .articles.half > article.clear {
      clear: both;
      margin-left: 0; }
    .boxes.half > div:nth-child(3n+1), .articles.half > div:nth-child(3n+1), .boxes.half > a:nth-child(3n+1), .articles.half > a:nth-child(3n+1), .boxes.half > article:nth-child(3n+1), .articles.half > article:nth-child(3n+1) {
      clear: none;
      margin-left: 2%; }
    .boxes.half > div:first-child, .articles.half > div:first-child, .boxes.half > a:first-child, .articles.half > a:first-child, .boxes.half > article:first-child, .articles.half > article:first-child {
      margin-left: 0; }
    .boxes.half > div:nth-child(2n+1), .articles.half > div:nth-child(2n+1), .boxes.half > a:nth-child(2n+1), .articles.half > a:nth-child(2n+1), .boxes.half > article:nth-child(2n+1), .articles.half > article:nth-child(2n+1) {
      clear: left;
      margin-left: 0; }
    .boxes.half > article, .articles.half > article {
      min-height: 17em; }

  .directory.group.group > a {
    float: left;
    width: 31.33%; }
    .directory.group.group > a:nth-child(2n + 1) {
      clear: none;
      margin-left: 3%; }
    .directory.group.group > a:nth-child(3n + 1) {
      clear: left;
      margin-left: 0; }
    .directory.group.group > a:first-child {
      margin-left: 0; }

  form.group fieldset {
    float: right;
    margin-bottom: 1em;
    margin-left: 2%;
    width: 48%; }
    form.group fieldset.full {
      clear: left;
      margin-left: 0;
      width: 100%; }
    form.group fieldset.full > div {
      float: left;
      margin-bottom: 1em;
      margin-left: 2%;
      width: 31.33%; }
      form.group fieldset.full > div:first-child {
        margin-left: 0; }
      form.group fieldset.full > div.submit {
        float: none;
        width: 100%; }
        form.group fieldset.full > div.submit input {
          float: right; }
    form.group fieldset.full.employer > div {
      float: left;
      margin-bottom: 1em;
      margin-left: 2%;
      width: 48%; }
      form.group fieldset.full.employer > div.first {
        margin-left: 0; }
      form.group fieldset.full.employer .messaging {
        float: none;
        margin-bottom: 2em;
        width: 100%; }
    form.group fieldset.school > div {
      margin-left: 0;
      width: 50%; }
      form.group fieldset.school > div label {
        clear: left; }
    form.group fieldset:first-child, form.group fieldset:nth-child(2n+1) {
      float: left;
      margin-left: 0; }

  .dashboard {
    margin-bottom: 2em; }
    .dashboard > div {
      clear: none;
      float: left;
      width: 18%; }
    .dashboard > div .amount {
      font-size: 3em; }
    .dashboard > div.primary {
      border-right: 1px solid #ddd;
      float: left;
      width: 40%; }
    .dashboard > div.primary img {
      float: left;
      width: 35%; }
    .dashboard > div.primary > div {
      float: left;
      margin-left: 5%;
      width: 60%; }
      .dashboard > div.primary > div h3 {
        font-size: 0.975em;
        font-weight: bold; }
      .dashboard > div.primary > div > div {
        width: 100%; }
    .dashboard > div.join {
      width: 36%; }

  aside.meta {
    float: left;
    width: 30%; }
    aside.meta h2 {
      float: none;
      margin-left: 0; }
    aside.meta h2.credits {
      float: none; }
    aside.meta > div {
      clear: left; }

  div.details {
    clear: none;
    float: right;
    width: 65%; }

  .bios_short {
    display: flex;
    flex-wrap: wrap; }
    .bios_short > p, .bios_short > div {
      margin-bottom: 32px;
      min-height: 400px;
      flex-basis: calc(50% - .5rem);
      margin-right: 0.5rem; } }

@media print {
  .back_to_top.visible, .edit_panel {
    display: none; } }

img.justified_left {
  float: left;
  margin-right: 1em;
  margin-bottom: 1em; }
/**
 * = Layout =
 * = Table of Contents =
 *
 * header
 * torso
 * aside
 * footer
 * boxes
 * pagination
 * tablet only
 * tablet and up
 * desktop
 *
 */
.wrapper {
  min-height: 100%;
  position: relative; }

header {
  background: #fff; }
  header:before, header:after {
    content: '';
    display: table; }
  header:after {
    clear: both; }
  header > div > div {
    padding: 20px 0 0; }
  header > div > div.branding {
    float: left;
    margin-bottom: 14px;
    width: 45%; }
    header > div > div.branding img {
      border: none;
      box-shadow: none; }
  header > div > div.trigger {
    float: right; }

.maintenance {
  padding-top: 15px;
  text-align: center;
  background-color: #ebad48; }
  .maintenance h2 {
    color: black;
    font-size: 1.25em; }

.torso {
  padding-bottom: 1.5em;
  padding-top: 1.5em; }

.main {
  padding-bottom: 3em; }
  .main:before, .main:after {
    content: '';
    display: table; }
  .main:after {
    clear: both; }

section[role="main"] {
  background: #fff;
  float: left;
  margin: 0;
  min-height: 100%;
  padding-bottom: 3em;
  width: 100%; }
  section[role="main"] > * {
    margin: 0 auto;
    max-width: 1100px;
    width: 80%; }
  section[role="main"] > h1 {
    margin-bottom: 32px;
    max-width: 1400px;
    padding-left: 10%;
    width: 100%; }
  section[role="main"] > nav.secondary {
    margin: -32px auto 3em; }

footer.primary {
  background: #f2f2ef;
  clear: both;
  color: #888;
  font-size: 14px;
  padding-bottom: 1em;
  padding-top: 1em;
  position: relative; }
  footer.primary a[href="mailto:tscpa@tscpa.com"] {
    color: #888; }
  footer.primary > div > div:first-child {
    border-bottom: 1px solid #888;
    display: none;
    margin: 1.5em 0; }
  footer.primary > div > div:first-child:before, footer.primary > div > div:first-child:after {
    content: '';
    display: table; }
  footer.primary > div > div:first-child:after {
    clear: both; }
  footer.primary > div > div:first-child ul {
    float: left;
    padding-left: 0; }
    footer.primary > div > div:first-child ul {
      display: inline-block;
      list-style-type: none;
      margin-bottom: 1em;
      padding-left: 0; }
    footer.primary > div > div:first-child ul li {
      display: inline-block; }
      footer.primary > div > div:first-child ul li a {
        color: #231f20;
        display: block;
        font-size: 1em;
        font-weight: bold;
        height: 100%;
        padding: 1em 0.7em 0;
        text-transform: uppercase;
        width: 100%; }
      footer.primary > div > div:first-child ul li:first-child a {
        padding-left: 0; }
      footer.primary > div > div:first-child ul li:last-child {
        margin-right: 0; }
        footer.primary > div > div:first-child ul li:last-child a {
          padding-right: 0; }
      footer.primary > div > div:first-child ul li.name {
        padding: 1em 0.7em 0; }
        footer.primary > div > div:first-child ul li.name a {
          display: inline; }
    footer.primary > div > div:first-child ul li a {
      color: #888; }
    footer.primary > div > div:first-child ul li:first-child {
      padding-left: 0; }
    footer.primary > div > div:first-child ul:last-child {
      float: right; }
  footer.primary > div > div:not(:first-child) > div {
    margin-bottom: 1em; }
  footer.primary > div > div:not(:first-child) > div:before, footer.primary > div > div:not(:first-child) > div:after {
    content: '';
    display: table; }
  footer.primary > div > div:not(:first-child) > div:after {
    clear: both; }
  footer.primary > div > div:not(:first-child) > div b {
    color: #231f20; }
  footer.primary > div > div:not(:first-child) > div p {
    margin-bottom: 1em; }
  footer.primary > div > div:not(:first-child) > div > div {
    float: left;
    text-align: left;
    width: 100%; }
    footer.primary > div > div:not(:first-child) > div > div address ul {
      list-style: none;
      padding-left: 0; }
      footer.primary > div > div:not(:first-child) > div > div address ul li {
        display: block;
        margin: 0; }
        footer.primary > div > div:not(:first-child) > div > div address ul li b {
          margin: 0 5px 0; }
        footer.primary > div > div:not(:first-child) > div > div address ul li:last-child {
          margin: 0; }

@media only screen and (min-width: 768px) {
  header > div > div.branding {
    float: left;
    max-width: 285px;
    width: 30%; }
    header > div > div.trigger {
      position: relative;
      top: 50%;
      -webkit-transform: translateY(25%);
      -ms-transform: translateY(25%);
      transform: translateY(25%);
      float: right; }

  .main:before, .main:after {
    content: '';
    display: table; }
    .main:after {
      clear: both; }

  footer.primary {
    font-size: 14px; }
    footer.primary > div > div:not(:first-child) > div > div {
      text-align: left;
      width: 50%; }
      footer.primary > div > div:not(:first-child) > div > div address ul li {
        display: inline;
        margin: 0 5px 0; }
      footer.primary > div > div:not(:first-child) > div > div:last-child {
        text-align: right; } }

@media only screen and (min-width: 1025px) {
  header div.trigger {
    display: none; }

  footer.primary > div > div:first-child {
    display: block; } }

@media only screen and (min-width: 1400px) {
  section[role="main"] > h1 {
    padding-left: 8%; } }

@media only screen and (min-width: 1650px) {
  header .nav-utility-primary {
    display: flex;
    flex-direction: column;
    align-items: flex-end; } }
/**
 * = Navigation =
 * = Table of Contents =
 * nav
 * mobile nav
 * -- Mobile Navigation styles also found in ../vendor/inc/*
 * tablet only
 * tablet and up
 * desktop
 *
 *
 */
nav.primary ul, nav.utility ul, nav.primary .cart, nav.utility .cart {
  display: none; }
  nav.primary i, nav.utility i {
    color: #ebad48;
    left: 0.25em;
    position: absolute;
    top: 1em; }
  nav.primary div.search, nav.utility div.search {
    display: none; }

a[href='#mobile-navigation'] {
  background: #107792;
  border: none;
  text-transform: uppercase; }

.mm-header::after, .mm-footer::after {
  background: url('/img/swirl_pattern.png');
  bottom: 0;
  content: '';
  left: 0;
  opacity: 0.1;
  position: absolute;
  right: 0;
  top: 0; }

#mobile-navigation {
  display: none; }

.mm-menu {
  z-index: 500; }

html.mm-opened #mobile-navigation {
  display: block; }

div.search, li.search {
  display: inline-block;
  padding-top: 1em;
  text-align: left;
  vertical-align: top; }
  div.search input, li.search input, div.search button, li.search button {
    display: inline-block;
    margin-bottom: 0;
    margin-left: 0.5em;
    margin-right: 0; }
  div.search input, li.search input {
    margin-left: 0.85em;
    width: 60%;
    border-width: 2px;
    border-radius: 5px; }
  div.search:after, li.search:after {
    display: none !important; }

@media only screen and (min-width: 1025px) {
  nav.primary, nav.utility {
    float: right; }
    nav.primary:before, nav.utility:before, nav.primary:after, nav.utility:after {
      content: '';
      display: table; }
    nav.primary:after, nav.utility:after {
      clear: both; }
    nav.primary ul, nav.utility ul, nav.primary .cart, nav.utility .cart {
      display: inline-block; }
    nav.primary .cart, nav.utility .cart {
      margin-left: 10px; }
    nav.primary .cart a, nav.utility .cart a {
      border: 2px solid #73b34a;
      -webkit-border-radius: 5px 5px 5px 5px;
      -moz-border-radius: 5px 5px 5px 5px;
      border-radius: 5px 5px 5px 5px;
      -webkit-transition: all 250ms ease-in-out;
      transition: all 250ms ease-in-out;
      color: #73b34a;
      padding: 5px; }
      nav.primary .cart a:hover, nav.utility .cart a:hover {
        border: 2px solid #1d7382;
        -webkit-border-radius: 5px 5px 5px 5px;
        -moz-border-radius: 5px 5px 5px 5px;
        border-radius: 5px 5px 5px 5px;
        color: #1d7382; }
    nav.primary > ul, nav.utility > ul {
      display: inline-block;
      list-style-type: none;
      margin-bottom: 1em;
      padding-left: 0; }
      nav.primary > ul li, nav.utility > ul li {
        display: inline-block; }
        nav.primary > ul li a, nav.utility > ul li a {
          color: #231f20;
          display: block;
          font-size: 1em;
          font-weight: bold;
          height: 100%;
          padding: 1em 0.7em 0;
          text-transform: uppercase;
          width: 100%; }
        nav.primary > ul li:first-child a, nav.utility > ul li:first-child a {
          padding-left: 0; }
        nav.primary > ul li:last-child, nav.utility > ul li:last-child {
          margin-right: 0; }
          nav.primary > ul li:last-child a, nav.utility > ul li:last-child a {
            padding-right: 0; }
        nav.primary > ul li.name, nav.utility > ul li.name {
          padding: 1em 0.7em 0; }
          nav.primary > ul li.name a, nav.utility > ul li.name a {
            display: inline; }
      nav.primary > ul > li, nav.utility > ul > li {
        border-top: 5px solid #fff;
        transition: border-color 0.2s ease-in; }
      nav.primary > ul > li a, nav.utility > ul > li a {
        color: #525659; }
      nav.primary > ul > li:hover, nav.utility > ul > li:hover {
        border-top: 5px solid #ebad48; }
      nav.primary > ul.utility, nav.utility > ul.utility {
        margin: 0;
        margin-left: 2rem; }
    nav.primary ul li ul, nav.utility ul li ul {
      display: none; }
    nav.primary div.search, nav.utility div.search {
      display: inline-block;
      text-align: right; }
    nav.primary div.search > form, nav.utility div.search > form {
      display: flex; }
    nav.primary {
      position: relative; }
    nav.primary ul li {
      color: #107792;
      float: left;
      margin: 0;
      padding: 0;
      position: relative; }
      nav.primary ul li:hover > ul {
        display: block; }
      nav.primary ul li ul {
        background: #fff;
        -webkit-box-shadow: 5px 5px 20px 0 rgba(0, 0, 0, 0.2);
        -moz-box-shadow: 5px 5px 20px 0 rgba(0, 0, 0, 0.2);
        box-shadow: 5px 5px 20px 0 rgba(0, 0, 0, 0.2);
        display: none;
        left: 0;
        padding: 0;
        position: absolute;
        top: 100%;
        z-index: 75; }
      nav.primary ul li ul li {
        float: none;
        padding-left: 0.5em;
        width: 260px; }
        nav.primary ul li ul li > a {
          color: #107792;
          font-size: 0.9em;
          padding: 0.75em 0 0.75em 0.7em !important; }
        nav.primary ul li ul li:hover {
          background: #107792; }
          nav.primary ul li ul li:hover a {
            color: #fff; }
        nav.primary ul li ul li:first-child a {
          padding: 0.75em 0 0.75em 0.7em; }
        nav.primary ul li ul li:last-child a {
          padding: 0.75em 0 0.75em 0.7em; }
      nav.primary ul li:last-child ul {
        left: auto;
        right: 0; } }

[data-tooltip] {
  position: relative; }

[data-tooltip]::before {
  display: inline-block;
  content: attr(data-tooltip);
  position: absolute;
  z-index: 999;
  text-align: center;
  white-space: nowrap;
  background: #000;
  color: #e0e0e0;
  font-size: 1em;
  border-radius: 0.5em;
  line-height: 1.5em;
  padding: 0.5em 1em;
  opacity: 0;
  top: -0.5em;
  transition: opacity 0.5s ease-out, top 0.5s ease-in; }

[data-tooltip]:hover::before {
  opacity: 0.75;
  top: -3em; }

td [data-tooltip]::before {
  width: 100%;
  white-space: normal;
  top: 0;
  left: 0;
  transition: opacity 0.5s ease-out, left 0.5s ease-in; }

td [data-tooltip]:hover::before {
  top: 0;
  left: -125%; }
/**
 * = PRINT STYLES =
 */
@media print {
  * {
    background-color: transparent !important;
    box-shadow: none !important;
    color: #000 !important;
    /* Black prints faster: h5bp.com/s */
    text-shadow: none !important; }

  html {
    overflow-x: visible;
    overflow-y: visible; }

  a {
    text-decoration: underline; }

  pre, blockquote, tr, img, h1, h2, h3, h4, h5, h6 {
    page-break-inside: avoid; }

  thead {
    display: table-header-group; }

  @page {
    margin: 0.5cm; }

  p, h2, h3 {
    orphans: 3;
    widows: 3; }

  img.avatar {
    max-width: 200px; }

  .boxes > div i, .articles > div i, .boxes > a i, .articles > a i, .boxes > article i, .articles > article i {
    color: #f6f6f6; }

  .trigger {
    display: none; }

  #print_certificate header, #print_certificate footer {
    display: none; } }

.closed, .hidden, .filtered {
  display: none; }

#leave_a_legacy .details, #tennessee_cpa_political_action_committee .details {
  float: left; }

#leave_a_legacy .contributions, #tennessee_cpa_political_action_committee .contributions {
  float: right;
  width: 30%; }
  @media only screen and (max-width: 768px) {
    #leave_a_legacy .contributions, #tennessee_cpa_political_action_committee .contributions {
      width: unset; } }

.full_membership img {
  display: block;
  box-shadow: none; }

@media only screen and (min-width: 700px) {
  .full_membership img {
    float: left;
    margin: 0 10px 10px 0;
    box-shadow: none;
    width: 200px; }
    .full_membership h3 {
      clear: both; }
    .full_membership .callout {
      float: right;
      width: 30%; }
    .full_membership .details {
      float: left; }
    .full_membership .callout p {
      margin-bottom: 10px; }
      .full_membership .callout p + h4 {
        margin-top: 10px; } }
/*
 * become a cpa styles
 */
#educator_resources .boxes h3 {
  font-size: 20px; }

#high_school .columns > div {
  border-top: 7px solid #107792;
  overflow: hidden;
  padding: 1em; }
  #high_school .columns > div > div {
    border-bottom: 1px dashed #ddd;
    margin-bottom: 2em; }
  #high_school .columns > div > div:last-child {
    border: none; }

/*
 * Account
 */

body#cart form.cart {
  margin-bottom: 2em; }
  body#cart form.cart h3 {
    font-weight: bold; }
  body#cart form.cart .total {
    padding: 1em 0; }
  body#cart form.cart .price {
    font-size: 2em; }
  body#cart form.cart .type {
    background: #f6f6f6;
    margin-bottom: 1em;
    padding: 1em; }
  body#cart form.cart .type .price {
    font-size: 1.5em; }
  body#cart form.cart .type > div > div {
    border-bottom: 1px dashed #ddd;
    margin-bottom: 1em;
    padding-bottom: 0.5em; }
    body#cart form.cart .type > div > div:last-child {
      border-bottom: none;
      margin-bottom: 0; }
  body#cart form.cart .description label {
    width: 80%; }
  body#cart form.cart .description label input {
    margin-left: 0; }
  body#cart form.cart .activity {
    margin-bottom: 1em; }
  body#cart form.cart a, body#cart form.cart .actions {
    margin: 0; }
  body#cart form.cart a a.icon-chevron-right, body#cart form.cart .actions a.icon-chevron-right {
    display: inline-block;
    margin-bottom: 1em;
    margin-right: 3em; }
  body#cart form.cart a a.icon-chevron-right:last-child, body#cart form.cart .actions a.icon-chevron-right:last-child {
    margin-right: 0; }
  body#cart form.cart .sub_item {
    clear: both;
    margin-left: 2em; }
  body#cart form.cart .sub_item > div {
    border-bottom: 1px dashed #ddd;
    margin-bottom: 1em; }
  body#cart form.cart .sub_item > div:last-child {
    border-bottom: none; }
  body#cart form.cart .sub_item .price {
    font-size: 1.25em; }
  body#cart form.cart .note-text {
    display: inline-block;
    padding: 1em 0; }
  body#cart form.cart .registration {
    padding-left: 1.25em; }
  body#cart .join input {
    margin-right: 2em; }

body#join form.group label, body#reset form.group label {
  width: auto; }

form#join_form button {
  margin-left: 0%; }

body#login .callout .intro {
  margin-bottom: 8px; }
  body#login section[role="main"] {
    padding-top: 3em; }

form.licensed .selection > div, form.non_licensed .selection > div, form.retired .selection > div {
  border-bottom: 1px solid #ddd;
  margin-bottom: 16px;
  padding-bottom: 16px; }

.transaction .number {
  font-size: 1.5em; }

@media only screen and (min-width: 600px) {
  #login form {
    margin-bottom: 2em; }
    #login form .fields label, #login form .fields input {
      clear: none;
      float: left;
      margin-left: 2%;
      width: auto; }
      #login form .fields label:first-child, #login form .fields input:first-child {
        margin-left: 0; }
      #login form .fields input {
        width: 30%; }
    #login form .checkboxes {
      clear: both;
      margin: 1em 0; }

  body#cart form.cart .description {
    float: left;
    width: 80%; }
    body#cart form.cart .price {
      float: right; }
    body#cart form.cart .activity {
      float: left;
      width: 20%;
      margin: 0; }

  form#join_form input, form#join_form button {
    float: left;
    margin-left: 2%; }
    form#join_form input {
      margin-left: 0;
      width: 50%; } }

@media only screen and (min-width: 768px) {
  body#cart .login, body#cart .join {
    float: left;
    margin-left: 2%;
    width: 48%; }
    body#cart .login {
      margin-left: 0;
      margin-bottom: 2em; } }

/*
 * news
 */

#young_cpas, #business_resources {
  background: #f3f3f1;
  height: auto; }
  #young_cpas .hero, #business_resources .hero {
    padding: 80px 0; }
  #young_cpas .hero h1, #business_resources .hero h1 {
    font-size: 32px;
    font-weight: bold;
    letter-spacing: 5px;
    text-shadow: 0 0 24px rgba(0, 0, 0, 0.5);
    text-transform: uppercase; }
  #young_cpas .hero h1:before, #business_resources .hero h1:before, #young_cpas .hero h1:after, #business_resources .hero h1:after {
    background: none; }
  #young_cpas .hero h2, #business_resources .hero h2 {
    color: #fff;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: none; }
  #young_cpas .boxes > div, #business_resources .boxes > div {
    border-top-color: #73b34a;
    background: #fff;
    box-shadow: 21px 21px 21px rgba(0, 0, 0, 0.2);
    margin-bottom: 2em;
    height: 290px;
    padding: 42px 42px 0;
    -webkit-transition: all 400ms cubic-bezier(0.68, 0, 0.265, 1);
    /* older webkit */
    -webkit-transition: all 400ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -moz-transition: all 400ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -o-transition: all 400ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: all 400ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    /* easeInOutBack */
    -webkit-transition-timing-function: cubic-bezier(0.68, 0, 0.265, 1);
    /* older webkit */
    -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -moz-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -o-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    /* easeInOutBack */ }
  #young_cpas .boxes > div:first-child, #business_resources .boxes > div:first-child {
    border-top-color: #ebad48; }
  #young_cpas .boxes > div:last-child, #business_resources .boxes > div:last-child {
    border-top-color: #d9d5d3; }
  #young_cpas .boxes > div h2, #business_resources .boxes > div h2, #young_cpas .boxes > div h3, #business_resources .boxes > div h3 {
    -webkit-transition: all 400ms cubic-bezier(0.68, 0, 0.265, 1);
    /* older webkit */
    -webkit-transition: all 400ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -moz-transition: all 400ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -o-transition: all 400ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: all 400ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    /* easeInOutBack */
    -webkit-transition-timing-function: cubic-bezier(0.68, 0, 0.265, 1);
    /* older webkit */
    -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -moz-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -o-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    /* easeInOutBack*/ }
  #young_cpas .boxes > div:hover, #business_resources .boxes > div:hover {
    cursor: default; }
  #young_cpas .boxes > div img, #business_resources .boxes > div img {
    border: none;
    box-shadow: none; }
  #young_cpas .boxes h2, #business_resources .boxes h2 {
    color: #55585a;
    font-size: 36px;
    text-align: center;
    text-transform: uppercase; }
  #young_cpas .boxes h2 span, #business_resources .boxes h2 span {
    color: #8d9397;
    display: block;
    font-size: 18px; }
  #young_cpas .boxes ul, #business_resources .boxes ul {
    padding-left: 0; }
  #young_cpas .boxes ul li, #business_resources .boxes ul li {
    list-style-type: none; }
  #young_cpas .boxes ul li a, #business_resources .boxes ul li a {
    color: #55585a;
    display: block;
    font-size: 18px;
    font-weight: normal; }
    #young_cpas .boxes ul li a:after, #business_resources .boxes ul li a:after {
      position: absolute;
      right: -24px;
      top: 0; }
    #young_cpas .boxes ul li a:hover, #business_resources .boxes ul li a:hover {
      color: #1d7382; }
  #young_cpas .boxes ul.soc, #business_resources .boxes ul.soc {
    text-align: center;
    -webkit-transition: all 400ms cubic-bezier(0.68, 0, 0.265, 1);
    /* older webkit */
    -webkit-transition: all 400ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -moz-transition: all 400ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -o-transition: all 400ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: all 400ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    /* easeInOutBack */
    -webkit-transition-timing-function: cubic-bezier(0.68, 0, 0.265, 1);
    /* older webkit */
    -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -moz-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -o-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    /* easeInOutBack */ }
  #young_cpas .boxes ul.soc a, #business_resources .boxes ul.soc a, #young_cpas .boxes ul.soc a:hover, #business_resources .boxes ul.soc a:hover {
    color: #fff; }

#business_resources .hero {
  background: url('/img/homepage_hero.png') no-repeat top center / cover; }
  #business_resources .boxes > div {
    height: 350px; }
  #business_resources .boxes > div h3 {
    font-size: 20px; }
  #business_resources .table div {
    overflow: hidden;
    position: relative; }
  #business_resources .table div i {
    bottom: -10px;
    color: #ebcd9d;
    font-size: 60px;
    position: absolute;
    right: -10px; }

#young_cpas .hero {
  background: url("/img/site/young_cpas_hero.jpg") no-repeat top center / cover; }
  #young_cpas .hero h2 {
    margin-top: 0.5em; }
  #young_cpas.main .columns {
    margin-bottom: 2em; }
  #young_cpas.main .columns h3 {
    color: #57585a;
    font-size: 24px;
    font-weight: bold; }
  #young_cpas.main .columns h3 span {
    font-weight: normal; }
  #young_cpas.main .columns > div {
    padding-bottom: 50px;
    position: relative; }
  #young_cpas.main .columns > div > div {
    bottom: 0;
    position: absolute;
    text-align: center;
    width: 100%; }
    #young_cpas.main .columns > div > div.table {
      position: relative; }
  #young_cpas.main .columns table, #young_cpas.main .columns div.table {
    font-family: "Raleway", Arial, sans-serif;
    font-weight: bold;
    margin-bottom: 2em; }
  #young_cpas.main .columns table a, #young_cpas.main .columns div.table a {
    border: none;
    color: #2a2a2a;
    font-size: 14px; }
    #young_cpas.main .columns table a:hover, #young_cpas.main .columns div.table a:hover {
      color: #1d7382; }
      #young_cpas.main .columns table a:hover .location, #young_cpas.main .columns div.table a:hover .location {
        color: #1d7382; }
  #young_cpas.main .columns table .location, #young_cpas.main .columns div.table .location {
    color: #ebad48; }
  #young_cpas.main .columns a.button {
    bottom: 0;
    display: block;
    margin: 0 auto;
    width: 205px; }

.resource .content p {
  clear: both; }

#tscpa_young_cpa_workgroup nav.secondary ul li {
  font-weight: bold;
  width: 30%; }

.general_business {
  display: inline-block;
  padding: 1em 0;
  position: relative; }

#articles .articles.group h2 {
  font-size: 24px; }

@media only screen and (min-width: 600px) {
  #young_cpas .hero, #business_resources .hero {
    height: 350px; }
    #young_cpas .hero h1, #business_resources .hero h1 {
      font-size: 48px; }
    #young_cpas .hero h2, #business_resources .hero h2 {
      color: #fff;
      font-size: 16px; }

  #young_cpas .hero h2 {
    font-size: 36px; } }

@media only screen and (min-width: 768px) {
  body.news .boxes > div {
    min-height: 17.5em; }

  #young_cpas .hero, #business_resources .hero {
    height: 450px;
    padding: 80px 0; }
    #young_cpas .hero h1, #business_resources .hero h1 {
      font-size: 64px; }
    #young_cpas .boxes, #business_resources .boxes {
      height: 370px;
      margin-top: -10em; }
    #young_cpas .boxes > div:hover, #business_resources .boxes > div:hover {
      margin-top: -2em;
      height: 350px; }
      #young_cpas .boxes > div:hover ul.soc, #business_resources .boxes > div:hover ul.soc {
        padding-bottom: 1em; }
      #young_cpas .boxes > div:first-child:hover h2, #business_resources .boxes > div:first-child:hover h2, #young_cpas .boxes > div:last-child:hover h2, #business_resources .boxes > div:last-child:hover h2 {
        padding-bottom: 1em; }

  #business_resources .hero h2 {
    color: #fff;
    font-size: 20px; }
    #business_resources .boxes {
      height: 420px; }
    #business_resources .boxes > div:hover {
      height: 400px; }
      #business_resources .boxes > div:hover h3 {
        padding-bottom: 2em; }

  #for-firms > div {
    margin-bottom: 32px;
    padding: 16px; }
    #for-firms > div.callout {
      border: none;
      box-shadow: none; }
    #for-firms > div > div {
      margin-bottom: 16px;
      padding: 16px; }
      #for-firms > div > div:nth-child(odd) {
        background: #f6f6f6;
        position: relative; }
      #for-firms > div > div:nth-child(odd):before, #for-firms > div > div:nth-child(odd):after {
        background: #f6f6f6;
        content: "";
        height: 100%;
        position: absolute;
        right: 100%;
        top: 0;
        width: 100%; }
      #for-firms > div > div:nth-child(odd):after {
        left: 100%; }
      #for-firms > div > div p:last-child {
        margin-bottom: 0; }

  .article .content {
    margin: 0 auto;
    width: 60%; }

  #articles .articles.group > a {
    min-height: 25em; } }

/*
 * CPE
 */

body.cpe .filters {
  background: #f2f2ef;
  margin-bottom: 3em;
  padding: 1em; }
  body.cpe .filters fieldset input, body.cpe .filters fieldset select {
    margin-bottom: 2em;
    width: 95%; }
  body.cpe .filters .activities {
    margin-top: 0; }
  body.cpe .course, body.cpe .conference, body.cpe .cluster {
    border: 1px solid #b9b9b7;
    margin-bottom: 2em;
    padding: 1em;
    position: relative; }
  body.cpe .course h2, body.cpe .conference h2, body.cpe .cluster h2 {
    font-size: 24px;
    padding-bottom: 20px;
    width: 86%; }
  body.cpe .course dl, body.cpe .conference dl, body.cpe .cluster dl {
    background: none;
    font-size: 14px;
    margin-bottom: 0;
    margin-left: 0;
    padding: 0; }
  body.cpe .course dl dt, body.cpe .conference dl dt, body.cpe .cluster dl dt, body.cpe .course dl dd, body.cpe .conference dl dd, body.cpe .cluster dl dd {
    border-bottom: 1px solid #ededed;
    float: left;
    margin-bottom: 0.5em;
    margin-left: 0;
    padding-bottom: 0.5em;
    padding-left: 3%;
    width: 30%; }
  body.cpe .course dl dt, body.cpe .conference dl dt, body.cpe .cluster dl dt {
    clear: left;
    font-weight: normal;
    margin-left: 0;
    width: 70%; }
  body.cpe .course h4, body.cpe .conference h4, body.cpe .cluster h4 {
    background: #f6f6f6;
    border: none;
    font-family: "proxima-nova", Arial, sans-serif;
    font-weight: normal;
    margin-bottom: 1em;
    padding: 0.5em; }
  body.cpe .course h4 .date_time, body.cpe .conference h4 .date_time, body.cpe .cluster h4 .date_time, body.cpe .course h4 .location, body.cpe .conference h4 .location, body.cpe .cluster h4 .location {
    color: #666;
    float: left;
    font-size: 16px;
    width: 58%; }
  body.cpe .course h4 .date_time .start_date, body.cpe .conference h4 .date_time .start_date, body.cpe .cluster h4 .date_time .start_date, body.cpe .course h4 .location .start_date, body.cpe .conference h4 .location .start_date, body.cpe .cluster h4 .location .start_date {
    font-weight: bold;
    margin-right: 0; }
  body.cpe .course h4 .date_time .end_date, body.cpe .conference h4 .date_time .end_date, body.cpe .cluster h4 .date_time .end_date, body.cpe .course h4 .location .end_date, body.cpe .conference h4 .location .end_date, body.cpe .cluster h4 .location .end_date {
    font-weight: bold; }
  body.cpe .course h4 .location, body.cpe .conference h4 .location, body.cpe .cluster h4 .location {
    float: right;
    text-align: right;
    width: 40%; }
  body.cpe .course .credits .amount, body.cpe .conference .credits .amount, body.cpe .cluster .credits .amount {
    background: #ebad48;
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    line-height: 1;
    padding: 5px 10px;
    position: absolute;
    text-align: center;
    top: 0;
    right: 0; }
  body.cpe .course .credits .amount span, body.cpe .conference .credits .amount span, body.cpe .cluster .credits .amount span {
    display: block;
    font-size: 12px;
    font-weight: normal; }
  body.cpe .course .price, body.cpe .conference .price, body.cpe .cluster .price {
    padding: 0 0.5em;
    border-top: 1px solid #ddd;
    clear: both;
    padding-top: 16px; }
  body.cpe .course .price h3, body.cpe .conference .price h3, body.cpe .cluster .price h3 {
    font-size: 16px; }
  body.cpe .course:last-child, body.cpe .conference:last-child, body.cpe .cluster:last-child {
    margin-bottom: 0; }
  body.cpe .course {
    border-bottom: none;
    border-top-width: 3px;
    margin-bottom: 0; }
  body.cpe .course .start_date {
    display: inline-block; }
  body.cpe .course:last-child {
    border-bottom: 1px solid #b9b9b7; }
  body.cpe .conference {
    border-top-width: 3px; }
  body.cpe .conference dl dt {
    clear: both;
    padding-left: 0;
    width: 60%; }
  body.cpe .conference dl dd {
    float: right;
    padding-left: 0;
    width: 40%;
    text-align: right; }
  body.cpe .cluster {
    border-top-width: 3px; }
  body.cpe .cluster h4 .date_time {
    width: 100%; }
  body.cpe .activities {
    margin-top: 8em;
    position: relative; }
  body.cpe .activities > section {
    left: 0;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 0;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease; }
  body.cpe .activities > section > h2 {
    background: #f2f2f0;
    border: 1px solid #b9b9b7;
    border-radius: 5px 5px 0 0;
    display: inline-block;
    font-size: 1em;
    font-weight: 700;
    margin-bottom: 0;
    padding: 0;
    position: absolute;
    text-align: center;
    left: 0;
    height: 70px;
    top: -69px;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    width: 25%; }
  body.cpe .activities > section > h2 a {
    color: #1d7382;
    display: block;
    padding: 1.25em 0.5em;
    position: relative; }
  body.cpe .activities > section > div {
    display: none; }
  body.cpe .activities > section > .messaging {
    margin-top: 1em; }
  body.cpe .activities > section:first-child {
    z-index: 1; }
  body.cpe .activities > section:nth-child(2) > h2 {
    left: 25%; }
  body.cpe .activities > section:nth-child(3) > h2 {
    left: 50%; }
  body.cpe .activities > section:nth-child(4) > h2 {
    left: 75%; }
  body.cpe .activities > section:target, body.cpe .activities > section.active {
    border-top: none;
    z-index: 2; }
  body.cpe .activities > section:target > h2, body.cpe .activities > section.active > h2 {
    background: #fff;
    border-bottom: none;
    height: 70px;
    top: -67px;
    z-index: 100; }
    body.cpe .activities > section:target > h2 a, body.cpe .activities > section.active > h2 a {
      color: #231f20; }
  body.cpe .activities > section:target > div, body.cpe .activities > section.active > div {
    display: block; }
  body.cpe .credits .detail {
    padding: 0 0.5em; }
  body.cpe .credits .detail h3 {
    color: #666;
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    padding-bottom: 0; }
  body.cpe .credits .detail span {
    color: #ebad48;
    display: inline;
    font-weight: bold;
    padding-bottom: 0.5em;
    position: relative; }
  body.cpe .credits .detail span + span:before {
    content: ", ";
    left: -4px;
    position: relative; }
  body.cpe aside.meta .contact dl {
    margin-bottom: 0;
    padding: 0; }
  body.cpe aside.meta .sponsors img {
    background: #fff;
    max-width: 200px; }

.count {
  color: #666;
  font-size: 0.85em;
  font-weight: 500; }

#conferences_and_clusters .activities > section > h2 {
  width: 49%; }
  #conferences_and_clusters .activities > section:nth-child(2) h2 {
    left: 50%; }

#policies .directory a p {
  font-weight: 500; }

.price {
  font-size: 1em; }
  .price .amount {
    color: #73b34a;
    font-weight: bold; }
  .price p {
    margin-bottom: 0; }

.register > .price {
  border-bottom: 1px solid #ddd;
  font-size: 2em;
  margin-bottom: 1em;
  padding-bottom: 1em; }
  .register > .price .note {
    margin-bottom: 32px; }

.guest {
  border-top: 7px solid #1d7382;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  clear: both;
  margin: 2em 0;
  padding: 1em; }

.sessions {
  clear: both; }
  .sessions h4 {
    border-bottom: none; }

.fees label {
  width: 60%;
  float: left; }
  .fees .price {
    float: right; }
  .fees .description {
    clear: both;
    font-size: 14px; }
  .fees .messaging {
    clear: both; }
  .fees .fee {
    background: #f6f6f6;
    padding: 1em; }

.block {
  background: #f6f6f6;
  margin-bottom: 2.5em;
  padding: 1em; }
  .block .session {
    border-bottom: 1px dashed #ddd; }
  .block .session > label {
    clear: both;
    float: none;
    margin: 0.25em 0;
    width: auto; }
  .block .session > div {
    margin-left: 1.25em; }
  .block .session div {
    margin-bottom: 0.5em; }
  .block .session div.group .date_time {
    color: #666;
    font-style: italic; }
  .block .session div label {
    width: auto; }
  .block .session .description {
    font-size: 14px; }
  .block .session .description p {
    margin-bottom: 0; }
  .block .session:last-child {
    border-bottom: none;
    margin-bottom: 0; }
  .block .session input[type="checkbox"], .block .session input[type="radio"] {
    margin-left: 0; }
  .block .option .price {
    float: right; }

.cpe .tracker .filter {
  display: inline;
  float: left;
  width: 80%; }
  .cpe .tracker .filter input {
    float: left;
    margin-left: 0; }
  .cpe .tracker .filter input[type="text"] {
    display: inline;
    margin-right: 2%;
    max-width: 105px; }
  .cpe .tracker form + .info {
    clear: both; }

.exam legend {
  color: #000; }
  .exam .sponsors img {
    margin: 0 0 1em 0; }

.supplemental .price dl {
  background: none;
  margin-bottom: 0;
  padding: 0; }
  .supplemental .price dl dd, .supplemental .price dl dt {
    border-bottom: 1px solid #ededed;
    float: left;
    margin-bottom: 0.5em;
    margin-left: 0;
    padding-bottom: 0.5em;
    padding-left: 3%;
    width: 30%; }
  .supplemental .price dl dt {
    font-weight: normal;
    padding-left: 0;
    width: 70%; }

#add_cpe_record .credits .group input, #edit_cpe_record .credits .group input, #add_cpe_record .credits .group select, #edit_cpe_record .credits .group select {
  float: left;
  margin-bottom: 0;
  margin-right: 16px;
  width: auto; }
  #add_cpe_record .credits .group input, #edit_cpe_record .credits .group input {
    width: 20%; }
  #add_cpe_record .submit, #edit_cpe_record .submit {
    clear: both; }

#invoice pre {
  font-family: "proxima-nova", Arial, sans-serif;
  font-size: 16px; }

#print_certificate img {
  box-shadow: none;
  margin: 16px 0; }
  #print_certificate .container.main {
    text-align: center; }
  #print_certificate .certificate {
    color: #000;
    font-size: 20px;
    margin-bottom: 3em;
    margin: 0 auto;
    text-align: center;
    width: 50%; }
  #print_certificate .certificate .header img {
    max-width: 55%; }
  #print_certificate .certificate h2 {
    color: #000;
    margin-bottom: 1.5em; }
  #print_certificate .certificate div.margin {
    margin-bottom: 1em; }
  #print_certificate .certificate ul {
    padding-left: 0; }
  #print_certificate .certificate ul li {
    list-style-type: none;
    margin-bottom: 0; }
  #print_certificate .certificate .participant-credits {
    display: flex;
    justify-content: space-between; }
  #print_certificate .certificate .participant-credits div.participant {
    width: 50%; }
  #print_certificate .certificate .participant-credits div.participant > div:first-child {
    border-bottom: 2px black solid; }
  #print_certificate .certificate .participant-credits div.credits {
    width: 20%; }
  #print_certificate .certificate .participant-credits div.credits > div:first-child {
    border-bottom: 2px black solid; }
  #print_certificate .certificate .participant-credits div.label {
    font-size: 16px; }
  #print_certificate p {
    margin-bottom: 1em; }

body.exam form.group {
  margin-bottom: 32px; }
  body.exam h1 {
    background: #255d6e;
    padding-bottom: 48px;
    padding-top: 48px; }

body#on-site_training aside.meta {
  text-align: center; }

body[id*="_cluster"] .block button.clear {
  float: right;
  margin-right: 0; }
  body[id*="_cluster"] .block > .messaging.help {
    padding-right: 0; }
  body[id*="_cluster"] .block .session {
    margin-bottom: 1.5em; }
  body[id*="_cluster"] .block .session > h2 {
    margin-left: 20px; }
  body[id*="_cluster"] .block .session > label {
    font-size: 18px;
    margin-bottom: 1em; }
  body[id*="_cluster"] .block .session:last-child {
    margin-bottom: 0; }
  body[id*="_cluster"] .block .credits .amount {
    font-size: 1em; }
  body[id*="_cluster"] .block .credits .amount span {
    line-height: 1; }
  body[id*="_cluster"] .block .credits .detail {
    padding: 0; }
  body[id*="_cluster"] .block .credits .cle {
    background: #e4e4e4 none repeat scroll 0 0;
    font-size: 17px;
    padding: 10px; }
  body[id*="_cluster"] .block .credits .cle .price.amount {
    float: none; }
  body[id*="_cluster"] .block .more_info .more {
    background-color: #e4e4e4;
    color: #0094b6;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    margin-bottom: 0;
    padding: 10px; }
  body[id*="_cluster"] .block .more_info .course_details {
    border: 1px solid #e4e4e4;
    display: none;
    padding: 15px; }
  body[id*="_cluster"] .block .more_info .course_details .meta {
    float: left; }
  body[id*="_cluster"] .block .more_info .course_details .details .description {
    font-size: 16px; }
  body[id*="_cluster"] .block .more_info .course_details .full {
    clear: both; }

#online .boxes div img {
  border: none;
  box-shadow: none;
  display: block;
  margin: 16px 0 0;
  max-width: 80%;
  text-align: center; }
/* firm admin registrants expand/collapse */
.registrants .payor {
  margin-bottom: 32px; }
  .registrants .firm {
    margin-bottom: 32px; }
  .registrants .firm h4 {
    cursor: pointer;
    position: relative; }
  .registrants .firm h4:after {
    content: "\f0fe";
    font-family: "FontAwesome";
    font-size: 18px;
    position: absolute;
    right: 0;
    top: 0; }
  .registrants .firm.collapse h4:after {
    content: "\f146"; }

@media only screen and (min-width: 768px) {
  body.cpe .filters {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    float: left;
    margin-bottom: 3em;
    width: 30%;
    z-index: 500; }
    body.cpe .filters fieldset input, body.cpe .filters fieldset select {
      max-width: 250px;
      width: 100%; }
    body.cpe .filters.fixed {
      max-width: 315px;
      position: sticky;
      top: 0;
      width: 30%; }
    body.cpe .cta.info {
      float: right;
      margin-left: 2%;
      width: 68%; }
    body.cpe .group .activities {
      float: right;
      margin-left: 2%;
      margin-top: 4em;
      width: 68%; }
    body.cpe .course h2, body.cpe .conference h2, body.cpe .cluster h2 {
      font-size: 28px;
      width: 90%; }
    body.cpe .course dl, body.cpe .conference dl, body.cpe .cluster dl {
      float: left;
      width: 50%; }
    body.cpe .course h4 .date_time, body.cpe .conference h4 .date_time, body.cpe .cluster h4 .date_time, body.cpe .course h4 .location, body.cpe .conference h4 .location, body.cpe .cluster h4 .location {
      color: #666; }
      body.cpe .course h4 .date_time .start_date, body.cpe .conference h4 .date_time .start_date, body.cpe .cluster h4 .date_time .start_date, body.cpe .course h4 .location .start_date, body.cpe .conference h4 .location .start_date, body.cpe .cluster h4 .location .start_date {
        font-weight: bold; }
    body.cpe .course .credits h3, body.cpe .conference .credits h3, body.cpe .cluster .credits h3 {
      font-size: 20px; }
      body.cpe .course .credits h3 span, body.cpe .conference .credits h3 span, body.cpe .cluster .credits h3 span {
        display: block; }
      body.cpe .course .credits .amount, body.cpe .conference .credits .amount, body.cpe .cluster .credits .amount {
        font-size: 36px; }
    body.cpe .course .price h3, body.cpe .conference .price h3, body.cpe .cluster .price h3 {
      font-size: 20px; }
    body.cpe .conference, body.cpe .cluster {
      float: left;
      width: 48%; }
    body.cpe .conference + .conference, body.cpe .cluster + .conference, body.cpe .conference + .cluster, body.cpe .cluster + .cluster {
      margin-left: 2%; }
    body.cpe .conference:nth-child(even), body.cpe .cluster:nth-child(even) {
      clear: left;
      margin-left: 0; }
    body.cpe .conference dl, body.cpe .cluster dl {
      float: none;
      width: 100%; }
    body.cpe .block div {
      margin-bottom: 0.5em; }
      body.cpe .block div.group .date_time {
        float: left; }
      body.cpe .block div.group .price {
        float: right; }
      body.cpe .block div label {
        display: inline-block;
        width: auto; }

  body.exam aside.meta, body#on-site_training aside.meta {
    float: right; }
    body.exam .details, body#on-site_training .details {
      float: left; }

  body[id*="_cluster"] .block .session .credits .detail {
    float: left;
    width: 70%; }
    body[id*="_cluster"] .block .session .credits .amount {
      float: right; }

  #conferences_and_clusters .activities > section > h2 {
    width: 225px; }
    #conferences_and_clusters .activities > section:nth-child(2) h2 {
      left: 226px; }

  .supplemental .price dl {
    float: left;
    margin-left: 0;
    width: 50%; } }

@media only screen and (min-width: 1025px) {
  .url-register {
    min-height: 140px; }
    .url-register a {
      float: left;
      margin-top: 5%; }
    .url-register div.info {
      float: right;
      width: 75%; } }
/*
 * membership
 * pay my dues
 * profile
 * directory
 * committees
 * chapters
 */
body#membership .hero {
  background: url("/img/tscpa_hero_background.jpg") no-repeat top center / cover #f6f6f6;
  height: 100%;
  max-height: 100%;
  padding: 0 0 3em 0; }
  body#membership .hero > div {
    color: #231f20;
    text-align: left;
    text-transform: none; }
  body#membership .hero > div a.button.suggested {
    background: #1d7382;
    color: #fff;
    font-size: 0.75em; }
  body#membership .hero > div a.button.suggested:hover {
    background: #ebad48;
    color: #fff; }
  body#membership .hero h1 {
    padding: 32px 0;
    text-align: center; }
  body#membership .boxes {
    margin-bottom: 2em; }
  body#membership .boxes > div {
    border-top: none; }
  body#membership .boxes.first {
    margin-bottom: 0; }

body.membership #benefit-partners img {
  max-height: 300px; }

body#dues #pac, body#dues #education {
  display: none; }

body#profile fieldset.avatar_upload {
  float: right;
  margin-left: 2%; }
  body#profile .committees input {
    float: left;
    margin: 0;
    width: auto; }
  body#profile .committees label {
    clear: none;
    margin-left: 1em;
    width: auto; }
  body#profile .button {
    font-size: 22px;
    margin: 1em 0; }
  body#profile .trigger .button {
    font-size: 1em; }
  body#profile #professional .position {
    clear: both; }

body#directory form {
  margin-bottom: 2em; }
  body#directory fieldset label, body#directory fieldset input, body#directory fieldset select {
    float: none;
    margin-left: 0;
    max-width: 100%;
    width: 100%; }
  body#directory fieldset input, body#directory fieldset select {
    margin-bottom: 2em; }
  body#directory .person p, body#directory .person a {
    margin-bottom: 1.5em; }
  body#directory .person p a, body#directory .person a a {
    margin-bottom: 0; }

body#committees .history {
  background: #f6f6f6;
  font-size: 1.4em;
  padding: 1em; }

#scholarships form {
  margin-bottom: 2em; }

.firm_employees i {
  color: #ebad48; }
  .firm_employees i.fa-usd {
    color: #73b34a; }
  .firm_employees i.fa-file-text-o {
    color: #999; }
  .firm_employees i.fa-times {
    color: #d44; }
  .firm_employees .name {
    font-weight: 600; }
  .firm_employees input.price {
    display: inline-block;
    margin-left: 5px;
    width: 70%; }

body#add.firm_administration table, body#add.firm_administration .callout {
  margin-bottom: 2em; }

body#chapters .boxes > div .meta {
  bottom: 0;
  position: absolute; }
  body#chapters dl dt {
    margin-left: 0;
    width: 50%; }
  body#chapters dl dd {
    margin-left: 0; }
  body#chapters .chapter ul.group li {
    float: left;
    width: 50%; }

body#benefits nav.secondary ul {
  text-align: left; }

@media only screen and (min-width: 600px) {
  body#membership fieldset select, body#membership fieldset input {
    max-width: 250px; }

  body#dues dl {
    float: left;
    width: 48%; }
    body#dues .contributions {
      float: left;
      margin-left: 3%;
      width: 48%; }

  body#directory fieldset label {
    clear: left;
    float: left;
    line-height: 1.2;
    margin-bottom: 1em;
    width: 40%; }
    body#directory fieldset select, body#directory fieldset input {
      float: left;
      margin-left: 2%;
      width: 55%; }
    body#directory fieldset select {
      width: auto; } }

@media only screen and (min-width: 768px) {
  body#membership .boxes > div {
    min-height: 12.5em; }
    body#membership .boxes.first {
      margin-top: -7em; }
    body#membership .dashboard > div, body#membership .dashboard .profile {
      min-height: 300px;
      position: relative; }
      body#membership .dashboard > div a.button, body#membership .dashboard .profile a.button {
        bottom: 16px;
        left: 0;
        position: absolute; }
      body#membership .dashboard > div.join a.button, body#membership .dashboard .profile.join a.button {
        bottom: 0;
        left: 1em; }
    body#membership .dashboard .callout {
      background: rgba(255, 255, 255, 0.3); }
      body#membership .dashboard .callout a.button {
        position: relative; }

  body#committees .list > a {
    float: left;
    width: 47%; }
    body#committees .list > a:nth-child(3n + 1) {
      clear: none;
      margin-left: 3%; }
    body#committees .list > a:nth-child(2n + 1) {
      clear: left;
      margin-left: 0; }
    body#committees .list > a:first-child {
      margin-left: 0; } }

body#payment_information {
  overflow-x: hidden; }
  @media only screen and (max-width: 700px) {
    body#payment_information section[role="main"] > * {
      margin: 0;
      max-width: 100vw; } }

.updateCard {
  overflow-x: hidden; }
  .updateCard label {
    padding-left: 1rem; }
  .updateCard.-disclaimer {
    color: #ebad48; }
  @media only screen and (max-width: 700px) {
    .updateCard.-disclaimer {
      padding-left: 2.4rem; } }
  .updateCard.-container {
    box-shadow: 5px 0px 20px rgba(0, 0, 0, 0.3);
    border-left: 10px solid #ebad48;
    display: grid;
    grid-template-columns: 1fr 2fr;
    padding: 1rem 0rem; }
  @media only screen and (max-width: 700px) {
    .updateCard.-container {
      width: 100vw; } }
  .updateCard.-existing_card {
    grid-column: 1 / span 2;
    border-bottom: 3px solid rgba(0, 0, 0, 0.4);
    padding-left: 2rem; }
  .updateCard.-existing_card h5 {
    padding-bottom: 0rem; }
  .updateCard.-form {
    padding: 1rem 2rem 2rem 0rem; }
  .updateCard.-header {
    padding-top: 1rem;
    padding-left: 2rem;
    grid-column: 1 / span 3; }
  .updateCard.-formContainer {
    grid-column: 1 / span 3;
    padding-left: 2rem; }
  .updateCard.-name {
    display: grid;
    grid-template-columns: 1fr 1fr; }
  .updateCard.-name input {
    width: 85%; }
  .updateCard.-cardInfo {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 2rem; }
  .updateCard.-cardInfo input[type="text"] {
    box-sizing: border-box; }
  .updateCard.-street {
    grid-column: 1 / span 4; }
  .updateCard.-city {
    grid-column: 1 / span 2; }
  @media only screen and (max-width: 700px) {
    .updateCard.-city {
      grid-column: 1 / span 3; } }
  .updateCard.-state select {
    width: 100%; }
  @media only screen and (max-width: 700px) {
    .updateCard.-state {
      grid-column: 1 / span 2; } }
  @media only screen and (max-width: 700px) {
    .updateCard.-postal_code {
      grid-column: 3 / span 2; } }
  .updateCard.-card_number {
    grid-column: 1 / span 2; }
  .updateCard.-ccv {
    grid-column: 3 / span 2; }
  .updateCard.-expiration_month {
    grid-column: 1 / span 2; }
  .updateCard.-expiration_month select {
    width: 100%; }
  .updateCard.-expiration_year {
    grid-column: 3 / span 2; }
  .updateCard.-expiration_year select {
    width: 100%; }
  .updateCard.-auto-renew {
    grid-column: 1 / span 4; }
  .updateCard.-button {
    display: flex;
    justify-content: flex-end; }
/**
 * = Homepage =
 * = Table of Contents =
 *
 * Hero
 * Slider
 * Content
 * tablet only
 * tablet and up
 * desktop
 *
 */
#home section[role="main"] > *, #home .container {
  margin: 0 auto;
  max-width: initial;
  width: 100%;
  padding: 0 16px; }
  #home section[role="main"] > *.-hero, #home .container.-hero {
    background: #fff; }
  #home .we-are {
    padding: 5rem 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem; }
  #home .we-are h3 {
    color: black;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1.7rem;
    color: #444;
    margin-bottom: 3rem;
    padding: 0; }
  #home .we-are h3 span {
    color: #a7a7a7;
    display: block;
    font-weight: 300;
    font-size: 1.3rem;
    margin-bottom: 0.5rem; }
  #home .we-are .links {
    display: flex;
    flex-direction: column; }
  #home .we-are .links a, #home .we-are .links a.icon-chevron-right {
    font-size: 1rem;
    font-weight: 100;
    text-align: right;
    color: #444;
    position: relative;
    margin: 0;
    text-align: center; }
  #home .we-are .links a::before, #home .we-are .links a.icon-chevron-right::before {
    color: #f1ae2f; }
  #home .we-are .links a:first-of-type {
    margin-bottom: 19px; }
  #home .we-are__card {
    border-top-width: 10px;
    border-style: solid;
    padding: 2.5rem;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
    flex-grow: 1; }
  #home .we-are__card.-stronger {
    border-color: #74b34b; }
  #home .we-are__card.-smarter {
    border-color: #f7941f; }
  #home .we-are__card.-better {
    border-color: #d8d5d3; }
  #home .news-and-events {
    padding: 2rem 0;
    background-color: #e4f1f5;
    display: flex; }
  #home .news-and-events .title {
    font-size: 1.5rem;
    font-weight: 600; }
  #home .news-and-events > .container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    padding: 2rem 0; }
  #home .news-and-events > .container > * {
    flex: 1; }
  #home .news-and-events > .container::before, #home .news-and-events > .container::after {
    content: none; }
  #home .upcoming {
    margin-bottom: 2rem; }
  #home .upcoming__item {
    display: grid;
    grid-template-columns: 75px 3fr 115px; }
  #home .upcoming__date, #home .upcoming__event, #home .upcoming__location {
    display: flex;
    align-items: center;
    padding: 1rem; }
  #home .upcoming__event {
    border-left: 2px solid #cecdcd;
    border-right: 2px solid #cecdcd; }
  #home .upcoming__search {
    background-color: #007a98;
    padding: 2rem 3rem; }
  #home .upcoming__search form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 2rem; }
  #home .upcoming__search label {
    font-size: 14px;
    font-weight: 100;
    color: white; }
  #home .upcoming__search input, #home .upcoming__search select {
    border-radius: 5px;
    border-width: 2px;
    font-weight: 100; }
  #home .upcoming__search select {
    font-size: 16px;
    margin-bottom: 2em;
    padding: 0.4em 1%;
    width: 98%;
    border: 1px solid #ccc; }
  #home .upcoming__search button {
    grid-column: 1 / span 2;
    padding: 0.75rem 5rem; }
  #home .upcoming__search > h2.title {
    font-size: 1rem;
    color: white;
    font-weight: 700; }
  #home .latest-news__item {
    display: flex;
    padding: 1.5rem 2rem; }
  #home .upcoming__list, #home .latest-news__list {
    margin-bottom: 2rem; }
  #home .upcoming__list + a.button {
    margin-bottom: 2rem; }
  #home .upcoming__item, #home .latest-news__item {
    color: #026c86;
    font-weight: 600; }
  #home .upcoming__item:nth-child(odd), #home .latest-news__item:nth-child(odd) {
    background-color: white; }
  #home .upcoming__item:nth-child(even), #home .latest-news__item:nth-child(even) {
    background-color: #f8f8f8; }
  #home section.home-islet {
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; }
  #home #homepage-imageWithText-islet {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #007a98;
    padding: 2rem;
    margin-bottom: 2rem; }
  #home #homepage-top-image p {
    margin-bottom: 0; }
  #home #homepage-top-text {
    color: white; }
  #home #homepage-top-text h3, #home #homepage-top-text h2 {
    color: white; }
  #home #homepage-bottom {
    position: relative;
    margin-bottom: 2rem;
    min-height: 250px; }
  #home #homepage-bottom::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0.15;
    background: url("/img/tscpa_logo.png") no-repeat;
    background-size: 500px;
    background-position: 120% 0%; }
  #home .homeStatement__statement {
    display: grid;
    grid-template-columns: 150px 2fr;
    margin-bottom: 2rem; }
  #home .homeStatement__title {
    grid-column: 1 / span 1;
    font-weight: 600; }
  #home .homeStatement__title.-vision {
    color: #f1ae2f; }
  #home .homeStatement__title.-mission {
    color: #0084a9; }
  #home .homeStatement__description {
    grid-column: 2 / span 1;
    color: #231f20; }

.slick-prev, .slick-next {
  position: absolute;
  background: none;
  color: white;
  top: 40%;
  padding: 0;
  margin: 0;
  font-size: 4.5rem; }
  .slick-prev:hover, .slick-next:hover, .slick-prev:focus, .slick-next:focus {
    background: none;
    color: white; }

.slick-prev {
  left: 5%; }

.slick-next {
  right: 5%; }

#home .cta h3 {
  color: #231f20;
  text-transform: none; }
  #home img {
    border: none;
    box-shadow: none;
    margin: 0; }
  #home h1:before, #home h1:after {
    background: none; }

@media only screen and (min-width: 768px) {
  #home .hero a.button {
    font-size: 18px;
    padding: 15px 30px;
    margin: 0 0 5px 30px; }
    #home .hero .slider {
      max-height: 35rem;
      overflow: hidden; }
    #home .we-are {
      flex-direction: row; }
    #home .news-and-events > .container {
      flex-direction: row; }
    #home .upcoming {
      margin-right: 5rem; } }

@media only screen and (min-width: 850px) {
  #home .aside-container a img {
    margin-bottom: 1rem; }
    #home .primary-homepage-islet {
      display: block; }
    #home section.group.home-islet {
      padding-top: 2rem; }
    #home section.home-islet {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-template-rows: repeat(2, 1fr);
      grid-column-gap: 1.5rem;
      align-items: flex-start; }
    #home #homepage-imageWithText-islet, #home #homepage-bottom {
      grid-column: 1 / span 3; }
    #home #homepage-imageWithText-islet {
      grid-row: 1 / span 1; }
    #home #homepage-bottom {
      grid-row: 2 / span 1; }
    #home aside.primary {
      grid-column: 4 / span 1;
      grid-row: 1 / span 2;
      display: flex;
      flex-direction: column; }
    #home aside.primary img {
      max-width: 350px; }
    #home #homepage-imageWithText-islet {
      flex-direction: row; }
    #home #homepage-top-image {
      padding-right: 2rem; }
    #home #homepage-top-image img {
      max-width: initial; }
    #home #homepage-bottom {
      margin-bottom: 0; } }

@media only screen and (min-width: 1025px) {
  #home .hero .container {
    padding-left: 32px;
    padding-right: 32px; }
    #home .hero > div h1 {
      font-size: 2.5em;
      margin: 0;
      padding-bottom: 0;
      margin-bottom: 0; }
      #home .hero > div a.button {
        padding: 10px 30px;
        -webkit-transition: all 250ms ease-in-out;
        transition: all 250ms ease-in-out;
        font-size: 1.25em; } }

@media only screen and (min-width: 1200px) {
  #home section[role="main"] > *, #home .container {
    padding: 0 100px; } }
/*
 * Marketplace Section
 */
body#jobs h2 {
  clear: both;
  padding-top: 2em; }
  body#jobs h2:first-child {
    padding-top: 0; }
  body#jobs section[role="main"] > section {
    padding-bottom: 0; }
  body#jobs .job {
    position: relative; }
  body#jobs .job a {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0; }
  body#jobs .boxes > div.page_info {
    border: none;
    box-shadow: none;
    float: right;
    margin-bottom: 0;
    min-height: 0;
    text-align: right;
    width: 500px; }
  body#jobs .boxes > div.page_info + h2 {
    clear: none;
    float: left;
    margin-top: 0;
    width: auto; }
  body#jobs .boxes > div.page_info:hover {
    background: none; }
  body#jobs .boxes > div.featured {
    border-top-color: #73b34a;
    margin-bottom: 1.5em;
    margin-left: 0;
    min-height: 0;
    width: 100%; }
  body#jobs .boxes > div.featured h3, body#jobs .boxes > div.featured p {
    display: inline-block;
    margin-bottom: 0;
    padding-right: 1em;
    padding-bottom: 0;
    width: 150px; }
  body#jobs .boxes > div.featured h3.company, body#jobs .boxes > div.featured p.company {
    width: 300px; }
  body#jobs .boxes > div.featured h3:last-child, body#jobs .boxes > div.featured p:last-child {
    padding: 0; }
  body#jobs .boxes > div.featured h3 {
    width: 400px; }
  body#jobs .boxes > div.featured + h2 + div {
    margin-left: 0; }
  body#jobs .boxes .company {
    font-weight: bold; }

body#marketplace .boxes > div:last-child {
  width: 100%; }

body#resumes select {
  width: 100%; }
  body#resumes .directory p {
    font-weight: 500; }

body#post_resume .help:before {
  content: "\f1c1"; }

body#job_detail aside.meta dl dt {
  width: 40%; }
  body#job_detail aside.meta dl dd {
    width: 58%; }

@media only screen and (min-width: 600px) {
  .contact_poster form fieldset, .contact_poster form label, .contact_poster form input {
    float: none;
    margin-left: 0;
    max-width: 100%;
    width: 100%; } }

@media only screen and (min-width: 768px) {
  #jobs .boxes > div:nth-child(3n+1) {
    clear: left;
    margin-left: 0; } }

body.dap img {
  border: none;
  box-shadow: none;
  margin: 0; }
  body.dap h1 {
    background: url(/img/site/dap/dap_hero_blue.png) no-repeat center center;
    background-size: cover;
    padding: 4em 2em;
    max-width: 100%;
    color: transparent;
    font-size: 3em;
    font-weight: 300;
    text-align: center;
    text-transform: none; }
  @media only screen and (max-width: 850px) {
    body.dap h1 {
      padding: 2em 1em; } }
  body.dap h1::before, body.dap h1::after {
    content: none; }
  body.dap h3 {
    color: #fff;
    font-weight: 600;
    text-align: center; }
  body.dap h4 {
    border: none;
    color: #fff;
    text-transform: uppercase; }
  body.dap form label {
    color: #7e7f7f;
    font-size: 1.1em; }
  body.dap section.blue {
    background: #9acddd;
    padding: 2em 4em; }
  body.dap .intro {
    text-align: center; }
  body.dap .simple {
    display: block;
    background: #fff;
    border: 1px solid #d9d9d8;
    border-radius: 7px;
    color: #807f7f;
    margin: 0 auto; }
  body.dap .simple:hover {
    background: #999;
    color: #fff; }
  body.dap .simple.--inline {
    display: inline-block; }
  body.dap .cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; }
  body.dap .cards .card {
    background: #9acddd;
    color: #fff;
    flex-basis: calc((100% / 2) - 4em);
    margin: 1em 2em;
    padding: 1em;
    text-align: center;
    font-size: 1.2em; }
  @media only screen and (max-width: 600px) {
      body.dap .cards .card {
        flex-basis: 100%; } }
  body.dap .cards .card.--green {
    background: #7dd4b8; }
  body.dap .cards .card.testimony {
    flex-basis: calc((100% / 3) - 1.5em);
    margin: 0.5em 0.5em;
    position: relative; }
  body.dap .cards .card.testimony p {
    margin-bottom: 0; }
    body.dap .cards .card.testimony p:first-child {
      font-size: 0.9em; }
  body.dap .cards .card.testimony a {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0; }

body#pinnacle_tscpa_mastercard img {
  border: none;
  box-shadow: none;
  margin: 0; }
  body#pinnacle_tscpa_mastercard h1 {
    background: url(/img/site/mastercard/header_image.jpg) no-repeat left top;
    background-size: cover;
    padding: 6em 2em 2em 2em;
    max-width: 100%;
    border-top: 4px solid lightgrey;
    border-bottom: 10px solid lightgrey;
    font-size: 3em;
    font-weight: 300;
    text-transform: none; }
  @media only screen and (max-width: 850px) {
    body#pinnacle_tscpa_mastercard h1 {
      padding: 2em 1em; } }
  body#pinnacle_tscpa_mastercard h1 sup {
    font-size: 0.5em; }
  body#pinnacle_tscpa_mastercard .intro {
    display: flex;
    color: dimgrey; }
  body#pinnacle_tscpa_mastercard .intro:nth-child(1) {
    flex: 3; }
  body#pinnacle_tscpa_mastercard .intro:nth-child(2) {
    flex: 1; }
  body#pinnacle_tscpa_mastercard .card__benefit {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    margin-bottom: 2em; }
  body#pinnacle_tscpa_mastercard .card__benefit > * {
    flex: 1; }
  body#pinnacle_tscpa_mastercard .card__benefit > *:nth-child(2) {
    border-left: 1px solid grey;
    padding-left: 1em;
    flex: 3; }
  @media only screen and (max-width: 600px) {
      body#pinnacle_tscpa_mastercard .card__benefit > *:nth-child(1) {
        display: none; } }
  body#pinnacle_tscpa_mastercard .card__benefit span {
    color: #007ea5;
    font-weight: 600; }
  body#pinnacle_tscpa_mastercard .card__benefit sup {
    font-size: small;
    font-weight: 400; }
  body#pinnacle_tscpa_mastercard .button {
    background: #007ea5;
    font-size: 1.2em;
    margin-right: 0; }
  body#pinnacle_tscpa_mastercard .button:hover {
    background: #005772; }
  body#pinnacle_tscpa_mastercard .fdic {
    font-style: italic;
    font-size: 0.85rem; }
/*
 * Dev stuff
 * Shame Edits
 */
a[href=''] {
  text-decoration: line-through; }

/** Last Modified: Wed, 26 Feb 2025 14:25:37 -0600 (Cached, 965aa104d884798c71383029363a8e87) **/