/* -------------------------------------------------------------------------

 Style Guide Boilerplate Bootstrap Edition v2.0.1
 Repo: https://github.com/kemie/Style-Guide-Boilerplate-Bootstrap-Edition
 Author: Brett Jankord (modified by Kemie Guaida)
 License: MIT

---------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------
 Layout
---------------------------------------------------------------------------- */
body {
  /*margin: 0;*/
  padding-top: 50px;
}
.sg-body .row {
  margin-left: 0;
  margin-right: 0;
}
.container {
  width: 100% !important;
 }
a.btn:visited {
  color: #fff !important;
 }
/* -----------------------------f--------------------------------------------
 Utility Classes
---------------------------------------------------------------------------- */
.sg-container {
  overflow: hidden;
  padding: 16px 24px;
  /* For older browsers */
  padding: 1rem 1.5rem;
}
.sg-animated {
  -webkit-transition: all 0.6s ease-out;
  -moz-transition: all 0.6s ease-out;
  -ms-transition: all 0.6s ease-out;
  -o-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
}
/* -------------------------------------------------------------------------
 Modules
---------------------------------------------------------------------------- */
/* Headings
---------------------------------------------------------------------------- */
.sg-h1,
.sg-h2,
.sg-h3 {
  border-bottom: 1px solid #ddd;
  font-weight: normal;
  margin-bottom: 1em;
  margin-top: 0;
}
.sg-h1 {
  padding-bottom: .2em;
  margin-top: 3em;
  margin-bottom: 1.25em;
  border-bottom-width: 3px;
  font-size: 28px;
  text-transform: capitalize;
  font-family: "Praxis Bold";
}
.sg-h2 {
  margin-bottom: .5em;
  padding-bottom: .5em;
  text-transform: capitalize;
  margin-top: 50px;
  border-bottom-width: 2px;
  font-size: 22px;
  font-family: "Praxis Bold";
  color: #D8232A;
}
.base-sg-h2 {
  margin-bottom: .5em;
  padding-bottom: .5em;
  text-transform: capitalize;
  border-bottom-width: 2px;
  font-size: 22px;
  font-family: "Praxis Bold";
  color: #D8232A;
  border-bottom: 1px solid #ddd;
}
.sg-h3 {
  padding-top: 25px;
  margin-bottom: 10px;
  border-color: #eee;
  font-size: 18px;
  font-family: "Praxis Regular";
}
.sg-about {
  margin-top: 2em;
}
.row > .page-header {
  /*padding-top: 2em;*/
  margin:0;
  padding-left: 15px;
  border-bottom: 1px solid #999999;
}
/* Pattern Styles
---------------------------------------------------------------------------- */
.sg-pattern-styles .page-header {
  margin: 0;
  padding-left: 15px;
  border-bottom: 1px solid #999999;
}
/* Buttons
---------------------------------------------------------------------------- */
.sg-btn {
  float: left;
  background-color: #009ed0!important;
  border-color: #009ed0!important;
  font-family: "Praxis Regular";
  text-shadow: none!important;
  border-radius: 0!important;
}
.sg-btn:hover {
  text-decoration: underline!important;
  /*background-color: #006889!important;
  border-color: #006889 !important;*/
}
.btn {
  font-family: "Praxis Regular";
  text-shadow: none!important;
  border-radius: 0!important;
  margin-right: 20px;
}
.sg-btn--top {
  float: right;
}
ul.scroll-menu {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -moz-overflow-scrolling: touch;
  -ms-overflow-scrolling: touch;
  -o-overflow-scrolling: touch;
  overflow-scrolling: touch;
  width: 100%;
  max-height: 500px;
}
.dropdown-header {
  text-transform: uppercase;
  font-family: "Praxis Bold";
  color: #4c4c4d;
}
.sg-btn--select {
  border-radius: 0 0.3em;
  position: absolute;
  right: 5px;
  top: 14px;
}
.sg-btn--select.is-active:hover:after {
  background: #111;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 5px;
  top: 45px;
  color: #fff;
  content: "Selected code ready to be copied";
  font-size: .8em;
  display: block;
  right: 5px;
  padding: 5px 15px;
  position: absolute;
  white-space: nowrap;
  z-index: 98;
}
.sg-btn--select.is-active:hover:before {
  border: solid;
  border-color: #111 transparent;
  border-width: 0 6px 6px 6px;
  top: 40px;
  content: "";
  display: block;
  left: 75%;
  position: absolute;
  z-index: 99;
}
/* Hide specific buttons for use with JS */
.sg-btn--source {
  clear: both;
}
.sg-btn--source,
.sg-btn--select {
  display: none;
}
/* Show specific buttons if JS enabled */
.js .sg-btn--source,
.js .sg-btn--select {
  display: block;
}
/* Hide specific buttons conditionally */
.operamini .sg-btn--source,
.legacy .sg-btn--source {
  display: none;
}
/* Sections
---------------------------------------------------------------------------- */
.sg-section {
  margin-bottom: 20px;
  /* For older browsers */
  /*margin-bottom: 3rem;*/
  overflow: hidden; 
}
.sg-display {
  padding-left:15px;
}
.sg-anchor {
  display: block;
  padding-top: 3em;
  color: #D8232A;
}
/* Colors
---------------------------------------------------------------------------- */
.sg-color {
  background: #fff;
  border: 1px solid #b3b3b3;
  display: inline-block;
  height: 80px;
  margin: 0 .5em .5em 0;
  padding: 5px;
  position: relative;
  width: 100px;
}
.sg-lg {
  width: 140px;
  height: 100px;
}
.sg-color-swatch {
  display: block;
  height: 100%;
  width: 100%;
}
.sg-color-swatch span {
  background: #000;
  background: rgba(0, 0, 0, 0.7);
  bottom: 5px;
  color: #fff;
  font-size: .8em;
  margin: 0;
  opacity: 0;
  padding: 5px 0;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  width: 88px;
}
.sg-lg .sg-color-swatch span {
  width: 128px;
}
.sg-color-swatch:hover span {
  opacity: 1;
}
/* -------------------------------------------------------------------------
 Colors
---------------------------------------------------------------------------- */
.sg-brand-red .sg-color-swatch {
  background: #D8232A;
}
.sg-brand-black .sg-color-swatch {
  background: #000000;
}
.sg-brand-white .sg-color-swatch {
  background: #FFFFFF;
}

.sg-sub-gray1 .sg-color-swatch {
  background: #E6E6E6;
}
.sg-sub-gray2 .sg-color-swatch {
  background: #CCCCCC;
}
.sg-sub-gray3 .sg-color-swatch {
  background: #999999;
}
.sg-sub-gray4 .sg-color-swatch {
  background: #666666;
}
.sg-sub-gray5 .sg-color-swatch {
  background: #333333;
}

.sg-assort-red1 .sg-color-swatch {
  background: #9E3853;
}
.sg-assort-red2 .sg-color-swatch {
  background: #ED5C7E;
}
.sg-assort-red3 .sg-color-swatch {
  background: #F187A8;
}
.sg-assort-red4 .sg-color-swatch {
  background: #F7C1D0;
}

.sg-assort-iris1 .sg-color-swatch {
  background: #3E4D77;
}
.sg-assort-iris2 .sg-color-swatch {
  background: #6178B3;
}
.sg-assort-iris3 .sg-color-swatch {
  background: #899FCC;
}
.sg-assort-iris4 .sg-color-swatch {
  background: #B8C7E2;
}

.sg-assort-sky1 .sg-color-swatch {
  background: #00739B;
}
.sg-assort-sky2 .sg-color-swatch {
  background: #00A8E2;
}
.sg-assort-sky3 .sg-color-swatch {
  background: #52BDEA;
}
.sg-assort-sky4 .sg-color-swatch {
  background: #ACD7F1;
}

.sg-assort-yellow1 .sg-color-swatch {
  background: #A47427;
}
.sg-assort-yellow2 .sg-color-swatch {
  background: #FAAF42;
}
.sg-assort-yellow3 .sg-color-swatch {
  background: #FDC36C;
}
.sg-assort-yellow4 .sg-color-swatch {
  background: #FEDAAE;
}

.sg-assort-orange1 .sg-color-swatch {
  background: #9F4817;
}
.sg-assort-orange2 .sg-color-swatch {
  background: #F06F2F;
}
.sg-assort-orange3 .sg-color-swatch {
  background: #F79E62;
}
.sg-assort-orange4 .sg-color-swatch {
  background: #FBC7A6;
}

.sg-assort-forest1 .sg-color-swatch {
  background: #1A7A3D;
}
.sg-assort-forest2 .sg-color-swatch {
  background: #36B25D;
}
.sg-assort-forest3 .sg-color-swatch {
  background: #6CBF7D;
}
.sg-assort-forest4 .sg-color-swatch {
  background: #B5DBB9;
}

.sg-assort-spring1 .sg-color-swatch {
  background: #6B892A;
}
.sg-assort-spring2 .sg-color-swatch {
  background: #A7CD45;
}
.sg-assort-spring3 .sg-color-swatch {
  background: #BAD67B;
}
.sg-assort-spring4 .sg-color-swatch {
  background: #DCE9BA;
}

.sg-assort-peacock1 .sg-color-swatch {
  background: #007875;
}
.sg-assort-peacock2 .sg-color-swatch {
  background: #00B1AC;
}
.sg-assort-peacock3 .sg-color-swatch {
  background: #5EC4BD;
}
.sg-assort-peacock4 .sg-color-swatch {
  background: #B1DEDB;
}
/* Fonts
---------------------------------------------------------------------------- */
.sg-font {
  font-size: 22px;
  padding: 15px 0;
}
.sg-font-primary {
  font-family: "Praxis Bold", Arial, sans-serif;
}
.sg-font-secondary {
  font-family: "Praxis Regular", Arial, sans-serif;
}

@font-face {
  font-family: "Praxis Bold";
  src: url(../../bsa.sharepoint/fonts/Praxis/Praxis-Com-Bold.ttf), url(../../bsa.sharepoint/fonts/Praxis/Praxis-Com-Bold.eot), url(../../bsa.sharepoint/fonts/Praxis/Praxis-Com-Bold.woff), url(../../bsa.sharepoint/fonts/Praxis/Praxis-Com-Bold.woff2);
}
@font-face {
  font-family: "Praxis Regular";
  src: url(../../bsa.sharepoint/fonts/Praxis/Praxis-Com-Regular.ttf), url(../../bsa.sharepoint/fonts/Praxis/Praxis-Com-Regular.eot), url(../../bsa.sharepoint/fonts/Praxis/Praxis-Com-Regular.woff), url(../../bsa.sharepoint/fonts/Praxis/Praxis-Com-Regular.woff2);
}
/* Grid
---------------------------------------------------------------------------- */
.show-grid {
  padding: .5em 0;
}
.show-grid div {
  background-color: #999999;
  border: 1px solid #808080;
  padding: 0.5em;
}
/* Markup
---------------------------------------------------------------------------- */
.sg-markup-controls {
  overflow: hidden;
  padding-top: 1.5em;
  clear: both;
}
.sg-source {
  position: relative;
}
.sg-source pre {
  background: #333;
  border-radius: .5em;
  border: 1px solid #ddd;
  color: #fff;
  overflow-x: scroll;
  padding: .5em .3em;
}
.sg-source pre code {
  background: transparent;
}
.js .sg-source {
  max-height: 0;
  overflow: hidden;
}
.js .sg-source.is-active,
.operamini .sg-source,
.legacy .sg-source {
  max-height: 2400px;
}


/* Accordions
---------------------------------------------------------------------------- */
.accordion1 {
  background-color: #fff;
  padding: 5px 10px 0;
}
.accordion2 {
  background-color: #fff;
  padding: 5px 10px 0;
}
.accordion1 a,
.accordion2 a {
  color: #4c4c4d;
}
.accordion1 a:hover,
.accordion2 a:hover {
  color: #D8232A;
}
.accordion1 .news-thumbnail {
  height: 40px;
  width: 34px;
  margin-right: 10px;
  float: left;
}
.accordion1 .panel-heading a {
  font-family: "Praxis Bold" !important;
  text-decoration: none !important;
  color: #4d4d4c;
  height: 35px;
}
.accordion1 .panel-body {
  font-size: 14px;
  font-family: "Praxis Regular";
  line-height: 18px;
  padding-top: 0;
  color: #4d4d4c;
}
.accordion1 .panel-heading a:hover {
  color: #D8232A;
}
.accordion1 .panel .panel-heading {
      background-color: #fff!important;
      border-top: 0;
      padding-top: 5px;
      padding-bottom: 20px;
      height: 50px;
      background-image: none;
}
.accordion2 .panel-body {
  font-size: 14px;
  font-family: "Praxis Regular";
  line-height: 18px;
  color: #4d4d4c;
}
.accordion2 .panel a .panel-heading {
  background-color: #d8232a;
  color:#fff;
    border-radius: 0;
  outline: none;
}
.accordion2 .panel a {
  text-decoration: none;
}
.accordion2 .panel a .panel-heading:hover {
  color:#fff;
  text-decoration: none;
}
.accordion2 .panel a.collapsed .panel-heading {
  background-color: #efefef;
  color: #4c4c4d;
}
.accordion2 .panel a.collapsed .panel-heading:hover {
  color: #d8232a;
  text-decoration: underline;
}
.accordion2 .panel-group .panel {
  border: 0;
  border-radius: 0;
  padding: 5px 10px;
  box-shadow: none;
}
.accordion1 .panel-group .panel {
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid #eeeeee;
  box-shadow: none;
}
.accordion1 .panel-group .panel:last-of-type {
  border: 0;
}
.accordion1 .panel-default > .panel-heading + .panel-collapse > .panel-body,
.accordion2 .panel-default > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #fff;
}

/* Lists
---------------------------------------------------------------------------- */
.list-ul,
.list-ol {
  text-indent: 20px;
  padding-top: 15px;
}
.list-inline {
  padding-top: 15px;
}
.list-ul li{
  margin-bottom: 10px;
}
.list-ul li a{
  color: #4d4d4c;
  line-height: 18px;
  font-family: "Praxis Bold";
}
.list-ul li a:hover{
  color:#D8232A;
}

.list-ol {
  list-style-type: decimal;
  list-style-position: inside;
  font-family: "Praxis Regular";
}
.list-ol li {
  margin-bottom: 5px;
}

.list-inline {
  font-family: "Praxis Regular";
}
/* Blurb
---------------------------------------------------------------------------- */
.blurb {
  background-color: #fff;
  padding: 15px !important;
}
.blurb-story {
  padding: 10px;
}
.blurb-story h3 {
  margin-bottom: 15px;
}
.blurb-img {
  width: 215px;
  height: 140px;
  padding-bottom: 20px;
}
.blurb-story p {
  width: 90%;
}
/* Breadcrumbs
---------------------------------------------------------------------------- */
.breadcrumb {
  border-radius: 0!important;
  background-color: #fff !important; 
}


.breadcrumb ol li a {
  color: #4c4c4d;
}

.breadcrumb ol li a:hover {
  color: #D8232A;
}
    
.breadcrumb ol li a.selected {
  color: #D8232A;
}   

.breadcrumb ol li + li:before {
  content: "> ";
  padding: 0 5px;
  color: #4c4c4d;
}
/* Dropdown
---------------------------------------------------------------------------- */
.sg-dd .dropdown-menu li  a {
  outline: none;
}
/* links
---------------------------------------------------------------------------- */
.link {
  font-family: "Praxis Regular";
  margin-left: 20px;
}
.link-title {
  margin-bottom: 5px;
}
/* Tabs
---------------------------------------------------------------------------- */
.tabs {
  width: 50%;
  background-color: #fff;
  padding 25px;
}
.tabs ul.nav-tabs {
  background-color: #fff;
  border-bottom: 0px;
}

.tabs ul li {
  font-family: "Praxis Bold";
  font-size: 14px;
  color: #4d4d4c;
  margin-bottom: -2px;
}
.tabs ul li a {
  color: #4d4d4c;
  padding: 20px 15px;
}
.tabs ul li a:hover {
  color:#d8232a !important;
  background-color:#fff!important;
  border-color: #fff;

}

.tabs ul li.active > a {
  border:0px !important;
  border-radius: 0px;
  background-color: #d8232a !important;
  color: #fff !important;
}
.tabs ul li:hover {
  margin-top: 0px;
}
.tabs .tab-content .tab-pane p{
  padding: 15px;
}
  
  
/* -------------------------------------------------------------------------
 Prettyprint
---------------------------------------------------------------------------- */
.pln {
  color: #ffffff;
}
/* plain text */
@media screen {
  .str,
  .string {
    color: #E6DB74;
  }
  /* string content */
  .kwd,
  .keyword {
    color: #66D9EF;
  }
  /* a keyword */
  .com,
  .comment {
    color: #75715E;
  }
  /* a comment */
  .typ {
    color: #A6E22E;
  }
  /* a type name */
  .lit,
  .number {
    color: #AE81FF;
  }
  /* a literal value */
  /* punctuation, lisp open bracket, lisp close bracket */
  /* .pun, .opn, .clo { color: #660 } */
  .tag {
    color: #F92672;
  }
  /* a markup tag name */
  .atn {
    color: #A6E22E;
  }
  /* a markup attribute name */
  .atv {
    color: #E6DB74;
  }
  /* a markup attribute value */
  /*.dec, .var { color: #606 }*/
  /* a declaration; a variable name */
  .fun {
    color: #FF0000;
  }
  /* a function name */
}
/* Use higher contrast and text-weight for printable form. */
@media print, projection {
  .str {
    color: #006600;
  }
  .kwd {
    color: #006;
    font-weight: bold;
  }
  .com {
    color: #600;
    font-style: italic;
  }
  .typ {
    color: #404;
    font-weight: bold;
  }
  .lit {
    color: #004444;
  }
  .pun,
  .opn,
  .clo {
    color: #444400;
  }
  .tag {
    color: #006;
    font-weight: bold;
  }
  .atn {
    color: #440044;
  }
  .atv {
    color: #006600;
  }
}
/* Specify class=linenums on a pre to get line numbering */
ol.linenums {
  border-left: 1px solid #444;
  margin: 0 0 0 3.3em;
  /* IE indents via margin-left */
  padding: 0;
}
ol.linenums li {
  color: #bebec5;
  line-height: 1.5;
  padding-left: .8em;
}
/* -------------------------------------------------------------------------
 Legacy IE
---------------------------------------------------------------------------- */
/**
 * IE 7 Fixes
 */
.sg-color {
  *display: inline;
  zoom: 1;
}
/* End IE 7 Fixes */
/**
 * IE 6 Fixes
 */
pre {
  _white-space: pre;
  _white-space: pre-wrap;
  _word-wrap: break-word;
}
/* End IE 6 Fixes */
