/*------------------------------------*\
    $TABLE OF CONTENTS 
    based generally on Harry Roberts excellent CSS Guidelines https://github.com/csswizardry/CSS-Guidelines
\*------------------------------------*/
/**
 * VARIABLES..............................Declarations of Sass variables 
 * .....Colors
 * .....Typography
 * .....Layout
 * .....Defaults
 * .....Breakpoints
 * MIXINS.................................Sass mixins 
 * RESET..................................Set reset defaults
 * GLOBAL CLASSES.........................Set reset defaults
 * GLOBAL ELEMENTS........................Establish global styles
 * .....Main
 * .....Headings
 * .....Text-related elements (p, blockquote, lists)
 * .....Defaults
 * .....Breakpoints
 * TYPOGRAPHY------------------------------
 * MEDIA------------------------------
 * LAYOUT------------------------------
 * NAVIGATION------------------------------
 * TOC To Be Continued
 */
/*------------------------------------*\
    $VARIABLES
\*------------------------------------*/
/*------------------------------------*\
    $MIXINS
\*------------------------------------*/
/* CSS Transition
  Usage: @include transition(width,0.3s,ease-out);
 */
/* Rem Unit font sizes with relative fallback http:/seesparkbox.com/foundry/scss_rem_mixin_now_with_a_better_fallback  
  Usage: @include font-size(1, large);
*/
/*------------------------------------*\
    $RESET
\*------------------------------------*/
/* Border-Box http:/paulirish.com/2012/box-sizing-border-box-ftw/ */
/* line 6, scss/generic/_reset.scss */
* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 11, scss/generic/_reset.scss */
html, body, div, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, ol, ul, li, form, legend, label, table, header, footer, nav, section, figure {
  margin: 0;
  padding: 0;
}

/* line 15, scss/generic/_reset.scss */
header, footer, nav, section, article, hgroup, figure {
  display: block;
}

/* line 9, scss/bootstrap/_type.scss */
p {
  margin: 0 0 10px;
}

/* line 12, scss/bootstrap/_type.scss */
.lead {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 200;
  line-height: 1.4;
}
@media (min-width: 48em) {
  /* line 12, scss/bootstrap/_type.scss */
  .lead {
    font-size: 21px;
  }
}

/* line 29, scss/bootstrap/_type.scss */
small,
.small {
  font-size: 85%;
}

/* line 32, scss/bootstrap/_type.scss */
cite {
  font-style: normal;
}

/* line 35, scss/bootstrap/_type.scss */
.text-muted {
  color: #dddddd;
}

/* line 38, scss/bootstrap/_type.scss */
.text-primary {
  color: #428bca;
}
/* line 40, scss/bootstrap/_type.scss */
.text-primary:hover {
  color: #3071a9;
}

/* line 44, scss/bootstrap/_type.scss */
.text-warning {
  color: #c09853;
}
/* line 46, scss/bootstrap/_type.scss */
.text-warning:hover {
  color: #a47e3c;
}

/* line 50, scss/bootstrap/_type.scss */
.text-danger {
  color: #b94a48;
}
/* line 52, scss/bootstrap/_type.scss */
.text-danger:hover {
  color: #953b39;
}

/* line 56, scss/bootstrap/_type.scss */
.text-success {
  color: #468847;
}
/* line 58, scss/bootstrap/_type.scss */
.text-success:hover {
  color: #356635;
}

/* line 62, scss/bootstrap/_type.scss */
.text-info {
  color: #3a87ad;
}
/* line 64, scss/bootstrap/_type.scss */
.text-info:hover {
  color: #2d6987;
}

/* line 70, scss/bootstrap/_type.scss */
.text-left {
  text-align: left;
}

/* line 71, scss/bootstrap/_type.scss */
.text-right {
  text-align: right;
}

/* line 72, scss/bootstrap/_type.scss */
.text-center {
  text-align: center;
}

/* line 79, scss/bootstrap/_type.scss */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Roboto Condensed", Helvetica, Arial, sans-serif;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}
/* line 86, scss/bootstrap/_type.scss */
h1 small,
h1 .small, h2 small,
h2 .small, h3 small,
h3 .small, h4 small,
h4 .small, h5 small,
h5 .small, h6 small,
h6 .small,
.h1 small,
.h1 .small, .h2 small,
.h2 .small, .h3 small,
.h3 .small, .h4 small,
.h4 .small, .h5 small,
.h5 .small, .h6 small,
.h6 .small {
  font-weight: normal;
  line-height: 1;
  color: #dddddd;
}

/* line 95, scss/bootstrap/_type.scss */
h1,
h2,
h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}
/* line 100, scss/bootstrap/_type.scss */
h1 small,
h1 .small,
h2 small,
h2 .small,
h3 small,
h3 .small {
  font-size: 65%;
}

/* line 106, scss/bootstrap/_type.scss */
h4,
h5,
h6 {
  margin-top: 10px;
  margin-bottom: 10px;
}
/* line 111, scss/bootstrap/_type.scss */
h4 small,
h4 .small,
h5 small,
h5 .small,
h6 small,
h6 .small {
  font-size: 75%;
}

/* line 116, scss/bootstrap/_type.scss */
h1, .h1 {
  font-size: 36px;
}

/* line 117, scss/bootstrap/_type.scss */
h2, .h2 {
  font-size: 30px;
}

/* line 118, scss/bootstrap/_type.scss */
h3, .h3 {
  font-size: 24px;
}

/* line 119, scss/bootstrap/_type.scss */
h4, .h4 {
  font-size: 18px;
}

/* line 120, scss/bootstrap/_type.scss */
h5, .h5 {
  font-size: 14px;
}

/* line 121, scss/bootstrap/_type.scss */
h6, .h6 {
  font-size: 12px;
}

/* line 127, scss/bootstrap/_type.scss */
.page-header {
  padding-bottom: 9px;
  margin: 40px 0 20px;
  border-bottom: 1px solid #eeeeee;
}

/* line 140, scss/bootstrap/_type.scss */
ul,
ol {
  margin-top: 0;
  margin-bottom: 10px;
}
/* line 144, scss/bootstrap/_type.scss */
ul ul,
ul ol,
ol ul,
ol ol {
  margin-bottom: 0;
}

/* line 152, scss/bootstrap/_type.scss */
.list-unstyled, .list-inline {
  padding-left: 0;
  list-style: none;
}

/* line 161, scss/bootstrap/_type.scss */
.list-inline > li {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
}
/* line 166, scss/bootstrap/_type.scss */
.list-inline > li:first-child {
  padding-left: 0;
}

/* line 173, scss/bootstrap/_type.scss */
dl {
  margin-bottom: 20px;
}

/* line 177, scss/bootstrap/_type.scss */
dt,
dd {
  line-height: 1.42857;
}

/* line 180, scss/bootstrap/_type.scss */
dt {
  font-weight: bold;
}

/* line 183, scss/bootstrap/_type.scss */
dd {
  margin-left: 0;
}

@media (min-width: 48em) {
  /* line 194, scss/bootstrap/_type.scss */
  .dl-horizontal dt {
    float: left;
    width: 160px;
    clear: left;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  /* line 201, scss/bootstrap/_type.scss */
  .dl-horizontal dd {
    margin-left: 180px;
  }
  /* line 21, scss/bootstrap/_mixins.scss */
  .dl-horizontal dd:before, .dl-horizontal dd:after {
    content: " ";
    /* 1 */
    display: table;
    /* 2 */
  }
  /* line 25, scss/bootstrap/_mixins.scss */
  .dl-horizontal dd:after {
    clear: both;
  }
}
/* line 214, scss/bootstrap/_type.scss */
abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #dddddd;
}

/* line 218, scss/bootstrap/_type.scss */
abbr.initialism {
  font-size: 90%;
  text-transform: uppercase;
}

/* line 224, scss/bootstrap/_type.scss */
blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  border-left: 5px solid #eeeeee;
}
/* line 228, scss/bootstrap/_type.scss */
blockquote p {
  font-size: 17.5px;
  font-weight: 300;
  line-height: 1.25;
}
/* line 233, scss/bootstrap/_type.scss */
blockquote p:last-child {
  margin-bottom: 0;
}
/* line 236, scss/bootstrap/_type.scss */
blockquote small {
  display: block;
  line-height: 1.42857;
  color: #dddddd;
}
/* line 240, scss/bootstrap/_type.scss */
blockquote small:before {
  content: '\2014 \00A0';
}
/* line 246, scss/bootstrap/_type.scss */
blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  border-right: 5px solid #eeeeee;
  border-left: 0;
}
/* line 253, scss/bootstrap/_type.scss */
blockquote.pull-right p,
blockquote.pull-right small,
blockquote.pull-right .small {
  text-align: right;
}
/* line 258, scss/bootstrap/_type.scss */
blockquote.pull-right small:before,
blockquote.pull-right .small:before {
  content: '';
}
/* line 261, scss/bootstrap/_type.scss */
blockquote.pull-right small:after,
blockquote.pull-right .small:after {
  content: '\00A0 \2014';
}

/* line 270, scss/bootstrap/_type.scss */
blockquote:before,
blockquote:after {
  content: "";
}

/* line 275, scss/bootstrap/_type.scss */
address {
  margin-bottom: 20px;
  font-style: normal;
  line-height: 1.42857;
}

/* line 10, scss/bootstrap/_code.scss */
code,
kbd,
pre,
samp {
  font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
}

/* line 15, scss/bootstrap/_code.scss */
code {
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  background-color: #f9f2f4;
  white-space: nowrap;
  border-radius: 4px;
}

/* line 25, scss/bootstrap/_code.scss */
pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.42857;
  word-break: break-all;
  word-wrap: break-word;
  color: #333333;
  background-color: whitesmoke;
  border: 1px solid #cccccc;
  border-radius: 4px;
}
/* line 39, scss/bootstrap/_code.scss */
pre code {
  padding: 0;
  font-size: inherit;
  color: inherit;
  white-space: pre-wrap;
  background-color: transparent;
  border-radius: 0;
}

/* line 50, scss/bootstrap/_code.scss */
.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}

/* line 6, scss/bootstrap/_grid.scss */
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
/* line 21, scss/bootstrap/_mixins.scss */
.container:before, .container:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}
/* line 25, scss/bootstrap/_mixins.scss */
.container:after {
  clear: both;
}

/* line 11, scss/bootstrap/_grid.scss */
.row {
  margin-left: -15px;
  margin-right: -15px;
}
/* line 21, scss/bootstrap/_mixins.scss */
.row:before, .row:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}
/* line 25, scss/bootstrap/_mixins.scss */
.row:after {
  clear: both;
}

/* line 728, scss/bootstrap/_mixins.scss */
.col-xs-12, .col-sm-12, .col-md-12, .col-lg-12, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

/* line 747, scss/bootstrap/_mixins.scss */
.col-xs-12, .col-xs-11, .col-xs-10, .col-xs-9, .col-xs-8, .col-xs-7, .col-xs-6, .col-xs-5, .col-xs-4, .col-xs-3, .col-xs-2, .col-xs-1 {
  float: left;
}

/* line 755, scss/bootstrap/_mixins.scss */
.col-xs-1 {
  width: 8.33333%;
}

/* line 755, scss/bootstrap/_mixins.scss */
.col-xs-2 {
  width: 16.66667%;
}

/* line 755, scss/bootstrap/_mixins.scss */
.col-xs-3 {
  width: 25%;
}

/* line 755, scss/bootstrap/_mixins.scss */
.col-xs-4 {
  width: 33.33333%;
}

/* line 755, scss/bootstrap/_mixins.scss */
.col-xs-5 {
  width: 41.66667%;
}

/* line 755, scss/bootstrap/_mixins.scss */
.col-xs-6 {
  width: 50%;
}

/* line 755, scss/bootstrap/_mixins.scss */
.col-xs-7 {
  width: 58.33333%;
}

/* line 755, scss/bootstrap/_mixins.scss */
.col-xs-8 {
  width: 66.66667%;
}

/* line 755, scss/bootstrap/_mixins.scss */
.col-xs-9 {
  width: 75%;
}

/* line 755, scss/bootstrap/_mixins.scss */
.col-xs-10 {
  width: 83.33333%;
}

/* line 755, scss/bootstrap/_mixins.scss */
.col-xs-11 {
  width: 91.66667%;
}

/* line 755, scss/bootstrap/_mixins.scss */
.col-xs-12 {
  width: 100%;
}

/* line 765, scss/bootstrap/_mixins.scss */
.col-xs-pull-0 {
  right: 0%;
}

/* line 765, scss/bootstrap/_mixins.scss */
.col-xs-pull-1 {
  right: 8.33333%;
}

/* line 765, scss/bootstrap/_mixins.scss */
.col-xs-pull-2 {
  right: 16.66667%;
}

/* line 765, scss/bootstrap/_mixins.scss */
.col-xs-pull-3 {
  right: 25%;
}

/* line 765, scss/bootstrap/_mixins.scss */
.col-xs-pull-4 {
  right: 33.33333%;
}

/* line 765, scss/bootstrap/_mixins.scss */
.col-xs-pull-5 {
  right: 41.66667%;
}

/* line 765, scss/bootstrap/_mixins.scss */
.col-xs-pull-6 {
  right: 50%;
}

/* line 765, scss/bootstrap/_mixins.scss */
.col-xs-pull-7 {
  right: 58.33333%;
}

/* line 765, scss/bootstrap/_mixins.scss */
.col-xs-pull-8 {
  right: 66.66667%;
}

/* line 765, scss/bootstrap/_mixins.scss */
.col-xs-pull-9 {
  right: 75%;
}

/* line 765, scss/bootstrap/_mixins.scss */
.col-xs-pull-10 {
  right: 83.33333%;
}

/* line 765, scss/bootstrap/_mixins.scss */
.col-xs-pull-11 {
  right: 91.66667%;
}

/* line 765, scss/bootstrap/_mixins.scss */
.col-xs-pull-12 {
  right: 100%;
}

/* line 760, scss/bootstrap/_mixins.scss */
.col-xs-push-0 {
  left: 0%;
}

/* line 760, scss/bootstrap/_mixins.scss */
.col-xs-push-1 {
  left: 8.33333%;
}

/* line 760, scss/bootstrap/_mixins.scss */
.col-xs-push-2 {
  left: 16.66667%;
}

/* line 760, scss/bootstrap/_mixins.scss */
.col-xs-push-3 {
  left: 25%;
}

/* line 760, scss/bootstrap/_mixins.scss */
.col-xs-push-4 {
  left: 33.33333%;
}

/* line 760, scss/bootstrap/_mixins.scss */
.col-xs-push-5 {
  left: 41.66667%;
}

/* line 760, scss/bootstrap/_mixins.scss */
.col-xs-push-6 {
  left: 50%;
}

/* line 760, scss/bootstrap/_mixins.scss */
.col-xs-push-7 {
  left: 58.33333%;
}

/* line 760, scss/bootstrap/_mixins.scss */
.col-xs-push-8 {
  left: 66.66667%;
}

/* line 760, scss/bootstrap/_mixins.scss */
.col-xs-push-9 {
  left: 75%;
}

/* line 760, scss/bootstrap/_mixins.scss */
.col-xs-push-10 {
  left: 83.33333%;
}

/* line 760, scss/bootstrap/_mixins.scss */
.col-xs-push-11 {
  left: 91.66667%;
}

/* line 760, scss/bootstrap/_mixins.scss */
.col-xs-push-12 {
  left: 100%;
}

/* line 770, scss/bootstrap/_mixins.scss */
.col-xs-offset-0 {
  margin-left: 0%;
}

/* line 770, scss/bootstrap/_mixins.scss */
.col-xs-offset-1 {
  margin-left: 8.33333%;
}

/* line 770, scss/bootstrap/_mixins.scss */
.col-xs-offset-2 {
  margin-left: 16.66667%;
}

/* line 770, scss/bootstrap/_mixins.scss */
.col-xs-offset-3 {
  margin-left: 25%;
}

/* line 770, scss/bootstrap/_mixins.scss */
.col-xs-offset-4 {
  margin-left: 33.33333%;
}

/* line 770, scss/bootstrap/_mixins.scss */
.col-xs-offset-5 {
  margin-left: 41.66667%;
}

/* line 770, scss/bootstrap/_mixins.scss */
.col-xs-offset-6 {
  margin-left: 50%;
}

/* line 770, scss/bootstrap/_mixins.scss */
.col-xs-offset-7 {
  margin-left: 58.33333%;
}

/* line 770, scss/bootstrap/_mixins.scss */
.col-xs-offset-8 {
  margin-left: 66.66667%;
}

/* line 770, scss/bootstrap/_mixins.scss */
.col-xs-offset-9 {
  margin-left: 75%;
}

/* line 770, scss/bootstrap/_mixins.scss */
.col-xs-offset-10 {
  margin-left: 83.33333%;
}

/* line 770, scss/bootstrap/_mixins.scss */
.col-xs-offset-11 {
  margin-left: 91.66667%;
}

/* line 770, scss/bootstrap/_mixins.scss */
.col-xs-offset-12 {
  margin-left: 100%;
}

@media (min-width: 48em) {
  /* line 43, scss/bootstrap/_grid.scss */
  .container {
    width: 750px;
  }

  /* line 747, scss/bootstrap/_mixins.scss */
  .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1 {
    float: left;
  }

  /* line 755, scss/bootstrap/_mixins.scss */
  .col-sm-1 {
    width: 8.33333%;
  }

  /* line 755, scss/bootstrap/_mixins.scss */
  .col-sm-2 {
    width: 16.66667%;
  }

  /* line 755, scss/bootstrap/_mixins.scss */
  .col-sm-3 {
    width: 25%;
  }

  /* line 755, scss/bootstrap/_mixins.scss */
  .col-sm-4 {
    width: 33.33333%;
  }

  /* line 755, scss/bootstrap/_mixins.scss */
  .col-sm-5 {
    width: 41.66667%;
  }

  /* line 755, scss/bootstrap/_mixins.scss */
  .col-sm-6 {
    width: 50%;
  }

  /* line 755, scss/bootstrap/_mixins.scss */
  .col-sm-7 {
    width: 58.33333%;
  }

  /* line 755, scss/bootstrap/_mixins.scss */
  .col-sm-8 {
    width: 66.66667%;
  }

  /* line 755, scss/bootstrap/_mixins.scss */
  .col-sm-9 {
    width: 75%;
  }

  /* line 755, scss/bootstrap/_mixins.scss */
  .col-sm-10 {
    width: 83.33333%;
  }

  /* line 755, scss/bootstrap/_mixins.scss */
  .col-sm-11 {
    width: 91.66667%;
  }

  /* line 755, scss/bootstrap/_mixins.scss */
  .col-sm-12 {
    width: 100%;
  }

  /* line 765, scss/bootstrap/_mixins.scss */
  .col-sm-pull-0 {
    right: 0%;
  }

  /* line 765, scss/bootstrap/_mixins.scss */
  .col-sm-pull-1 {
    right: 8.33333%;
  }

  /* line 765, scss/bootstrap/_mixins.scss */
  .col-sm-pull-2 {
    right: 16.66667%;
  }

  /* line 765, scss/bootstrap/_mixins.scss */
  .col-sm-pull-3 {
    right: 25%;
  }

  /* line 765, scss/bootstrap/_mixins.scss */
  .col-sm-pull-4 {
    right: 33.33333%;
  }

  /* line 765, scss/bootstrap/_mixins.scss */
  .col-sm-pull-5 {
    right: 41.66667%;
  }

  /* line 765, scss/bootstrap/_mixins.scss */
  .col-sm-pull-6 {
    right: 50%;
  }

  /* line 765, scss/bootstrap/_mixins.scss */
  .col-sm-pull-7 {
    right: 58.33333%;
  }

  /* line 765, scss/bootstrap/_mixins.scss */
  .col-sm-pull-8 {
    right: 66.66667%;
  }

  /* line 765, scss/bootstrap/_mixins.scss */
  .col-sm-pull-9 {
    right: 75%;
  }

  /* line 765, scss/bootstrap/_mixins.scss */
  .col-sm-pull-10 {
    right: 83.33333%;
  }

  /* line 765, scss/bootstrap/_mixins.scss */
  .col-sm-pull-11 {
    right: 91.66667%;
  }

  /* line 765, scss/bootstrap/_mixins.scss */
  .col-sm-pull-12 {
    right: 100%;
  }

  /* line 760, scss/bootstrap/_mixins.scss */
  .col-sm-push-0 {
    left: 0%;
  }

  /* line 760, scss/bootstrap/_mixins.scss */
  .col-sm-push-1 {
    left: 8.33333%;
  }

  /* line 760, scss/bootstrap/_mixins.scss */
  .col-sm-push-2 {
    left: 16.66667%;
  }

  /* line 760, scss/bootstrap/_mixins.scss */
  .col-sm-push-3 {
    left: 25%;
  }

  /* line 760, scss/bootstrap/_mixins.scss */
  .col-sm-push-4 {
    left: 33.33333%;
  }

  /* line 760, scss/bootstrap/_mixins.scss */
  .col-sm-push-5 {
    left: 41.66667%;
  }

  /* line 760, scss/bootstrap/_mixins.scss */
  .col-sm-push-6 {
    left: 50%;
  }

  /* line 760, scss/bootstrap/_mixins.scss */
  .col-sm-push-7 {
    left: 58.33333%;
  }

  /* line 760, scss/bootstrap/_mixins.scss */
  .col-sm-push-8 {
    left: 66.66667%;
  }

  /* line 760, scss/bootstrap/_mixins.scss */
  .col-sm-push-9 {
    left: 75%;
  }

  /* line 760, scss/bootstrap/_mixins.scss */
  .col-sm-push-10 {
    left: 83.33333%;
  }

  /* line 760, scss/bootstrap/_mixins.scss */
  .col-sm-push-11 {
    left: 91.66667%;
  }

  /* line 760, scss/bootstrap/_mixins.scss */
  .col-sm-push-12 {
    left: 100%;
  }

  /* line 770, scss/bootstrap/_mixins.scss */
  .col-sm-offset-0 {
    margin-left: 0%;
  }

  /* line 770, scss/bootstrap/_mixins.scss */
  .col-sm-offset-1 {
    margin-left: 8.33333%;
  }

  /* line 770, scss/bootstrap/_mixins.scss */
  .col-sm-offset-2 {
    margin-left: 16.66667%;
  }

  /* line 770, scss/bootstrap/_mixins.scss */
  .col-sm-offset-3 {
    margin-left: 25%;
  }

  /* line 770, scss/bootstrap/_mixins.scss */
  .col-sm-offset-4 {
    margin-left: 33.33333%;
  }

  /* line 770, scss/bootstrap/_mixins.scss */
  .col-sm-offset-5 {
    margin-left: 41.66667%;
  }

  /* line 770, scss/bootstrap/_mixins.scss */
  .col-sm-offset-6 {
    margin-left: 50%;
  }

  /* line 770, scss/bootstrap/_mixins.scss */
  .col-sm-offset-7 {
    margin-left: 58.33333%;
  }

  /* line 770, scss/bootstrap/_mixins.scss */
  .col-sm-offset-8 {
    margin-left: 66.66667%;
  }

  /* line 770, scss/bootstrap/_mixins.scss */
  .col-sm-offset-9 {
    margin-left: 75%;
  }

  /* line 770, scss/bootstrap/_mixins.scss */
  .col-sm-offset-10 {
    margin-left: 83.33333%;
  }

  /* line 770, scss/bootstrap/_mixins.scss */
  .col-sm-offset-11 {
    margin-left: 91.66667%;
  }

  /* line 770, scss/bootstrap/_mixins.scss */
  .col-sm-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 56em) {
  /* line 63, scss/bootstrap/_grid.scss */
  .container {
    width: 970px;
  }

  /* line 747, scss/bootstrap/_mixins.scss */
  .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1 {
    float: left;
  }

  /* line 755, scss/bootstrap/_mixins.scss */
  .col-md-1 {
    width: 8.33333%;
  }

  /* line 755, scss/bootstrap/_mixins.scss */
  .col-md-2 {
    width: 16.66667%;
  }

  /* line 755, scss/bootstrap/_mixins.scss */
  .col-md-3 {
    width: 25%;
  }

  /* line 755, scss/bootstrap/_mixins.scss */
  .col-md-4 {
    width: 33.33333%;
  }

  /* line 755, scss/bootstrap/_mixins.scss */
  .col-md-5 {
    width: 41.66667%;
  }

  /* line 755, scss/bootstrap/_mixins.scss */
  .col-md-6 {
    width: 50%;
  }

  /* line 755, scss/bootstrap/_mixins.scss */
  .col-md-7 {
    width: 58.33333%;
  }

  /* line 755, scss/bootstrap/_mixins.scss */
  .col-md-8 {
    width: 66.66667%;
  }

  /* line 755, scss/bootstrap/_mixins.scss */
  .col-md-9 {
    width: 75%;
  }

  /* line 755, scss/bootstrap/_mixins.scss */
  .col-md-10 {
    width: 83.33333%;
  }

  /* line 755, scss/bootstrap/_mixins.scss */
  .col-md-11 {
    width: 91.66667%;
  }

  /* line 755, scss/bootstrap/_mixins.scss */
  .col-md-12 {
    width: 100%;
  }

  /* line 765, scss/bootstrap/_mixins.scss */
  .col-md-pull-0 {
    right: 0%;
  }

  /* line 765, scss/bootstrap/_mixins.scss */
  .col-md-pull-1 {
    right: 8.33333%;
  }

  /* line 765, scss/bootstrap/_mixins.scss */
  .col-md-pull-2 {
    right: 16.66667%;
  }

  /* line 765, scss/bootstrap/_mixins.scss */
  .col-md-pull-3 {
    right: 25%;
  }

  /* line 765, scss/bootstrap/_mixins.scss */
  .col-md-pull-4 {
    right: 33.33333%;
  }

  /* line 765, scss/bootstrap/_mixins.scss */
  .col-md-pull-5 {
    right: 41.66667%;
  }

  /* line 765, scss/bootstrap/_mixins.scss */
  .col-md-pull-6 {
    right: 50%;
  }

  /* line 765, scss/bootstrap/_mixins.scss */
  .col-md-pull-7 {
    right: 58.33333%;
  }

  /* line 765, scss/bootstrap/_mixins.scss */
  .col-md-pull-8 {
    right: 66.66667%;
  }

  /* line 765, scss/bootstrap/_mixins.scss */
  .col-md-pull-9 {
    right: 75%;
  }

  /* line 765, scss/bootstrap/_mixins.scss */
  .col-md-pull-10 {
    right: 83.33333%;
  }

  /* line 765, scss/bootstrap/_mixins.scss */
  .col-md-pull-11 {
    right: 91.66667%;
  }

  /* line 765, scss/bootstrap/_mixins.scss */
  .col-md-pull-12 {
    right: 100%;
  }

  /* line 760, scss/bootstrap/_mixins.scss */
  .col-md-push-0 {
    left: 0%;
  }

  /* line 760, scss/bootstrap/_mixins.scss */
  .col-md-push-1 {
    left: 8.33333%;
  }

  /* line 760, scss/bootstrap/_mixins.scss */
  .col-md-push-2 {
    left: 16.66667%;
  }

  /* line 760, scss/bootstrap/_mixins.scss */
  .col-md-push-3 {
    left: 25%;
  }

  /* line 760, scss/bootstrap/_mixins.scss */
  .col-md-push-4 {
    left: 33.33333%;
  }

  /* line 760, scss/bootstrap/_mixins.scss */
  .col-md-push-5 {
    left: 41.66667%;
  }

  /* line 760, scss/bootstrap/_mixins.scss */
  .col-md-push-6 {
    left: 50%;
  }

  /* line 760, scss/bootstrap/_mixins.scss */
  .col-md-push-7 {
    left: 58.33333%;
  }

  /* line 760, scss/bootstrap/_mixins.scss */
  .col-md-push-8 {
    left: 66.66667%;
  }

  /* line 760, scss/bootstrap/_mixins.scss */
  .col-md-push-9 {
    left: 75%;
  }

  /* line 760, scss/bootstrap/_mixins.scss */
  .col-md-push-10 {
    left: 83.33333%;
  }

  /* line 760, scss/bootstrap/_mixins.scss */
  .col-md-push-11 {
    left: 91.66667%;
  }

  /* line 760, scss/bootstrap/_mixins.scss */
  .col-md-push-12 {
    left: 100%;
  }

  /* line 770, scss/bootstrap/_mixins.scss */
  .col-md-offset-0 {
    margin-left: 0%;
  }

  /* line 770, scss/bootstrap/_mixins.scss */
  .col-md-offset-1 {
    margin-left: 8.33333%;
  }

  /* line 770, scss/bootstrap/_mixins.scss */
  .col-md-offset-2 {
    margin-left: 16.66667%;
  }

  /* line 770, scss/bootstrap/_mixins.scss */
  .col-md-offset-3 {
    margin-left: 25%;
  }

  /* line 770, scss/bootstrap/_mixins.scss */
  .col-md-offset-4 {
    margin-left: 33.33333%;
  }

  /* line 770, scss/bootstrap/_mixins.scss */
  .col-md-offset-5 {
    margin-left: 41.66667%;
  }

  /* line 770, scss/bootstrap/_mixins.scss */
  .col-md-offset-6 {
    margin-left: 50%;
  }

  /* line 770, scss/bootstrap/_mixins.scss */
  .col-md-offset-7 {
    margin-left: 58.33333%;
  }

  /* line 770, scss/bootstrap/_mixins.scss */
  .col-md-offset-8 {
    margin-left: 66.66667%;
  }

  /* line 770, scss/bootstrap/_mixins.scss */
  .col-md-offset-9 {
    margin-left: 75%;
  }

  /* line 770, scss/bootstrap/_mixins.scss */
  .col-md-offset-10 {
    margin-left: 83.33333%;
  }

  /* line 770, scss/bootstrap/_mixins.scss */
  .col-md-offset-11 {
    margin-left: 91.66667%;
  }

  /* line 770, scss/bootstrap/_mixins.scss */
  .col-md-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 73em) {
  /* line 83, scss/bootstrap/_grid.scss */
  .container {
    width: 1170px;
  }

  /* line 747, scss/bootstrap/_mixins.scss */
  .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1 {
    float: left;
  }

  /* line 755, scss/bootstrap/_mixins.scss */
  .col-lg-1 {
    width: 8.33333%;
  }

  /* line 755, scss/bootstrap/_mixins.scss */
  .col-lg-2 {
    width: 16.66667%;
  }

  /* line 755, scss/bootstrap/_mixins.scss */
  .col-lg-3 {
    width: 25%;
  }

  /* line 755, scss/bootstrap/_mixins.scss */
  .col-lg-4 {
    width: 33.33333%;
  }

  /* line 755, scss/bootstrap/_mixins.scss */
  .col-lg-5 {
    width: 41.66667%;
  }

  /* line 755, scss/bootstrap/_mixins.scss */
  .col-lg-6 {
    width: 50%;
  }

  /* line 755, scss/bootstrap/_mixins.scss */
  .col-lg-7 {
    width: 58.33333%;
  }

  /* line 755, scss/bootstrap/_mixins.scss */
  .col-lg-8 {
    width: 66.66667%;
  }

  /* line 755, scss/bootstrap/_mixins.scss */
  .col-lg-9 {
    width: 75%;
  }

  /* line 755, scss/bootstrap/_mixins.scss */
  .col-lg-10 {
    width: 83.33333%;
  }

  /* line 755, scss/bootstrap/_mixins.scss */
  .col-lg-11 {
    width: 91.66667%;
  }

  /* line 755, scss/bootstrap/_mixins.scss */
  .col-lg-12 {
    width: 100%;
  }

  /* line 765, scss/bootstrap/_mixins.scss */
  .col-lg-pull-0 {
    right: 0%;
  }

  /* line 765, scss/bootstrap/_mixins.scss */
  .col-lg-pull-1 {
    right: 8.33333%;
  }

  /* line 765, scss/bootstrap/_mixins.scss */
  .col-lg-pull-2 {
    right: 16.66667%;
  }

  /* line 765, scss/bootstrap/_mixins.scss */
  .col-lg-pull-3 {
    right: 25%;
  }

  /* line 765, scss/bootstrap/_mixins.scss */
  .col-lg-pull-4 {
    right: 33.33333%;
  }

  /* line 765, scss/bootstrap/_mixins.scss */
  .col-lg-pull-5 {
    right: 41.66667%;
  }

  /* line 765, scss/bootstrap/_mixins.scss */
  .col-lg-pull-6 {
    right: 50%;
  }

  /* line 765, scss/bootstrap/_mixins.scss */
  .col-lg-pull-7 {
    right: 58.33333%;
  }

  /* line 765, scss/bootstrap/_mixins.scss */
  .col-lg-pull-8 {
    right: 66.66667%;
  }

  /* line 765, scss/bootstrap/_mixins.scss */
  .col-lg-pull-9 {
    right: 75%;
  }

  /* line 765, scss/bootstrap/_mixins.scss */
  .col-lg-pull-10 {
    right: 83.33333%;
  }

  /* line 765, scss/bootstrap/_mixins.scss */
  .col-lg-pull-11 {
    right: 91.66667%;
  }

  /* line 765, scss/bootstrap/_mixins.scss */
  .col-lg-pull-12 {
    right: 100%;
  }

  /* line 760, scss/bootstrap/_mixins.scss */
  .col-lg-push-0 {
    left: 0%;
  }

  /* line 760, scss/bootstrap/_mixins.scss */
  .col-lg-push-1 {
    left: 8.33333%;
  }

  /* line 760, scss/bootstrap/_mixins.scss */
  .col-lg-push-2 {
    left: 16.66667%;
  }

  /* line 760, scss/bootstrap/_mixins.scss */
  .col-lg-push-3 {
    left: 25%;
  }

  /* line 760, scss/bootstrap/_mixins.scss */
  .col-lg-push-4 {
    left: 33.33333%;
  }

  /* line 760, scss/bootstrap/_mixins.scss */
  .col-lg-push-5 {
    left: 41.66667%;
  }

  /* line 760, scss/bootstrap/_mixins.scss */
  .col-lg-push-6 {
    left: 50%;
  }

  /* line 760, scss/bootstrap/_mixins.scss */
  .col-lg-push-7 {
    left: 58.33333%;
  }

  /* line 760, scss/bootstrap/_mixins.scss */
  .col-lg-push-8 {
    left: 66.66667%;
  }

  /* line 760, scss/bootstrap/_mixins.scss */
  .col-lg-push-9 {
    left: 75%;
  }

  /* line 760, scss/bootstrap/_mixins.scss */
  .col-lg-push-10 {
    left: 83.33333%;
  }

  /* line 760, scss/bootstrap/_mixins.scss */
  .col-lg-push-11 {
    left: 91.66667%;
  }

  /* line 760, scss/bootstrap/_mixins.scss */
  .col-lg-push-12 {
    left: 100%;
  }

  /* line 770, scss/bootstrap/_mixins.scss */
  .col-lg-offset-0 {
    margin-left: 0%;
  }

  /* line 770, scss/bootstrap/_mixins.scss */
  .col-lg-offset-1 {
    margin-left: 8.33333%;
  }

  /* line 770, scss/bootstrap/_mixins.scss */
  .col-lg-offset-2 {
    margin-left: 16.66667%;
  }

  /* line 770, scss/bootstrap/_mixins.scss */
  .col-lg-offset-3 {
    margin-left: 25%;
  }

  /* line 770, scss/bootstrap/_mixins.scss */
  .col-lg-offset-4 {
    margin-left: 33.33333%;
  }

  /* line 770, scss/bootstrap/_mixins.scss */
  .col-lg-offset-5 {
    margin-left: 41.66667%;
  }

  /* line 770, scss/bootstrap/_mixins.scss */
  .col-lg-offset-6 {
    margin-left: 50%;
  }

  /* line 770, scss/bootstrap/_mixins.scss */
  .col-lg-offset-7 {
    margin-left: 58.33333%;
  }

  /* line 770, scss/bootstrap/_mixins.scss */
  .col-lg-offset-8 {
    margin-left: 66.66667%;
  }

  /* line 770, scss/bootstrap/_mixins.scss */
  .col-lg-offset-9 {
    margin-left: 75%;
  }

  /* line 770, scss/bootstrap/_mixins.scss */
  .col-lg-offset-10 {
    margin-left: 83.33333%;
  }

  /* line 770, scss/bootstrap/_mixins.scss */
  .col-lg-offset-11 {
    margin-left: 91.66667%;
  }

  /* line 770, scss/bootstrap/_mixins.scss */
  .col-lg-offset-12 {
    margin-left: 100%;
  }
}
/* line 94, scss/bootstrap/_grid.scss */
article {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  background: white;
  border: 1px solid #ddd;
  margin: 30px 0;
  padding: 0;
}
@media (min-width: 56em) {
  /* line 94, scss/bootstrap/_grid.scss */
  article {
    float: left;
    width: 100%;
  }
}
/* line 105, scss/bootstrap/_grid.scss */
article section.main {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  padding: 30px 35px;
  background: white;
}
@media (min-width: 56em) {
  /* line 105, scss/bootstrap/_grid.scss */
  article section.main {
    float: left;
    width: 75%;
  }
}
/* line 111, scss/bootstrap/_grid.scss */
article section.mid {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  padding: 0 25px 0 0;
  background: white;
}
@media (min-width: 56em) {
  /* line 111, scss/bootstrap/_grid.scss */
  article section.mid {
    float: left;
    width: 75%;
  }
}
/* line 117, scss/bootstrap/_grid.scss */
article aside.sidebar {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  padding: 0;
  background: white;
}
@media (min-width: 56em) {
  /* line 117, scss/bootstrap/_grid.scss */
  article aside.sidebar {
    float: left;
    width: 25%;
  }
}
/* line 123, scss/bootstrap/_grid.scss */
article aside.pull-right {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  padding: 0 0 0 25px;
  border-left: 3px solid #eeeeee;
}
@media (min-width: 56em) {
  /* line 123, scss/bootstrap/_grid.scss */
  article aside.pull-right {
    float: left;
    width: 25%;
  }
}
/* line 128, scss/bootstrap/_grid.scss */
article aside.pull-right li {
  padding: 10px;
  border-top: 1px dotted #dddddd;
  line-height: 0.95em;
}

/* line 136, scss/bootstrap/_grid.scss */
.featured-resources {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  padding: 0 20px 0 0;
}
@media (min-width: 56em) {
  /* line 136, scss/bootstrap/_grid.scss */
  .featured-resources {
    float: left;
    width: 25%;
  }
}

/* line 141, scss/bootstrap/_grid.scss */
.marketing {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 56em) {
  /* line 141, scss/bootstrap/_grid.scss */
  .marketing {
    float: left;
    width: 50%;
  }
}

/* line 145, scss/bootstrap/_grid.scss */
.hours {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  padding: 0 0 0 20px;
}
@media (min-width: 56em) {
  /* line 145, scss/bootstrap/_grid.scss */
  .hours {
    float: left;
    width: 25%;
  }
}

/* line 150, scss/bootstrap/_grid.scss */
body, html {
  height: 100%;
}

/* line 154, scss/bootstrap/_grid.scss */
#wrap {
  background: #f1efe5 url('/inc/img/cream_dust.png') repeat;
  background-color: #f1efe5;
  min-height: 100%;
}

/* line 159, scss/bootstrap/_grid.scss */
#main {
  /*padding-bottom: 72px;*/
}

.page {
  padding-bottom: 72px;
}

/* line 6, scss/bootstrap/_tables.scss */
table {
  max-width: 100%;
  background-color: transparent;
}

/* line 10, scss/bootstrap/_tables.scss */
th {
  text-align: left;
}

/* line 17, scss/bootstrap/_tables.scss */
.table {
  width: 100%;
  margin-bottom: 20px;
}
/* line 26, scss/bootstrap/_tables.scss */
.table > thead > tr > th,
.table > thead > tr > td,
.table > tbody > tr > th,
.table > tbody > tr > td,
.table > tfoot > tr > th,
.table > tfoot > tr > td {
  padding: 8px;
  line-height: 1.42857;
  vertical-align: top;
}
/* line 35, scss/bootstrap/_tables.scss */
.table > thead > tr > th {
  vertical-align: bottom;
}
/* line 45, scss/bootstrap/_tables.scss */
.table > caption + thead > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > th,
.table > thead:first-child > tr:first-child > td {
  border-top: 0;
}
/* line 51, scss/bootstrap/_tables.scss */
.table > tbody + tbody {
  border-top: 2px solid #dddddd;
}
/* line 56, scss/bootstrap/_tables.scss */
.table .table {
  background-color: white;
}

/* line 70, scss/bootstrap/_tables.scss */
.table-condensed > thead > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > th,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > th,
.table-condensed > tfoot > tr > td {
  padding: 5px;
}

/* line 82, scss/bootstrap/_tables.scss */
.table-bordered {
  border: 1px solid #dddddd;
}
/* line 89, scss/bootstrap/_tables.scss */
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > th,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > th,
.table-bordered > tfoot > tr > td {
  border: 1px solid #dddddd;
}
/* line 96, scss/bootstrap/_tables.scss */
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
  border-bottom-width: 2px;
}

/* line 110, scss/bootstrap/_tables.scss */
.table-striped > tbody > tr:nth-child(odd) > td,
.table-striped > tbody > tr:nth-child(odd) > th {
  background-color: #eeeeee;
}

/* line 124, scss/bootstrap/_tables.scss */
.table-hover > tbody > tr:hover > td,
.table-hover > tbody > tr:hover > th {
  background-color: whitesmoke;
}

/* line 135, scss/bootstrap/_tables.scss */
table col[class*="col-"] {
  float: none;
  display: table-column;
}

/* line 142, scss/bootstrap/_tables.scss */
table td[class*="col-"],
table th[class*="col-"] {
  float: none;
  display: table-cell;
}

/* line 163, scss/bootstrap/_tables.scss */
.table > thead > tr > td.active,
.table > thead > tr > th.active, .table > thead > tr.active > td, .table > thead > tr.active > th,
.table > tbody > tr > td.active,
.table > tbody > tr > th.active,
.table > tbody > tr.active > td,
.table > tbody > tr.active > th,
.table > tfoot > tr > td.active,
.table > tfoot > tr > th.active,
.table > tfoot > tr.active > td,
.table > tfoot > tr.active > th {
  background-color: whitesmoke;
}

/* line 441, scss/bootstrap/_mixins.scss */
.table > thead > tr > td.success,
.table > thead > tr > th.success, .table > thead > tr.success > td, .table > thead > tr.success > th,
.table > tbody > tr > td.success,
.table > tbody > tr > th.success,
.table > tbody > tr.success > td,
.table > tbody > tr.success > th,
.table > tfoot > tr > td.success,
.table > tfoot > tr > th.success,
.table > tfoot > tr.success > td,
.table > tfoot > tr.success > th {
  background-color: #dff0d8;
}

/* line 452, scss/bootstrap/_mixins.scss */
.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover, .table-hover > tbody > tr.success:hover > td, .table-hover > tbody > tr.success:hover > th {
  background-color: #d0e9c6;
}

/* line 441, scss/bootstrap/_mixins.scss */
.table > thead > tr > td.danger,
.table > thead > tr > th.danger, .table > thead > tr.danger > td, .table > thead > tr.danger > th,
.table > tbody > tr > td.danger,
.table > tbody > tr > th.danger,
.table > tbody > tr.danger > td,
.table > tbody > tr.danger > th,
.table > tfoot > tr > td.danger,
.table > tfoot > tr > th.danger,
.table > tfoot > tr.danger > td,
.table > tfoot > tr.danger > th {
  background-color: #f2dede;
}

/* line 452, scss/bootstrap/_mixins.scss */
.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover, .table-hover > tbody > tr.danger:hover > td, .table-hover > tbody > tr.danger:hover > th {
  background-color: #ebcccc;
}

/* line 441, scss/bootstrap/_mixins.scss */
.table > thead > tr > td.warning,
.table > thead > tr > th.warning, .table > thead > tr.warning > td, .table > thead > tr.warning > th,
.table > tbody > tr > td.warning,
.table > tbody > tr > th.warning,
.table > tbody > tr.warning > td,
.table > tbody > tr.warning > th,
.table > tfoot > tr > td.warning,
.table > tfoot > tr > th.warning,
.table > tfoot > tr.warning > td,
.table > tfoot > tr.warning > th {
  background-color: #fcf8e3;
}

/* line 452, scss/bootstrap/_mixins.scss */
.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover, .table-hover > tbody > tr.warning:hover > td, .table-hover > tbody > tr.warning:hover > th {
  background-color: #faf2cc;
}

@media (max-width: 47em) {
  /* line 183, scss/bootstrap/_tables.scss */
  .table-responsive {
    width: 100%;
    margin-bottom: 15px;
    overflow-y: hidden;
    overflow-x: scroll;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #dddddd;
    -webkit-overflow-scrolling: touch;
  }
  /* line 193, scss/bootstrap/_tables.scss */
  .table-responsive > .table {
    margin-bottom: 0;
  }
  /* line 202, scss/bootstrap/_tables.scss */
  .table-responsive > .table > thead > tr > th,
  .table-responsive > .table > thead > tr > td,
  .table-responsive > .table > tbody > tr > th,
  .table-responsive > .table > tbody > tr > td,
  .table-responsive > .table > tfoot > tr > th,
  .table-responsive > .table > tfoot > tr > td {
    white-space: nowrap;
  }
  /* line 210, scss/bootstrap/_tables.scss */
  .table-responsive > .table-bordered {
    border: 0;
  }
  /* line 219, scss/bootstrap/_tables.scss */
  .table-responsive > .table-bordered > thead > tr > th:first-child,
  .table-responsive > .table-bordered > thead > tr > td:first-child,
  .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0;
  }
  /* line 223, scss/bootstrap/_tables.scss */
  .table-responsive > .table-bordered > thead > tr > th:last-child,
  .table-responsive > .table-bordered > thead > tr > td:last-child,
  .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0;
  }
  /* line 236, scss/bootstrap/_tables.scss */
  .table-responsive > .table-bordered > tbody > tr:last-child > th,
  .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  .table-responsive > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0;
  }
}
/* line 10, scss/bootstrap/_forms.scss */
fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}

/* line 16, scss/bootstrap/_forms.scss */
legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
  font-size: 21px;
  line-height: inherit;
  color: #333333;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}

/* line 28, scss/bootstrap/_forms.scss */
label {
  display: inline-block;
  margin-bottom: 5px;
  font-weight: bold;
}

/* line 38, scss/bootstrap/_forms.scss */
input[type="search"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 44, scss/bootstrap/_forms.scss */
input[type="radio"],
input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  /* IE8-9 */
  line-height: normal;
}

/* line 51, scss/bootstrap/_forms.scss */
input[type="file"] {
  display: block;
}

/* line 57, scss/bootstrap/_forms.scss */
select[multiple],
select[size] {
  height: auto;
}

/* line 62, scss/bootstrap/_forms.scss */
select optgroup {
  font-size: inherit;
  font-style: inherit;
  font-family: inherit;
}

/* line 71, scss/bootstrap/_forms.scss */
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: thin dotted #333;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

/* line 80, scss/bootstrap/_forms.scss */
input[type="number"]::-webkit-outer-spin-button, input[type="number"]::-webkit-inner-spin-button {
  height: auto;
}

/* line 86, scss/bootstrap/_forms.scss */
output {
  display: block;
  padding-top: 7px;
  font-size: 14px;
  line-height: 1.42857;
  color: #ECEBE8;
  vertical-align: middle;
}

/* line 118, scss/bootstrap/_forms.scss */
.form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857;
  color: #ECEBE8;
  vertical-align: middle;
  background-color: white;
  background-image: none;
  border: 1px solid #cccccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
/* line 833, scss/bootstrap/_mixins.scss */
.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
/* line 57, scss/bootstrap/_mixins.scss */
.form-control:-moz-placeholder {
  color: #dddddd;
}
/* line 58, scss/bootstrap/_mixins.scss */
.form-control::-moz-placeholder {
  color: #dddddd;
}
/* line 59, scss/bootstrap/_mixins.scss */
.form-control:-ms-input-placeholder {
  color: #dddddd;
}
/* line 60, scss/bootstrap/_mixins.scss */
.form-control::-webkit-input-placeholder {
  color: #dddddd;
}
/* line 149, scss/bootstrap/_forms.scss */
.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
  cursor: not-allowed;
  background-color: #eeeeee;
}

/* line 158, scss/bootstrap/_forms.scss */
textarea.form-control {
  height: auto;
}

/* line 168, scss/bootstrap/_forms.scss */
.form-group {
  margin-bottom: 15px;
}

/* line 178, scss/bootstrap/_forms.scss */
.radio,
.checkbox {
  display: block;
  min-height: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 20px;
  vertical-align: middle;
}
/* line 185, scss/bootstrap/_forms.scss */
.radio label,
.checkbox label {
  display: inline;
  margin-bottom: 0;
  font-weight: normal;
  cursor: pointer;
}

/* line 195, scss/bootstrap/_forms.scss */
.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
  float: left;
  margin-left: -20px;
}

/* line 200, scss/bootstrap/_forms.scss */
.radio + .radio,
.checkbox + .checkbox {
  margin-top: -5px;
}

/* line 206, scss/bootstrap/_forms.scss */
.radio-inline,
.checkbox-inline {
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  vertical-align: middle;
  font-weight: normal;
  cursor: pointer;
}

/* line 215, scss/bootstrap/_forms.scss */
.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px;
}

/* line 230, scss/bootstrap/_forms.scss */
input[type="radio"][disabled], fieldset[disabled] input[type="radio"],
input[type="checkbox"][disabled], fieldset[disabled]
input[type="checkbox"],
.radio[disabled], fieldset[disabled]
.radio,
.radio-inline[disabled], fieldset[disabled]
.radio-inline,
.checkbox[disabled], fieldset[disabled]
.checkbox,
.checkbox-inline[disabled], fieldset[disabled]
.checkbox-inline {
  cursor: not-allowed;
}

/* line 848, scss/bootstrap/_mixins.scss */
.input-sm, .input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  padding: 5px 10px;
  font-size: 0.75em;
  line-height: 1.5;
  border-radius: 3px;
}

/* line 853, scss/bootstrap/_mixins.scss */
select.input-sm, .input-group-sm > select.form-control,
.input-group-sm > select.input-group-addon,
.input-group-sm > .input-group-btn > select.btn {
  height: 30px;
  line-height: 30px;
}

/* line 858, scss/bootstrap/_mixins.scss */
textarea.input-sm, .input-group-sm > textarea.form-control,
.input-group-sm > textarea.input-group-addon,
.input-group-sm > .input-group-btn > textarea.btn {
  height: auto;
}

/* line 848, scss/bootstrap/_mixins.scss */
.input-lg, .input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
  height: 45px;
  padding: 10px 16px;
  font-size: 1.4375em;
  line-height: 1.33;
  border-radius: 6px;
}

/* line 853, scss/bootstrap/_mixins.scss */
select.input-lg, .input-group-lg > select.form-control,
.input-group-lg > select.input-group-addon,
.input-group-lg > .input-group-btn > select.btn {
  height: 45px;
  line-height: 45px;
}

/* line 858, scss/bootstrap/_mixins.scss */
textarea.input-lg, .input-group-lg > textarea.form-control,
.input-group-lg > textarea.input-group-addon,
.input-group-lg > .input-group-btn > textarea.btn {
  height: auto;
}

/* line 797, scss/bootstrap/_mixins.scss */
.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline {
  color: #c09853;
}
/* line 801, scss/bootstrap/_mixins.scss */
.has-warning .form-control {
  border-color: #c09853;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
/* line 804, scss/bootstrap/_mixins.scss */
.has-warning .form-control:focus {
  border-color: #a47e3c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e;
}
/* line 811, scss/bootstrap/_mixins.scss */
.has-warning .input-group-addon {
  color: #c09853;
  border-color: #c09853;
  background-color: #fcf8e3;
}

/* line 797, scss/bootstrap/_mixins.scss */
.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline {
  color: #b94a48;
}
/* line 801, scss/bootstrap/_mixins.scss */
.has-error .form-control {
  border-color: #b94a48;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
/* line 804, scss/bootstrap/_mixins.scss */
.has-error .form-control:focus {
  border-color: #953b39;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
}
/* line 811, scss/bootstrap/_mixins.scss */
.has-error .input-group-addon {
  color: #b94a48;
  border-color: #b94a48;
  background-color: #f2dede;
}

/* line 797, scss/bootstrap/_mixins.scss */
.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline {
  color: #468847;
}
/* line 801, scss/bootstrap/_mixins.scss */
.has-success .form-control {
  border-color: #468847;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
/* line 804, scss/bootstrap/_mixins.scss */
.has-success .form-control:focus {
  border-color: #356635;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b;
}
/* line 811, scss/bootstrap/_mixins.scss */
.has-success .input-group-addon {
  color: #468847;
  border-color: #468847;
  background-color: #dff0d8;
}

/* line 265, scss/bootstrap/_forms.scss */
.form-control-static {
  margin-bottom: 0;
}

/* line 275, scss/bootstrap/_forms.scss */
.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #737373;
}

@media (min-width: 48em) {
  /* line 300, scss/bootstrap/_forms.scss */
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 307, scss/bootstrap/_forms.scss */
  .form-inline .form-control {
    display: inline-block;
  }
  /* line 315, scss/bootstrap/_forms.scss */
  .form-inline .radio,
  .form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
  }
  /* line 322, scss/bootstrap/_forms.scss */
  .form-inline .radio input[type="radio"],
  .form-inline .checkbox input[type="checkbox"] {
    float: none;
    margin-left: 0;
  }
}

/* line 342, scss/bootstrap/_forms.scss */
.form-horizontal .control-label,
.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 7px;
}
/* line 349, scss/bootstrap/_forms.scss */
.form-horizontal .form-group {
  margin-left: -15px;
  margin-right: -15px;
}
/* line 21, scss/bootstrap/_mixins.scss */
.form-horizontal .form-group:before, .form-horizontal .form-group:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}
/* line 25, scss/bootstrap/_mixins.scss */
.form-horizontal .form-group:after {
  clear: both;
}
/* line 353, scss/bootstrap/_forms.scss */
.form-horizontal .form-control-static {
  padding-top: 7px;
}
@media (min-width: 48em) {
  /* line 359, scss/bootstrap/_forms.scss */
  .form-horizontal .control-label {
    text-align: right;
  }
}

/* line 10, scss/bootstrap/_buttons.scss */
.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857;
  border-radius: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}
/* line 23, scss/bootstrap/_buttons.scss */
.btn:focus {
  outline: thin dotted #333;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
/* line 28, scss/bootstrap/_buttons.scss */
.btn:hover, .btn:focus {
  color: #333333;
  text-decoration: none;
}
/* line 34, scss/bootstrap/_buttons.scss */
.btn:active, .btn.active {
  outline: 0;
  background-image: none;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
/* line 42, scss/bootstrap/_buttons.scss */
.btn.disabled, .btn[disabled], fieldset[disabled] .btn {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* line 55, scss/bootstrap/_buttons.scss */
.btn-default {
  color: #333333;
  background-color: white;
  border-color: #cccccc;
}
/* line 470, scss/bootstrap/_mixins.scss */
.btn-default:hover, .btn-default:focus, .btn-default:active, .btn-default.active {
  color: #333333;
  background-color: #ebebeb;
  border-color: #adadad;
}
/* line 475, scss/bootstrap/_mixins.scss */
.open .btn-default.dropdown-toggle {
  color: #333333;
  background-color: #ebebeb;
  border-color: #adadad;
}
/* line 481, scss/bootstrap/_mixins.scss */
.btn-default:active, .btn-default.active {
  background-image: none;
}
/* line 484, scss/bootstrap/_mixins.scss */
.open .btn-default.dropdown-toggle {
  background-image: none;
}
/* line 494, scss/bootstrap/_mixins.scss */
.btn-default.disabled, .btn-default.disabled:hover, .btn-default.disabled:focus, .btn-default.disabled:active, .btn-default.disabled.active, .btn-default[disabled], .btn-default[disabled]:hover, .btn-default[disabled]:focus, .btn-default[disabled]:active, .btn-default[disabled].active, fieldset[disabled] .btn-default, fieldset[disabled] .btn-default:hover, fieldset[disabled] .btn-default:focus, fieldset[disabled] .btn-default:active, fieldset[disabled] .btn-default.active {
  background-color: white;
  border-color: #cccccc;
}

/* line 58, scss/bootstrap/_buttons.scss */
.btn-primary {
  color: white;
  background-color: #428bca;
  border-color: #357ebd;
}
/* line 470, scss/bootstrap/_mixins.scss */
.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active {
  color: white;
  background-color: #3276b1;
  border-color: #285e8e;
}
/* line 475, scss/bootstrap/_mixins.scss */
.open .btn-primary.dropdown-toggle {
  color: white;
  background-color: #3276b1;
  border-color: #285e8e;
}
/* line 481, scss/bootstrap/_mixins.scss */
.btn-primary:active, .btn-primary.active {
  background-image: none;
}
/* line 484, scss/bootstrap/_mixins.scss */
.open .btn-primary.dropdown-toggle {
  background-image: none;
}
/* line 494, scss/bootstrap/_mixins.scss */
.btn-primary.disabled, .btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disabled:active, .btn-primary.disabled.active, .btn-primary[disabled], .btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary[disabled]:active, .btn-primary[disabled].active, fieldset[disabled] .btn-primary, fieldset[disabled] .btn-primary:hover, fieldset[disabled] .btn-primary:focus, fieldset[disabled] .btn-primary:active, fieldset[disabled] .btn-primary.active {
  background-color: #428bca;
  border-color: #357ebd;
}

/* line 62, scss/bootstrap/_buttons.scss */
.btn-warning {
  color: white;
  background-color: #f0ad4e;
  border-color: #eea236;
}
/* line 470, scss/bootstrap/_mixins.scss */
.btn-warning:hover, .btn-warning:focus, .btn-warning:active, .btn-warning.active {
  color: white;
  background-color: #ed9c28;
  border-color: #d58512;
}
/* line 475, scss/bootstrap/_mixins.scss */
.open .btn-warning.dropdown-toggle {
  color: white;
  background-color: #ed9c28;
  border-color: #d58512;
}
/* line 481, scss/bootstrap/_mixins.scss */
.btn-warning:active, .btn-warning.active {
  background-image: none;
}
/* line 484, scss/bootstrap/_mixins.scss */
.open .btn-warning.dropdown-toggle {
  background-image: none;
}
/* line 494, scss/bootstrap/_mixins.scss */
.btn-warning.disabled, .btn-warning.disabled:hover, .btn-warning.disabled:focus, .btn-warning.disabled:active, .btn-warning.disabled.active, .btn-warning[disabled], .btn-warning[disabled]:hover, .btn-warning[disabled]:focus, .btn-warning[disabled]:active, .btn-warning[disabled].active, fieldset[disabled] .btn-warning, fieldset[disabled] .btn-warning:hover, fieldset[disabled] .btn-warning:focus, fieldset[disabled] .btn-warning:active, fieldset[disabled] .btn-warning.active {
  background-color: #f0ad4e;
  border-color: #eea236;
}

/* line 66, scss/bootstrap/_buttons.scss */
.btn-danger {
  color: white;
  background-color: #d9534f;
  border-color: #d43f3a;
}
/* line 470, scss/bootstrap/_mixins.scss */
.btn-danger:hover, .btn-danger:focus, .btn-danger:active, .btn-danger.active {
  color: white;
  background-color: #d2322d;
  border-color: #ac2925;
}
/* line 475, scss/bootstrap/_mixins.scss */
.open .btn-danger.dropdown-toggle {
  color: white;
  background-color: #d2322d;
  border-color: #ac2925;
}
/* line 481, scss/bootstrap/_mixins.scss */
.btn-danger:active, .btn-danger.active {
  background-image: none;
}
/* line 484, scss/bootstrap/_mixins.scss */
.open .btn-danger.dropdown-toggle {
  background-image: none;
}
/* line 494, scss/bootstrap/_mixins.scss */
.btn-danger.disabled, .btn-danger.disabled:hover, .btn-danger.disabled:focus, .btn-danger.disabled:active, .btn-danger.disabled.active, .btn-danger[disabled], .btn-danger[disabled]:hover, .btn-danger[disabled]:focus, .btn-danger[disabled]:active, .btn-danger[disabled].active, fieldset[disabled] .btn-danger, fieldset[disabled] .btn-danger:hover, fieldset[disabled] .btn-danger:focus, fieldset[disabled] .btn-danger:active, fieldset[disabled] .btn-danger.active {
  background-color: #d9534f;
  border-color: #d43f3a;
}

/* line 70, scss/bootstrap/_buttons.scss */
.btn-success {
  color: white;
  background-color: #5cb85c;
  border-color: #4cae4c;
}
/* line 470, scss/bootstrap/_mixins.scss */
.btn-success:hover, .btn-success:focus, .btn-success:active, .btn-success.active {
  color: white;
  background-color: #47a447;
  border-color: #398439;
}
/* line 475, scss/bootstrap/_mixins.scss */
.open .btn-success.dropdown-toggle {
  color: white;
  background-color: #47a447;
  border-color: #398439;
}
/* line 481, scss/bootstrap/_mixins.scss */
.btn-success:active, .btn-success.active {
  background-image: none;
}
/* line 484, scss/bootstrap/_mixins.scss */
.open .btn-success.dropdown-toggle {
  background-image: none;
}
/* line 494, scss/bootstrap/_mixins.scss */
.btn-success.disabled, .btn-success.disabled:hover, .btn-success.disabled:focus, .btn-success.disabled:active, .btn-success.disabled.active, .btn-success[disabled], .btn-success[disabled]:hover, .btn-success[disabled]:focus, .btn-success[disabled]:active, .btn-success[disabled].active, fieldset[disabled] .btn-success, fieldset[disabled] .btn-success:hover, fieldset[disabled] .btn-success:focus, fieldset[disabled] .btn-success:active, fieldset[disabled] .btn-success.active {
  background-color: #5cb85c;
  border-color: #4cae4c;
}

/* line 74, scss/bootstrap/_buttons.scss */
.btn-info {
  color: white;
  background-color: #5bc0de;
  border-color: #46b8da;
}
/* line 470, scss/bootstrap/_mixins.scss */
.btn-info:hover, .btn-info:focus, .btn-info:active, .btn-info.active {
  color: white;
  background-color: #39b3d7;
  border-color: #269abc;
}
/* line 475, scss/bootstrap/_mixins.scss */
.open .btn-info.dropdown-toggle {
  color: white;
  background-color: #39b3d7;
  border-color: #269abc;
}
/* line 481, scss/bootstrap/_mixins.scss */
.btn-info:active, .btn-info.active {
  background-image: none;
}
/* line 484, scss/bootstrap/_mixins.scss */
.open .btn-info.dropdown-toggle {
  background-image: none;
}
/* line 494, scss/bootstrap/_mixins.scss */
.btn-info.disabled, .btn-info.disabled:hover, .btn-info.disabled:focus, .btn-info.disabled:active, .btn-info.disabled.active, .btn-info[disabled], .btn-info[disabled]:hover, .btn-info[disabled]:focus, .btn-info[disabled]:active, .btn-info[disabled].active, fieldset[disabled] .btn-info, fieldset[disabled] .btn-info:hover, fieldset[disabled] .btn-info:focus, fieldset[disabled] .btn-info:active, fieldset[disabled] .btn-info.active {
  background-color: #5bc0de;
  border-color: #46b8da;
}

/* line 83, scss/bootstrap/_buttons.scss */
.btn-link {
  color: #428bca;
  font-weight: normal;
  cursor: pointer;
  border-radius: 0;
}
/* line 92, scss/bootstrap/_buttons.scss */
.btn-link, .btn-link:active, .btn-link[disabled], fieldset[disabled] .btn-link {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}
/* line 99, scss/bootstrap/_buttons.scss */
.btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active {
  border-color: transparent;
}
/* line 103, scss/bootstrap/_buttons.scss */
.btn-link:hover, .btn-link:focus {
  color: #2a6496;
  text-decoration: underline;
  background-color: transparent;
}
/* line 111, scss/bootstrap/_buttons.scss */
.btn-link[disabled]:hover, .btn-link[disabled]:focus, fieldset[disabled] .btn-link:hover, fieldset[disabled] .btn-link:focus {
  color: #dddddd;
  text-decoration: none;
}

/* line 122, scss/bootstrap/_buttons.scss */
.btn-lg, .btn-group-lg > .btn {
  padding: 10px 16px;
  font-size: 1.4375em;
  line-height: 1.33;
  border-radius: 6px;
}

/* line 127, scss/bootstrap/_buttons.scss */
.btn-sm, .btn-group-sm > .btn,
.btn-xs,
.btn-group-xs > .btn {
  padding: 5px 10px;
  font-size: 0.75em;
  line-height: 1.5;
  border-radius: 3px;
}

/* line 131, scss/bootstrap/_buttons.scss */
.btn-xs, .btn-group-xs > .btn {
  padding: 1px 5px;
}

/* line 139, scss/bootstrap/_buttons.scss */
.btn-block {
  display: block;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

/* line 147, scss/bootstrap/_buttons.scss */
.btn-block + .btn-block {
  margin-top: 5px;
}

/* line 155, scss/bootstrap/_buttons.scss */
input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%;
}

@font-face {
  font-family: 'Glyphicons Halflings';
  src: url("../fonts/glyphicons-halflings-regular.eot");
  src: url("../fonts/glyphicons-halflings-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/glyphicons-halflings-regular.woff") format("woff"), url("../fonts/glyphicons-halflings-regular.ttf") format("truetype"), url("../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular") format("svg");
}

/* line 21, scss/bootstrap/_glyphicons.scss */
.glyphicon {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: 'Glyphicons Halflings';
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* line 32, scss/bootstrap/_glyphicons.scss */
.glyphicon:empty {
  width: 1em;
}

/* line 38, scss/bootstrap/_glyphicons.scss */
.glyphicon-asterisk:before {
  content: "\2a";
}

/* line 39, scss/bootstrap/_glyphicons.scss */
.glyphicon-plus:before {
  content: "\2b";
}

/* line 40, scss/bootstrap/_glyphicons.scss */
.glyphicon-euro:before {
  content: "\20ac";
}

/* line 41, scss/bootstrap/_glyphicons.scss */
.glyphicon-minus:before {
  content: "\2212";
}

/* line 42, scss/bootstrap/_glyphicons.scss */
.glyphicon-cloud:before {
  content: "\2601";
}

/* line 43, scss/bootstrap/_glyphicons.scss */
.glyphicon-envelope:before {
  content: "\2709";
}

/* line 44, scss/bootstrap/_glyphicons.scss */
.glyphicon-pencil:before {
  content: "\270f";
}

/* line 45, scss/bootstrap/_glyphicons.scss */
.glyphicon-glass:before {
  content: "\e001";
}

/* line 46, scss/bootstrap/_glyphicons.scss */
.glyphicon-music:before {
  content: "\e002";
}

/* line 47, scss/bootstrap/_glyphicons.scss */
.glyphicon-search:before {
  content: "\e003";
}

/* line 48, scss/bootstrap/_glyphicons.scss */
.glyphicon-heart:before {
  content: "\e005";
}

/* line 49, scss/bootstrap/_glyphicons.scss */
.glyphicon-star:before {
  content: "\e006";
}

/* line 50, scss/bootstrap/_glyphicons.scss */
.glyphicon-star-empty:before {
  content: "\e007";
}

/* line 51, scss/bootstrap/_glyphicons.scss */
.glyphicon-user:before {
  content: "\e008";
}

/* line 52, scss/bootstrap/_glyphicons.scss */
.glyphicon-film:before {
  content: "\e009";
}

/* line 53, scss/bootstrap/_glyphicons.scss */
.glyphicon-th-large:before {
  content: "\e010";
}

/* line 54, scss/bootstrap/_glyphicons.scss */
.glyphicon-th:before {
  content: "\e011";
}

/* line 55, scss/bootstrap/_glyphicons.scss */
.glyphicon-th-list:before {
  content: "\e012";
}

/* line 56, scss/bootstrap/_glyphicons.scss */
.glyphicon-ok:before {
  content: "\e013";
}

/* line 57, scss/bootstrap/_glyphicons.scss */
.glyphicon-remove:before {
  content: "\e014";
}

/* line 58, scss/bootstrap/_glyphicons.scss */
.glyphicon-zoom-in:before {
  content: "\e015";
}

/* line 59, scss/bootstrap/_glyphicons.scss */
.glyphicon-zoom-out:before {
  content: "\e016";
}

/* line 60, scss/bootstrap/_glyphicons.scss */
.glyphicon-off:before {
  content: "\e017";
}

/* line 61, scss/bootstrap/_glyphicons.scss */
.glyphicon-signal:before {
  content: "\e018";
}

/* line 62, scss/bootstrap/_glyphicons.scss */
.glyphicon-cog:before {
  content: "\e019";
}

/* line 63, scss/bootstrap/_glyphicons.scss */
.glyphicon-trash:before {
  content: "\e020";
}

/* line 64, scss/bootstrap/_glyphicons.scss */
.glyphicon-home:before {
  content: "\e021";
}

/* line 65, scss/bootstrap/_glyphicons.scss */
.glyphicon-file:before {
  content: "\e022";
}

/* line 66, scss/bootstrap/_glyphicons.scss */
.glyphicon-time:before {
  content: "\e023";
}

/* line 67, scss/bootstrap/_glyphicons.scss */
.glyphicon-road:before {
  content: "\e024";
}

/* line 68, scss/bootstrap/_glyphicons.scss */
.glyphicon-download-alt:before {
  content: "\e025";
}

/* line 69, scss/bootstrap/_glyphicons.scss */
.glyphicon-download:before {
  content: "\e026";
}

/* line 70, scss/bootstrap/_glyphicons.scss */
.glyphicon-upload:before {
  content: "\e027";
}

/* line 71, scss/bootstrap/_glyphicons.scss */
.glyphicon-inbox:before {
  content: "\e028";
}

/* line 72, scss/bootstrap/_glyphicons.scss */
.glyphicon-play-circle:before {
  content: "\e029";
}

/* line 73, scss/bootstrap/_glyphicons.scss */
.glyphicon-repeat:before {
  content: "\e030";
}

/* line 74, scss/bootstrap/_glyphicons.scss */
.glyphicon-refresh:before {
  content: "\e031";
}

/* line 75, scss/bootstrap/_glyphicons.scss */
.glyphicon-list-alt:before {
  content: "\e032";
}

/* line 76, scss/bootstrap/_glyphicons.scss */
.glyphicon-lock:before {
  content: "\e033";
}

/* line 77, scss/bootstrap/_glyphicons.scss */
.glyphicon-flag:before {
  content: "\e034";
}

/* line 78, scss/bootstrap/_glyphicons.scss */
.glyphicon-headphones:before {
  content: "\e035";
}

/* line 79, scss/bootstrap/_glyphicons.scss */
.glyphicon-volume-off:before {
  content: "\e036";
}

/* line 80, scss/bootstrap/_glyphicons.scss */
.glyphicon-volume-down:before {
  content: "\e037";
}

/* line 81, scss/bootstrap/_glyphicons.scss */
.glyphicon-volume-up:before {
  content: "\e038";
}

/* line 82, scss/bootstrap/_glyphicons.scss */
.glyphicon-qrcode:before {
  content: "\e039";
}

/* line 83, scss/bootstrap/_glyphicons.scss */
.glyphicon-barcode:before {
  content: "\e040";
}

/* line 84, scss/bootstrap/_glyphicons.scss */
.glyphicon-tag:before {
  content: "\e041";
}

/* line 85, scss/bootstrap/_glyphicons.scss */
.glyphicon-tags:before {
  content: "\e042";
}

/* line 86, scss/bootstrap/_glyphicons.scss */
.glyphicon-book:before {
  content: "\e043";
}

/* line 87, scss/bootstrap/_glyphicons.scss */
.glyphicon-bookmark:before {
  content: "\e044";
}

/* line 88, scss/bootstrap/_glyphicons.scss */
.glyphicon-print:before {
  content: "\e045";
}

/* line 89, scss/bootstrap/_glyphicons.scss */
.glyphicon-camera:before {
  content: "\e046";
}

/* line 90, scss/bootstrap/_glyphicons.scss */
.glyphicon-font:before {
  content: "\e047";
}

/* line 91, scss/bootstrap/_glyphicons.scss */
.glyphicon-bold:before {
  content: "\e048";
}

/* line 92, scss/bootstrap/_glyphicons.scss */
.glyphicon-italic:before {
  content: "\e049";
}

/* line 93, scss/bootstrap/_glyphicons.scss */
.glyphicon-text-height:before {
  content: "\e050";
}

/* line 94, scss/bootstrap/_glyphicons.scss */
.glyphicon-text-width:before {
  content: "\e051";
}

/* line 95, scss/bootstrap/_glyphicons.scss */
.glyphicon-align-left:before {
  content: "\e052";
}

/* line 96, scss/bootstrap/_glyphicons.scss */
.glyphicon-align-center:before {
  content: "\e053";
}

/* line 97, scss/bootstrap/_glyphicons.scss */
.glyphicon-align-right:before {
  content: "\e054";
}

/* line 98, scss/bootstrap/_glyphicons.scss */
.glyphicon-align-justify:before {
  content: "\e055";
}

/* line 99, scss/bootstrap/_glyphicons.scss */
.glyphicon-list:before {
  content: "\e056";
}

/* line 100, scss/bootstrap/_glyphicons.scss */
.glyphicon-indent-left:before {
  content: "\e057";
}

/* line 101, scss/bootstrap/_glyphicons.scss */
.glyphicon-indent-right:before {
  content: "\e058";
}

/* line 102, scss/bootstrap/_glyphicons.scss */
.glyphicon-facetime-video:before {
  content: "\e059";
}

/* line 103, scss/bootstrap/_glyphicons.scss */
.glyphicon-picture:before {
  content: "\e060";
}

/* line 104, scss/bootstrap/_glyphicons.scss */
.glyphicon-map-marker:before {
  content: "\e062";
}

/* line 105, scss/bootstrap/_glyphicons.scss */
.glyphicon-adjust:before {
  content: "\e063";
}

/* line 106, scss/bootstrap/_glyphicons.scss */
.glyphicon-tint:before {
  content: "\e064";
}

/* line 107, scss/bootstrap/_glyphicons.scss */
.glyphicon-edit:before {
  content: "\e065";
}

/* line 108, scss/bootstrap/_glyphicons.scss */
.glyphicon-share:before {
  content: "\e066";
}

/* line 109, scss/bootstrap/_glyphicons.scss */
.glyphicon-check:before {
  content: "\e067";
}

/* line 110, scss/bootstrap/_glyphicons.scss */
.glyphicon-move:before {
  content: "\e068";
}

/* line 111, scss/bootstrap/_glyphicons.scss */
.glyphicon-step-backward:before {
  content: "\e069";
}

/* line 112, scss/bootstrap/_glyphicons.scss */
.glyphicon-fast-backward:before {
  content: "\e070";
}

/* line 113, scss/bootstrap/_glyphicons.scss */
.glyphicon-backward:before {
  content: "\e071";
}

/* line 114, scss/bootstrap/_glyphicons.scss */
.glyphicon-play:before {
  content: "\e072";
}

/* line 115, scss/bootstrap/_glyphicons.scss */
.glyphicon-pause:before {
  content: "\e073";
}

/* line 116, scss/bootstrap/_glyphicons.scss */
.glyphicon-stop:before {
  content: "\e074";
}

/* line 117, scss/bootstrap/_glyphicons.scss */
.glyphicon-forward:before {
  content: "\e075";
}

/* line 118, scss/bootstrap/_glyphicons.scss */
.glyphicon-fast-forward:before {
  content: "\e076";
}

/* line 119, scss/bootstrap/_glyphicons.scss */
.glyphicon-step-forward:before {
  content: "\e077";
}

/* line 120, scss/bootstrap/_glyphicons.scss */
.glyphicon-eject:before {
  content: "\e078";
}

/* line 121, scss/bootstrap/_glyphicons.scss */
.glyphicon-chevron-left:before {
  content: "\e079";
}

/* line 122, scss/bootstrap/_glyphicons.scss */
.glyphicon-chevron-right:before {
  content: "\e080";
}

/* line 123, scss/bootstrap/_glyphicons.scss */
.glyphicon-plus-sign:before {
  content: "\e081";
}

/* line 124, scss/bootstrap/_glyphicons.scss */
.glyphicon-minus-sign:before {
  content: "\e082";
}

/* line 125, scss/bootstrap/_glyphicons.scss */
.glyphicon-remove-sign:before {
  content: "\e083";
}

/* line 126, scss/bootstrap/_glyphicons.scss */
.glyphicon-ok-sign:before {
  content: "\e084";
}

/* line 127, scss/bootstrap/_glyphicons.scss */
.glyphicon-question-sign:before {
  content: "\e085";
}

/* line 128, scss/bootstrap/_glyphicons.scss */
.glyphicon-info-sign:before {
  content: "\e086";
}

/* line 129, scss/bootstrap/_glyphicons.scss */
.glyphicon-screenshot:before {
  content: "\e087";
}

/* line 130, scss/bootstrap/_glyphicons.scss */
.glyphicon-remove-circle:before {
  content: "\e088";
}

/* line 131, scss/bootstrap/_glyphicons.scss */
.glyphicon-ok-circle:before {
  content: "\e089";
}

/* line 132, scss/bootstrap/_glyphicons.scss */
.glyphicon-ban-circle:before {
  content: "\e090";
}

/* line 133, scss/bootstrap/_glyphicons.scss */
.glyphicon-arrow-left:before {
  content: "\e091";
}

/* line 134, scss/bootstrap/_glyphicons.scss */
.glyphicon-arrow-right:before {
  content: "\e092";
}

/* line 135, scss/bootstrap/_glyphicons.scss */
.glyphicon-arrow-up:before {
  content: "\e093";
}

/* line 136, scss/bootstrap/_glyphicons.scss */
.glyphicon-arrow-down:before {
  content: "\e094";
}

/* line 137, scss/bootstrap/_glyphicons.scss */
.glyphicon-share-alt:before {
  content: "\e095";
}

/* line 138, scss/bootstrap/_glyphicons.scss */
.glyphicon-resize-full:before {
  content: "\e096";
}

/* line 139, scss/bootstrap/_glyphicons.scss */
.glyphicon-resize-small:before {
  content: "\e097";
}

/* line 140, scss/bootstrap/_glyphicons.scss */
.glyphicon-exclamation-sign:before {
  content: "\e101";
}

/* line 141, scss/bootstrap/_glyphicons.scss */
.glyphicon-gift:before {
  content: "\e102";
}

/* line 142, scss/bootstrap/_glyphicons.scss */
.glyphicon-leaf:before {
  content: "\e103";
}

/* line 143, scss/bootstrap/_glyphicons.scss */
.glyphicon-fire:before {
  content: "\e104";
}

/* line 144, scss/bootstrap/_glyphicons.scss */
.glyphicon-eye-open:before {
  content: "\e105";
}

/* line 145, scss/bootstrap/_glyphicons.scss */
.glyphicon-eye-close:before {
  content: "\e106";
}

/* line 146, scss/bootstrap/_glyphicons.scss */
.glyphicon-warning-sign:before {
  content: "\e107";
}

/* line 147, scss/bootstrap/_glyphicons.scss */
.glyphicon-plane:before {
  content: "\e108";
}

/* line 148, scss/bootstrap/_glyphicons.scss */
.glyphicon-calendar:before {
  content: "\e109";
}

/* line 149, scss/bootstrap/_glyphicons.scss */
.glyphicon-random:before {
  content: "\e110";
}

/* line 150, scss/bootstrap/_glyphicons.scss */
.glyphicon-comment:before {
  content: "\e111";
}

/* line 151, scss/bootstrap/_glyphicons.scss */
.glyphicon-magnet:before {
  content: "\e112";
}

/* line 152, scss/bootstrap/_glyphicons.scss */
.glyphicon-chevron-up:before {
  content: "\e113";
}

/* line 153, scss/bootstrap/_glyphicons.scss */
.glyphicon-chevron-down:before {
  content: "\e114";
}

/* line 154, scss/bootstrap/_glyphicons.scss */
.glyphicon-retweet:before {
  content: "\e115";
}

/* line 155, scss/bootstrap/_glyphicons.scss */
.glyphicon-shopping-cart:before {
  content: "\e116";
}

/* line 156, scss/bootstrap/_glyphicons.scss */
.glyphicon-folder-close:before {
  content: "\e117";
}

/* line 157, scss/bootstrap/_glyphicons.scss */
.glyphicon-folder-open:before {
  content: "\e118";
}

/* line 158, scss/bootstrap/_glyphicons.scss */
.glyphicon-resize-vertical:before {
  content: "\e119";
}

/* line 159, scss/bootstrap/_glyphicons.scss */
.glyphicon-resize-horizontal:before {
  content: "\e120";
}

/* line 160, scss/bootstrap/_glyphicons.scss */
.glyphicon-hdd:before {
  content: "\e121";
}

/* line 161, scss/bootstrap/_glyphicons.scss */
.glyphicon-bullhorn:before {
  content: "\e122";
}

/* line 162, scss/bootstrap/_glyphicons.scss */
.glyphicon-bell:before {
  content: "\e123";
}

/* line 163, scss/bootstrap/_glyphicons.scss */
.glyphicon-certificate:before {
  content: "\e124";
}

/* line 164, scss/bootstrap/_glyphicons.scss */
.glyphicon-thumbs-up:before {
  content: "\e125";
}

/* line 165, scss/bootstrap/_glyphicons.scss */
.glyphicon-thumbs-down:before {
  content: "\e126";
}

/* line 166, scss/bootstrap/_glyphicons.scss */
.glyphicon-hand-right:before {
  content: "\e127";
}

/* line 167, scss/bootstrap/_glyphicons.scss */
.glyphicon-hand-left:before {
  content: "\e128";
}

/* line 168, scss/bootstrap/_glyphicons.scss */
.glyphicon-hand-up:before {
  content: "\e129";
}

/* line 169, scss/bootstrap/_glyphicons.scss */
.glyphicon-hand-down:before {
  content: "\e130";
}

/* line 170, scss/bootstrap/_glyphicons.scss */
.glyphicon-circle-arrow-right:before {
  content: "\e131";
}

/* line 171, scss/bootstrap/_glyphicons.scss */
.glyphicon-circle-arrow-left:before {
  content: "\e132";
}

/* line 172, scss/bootstrap/_glyphicons.scss */
.glyphicon-circle-arrow-up:before {
  content: "\e133";
}

/* line 173, scss/bootstrap/_glyphicons.scss */
.glyphicon-circle-arrow-down:before {
  content: "\e134";
}

/* line 174, scss/bootstrap/_glyphicons.scss */
.glyphicon-globe:before {
  content: "\e135";
}

/* line 175, scss/bootstrap/_glyphicons.scss */
.glyphicon-wrench:before {
  content: "\e136";
}

/* line 176, scss/bootstrap/_glyphicons.scss */
.glyphicon-tasks:before {
  content: "\e137";
}

/* line 177, scss/bootstrap/_glyphicons.scss */
.glyphicon-filter:before {
  content: "\e138";
}

/* line 178, scss/bootstrap/_glyphicons.scss */
.glyphicon-briefcase:before {
  content: "\e139";
}

/* line 179, scss/bootstrap/_glyphicons.scss */
.glyphicon-fullscreen:before {
  content: "\e140";
}

/* line 180, scss/bootstrap/_glyphicons.scss */
.glyphicon-dashboard:before {
  content: "\e141";
}

/* line 181, scss/bootstrap/_glyphicons.scss */
.glyphicon-paperclip:before {
  content: "\e142";
}

/* line 182, scss/bootstrap/_glyphicons.scss */
.glyphicon-heart-empty:before {
  content: "\e143";
}

/* line 183, scss/bootstrap/_glyphicons.scss */
.glyphicon-link:before {
  content: "\e144";
}

/* line 184, scss/bootstrap/_glyphicons.scss */
.glyphicon-phone:before {
  content: "\e145";
}

/* line 185, scss/bootstrap/_glyphicons.scss */
.glyphicon-pushpin:before {
  content: "\e146";
}

/* line 186, scss/bootstrap/_glyphicons.scss */
.glyphicon-usd:before {
  content: "\e148";
}

/* line 187, scss/bootstrap/_glyphicons.scss */
.glyphicon-gbp:before {
  content: "\e149";
}

/* line 188, scss/bootstrap/_glyphicons.scss */
.glyphicon-sort:before {
  content: "\e150";
}

/* line 189, scss/bootstrap/_glyphicons.scss */
.glyphicon-sort-by-alphabet:before {
  content: "\e151";
}

/* line 190, scss/bootstrap/_glyphicons.scss */
.glyphicon-sort-by-alphabet-alt:before {
  content: "\e152";
}

/* line 191, scss/bootstrap/_glyphicons.scss */
.glyphicon-sort-by-order:before {
  content: "\e153";
}

/* line 192, scss/bootstrap/_glyphicons.scss */
.glyphicon-sort-by-order-alt:before {
  content: "\e154";
}

/* line 193, scss/bootstrap/_glyphicons.scss */
.glyphicon-sort-by-attributes:before {
  content: "\e155";
}

/* line 194, scss/bootstrap/_glyphicons.scss */
.glyphicon-sort-by-attributes-alt:before {
  content: "\e156";
}

/* line 195, scss/bootstrap/_glyphicons.scss */
.glyphicon-unchecked:before {
  content: "\e157";
}

/* line 196, scss/bootstrap/_glyphicons.scss */
.glyphicon-expand:before {
  content: "\e158";
}

/* line 197, scss/bootstrap/_glyphicons.scss */
.glyphicon-collapse-down:before {
  content: "\e159";
}

/* line 198, scss/bootstrap/_glyphicons.scss */
.glyphicon-collapse-up:before {
  content: "\e160";
}

/* line 199, scss/bootstrap/_glyphicons.scss */
.glyphicon-log-in:before {
  content: "\e161";
}

/* line 200, scss/bootstrap/_glyphicons.scss */
.glyphicon-flash:before {
  content: "\e162";
}

/* line 201, scss/bootstrap/_glyphicons.scss */
.glyphicon-log-out:before {
  content: "\e163";
}

/* line 202, scss/bootstrap/_glyphicons.scss */
.glyphicon-new-window:before {
  content: "\e164";
}

/* line 203, scss/bootstrap/_glyphicons.scss */
.glyphicon-record:before {
  content: "\e165";
}

/* line 204, scss/bootstrap/_glyphicons.scss */
.glyphicon-save:before {
  content: "\e166";
}

/* line 205, scss/bootstrap/_glyphicons.scss */
.glyphicon-open:before {
  content: "\e167";
}

/* line 206, scss/bootstrap/_glyphicons.scss */
.glyphicon-saved:before {
  content: "\e168";
}

/* line 207, scss/bootstrap/_glyphicons.scss */
.glyphicon-import:before {
  content: "\e169";
}

/* line 208, scss/bootstrap/_glyphicons.scss */
.glyphicon-export:before {
  content: "\e170";
}

/* line 209, scss/bootstrap/_glyphicons.scss */
.glyphicon-send:before {
  content: "\e171";
}

/* line 210, scss/bootstrap/_glyphicons.scss */
.glyphicon-floppy-disk:before {
  content: "\e172";
}

/* line 211, scss/bootstrap/_glyphicons.scss */
.glyphicon-floppy-saved:before {
  content: "\e173";
}

/* line 212, scss/bootstrap/_glyphicons.scss */
.glyphicon-floppy-remove:before {
  content: "\e174";
}

/* line 213, scss/bootstrap/_glyphicons.scss */
.glyphicon-floppy-save:before {
  content: "\e175";
}

/* line 214, scss/bootstrap/_glyphicons.scss */
.glyphicon-floppy-open:before {
  content: "\e176";
}

/* line 215, scss/bootstrap/_glyphicons.scss */
.glyphicon-credit-card:before {
  content: "\e177";
}

/* line 216, scss/bootstrap/_glyphicons.scss */
.glyphicon-transfer:before {
  content: "\e178";
}

/* line 217, scss/bootstrap/_glyphicons.scss */
.glyphicon-cutlery:before {
  content: "\e179";
}

/* line 218, scss/bootstrap/_glyphicons.scss */
.glyphicon-header:before {
  content: "\e180";
}

/* line 219, scss/bootstrap/_glyphicons.scss */
.glyphicon-compressed:before {
  content: "\e181";
}

/* line 220, scss/bootstrap/_glyphicons.scss */
.glyphicon-earphone:before {
  content: "\e182";
}

/* line 221, scss/bootstrap/_glyphicons.scss */
.glyphicon-phone-alt:before {
  content: "\e183";
}

/* line 222, scss/bootstrap/_glyphicons.scss */
.glyphicon-tower:before {
  content: "\e184";
}

/* line 223, scss/bootstrap/_glyphicons.scss */
.glyphicon-stats:before {
  content: "\e185";
}

/* line 224, scss/bootstrap/_glyphicons.scss */
.glyphicon-sd-video:before {
  content: "\e186";
}

/* line 225, scss/bootstrap/_glyphicons.scss */
.glyphicon-hd-video:before {
  content: "\e187";
}

/* line 226, scss/bootstrap/_glyphicons.scss */
.glyphicon-subtitles:before {
  content: "\e188";
}

/* line 227, scss/bootstrap/_glyphicons.scss */
.glyphicon-sound-stereo:before {
  content: "\e189";
}

/* line 228, scss/bootstrap/_glyphicons.scss */
.glyphicon-sound-dolby:before {
  content: "\e190";
}

/* line 229, scss/bootstrap/_glyphicons.scss */
.glyphicon-sound-5-1:before {
  content: "\e191";
}

/* line 230, scss/bootstrap/_glyphicons.scss */
.glyphicon-sound-6-1:before {
  content: "\e192";
}

/* line 231, scss/bootstrap/_glyphicons.scss */
.glyphicon-sound-7-1:before {
  content: "\e193";
}

/* line 232, scss/bootstrap/_glyphicons.scss */
.glyphicon-copyright-mark:before {
  content: "\e194";
}

/* line 233, scss/bootstrap/_glyphicons.scss */
.glyphicon-registration-mark:before {
  content: "\e195";
}

/* line 234, scss/bootstrap/_glyphicons.scss */
.glyphicon-cloud-download:before {
  content: "\e197";
}

/* line 235, scss/bootstrap/_glyphicons.scss */
.glyphicon-cloud-upload:before {
  content: "\e198";
}

/* line 236, scss/bootstrap/_glyphicons.scss */
.glyphicon-tree-conifer:before {
  content: "\e199";
}

/* line 237, scss/bootstrap/_glyphicons.scss */
.glyphicon-tree-deciduous:before {
  content: "\e200";
}

/* line 7, scss/bootstrap/_dropdowns.scss */
.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px solid black;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  border-bottom: 0 dotted;
}

/* line 22, scss/bootstrap/_dropdowns.scss */
.dropdown {
  position: relative;
  z-index: 10000;
}

/* line 28, scss/bootstrap/_dropdowns.scss */
.dropdown-toggle:focus {
  outline: 0;
}

/* line 33, scss/bootstrap/_dropdowns.scss */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 0;
  list-style: none;
  font-size: 14px;
  border: none;
  background-color: white;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}
/* line 53, scss/bootstrap/_dropdowns.scss */
.dropdown-menu.pull-right {
  right: 0;
  left: auto;
}
/* line 59, scss/bootstrap/_dropdowns.scss */
.dropdown-menu .divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
/* line 64, scss/bootstrap/_dropdowns.scss */
.dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.42857;
  color: #333333;
  white-space: nowrap;
}

/* line 78, scss/bootstrap/_dropdowns.scss */
.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
  text-decoration: none;
  color: #262626;
  background-color: whitesmoke;
}

/* line 89, scss/bootstrap/_dropdowns.scss */
.dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus {
  color: white;
  text-decoration: none;
  outline: 0;
  background-color: #428bca;
}

/* line 104, scss/bootstrap/_dropdowns.scss */
.dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
  color: #dddddd;
}

/* line 111, scss/bootstrap/_dropdowns.scss */
.dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  cursor: not-allowed;
}

/* line 123, scss/bootstrap/_dropdowns.scss */
.open > .dropdown-menu {
  display: block;
}
/* line 128, scss/bootstrap/_dropdowns.scss */
.open > a {
  outline: 0;
}

/* line 134, scss/bootstrap/_dropdowns.scss */
.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 0.75em;
  line-height: 1.42857;
  color: #dddddd;
}

/* line 143, scss/bootstrap/_dropdowns.scss */
.dropdown-backdrop {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 990;
}

/* line 153, scss/bootstrap/_dropdowns.scss */
.pull-right > .dropdown-menu {
  right: 0;
  left: auto;
}

/* line 166, scss/bootstrap/_dropdowns.scss */
.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  border-top: 0 dotted;
  border-bottom: 4px solid black;
  content: "";
}
/* line 174, scss/bootstrap/_dropdowns.scss */
.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 1px;
}

@media (min-width: 48em) {
  /* line 188, scss/bootstrap/_dropdowns.scss */
  .navbar-right .dropdown-menu {
    right: 0;
    left: auto;
  }
}
/* line 10, scss/bootstrap/_button-groups.scss */
.btn-default .caret {
  border-top-color: #333333;
}
/* line 17, scss/bootstrap/_button-groups.scss */
.btn-primary .caret, .btn-success .caret, .btn-warning .caret, .btn-danger .caret, .btn-info .caret {
  border-top-color: #fff;
}

/* line 22, scss/bootstrap/_button-groups.scss */
.dropup .btn-default .caret {
  border-bottom-color: #333333;
}
/* line 30, scss/bootstrap/_button-groups.scss */
.dropup .btn-primary .caret,
.dropup .btn-success .caret,
.dropup .btn-warning .caret,
.dropup .btn-danger .caret,
.dropup .btn-info .caret {
  border-bottom-color: #fff;
}

/* line 38, scss/bootstrap/_button-groups.scss */
.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
/* line 42, scss/bootstrap/_button-groups.scss */
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  float: left;
}
/* line 49, scss/bootstrap/_button-groups.scss */
.btn-group > .btn:hover, .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,
.btn-group-vertical > .btn:hover,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
  z-index: 2;
}
/* line 52, scss/bootstrap/_button-groups.scss */
.btn-group > .btn:focus,
.btn-group-vertical > .btn:focus {
  outline: none;
}

/* line 64, scss/bootstrap/_button-groups.scss */
.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group {
  margin-left: -1px;
}

/* line 21, scss/bootstrap/_mixins.scss */
.btn-toolbar:before, .btn-toolbar:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}
/* line 25, scss/bootstrap/_mixins.scss */
.btn-toolbar:after {
  clear: both;
}
/* line 73, scss/bootstrap/_button-groups.scss */
.btn-toolbar .btn-group {
  float: left;
}
/* line 80, scss/bootstrap/_button-groups.scss */
.btn-toolbar > .btn + .btn,
.btn-toolbar > .btn + .btn-group,
.btn-toolbar > .btn-group + .btn,
.btn-toolbar > .btn-group + .btn-group {
  margin-left: 5px;
}

/* line 86, scss/bootstrap/_button-groups.scss */
.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0;
}

/* line 91, scss/bootstrap/_button-groups.scss */
.btn-group > .btn:first-child {
  margin-left: 0;
}
/* line 93, scss/bootstrap/_button-groups.scss */
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

/* line 99, scss/bootstrap/_button-groups.scss */
.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

/* line 104, scss/bootstrap/_button-groups.scss */
.btn-group > .btn-group {
  float: left;
}

/* line 107, scss/bootstrap/_button-groups.scss */
.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}

/* line 112, scss/bootstrap/_button-groups.scss */
.btn-group > .btn-group:first-child > .btn:last-child,
.btn-group > .btn-group:first-child > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

/* line 116, scss/bootstrap/_button-groups.scss */
.btn-group > .btn-group:last-child > .btn:first-child {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

/* line 122, scss/bootstrap/_button-groups.scss */
.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0;
}

/* line 140, scss/bootstrap/_button-groups.scss */
.btn-group > .btn + .dropdown-toggle {
  padding-left: 8px;
  padding-right: 8px;
}

/* line 144, scss/bootstrap/_button-groups.scss */
.btn-group > .btn-lg + .dropdown-toggle, .btn-group-lg.btn-group > .btn + .dropdown-toggle {
  padding-left: 12px;
  padding-right: 12px;
}

/* line 151, scss/bootstrap/_button-groups.scss */
.btn-group.open .dropdown-toggle {
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
/* line 155, scss/bootstrap/_button-groups.scss */
.btn-group.open .dropdown-toggle.btn-link {
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* line 162, scss/bootstrap/_button-groups.scss */
.btn .caret {
  margin-left: 0;
}

/* line 166, scss/bootstrap/_button-groups.scss */
.btn-lg .caret, .btn-group-lg > .btn .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0;
}

/* line 171, scss/bootstrap/_button-groups.scss */
.dropup .btn-lg .caret, .dropup .btn-group-lg > .btn .caret {
  border-width: 0 5px 5px;
}

/* line 181, scss/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
}
/* line 21, scss/bootstrap/_mixins.scss */
.btn-group-vertical > .btn-group:before, .btn-group-vertical > .btn-group:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}
/* line 25, scss/bootstrap/_mixins.scss */
.btn-group-vertical > .btn-group:after {
  clear: both;
}
/* line 191, scss/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn-group > .btn {
  float: none;
}
/* line 199, scss/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0;
}

/* line 206, scss/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}
/* line 209, scss/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn:first-child:not(:last-child) {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
/* line 213, scss/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn:last-child:not(:first-child) {
  border-bottom-left-radius: 4px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

/* line 218, scss/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}

/* line 223, scss/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn-group:first-child > .btn:last-child,
.btn-group-vertical > .btn-group:first-child > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 227, scss/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn-group:last-child > .btn:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

/* line 236, scss/bootstrap/_button-groups.scss */
.btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
}
/* line 241, scss/bootstrap/_button-groups.scss */
.btn-group-justified .btn {
  float: none;
  display: table-cell;
  width: 1%;
}

/* line 251, scss/bootstrap/_button-groups.scss */
[data-toggle="buttons"] > .btn > input[type="radio"],
[data-toggle="buttons"] > .btn > input[type="checkbox"] {
  display: none;
}

/* line 7, scss/bootstrap/_input-groups.scss */
.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}
/* line 13, scss/bootstrap/_input-groups.scss */
.input-group.col {
  float: none;
  padding-left: 0;
  padding-right: 0;
}
/* line 19, scss/bootstrap/_input-groups.scss */
.input-group .form-control {
  width: 100%;
  margin-bottom: 0;
}

/* line 42, scss/bootstrap/_input-groups.scss */
.input-group-addon,
.input-group-btn,
.input-group .form-control {
  display: table-cell;
}
/* line 45, scss/bootstrap/_input-groups.scss */
.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child),
.input-group .form-control:not(:first-child):not(:last-child) {
  border-radius: 0;
}

/* line 51, scss/bootstrap/_input-groups.scss */
.input-group-addon,
.input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
}

/* line 59, scss/bootstrap/_input-groups.scss */
.input-group-addon {
  padding: 6px 12px;
  font-size: 14px;
  font-weight: normal;
  line-height: 1;
  color: #ECEBE8;
  text-align: center;
  background-color: #eeeeee;
  border: 1px solid #cccccc;
  border-radius: 4px;
}
/* line 71, scss/bootstrap/_input-groups.scss */
.input-group-addon.input-sm,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .input-group-addon.btn {
  padding: 5px 10px;
  font-size: 0.75em;
  border-radius: 3px;
}
/* line 76, scss/bootstrap/_input-groups.scss */
.input-group-addon.input-lg,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .input-group-addon.btn {
  padding: 10px 16px;
  font-size: 1.4375em;
  border-radius: 6px;
}
/* line 84, scss/bootstrap/_input-groups.scss */
.input-group-addon input[type="radio"],
.input-group-addon input[type="checkbox"] {
  margin-top: 0;
}

/* line 94, scss/bootstrap/_input-groups.scss */
.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

/* line 97, scss/bootstrap/_input-groups.scss */
.input-group-addon:first-child {
  border-right: 0;
}

/* line 104, scss/bootstrap/_input-groups.scss */
.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

/* line 107, scss/bootstrap/_input-groups.scss */
.input-group-addon:last-child {
  border-left: 0;
}

/* line 113, scss/bootstrap/_input-groups.scss */
.input-group-btn {
  position: relative;
  white-space: nowrap;
}
/* line 118, scss/bootstrap/_input-groups.scss */
.input-group-btn:first-child > .btn {
  margin-right: -1px;
}
/* line 121, scss/bootstrap/_input-groups.scss */
.input-group-btn:last-child > .btn {
  margin-left: -1px;
}

/* line 125, scss/bootstrap/_input-groups.scss */
.input-group-btn > .btn {
  position: relative;
}
/* line 128, scss/bootstrap/_input-groups.scss */
.input-group-btn > .btn + .btn {
  margin-left: -4px;
}
/* line 133, scss/bootstrap/_input-groups.scss */
.input-group-btn > .btn:hover, .input-group-btn > .btn:active {
  z-index: 2;
}

/* line 6, scss/bootstrap/_breadcrumbs.scss */
.breadcrumb {
  font-size: 0.75em;
  padding: 0 0 8px 0;
  margin: 0 0 0.5em 0;
  list-style: none;
}
/* line 13, scss/bootstrap/_breadcrumbs.scss */
.breadcrumb > li {
  display: inline-block;
}
/* line 16, scss/bootstrap/_breadcrumbs.scss */
.breadcrumb > li a {
  color: #333333;
}
/* line 20, scss/bootstrap/_breadcrumbs.scss */
.breadcrumb > li + li:before {
  content: "/\00a0";
  padding: 0 5px;
  color: #333333;
}
/* line 26, scss/bootstrap/_breadcrumbs.scss */
.breadcrumb > .active {
  color: #dddddd;
}

/* line 4, scss/bootstrap/_pagination.scss */
.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px;
}
/* line 10, scss/bootstrap/_pagination.scss */
.pagination > li {
  display: inline;
}
/* line 13, scss/bootstrap/_pagination.scss */
.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  line-height: 1.42857;
  text-decoration: none;
  background-color: white;
  border: 1px solid #dddddd;
  margin-left: -1px;
}
/* line 25, scss/bootstrap/_pagination.scss */
.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
/* line 32, scss/bootstrap/_pagination.scss */
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
}
/* line 41, scss/bootstrap/_pagination.scss */
.pagination > li > a:hover, .pagination > li > a:focus,
.pagination > li > span:hover,
.pagination > li > span:focus {
  background-color: #eeeeee;
}
/* line 50, scss/bootstrap/_pagination.scss */
.pagination > .active > a, .pagination > .active > a:hover, .pagination > .active > a:focus,
.pagination > .active > span,
.pagination > .active > span:hover,
.pagination > .active > span:focus {
  z-index: 2;
  color: white;
  background-color: #428bca;
  border-color: #428bca;
  cursor: default;
}
/* line 65, scss/bootstrap/_pagination.scss */
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: #dddddd;
  background-color: white;
  border-color: #dddddd;
  cursor: not-allowed;
}

/* line 515, scss/bootstrap/_mixins.scss */
.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 1.4375em;
}
/* line 521, scss/bootstrap/_mixins.scss */
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-bottom-left-radius: 6px;
  border-top-left-radius: 6px;
}
/* line 527, scss/bootstrap/_mixins.scss */
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-bottom-right-radius: 6px;
  border-top-right-radius: 6px;
}

/* line 515, scss/bootstrap/_mixins.scss */
.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 0.75em;
}
/* line 521, scss/bootstrap/_mixins.scss */
.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
}
/* line 527, scss/bootstrap/_mixins.scss */
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
}

/* line 6, scss/bootstrap/_pager.scss */
.pager {
  padding-left: 0;
  margin: 20px 0;
  list-style: none;
  text-align: center;
}
/* line 21, scss/bootstrap/_mixins.scss */
.pager:before, .pager:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}
/* line 25, scss/bootstrap/_mixins.scss */
.pager:after {
  clear: both;
}
/* line 12, scss/bootstrap/_pager.scss */
.pager li {
  display: inline;
}
/* line 15, scss/bootstrap/_pager.scss */
.pager li > a,
.pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: white;
  border: 1px solid #dddddd;
  border-radius: 15px;
}
/* line 24, scss/bootstrap/_pager.scss */
.pager li > a:hover,
.pager li > a:focus {
  text-decoration: none;
  background-color: #eeeeee;
}
/* line 32, scss/bootstrap/_pager.scss */
.pager .next > a,
.pager .next > span {
  float: right;
}
/* line 39, scss/bootstrap/_pager.scss */
.pager .previous > a,
.pager .previous > span {
  float: left;
}
/* line 48, scss/bootstrap/_pager.scss */
.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
  color: #dddddd;
  background-color: white;
  cursor: not-allowed;
}

/* line 5, scss/bootstrap/_labels.scss */
.label {
  display: inline;
  padding: .2em .6em .3em;
  font-size: 75%;
  font-weight: bold;
  line-height: 1;
  color: white;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: .25em;
}
/* line 20, scss/bootstrap/_labels.scss */
.label[href]:hover, .label[href]:focus {
  color: white;
  text-decoration: none;
  cursor: pointer;
}
/* line 28, scss/bootstrap/_labels.scss */
.label:empty {
  display: none;
}

/* line 36, scss/bootstrap/_labels.scss */
.label-default {
  background-color: #dddddd;
}
/* line 540, scss/bootstrap/_mixins.scss */
.label-default[href]:hover, .label-default[href]:focus {
  background-color: #c4c4c4;
}

/* line 40, scss/bootstrap/_labels.scss */
.label-primary {
  background-color: #428bca;
}
/* line 540, scss/bootstrap/_mixins.scss */
.label-primary[href]:hover, .label-primary[href]:focus {
  background-color: #3071a9;
}

/* line 44, scss/bootstrap/_labels.scss */
.label-success {
  background-color: #5cb85c;
}
/* line 540, scss/bootstrap/_mixins.scss */
.label-success[href]:hover, .label-success[href]:focus {
  background-color: #449d44;
}

/* line 48, scss/bootstrap/_labels.scss */
.label-info {
  background-color: #5bc0de;
}
/* line 540, scss/bootstrap/_mixins.scss */
.label-info[href]:hover, .label-info[href]:focus {
  background-color: #31b0d5;
}

/* line 52, scss/bootstrap/_labels.scss */
.label-warning {
  background-color: #f0ad4e;
}
/* line 540, scss/bootstrap/_mixins.scss */
.label-warning[href]:hover, .label-warning[href]:focus {
  background-color: #ec971f;
}

/* line 56, scss/bootstrap/_labels.scss */
.label-danger {
  background-color: #d9534f;
}
/* line 540, scss/bootstrap/_mixins.scss */
.label-danger[href]:hover, .label-danger[href]:focus {
  background-color: #c9302c;
}

/* line 7, scss/bootstrap/_badges.scss */
.badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 0.75em;
  font-weight: bold;
  color: white;
  line-height: 1;
  vertical-align: baseline;
  white-space: nowrap;
  text-align: center;
  background-color: #dddddd;
  border-radius: 10px;
}
/* line 22, scss/bootstrap/_badges.scss */
.badge:empty {
  display: none;
}

/* line 30, scss/bootstrap/_badges.scss */
a.badge:hover, a.badge:focus {
  color: white;
  text-decoration: none;
  cursor: pointer;
}

/* line 38, scss/bootstrap/_badges.scss */
.btn .badge {
  position: relative;
  top: -1px;
}

/* line 45, scss/bootstrap/_badges.scss */
a.list-group-item.active > .badge,
.nav-pills > .active > a > .badge {
  color: #428bca;
  background-color: white;
}

/* line 49, scss/bootstrap/_badges.scss */
.nav-pills > li > a > .badge {
  margin-left: 3px;
}

/* line 6, scss/bootstrap/_jumbotron.scss */
.jumbotron {
  padding: 30px;
  margin-bottom: 30px;
  font-size: 21px;
  font-weight: 200;
  line-height: 2.14286;
  color: inherit;
  background-color: #eeeeee;
}
/* line 15, scss/bootstrap/_jumbotron.scss */
.jumbotron h1 {
  line-height: 1;
  color: inherit;
}
/* line 19, scss/bootstrap/_jumbotron.scss */
.jumbotron p {
  line-height: 1.4;
}
/* line 23, scss/bootstrap/_jumbotron.scss */
.container .jumbotron {
  border-radius: 6px;
}
@media screen and (min-width: 48em) {
  /* line 6, scss/bootstrap/_jumbotron.scss */
  .jumbotron {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  /* line 31, scss/bootstrap/_jumbotron.scss */
  .container .jumbotron {
    padding-left: 60px;
    padding-right: 60px;
  }
  /* line 36, scss/bootstrap/_jumbotron.scss */
  .jumbotron h1 {
    font-size: 63px;
  }
}

/* line 9, scss/bootstrap/_alerts.scss */
.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}
/* line 16, scss/bootstrap/_alerts.scss */
.alert h4 {
  margin-top: 0;
  color: inherit;
}
/* line 22, scss/bootstrap/_alerts.scss */
.alert .alert-link {
  font-weight: bold;
}
/* line 28, scss/bootstrap/_alerts.scss */
.alert > p,
.alert > ul {
  margin-bottom: 0;
}
/* line 31, scss/bootstrap/_alerts.scss */
.alert > p + p {
  margin-top: 5px;
}

/* line 40, scss/bootstrap/_alerts.scss */
.alert-dismissable {
  padding-right: 35px;
}
/* line 44, scss/bootstrap/_alerts.scss */
.alert-dismissable .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}

/* line 56, scss/bootstrap/_alerts.scss */
.alert-success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #468847;
}
/* line 422, scss/bootstrap/_mixins.scss */
.alert-success hr {
  border-top-color: #c9e2b3;
}
/* line 425, scss/bootstrap/_mixins.scss */
.alert-success .alert-link {
  color: #356635;
}

/* line 59, scss/bootstrap/_alerts.scss */
.alert-info {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #3a87ad;
}
/* line 422, scss/bootstrap/_mixins.scss */
.alert-info hr {
  border-top-color: #a6e1ec;
}
/* line 425, scss/bootstrap/_mixins.scss */
.alert-info .alert-link {
  color: #2d6987;
}

/* line 62, scss/bootstrap/_alerts.scss */
.alert-warning {
  background-color: #fcf8e3;
  border-color: #faebcc;
  color: #c09853;
}
/* line 422, scss/bootstrap/_mixins.scss */
.alert-warning hr {
  border-top-color: #f7e1b5;
}
/* line 425, scss/bootstrap/_mixins.scss */
.alert-warning .alert-link {
  color: #a47e3c;
}

/* line 65, scss/bootstrap/_alerts.scss */
.alert-danger {
  background-color: #f2dede;
  border-color: #ebccd1;
  color: #b94a48;
}
/* line 422, scss/bootstrap/_mixins.scss */
.alert-danger hr {
  border-top-color: #e4b9c0;
}
/* line 425, scss/bootstrap/_mixins.scss */
.alert-danger .alert-link {
  color: #953b39;
}

/* line 11, scss/bootstrap/_media.scss */
.media,
.media-body {
  overflow: hidden;
  zoom: 1;
}

/* line 18, scss/bootstrap/_media.scss */
.media,
.media .media {
  margin-top: 15px;
}

/* line 21, scss/bootstrap/_media.scss */
.media:first-child {
  margin-top: 0;
}

/* line 26, scss/bootstrap/_media.scss */
.media-object {
  display: block;
}

/* line 31, scss/bootstrap/_media.scss */
.media-heading {
  margin: 0 0 5px;
}

/* line 40, scss/bootstrap/_media.scss */
.media > .pull-left {
  margin-right: 10px;
}
/* line 43, scss/bootstrap/_media.scss */
.media > .pull-right {
  margin-left: 10px;
}

/* line 53, scss/bootstrap/_media.scss */
.media-list {
  padding-left: 0;
  list-style: none;
}

/* line 8, scss/bootstrap/_list-group.scss */
.list-group {
  margin-bottom: 20px;
  padding-left: 0;
}

/* line 17, scss/bootstrap/_list-group.scss */
.list-group-item {
  position: relative;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: white;
  border: 1px solid #dddddd;
}
/* line 27, scss/bootstrap/_list-group.scss */
.list-group-item:first-child {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
}
/* line 30, scss/bootstrap/_list-group.scss */
.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
/* line 36, scss/bootstrap/_list-group.scss */
.list-group-item > .badge {
  float: right;
}
/* line 39, scss/bootstrap/_list-group.scss */
.list-group-item > .badge + .badge {
  margin-right: 5px;
}

/* line 45, scss/bootstrap/_list-group.scss */
a.list-group-item {
  color: #555555;
}
/* line 48, scss/bootstrap/_list-group.scss */
a.list-group-item .list-group-item-heading {
  color: #333333;
}
/* line 54, scss/bootstrap/_list-group.scss */
a.list-group-item:hover, a.list-group-item:focus {
  text-decoration: none;
  background-color: whitesmoke;
}
/* line 62, scss/bootstrap/_list-group.scss */
a.list-group-item.active, a.list-group-item.active:hover, a.list-group-item.active:focus {
  z-index: 2;
  color: white;
  background-color: #428bca;
  border-color: #428bca;
}
/* line 69, scss/bootstrap/_list-group.scss */
a.list-group-item.active .list-group-item-heading, a.list-group-item.active:hover .list-group-item-heading, a.list-group-item.active:focus .list-group-item-heading {
  color: inherit;
}
/* line 72, scss/bootstrap/_list-group.scss */
a.list-group-item.active .list-group-item-text, a.list-group-item.active:hover .list-group-item-text, a.list-group-item.active:focus .list-group-item-text {
  color: #e1edf7;
}

/* line 81, scss/bootstrap/_list-group.scss */
.list-group-item-heading {
  margin-top: 0;
  margin-bottom: 5px;
}

/* line 85, scss/bootstrap/_list-group.scss */
.list-group-item-text {
  margin-bottom: 0;
  line-height: 1.3;
}

/* line 7, scss/bootstrap/_panels.scss */
.panel {
  margin-bottom: 20px;
  background-color: white;
  border: 1px solid transparent;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

/* line 16, scss/bootstrap/_panels.scss */
.panel-body {
  padding: 15px;
}
/* line 21, scss/bootstrap/_mixins.scss */
.panel-body:before, .panel-body:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}
/* line 25, scss/bootstrap/_mixins.scss */
.panel-body:after {
  clear: both;
}

/* line 28, scss/bootstrap/_panels.scss */
.panel > .list-group {
  margin-bottom: 0;
}
/* line 31, scss/bootstrap/_panels.scss */
.panel > .list-group .list-group-item {
  border-width: 1px 0;
}
/* line 35, scss/bootstrap/_panels.scss */
.panel > .list-group .list-group-item:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
/* line 39, scss/bootstrap/_panels.scss */
.panel > .list-group .list-group-item:last-child {
  border-bottom: 0;
}

/* line 47, scss/bootstrap/_panels.scss */
.panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0;
}

/* line 60, scss/bootstrap/_panels.scss */
.panel > .table,
.panel > .table-responsive {
  margin-bottom: 0;
}
/* line 64, scss/bootstrap/_panels.scss */
.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive {
  border-top: 1px solid #dddddd;
}
/* line 68, scss/bootstrap/_panels.scss */
.panel > .table-bordered,
.panel > .table-responsive > .table-bordered {
  border: 0;
}
/* line 75, scss/bootstrap/_panels.scss */
.panel > .table-bordered > thead > tr > th:first-child,
.panel > .table-bordered > thead > tr > td:first-child,
.panel > .table-bordered > tbody > tr > th:first-child,
.panel > .table-bordered > tbody > tr > td:first-child,
.panel > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-bordered > tfoot > tr > td:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  border-left: 0;
}
/* line 79, scss/bootstrap/_panels.scss */
.panel > .table-bordered > thead > tr > th:last-child,
.panel > .table-bordered > thead > tr > td:last-child,
.panel > .table-bordered > tbody > tr > th:last-child,
.panel > .table-bordered > tbody > tr > td:last-child,
.panel > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-bordered > tfoot > tr > td:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  border-right: 0;
}
/* line 84, scss/bootstrap/_panels.scss */
.panel > .table-bordered > thead > tr:last-child > th, .panel > .table-bordered > thead > tr:last-child > td,
.panel > .table-bordered > tbody > tr:last-child > th,
.panel > .table-bordered > tbody > tr:last-child > td,
.panel > .table-bordered > tfoot > tr:last-child > th,
.panel > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-responsive > .table-bordered > thead > tr:last-child > th,
.panel > .table-responsive > .table-bordered > thead > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td {
  border-bottom: 0;
}

/* line 94, scss/bootstrap/_panels.scss */
.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}
/* line 99, scss/bootstrap/_panels.scss */
.panel-heading > .dropdown .dropdown-toggle {
  color: inherit;
}

/* line 105, scss/bootstrap/_panels.scss */
.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
}
/* line 109, scss/bootstrap/_panels.scss */
.panel-title > a {
  color: inherit;
}

/* line 115, scss/bootstrap/_panels.scss */
.panel-footer {
  padding: 10px 15px;
  background-color: whitesmoke;
  border-top: 1px solid #dddddd;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

/* line 130, scss/bootstrap/_panels.scss */
.panel-group .panel {
  margin-bottom: 0;
  border-radius: 4px;
  overflow: hidden;
}
/* line 134, scss/bootstrap/_panels.scss */
.panel-group .panel + .panel {
  margin-top: 5px;
}
/* line 139, scss/bootstrap/_panels.scss */
.panel-group .panel-heading {
  border-bottom: 0;
}
/* line 141, scss/bootstrap/_panels.scss */
.panel-group .panel-heading + .panel-collapse .panel-body {
  border-top: 1px solid #dddddd;
}
/* line 145, scss/bootstrap/_panels.scss */
.panel-group .panel-footer {
  border-top: 0;
}
/* line 147, scss/bootstrap/_panels.scss */
.panel-group .panel-footer + .panel-collapse .panel-body {
  border-bottom: 1px solid #dddddd;
}

/* line 155, scss/bootstrap/_panels.scss */
.panel-default {
  border-color: #dddddd;
}
/* line 396, scss/bootstrap/_mixins.scss */
.panel-default > .panel-heading {
  color: #333333;
  background-color: whitesmoke;
  border-color: #dddddd;
}
/* line 401, scss/bootstrap/_mixins.scss */
.panel-default > .panel-heading + .panel-collapse .panel-body {
  border-top-color: #dddddd;
}
/* line 404, scss/bootstrap/_mixins.scss */
.panel-default > .panel-heading > .dropdown .caret {
  border-color: #333333 transparent;
}
/* line 409, scss/bootstrap/_mixins.scss */
.panel-default > .panel-footer + .panel-collapse .panel-body {
  border-bottom-color: #dddddd;
}

/* line 158, scss/bootstrap/_panels.scss */
.panel-primary {
  border-color: #428bca;
}
/* line 396, scss/bootstrap/_mixins.scss */
.panel-primary > .panel-heading {
  color: white;
  background-color: #428bca;
  border-color: #428bca;
}
/* line 401, scss/bootstrap/_mixins.scss */
.panel-primary > .panel-heading + .panel-collapse .panel-body {
  border-top-color: #428bca;
}
/* line 404, scss/bootstrap/_mixins.scss */
.panel-primary > .panel-heading > .dropdown .caret {
  border-color: white transparent;
}
/* line 409, scss/bootstrap/_mixins.scss */
.panel-primary > .panel-footer + .panel-collapse .panel-body {
  border-bottom-color: #428bca;
}

/* line 161, scss/bootstrap/_panels.scss */
.panel-success {
  border-color: #d6e9c6;
}
/* line 396, scss/bootstrap/_mixins.scss */
.panel-success > .panel-heading {
  color: #468847;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}
/* line 401, scss/bootstrap/_mixins.scss */
.panel-success > .panel-heading + .panel-collapse .panel-body {
  border-top-color: #d6e9c6;
}
/* line 404, scss/bootstrap/_mixins.scss */
.panel-success > .panel-heading > .dropdown .caret {
  border-color: #468847 transparent;
}
/* line 409, scss/bootstrap/_mixins.scss */
.panel-success > .panel-footer + .panel-collapse .panel-body {
  border-bottom-color: #d6e9c6;
}

/* line 164, scss/bootstrap/_panels.scss */
.panel-warning {
  border-color: #faebcc;
}
/* line 396, scss/bootstrap/_mixins.scss */
.panel-warning > .panel-heading {
  color: #c09853;
  background-color: #fcf8e3;
  border-color: #faebcc;
}
/* line 401, scss/bootstrap/_mixins.scss */
.panel-warning > .panel-heading + .panel-collapse .panel-body {
  border-top-color: #faebcc;
}
/* line 404, scss/bootstrap/_mixins.scss */
.panel-warning > .panel-heading > .dropdown .caret {
  border-color: #c09853 transparent;
}
/* line 409, scss/bootstrap/_mixins.scss */
.panel-warning > .panel-footer + .panel-collapse .panel-body {
  border-bottom-color: #faebcc;
}

/* line 167, scss/bootstrap/_panels.scss */
.panel-danger {
  border-color: #ebccd1;
}
/* line 396, scss/bootstrap/_mixins.scss */
.panel-danger > .panel-heading {
  color: #b94a48;
  background-color: #f2dede;
  border-color: #ebccd1;
}
/* line 401, scss/bootstrap/_mixins.scss */
.panel-danger > .panel-heading + .panel-collapse .panel-body {
  border-top-color: #ebccd1;
}
/* line 404, scss/bootstrap/_mixins.scss */
.panel-danger > .panel-heading > .dropdown .caret {
  border-color: #b94a48 transparent;
}
/* line 409, scss/bootstrap/_mixins.scss */
.panel-danger > .panel-footer + .panel-collapse .panel-body {
  border-bottom-color: #ebccd1;
}

/* line 170, scss/bootstrap/_panels.scss */
.panel-info {
  border-color: #bce8f1;
}
/* line 396, scss/bootstrap/_mixins.scss */
.panel-info > .panel-heading {
  color: #3a87ad;
  background-color: #d9edf7;
  border-color: #bce8f1;
}
/* line 401, scss/bootstrap/_mixins.scss */
.panel-info > .panel-heading + .panel-collapse .panel-body {
  border-top-color: #bce8f1;
}
/* line 404, scss/bootstrap/_mixins.scss */
.panel-info > .panel-heading > .dropdown .caret {
  border-color: #3a87ad transparent;
}
/* line 409, scss/bootstrap/_mixins.scss */
.panel-info > .panel-footer + .panel-collapse .panel-body {
  border-bottom-color: #bce8f1;
}

/* line 7, scss/bootstrap/_wells.scss */
.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: whitesmoke;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}
/* line 15, scss/bootstrap/_wells.scss */
.well blockquote {
  border-color: #ddd;
  border-color: rgba(0, 0, 0, 0.15);
}

/* line 22, scss/bootstrap/_wells.scss */
.well-lg {
  padding: 24px;
  border-radius: 6px;
}

/* line 26, scss/bootstrap/_wells.scss */
.well-sm {
  padding: 9px;
  border-radius: 3px;
}

/* line 6, scss/bootstrap/_close.scss */
.close {
  float: right;
  font-size: 21px;
  font-weight: bold;
  line-height: 1;
  color: black;
  text-shadow: 0 1px 0 white;
  opacity: 0.2;
  filter: alpha(opacity=20);
}
/* line 16, scss/bootstrap/_close.scss */
.close:hover, .close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.5;
  filter: alpha(opacity=50);
}

/* line 29, scss/bootstrap/_close.scss */
button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
}

/* line 11, scss/bootstrap/_modals.scss */
.modal-open {
  overflow: hidden;
}

/* line 16, scss/bootstrap/_modals.scss */
.modal {
  display: none;
  overflow: auto;
  overflow-y: scroll;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
}
/* line 28, scss/bootstrap/_modals.scss */
.modal.fade .modal-dialog {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -moz-transition: -moz-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}
/* line 32, scss/bootstrap/_modals.scss */
.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}

/* line 36, scss/bootstrap/_modals.scss */
.modal-dialog {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: auto;
  padding: 10px;
  z-index: 1050;
}

/* line 46, scss/bootstrap/_modals.scss */
.modal-content {
  position: relative;
  background-color: white;
  border: 1px solid #999999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: none;
}

/* line 59, scss/bootstrap/_modals.scss */
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
  background-color: black;
}
/* line 68, scss/bootstrap/_modals.scss */
.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0);
}
/* line 69, scss/bootstrap/_modals.scss */
.modal-backdrop.in {
  opacity: 0.5;
  filter: alpha(opacity=50);
}

/* line 74, scss/bootstrap/_modals.scss */
.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
  min-height: 16.42857px;
}

/* line 80, scss/bootstrap/_modals.scss */
.modal-header .close {
  margin-top: -2px;
}

/* line 85, scss/bootstrap/_modals.scss */
.modal-title {
  margin: 0;
  line-height: 1.42857;
}

/* line 92, scss/bootstrap/_modals.scss */
.modal-body {
  position: relative;
  padding: 20px;
}

/* line 98, scss/bootstrap/_modals.scss */
.modal-footer {
  margin-top: 15px;
  padding: 19px 20px 20px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}
/* line 21, scss/bootstrap/_mixins.scss */
.modal-footer:before, .modal-footer:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}
/* line 25, scss/bootstrap/_mixins.scss */
.modal-footer:after {
  clear: both;
}
/* line 106, scss/bootstrap/_modals.scss */
.modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0;
}
/* line 111, scss/bootstrap/_modals.scss */
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
/* line 115, scss/bootstrap/_modals.scss */
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}

@media screen and (min-width: 48em) {
  /* line 123, scss/bootstrap/_modals.scss */
  .modal-dialog {
    width: 600px;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  /* line 128, scss/bootstrap/_modals.scss */
  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }
}
/* line 7, scss/bootstrap/_tooltip.scss */
.tooltip {
  position: absolute;
  z-index: 1030;
  display: block;
  visibility: visible;
  font-size: 0.75em;
  line-height: 1.4;
  opacity: 0;
  filter: alpha(opacity=0);
}
/* line 16, scss/bootstrap/_tooltip.scss */
.tooltip.in {
  opacity: 0.9;
  filter: alpha(opacity=90);
}
/* line 17, scss/bootstrap/_tooltip.scss */
.tooltip.top {
  margin-top: -3px;
  padding: 5px 0;
}
/* line 18, scss/bootstrap/_tooltip.scss */
.tooltip.right {
  margin-left: 3px;
  padding: 0 5px;
}
/* line 19, scss/bootstrap/_tooltip.scss */
.tooltip.bottom {
  margin-top: 3px;
  padding: 5px 0;
}
/* line 20, scss/bootstrap/_tooltip.scss */
.tooltip.left {
  margin-left: -3px;
  padding: 0 5px;
}

/* line 24, scss/bootstrap/_tooltip.scss */
.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: white;
  text-align: center;
  text-decoration: none;
  background-color: black;
  border-radius: 4px;
}

/* line 35, scss/bootstrap/_tooltip.scss */
.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

/* line 43, scss/bootstrap/_tooltip.scss */
.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: black;
}
/* line 50, scss/bootstrap/_tooltip.scss */
.tooltip.top-left .tooltip-arrow {
  bottom: 0;
  left: 5px;
  border-width: 5px 5px 0;
  border-top-color: black;
}
/* line 56, scss/bootstrap/_tooltip.scss */
.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  right: 5px;
  border-width: 5px 5px 0;
  border-top-color: black;
}
/* line 62, scss/bootstrap/_tooltip.scss */
.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: black;
}
/* line 69, scss/bootstrap/_tooltip.scss */
.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: black;
}
/* line 76, scss/bootstrap/_tooltip.scss */
.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: black;
}
/* line 83, scss/bootstrap/_tooltip.scss */
.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  left: 5px;
  border-width: 0 5px 5px;
  border-bottom-color: black;
}
/* line 89, scss/bootstrap/_tooltip.scss */
.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  right: 5px;
  border-width: 0 5px 5px;
  border-bottom-color: black;
}

/* line 6, scss/bootstrap/_popovers.scss */
.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1010;
  display: none;
  max-width: 276px;
  padding: 1px;
  text-align: left;
  background-color: white;
  background-clip: padding-box;
  border: 1px solid #cccccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  white-space: normal;
}
/* line 26, scss/bootstrap/_popovers.scss */
.popover.top {
  margin-top: -10px;
}
/* line 27, scss/bootstrap/_popovers.scss */
.popover.right {
  margin-left: 10px;
}
/* line 28, scss/bootstrap/_popovers.scss */
.popover.bottom {
  margin-top: 10px;
}
/* line 29, scss/bootstrap/_popovers.scss */
.popover.left {
  margin-left: -10px;
}

/* line 32, scss/bootstrap/_popovers.scss */
.popover-title {
  margin: 0;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: normal;
  line-height: 18px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 5px 5px 0 0;
}

/* line 43, scss/bootstrap/_popovers.scss */
.popover-content {
  padding: 9px 14px;
}

/* line 53, scss/bootstrap/_popovers.scss */
.popover .arrow, .popover .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

/* line 62, scss/bootstrap/_popovers.scss */
.popover .arrow {
  border-width: 11px;
}

/* line 65, scss/bootstrap/_popovers.scss */
.popover .arrow:after {
  border-width: 10px;
  content: "";
}

/* line 71, scss/bootstrap/_popovers.scss */
.popover.top .arrow {
  left: 50%;
  margin-left: -11px;
  border-bottom-width: 0;
  border-top-color: #999999;
  border-top-color: rgba(0, 0, 0, 0.25);
  bottom: -11px;
}
/* line 78, scss/bootstrap/_popovers.scss */
.popover.top .arrow:after {
  content: " ";
  bottom: 1px;
  margin-left: -10px;
  border-bottom-width: 0;
  border-top-color: white;
}
/* line 86, scss/bootstrap/_popovers.scss */
.popover.right .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-left-width: 0;
  border-right-color: #999999;
  border-right-color: rgba(0, 0, 0, 0.25);
}
/* line 93, scss/bootstrap/_popovers.scss */
.popover.right .arrow:after {
  content: " ";
  left: 1px;
  bottom: -10px;
  border-left-width: 0;
  border-right-color: white;
}
/* line 101, scss/bootstrap/_popovers.scss */
.popover.bottom .arrow {
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #999999;
  border-bottom-color: rgba(0, 0, 0, 0.25);
  top: -11px;
}
/* line 108, scss/bootstrap/_popovers.scss */
.popover.bottom .arrow:after {
  content: " ";
  top: 1px;
  margin-left: -10px;
  border-top-width: 0;
  border-bottom-color: white;
}
/* line 117, scss/bootstrap/_popovers.scss */
.popover.left .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #999999;
  border-left-color: rgba(0, 0, 0, 0.25);
}
/* line 124, scss/bootstrap/_popovers.scss */
.popover.left .arrow:after {
  content: " ";
  right: 1px;
  border-right-width: 0;
  border-left-color: white;
  bottom: -10px;
}

/*------------------------------------*\
    $GLOBAL ELEMENTS
\*------------------------------------*/
/* line 6, scss/bootstrap/_grid.scss */
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
/* line 21, scss/bootstrap/_mixins.scss */
.container:before, .container:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}
/* line 25, scss/bootstrap/_mixins.scss */
.container:after {
  clear: both;
}

/* line 11, scss/bootstrap/_grid.scss */
.row {
  margin-left: -15px;
  margin-right: -15px;
}
/* line 21, scss/bootstrap/_mixins.scss */
.row:before, .row:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}
/* line 25, scss/bootstrap/_mixins.scss */
.row:after {
  clear: both;
}

/* line 728, scss/bootstrap/_mixins.scss */
.col-xs-12, .col-sm-12, .col-md-12, .col-lg-12, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

/* line 747, scss/bootstrap/_mixins.scss */
.col-xs-12, .col-xs-11, .col-xs-10, .col-xs-9, .col-xs-8, .col-xs-7, .col-xs-6, .col-xs-5, .col-xs-4, .col-xs-3, .col-xs-2, .col-xs-1 {
  float: left;
}

/* line 755, scss/bootstrap/_mixins.scss */
.col-xs-1 {
  width: 8.33333%;
}

/* line 755, scss/bootstrap/_mixins.scss */
.col-xs-2 {
  width: 16.66667%;
}

/* line 755, scss/bootstrap/_mixins.scss */
.col-xs-3 {
  width: 25%;
}

/* line 755, scss/bootstrap/_mixins.scss */
.col-xs-4 {
  width: 33.33333%;
}

/* line 755, scss/bootstrap/_mixins.scss */
.col-xs-5 {
  width: 41.66667%;
}

/* line 755, scss/bootstrap/_mixins.scss */
.col-xs-6 {
  width: 50%;
}

/* line 755, scss/bootstrap/_mixins.scss */
.col-xs-7 {
  width: 58.33333%;
}

/* line 755, scss/bootstrap/_mixins.scss */
.col-xs-8 {
  width: 66.66667%;
}

/* line 755, scss/bootstrap/_mixins.scss */
.col-xs-9 {
  width: 75%;
}

/* line 755, scss/bootstrap/_mixins.scss */
.col-xs-10 {
  width: 83.33333%;
}

/* line 755, scss/bootstrap/_mixins.scss */
.col-xs-11 {
  width: 91.66667%;
}

/* line 755, scss/bootstrap/_mixins.scss */
.col-xs-12 {
  width: 100%;
}

/* line 765, scss/bootstrap/_mixins.scss */
.col-xs-pull-0 {
  right: 0%;
}

/* line 765, scss/bootstrap/_mixins.scss */
.col-xs-pull-1 {
  right: 8.33333%;
}

/* line 765, scss/bootstrap/_mixins.scss */
.col-xs-pull-2 {
  right: 16.66667%;
}

/* line 765, scss/bootstrap/_mixins.scss */
.col-xs-pull-3 {
  right: 25%;
}

/* line 765, scss/bootstrap/_mixins.scss */
.col-xs-pull-4 {
  right: 33.33333%;
}

/* line 765, scss/bootstrap/_mixins.scss */
.col-xs-pull-5 {
  right: 41.66667%;
}

/* line 765, scss/bootstrap/_mixins.scss */
.col-xs-pull-6 {
  right: 50%;
}

/* line 765, scss/bootstrap/_mixins.scss */
.col-xs-pull-7 {
  right: 58.33333%;
}

/* line 765, scss/bootstrap/_mixins.scss */
.col-xs-pull-8 {
  right: 66.66667%;
}

/* line 765, scss/bootstrap/_mixins.scss */
.col-xs-pull-9 {
  right: 75%;
}

/* line 765, scss/bootstrap/_mixins.scss */
.col-xs-pull-10 {
  right: 83.33333%;
}

/* line 765, scss/bootstrap/_mixins.scss */
.col-xs-pull-11 {
  right: 91.66667%;
}

/* line 765, scss/bootstrap/_mixins.scss */
.col-xs-pull-12 {
  right: 100%;
}

/* line 760, scss/bootstrap/_mixins.scss */
.col-xs-push-0 {
  left: 0%;
}

/* line 760, scss/bootstrap/_mixins.scss */
.col-xs-push-1 {
  left: 8.33333%;
}

/* line 760, scss/bootstrap/_mixins.scss */
.col-xs-push-2 {
  left: 16.66667%;
}

/* line 760, scss/bootstrap/_mixins.scss */
.col-xs-push-3 {
  left: 25%;
}

/* line 760, scss/bootstrap/_mixins.scss */
.col-xs-push-4 {
  left: 33.33333%;
}

/* line 760, scss/bootstrap/_mixins.scss */
.col-xs-push-5 {
  left: 41.66667%;
}

/* line 760, scss/bootstrap/_mixins.scss */
.col-xs-push-6 {
  left: 50%;
}

/* line 760, scss/bootstrap/_mixins.scss */
.col-xs-push-7 {
  left: 58.33333%;
}

/* line 760, scss/bootstrap/_mixins.scss */
.col-xs-push-8 {
  left: 66.66667%;
}

/* line 760, scss/bootstrap/_mixins.scss */
.col-xs-push-9 {
  left: 75%;
}

/* line 760, scss/bootstrap/_mixins.scss */
.col-xs-push-10 {
  left: 83.33333%;
}

/* line 760, scss/bootstrap/_mixins.scss */
.col-xs-push-11 {
  left: 91.66667%;
}

/* line 760, scss/bootstrap/_mixins.scss */
.col-xs-push-12 {
  left: 100%;
}

/* line 770, scss/bootstrap/_mixins.scss */
.col-xs-offset-0 {
  margin-left: 0%;
}

/* line 770, scss/bootstrap/_mixins.scss */
.col-xs-offset-1 {
  margin-left: 8.33333%;
}

/* line 770, scss/bootstrap/_mixins.scss */
.col-xs-offset-2 {
  margin-left: 16.66667%;
}

/* line 770, scss/bootstrap/_mixins.scss */
.col-xs-offset-3 {
  margin-left: 25%;
}

/* line 770, scss/bootstrap/_mixins.scss */
.col-xs-offset-4 {
  margin-left: 33.33333%;
}

/* line 770, scss/bootstrap/_mixins.scss */
.col-xs-offset-5 {
  margin-left: 41.66667%;
}

/* line 770, scss/bootstrap/_mixins.scss */
.col-xs-offset-6 {
  margin-left: 50%;
}

/* line 770, scss/bootstrap/_mixins.scss */
.col-xs-offset-7 {
  margin-left: 58.33333%;
}

/* line 770, scss/bootstrap/_mixins.scss */
.col-xs-offset-8 {
  margin-left: 66.66667%;
}

/* line 770, scss/bootstrap/_mixins.scss */
.col-xs-offset-9 {
  margin-left: 75%;
}

/* line 770, scss/bootstrap/_mixins.scss */
.col-xs-offset-10 {
  margin-left: 83.33333%;
}

/* line 770, scss/bootstrap/_mixins.scss */
.col-xs-offset-11 {
  margin-left: 91.66667%;
}

/* line 770, scss/bootstrap/_mixins.scss */
.col-xs-offset-12 {
  margin-left: 100%;
}

@media (min-width: 48em) {
  /* line 43, scss/bootstrap/_grid.scss */
  .container {
    width: 750px;
  }

  /* line 747, scss/bootstrap/_mixins.scss */
  .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1 {
    float: left;
  }

  /* line 755, scss/bootstrap/_mixins.scss */
  .col-sm-1 {
    width: 8.33333%;
  }

  /* line 755, scss/bootstrap/_mixins.scss */
  .col-sm-2 {
    width: 16.66667%;
  }

  /* line 755, scss/bootstrap/_mixins.scss */
  .col-sm-3 {
    width: 25%;
  }

  /* line 755, scss/bootstrap/_mixins.scss */
  .col-sm-4 {
    width: 33.33333%;
  }

  /* line 755, scss/bootstrap/_mixins.scss */
  .col-sm-5 {
    width: 41.66667%;
  }

  /* line 755, scss/bootstrap/_mixins.scss */
  .col-sm-6 {
    width: 50%;
  }

  /* line 755, scss/bootstrap/_mixins.scss */
  .col-sm-7 {
    width: 58.33333%;
  }

  /* line 755, scss/bootstrap/_mixins.scss */
  .col-sm-8 {
    width: 66.66667%;
  }

  /* line 755, scss/bootstrap/_mixins.scss */
  .col-sm-9 {
    width: 75%;
  }

  /* line 755, scss/bootstrap/_mixins.scss */
  .col-sm-10 {
    width: 83.33333%;
  }

  /* line 755, scss/bootstrap/_mixins.scss */
  .col-sm-11 {
    width: 91.66667%;
  }

  /* line 755, scss/bootstrap/_mixins.scss */
  .col-sm-12 {
    width: 100%;
  }

  /* line 765, scss/bootstrap/_mixins.scss */
  .col-sm-pull-0 {
    right: 0%;
  }

  /* line 765, scss/bootstrap/_mixins.scss */
  .col-sm-pull-1 {
    right: 8.33333%;
  }

  /* line 765, scss/bootstrap/_mixins.scss */
  .col-sm-pull-2 {
    right: 16.66667%;
  }

  /* line 765, scss/bootstrap/_mixins.scss */
  .col-sm-pull-3 {
    right: 25%;
  }

  /* line 765, scss/bootstrap/_mixins.scss */
  .col-sm-pull-4 {
    right: 33.33333%;
  }

  /* line 765, scss/bootstrap/_mixins.scss */
  .col-sm-pull-5 {
    right: 41.66667%;
  }

  /* line 765, scss/bootstrap/_mixins.scss */
  .col-sm-pull-6 {
    right: 50%;
  }

  /* line 765, scss/bootstrap/_mixins.scss */
  .col-sm-pull-7 {
    right: 58.33333%;
  }

  /* line 765, scss/bootstrap/_mixins.scss */
  .col-sm-pull-8 {
    right: 66.66667%;
  }

  /* line 765, scss/bootstrap/_mixins.scss */
  .col-sm-pull-9 {
    right: 75%;
  }

  /* line 765, scss/bootstrap/_mixins.scss */
  .col-sm-pull-10 {
    right: 83.33333%;
  }

  /* line 765, scss/bootstrap/_mixins.scss */
  .col-sm-pull-11 {
    right: 91.66667%;
  }

  /* line 765, scss/bootstrap/_mixins.scss */
  .col-sm-pull-12 {
    right: 100%;
  }

  /* line 760, scss/bootstrap/_mixins.scss */
  .col-sm-push-0 {
    left: 0%;
  }

  /* line 760, scss/bootstrap/_mixins.scss */
  .col-sm-push-1 {
    left: 8.33333%;
  }

  /* line 760, scss/bootstrap/_mixins.scss */
  .col-sm-push-2 {
    left: 16.66667%;
  }

  /* line 760, scss/bootstrap/_mixins.scss */
  .col-sm-push-3 {
    left: 25%;
  }

  /* line 760, scss/bootstrap/_mixins.scss */
  .col-sm-push-4 {
    left: 33.33333%;
  }

  /* line 760, scss/bootstrap/_mixins.scss */
  .col-sm-push-5 {
    left: 41.66667%;
  }

  /* line 760, scss/bootstrap/_mixins.scss */
  .col-sm-push-6 {
    left: 50%;
  }

  /* line 760, scss/bootstrap/_mixins.scss */
  .col-sm-push-7 {
    left: 58.33333%;
  }

  /* line 760, scss/bootstrap/_mixins.scss */
  .col-sm-push-8 {
    left: 66.66667%;
  }

  /* line 760, scss/bootstrap/_mixins.scss */
  .col-sm-push-9 {
    left: 75%;
  }

  /* line 760, scss/bootstrap/_mixins.scss */
  .col-sm-push-10 {
    left: 83.33333%;
  }

  /* line 760, scss/bootstrap/_mixins.scss */
  .col-sm-push-11 {
    left: 91.66667%;
  }

  /* line 760, scss/bootstrap/_mixins.scss */
  .col-sm-push-12 {
    left: 100%;
  }

  /* line 770, scss/bootstrap/_mixins.scss */
  .col-sm-offset-0 {
    margin-left: 0%;
  }

  /* line 770, scss/bootstrap/_mixins.scss */
  .col-sm-offset-1 {
    margin-left: 8.33333%;
  }

  /* line 770, scss/bootstrap/_mixins.scss */
  .col-sm-offset-2 {
    margin-left: 16.66667%;
  }

  /* line 770, scss/bootstrap/_mixins.scss */
  .col-sm-offset-3 {
    margin-left: 25%;
  }

  /* line 770, scss/bootstrap/_mixins.scss */
  .col-sm-offset-4 {
    margin-left: 33.33333%;
  }

  /* line 770, scss/bootstrap/_mixins.scss */
  .col-sm-offset-5 {
    margin-left: 41.66667%;
  }

  /* line 770, scss/bootstrap/_mixins.scss */
  .col-sm-offset-6 {
    margin-left: 50%;
  }

  /* line 770, scss/bootstrap/_mixins.scss */
  .col-sm-offset-7 {
    margin-left: 58.33333%;
  }

  /* line 770, scss/bootstrap/_mixins.scss */
  .col-sm-offset-8 {
    margin-left: 66.66667%;
  }

  /* line 770, scss/bootstrap/_mixins.scss */
  .col-sm-offset-9 {
    margin-left: 75%;
  }

  /* line 770, scss/bootstrap/_mixins.scss */
  .col-sm-offset-10 {
    margin-left: 83.33333%;
  }

  /* line 770, scss/bootstrap/_mixins.scss */
  .col-sm-offset-11 {
    margin-left: 91.66667%;
  }

  /* line 770, scss/bootstrap/_mixins.scss */
  .col-sm-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 56em) {
  /* line 63, scss/bootstrap/_grid.scss */
  .container {
    width: 100%;
  }

  /* line 747, scss/bootstrap/_mixins.scss */
  .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1 {
    float: left;
  }

  /* line 755, scss/bootstrap/_mixins.scss */
  .col-md-1 {
    width: 8.33333%;
  }

  /* line 755, scss/bootstrap/_mixins.scss */
  .col-md-2 {
    width: 16.66667%;
  }

  /* line 755, scss/bootstrap/_mixins.scss */
  .col-md-3 {
    width: 25%;
  }

  /* line 755, scss/bootstrap/_mixins.scss */
  .col-md-4 {
    width: 33.33333%;
  }

  /* line 755, scss/bootstrap/_mixins.scss */
  .col-md-5 {
    width: 41.66667%;
  }

  /* line 755, scss/bootstrap/_mixins.scss */
  .col-md-6 {
    width: 50%;
  }

  /* line 755, scss/bootstrap/_mixins.scss */
  .col-md-7 {
    width: 58.33333%;
  }

  /* line 755, scss/bootstrap/_mixins.scss */
  .col-md-8 {
    width: 66.66667%;
  }

  /* line 755, scss/bootstrap/_mixins.scss */
  .col-md-9 {
    width: 75%;
  }

  /* line 755, scss/bootstrap/_mixins.scss */
  .col-md-10 {
    width: 83.33333%;
  }

  /* line 755, scss/bootstrap/_mixins.scss */
  .col-md-11 {
    width: 91.66667%;
  }

  /* line 755, scss/bootstrap/_mixins.scss */
  .col-md-12 {
    width: 100%;
  }

  /* line 765, scss/bootstrap/_mixins.scss */
  .col-md-pull-0 {
    right: 0%;
  }

  /* line 765, scss/bootstrap/_mixins.scss */
  .col-md-pull-1 {
    right: 8.33333%;
  }

  /* line 765, scss/bootstrap/_mixins.scss */
  .col-md-pull-2 {
    right: 16.66667%;
  }

  /* line 765, scss/bootstrap/_mixins.scss */
  .col-md-pull-3 {
    right: 25%;
  }

  /* line 765, scss/bootstrap/_mixins.scss */
  .col-md-pull-4 {
    right: 33.33333%;
  }

  /* line 765, scss/bootstrap/_mixins.scss */
  .col-md-pull-5 {
    right: 41.66667%;
  }

  /* line 765, scss/bootstrap/_mixins.scss */
  .col-md-pull-6 {
    right: 50%;
  }

  /* line 765, scss/bootstrap/_mixins.scss */
  .col-md-pull-7 {
    right: 58.33333%;
  }

  /* line 765, scss/bootstrap/_mixins.scss */
  .col-md-pull-8 {
    right: 66.66667%;
  }

  /* line 765, scss/bootstrap/_mixins.scss */
  .col-md-pull-9 {
    right: 75%;
  }

  /* line 765, scss/bootstrap/_mixins.scss */
  .col-md-pull-10 {
    right: 83.33333%;
  }

  /* line 765, scss/bootstrap/_mixins.scss */
  .col-md-pull-11 {
    right: 91.66667%;
  }

  /* line 765, scss/bootstrap/_mixins.scss */
  .col-md-pull-12 {
    right: 100%;
  }

  /* line 760, scss/bootstrap/_mixins.scss */
  .col-md-push-0 {
    left: 0%;
  }

  /* line 760, scss/bootstrap/_mixins.scss */
  .col-md-push-1 {
    left: 8.33333%;
  }

  /* line 760, scss/bootstrap/_mixins.scss */
  .col-md-push-2 {
    left: 16.66667%;
  }

  /* line 760, scss/bootstrap/_mixins.scss */
  .col-md-push-3 {
    left: 25%;
  }

  /* line 760, scss/bootstrap/_mixins.scss */
  .col-md-push-4 {
    left: 33.33333%;
  }

  /* line 760, scss/bootstrap/_mixins.scss */
  .col-md-push-5 {
    left: 41.66667%;
  }

  /* line 760, scss/bootstrap/_mixins.scss */
  .col-md-push-6 {
    left: 50%;
  }

  /* line 760, scss/bootstrap/_mixins.scss */
  .col-md-push-7 {
    left: 58.33333%;
  }

  /* line 760, scss/bootstrap/_mixins.scss */
  .col-md-push-8 {
    left: 66.66667%;
  }

  /* line 760, scss/bootstrap/_mixins.scss */
  .col-md-push-9 {
    left: 75%;
  }

  /* line 760, scss/bootstrap/_mixins.scss */
  .col-md-push-10 {
    left: 83.33333%;
  }

  /* line 760, scss/bootstrap/_mixins.scss */
  .col-md-push-11 {
    left: 91.66667%;
  }

  /* line 760, scss/bootstrap/_mixins.scss */
  .col-md-push-12 {
    left: 100%;
  }

  /* line 770, scss/bootstrap/_mixins.scss */
  .col-md-offset-0 {
    margin-left: 0%;
  }

  /* line 770, scss/bootstrap/_mixins.scss */
  .col-md-offset-1 {
    margin-left: 8.33333%;
  }

  /* line 770, scss/bootstrap/_mixins.scss */
  .col-md-offset-2 {
    margin-left: 16.66667%;
  }

  /* line 770, scss/bootstrap/_mixins.scss */
  .col-md-offset-3 {
    margin-left: 25%;
  }

  /* line 770, scss/bootstrap/_mixins.scss */
  .col-md-offset-4 {
    margin-left: 33.33333%;
  }

  /* line 770, scss/bootstrap/_mixins.scss */
  .col-md-offset-5 {
    margin-left: 41.66667%;
  }

  /* line 770, scss/bootstrap/_mixins.scss */
  .col-md-offset-6 {
    margin-left: 50%;
  }

  /* line 770, scss/bootstrap/_mixins.scss */
  .col-md-offset-7 {
    margin-left: 58.33333%;
  }

  /* line 770, scss/bootstrap/_mixins.scss */
  .col-md-offset-8 {
    margin-left: 66.66667%;
  }

  /* line 770, scss/bootstrap/_mixins.scss */
  .col-md-offset-9 {
    margin-left: 75%;
  }

  /* line 770, scss/bootstrap/_mixins.scss */
  .col-md-offset-10 {
    margin-left: 83.33333%;
  }

  /* line 770, scss/bootstrap/_mixins.scss */
  .col-md-offset-11 {
    margin-left: 91.66667%;
  }

  /* line 770, scss/bootstrap/_mixins.scss */
  .col-md-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 73em) {
  /* line 83, scss/bootstrap/_grid.scss */
  .container {
    width: 1170px;
  }

  /* line 747, scss/bootstrap/_mixins.scss */
  .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1 {
    float: left;
  }

  /* line 755, scss/bootstrap/_mixins.scss */
  .col-lg-1 {
    width: 8.33333%;
  }

  /* line 755, scss/bootstrap/_mixins.scss */
  .col-lg-2 {
    width: 16.66667%;
  }

  /* line 755, scss/bootstrap/_mixins.scss */
  .col-lg-3 {
    width: 25%;
  }

  /* line 755, scss/bootstrap/_mixins.scss */
  .col-lg-4 {
    width: 33.33333%;
  }

  /* line 755, scss/bootstrap/_mixins.scss */
  .col-lg-5 {
    width: 41.66667%;
  }

  /* line 755, scss/bootstrap/_mixins.scss */
  .col-lg-6 {
    width: 50%;
  }

  /* line 755, scss/bootstrap/_mixins.scss */
  .col-lg-7 {
    width: 58.33333%;
  }

  /* line 755, scss/bootstrap/_mixins.scss */
  .col-lg-8 {
    width: 66.66667%;
  }

  /* line 755, scss/bootstrap/_mixins.scss */
  .col-lg-9 {
    width: 75%;
  }

  /* line 755, scss/bootstrap/_mixins.scss */
  .col-lg-10 {
    width: 83.33333%;
  }

  /* line 755, scss/bootstrap/_mixins.scss */
  .col-lg-11 {
    width: 91.66667%;
  }

  /* line 755, scss/bootstrap/_mixins.scss */
  .col-lg-12 {
    width: 100%;
  }

  /* line 765, scss/bootstrap/_mixins.scss */
  .col-lg-pull-0 {
    right: 0%;
  }

  /* line 765, scss/bootstrap/_mixins.scss */
  .col-lg-pull-1 {
    right: 8.33333%;
  }

  /* line 765, scss/bootstrap/_mixins.scss */
  .col-lg-pull-2 {
    right: 16.66667%;
  }

  /* line 765, scss/bootstrap/_mixins.scss */
  .col-lg-pull-3 {
    right: 25%;
  }

  /* line 765, scss/bootstrap/_mixins.scss */
  .col-lg-pull-4 {
    right: 33.33333%;
  }

  /* line 765, scss/bootstrap/_mixins.scss */
  .col-lg-pull-5 {
    right: 41.66667%;
  }

  /* line 765, scss/bootstrap/_mixins.scss */
  .col-lg-pull-6 {
    right: 50%;
  }

  /* line 765, scss/bootstrap/_mixins.scss */
  .col-lg-pull-7 {
    right: 58.33333%;
  }

  /* line 765, scss/bootstrap/_mixins.scss */
  .col-lg-pull-8 {
    right: 66.66667%;
  }

  /* line 765, scss/bootstrap/_mixins.scss */
  .col-lg-pull-9 {
    right: 75%;
  }

  /* line 765, scss/bootstrap/_mixins.scss */
  .col-lg-pull-10 {
    right: 83.33333%;
  }

  /* line 765, scss/bootstrap/_mixins.scss */
  .col-lg-pull-11 {
    right: 91.66667%;
  }

  /* line 765, scss/bootstrap/_mixins.scss */
  .col-lg-pull-12 {
    right: 100%;
  }

  /* line 760, scss/bootstrap/_mixins.scss */
  .col-lg-push-0 {
    left: 0%;
  }

  /* line 760, scss/bootstrap/_mixins.scss */
  .col-lg-push-1 {
    left: 8.33333%;
  }

  /* line 760, scss/bootstrap/_mixins.scss */
  .col-lg-push-2 {
    left: 16.66667%;
  }

  /* line 760, scss/bootstrap/_mixins.scss */
  .col-lg-push-3 {
    left: 25%;
  }

  /* line 760, scss/bootstrap/_mixins.scss */
  .col-lg-push-4 {
    left: 33.33333%;
  }

  /* line 760, scss/bootstrap/_mixins.scss */
  .col-lg-push-5 {
    left: 41.66667%;
  }

  /* line 760, scss/bootstrap/_mixins.scss */
  .col-lg-push-6 {
    left: 50%;
  }

  /* line 760, scss/bootstrap/_mixins.scss */
  .col-lg-push-7 {
    left: 58.33333%;
  }

  /* line 760, scss/bootstrap/_mixins.scss */
  .col-lg-push-8 {
    left: 66.66667%;
  }

  /* line 760, scss/bootstrap/_mixins.scss */
  .col-lg-push-9 {
    left: 75%;
  }

  /* line 760, scss/bootstrap/_mixins.scss */
  .col-lg-push-10 {
    left: 83.33333%;
  }

  /* line 760, scss/bootstrap/_mixins.scss */
  .col-lg-push-11 {
    left: 91.66667%;
  }

  /* line 760, scss/bootstrap/_mixins.scss */
  .col-lg-push-12 {
    left: 100%;
  }

  /* line 770, scss/bootstrap/_mixins.scss */
  .col-lg-offset-0 {
    margin-left: 0%;
  }

  /* line 770, scss/bootstrap/_mixins.scss */
  .col-lg-offset-1 {
    margin-left: 8.33333%;
  }

  /* line 770, scss/bootstrap/_mixins.scss */
  .col-lg-offset-2 {
    margin-left: 16.66667%;
  }

  /* line 770, scss/bootstrap/_mixins.scss */
  .col-lg-offset-3 {
    margin-left: 25%;
  }

  /* line 770, scss/bootstrap/_mixins.scss */
  .col-lg-offset-4 {
    margin-left: 33.33333%;
  }

  /* line 770, scss/bootstrap/_mixins.scss */
  .col-lg-offset-5 {
    margin-left: 41.66667%;
  }

  /* line 770, scss/bootstrap/_mixins.scss */
  .col-lg-offset-6 {
    margin-left: 50%;
  }

  /* line 770, scss/bootstrap/_mixins.scss */
  .col-lg-offset-7 {
    margin-left: 58.33333%;
  }

  /* line 770, scss/bootstrap/_mixins.scss */
  .col-lg-offset-8 {
    margin-left: 66.66667%;
  }

  /* line 770, scss/bootstrap/_mixins.scss */
  .col-lg-offset-9 {
    margin-left: 75%;
  }

  /* line 770, scss/bootstrap/_mixins.scss */
  .col-lg-offset-10 {
    margin-left: 83.33333%;
  }

  /* line 770, scss/bootstrap/_mixins.scss */
  .col-lg-offset-11 {
    margin-left: 91.66667%;
  }

  /* line 770, scss/bootstrap/_mixins.scss */
  .col-lg-offset-12 {
    margin-left: 100%;
  }
}
/* line 94, scss/bootstrap/_grid.scss */
article {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  background: white;
  border: 1px solid #ddd;
  margin: 30px 0;
  padding: 0;
}
@media (min-width: 56em) {
  /* line 94, scss/bootstrap/_grid.scss */
  article {
    float: left;
    width: 100%;
  }
}
/* line 105, scss/bootstrap/_grid.scss */
article section.main {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  padding: 30px 35px;
  background: white;
}
@media (min-width: 56em) {
  /* line 105, scss/bootstrap/_grid.scss */
  article section.main {
    float: left;
    width: 75%;
  }
}
/* line 111, scss/bootstrap/_grid.scss */
article section.mid {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  padding: 0 25px 0 0;
  background: white;
}
@media (min-width: 56em) {
  /* line 111, scss/bootstrap/_grid.scss */
  article section.mid {
    float: left;
    width: 75%;
  }
}
/* line 117, scss/bootstrap/_grid.scss */
article aside.sidebar {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  padding: 0;
  background: white;
}
@media (min-width: 56em) {
  /* line 117, scss/bootstrap/_grid.scss */
  article aside.sidebar {
    float: left;
    width: 25%;
  }
}
/* line 123, scss/bootstrap/_grid.scss */
article aside.pull-right {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  padding: 0 0 0 25px;
  border-left: 3px solid #eeeeee;
}
@media (min-width: 56em) {
  /* line 123, scss/bootstrap/_grid.scss */
  article aside.pull-right {
    float: left;
    width: 25%;
  }
}
/* line 128, scss/bootstrap/_grid.scss */
article aside.pull-right li {
  padding: 10px;
  border-top: 1px dotted #dddddd;
  line-height: 0.95em;
}

/* line 136, scss/bootstrap/_grid.scss */
.featured-resources {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  padding: 0 20px 0 0;
}
@media (min-width: 56em) {
  /* line 136, scss/bootstrap/_grid.scss */
  .featured-resources {
    float: left;
    width: 25%;
  }
}

/* line 141, scss/bootstrap/_grid.scss */
.marketing {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 56em) {
  /* line 141, scss/bootstrap/_grid.scss */
  .marketing {
    float: left;
    width: 50%;
  }
}

/* line 145, scss/bootstrap/_grid.scss */
.hours {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  padding: 0 0 0 20px;
}
@media (min-width: 56em) {
  /* line 145, scss/bootstrap/_grid.scss */
  .hours {
    float: left;
    width: 25%;
  }
}

/* line 150, scss/bootstrap/_grid.scss */
body, html {
  height: 100%;
}

/* line 154, scss/bootstrap/_grid.scss */
#wrap {
  background: #f1efe5 url('/inc/img/white_wall_hash.png') repeat;
  background-color: #f1efe5;
  min-height: 100%;
}

/* line 159, scss/bootstrap/_grid.scss */
#main {
  /*padding-bottom: 72px;*/
}

/*------------------------------------*\
    $GLOBAL CLASSES
\*------------------------------------*/
/* Clearfix */
/* line 6, scss/base/_global-classes.scss */
.cf, .l-two-col, [role=main] {
  *zoom: 1;
}

/* line 9, scss/base/_global-classes.scss */
.cf:before, .l-two-col:before, [role=main]:before, .cf:after, .l-two-col:after, [role=main]:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}

/* line 14, scss/base/_global-classes.scss */
.cf:after, .l-two-col:after, [role=main]:after {
  clear: both;
}

/* Completely remove from the flow and screen readers. */
/* line 19, scss/base/_global-classes.scss */
.is-hidden {
  display: none !important;
  visibility: hidden !important;
}

/* Completely remove from the flow but leave available to screen readers. */
/* line 25, scss/base/_global-classes.scss */
.is-vishidden {
  position: absolute !important;
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
}

/* Floats */
/* line 36, scss/base/_global-classes.scss */
.right {
  float: right;
  padding: 0 0 1em 1em;
}

/* line 41, scss/base/_global-classes.scss */
.right-search {
  float: right;
  padding: 0 0 1em 0;
}

/* line 46, scss/base/_global-classes.scss */
.left {
  float: left;
  padding: 0 1em 1em 0;
}

/* Text-Align */
/* line 52, scss/base/_global-classes.scss */
.align-right {
  text-align: right;
}

/* line 56, scss/base/_global-classes.scss */
.align-center {
  text-align: center;
}

/* line 60, scss/base/_global-classes.scss */
.align-left {
  text-align: left;
}

/* Display Classes */
/* line 70, scss/base/_global-classes.scss */
.valid {
  color: #089e00;
}

/* line 74, scss/base/_global-classes.scss */
.error {
  color: red;
}

/* line 78, scss/base/_global-classes.scss */
.warning {
  color: #fff664;
}

/* line 82, scss/base/_global-classes.scss */
.information {
  color: #000db5;
}

/* line 86, scss/base/_global-classes.scss */
.font-secondary {
  font-family: "Marcellus SC", Georgia, Times, "Times New Roman", serif;
}

/* line 21, scss/bootstrap/_mixins.scss */
.clearfix:before, .clearfix:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}
/* line 25, scss/bootstrap/_mixins.scss */
.clearfix:after {
  clear: both;
}

/* line 12, scss/bootstrap/_utilities.scss */
.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* line 15, scss/bootstrap/_utilities.scss */
.pull-right {
  float: right !important;
}

/* line 18, scss/bootstrap/_utilities.scss */
.pull-left {
  float: left !important;
}

/* line 27, scss/bootstrap/_utilities.scss */
.hide {
  display: none !important;
}

/* line 30, scss/bootstrap/_utilities.scss */
.show {
  display: block !important;
}

/* line 33, scss/bootstrap/_utilities.scss */
.invisible {
  visibility: hidden;
}

/* line 36, scss/bootstrap/_utilities.scss */
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

/* line 45, scss/bootstrap/_utilities.scss */
.hidden {
  display: none !important;
  visibility: hidden !important;
}

/* line 54, scss/bootstrap/_utilities.scss */
.affix {
  position: fixed;
}

@-ms-viewport {
  width: device-width;
}

/* line 580, scss/bootstrap/_mixins.scss */
.visible-xs,
tr.visible-xs,
th.visible-xs,
td.visible-xs {
  display: none !important;
}

@media (max-width: 47em) {
  /* line 569, scss/bootstrap/_mixins.scss */
  .visible-xs {
    display: block !important;
  }

  /* line 570, scss/bootstrap/_mixins.scss */
  tr.visible-xs {
    display: table-row !important;
  }

  /* line 572, scss/bootstrap/_mixins.scss */
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}
@media (min-width: 48em) and (max-width: 55em) {
  /* line 569, scss/bootstrap/_mixins.scss */
  .visible-xs.visible-sm {
    display: block !important;
  }

  /* line 570, scss/bootstrap/_mixins.scss */
  tr.visible-xs.visible-sm {
    display: table-row !important;
  }

  /* line 572, scss/bootstrap/_mixins.scss */
  th.visible-xs.visible-sm,
  td.visible-xs.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 56em) and (max-width: 72em) {
  /* line 569, scss/bootstrap/_mixins.scss */
  .visible-xs.visible-md {
    display: block !important;
  }

  /* line 570, scss/bootstrap/_mixins.scss */
  tr.visible-xs.visible-md {
    display: table-row !important;
  }

  /* line 572, scss/bootstrap/_mixins.scss */
  th.visible-xs.visible-md,
  td.visible-xs.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 73em) {
  /* line 569, scss/bootstrap/_mixins.scss */
  .visible-xs.visible-lg {
    display: block !important;
  }

  /* line 570, scss/bootstrap/_mixins.scss */
  tr.visible-xs.visible-lg {
    display: table-row !important;
  }

  /* line 572, scss/bootstrap/_mixins.scss */
  th.visible-xs.visible-lg,
  td.visible-xs.visible-lg {
    display: table-cell !important;
  }
}
/* line 580, scss/bootstrap/_mixins.scss */
.visible-sm,
tr.visible-sm,
th.visible-sm,
td.visible-sm {
  display: none !important;
}

@media (max-width: 47em) {
  /* line 569, scss/bootstrap/_mixins.scss */
  .visible-sm.visible-xs {
    display: block !important;
  }

  /* line 570, scss/bootstrap/_mixins.scss */
  tr.visible-sm.visible-xs {
    display: table-row !important;
  }

  /* line 572, scss/bootstrap/_mixins.scss */
  th.visible-sm.visible-xs,
  td.visible-sm.visible-xs {
    display: table-cell !important;
  }
}
@media (min-width: 48em) and (max-width: 55em) {
  /* line 569, scss/bootstrap/_mixins.scss */
  .visible-sm {
    display: block !important;
  }

  /* line 570, scss/bootstrap/_mixins.scss */
  tr.visible-sm {
    display: table-row !important;
  }

  /* line 572, scss/bootstrap/_mixins.scss */
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 56em) and (max-width: 72em) {
  /* line 569, scss/bootstrap/_mixins.scss */
  .visible-sm.visible-md {
    display: block !important;
  }

  /* line 570, scss/bootstrap/_mixins.scss */
  tr.visible-sm.visible-md {
    display: table-row !important;
  }

  /* line 572, scss/bootstrap/_mixins.scss */
  th.visible-sm.visible-md,
  td.visible-sm.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 73em) {
  /* line 569, scss/bootstrap/_mixins.scss */
  .visible-sm.visible-lg {
    display: block !important;
  }

  /* line 570, scss/bootstrap/_mixins.scss */
  tr.visible-sm.visible-lg {
    display: table-row !important;
  }

  /* line 572, scss/bootstrap/_mixins.scss */
  th.visible-sm.visible-lg,
  td.visible-sm.visible-lg {
    display: table-cell !important;
  }
}
/* line 580, scss/bootstrap/_mixins.scss */
.visible-md,
tr.visible-md,
th.visible-md,
td.visible-md {
  display: none !important;
}

@media (max-width: 47em) {
  /* line 569, scss/bootstrap/_mixins.scss */
  .visible-md.visible-xs {
    display: block !important;
  }

  /* line 570, scss/bootstrap/_mixins.scss */
  tr.visible-md.visible-xs {
    display: table-row !important;
  }

  /* line 572, scss/bootstrap/_mixins.scss */
  th.visible-md.visible-xs,
  td.visible-md.visible-xs {
    display: table-cell !important;
  }
}
@media (min-width: 48em) and (max-width: 55em) {
  /* line 569, scss/bootstrap/_mixins.scss */
  .visible-md.visible-sm {
    display: block !important;
  }

  /* line 570, scss/bootstrap/_mixins.scss */
  tr.visible-md.visible-sm {
    display: table-row !important;
  }

  /* line 572, scss/bootstrap/_mixins.scss */
  th.visible-md.visible-sm,
  td.visible-md.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 56em) and (max-width: 72em) {
  /* line 569, scss/bootstrap/_mixins.scss */
  .visible-md {
    display: block !important;
  }

  /* line 570, scss/bootstrap/_mixins.scss */
  tr.visible-md {
    display: table-row !important;
  }

  /* line 572, scss/bootstrap/_mixins.scss */
  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 73em) {
  /* line 569, scss/bootstrap/_mixins.scss */
  .visible-md.visible-lg {
    display: block !important;
  }

  /* line 570, scss/bootstrap/_mixins.scss */
  tr.visible-md.visible-lg {
    display: table-row !important;
  }

  /* line 572, scss/bootstrap/_mixins.scss */
  th.visible-md.visible-lg,
  td.visible-md.visible-lg {
    display: table-cell !important;
  }
}
/* line 580, scss/bootstrap/_mixins.scss */
.visible-lg,
tr.visible-lg,
th.visible-lg,
td.visible-lg {
  display: none !important;
}

@media (max-width: 47em) {
  /* line 569, scss/bootstrap/_mixins.scss */
  .visible-lg.visible-xs {
    display: block !important;
  }

  /* line 570, scss/bootstrap/_mixins.scss */
  tr.visible-lg.visible-xs {
    display: table-row !important;
  }

  /* line 572, scss/bootstrap/_mixins.scss */
  th.visible-lg.visible-xs,
  td.visible-lg.visible-xs {
    display: table-cell !important;
  }
}
@media (min-width: 48em) and (max-width: 55em) {
  /* line 569, scss/bootstrap/_mixins.scss */
  .visible-lg.visible-sm {
    display: block !important;
  }

  /* line 570, scss/bootstrap/_mixins.scss */
  tr.visible-lg.visible-sm {
    display: table-row !important;
  }

  /* line 572, scss/bootstrap/_mixins.scss */
  th.visible-lg.visible-sm,
  td.visible-lg.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 56em) and (max-width: 72em) {
  /* line 569, scss/bootstrap/_mixins.scss */
  .visible-lg.visible-md {
    display: block !important;
  }

  /* line 570, scss/bootstrap/_mixins.scss */
  tr.visible-lg.visible-md {
    display: table-row !important;
  }

  /* line 572, scss/bootstrap/_mixins.scss */
  th.visible-lg.visible-md,
  td.visible-lg.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 73em) {
  /* line 569, scss/bootstrap/_mixins.scss */
  .visible-lg {
    display: block !important;
  }

  /* line 570, scss/bootstrap/_mixins.scss */
  tr.visible-lg {
    display: table-row !important;
  }

  /* line 572, scss/bootstrap/_mixins.scss */
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}
/* line 569, scss/bootstrap/_mixins.scss */
.hidden-xs {
  display: block !important;
}

/* line 570, scss/bootstrap/_mixins.scss */
tr.hidden-xs {
  display: table-row !important;
}

/* line 572, scss/bootstrap/_mixins.scss */
th.hidden-xs,
td.hidden-xs {
  display: table-cell !important;
}

@media (max-width: 47em) {
  /* line 580, scss/bootstrap/_mixins.scss */
  .hidden-xs,
  tr.hidden-xs,
  th.hidden-xs,
  td.hidden-xs {
    display: none !important;
  }
}
@media (min-width: 48em) and (max-width: 55em) {
  /* line 580, scss/bootstrap/_mixins.scss */
  .hidden-xs.hidden-sm,
  tr.hidden-xs.hidden-sm,
  th.hidden-xs.hidden-sm,
  td.hidden-xs.hidden-sm {
    display: none !important;
  }
}
@media (min-width: 56em) and (max-width: 72em) {
  /* line 580, scss/bootstrap/_mixins.scss */
  .hidden-xs.hidden-md,
  tr.hidden-xs.hidden-md,
  th.hidden-xs.hidden-md,
  td.hidden-xs.hidden-md {
    display: none !important;
  }
}
@media (min-width: 73em) {
  /* line 580, scss/bootstrap/_mixins.scss */
  .hidden-xs.hidden-lg,
  tr.hidden-xs.hidden-lg,
  th.hidden-xs.hidden-lg,
  td.hidden-xs.hidden-lg {
    display: none !important;
  }
}
/* line 569, scss/bootstrap/_mixins.scss */
.hidden-sm {
  display: block !important;
}

/* line 570, scss/bootstrap/_mixins.scss */
tr.hidden-sm {
  display: table-row !important;
}

/* line 572, scss/bootstrap/_mixins.scss */
th.hidden-sm,
td.hidden-sm {
  display: table-cell !important;
}

@media (max-width: 47em) {
  /* line 580, scss/bootstrap/_mixins.scss */
  .hidden-sm.hidden-xs,
  tr.hidden-sm.hidden-xs,
  th.hidden-sm.hidden-xs,
  td.hidden-sm.hidden-xs {
    display: none !important;
  }
}
@media (min-width: 48em) and (max-width: 55em) {
  /* line 580, scss/bootstrap/_mixins.scss */
  .hidden-sm,
  tr.hidden-sm,
  th.hidden-sm,
  td.hidden-sm {
    display: none !important;
  }
}
@media (min-width: 56em) and (max-width: 72em) {
  /* line 580, scss/bootstrap/_mixins.scss */
  .hidden-sm.hidden-md,
  tr.hidden-sm.hidden-md,
  th.hidden-sm.hidden-md,
  td.hidden-sm.hidden-md {
    display: none !important;
  }
}
@media (min-width: 73em) {
  /* line 580, scss/bootstrap/_mixins.scss */
  .hidden-sm.hidden-lg,
  tr.hidden-sm.hidden-lg,
  th.hidden-sm.hidden-lg,
  td.hidden-sm.hidden-lg {
    display: none !important;
  }
}
/* line 569, scss/bootstrap/_mixins.scss */
.hidden-md {
  display: block !important;
}

/* line 570, scss/bootstrap/_mixins.scss */
tr.hidden-md {
  display: table-row !important;
}

/* line 572, scss/bootstrap/_mixins.scss */
th.hidden-md,
td.hidden-md {
  display: table-cell !important;
}

@media (max-width: 47em) {
  /* line 580, scss/bootstrap/_mixins.scss */
  .hidden-md.hidden-xs,
  tr.hidden-md.hidden-xs,
  th.hidden-md.hidden-xs,
  td.hidden-md.hidden-xs {
    display: none !important;
  }
}
@media (min-width: 48em) and (max-width: 55em) {
  /* line 580, scss/bootstrap/_mixins.scss */
  .hidden-md.hidden-sm,
  tr.hidden-md.hidden-sm,
  th.hidden-md.hidden-sm,
  td.hidden-md.hidden-sm {
    display: none !important;
  }
}
@media (min-width: 56em) and (max-width: 72em) {
  /* line 580, scss/bootstrap/_mixins.scss */
  .hidden-md,
  tr.hidden-md,
  th.hidden-md,
  td.hidden-md {
    display: none !important;
  }
}
@media (min-width: 73em) {
  /* line 580, scss/bootstrap/_mixins.scss */
  .hidden-md.hidden-lg,
  tr.hidden-md.hidden-lg,
  th.hidden-md.hidden-lg,
  td.hidden-md.hidden-lg {
    display: none !important;
  }
}
/* line 569, scss/bootstrap/_mixins.scss */
.hidden-lg {
  display: block !important;
}

/* line 570, scss/bootstrap/_mixins.scss */
tr.hidden-lg {
  display: table-row !important;
}

/* line 572, scss/bootstrap/_mixins.scss */
th.hidden-lg,
td.hidden-lg {
  display: table-cell !important;
}

@media (max-width: 47em) {
  /* line 580, scss/bootstrap/_mixins.scss */
  .hidden-lg.hidden-xs,
  tr.hidden-lg.hidden-xs,
  th.hidden-lg.hidden-xs,
  td.hidden-lg.hidden-xs {
    display: none !important;
  }
}
@media (min-width: 48em) and (max-width: 55em) {
  /* line 580, scss/bootstrap/_mixins.scss */
  .hidden-lg.hidden-sm,
  tr.hidden-lg.hidden-sm,
  th.hidden-lg.hidden-sm,
  td.hidden-lg.hidden-sm {
    display: none !important;
  }
}
@media (min-width: 56em) and (max-width: 72em) {
  /* line 580, scss/bootstrap/_mixins.scss */
  .hidden-lg.hidden-md,
  tr.hidden-lg.hidden-md,
  th.hidden-lg.hidden-md,
  td.hidden-lg.hidden-md {
    display: none !important;
  }
}
@media (min-width: 73em) {
  /* line 580, scss/bootstrap/_mixins.scss */
  .hidden-lg,
  tr.hidden-lg,
  th.hidden-lg,
  td.hidden-lg {
    display: none !important;
  }
}
/* line 580, scss/bootstrap/_mixins.scss */
.visible-print,
tr.visible-print,
th.visible-print,
td.visible-print {
  display: none !important;
}

@media print {
  /* line 569, scss/bootstrap/_mixins.scss */
  .visible-print {
    display: block !important;
  }

  /* line 570, scss/bootstrap/_mixins.scss */
  tr.visible-print {
    display: table-row !important;
  }

  /* line 572, scss/bootstrap/_mixins.scss */
  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }

  /* line 580, scss/bootstrap/_mixins.scss */
  .hidden-print,
  tr.hidden-print,
  th.hidden-print,
  td.hidden-print {
    display: none !important;
  }
}
/* line 1, scss/base/_main.scss */
body {
  background: white;
  font: 100%/1.5 "Roboto", "HelveticaNeue", "Helvetica", "Arial", sans-serif;
  -webkit-text-size-adjust: 100%;
  color: #333333;
}

/* line 8, scss/base/_main.scss */
.signature {
  width: 165px;
  height: auto;
}

/* Links */
/* line 2, scss/base/_links.scss */
a {
  color: #333333;
  text-decoration: none;
  outline: 0;
}
p a {
  border-bottom: 1px dotted #ECEBE8;
}
/* line 7, scss/base/_links.scss */
a:hover, a:focus {
  background: #ECEBE8;
}

.wsu-logo a:hover {
  background: transparent;
}

aside.pull-right a:hover {
  background: none;
}

aside li:hover, .sidebar ul li a:hover {
  background: #f1f5f5;
}

/* Headings */
/*Further Reading: http:/csswizardry.com/2012/02/pragmatic-practical-font-sizing-in-css/ */
/* line 4, scss/base/_headings.scss */
h1, h2, h3, h4 {
  margin-bottom: 1em;
}

/* line 7, scss/base/_headings.scss */
h1, .alpha {
  line-height: 1.2;
}

/* line 11, scss/base/_headings.scss */
h2, .beta {
  line-height: 1.2;
}

/* line 15, scss/base/_headings.scss */
h3, .gamma {
  line-height: 1.2;
}

/* Subheadings */
/* line 32, scss/base/_headings.scss */
.subheading {
  font-family: "Roboto Condensed", "HelveticaNeue", "Helvetica", "Arial", sans-serif;
  font-weight: normal;
}

/* Text-Related Elements */
/* line 2, scss/base/_text.scss */
p {
  margin-bottom: 1.5em;
  font-size: 0.9em;
}

/* Blockquote */
/* line 8, scss/base/_text.scss */
blockquote {
  font-style: italic;
  border-left: 5px solid #333333;
  color: #333333;
  padding-left: 1em;
  margin-bottom: 1em;
}

/* Horizontal Rule */
/* line 17, scss/base/_text.scss */
hr {
  border: 0;
  height: 0;
  border-top: 1px solid #eee;
  margin: 1em 0;
}

/* line 25, scss/base/_text.scss */
mark {
  background: #ffdf80;
}

/* line 1, scss/base/_lists.scss */
ol, ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* line 7, scss/base/_lists.scss */
.text li {
  font-size: 0.9em;
  margin: 1em 2em;
}

/* Definition Lists */
/* line 12, scss/base/_lists.scss */
dl {
  overflow: hidden;
  margin: 0 0 1.5em;
}

/* line 17, scss/base/_lists.scss */
dt {
  font-weight: bold;
}

/* line 21, scss/base/_lists.scss */
dd {
  margin-left: 0;
  margin-bottom: 1em;
  font-size: 0.9em;
}

/*------------------------------------*\
    $MEDIA ELEMENTS
\*------------------------------------*/
/* Flexible Media */
/* line 6, scss/base/_media.scss */
img, video, object {
  max-width: 100%;
  height: auto;
}

/* line 11, scss/base/_media.scss */
iframe {
  margin-bottom: 1em;
}

/* line 15, scss/base/_media.scss */
figure {
  margin-bottom: 1em;
}
/* line 17, scss/base/_media.scss */
figure img {
  margin-bottom: 0.5em;
}

/* line 21, scss/base/_media.scss */
figcaption {
  font-style: italic;
}

/*------------------------------------*\
    $FORMS
\*------------------------------------*/
/* line 4, scss/base/_forms.scss */
form ol, form ul {
  list-style: none;
  margin-left: 0;
}

/* line 9, scss/base/_forms.scss */
fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}

/* line 15, scss/base/_forms.scss */
label {
  display: block;
  padding-bottom: 0.5em;
}

/* line 20, scss/base/_forms.scss */
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0 1px 0;
}

/* line 26, scss/base/_forms.scss */
input, textarea {
  width: 100%;
  border: 1px solid #555; /*#ECEBE8;*/
  padding: 0.5em 0.65rem;
  font-size: 0.9em;
  /*border: 1px solid #cccccc;*/
  /*border-radius: 4px;*/
}

/* line 34, scss/base/_forms.scss */
input, input[type="text"], input[type=search], input[type=url], input[type=number], textarea {
  -webkit-appearance: none;
  border-radius: 0;
}

/* line 38, scss/base/_forms.scss */
button, input[type="submit"] {
  padding: 0.5em;
  /*background: #333333;*/
  /*border: 1px solid #ECEBE8;*/
  cursor: pointer;
}

/* line 46, scss/base/_forms.scss */
input[type="checkbox"] {
  width: auto;
  margin-right: 0.3em;
  -webkit-appearance: checkbox;
}
input[type="radio"] {
  width: auto;
  margin-right: 0.3em;
  -webkit-appearance: radio;
}

/* line 51, scss/base/_forms.scss */
input[type="search"] {
  -webkit-appearance: none;
  border-radius: 0;
}

/* line 57, scss/base/_forms.scss */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/* line 62, scss/base/_forms.scss */
.field-container {
  margin-bottom: 1em;
}

/* line 67, scss/base/_forms.scss */
.inline-form fieldset, .inline-form .inline-container {
  position: relative;
}
/* line 71, scss/base/_forms.scss */
.inline-form input[type=submit], .inline-form button, .inline-form .btn {
  font-size: 0.875em;
  padding: 0.65rem 1.3rem;
  background: #333333;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: auto;
}
/* line 81, scss/base/_forms.scss */
.inline-form input[type=submit]:hover, .inline-form input[type=submit]:focus, .inline-form button:hover, .inline-form button:focus, .inline-form .btn:hover, .inline-form .btn:focus {
  background: #ECEBE8;
  color: white;
}

/* Validation */
/* line 89, scss/base/_forms.scss */
.has-error {
  border-color: red;
}

/* line 92, scss/base/_forms.scss */
.is-valid {
  border-color: #089e00;
}

/*------------------------------------*\
    $SPECIFIC FORMS
\*------------------------------------*/
/* Search Form */
/* line 104, scss/base/_forms.scss */
.search-form {
  display: inline-block;
  width: 100%;
}

/* line 109, scss/base/_forms.scss */
.search-form fieldset input {
  border: none;
  border-radius: 5px;
  box-sizing: border-box;
  float: left;
  height: 44px;
  /*padding: 0 54px 0 135px; for header-v2.php*/
  padding: 0 54px 0 14px;
  width: 99.6%;
}

.headerv2 .search-form fieldset input {
  padding: 0 54px 0 135px; 
}

/* line 119, scss/base/_forms.scss */
.search-form fieldset button {
  background: #fc3;
  border: none;
  border-radius: 0 5px 5px 0;
  color: #000;
  cursor: pointer;
  float: right;
  height: 44px;
  right: 0;
  top: 0;
  padding: 0;
  position: absolute;
  width: 44px;
  z-index: 2;
}

/* line 6, scss/bootstrap/_tables.scss */
table {
  max-width: 100%;
  background-color: transparent;
}

/* line 10, scss/bootstrap/_tables.scss */
th {
  text-align: left;
}

/* line 17, scss/bootstrap/_tables.scss */
.table {
  width: 100%;
  margin-bottom: 20px;
}
/* line 26, scss/bootstrap/_tables.scss */
.table > thead > tr > th,
.table > thead > tr > td,
.table > tbody > tr > th,
.table > tbody > tr > td,
.table > tfoot > tr > th,
.table > tfoot > tr > td {
  padding: 8px;
  line-height: 1.42857;
  vertical-align: top;
}
/* line 35, scss/bootstrap/_tables.scss */
.table > thead > tr > th {
  vertical-align: bottom;
}
/* line 45, scss/bootstrap/_tables.scss */
.table > caption + thead > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > th,
.table > thead:first-child > tr:first-child > td {
  border-top: 0;
}
/* line 51, scss/bootstrap/_tables.scss */
.table > tbody + tbody {
  border-top: 2px solid #dddddd;
}
/* line 56, scss/bootstrap/_tables.scss */
.table .table {
  background-color: white;
}

/* line 70, scss/bootstrap/_tables.scss */
.table-condensed > thead > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > th,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > th,
.table-condensed > tfoot > tr > td {
  padding: 5px;
}

/* line 82, scss/bootstrap/_tables.scss */
.table-bordered {
  border: 1px solid #dddddd;
}
/* line 89, scss/bootstrap/_tables.scss */
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > th,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > th,
.table-bordered > tfoot > tr > td {
  border: 1px solid #dddddd;
}
/* line 96, scss/bootstrap/_tables.scss */
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
  border-bottom-width: 2px;
}

/* line 110, scss/bootstrap/_tables.scss */
.table-striped > tbody > tr:nth-child(odd) > td,
.table-striped > tbody > tr:nth-child(odd) > th {
  background-color: #eeeeee;
}

/* line 124, scss/bootstrap/_tables.scss */
.table-hover > tbody > tr:hover > td,
.table-hover > tbody > tr:hover > th {
  background-color: whitesmoke;
}

/* line 135, scss/bootstrap/_tables.scss */
table col[class*="col-"] {
  float: none;
  display: table-column;
}

/* line 142, scss/bootstrap/_tables.scss */
table td[class*="col-"],
table th[class*="col-"] {
  float: none;
  display: table-cell;
}

/* line 163, scss/bootstrap/_tables.scss */
.table > thead > tr > td.active,
.table > thead > tr > th.active, .table > thead > tr.active > td, .table > thead > tr.active > th,
.table > tbody > tr > td.active,
.table > tbody > tr > th.active,
.table > tbody > tr.active > td,
.table > tbody > tr.active > th,
.table > tfoot > tr > td.active,
.table > tfoot > tr > th.active,
.table > tfoot > tr.active > td,
.table > tfoot > tr.active > th {
  background-color: whitesmoke;
}

/* line 441, scss/bootstrap/_mixins.scss */
.table > thead > tr > td.success,
.table > thead > tr > th.success, .table > thead > tr.success > td, .table > thead > tr.success > th,
.table > tbody > tr > td.success,
.table > tbody > tr > th.success,
.table > tbody > tr.success > td,
.table > tbody > tr.success > th,
.table > tfoot > tr > td.success,
.table > tfoot > tr > th.success,
.table > tfoot > tr.success > td,
.table > tfoot > tr.success > th {
  background-color: #dff0d8;
}

/* line 452, scss/bootstrap/_mixins.scss */
.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover, .table-hover > tbody > tr.success:hover > td, .table-hover > tbody > tr.success:hover > th {
  background-color: #d0e9c6;
}

/* line 441, scss/bootstrap/_mixins.scss */
.table > thead > tr > td.danger,
.table > thead > tr > th.danger, .table > thead > tr.danger > td, .table > thead > tr.danger > th,
.table > tbody > tr > td.danger,
.table > tbody > tr > th.danger,
.table > tbody > tr.danger > td,
.table > tbody > tr.danger > th,
.table > tfoot > tr > td.danger,
.table > tfoot > tr > th.danger,
.table > tfoot > tr.danger > td,
.table > tfoot > tr.danger > th {
  background-color: #f2dede;
}

/* line 452, scss/bootstrap/_mixins.scss */
.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover, .table-hover > tbody > tr.danger:hover > td, .table-hover > tbody > tr.danger:hover > th {
  background-color: #ebcccc;
}

/* line 441, scss/bootstrap/_mixins.scss */
.table > thead > tr > td.warning,
.table > thead > tr > th.warning, .table > thead > tr.warning > td, .table > thead > tr.warning > th,
.table > tbody > tr > td.warning,
.table > tbody > tr > th.warning,
.table > tbody > tr.warning > td,
.table > tbody > tr.warning > th,
.table > tfoot > tr > td.warning,
.table > tfoot > tr > th.warning,
.table > tfoot > tr.warning > td,
.table > tfoot > tr.warning > th {
  background-color: #fcf8e3;
}

/* line 452, scss/bootstrap/_mixins.scss */
.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover, .table-hover > tbody > tr.warning:hover > td, .table-hover > tbody > tr.warning:hover > th {
  background-color: #faf2cc;
}

@media (max-width: 47em) {
  /* line 183, scss/bootstrap/_tables.scss */
  .table-responsive {
    width: 100%;
    margin-bottom: 15px;
    overflow-y: hidden;
    overflow-x: scroll;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #dddddd;
    -webkit-overflow-scrolling: touch;
  }
  /* line 193, scss/bootstrap/_tables.scss */
  .table-responsive > .table {
    margin-bottom: 0;
  }
  /* line 202, scss/bootstrap/_tables.scss */
  .table-responsive > .table > thead > tr > th,
  .table-responsive > .table > thead > tr > td,
  .table-responsive > .table > tbody > tr > th,
  .table-responsive > .table > tbody > tr > td,
  .table-responsive > .table > tfoot > tr > th,
  .table-responsive > .table > tfoot > tr > td {
    white-space: nowrap;
  }
  /* line 210, scss/bootstrap/_tables.scss */
  .table-responsive > .table-bordered {
    border: 0;
  }
  /* line 219, scss/bootstrap/_tables.scss */
  .table-responsive > .table-bordered > thead > tr > th:first-child,
  .table-responsive > .table-bordered > thead > tr > td:first-child,
  .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0;
  }
  /* line 223, scss/bootstrap/_tables.scss */
  .table-responsive > .table-bordered > thead > tr > th:last-child,
  .table-responsive > .table-bordered > thead > tr > td:last-child,
  .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0;
  }
  /* line 236, scss/bootstrap/_tables.scss */
  .table-responsive > .table-bordered > tbody > tr:last-child > th,
  .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  .table-responsive > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0;
  }
}
/* line 1, scss/base/_animation.scss */
.animate-fade {
  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -ms-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
/* line 4, scss/base/_animation.scss */
.animate-fade:hover {
  opacity: 0;
}

/* line 10, scss/base/_animation.scss */
.animate-move > .demo-shape {
  -webkit-transition: all 0.8s ease-in-out;
  -moz-transition: all 0.8s ease-in-out;
  -ms-transition: all 0.8s ease-in-out;
  -o-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
}

/*------------------------------------*\
    $LAYOUT
\*------------------------------------*/
/*------------------------------------*\
    $LAYOUT
\*------------------------------------*/
/* Layout Container */
/* line 6, scss/objects/_layout.scss */
.lc, [role=main] {
  max-width: 72em;
  margin: 0 auto;
  padding: 0.5em;
}

/*------------------------------------*\
    $TEMPLATES
\*------------------------------------*/
/* Two Column Layout */
@media all and (min-width: 50em) {
  /* line 20, scss/objects/_layout.scss */
  .l-two-col .l-main {
    float: left;
    width: 70%;
    padding-right: 1em;
  }
}
@media all and (max-width: 50em) {
  /* line 28, scss/objects/_layout.scss */
  .l-two-col .l-sidebar {
    clear: both;
  }
}
@media all and (min-width: 50em) {
  /* line 28, scss/objects/_layout.scss */
  .l-two-col .l-sidebar {
    float: left;
    width: 30%;
    padding: 0 0 0 1em;
  }
}

/*------------------------------------*\
    $GRIDS
\*------------------------------------*/
/* Grid Container */
/* line 47, scss/objects/_layout.scss */
.g {
  overflow: hidden;
  margin: 0 -0.5em;
}

/* Grid Item */
/* line 53, scss/objects/_layout.scss */
.gi {
  padding: 0.5em;
}
/* line 56, scss/objects/_layout.scss */
.gi img {
  display: block;
}
@media all and (min-width: 46.8em) {
  /* line 53, scss/objects/_layout.scss */
  .gi {
    float: left;
  }
}

/* Grid 1up */
/* line 67, scss/objects/_layout.scss */
.g-1up .gi {
  width: 100%;
}

/* Grid 2up */
@media all and (min-width: 46.8em) {
  /* line 75, scss/objects/_layout.scss */
  .g-2up > .gi {
    float: left;
    width: 50%;
  }
  /* line 79, scss/objects/_layout.scss */
  .g-2up > .gi:nth-of-type(odd) {
    clear: left;
  }
}

/* Grid Half (Always displayed side by side) */
/* line 88, scss/objects/_layout.scss */
.g-half > .gi {
  float: left;
  width: 50%;
}
/* line 92, scss/objects/_layout.scss */
.g-half > .gi:nth-of-type(odd) {
  clear: left;
}

/* Grid 3up */
@media all and (min-width: 46.8em) {
  /* line 101, scss/objects/_layout.scss */
  .g-3up > .gi {
    float: left;
    width: 50%;
  }
  /* line 105, scss/objects/_layout.scss */
  .g-3up > .gi:nth-of-type(2n+1) {
    clear: left;
  }
}
@media all and (min-width: 50em) {
  /* line 112, scss/objects/_layout.scss */
  .g-3up > .gi {
    width: 33.3333333%;
  }
  /* line 115, scss/objects/_layout.scss */
  .g-3up > .gi:nth-of-type(2n+1) {
    clear: none;
  }
  /* line 119, scss/objects/_layout.scss */
  .g-3up > .gi:nth-of-type(3n+1) {
    clear: left;
  }
}

/* Grid 4up */
@media all and (min-width: 46.8em) {
  /* line 129, scss/objects/_layout.scss */
  .g-4up > .gi {
    float: left;
    width: 50%;
  }
  /* line 133, scss/objects/_layout.scss */
  .g-4up > .gi:nth-of-type(2n+1) {
    clear: both;
  }
}
@media all and (min-width: 50em) {
  /* line 140, scss/objects/_layout.scss */
  .g-4up > .gi {
    width: 25%;
  }
  /* line 143, scss/objects/_layout.scss */
  .g-4up > .gi:nth-of-type(2n+1) {
    clear: none;
  }
  /* line 147, scss/objects/_layout.scss */
  .g-4up > .gi:nth-of-type(4n+1) {
    clear: left;
  }
}

/* Grid Quarter (Always displayed side by side) */
/* line 156, scss/objects/_layout.scss */
.g-quarter > .gi {
  float: left;
  width: 24%;
}
/* line 160, scss/objects/_layout.scss */
.g-quarter > .gi:nth-of-type(4n+1) {
  clear: left;
}

@media all and (min-width: 29.75em) {
  /* line 169, scss/objects/_layout.scss */
  .g-max4 > .gi {
    float: left;
    width: 50%;
  }
  /* line 173, scss/objects/_layout.scss */
  .g-max4 > .gi:nth-of-type(2n+1) {
    clear: both;
  }
}
@media all and (min-width: 39.8em) {
  /* line 180, scss/objects/_layout.scss */
  .g-max4 > .gi {
    width: 33.3333333%;
  }
  /* line 183, scss/objects/_layout.scss */
  .g-max4 > .gi:nth-of-type(2n+1) {
    clear: none;
  }
  /* line 187, scss/objects/_layout.scss */
  .g-max4 > .gi:nth-of-type(3n+1) {
    clear: left;
  }
}
@media all and (min-width: 50em) {
  /* line 194, scss/objects/_layout.scss */
  .g-max4 > .gi {
    width: 25%;
  }
  /* line 197, scss/objects/_layout.scss */
  .g-max4 > .gi:nth-of-type(3n+1) {
    clear: none;
  }
  /* line 201, scss/objects/_layout.scss */
  .g-max4 > .gi:nth-of-type(4n+1) {
    clear: left;
  }
}

/* Grid 5up */
/* line 211, scss/objects/_layout.scss */
.g-max5 > .gi {
  float: left;
  width: 50%;
}
/* line 215, scss/objects/_layout.scss */
.g-max5 > .gi:nth-of-type(2n+1) {
  clear: both;
}
@media all and (min-width: 39.8em) {
  /* line 221, scss/objects/_layout.scss */
  .g-max5 > .gi {
    width: 33.3333333%;
  }
  /* line 224, scss/objects/_layout.scss */
  .g-max5 > .gi:nth-of-type(2n+1) {
    clear: none;
  }
  /* line 228, scss/objects/_layout.scss */
  .g-max5 > .gi:nth-of-type(3n+1) {
    clear: left;
  }
}
@media all and (min-width: 46.8em) {
  /* line 235, scss/objects/_layout.scss */
  .g-max5 > .gi {
    width: 25%;
  }
  /* line 238, scss/objects/_layout.scss */
  .g-max5 > .gi:nth-of-type(3n+1) {
    clear: none;
  }
  /* line 242, scss/objects/_layout.scss */
  .g-max5 > .gi:nth-of-type(4n+1) {
    clear: left;
  }
}
@media all and (min-width: 48em) {
  /* line 249, scss/objects/_layout.scss */
  .g-max5 > .gi {
    width: 20%;
  }
  /* line 252, scss/objects/_layout.scss */
  .g-max5 > .gi:nth-of-type(4n+1) {
    clear: none;
  }
  /* line 256, scss/objects/_layout.scss */
  .g-max5 > .gi:nth-of-type(5n+1) {
    clear: left;
  }
}

/* Grid 2/3 */
@media all and (min-width: 46.8em) {
  /* line 264, scss/objects/_layout.scss */
  .gi-2-3 {
    float: left;
    width: 66.666666%;
  }
}

@media all and (min-width: 46.8em) {
  /* line 271, scss/objects/_layout.scss */
  .gi-1-3 {
    float: left;
    width: 33.333333%;
  }
}

/* Grid 4up block */
/* line 280, scss/objects/_layout.scss */
.g-opposites .gi {
  float: left;
}
/* line 283, scss/objects/_layout.scss */
.g-opposites .gi:last-child {
  float: right;
  text-align: right;
}

/*------------------------------------*\
    $PAGE STRUCTURE
\*------------------------------------*/
/* line 1, scss/objects/_header.scss */
.header {
  padding-top: 25px;
  margin: 0 auto;
  background: #093f39;
  /* Old browsers */
  background: -moz-linear-gradient(top, #093f39 0%, #0c5449 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #093f39), color-stop(100%, #0c5449));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #093f39 0%, #0c5449 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #093f39 0%, #0c5449 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #093f39 0%, #0c5449 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #093f39 0%, #0c5449 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#093f39', endColorstr='#0c5449',GradientType=0 );
  /* IE6-9 */
}

/* line 23, scss/objects/_header.scss */
.logo {
  float: left;
  height: 68px;
}

/* line 33, scss/objects/_header.scss */
.nav {
  margin-top: 0;
}

/* line 37, scss/objects/_header.scss */
/*.nav-toggle {
  float: right;
  display: block;
  padding: 0.9rem 1rem 0.7rem;
  font-size: 1.3rem;
  line-height: 1;
  border-left: 1px solid #dbdbdb;
}
@media all and (min-width: 46.8em) {
   line 37, scss/objects/_header.scss 
  .nav-toggle {
    display: none;
  }
}
@media all and (max-width: 17em) {
  /* line 37, scss/objects/_header.scss 
  .nav-toggle {
    padding-left: 0.2rem;
    padding-right: 0.2rem;
  }
}*/

/* line 55, scss/objects/_header.scss */
/*.search-form {
  overflow: hidden;
  max-height: 0;
}*/
/*@media all and (min-width: 46.8em) {*/
  /* line 55, scss/objects/_header.scss */
  .search-form {
    /*float: right;*/
    max-height: none;
    margin: 1.5em 0;
  }
/*}*/
/*------------------------------------*\
    $HEADER
\*------------------------------------*/
.wsu-logo img.wayne-left {
	width: 52%; }
.wsu-logo img.lib-right {
	width: 48%; }
@media (max-width: 895px) {
	.wsu-logo img.wayne-left, .wsu-logo img.lib-right {
		width: auto; }
}
/*------------------------------------*\
    $NAVIGATION
\*------------------------------------*/
/* line 5, scss/objects/_nav.scss */
.nav {
  clear: both;
  max-height: 0;
}
/* line 9, scss/objects/_nav.scss */
.nav a {
  display: block;
  padding: 1em;
  /*border-top: 1px solid #eeeeee;*/
}
/* line 15, scss/objects/_nav.scss */
.nav.active {
  max-height: 40em;
}
@media all and (min-width: 768px) {
  /* line 5, scss/objects/_nav.scss */
  .nav {
    max-height: none;
    clear: none;
  }
  /* line 23, scss/objects/_nav.scss */
  .nav > li {
    float: left;
  }

  .nav-stacked > li {
    float: none;
  }
  /* line 27, scss/objects/_nav.scss */
  .nav a {
    border: 0;
  }
}

.navbar-default {
  background: transparent;
  border: none;
}

/* line 34, scss/objects/_nav.scss */
.navbar-nav {
  float: left;
}
/* line 37, scss/objects/_nav.scss */
.navbar-nav > li + li {
  margin-left: 0;
  border-left: 1px solid rgba(6, 39, 34, 0.6);
}
/* line 42, scss/objects/_nav.scss */
.navbar-nav > li > a {
  background: #062722;
  color: white;
  font-weight: 500;
  padding: 10px 15px;
  text-transform: uppercase;
}
/* line 50, scss/objects/_nav.scss */
.navbar-nav > .open a, .navbar-nav a:hover {
  background: white;
  color: black;
}

/* line 56, scss/objects/_nav.scss */
.navbar-right {
  float: right;
}
/* line 59, scss/objects/_nav.scss */
.navbar-right a {
  background: transparent;
  color: white;
  font-weight: 500;
  padding: 10px 15px;
}
/* line 66, scss/objects/_nav.scss */
.navbar-right a:hover {
  color: #ffcc33;
}

/* line 71, scss/objects/_nav.scss */
.nav-sidebar {
  background: #f0f0f0;
  border-right: #eeeeee;
  height: 100%;
}
/* line 76, scss/objects/_nav.scss */
.nav-sidebar ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
/* line 81, scss/objects/_nav.scss */
.nav-sidebar ul li {
  background-color: #F0F0F0;
  border-bottom: 1px solid #BDBDBD;
  border-top: 1px solid white;
}
/* line 87, scss/objects/_nav.scss */
.nav-sidebar ul li:last-child {
  -webkit-box-shadow: 0px 2px 10px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 2px 10px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0px 2px 10px 0 rgba(0, 0, 0, 0.1);
}

/* line 97, scss/objects/_nav.scss */
.pagination {
  overflow: hidden;
}
/* line 100, scss/objects/_nav.scss */
.pagination li {
  float: left;
  border-right: 1px solid #eeeeee;
}
/* line 104, scss/objects/_nav.scss */
.pagination li:last-child {
  border: 0;
}
/* line 109, scss/objects/_nav.scss */
.pagination a {
  padding: 1em;
}

/*------------------------------------*\
    $MAIN CONTENT AREA
\*------------------------------------*/
/* line 4, scss/objects/_main.scss */
[role=main] {
  padding: 0.5em 0.5em 2em;
  overflow: hidden;
}

/*------------------------------------*\
    $FOOTER
\*------------------------------------*/
/* line 4, scss/objects/_footer.scss */
footer {
  clear: both;
  overflow: hidden;
  border-top: 6px solid #0c5449;
  background: #062722;
  color: #dddddd;
  padding: 20px 0 10px;
  font-size: 0.75em;
  margin-top: -72px;
  height: 72px;
  clear: both;
}
/* line 18, scss/objects/_footer.scss */
.footer ul.pull-right > li {
  text-align: right;
}
/* line 22, scss/objects/_footer.scss */
.footer ul li {
  display: inline;
  margin: 0 10px;
}
/* line 27, scss/objects/_footer.scss */
.footer a {
  color: #dddddd;
}

.footer a:hover {
  background: transparent;
  color: #fc3;
}

.s-lib-footer {
  font-size: 0.8em;
}

.s-lib-footer a {
  color: #555;
}

/* line 34, scss/objects/_footer.scss */
.social {
  text-align: center;
}

/* line 39, scss/objects/_footer.scss */
.nav-footer {
  margin: -1em -1em 1em;
}
/* line 42, scss/objects/_footer.scss */
.nav-footer li {
  border-bottom: 1px solid #333333;
}
@media all and (min-width: 46.8em) {
  /* line 42, scss/objects/_footer.scss */
  .nav-footer li {
    border: 0;
    float: left;
  }
}
/* line 51, scss/objects/_footer.scss */
.nav-footer a {
  display: block;
  padding: 1em;
}

/*------------------------------------*\
    $TEXT Styles
\*------------------------------------*/
/* line 2, scss/objects/_text.scss */
.intro {
  font-size: 1.0625em;
  font-weight: bold;
}

/* line 8, scss/objects/_text.scss */
.pullquote {
  font-family: "Roboto", "HelveticaNeue", "Helvetica", "Arial", sans-serif;
  font-size: 1.4375em;
}

/* line 14, scss/objects/_text.scss */
.caption {
  font-style: italic;
}

/* line 20, scss/objects/_text.scss */
.text a {
  /*border-bottom: 1px dotted #ECEBE8;*/
  text-decoration: underline;
}
/* line 24, scss/objects/_text.scss */
.text ul {
  list-style: disc;
  margin: 0 0 1em 1.2em;
}
/* line 28, scss/objects/_text.scss */
.text ul ul {
  margin-bottom: 0;
}
/* line 33, scss/objects/_text.scss */
.text ol {
  list-style: decimal;
  margin: 0 0 1em 1.5em;
}
/* line 37, scss/objects/_text.scss */
.text ol ol {
  margin-bottom: 0;
}

/*------------------------------------*\
    $COMPONENTS
\*------------------------------------*/
/* Icon Font */
@font-face {
  font-family: 'icons';
  src: url("../fonts/icons.eot");
  src: url("../fonts/icons.eot?#iefix") format("embedded-opentype"), url("../fonts/icons.woff") format("woff"), url("../fonts/icons.ttf") format("truetype"), url("../fonts/icons.svg#icons") format("svg");
  font-weight: normal;
  font-style: normal;
}

/* Use the following CSS code if you want to use data attributes for inserting your icons */
/* line 15, scss/objects/_icons.scss */
[data-icon]:before {
  font-family: 'icons';
  content: attr(data-icon);
  speak: none;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

/* line 24, scss/objects/_icons.scss */
.icon-twitter:before, .icon-stumbleupon:before, .icon-pinterest:before, .icon-linkedin:before, .icon-google-plus:before, .icon-search:before, .icon-play:before, .icon-menu:before, .icon-arrow-left:before, .icon-arrow-right:before, .icon-bubble:before, .icon-facebook:before, .icon-feed:before, .icon-youtube:before, .icon-tag:before, .icon-tumblr:before, .icon-instagram, .icon-podcast, .icon-apple, .icon-android, .icon-arrow:after, .icon-envelope:before {
  font-family: 'icons';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

/* line 34, scss/objects/_icons.scss */
.icon-twitter:before {
  content: "\74";
}

/* line 37, scss/objects/_icons.scss */
.icon-stumbleupon:before {
  content: "\75";
}

/* line 40, scss/objects/_icons.scss */
.icon-pinterest:before {
  content: "\70";
}

/* line 43, scss/objects/_icons.scss */
.icon-linkedin:before {
  content: "\69";
}

/* line 46, scss/objects/_icons.scss */
.icon-google-plus:before {
  content: "\67";
}

/* line 49, scss/objects/_icons.scss */
.icon-search:before {
  content: "\73";
}

/* line 52, scss/objects/_icons.scss */
.icon-play:before {
  content: "\61";
}

/* line 55, scss/objects/_icons.scss */
.icon-menu:before {
  content: "\21";
}

/* line 58, scss/objects/_icons.scss */
.icon-arrow-left:before {
  content: "\23";
}

/* line 61, scss/objects/_icons.scss */
.icon-arrow-right:before {
  content: "\24";
}

/* line 64, scss/objects/_icons.scss */
.icon-bubble:before {
  content: "\25";
}

/* line 67, scss/objects/_icons.scss */
.icon-facebook:before {
  content: "\66";
}

/* line 70, scss/objects/_icons.scss */
.icon-feed:before {
  content: "\27";
}

/* line 73, scss/objects/_icons.scss */
.icon-youtube:before {
  content: "\79";
}

/* line 76, scss/objects/_icons.scss */
.icon-tag:before {
  content: "\28";
}

/* line 79, scss/objects/_icons.scss */
.icon-tumblr:before {
  content: "\6d";
}

/* line 82, scss/objects/_icons.scss */
.icon-instagram:before {
  content: "\22";
}

/* line 85, scss/objects/_icons.scss */
.icon-podcast:before {
  content: "\26";
}

/* line 88, scss/objects/_icons.scss */
.icon-android:before {
  content: "\29";
}

/* line 91, scss/objects/_icons.scss */
.icon-apple:before {
  content: "\2a";
}

/* line 94, scss/objects/_icons.scss */
.icon-envelope:before {
  content: "\2b";
}

/* line 99, scss/objects/_icons.scss */
.icon-arrow:after {
  content: "\61";
  display: inline-block;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}

/* line 109, scss/objects/_icons.scss */
.icon-play:before {
  font-size: 0.7rem;
  padding-left: 0.2em;
}

/* line 114, scss/objects/_icons.scss */
.icon-play-box {
  display: block;
  margin-left: 2em;
}

/* line 119, scss/objects/_icons.scss */
.icon-play-box:before {
  padding: 0.25em;
  background: #ECEBE8;
  color: white;
  margin-left: -1.7rem;
  margin-right: 0.5em;
}

/* line 6, scss/bootstrap/_breadcrumbs.scss */
.breadcrumb {
  font-size: 0.75em;
  padding: 0 0 8px 0;
  margin: 0 0 0.5em 0;
  list-style: none;
}
/* line 13, scss/bootstrap/_breadcrumbs.scss */
.breadcrumb > li {
  display: inline-block;
}
/* line 16, scss/bootstrap/_breadcrumbs.scss */
.breadcrumb > li a {
  color: #333333;
}
/* line 20, scss/bootstrap/_breadcrumbs.scss */
.breadcrumb > li + li:before {
  content: "/\00a0";
  padding: 0 5px;
  color: #333333;
}
/* line 26, scss/bootstrap/_breadcrumbs.scss */
.breadcrumb > .active {
  color: #dddddd;
}

/*------------------------------------*\
    $BUTTONS
\*------------------------------------*/
/* line 4, scss/objects/_buttons.scss */
.btn {
  display: inline-block;
  background: #DEE6E6;
  color: #000;
  line-height: 1;
  font-weight: bold;
  padding: 1em;
  border: 0;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
}
/* line 17, scss/objects/_buttons.scss */
.btn:hover, .btn:focus {
  background: #ECEBE8;
  color: white;
}
/* line 22, scss/objects/_buttons.scss */
.btn.disabled {
  background: #eeeeee;
  color: #ECEBE8;
}

/* line 28, scss/objects/_buttons.scss */
.btn-small {
  padding: 0.5em;
}

/* line 32, scss/objects/_buttons.scss */
.btn-large {
  padding: 0.5em;
  text-transform: uppercase;
  background: #ECEBE8;
  font-size: 1.4rem;
  font-weight: normal;
}

/* line 41, scss/objects/_buttons.scss */
.text-btn {
  font-style: italic;
}

/* line 10, scss/bootstrap/_buttons.scss */
.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857;
  border-radius: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}
/* line 23, scss/bootstrap/_buttons.scss */
.btn:focus {
  outline: thin dotted #333;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
/* line 28, scss/bootstrap/_buttons.scss */
.btn:hover, .btn:focus {
  color: #333333;
  text-decoration: none;
}
/* line 34, scss/bootstrap/_buttons.scss */
.btn:active, .btn.active {
  outline: 0;
  background-image: none;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
/* line 42, scss/bootstrap/_buttons.scss */
.btn.disabled, .btn[disabled], fieldset[disabled] .btn {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* line 55, scss/bootstrap/_buttons.scss */
.btn-default {
  color: #333333;
  background-color: white;
  border-color: #cccccc;
}
/* line 470, scss/bootstrap/_mixins.scss */
.btn-default:hover, .btn-default:focus, .btn-default:active, .btn-default.active {
  color: #333333;
  background-color: #ebebeb;
  border-color: #adadad;
}
/* line 475, scss/bootstrap/_mixins.scss */
.open .btn-default.dropdown-toggle {
  color: #333333;
  background-color: #ebebeb;
  border-color: #adadad;
}
/* line 481, scss/bootstrap/_mixins.scss */
.btn-default:active, .btn-default.active {
  background-image: none;
}
/* line 484, scss/bootstrap/_mixins.scss */
.open .btn-default.dropdown-toggle {
  background-image: none;
}
/* line 494, scss/bootstrap/_mixins.scss */
.btn-default.disabled, .btn-default.disabled:hover, .btn-default.disabled:focus, .btn-default.disabled:active, .btn-default.disabled.active, .btn-default[disabled], .btn-default[disabled]:hover, .btn-default[disabled]:focus, .btn-default[disabled]:active, .btn-default[disabled].active, fieldset[disabled] .btn-default, fieldset[disabled] .btn-default:hover, fieldset[disabled] .btn-default:focus, fieldset[disabled] .btn-default:active, fieldset[disabled] .btn-default.active {
  background-color: white;
  border-color: #cccccc;
}

/* line 58, scss/bootstrap/_buttons.scss */
.btn-primary {
  color: white;
  background-color: #428bca;
  border-color: #357ebd;
}
/* line 470, scss/bootstrap/_mixins.scss */
.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active {
  color: white;
  background-color: #3276b1;
  border-color: #285e8e;
}
/* line 475, scss/bootstrap/_mixins.scss */
.open .btn-primary.dropdown-toggle {
  color: white;
  background-color: #3276b1;
  border-color: #285e8e;
}
/* line 481, scss/bootstrap/_mixins.scss */
.btn-primary:active, .btn-primary.active {
  background-image: none;
}
/* line 484, scss/bootstrap/_mixins.scss */
.open .btn-primary.dropdown-toggle {
  background-image: none;
}
/* line 494, scss/bootstrap/_mixins.scss */
.btn-primary.disabled, .btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disabled:active, .btn-primary.disabled.active, .btn-primary[disabled], .btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary[disabled]:active, .btn-primary[disabled].active, fieldset[disabled] .btn-primary, fieldset[disabled] .btn-primary:hover, fieldset[disabled] .btn-primary:focus, fieldset[disabled] .btn-primary:active, fieldset[disabled] .btn-primary.active {
  background-color: #428bca;
  border-color: #357ebd;
}

/* line 62, scss/bootstrap/_buttons.scss */
.btn-warning {
  color: white;
  background-color: #f0ad4e;
  border-color: #eea236;
}
/* line 470, scss/bootstrap/_mixins.scss */
.btn-warning:hover, .btn-warning:focus, .btn-warning:active, .btn-warning.active {
  color: white;
  background-color: #ed9c28;
  border-color: #d58512;
}
/* line 475, scss/bootstrap/_mixins.scss */
.open .btn-warning.dropdown-toggle {
  color: white;
  background-color: #ed9c28;
  border-color: #d58512;
}
/* line 481, scss/bootstrap/_mixins.scss */
.btn-warning:active, .btn-warning.active {
  background-image: none;
}
/* line 484, scss/bootstrap/_mixins.scss */
.open .btn-warning.dropdown-toggle {
  background-image: none;
}
/* line 494, scss/bootstrap/_mixins.scss */
.btn-warning.disabled, .btn-warning.disabled:hover, .btn-warning.disabled:focus, .btn-warning.disabled:active, .btn-warning.disabled.active, .btn-warning[disabled], .btn-warning[disabled]:hover, .btn-warning[disabled]:focus, .btn-warning[disabled]:active, .btn-warning[disabled].active, fieldset[disabled] .btn-warning, fieldset[disabled] .btn-warning:hover, fieldset[disabled] .btn-warning:focus, fieldset[disabled] .btn-warning:active, fieldset[disabled] .btn-warning.active {
  background-color: #f0ad4e;
  border-color: #eea236;
}

/* line 66, scss/bootstrap/_buttons.scss */
.btn-danger {
  color: white;
  background-color: #d9534f;
  border-color: #d43f3a;
}
/* line 470, scss/bootstrap/_mixins.scss */
.btn-danger:hover, .btn-danger:focus, .btn-danger:active, .btn-danger.active {
  color: white;
  background-color: #d2322d;
  border-color: #ac2925;
}
/* line 475, scss/bootstrap/_mixins.scss */
.open .btn-danger.dropdown-toggle {
  color: white;
  background-color: #d2322d;
  border-color: #ac2925;
}
/* line 481, scss/bootstrap/_mixins.scss */
.btn-danger:active, .btn-danger.active {
  background-image: none;
}
/* line 484, scss/bootstrap/_mixins.scss */
.open .btn-danger.dropdown-toggle {
  background-image: none;
}
/* line 494, scss/bootstrap/_mixins.scss */
.btn-danger.disabled, .btn-danger.disabled:hover, .btn-danger.disabled:focus, .btn-danger.disabled:active, .btn-danger.disabled.active, .btn-danger[disabled], .btn-danger[disabled]:hover, .btn-danger[disabled]:focus, .btn-danger[disabled]:active, .btn-danger[disabled].active, fieldset[disabled] .btn-danger, fieldset[disabled] .btn-danger:hover, fieldset[disabled] .btn-danger:focus, fieldset[disabled] .btn-danger:active, fieldset[disabled] .btn-danger.active {
  background-color: #d9534f;
  border-color: #d43f3a;
}

/* line 70, scss/bootstrap/_buttons.scss */
.btn-success {
  color: white;
  background-color: #5cb85c;
  border-color: #4cae4c;
}
/* line 470, scss/bootstrap/_mixins.scss */
.btn-success:hover, .btn-success:focus, .btn-success:active, .btn-success.active {
  color: white;
  background-color: #47a447;
  border-color: #398439;
}
/* line 475, scss/bootstrap/_mixins.scss */
.open .btn-success.dropdown-toggle {
  color: white;
  background-color: #47a447;
  border-color: #398439;
}
/* line 481, scss/bootstrap/_mixins.scss */
.btn-success:active, .btn-success.active {
  background-image: none;
}
/* line 484, scss/bootstrap/_mixins.scss */
.open .btn-success.dropdown-toggle {
  background-image: none;
}
/* line 494, scss/bootstrap/_mixins.scss */
.btn-success.disabled, .btn-success.disabled:hover, .btn-success.disabled:focus, .btn-success.disabled:active, .btn-success.disabled.active, .btn-success[disabled], .btn-success[disabled]:hover, .btn-success[disabled]:focus, .btn-success[disabled]:active, .btn-success[disabled].active, fieldset[disabled] .btn-success, fieldset[disabled] .btn-success:hover, fieldset[disabled] .btn-success:focus, fieldset[disabled] .btn-success:active, fieldset[disabled] .btn-success.active {
  background-color: #5cb85c;
  border-color: #4cae4c;
}

/* line 74, scss/bootstrap/_buttons.scss */
.btn-info {
  color: white;
  background-color: #5bc0de;
  border-color: #46b8da;
}
/* line 470, scss/bootstrap/_mixins.scss */
.btn-info:hover, .btn-info:focus, .btn-info:active, .btn-info.active {
  color: white;
  background-color: #39b3d7;
  border-color: #269abc;
}
/* line 475, scss/bootstrap/_mixins.scss */
.open .btn-info.dropdown-toggle {
  color: white;
  background-color: #39b3d7;
  border-color: #269abc;
}
/* line 481, scss/bootstrap/_mixins.scss */
.btn-info:active, .btn-info.active {
  background-image: none;
}
/* line 484, scss/bootstrap/_mixins.scss */
.open .btn-info.dropdown-toggle {
  background-image: none;
}
/* line 494, scss/bootstrap/_mixins.scss */
.btn-info.disabled, .btn-info.disabled:hover, .btn-info.disabled:focus, .btn-info.disabled:active, .btn-info.disabled.active, .btn-info[disabled], .btn-info[disabled]:hover, .btn-info[disabled]:focus, .btn-info[disabled]:active, .btn-info[disabled].active, fieldset[disabled] .btn-info, fieldset[disabled] .btn-info:hover, fieldset[disabled] .btn-info:focus, fieldset[disabled] .btn-info:active, fieldset[disabled] .btn-info.active {
  background-color: #5bc0de;
  border-color: #46b8da;
}

/* line 83, scss/bootstrap/_buttons.scss */
.btn-link {
  color: #428bca;
  font-weight: normal;
  cursor: pointer;
  border-radius: 0;
}
/* line 92, scss/bootstrap/_buttons.scss */
.btn-link, .btn-link:active, .btn-link[disabled], fieldset[disabled] .btn-link {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}
/* line 99, scss/bootstrap/_buttons.scss */
.btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active {
  border-color: transparent;
}
/* line 103, scss/bootstrap/_buttons.scss */
.btn-link:hover, .btn-link:focus {
  color: #2a6496;
  text-decoration: underline;
  background-color: transparent;
}
/* line 111, scss/bootstrap/_buttons.scss */
.btn-link[disabled]:hover, .btn-link[disabled]:focus, fieldset[disabled] .btn-link:hover, fieldset[disabled] .btn-link:focus {
  color: #dddddd;
  text-decoration: none;
}

/* line 122, scss/bootstrap/_buttons.scss */
.btn-lg, .btn-group-lg > .btn {
  padding: 10px 16px;
  font-size: 1.4375em;
  line-height: 1.33;
  border-radius: 6px;
}

/* line 127, scss/bootstrap/_buttons.scss */
.btn-sm, .btn-group-sm > .btn,
.btn-xs,
.btn-group-xs > .btn {
  padding: 5px 10px;
  font-size: 0.75em;
  line-height: 1.5;
  border-radius: 3px;
}

/* line 131, scss/bootstrap/_buttons.scss */
.btn-xs, .btn-group-xs > .btn {
  padding: 1px 5px;
}

/* line 139, scss/bootstrap/_buttons.scss */
.btn-block {
  display: block;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

/* line 147, scss/bootstrap/_buttons.scss */
.btn-block + .btn-block {
  margin-top: 5px;
}

/* line 155, scss/bootstrap/_buttons.scss */
input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%;
}

/* Generic Placeholder Brick: REMOVE FOR PRODUCTION */
/* line 2, scss/objects/_blocks.scss */
.brick {
  background: #dcdddc;
  padding: 2em;
  text-align: center;
  font-weight: bold;
  border-bottom: 1px solid #eeeeee;
}

/* Block */
/* line 11, scss/objects/_blocks.scss */
.block {
  overflow: hidden;
}
/* line 14, scss/objects/_blocks.scss */
.block p:last-child {
  margin-bottom: 0;
}

/* line 19, scss/objects/_blocks.scss */
.headline {
  line-height: 1.2;
}

/* Hero Block */
/* line 24, scss/objects/_blocks.scss */
.block-hero {
  margin-bottom: 0.5em;
}
/* line 28, scss/objects/_blocks.scss */
.block-hero .b-thumb img {
  display: block;
}
@media all and (min-width: 50em) {
  /* line 24, scss/objects/_blocks.scss */
  .block-hero {
    position: relative;
  }
  /* line 36, scss/objects/_blocks.scss */
  .block-hero .b-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 1.5em;
  }
}

/* Block Thumbnail with Headline */
/* line 49, scss/objects/_blocks.scss */
.block-thumb {
  display: table;
  width: 100%;
  border-collapse: collapse;
}
/* line 54, scss/objects/_blocks.scss */
.block-thumb .b-inner {
  display: table-row;
  vertical-align: top;
  overflow: hidden;
}
@media all and (min-width: 29.75em) {
  /* line 60, scss/objects/_blocks.scss */
  .block-thumb .b-thumb {
    display: table-cell;
    vertical-align: top;
    width: 30%;
    max-width: 10em;
  }
  /* line 67, scss/objects/_blocks.scss */
  .block-thumb .b-thumb img {
    display: block;
    width: 100%;
    height: auto;
  }
}
@media all and (min-width: 29.75em) {
  /* line 75, scss/objects/_blocks.scss */
  .block-thumb .b-text {
    display: table-cell;
    width: 70%;
    padding: 0 1em;
  }
}

/* Block Headline Summary */
/* line 87, scss/objects/_blocks.scss */
.block-headline-summary a {
  display: block;
  padding: 0.5em;
}

/* Block Inset */
/* line 94, scss/objects/_blocks.scss */
.block-inset {
  position: relative;
}
/* line 97, scss/objects/_blocks.scss */
.block-inset .b-thumb {
  position: relative;
  z-index: 0;
}
/* line 101, scss/objects/_blocks.scss */
.block-inset .b-thumb img {
  display: block;
}

/* Hero Block */
/* line 108, scss/objects/_blocks.scss */
.block-inset {
  margin-bottom: 0.5em;
  position: relative;
}
/* line 112, scss/objects/_blocks.scss */
.block-inset .headline {
  font-size: 1.1em;
}
/* line 116, scss/objects/_blocks.scss */
.block-inset .b-text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 0.5em;
}

/* Block Thumb with Summary */
/* line 129, scss/objects/_blocks.scss */
.block-thumb-summary .b-thumb {
  float: left;
  width: 50%;
}
/* line 134, scss/objects/_blocks.scss */
.block-thumb-summary .b-text {
  margin-left: 50%;
  padding: 0.5em;
}

/* line 7, scss/bootstrap/_dropdowns.scss */
.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px solid black;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  border-bottom: 0 dotted;
}

/* line 22, scss/bootstrap/_dropdowns.scss */
.dropdown {
  position: relative;
  z-index: 10000;
}

/* line 28, scss/bootstrap/_dropdowns.scss */
.dropdown-toggle:focus {
  outline: 0;
}

/* line 33, scss/bootstrap/_dropdowns.scss */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 0;
  list-style: none;
  font-size: 14px;
  background-color: white;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}
/* line 53, scss/bootstrap/_dropdowns.scss */
.dropdown-menu.pull-right {
  right: 0;
  left: auto;
}
/* line 59, scss/bootstrap/_dropdowns.scss */
.dropdown-menu .divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
/* line 64, scss/bootstrap/_dropdowns.scss */
.dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.42857;
  color: #333333;
  white-space: nowrap;
}

/* line 78, scss/bootstrap/_dropdowns.scss */
.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
  text-decoration: underline;
  color: #262626;
 /* background-color: whitesmoke; */
}

.nav .open>a:focus {
  background: #fff;
  border: none;
}

/* line 89, scss/bootstrap/_dropdowns.scss */
.dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus {
  color: white;
  text-decoration: none;
  outline: 0;
  background-color: #428bca;
}

/* line 104, scss/bootstrap/_dropdowns.scss */
.dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
  color: #dddddd;
}

/* line 111, scss/bootstrap/_dropdowns.scss */
.dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  cursor: not-allowed;
}

/* line 123, scss/bootstrap/_dropdowns.scss */
.open > .dropdown-menu {
  display: block;
}
/* line 128, scss/bootstrap/_dropdowns.scss */
.open > a {
  outline: 0;
}

/* line 134, scss/bootstrap/_dropdowns.scss */
.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 0.75em;
  line-height: 1.42857;
  color: #dddddd;
}

/* line 143, scss/bootstrap/_dropdowns.scss */
.dropdown-backdrop {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 990;
}

/* line 153, scss/bootstrap/_dropdowns.scss */
.pull-right > .dropdown-menu {
  right: 0;
  left: auto;
}

/* line 166, scss/bootstrap/_dropdowns.scss */
.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  border-top: 0 dotted;
  border-bottom: 4px solid black;
  content: "";
}
/* line 174, scss/bootstrap/_dropdowns.scss */
.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 1px;
}

@media (min-width: 48em) {
  /* line 188, scss/bootstrap/_dropdowns.scss */
  .navbar-right .dropdown-menu {
    right: 0;
    left: auto;
  }
}
/* line 2, scss/objects/_lists.scss */
.inline-list li {
  display: inline-block;
}

/* Social List */
/* line 9, scss/objects/_lists.scss */
.social-list li {
  margin: 0 0.4rem 1em 0;
}
/* line 13, scss/objects/_lists.scss */
.social-list a {
  font-size: 1.6em;
}

/* Headline List */
/* line 20, scss/objects/_lists.scss */
.headline-list {
  margin-bottom: 1em;
}
/* line 23, scss/objects/_lists.scss */
.headline-list.flush {
  margin: 0;
}
/* line 27, scss/objects/_lists.scss */
.headline-list h4 {
  font-weight: normal;
}
/* line 31, scss/objects/_lists.scss */
.headline-list li {
  padding: 0.25em 0;
  border-top: 1px solid #dddddd;
}

/* Post List */
/* line 39, scss/objects/_lists.scss */
.post-list li {
  margin-bottom: 1em;
}

/* Bullet List */
/* line 45, scss/objects/_lists.scss */
.bullet-list {
  list-style: square;
  margin: 0 0 1em 1.2em;
  line-height: 1.3;
}
/* line 50, scss/objects/_lists.scss */
.bullet-list li {
  margin-bottom: 1em;
}

/* Text List */
/* line 56, scss/objects/_lists.scss */
.text-list {
  margin: 0 0 1em;
  line-height: 1.3;
}
/* line 60, scss/objects/_lists.scss */
.text-list li {
  margin-bottom: 1em;
}

/* line 1, scss/objects/_tooltip.scss */
.tooltip-container {
  display: inline-block;
  position: relative;
}
/* line 6, scss/objects/_tooltip.scss */
.tooltip-container:hover .tooltip {
  display: block;
}

/* line 12, scss/objects/_tooltip.scss */
.tooltip-link {
  background: #dddddd;
}

/* line 16, scss/objects/_tooltip.scss */
.tooltip {
  display: none;
  position: absolute;
  top: 1.5em;
  left: 0;
  width: 18em;
  padding: 1em;
  background: white;
  border: 1px solid #ECEBE8;
  box-shadow: 0.3em 0.3em 1em 0 rgba(0, 0, 0, 0.2);
}
/* line 27, scss/objects/_tooltip.scss */
.tooltip h2 {
  margin-top: 0;
}
@media all and (min-width: 24em) {
  /* line 16, scss/objects/_tooltip.scss */
  .tooltip {
    width: 22em;
  }
}
@media all and (min-width: 29.75em) {
  /* line 16, scss/objects/_tooltip.scss */
  .tooltip {
    width: 27em;
  }
}
@media all and (min-width: 39.8em) {
  /* line 16, scss/objects/_tooltip.scss */
  .tooltip {
    width: 30em;
  }
}

/* line 1, scss/objects/_accordion.scss */
.accordion {
  margin-bottom: 1em;
}

/* line 5, scss/objects/_accordion.scss */
.acc-handle {
  background: #131313;
  color: white;
  font-family: "Marcellus SC", Georgia, Times, "Times New Roman", serif;
  font-weight: bold;
  display: block;
  position: relative;
  padding: 0.5em;
  border-bottom: 1px solid #dddddd;
}
/* line 15, scss/objects/_accordion.scss */
.acc-handle:after {
  content: "+";
  float: right;
}
/* line 20, scss/objects/_accordion.scss */
.acc-handle:hover {
  color: white;
  background: #333333;
}
/* line 26, scss/objects/_accordion.scss */
.acc-handle.active {
  background: #333333;
}
/* line 29, scss/objects/_accordion.scss */
.acc-handle.active:after {
  content: "-";
}

/* line 1, scss/objects/_map.scss */
#map_canvas {
  width: 100%;
  height: 200px;
  border: 1px solid #d0d0d0;
}

/* line 1, scss/objects/_tabs.scss */
.tabs {
  overflow: hidden;
}
/* line 4, scss/objects/_tabs.scss */
.tabs ul {
  display: table;
  width: 100%;
}
/* line 9, scss/objects/_tabs.scss */
.tabs li {
  display: table-cell;
  text-align: center;
  border-right: 1px solid #dddddd;
}
/* line 14, scss/objects/_tabs.scss */
.tabs li:last-child {
  border-right: 0;
}
/* line 19, scss/objects/_tabs.scss */
.tabs a {
  display: block;
  padding: 0.5em;
  background: #ECEBE8;
}
/* line 24, scss/objects/_tabs.scss */
.tabs a:hover, .tabs a:focus {
  background: #dddddd;
}
/* line 28, scss/objects/_tabs.scss */
.tabs a.active {
  background: #333333;
  color: white;
}

/* line 1, scss/objects/_sections.scss */
.section {
  margin: 0 0 1em;
}

/* line 5, scss/objects/_sections.scss */
.section-title {
  color: black;
  font-weight: 400;
  font-size: 2em;
  margin-bottom: 0.7em;
}

/* line 15, scss/objects/_sections.scss */
hgroup .section-title {
  margin-bottom: 0;
}

/* line 19, scss/objects/_sections.scss */
hgroup h4 {
  margin-bottom: 25px;
}

/* line 23, scss/objects/_sections.scss */
.featured {
  margin: 1em 0;
}

/* line 27, scss/objects/_sections.scss */
.subheading.sidebar {
  border-bottom: 1px solid #e1e5e5;
  padding: 15px 20px;
  margin: 0;
  background: #e9efef;
  font-weight: 700;
  text-transform: uppercase;
}

/* line 36, scss/objects/_sections.scss */
.sidebar ul li a {
  padding: 15px 35px;
  border-bottom: 1px solid #e1e5e5;
  display: block;
  background: #e9efef;
  border-right: 1px solid #e1e5e5;
}

/* line 45, scss/objects/_sections.scss */
.sidebar ul li.active a {
  background: white;
  border-right: none;
}

/* line 50, scss/objects/_sections.scss */
.module {
  background: white;
  border: 1px solid #eee;
  margin: 30px 0;
  overflow: hidden;
}

/* line 57, scss/objects/_sections.scss */
.module h3 {
  background: #dee6e6;
  border-bottom: 1px solid #eee;
  color: #000;
  letter-spacing: 0.02em;
  /*font-weight: 900;*/
  /*text-transform: uppercase;*/
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.25em;
  padding: 15px 20px;
}

/* line 68, scss/objects/_sections.scss */
.module li a {
  display: block;
  text-decoration: none;
  color: #000000;
  background-color: #FFFFFF;
  line-height: 1.4em;
  padding: 8px 25px;
  cursor: pointer;
  border-bottom: 1px dotted #ddd;
}

/* line 79, scss/objects/_sections.scss */
.marketing {
  margin-top: 30px;
}

/* line 83, scss/objects/_sections.scss */
.news {
  background: white;
}

/* line 87, scss/objects/_sections.scss */
/*.container .news {
  margin: 30px 0;
}*/

/* line 3, scss/objects/_article.scss */
.article-header h1 {
  font-size: 2.5em;
}

/* line 8, scss/objects/_article.scss */
.byline {
  font-size: 0.875em;
  font-style: italic;
  margin-bottom: 0.5em;
}

/* line 15, scss/objects/_article.scss */
.social-share {
  overflow: hidden;
  margin-bottom: 1em;
}
/* line 19, scss/objects/_article.scss */
.social-share li {
  float: left;
  margin-right: 0.5em;
}
/* line 24, scss/objects/_article.scss */
.social-share a {
  background: #333333;
  color: white;
  display: block;
  padding: 0.5em;
}
/* line 30, scss/objects/_article.scss */
.social-share a:hover {
  background: #ECEBE8;
}

/* line 2, scss/objects/_comments.scss */
.comments li {
  margin-bottom: 1em;
}

/* line 7, scss/objects/_comments.scss */
.comment-container {
  overflow: hidden;
  margin-bottom: 1em;
  list-style: none;
}

/* line 13, scss/objects/_comments.scss */
.comment-meta {
  float: left;
  width: 6.5em;
}
/* line 17, scss/objects/_comments.scss */
.comment-meta img {
  display: block;
  border: 1px solid #eeeeee;
  margin-bottom: 0.5em;
}

/* line 24, scss/objects/_comments.scss */
.comment-name {
  font-size: 0.75em;
}

/* line 28, scss/objects/_comments.scss */
.comment-text {
  margin-left: 9em;
}

/* line 11, scss/bootstrap/_modals.scss */
.modal-open {
  overflow: hidden;
}

/* line 16, scss/bootstrap/_modals.scss */
.modal {
  display: none;
  overflow: auto;
  overflow-y: scroll;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
}
/* line 28, scss/bootstrap/_modals.scss */
.modal.fade .modal-dialog {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -moz-transition: -moz-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}
/* line 32, scss/bootstrap/_modals.scss */
.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}

/* line 36, scss/bootstrap/_modals.scss */
.modal-dialog {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: auto;
  padding: 10px;
  z-index: 1050;
}

/* line 46, scss/bootstrap/_modals.scss */
.modal-content {
  position: relative;
  background-color: white;
  border: 1px solid #999999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: none;
}

/* line 59, scss/bootstrap/_modals.scss */
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
  background-color: black;
}
/* line 68, scss/bootstrap/_modals.scss */
.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0);
}
/* line 69, scss/bootstrap/_modals.scss */
.modal-backdrop.in {
  opacity: 0.5;
  filter: alpha(opacity=50);
}

/* line 74, scss/bootstrap/_modals.scss */
.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
  min-height: 16.42857px;
}

/* line 80, scss/bootstrap/_modals.scss */
.modal-header .close {
  margin-top: -2px;
}

/* line 85, scss/bootstrap/_modals.scss */
.modal-title {
  margin: 0;
  line-height: 1.42857;
}

/* line 92, scss/bootstrap/_modals.scss */
.modal-body {
  position: relative;
  padding: 20px;
}

/* line 98, scss/bootstrap/_modals.scss */
.modal-footer {
  margin-top: 15px;
  padding: 19px 20px 20px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}
/* line 21, scss/bootstrap/_mixins.scss */
.modal-footer:before, .modal-footer:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}
/* line 25, scss/bootstrap/_mixins.scss */
.modal-footer:after {
  clear: both;
}
/* line 106, scss/bootstrap/_modals.scss */
.modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0;
}
/* line 111, scss/bootstrap/_modals.scss */
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
/* line 115, scss/bootstrap/_modals.scss */
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}

@media screen and (min-width: 48em) {
  /* line 123, scss/bootstrap/_modals.scss */
  .modal-dialog {
    width: 600px;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  /* line 128, scss/bootstrap/_modals.scss */
  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }
}
/* line 7, scss/bootstrap/_tooltip.scss */
.tooltip {
  position: absolute;
  z-index: 1030;
  display: block;
  visibility: visible;
  font-size: 0.75em;
  line-height: 1.4;
  opacity: 0;
  filter: alpha(opacity=0);
}
/* line 16, scss/bootstrap/_tooltip.scss */
.tooltip.in {
  opacity: 0.9;
  filter: alpha(opacity=90);
}
/* line 17, scss/bootstrap/_tooltip.scss */
.tooltip.top {
  margin-top: -3px;
  padding: 5px 0;
}
/* line 18, scss/bootstrap/_tooltip.scss */
.tooltip.right {
  margin-left: 3px;
  padding: 0 5px;
}
/* line 19, scss/bootstrap/_tooltip.scss */
.tooltip.bottom {
  margin-top: 3px;
  padding: 5px 0;
}
/* line 20, scss/bootstrap/_tooltip.scss */
.tooltip.left {
  margin-left: -3px;
  padding: 0 5px;
}

/* line 24, scss/bootstrap/_tooltip.scss */
.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: white;
  text-align: center;
  text-decoration: none;
  background-color: black;
  border-radius: 4px;
}

/* line 35, scss/bootstrap/_tooltip.scss */
.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

/* line 43, scss/bootstrap/_tooltip.scss */
.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: black;
}
/* line 50, scss/bootstrap/_tooltip.scss */
.tooltip.top-left .tooltip-arrow {
  bottom: 0;
  left: 5px;
  border-width: 5px 5px 0;
  border-top-color: black;
}
/* line 56, scss/bootstrap/_tooltip.scss */
.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  right: 5px;
  border-width: 5px 5px 0;
  border-top-color: black;
}
/* line 62, scss/bootstrap/_tooltip.scss */
.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: black;
}
/* line 69, scss/bootstrap/_tooltip.scss */
.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: black;
}
/* line 76, scss/bootstrap/_tooltip.scss */
.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: black;
}
/* line 83, scss/bootstrap/_tooltip.scss */
.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  left: 5px;
  border-width: 0 5px 5px;
  border-bottom-color: black;
}
/* line 89, scss/bootstrap/_tooltip.scss */
.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  right: 5px;
  border-width: 0 5px 5px;
  border-bottom-color: black;
}

/* line 6, scss/bootstrap/_popovers.scss */
.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1010;
  display: none;
  max-width: 276px;
  padding: 1px;
  text-align: left;
  background-color: white;
  background-clip: padding-box;
  border: 1px solid #cccccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  white-space: normal;
}
/* line 26, scss/bootstrap/_popovers.scss */
.popover.top {
  margin-top: -10px;
}
/* line 27, scss/bootstrap/_popovers.scss */
.popover.right {
  margin-left: 10px;
}
/* line 28, scss/bootstrap/_popovers.scss */
.popover.bottom {
  margin-top: 10px;
}
/* line 29, scss/bootstrap/_popovers.scss */
.popover.left {
  margin-left: -10px;
}

/* line 32, scss/bootstrap/_popovers.scss */
.popover-title {
  margin: 0;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: normal;
  line-height: 18px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 5px 5px 0 0;
}

/* line 43, scss/bootstrap/_popovers.scss */
.popover-content {
  padding: 9px 14px;
}

/* line 53, scss/bootstrap/_popovers.scss */
.popover .arrow, .popover .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

/* line 62, scss/bootstrap/_popovers.scss */
.popover .arrow {
  border-width: 11px;
}

/* line 65, scss/bootstrap/_popovers.scss */
.popover .arrow:after {
  border-width: 10px;
  content: "";
}

/* line 71, scss/bootstrap/_popovers.scss */
.popover.top .arrow {
  left: 50%;
  margin-left: -11px;
  border-bottom-width: 0;
  border-top-color: #999999;
  border-top-color: rgba(0, 0, 0, 0.25);
  bottom: -11px;
}
/* line 78, scss/bootstrap/_popovers.scss */
.popover.top .arrow:after {
  content: " ";
  bottom: 1px;
  margin-left: -10px;
  border-bottom-width: 0;
  border-top-color: white;
}
/* line 86, scss/bootstrap/_popovers.scss */
.popover.right .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-left-width: 0;
  border-right-color: #999999;
  border-right-color: rgba(0, 0, 0, 0.25);
}
/* line 93, scss/bootstrap/_popovers.scss */
.popover.right .arrow:after {
  content: " ";
  left: 1px;
  bottom: -10px;
  border-left-width: 0;
  border-right-color: white;
}
/* line 101, scss/bootstrap/_popovers.scss */
.popover.bottom .arrow {
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #999999;
  border-bottom-color: rgba(0, 0, 0, 0.25);
  top: -11px;
}
/* line 108, scss/bootstrap/_popovers.scss */
.popover.bottom .arrow:after {
  content: " ";
  top: 1px;
  margin-left: -10px;
  border-top-width: 0;
  border-bottom-color: white;
}
/* line 117, scss/bootstrap/_popovers.scss */
.popover.left .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #999999;
  border-left-color: rgba(0, 0, 0, 0.25);
}
/* line 124, scss/bootstrap/_popovers.scss */
.popover.left .arrow:after {
  content: " ";
  right: 1px;
  border-right-width: 0;
  border-left-color: white;
  bottom: -10px;
}

/* ADDED */

.lib-info {
  display: inline-block;
  margin-right: 2em;
}

.lib-info:last-child {
  margin-right: 0;
}

#rssicon {
  display: none;
}

.feedbase li {
  padding: 0.7em 0;
}

#feedmenu {
  font-size: 0.875em;
}

.feedtitle {
  background: #dee6e6;
}

.feedbase {
  background: white;
}

.feedtitle > a {
  font-size: 1.4em;
  font-family: 'Roboto Condensed', sans-serif;
  padding: 0 8px;
}

.news .more, .newfeed .more {
  text-align: right;
}

.highlights img {
  margin-bottom: 10px;
}

.highlights a:hover {
  background: transparent;
}

li.resource {
  display: block;
  padding: .5em 0;
  margin-bottom: .2em;
}

li.resource .description {
  display: block;
  font-size: 0.8em;
  padding: .5em 0;
}

.best-bet input, .best-bet label {
  display: inline-block;
}

.social a i {
  font-size: 1.5em;
  margin: 5px;
  padding: 5px;
  color: #066;
}

.social a:hover {
  background: transparent;
  text-decoration: none;
}

.social a i:hover {
  color: #fc3;
  text-decoration: none;
}

.highlight {
  background: #ffdf80;
}
.icon-chat {
  font-size:1em;
  float:left;
  margin-right:0.3em;
}


.chat-btn a {
  padding: 0;
  text-decoration: none;
}

.chat-btn-icon {
      padding: 10px;
    }

.chat-btn img {
  border-radius: 4px;
  margin-top: 5px;
  margin-left: 10px;
}


.news-headline {
  height: 8em;
  overflow: hidden;
}
      
.news-headline p a {
  border-bottom: none;
}
.news-headline p a:hover {
  background: transparent;
  color: #0c5449;
}

.col-md-3 .sm-module {
  overflow: hidden;
}

.sm-module {
  background: none repeat scroll 0 0 white;
  /*border: 1px solid #ddd;*/
  height: 140px;
}

.sm-module + .sm-module {
  border-left: 1px dotted #ddd;
}

.sm-module .askalib, .sm-module .news-headline {
  margin: 20px 10px;
}


.module {
  height: 329px;
}

.module.short {
  height: auto;
}
.module .item {
  /*text-align: center;*/
  padding: 8px 25px;
  border-bottom: 1px dotted #ddd;
}

.module .item:last-child {
  border-bottom: none;
}

.module li:last-child a {
  border-bottom: none;
  }

.container .col-md-4.no-padding:first-child {
  padding-left: 0;
}
.col-md-4.no-padding + .col-md-4.no-padding {
  padding: 0 1em;
}
.container .col-md-4.no-padding:last-child {
  padding-right: 0;
}

.home-suggestions {
  padding: 1em;
}
.home-suggestions label {
  font-weight: normal;
  font-size: 14px;
  padding-bottom: 0;
}
.home-suggestions input {
  font-size: 14px;
}

@media (min-width: 56em) and (max-width: 73em) {
  .highlight {
  font-size: 0.85em;
  }
  .icon-chat {
    font-size: 1.5em;
    display: none;
  }
  .module {
    height: 268px;
  }
  .module h3 {
    font-size: 1em;
  }
  .module li a {
    font-size: 14px;
    padding: 5px 20px;
  }
  .deets {
    font-size: 14px;
  }
  img.img-responsive {
    height: 268px;
    margin: 0 auto;
  }

}

/* Amazon Style Search Bar */

#nav-search-label {
    color: #333333;
    display: block;
    left: 140px;
    line-height: 12px;
    position: absolute;
    top: 16px;
}
#nav-search-in {
    display: inline-block;
    height: 44px;
    /*left: 202px;*/
    width: 125px;
    background: white;
    overflow: hidden;
    position: absolute;
    /*top: 6px;*/
    padding: 0 3px;
    border-bottom-left-radius: 4px;
    border-top-left-radius: 4px;
    border-right: 1px solid #ddd;
    background-image: -webkit-gradient(
  linear,
  left top,
  left bottom,
  color-stop(0, #FFFFFF),
  color-stop(1, #F1EFE5)
);
background-image: -o-linear-gradient(bottom, #FFFFFF 0%, #F1EFE5 100%);
background-image: -moz-linear-gradient(bottom, #FFFFFF 0%, #F1EFE5 100%);
background-image: -webkit-linear-gradient(bottom, #FFFFFF 0%, #F1EFE5 100%);
background-image: -ms-linear-gradient(bottom, #FFFFFF 0%, #F1EFE5 100%);
background-image: linear-gradient(to bottom, #FFFFFF 0%, #F1EFE5 100%);
}
#nav-search-in #nav-search-in-content {
    color: #777777;
    display: inline-block;
    
    height: 44px;
    line-height: 44px;
    margin: 0 15px 0 6px;
    text-indent: 1px;
    text-overflow: ellipsis;
    white-space: nowrap;
}
#nav-search-in.nav-facade-active .nav-down-arrow {
    display:inline-block;
    right: 10px;
    top: 11px;
  height:5px;
  width:9px;
}
.nav-facade-active #searchDropdownBox {
    cursor: pointer;
    height: 44px;
    left: 0;
    opacity: 0;
    top: 0;
    visibility: visible;
    width: auto;
}
#searchDropdownBox {
    background: none repeat scroll 0 0 white;
    border: 1px solid #DDDDDD;
    color: black;
    left: 5px;
    margin: 0;
    outline: medium none;
    padding: 0;
    position: absolute;
    top: 3px;
    visibility: hidden;
    /*width: 190px;*/
}

.caret-dropdown {
  position: absolute;
  top: 14px;
  right: 7px;
  color: #777;
}

.login-options {
  background: #ecebe8;
  border-bottom: 1px solid #eee;
  display: none;
}

.login-options .container {
  padding: 1em;
}

#wsulinks label {
  display: inline-block;
  margin-right: 1em;
}

#wsulinks input {
  width: 200px;
  height: 32px;
}

#wsulinks input[type=radio] {
  width: auto;
  margin-top: -2px;
  display: inline-block;
}

#secondarylinks, #wsulinks .options, #wsulinks .inputs {
  display: table;
  margin: 0 auto;
}

#secondarylinks a {
  border-bottom: 1px dotted #aaa;
  color: #888;
  font-size: 0.9em;
}
.login-nav li {
  display: inline-block;
  margin: 0 1em; 
}

.inputs .access-id, .inputs .password, .inputs .submit-btn {
  display: inline-block;
  margin: 0 1em 1em;
}

#wsulinks .inputs .access-id label, #wsulinks .inputs .password label {
  display: block;
  padding-bottom: 0;
}

.inputs .submit-btn {
  margin-top: 24px;
}

body {
  font-size: 16px;

}
.nav>li>a:hover,.nav>li>a:focus {
  background: none;
}
.navbar-nav>li>a:hover,.navbar-nav>li>a:focus {
  background: #fff;
  color: black;
}
.navbar-nav>li>a {
  line-height: inherit;
}

.s-lib-side-borders .navbar-nav > li > a {
  background: transparent;
}

.s-lib-side-borders .navbar-nav > li + li {
  border: none;
}

.module>ul>li>a:hover, 
.short>ol>li>a:hover {
    background: none repeat scroll 0 0 #f1f5f5;
    text-decoration: underline;
      }

  .s-lib-header {
    padding: 1em;
  }

  #s-lib-bc .breadcrumb {
    font-size: 0.9em;
  }

  .s-lib-box {
    box-shadow: none;
  }
#s-lg-tabs-container .nav-tabs > li > a, 
#s-lg-tabs-container .nav-pills > li > a,
#s-lg-tabs-container .nav-tabs > li > a:hover,
#s-lg-tabs-container .nav-pills > li > a:hover {
  background: #E9EFEF;
  color: black;
  border-radius: 0;
}

#s-lg-guide-name {
  font-size: 1.5em;
  line-height: 1.8em;
}

.featured-item div a img {
  /*position: absolute;*/
  height: auto;
  display: block;
  margin: 0 auto;
  /*background: #f2f2f2;*/
  padding: 10px;
}

.wp-caption-text {
  position: relative;
  bottom: 0;
  padding: 0 15px 15px 15px;
  /*background: transparent;*/
  display: block;
  border-bottom: 1px solid #eee;
  margin-bottom: 0;
}

.digital-commons, .computers {
  font-size: 0.9em;
}

.deets {
  font-size: 14px;
}
footer ul {
  font-size: 0.9em;
}

.feedback, .urgent {
  background:rgba(255, 204, 51, 0.7);
  padding:5px;
  text-align: center;
  font-weight: bold;
}

@media (max-width: 895px) {
  .quicklinks, .hours {
    width: 50%;
    float: left;
  }
  .feedback, .urgent {
    font-size:0.9em;
  }

  .marketing {
    padding-right: 0;
    padding-left: 0;
    float: left;
    bottom: 25px;
  }
  .marketing img {
    width: 720px;
    height: auto;
  }
  .news-module, .askalib-module {
    width: 50%;
    display: inline-block;
    float: left;
  }
  footer {
    height: 72px;
  }
  .footer ul li {
    margin: 0 5px;
  }
  footer .col-md-5 {
    width: 41%;
    display: inline-block;
    font-size: 11px;
  }
  footer .col-md-2 {
    width: 17%;
    display: inline-block;
    padding: 0;
  }
  .sm-module + .sm-module {
    border-left: none;
  }
  .sm-module {
    border-top: 1px dotted #ddd;
  }
  .sm-module:nth-child(even) {
    border-left: 1px dotted #ddd;
  }
  .no-padding {
    padding: 0;
  }
  .col-md-4.no-padding + .col-md-4.no-padding {
    padding: 0;
  }
  .wsu-logo {
    text-align: center;
  }
  .logo {
    float: none;
  }
  .nav > li.chat-btn {
    display: none;
  }  
  .pull-right{
  	/*display:none;*/ 
    float:none !important;
    border-left:0px !important;
    border-bottom:2px solid #eeeeee;    
  }		
}

@media (max-width: 767px) {
  .nav {
    max-height: none;
  }
  .nav>li.home-nav, ul.navbar-right {
    display: none;
  }
  .navbar-nav {
    float: none;
    display: block;
    margin-bottom: 0;
  }
  .navbar-nav .open .dropdown-menu {
    padding: 0;
  }
  .hidden-xs {
    display: none !important;
  }
  .news-module, .askalib-module {
    width: 100%;
    display: block;
    clear: both;
  }
  footer {
    height: 118px;
  }
  .footer ul li {
    margin: 0 5px;
  }
  footer .col-md-5 {
    width: 100%;
    display: inline-block;
    font-size: 11px;
    text-align: center !important;
  }
  footer .col-md-5 .pull-right {
    float: none !important;
    margin: 10px 0;
  }
  footer .col-md-2 {
    width: 100%;
    display: inline-block;
    padding: 0;
  }
}
@media (max-width: 680px) {
  .quicklinks, .hours {
    width: 100%;
    clear: both;
    padding: 0;
  }
  .quicklinks .module {
    margin-bottom: 0;
  }
}

/*@media (min-width: 748px) and (max-width: 768px) {
  .nav {
    margin-bottom: 0;
    max-height: 44px;
  }
}*/

.search-form fieldset input:focus {   
border: none;
box-shadow: none;
outline: none;}

.main a {
    text-decoration: underline;
}

.feedback a {
 text-decoration: underline;
}
