@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  animation-name: zoomIn;
}

@keyframes fadeIn {
  0% {opacity: 0;}
  100% {opacity: 1;}
}

.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

.fadeInRight {
  animation-name: fadeInRight;
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

.fadeInLeft {
  animation-name: fadeInLeft;
}

@keyframes zoomInRight {
  0% {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInRight {
  animation-name: zoomInRight;
}

@keyframes flip {
  0% {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }

  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }

  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in;
  }

  80% {
    transform: perspective(400px) scale3d(.95, .95, .95);
    animation-timing-function: ease-in;
  }

  100% {
    transform: perspective(400px);
    animation-timing-function: ease-in;
  }
}

.animated.flip {
  backface-visibility: visible;
  animation-name: flip;
}

@keyframes flipInY {
  0% {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transition-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transition-timing-function: ease-in;
  }

  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  100% {
    transform: perspective(400px);
  }
}

.flipInY {
  backface-visibility: visible !important;
  animation-name: flipInY;
}

/* REM fix */
html {
  font-size: 14px;
}
/*************************************************
 * Libraries: Bootstrap
 ************************************************/
/*! normalize.css v3.0.1 | MIT License | git.io/normalize */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],
template {
  display: none;
}
a {
  background: transparent;
}
a:active,
a:hover {
  outline: 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
mark {
  background: #ff0;
  color: #000;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 1em 40px;
}
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}
pre {
  overflow: auto;
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}
button {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
input {
  line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
}
optgroup {
  font-weight: bold;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
@media print {
  * {
    text-shadow: none !important;
    color: #000 !important;
    background: transparent !important;
    box-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  select {
    background: #fff !important;
  }
  .navbar {
    display: none;
  }
  .table td,
  .table th {
    background-color: #fff !important;
  }
  .btn > .caret,
  .dropup > .btn > .caret {
    border-top-color: #000 !important;
  }
  .label {
    border: 1px solid #000;
  }
  .table {
    border-collapse: collapse !important;
  }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #ddd !important;
  }
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-size: 14px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.42857143;
  color: #212121;
  background-color: #ffffff;
}
input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
a {
  color: #213469;
  text-decoration: none;
}
a:hover,
a:focus {
  color: #0f172f;
  text-decoration: underline;
}
a:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
figure {
  margin: 0;
}
img {
  vertical-align: middle;
}
.img-responsive {
  display: block;
  width: 100% \9;
  max-width: 100%;
  height: auto;
}
.img-rounded {
  border-radius: 0px;
}
.img-thumbnail {
  padding: 4px;
  line-height: 1.42857143;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 0px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  width: 100% \9;
  max-width: 100%;
  height: auto;
}
.img-circle {
  border-radius: 50%;
}
hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eaeef1;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}
.c h1,
.c h2,
.c h3,
.c h4,
.c h5,
.c h6,
.c .h1,
.c .h2,
.c .h3,
.c .h4,
.c .h5,
.c .h6 {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}
.c h1 small,
.c h2 small,
.c h3 small,
.c h4 small,
.c h5 small,
.c h6 small,
.c .h1 small,
.c .h2 small,
.c .h3 small,
.c .h4 small,
.c .h5 small,
.c .h6 small,
.c h1 .small,
.c h2 .small,
.c h3 .small,
.c h4 .small,
.c h5 .small,
.c h6 .small,
.c .h1 .small,
.c .h2 .small,
.c .h3 .small,
.c .h4 .small,
.c .h5 .small,
.c .h6 .small {
  font-weight: normal;
  line-height: 1;
  color: #777777;
}
.c h1,
.c .h1,
.c h2,
.c .h2,
.c h3,
.c .h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}
.c h1 small,
.c .h1 small,
.c h2 small,
.c .h2 small,
.c h3 small,
.c .h3 small,
.c h1 .small,
.c .h1 .small,
.c h2 .small,
.c .h2 .small,
.c h3 .small,
.c .h3 .small {
  font-size: 65%;
}
.c h4,
.c .h4,
.c h5,
.c .h5,
.c h6,
.c .h6 {
  margin-top: 10px;
  margin-bottom: 10px;
}
.c h4 small,
.c .h4 small,
.c h5 small,
.c .h5 small,
.c h6 small,
.c .h6 small,
.c h4 .small,
.c .h4 .small,
.c h5 .small,
.c .h5 .small,
.c h6 .small,
.c .h6 .small {
  font-size: 75%;
}
.c h1,
.c .h1 {
  font-size: 36px;
}
.c h2,
.c .h2 {
  font-size: 30px;
}
.c h3,
.c .h3 {
  font-size: 24px;
}
.c h4,
.c .h4 {
  font-size: 18px;
}
.c h5,
.c .h5 {
  font-size: 14px;
}
.c h6,
.c .h6 {
  font-size: 12px;
}
.c p {
  margin: 0 0 10px;
}
.c .lead {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
}
.c small,
.c .small {
  font-size: 85%;
}
.c cite {
  font-style: normal;
}
.c mark,
.c .mark {
  background-color: #fcf8e3;
  padding: .2em;
}
.c .text-left {
  text-align: left;
}
.c .text-right {
  text-align: right;
}
.c .text-center {
  text-align: center;
}
.c .text-justify {
  text-align: justify;
}
.c .text-nowrap {
  white-space: nowrap;
}
.c .text-lowercase {
  text-transform: lowercase;
}
.c .text-uppercase {
  text-transform: uppercase;
}
.c .text-capitalize {
  text-transform: capitalize;
}
.c .text-muted {
  color: #b1b2b4;
}
.c .text-primary {
  color: #213469;
}
.c a.text-primary:hover {
  color: #152142;
}
.c .text-success {
  color: #3c763d;
}
.c a.text-success:hover {
  color: #2b542c;
}
.c .text-info {
  color: #31708f;
}
.c a.text-info:hover {
  color: #245269;
}
.c .text-warning {
  color: #8a6d3b;
}
.c a.text-warning:hover {
  color: #66512c;
}
.c .text-danger {
  color: #a94442;
}
.c a.text-danger:hover {
  color: #843534;
}
.c .bg-primary {
  color: #fff;
  background-color: #213469;
}
.c a.bg-primary:hover {
  background-color: #152142;
}
.c .bg-success {
  background-color: #dff0d8;
}
.c a.bg-success:hover {
  background-color: #c1e2b3;
}
.c .bg-info {
  background-color: #d9edf7;
}
.c a.bg-info:hover {
  background-color: #afd9ee;
}
.c .bg-warning {
  background-color: #fcf8e3;
}
.c a.bg-warning:hover {
  background-color: #f7ecb5;
}
.c .bg-danger {
  background-color: #f2dede;
}
.c a.bg-danger:hover {
  background-color: #e4b9b9;
}
.c .page-header {
  padding-bottom: 9px;
  margin: 40px 0 20px;
  border-bottom: 1px solid #eaeef1;
}
.c ul,
.c ol {
  margin-top: 0;
  margin-bottom: 10px;
}
.c ul ul,
.c ol ul,
.c ul ol,
.c ol ol {
  margin-bottom: 0;
}
.c .list-unstyled {
  padding-left: 0;
  list-style: none;
}
.c .list-inline {
  padding-left: 0;
  list-style: none;
  margin-left: -5px;
}
.c .list-inline > li {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
}
.c dl {
  margin-top: 0;
  margin-bottom: 20px;
}
.c dt,
.c dd {
  line-height: 1.42857143;
}
.c dt {
  font-weight: bold;
}
.c dd {
  margin-left: 0;
}
.c abbr[title],
.c abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #777777;
}
.c .initialism {
  font-size: 90%;
  text-transform: uppercase;
}
.c blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  font-size: 17.5px;
  border-left: 5px solid #eaeef1;
}
.c blockquote p:last-child,
.c blockquote ul:last-child,
.c blockquote ol:last-child {
  margin-bottom: 0;
}
.c blockquote footer,
.c blockquote small,
.c blockquote .small {
  display: block;
  font-size: 80%;
  line-height: 1.42857143;
  color: #777777;
}
.c blockquote footer:before,
.c blockquote small:before,
.c blockquote .small:before {
  content: '\2014 \00A0';
}
.c .blockquote-reverse,
.c blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  border-right: 5px solid #eaeef1;
  border-left: 0;
  text-align: right;
}
.c .blockquote-reverse footer:before,
.c blockquote.pull-right footer:before,
.c .blockquote-reverse small:before,
.c blockquote.pull-right small:before,
.c .blockquote-reverse .small:before,
.c blockquote.pull-right .small:before {
  content: '';
}
.c .blockquote-reverse footer:after,
.c blockquote.pull-right footer:after,
.c .blockquote-reverse small:after,
.c blockquote.pull-right small:after,
.c .blockquote-reverse .small:after,
.c blockquote.pull-right .small:after {
  content: '\00A0 \2014';
}
.c blockquote:before,
.c blockquote:after {
  content: "";
}
.c address {
  margin-bottom: 20px;
  font-style: normal;
  line-height: 1.42857143;
}
.c code,
.c kbd,
.c pre,
.c samp {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}
.c code {
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  background-color: #f9f2f4;
  border-radius: 0px;
}
.c kbd {
  padding: 2px 4px;
  font-size: 90%;
  color: #ffffff;
  background-color: #333333;
  border-radius: 0px;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.c kbd kbd {
  padding: 0;
  font-size: 100%;
  box-shadow: none;
}
.c pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.42857143;
  word-break: break-all;
  word-wrap: break-word;
  color: #212121;
  background-color: #f5f5f5;
  border: 1px solid #cccccc;
  border-radius: 0px;
}
.c pre code {
  padding: 0;
  font-size: inherit;
  color: inherit;
  white-space: pre-wrap;
  background-color: transparent;
  border-radius: 0;
}
.c .pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}
.c .container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.c .container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.c .row {
  margin-left: -15px;
  margin-right: -15px;
}
.c .col-xs-1,
.c .col-sm-1,
.c .col-md-1,
.c .col-lg-1,
.c .col-xs-2,
.c .col-sm-2,
.c .col-md-2,
.c .col-lg-2,
.c .col-xs-3,
.c .col-sm-3,
.c .col-md-3,
.c .col-lg-3,
.c .col-xs-4,
.c .col-sm-4,
.c .col-md-4,
.c .col-lg-4,
.c .col-xs-5,
.c .col-sm-5,
.c .col-md-5,
.c .col-lg-5,
.c .col-xs-6,
.c .col-sm-6,
.c .col-md-6,
.c .col-lg-6,
.c .col-xs-7,
.c .col-sm-7,
.c .col-md-7,
.c .col-lg-7,
.c .col-xs-8,
.c .col-sm-8,
.c .col-md-8,
.c .col-lg-8,
.c .col-xs-9,
.c .col-sm-9,
.c .col-md-9,
.c .col-lg-9,
.c .col-xs-10,
.c .col-sm-10,
.c .col-md-10,
.c .col-lg-10,
.c .col-xs-11,
.c .col-sm-11,
.c .col-md-11,
.c .col-lg-11,
.c .col-xs-12,
.c .col-sm-12,
.c .col-md-12,
.c .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
.c .col-xs-1,
.c .col-xs-2,
.c .col-xs-3,
.c .col-xs-4,
.c .col-xs-5,
.c .col-xs-6,
.c .col-xs-7,
.c .col-xs-8,
.c .col-xs-9,
.c .col-xs-10,
.c .col-xs-11,
.c .col-xs-12 {
  float: left;
}
.c .col-xs-12 {
  width: 100%;
}
.c .col-xs-11 {
  width: 91.66666667%;
}
.c .col-xs-10 {
  width: 83.33333333%;
}
.c .col-xs-9 {
  width: 75%;
}
.c .col-xs-8 {
  width: 66.66666667%;
}
.c .col-xs-7 {
  width: 58.33333333%;
}
.c .col-xs-6 {
  width: 50%;
}
.c .col-xs-5 {
  width: 41.66666667%;
}
.c .col-xs-4 {
  width: 33.33333333%;
}
.c .col-xs-3 {
  width: 25%;
}
.c .col-xs-2 {
  width: 16.66666667%;
}
.c .col-xs-1 {
  width: 8.33333333%;
}
.c .col-xs-pull-12 {
  right: 100%;
}
.c .col-xs-pull-11 {
  right: 91.66666667%;
}
.c .col-xs-pull-10 {
  right: 83.33333333%;
}
.c .col-xs-pull-9 {
  right: 75%;
}
.c .col-xs-pull-8 {
  right: 66.66666667%;
}
.c .col-xs-pull-7 {
  right: 58.33333333%;
}
.c .col-xs-pull-6 {
  right: 50%;
}
.c .col-xs-pull-5 {
  right: 41.66666667%;
}
.c .col-xs-pull-4 {
  right: 33.33333333%;
}
.c .col-xs-pull-3 {
  right: 25%;
}
.c .col-xs-pull-2 {
  right: 16.66666667%;
}
.c .col-xs-pull-1 {
  right: 8.33333333%;
}
.c .col-xs-pull-0 {
  right: auto;
}
.c .col-xs-push-12 {
  left: 100%;
}
.c .col-xs-push-11 {
  left: 91.66666667%;
}
.c .col-xs-push-10 {
  left: 83.33333333%;
}
.c .col-xs-push-9 {
  left: 75%;
}
.c .col-xs-push-8 {
  left: 66.66666667%;
}
.c .col-xs-push-7 {
  left: 58.33333333%;
}
.c .col-xs-push-6 {
  left: 50%;
}
.c .col-xs-push-5 {
  left: 41.66666667%;
}
.c .col-xs-push-4 {
  left: 33.33333333%;
}
.c .col-xs-push-3 {
  left: 25%;
}
.c .col-xs-push-2 {
  left: 16.66666667%;
}
.c .col-xs-push-1 {
  left: 8.33333333%;
}
.c .col-xs-push-0 {
  left: auto;
}
.c .col-xs-offset-12 {
  margin-left: 100%;
}
.c .col-xs-offset-11 {
  margin-left: 91.66666667%;
}
.c .col-xs-offset-10 {
  margin-left: 83.33333333%;
}
.c .col-xs-offset-9 {
  margin-left: 75%;
}
.c .col-xs-offset-8 {
  margin-left: 66.66666667%;
}
.c .col-xs-offset-7 {
  margin-left: 58.33333333%;
}
.c .col-xs-offset-6 {
  margin-left: 50%;
}
.c .col-xs-offset-5 {
  margin-left: 41.66666667%;
}
.c .col-xs-offset-4 {
  margin-left: 33.33333333%;
}
.c .col-xs-offset-3 {
  margin-left: 25%;
}
.c .col-xs-offset-2 {
  margin-left: 16.66666667%;
}
.c .col-xs-offset-1 {
  margin-left: 8.33333333%;
}
.c .col-xs-offset-0 {
  margin-left: 0%;
}
.c table {
  background-color: transparent;
}
.c th {
  text-align: left;
}
.c .table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}
.c .table > thead > tr > th,
.c .table > tbody > tr > th,
.c .table > tfoot > tr > th,
.c .table > thead > tr > td,
.c .table > tbody > tr > td,
.c .table > tfoot > tr > td {
  padding: 8px;
  line-height: 1.42857143;
  vertical-align: top;
  border-top: 1px solid #dddddd;
}
.c .table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #dddddd;
}
.c .table > caption + thead > tr:first-child > th,
.c .table > colgroup + thead > tr:first-child > th,
.c .table > thead:first-child > tr:first-child > th,
.c .table > caption + thead > tr:first-child > td,
.c .table > colgroup + thead > tr:first-child > td,
.c .table > thead:first-child > tr:first-child > td {
  border-top: 0;
}
.c .table > tbody + tbody {
  border-top: 2px solid #dddddd;
}
.c .table .table {
  background-color: #ffffff;
}
.c .table-condensed > thead > tr > th,
.c .table-condensed > tbody > tr > th,
.c .table-condensed > tfoot > tr > th,
.c .table-condensed > thead > tr > td,
.c .table-condensed > tbody > tr > td,
.c .table-condensed > tfoot > tr > td {
  padding: 5px;
}
.c .table-bordered {
  border: 1px solid #dddddd;
}
.c .table-bordered > thead > tr > th,
.c .table-bordered > tbody > tr > th,
.c .table-bordered > tfoot > tr > th,
.c .table-bordered > thead > tr > td,
.c .table-bordered > tbody > tr > td,
.c .table-bordered > tfoot > tr > td {
  border: 1px solid #dddddd;
}
.c .table-bordered > thead > tr > th,
.c .table-bordered > thead > tr > td {
  border-bottom-width: 2px;
}
.c .table-striped > tbody > tr:nth-child(odd) > td,
.c .table-striped > tbody > tr:nth-child(odd) > th {
  background-color: #f9f9f9;
}
.c .table-hover > tbody > tr:hover > td,
.c .table-hover > tbody > tr:hover > th {
  background-color: #f5f5f5;
}
.c table col[class*="col-"] {
  position: static;
  float: none;
  display: table-column;
}
.c table td[class*="col-"],
.c table th[class*="col-"] {
  position: static;
  float: none;
  display: table-cell;
}
.c .table > thead > tr > td.active,
.c .table > tbody > tr > td.active,
.c .table > tfoot > tr > td.active,
.c .table > thead > tr > th.active,
.c .table > tbody > tr > th.active,
.c .table > tfoot > tr > th.active,
.c .table > thead > tr.active > td,
.c .table > tbody > tr.active > td,
.c .table > tfoot > tr.active > td,
.c .table > thead > tr.active > th,
.c .table > tbody > tr.active > th,
.c .table > tfoot > tr.active > th {
  background-color: #f5f5f5;
}
.c .table-hover > tbody > tr > td.active:hover,
.c .table-hover > tbody > tr > th.active:hover,
.c .table-hover > tbody > tr.active:hover > td,
.c .table-hover > tbody > tr:hover > .active,
.c .table-hover > tbody > tr.active:hover > th {
  background-color: #e8e8e8;
}
.c .table > thead > tr > td.success,
.c .table > tbody > tr > td.success,
.c .table > tfoot > tr > td.success,
.c .table > thead > tr > th.success,
.c .table > tbody > tr > th.success,
.c .table > tfoot > tr > th.success,
.c .table > thead > tr.success > td,
.c .table > tbody > tr.success > td,
.c .table > tfoot > tr.success > td,
.c .table > thead > tr.success > th,
.c .table > tbody > tr.success > th,
.c .table > tfoot > tr.success > th {
  background-color: #dff0d8;
}
.c .table-hover > tbody > tr > td.success:hover,
.c .table-hover > tbody > tr > th.success:hover,
.c .table-hover > tbody > tr.success:hover > td,
.c .table-hover > tbody > tr:hover > .success,
.c .table-hover > tbody > tr.success:hover > th {
  background-color: #d0e9c6;
}
.c .table > thead > tr > td.info,
.c .table > tbody > tr > td.info,
.c .table > tfoot > tr > td.info,
.c .table > thead > tr > th.info,
.c .table > tbody > tr > th.info,
.c .table > tfoot > tr > th.info,
.c .table > thead > tr.info > td,
.c .table > tbody > tr.info > td,
.c .table > tfoot > tr.info > td,
.c .table > thead > tr.info > th,
.c .table > tbody > tr.info > th,
.c .table > tfoot > tr.info > th {
  background-color: #d9edf7;
}
.c .table-hover > tbody > tr > td.info:hover,
.c .table-hover > tbody > tr > th.info:hover,
.c .table-hover > tbody > tr.info:hover > td,
.c .table-hover > tbody > tr:hover > .info,
.c .table-hover > tbody > tr.info:hover > th {
  background-color: #c4e3f3;
}
.c .table > thead > tr > td.warning,
.c .table > tbody > tr > td.warning,
.c .table > tfoot > tr > td.warning,
.c .table > thead > tr > th.warning,
.c .table > tbody > tr > th.warning,
.c .table > tfoot > tr > th.warning,
.c .table > thead > tr.warning > td,
.c .table > tbody > tr.warning > td,
.c .table > tfoot > tr.warning > td,
.c .table > thead > tr.warning > th,
.c .table > tbody > tr.warning > th,
.c .table > tfoot > tr.warning > th {
  background-color: #fcf8e3;
}
.c .table-hover > tbody > tr > td.warning:hover,
.c .table-hover > tbody > tr > th.warning:hover,
.c .table-hover > tbody > tr.warning:hover > td,
.c .table-hover > tbody > tr:hover > .warning,
.c .table-hover > tbody > tr.warning:hover > th {
  background-color: #faf2cc;
}
.c .table > thead > tr > td.danger,
.c .table > tbody > tr > td.danger,
.c .table > tfoot > tr > td.danger,
.c .table > thead > tr > th.danger,
.c .table > tbody > tr > th.danger,
.c .table > tfoot > tr > th.danger,
.c .table > thead > tr.danger > td,
.c .table > tbody > tr.danger > td,
.c .table > tfoot > tr.danger > td,
.c .table > thead > tr.danger > th,
.c .table > tbody > tr.danger > th,
.c .table > tfoot > tr.danger > th {
  background-color: #f2dede;
}
.c .table-hover > tbody > tr > td.danger:hover,
.c .table-hover > tbody > tr > th.danger:hover,
.c .table-hover > tbody > tr.danger:hover > td,
.c .table-hover > tbody > tr:hover > .danger,
.c .table-hover > tbody > tr.danger:hover > th {
  background-color: #ebcccc;
}
.c fieldset {
  padding: 0;
  margin: 0;
  border: 0;
  min-width: 0;
}
.c legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
  font-size: 21px;
  line-height: inherit;
  color: #212121;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}
.c label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: bold;
}
.c input[type="search"] {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.c input[type="radio"],
.c input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  line-height: normal;
}
.c input[type="file"] {
  display: block;
}
.c input[type="range"] {
  display: block;
  width: 100%;
}
.c select[multiple],
.c select[size] {
  height: auto;
}
.c input[type="file"]:focus,
.c input[type="radio"]:focus,
.c input[type="checkbox"]:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.c output {
  display: block;
  padding-top: 7px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #424242;
}
.c .form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #424242;
  background-color: #ffffff;
  background-image: none;
  border: 1px solid #cccccc;
  border-radius: 0px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
.c .form-control:focus {
  border-color: #66afe9;
  outline: 0;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.c .form-control::-moz-placeholder {
  color: #777777;
  opacity: 1;
}
.c .form-control:-ms-input-placeholder {
  color: #777777;
}
.c .form-control::-webkit-input-placeholder {
  color: #777777;
}
.c .form-control[disabled],
.c .form-control[readonly],
.c fieldset[disabled] .form-control {
  cursor: not-allowed;
  background-color: #eaeef1;
  opacity: 1;
}
.c textarea.form-control {
  height: auto;
}
.c input[type="search"] {
  -webkit-appearance: none;
}
.c input[type="date"],
.c input[type="time"],
.c input[type="datetime-local"],
.c input[type="month"] {
  line-height: 34px;
  line-height: 1.42857143 \0;
}
.c input[type="date"].input-sm,
.c input[type="time"].input-sm,
.c input[type="datetime-local"].input-sm,
.c input[type="month"].input-sm {
  line-height: 30px;
}
.c input[type="date"].input-lg,
.c input[type="time"].input-lg,
.c input[type="datetime-local"].input-lg,
.c input[type="month"].input-lg {
  line-height: 46px;
}
.c .form-group {
  margin-bottom: 15px;
}
.c .radio,
.c .checkbox {
  position: relative;
  display: block;
  min-height: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.c .radio label,
.c .checkbox label {
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: normal;
  cursor: pointer;
}
.c .radio input[type="radio"],
.c .radio-inline input[type="radio"],
.c .checkbox input[type="checkbox"],
.c .checkbox-inline input[type="checkbox"] {
  position: absolute;
  margin-left: -20px;
  margin-top: 4px \9;
}
.c .radio + .radio,
.c .checkbox + .checkbox {
  margin-top: -5px;
}
.c .radio-inline,
.c .checkbox-inline {
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  vertical-align: middle;
  font-weight: normal;
  cursor: pointer;
}
.c .radio-inline + .radio-inline,
.c .checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px;
}
.c input[type="radio"][disabled],
.c input[type="checkbox"][disabled],
.c input[type="radio"].disabled,
.c input[type="checkbox"].disabled,
.c fieldset[disabled] input[type="radio"],
.c fieldset[disabled] input[type="checkbox"] {
  cursor: not-allowed;
}
.c .radio-inline.disabled,
.c .checkbox-inline.disabled,
.c fieldset[disabled] .radio-inline,
.c fieldset[disabled] .checkbox-inline {
  cursor: not-allowed;
}
.c .radio.disabled label,
.c .checkbox.disabled label,
.c fieldset[disabled] .radio label,
.c fieldset[disabled] .checkbox label {
  cursor: not-allowed;
}
.c .form-control-static {
  padding-top: 7px;
  padding-bottom: 7px;
  margin-bottom: 0;
}
.c .form-control-static.input-lg,
.c .form-control-static.input-sm {
  padding-left: 0;
  padding-right: 0;
}
.c .input-sm,
.c .form-horizontal .form-group-sm .form-control {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 0px;
}
.c select.input-sm {
  height: 30px;
  line-height: 30px;
}
.c textarea.input-sm,
.c select[multiple].input-sm {
  height: auto;
}
.c .input-lg,
.c .form-horizontal .form-group-lg .form-control {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33;
  border-radius: 0px;
}
.c select.input-lg {
  height: 46px;
  line-height: 46px;
}
.c textarea.input-lg,
.c select[multiple].input-lg {
  height: auto;
}
.c .has-feedback {
  position: relative;
}
.c .has-feedback .form-control {
  padding-right: 42.5px;
}
.c .form-control-feedback {
  position: absolute;
  top: 25px;
  right: 0;
  z-index: 2;
  display: block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
}
.c .input-lg + .form-control-feedback {
  width: 46px;
  height: 46px;
  line-height: 46px;
}
.c .input-sm + .form-control-feedback {
  width: 30px;
  height: 30px;
  line-height: 30px;
}
.c .has-success .help-block,
.c .has-success .control-label,
.c .has-success .radio,
.c .has-success .checkbox,
.c .has-success .radio-inline,
.c .has-success .checkbox-inline {
  color: #3c763d;
}
.c .has-success .form-control {
  border-color: #3c763d;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.c .has-success .form-control:focus {
  border-color: #2b542c;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
}
.c .has-success .input-group-addon {
  color: #3c763d;
  border-color: #3c763d;
  background-color: #dff0d8;
}
.c .has-success .form-control-feedback {
  color: #3c763d;
}
.c .has-warning .help-block,
.c .has-warning .control-label,
.c .has-warning .radio,
.c .has-warning .checkbox,
.c .has-warning .radio-inline,
.c .has-warning .checkbox-inline {
  color: #8a6d3b;
}
.c .has-warning .form-control {
  border-color: #8a6d3b;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.c .has-warning .form-control:focus {
  border-color: #66512c;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
}
.c .has-warning .input-group-addon {
  color: #8a6d3b;
  border-color: #8a6d3b;
  background-color: #fcf8e3;
}
.c .has-warning .form-control-feedback {
  color: #8a6d3b;
}
.c .has-error .help-block,
.c .has-error .control-label,
.c .has-error .radio,
.c .has-error .checkbox,
.c .has-error .radio-inline,
.c .has-error .checkbox-inline {
  color: #a94442;
}
.c .has-error .form-control {
  border-color: #a94442;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.c .has-error .form-control:focus {
  border-color: #843534;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
}
.c .has-error .input-group-addon {
  color: #a94442;
  border-color: #a94442;
  background-color: #f2dede;
}
.c .has-error .form-control-feedback {
  color: #a94442;
}
.c .has-feedback label.sr-only ~ .form-control-feedback {
  top: 0;
}
.c .help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #616161;
}
.c .form-horizontal .radio,
.c .form-horizontal .checkbox,
.c .form-horizontal .radio-inline,
.c .form-horizontal .checkbox-inline {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 7px;
}
.c .form-horizontal .radio,
.c .form-horizontal .checkbox {
  min-height: 27px;
}
.c .form-horizontal .form-group {
  margin-left: -15px;
  margin-right: -15px;
}
.c .form-horizontal .has-feedback .form-control-feedback {
  top: 0;
  right: 15px;
}
.c .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.42857143;
  border-radius: 0px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.c .btn:focus,
.c .btn:active:focus,
.c .btn.active:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.c .btn:hover,
.c .btn:focus {
  color: #333333;
  text-decoration: none;
}
.c .btn:active,
.c .btn.active {
  outline: 0;
  background-image: none;
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.c .btn.disabled,
.c .btn[disabled],
.c fieldset[disabled] .btn {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.65;
  filter: alpha(opacity=65);
  box-shadow: none;
}
.c .btn-default {
  color: #333333;
  background-color: #b1b2b4;
  border-color: #cccccc;
}
.c .btn-default:hover,
.c .btn-default:focus,
.c .btn-default:active,
.c .btn-default.active,
.c .open > .dropdown-toggle.btn-default {
  color: #333333;
  background-color: #97999b;
  border-color: #adadad;
}
.c .btn-default:active,
.c .btn-default.active,
.c .open > .dropdown-toggle.btn-default {
  background-image: none;
}
.c .btn-default.disabled,
.c .btn-default[disabled],
.c fieldset[disabled] .btn-default,
.c .btn-default.disabled:hover,
.c .btn-default[disabled]:hover,
.c fieldset[disabled] .btn-default:hover,
.c .btn-default.disabled:focus,
.c .btn-default[disabled]:focus,
.c fieldset[disabled] .btn-default:focus,
.c .btn-default.disabled:active,
.c .btn-default[disabled]:active,
.c fieldset[disabled] .btn-default:active,
.c .btn-default.disabled.active,
.c .btn-default[disabled].active,
.c fieldset[disabled] .btn-default.active {
  background-color: #b1b2b4;
  border-color: #cccccc;
}
.c .btn-default .badge {
  color: #b1b2b4;
  background-color: #333333;
}
.c .btn-primary {
  color: #ffffff;
  background-color: #213469;
  border-color: #1b2a56;
}
.c .btn-primary:hover,
.c .btn-primary:focus,
.c .btn-primary:active,
.c .btn-primary.active,
.c .open > .dropdown-toggle.btn-primary {
  color: #ffffff;
  background-color: #152142;
  border-color: #0c1327;
}
.c .btn-primary:active,
.c .btn-primary.active,
.c .open > .dropdown-toggle.btn-primary {
  background-image: none;
}
.c .btn-primary.disabled,
.c .btn-primary[disabled],
.c fieldset[disabled] .btn-primary,
.c .btn-primary.disabled:hover,
.c .btn-primary[disabled]:hover,
.c fieldset[disabled] .btn-primary:hover,
.c .btn-primary.disabled:focus,
.c .btn-primary[disabled]:focus,
.c fieldset[disabled] .btn-primary:focus,
.c .btn-primary.disabled:active,
.c .btn-primary[disabled]:active,
.c fieldset[disabled] .btn-primary:active,
.c .btn-primary.disabled.active,
.c .btn-primary[disabled].active,
.c fieldset[disabled] .btn-primary.active {
  background-color: #213469;
  border-color: #1b2a56;
}
.c .btn-primary .badge {
  color: #213469;
  background-color: #ffffff;
}
.c .btn-success {
  color: #ffffff;
  background-color: #79bc43;
  border-color: #6da93c;
}
.c .btn-success:hover,
.c .btn-success:focus,
.c .btn-success:active,
.c .btn-success.active,
.c .open > .dropdown-toggle.btn-success {
  color: #ffffff;
  background-color: #619636;
  border-color: #507c2c;
}
.c .btn-success:active,
.c .btn-success.active,
.c .open > .dropdown-toggle.btn-success {
  background-image: none;
}
.c .btn-success.disabled,
.c .btn-success[disabled],
.c fieldset[disabled] .btn-success,
.c .btn-success.disabled:hover,
.c .btn-success[disabled]:hover,
.c fieldset[disabled] .btn-success:hover,
.c .btn-success.disabled:focus,
.c .btn-success[disabled]:focus,
.c fieldset[disabled] .btn-success:focus,
.c .btn-success.disabled:active,
.c .btn-success[disabled]:active,
.c fieldset[disabled] .btn-success:active,
.c .btn-success.disabled.active,
.c .btn-success[disabled].active,
.c fieldset[disabled] .btn-success.active {
  background-color: #79bc43;
  border-color: #6da93c;
}
.c .btn-success .badge {
  color: #79bc43;
  background-color: #ffffff;
}
.c .btn-info {
  color: #ffffff;
  background-color: #5c2c81;
  border-color: #4e266e;
}
.c .btn-info:hover,
.c .btn-info:focus,
.c .btn-info:active,
.c .btn-info.active,
.c .open > .dropdown-toggle.btn-info {
  color: #ffffff;
  background-color: #411f5b;
  border-color: #2e1640;
}
.c .btn-info:active,
.c .btn-info.active,
.c .open > .dropdown-toggle.btn-info {
  background-image: none;
}
.c .btn-info.disabled,
.c .btn-info[disabled],
.c fieldset[disabled] .btn-info,
.c .btn-info.disabled:hover,
.c .btn-info[disabled]:hover,
.c fieldset[disabled] .btn-info:hover,
.c .btn-info.disabled:focus,
.c .btn-info[disabled]:focus,
.c fieldset[disabled] .btn-info:focus,
.c .btn-info.disabled:active,
.c .btn-info[disabled]:active,
.c fieldset[disabled] .btn-info:active,
.c .btn-info.disabled.active,
.c .btn-info[disabled].active,
.c fieldset[disabled] .btn-info.active {
  background-color: #5c2c81;
  border-color: #4e266e;
}
.c .btn-info .badge {
  color: #5c2c81;
  background-color: #ffffff;
}
.c .btn-warning {
  color: #ffffff;
  background-color: #ee7623;
  border-color: #e66812;
}
.c .btn-warning:hover,
.c .btn-warning:focus,
.c .btn-warning:active,
.c .btn-warning.active,
.c .open > .dropdown-toggle.btn-warning {
  color: #ffffff;
  background-color: #ce5e10;
  border-color: #ad4f0d;
}
.c .btn-warning:active,
.c .btn-warning.active,
.c .open > .dropdown-toggle.btn-warning {
  background-image: none;
}
.c .btn-warning.disabled,
.c .btn-warning[disabled],
.c fieldset[disabled] .btn-warning,
.c .btn-warning.disabled:hover,
.c .btn-warning[disabled]:hover,
.c fieldset[disabled] .btn-warning:hover,
.c .btn-warning.disabled:focus,
.c .btn-warning[disabled]:focus,
.c fieldset[disabled] .btn-warning:focus,
.c .btn-warning.disabled:active,
.c .btn-warning[disabled]:active,
.c fieldset[disabled] .btn-warning:active,
.c .btn-warning.disabled.active,
.c .btn-warning[disabled].active,
.c fieldset[disabled] .btn-warning.active {
  background-color: #ee7623;
  border-color: #e66812;
}
.c .btn-warning .badge {
  color: #ee7623;
  background-color: #ffffff;
}
.c .btn-danger {
  color: #ffffff;
  background-color: #ed1c24;
  border-color: #de1219;
}
.c .btn-danger:hover,
.c .btn-danger:focus,
.c .btn-danger:active,
.c .btn-danger.active,
.c .open > .dropdown-toggle.btn-danger {
  color: #ffffff;
  background-color: #c61017;
  border-color: #a50d13;
}
.c .btn-danger:active,
.c .btn-danger.active,
.c .open > .dropdown-toggle.btn-danger {
  background-image: none;
}
.c .btn-danger.disabled,
.c .btn-danger[disabled],
.c fieldset[disabled] .btn-danger,
.c .btn-danger.disabled:hover,
.c .btn-danger[disabled]:hover,
.c fieldset[disabled] .btn-danger:hover,
.c .btn-danger.disabled:focus,
.c .btn-danger[disabled]:focus,
.c fieldset[disabled] .btn-danger:focus,
.c .btn-danger.disabled:active,
.c .btn-danger[disabled]:active,
.c fieldset[disabled] .btn-danger:active,
.c .btn-danger.disabled.active,
.c .btn-danger[disabled].active,
.c fieldset[disabled] .btn-danger.active {
  background-color: #ed1c24;
  border-color: #de1219;
}
.c .btn-danger .badge {
  color: #ed1c24;
  background-color: #ffffff;
}
.c .btn-link {
  color: #213469;
  font-weight: normal;
  cursor: pointer;
  border-radius: 0;
}
.c .btn-link,
.c .btn-link:active,
.c .btn-link[disabled],
.c fieldset[disabled] .btn-link {
  background-color: transparent;
  box-shadow: none;
}
.c .btn-link,
.c .btn-link:hover,
.c .btn-link:focus,
.c .btn-link:active {
  border-color: transparent;
}
.c .btn-link:hover,
.c .btn-link:focus {
  color: #0f172f;
  text-decoration: underline;
  background-color: transparent;
}
.c .btn-link[disabled]:hover,
.c fieldset[disabled] .btn-link:hover,
.c .btn-link[disabled]:focus,
.c fieldset[disabled] .btn-link:focus {
  color: #777777;
  text-decoration: none;
}
.c .btn-lg,
.c .btn-group-lg > .btn {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33;
  border-radius: 0px;
}
.c .btn-sm,
.c .btn-group-sm > .btn {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 0px;
}
.c .btn-xs,
.c .btn-group-xs > .btn {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 0px;
}
.c .btn-block {
  display: block;
  width: 100%;
}
.c .btn-block + .btn-block {
  margin-top: 5px;
}
.c input[type="submit"].btn-block,
.c input[type="reset"].btn-block,
.c input[type="button"].btn-block {
  width: 100%;
}
.c .fade {
  opacity: 0;
  transition: opacity 0.15s linear;
}
.c .fade.in {
  opacity: 1;
}
.c .collapse {
  display: none;
}
.c .collapse.in {
  display: block;
}
.c tr.collapse.in {
  display: table-row;
}
.c tbody.collapse.in {
  display: table-row-group;
}
.c .collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
.c .caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px solid;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}
.c .dropdown {
  position: relative;
}
.c .dropdown-toggle:focus {
  outline: 0;
}
.c .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  list-style: none;
  font-size: 14px;
  text-align: left;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  background-clip: padding-box;
}
.c .dropdown-menu.pull-right {
  right: 0;
  left: auto;
}
.c .dropdown-menu .divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.c .dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.42857143;
  color: #212121;
  white-space: nowrap;
}
.c .dropdown-menu > li > a:hover,
.c .dropdown-menu > li > a:focus {
  text-decoration: none;
  color: #141414;
  background-color: #f5f5f5;
}
.c .dropdown-menu > .active > a,
.c .dropdown-menu > .active > a:hover,
.c .dropdown-menu > .active > a:focus {
  color: #ffffff;
  text-decoration: none;
  outline: 0;
  background-color: #213469;
}
.c .dropdown-menu > .disabled > a,
.c .dropdown-menu > .disabled > a:hover,
.c .dropdown-menu > .disabled > a:focus {
  color: #777777;
}
.c .dropdown-menu > .disabled > a:hover,
.c .dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  cursor: not-allowed;
}
.c .open > .dropdown-menu {
  display: block;
}
.c .open > a {
  outline: 0;
}
.c .dropdown-menu-right {
  left: auto;
  right: 0;
}
.c .dropdown-menu-left {
  left: 0;
  right: auto;
}
.c .dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 12px;
  line-height: 1.42857143;
  color: #777777;
  white-space: nowrap;
}
.c .dropdown-backdrop {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 990;
}
.c .pull-right > .dropdown-menu {
  right: 0;
  left: auto;
}
.c .dropup .caret,
.c .navbar-fixed-bottom .dropdown .caret {
  border-top: 0;
  border-bottom: 4px solid;
  content: "";
}
.c .dropup .dropdown-menu,
.c .navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 1px;
}
.c .btn-group,
.c .btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.c .btn-group > .btn,
.c .btn-group-vertical > .btn {
  position: relative;
  float: left;
}
.c .btn-group > .btn:hover,
.c .btn-group-vertical > .btn:hover,
.c .btn-group > .btn:focus,
.c .btn-group-vertical > .btn:focus,
.c .btn-group > .btn:active,
.c .btn-group-vertical > .btn:active,
.c .btn-group > .btn.active,
.c .btn-group-vertical > .btn.active {
  z-index: 2;
}
.c .btn-group > .btn:focus,
.c .btn-group-vertical > .btn:focus {
  outline: 0;
}
.c .btn-group .btn + .btn,
.c .btn-group .btn + .btn-group,
.c .btn-group .btn-group + .btn,
.c .btn-group .btn-group + .btn-group {
  margin-left: -1px;
}
.c .btn-toolbar {
  margin-left: -5px;
}
.c .btn-toolbar .btn-group,
.c .btn-toolbar .input-group {
  float: left;
}
.c .btn-toolbar > .btn,
.c .btn-toolbar > .btn-group,
.c .btn-toolbar > .input-group {
  margin-left: 5px;
}
.c .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0;
}
.c .btn-group > .btn:first-child {
  margin-left: 0;
}
.c .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.c .btn-group > .btn:last-child:not(:first-child),
.c .btn-group > .dropdown-toggle:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.c .btn-group > .btn-group {
  float: left;
}
.c .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
.c .btn-group > .btn-group:first-child > .btn:last-child,
.c .btn-group > .btn-group:first-child > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.c .btn-group > .btn-group:last-child > .btn:first-child {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.c .btn-group .dropdown-toggle:active,
.c .btn-group.open .dropdown-toggle {
  outline: 0;
}
.c .btn-group > .btn + .dropdown-toggle {
  padding-left: 8px;
  padding-right: 8px;
}
.c .btn-group > .btn-lg + .dropdown-toggle {
  padding-left: 12px;
  padding-right: 12px;
}
.c .btn-group.open .dropdown-toggle {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.c .btn-group.open .dropdown-toggle.btn-link {
  box-shadow: none;
}
.c .btn .caret {
  margin-left: 0;
}
.c .btn-lg .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0;
}
.c .dropup .btn-lg .caret {
  border-width: 0 5px 5px;
}
.c .btn-group-vertical > .btn,
.c .btn-group-vertical > .btn-group,
.c .btn-group-vertical > .btn-group > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
}
.c .btn-group-vertical > .btn-group > .btn {
  float: none;
}
.c .btn-group-vertical > .btn + .btn,
.c .btn-group-vertical > .btn + .btn-group,
.c .btn-group-vertical > .btn-group + .btn,
.c .btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0;
}
.c .btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.c .btn-group-vertical > .btn:first-child:not(:last-child) {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.c .btn-group-vertical > .btn:last-child:not(:first-child) {
  border-bottom-left-radius: 0px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.c .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
.c .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
.c .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.c .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.c .btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
}
.c .btn-group-justified > .btn,
.c .btn-group-justified > .btn-group {
  float: none;
  display: table-cell;
  width: 1%;
}
.c .btn-group-justified > .btn-group .btn {
  width: 100%;
}
.c .btn-group-justified > .btn-group .dropdown-menu {
  left: auto;
}
.c [data-toggle="buttons"] > .btn > input[type="radio"],
.c [data-toggle="buttons"] > .btn > input[type="checkbox"] {
  position: absolute;
  z-index: -1;
  opacity: 0;
  filter: alpha(opacity=0);
}
.c .input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}
.c .input-group[class*="col-"] {
  float: none;
  padding-left: 0;
  padding-right: 0;
}
.c .input-group .form-control {
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0;
}
.c .input-group-lg > .form-control,
.c .input-group-lg > .input-group-addon,
.c .input-group-lg > .input-group-btn > .btn {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33;
  border-radius: 0px;
}
.c select.input-group-lg > .form-control,
.c select.input-group-lg > .input-group-addon,
.c select.input-group-lg > .input-group-btn > .btn {
  height: 46px;
  line-height: 46px;
}
.c textarea.input-group-lg > .form-control,
.c textarea.input-group-lg > .input-group-addon,
.c textarea.input-group-lg > .input-group-btn > .btn,
.c select[multiple].input-group-lg > .form-control,
.c select[multiple].input-group-lg > .input-group-addon,
.c select[multiple].input-group-lg > .input-group-btn > .btn {
  height: auto;
}
.c .input-group-sm > .form-control,
.c .input-group-sm > .input-group-addon,
.c .input-group-sm > .input-group-btn > .btn {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 0px;
}
.c select.input-group-sm > .form-control,
.c select.input-group-sm > .input-group-addon,
.c select.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  line-height: 30px;
}
.c textarea.input-group-sm > .form-control,
.c textarea.input-group-sm > .input-group-addon,
.c textarea.input-group-sm > .input-group-btn > .btn,
.c select[multiple].input-group-sm > .form-control,
.c select[multiple].input-group-sm > .input-group-addon,
.c select[multiple].input-group-sm > .input-group-btn > .btn {
  height: auto;
}
.c .input-group-addon,
.c .input-group-btn,
.c .input-group .form-control {
  display: table-cell;
}
.c .input-group-addon:not(:first-child):not(:last-child),
.c .input-group-btn:not(:first-child):not(:last-child),
.c .input-group .form-control:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.c .input-group-addon,
.c .input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
}
.c .input-group-addon {
  padding: 6px 12px;
  font-size: 14px;
  font-weight: normal;
  line-height: 1;
  color: #424242;
  text-align: center;
  background-color: #eaeef1;
  border: 1px solid #cccccc;
  border-radius: 0px;
}
.c .input-group-addon.input-sm {
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 0px;
}
.c .input-group-addon.input-lg {
  padding: 10px 16px;
  font-size: 18px;
  border-radius: 0px;
}
.c .input-group-addon input[type="radio"],
.c .input-group-addon input[type="checkbox"] {
  margin-top: 0;
}
.c .input-group .form-control:first-child,
.c .input-group-addon:first-child,
.c .input-group-btn:first-child > .btn,
.c .input-group-btn:first-child > .btn-group > .btn,
.c .input-group-btn:first-child > .dropdown-toggle,
.c .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.c .input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.c .input-group-addon:first-child {
  border-right: 0;
}
.c .input-group .form-control:last-child,
.c .input-group-addon:last-child,
.c .input-group-btn:last-child > .btn,
.c .input-group-btn:last-child > .btn-group > .btn,
.c .input-group-btn:last-child > .dropdown-toggle,
.c .input-group-btn:first-child > .btn:not(:first-child),
.c .input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.c .input-group-addon:last-child {
  border-left: 0;
}
.c .input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap;
}
.c .input-group-btn > .btn {
  position: relative;
}
.c .input-group-btn > .btn + .btn {
  margin-left: -1px;
}
.c .input-group-btn > .btn:hover,
.c .input-group-btn > .btn:focus,
.c .input-group-btn > .btn:active {
  z-index: 2;
}
.c .input-group-btn:first-child > .btn,
.c .input-group-btn:first-child > .btn-group {
  margin-right: -1px;
}
.c .input-group-btn:last-child > .btn,
.c .input-group-btn:last-child > .btn-group {
  margin-left: -1px;
}
.c .nav {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}
.c .nav > li {
  position: relative;
  display: block;
}
.c .nav > li > a {
  position: relative;
  display: block;
  padding: 10px 15px;
}
.c .nav > li > a:hover,
.c .nav > li > a:focus {
  text-decoration: none;
  background-color: transparent;
}
.c .nav > li.disabled > a {
  color: #777777;
}
.c .nav > li.disabled > a:hover,
.c .nav > li.disabled > a:focus {
  color: #777777;
  text-decoration: none;
  background-color: transparent;
  cursor: not-allowed;
}
.c .nav .open > a,
.c .nav .open > a:hover,
.c .nav .open > a:focus {
  background-color: transparent;
  border-color: #213469;
}
.c .nav .nav-divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.c .nav > li > a > img {
  max-width: none;
}
.c .nav-tabs {
  border-bottom: 1px solid none;
}
.c .nav-tabs > li {
  float: left;
  margin-bottom: -1px;
}
.c .nav-tabs > li > a {
  margin-right: 2px;
  line-height: 1.42857143;
  border: 1px solid transparent;
  border-radius: 0px 0px 0 0;
}
.c .nav-tabs > li > a:hover {
  border-color: none none none;
}
.c .nav-tabs > li.active > a,
.c .nav-tabs > li.active > a:hover,
.c .nav-tabs > li.active > a:focus {
  color: #ffffff;
  background-color: none;
  border: 1px solid none;
  border-bottom-color: transparent;
  cursor: default;
}
.c .nav-tabs.nav-justified {
  width: 100%;
  border-bottom: 0;
}
.c .nav-tabs.nav-justified > li {
  float: none;
}
.c .nav-tabs.nav-justified > li > a {
  text-align: center;
  margin-bottom: 5px;
}
.c .nav-tabs.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
.c .nav-tabs.nav-justified > li > a {
  margin-right: 0;
  border-radius: 0px;
}
.c .nav-tabs.nav-justified > .active > a,
.c .nav-tabs.nav-justified > .active > a:hover,
.c .nav-tabs.nav-justified > .active > a:focus {
  border: 1px solid none;
}
.c .nav-pills > li {
  float: left;
}
.c .nav-pills > li > a {
  border-radius: 0px;
}
.c .nav-pills > li + li {
  margin-left: 2px;
}
.c .nav-pills > li.active > a,
.c .nav-pills > li.active > a:hover,
.c .nav-pills > li.active > a:focus {
  color: #ffffff;
  background-color: #213469;
}
.c .nav-stacked > li {
  float: none;
}
.c .nav-stacked > li + li {
  margin-top: 2px;
  margin-left: 0;
}
.c .nav-justified {
  width: 100%;
}
.c .nav-justified > li {
  float: none;
}
.c .nav-justified > li > a {
  text-align: center;
  margin-bottom: 5px;
}
.c .nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
.c .nav-tabs-justified {
  border-bottom: 0;
}
.c .nav-tabs-justified > li > a {
  margin-right: 0;
  border-radius: 0px;
}
.c .nav-tabs-justified > .active > a,
.c .nav-tabs-justified > .active > a:hover,
.c .nav-tabs-justified > .active > a:focus {
  border: 1px solid none;
}
.c .tab-content > .tab-pane {
  display: none;
}
.c .tab-content > .active {
  display: block;
}
.c .nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.c .navbar {
  position: relative;
  min-height: 40px;
  margin-bottom: 20px;
  border: 1px solid transparent;
}
.c .navbar-collapse {
  overflow-x: visible;
  padding-right: 15px;
  padding-left: 15px;
  border-top: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  -webkit-overflow-scrolling: touch;
}
.c .navbar-collapse.in {
  overflow-y: auto;
}
.c .navbar-fixed-top .navbar-collapse,
.c .navbar-fixed-bottom .navbar-collapse {
  max-height: 340px;
}
.c .container > .navbar-header,
.c .container-fluid > .navbar-header,
.c .container > .navbar-collapse,
.c .container-fluid > .navbar-collapse {
  margin-right: -15px;
  margin-left: -15px;
}
.c .navbar-static-top {
  z-index: 1000;
  border-width: 0 0 1px;
}
.c .navbar-fixed-top,
.c .navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.c .navbar-fixed-top {
  top: 0;
  border-width: 0 0 1px;
}
.c .navbar-fixed-bottom {
  bottom: 0;
  margin-bottom: 0;
  border-width: 1px 0 0;
}
.c .navbar-brand {
  float: left;
  padding: 10px 15px;
  font-size: 18px;
  line-height: 20px;
  height: 40px;
}
.c .navbar-brand:hover,
.c .navbar-brand:focus {
  text-decoration: none;
}
.c .navbar-toggle {
  position: relative;
  float: right;
  margin-right: 15px;
  padding: 9px 10px;
  margin-top: 3px;
  margin-bottom: 3px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 0px;
}
.c .navbar-toggle:focus {
  outline: 0;
}
.c .navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
}
.c .navbar-toggle .icon-bar + .icon-bar {
  margin-top: 4px;
}
.c .navbar-nav {
  margin: 5px -15px;
}
.c .navbar-nav > li > a {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 20px;
}
.c .navbar-form {
  margin-left: -15px;
  margin-right: -15px;
  padding: 10px 15px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  margin-top: 3px;
  margin-bottom: 3px;
}
.c .navbar-nav > li > .dropdown-menu {
  margin-top: 0;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.c .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.c .navbar-btn {
  margin-top: 3px;
  margin-bottom: 3px;
}
.c .navbar-btn.btn-sm {
  margin-top: 5px;
  margin-bottom: 5px;
}
.c .navbar-btn.btn-xs {
  margin-top: 9px;
  margin-bottom: 9px;
}
.c .navbar-text {
  margin-top: 10px;
  margin-bottom: 10px;
}
.c .navbar-default {
  background-color: #b1b2b4;
  border-color: #a0a2a3;
}
.c .navbar-default .navbar-brand {
  color: #777777;
}
.c .navbar-default .navbar-brand:hover,
.c .navbar-default .navbar-brand:focus {
  color: #5e5e5e;
  background-color: transparent;
}
.c .navbar-default .navbar-text {
  color: #777777;
}
.c .navbar-default .navbar-nav > li > a {
  color: #777777;
}
.c .navbar-default .navbar-nav > li > a:hover,
.c .navbar-default .navbar-nav > li > a:focus {
  color: #333333;
  background-color: rgba(0, 0, 0, 0.2);
}
.c .navbar-default .navbar-nav > .active > a,
.c .navbar-default .navbar-nav > .active > a:hover,
.c .navbar-default .navbar-nav > .active > a:focus {
  color: #555555;
  background-color: #a0a2a3;
}
.c .navbar-default .navbar-nav > .disabled > a,
.c .navbar-default .navbar-nav > .disabled > a:hover,
.c .navbar-default .navbar-nav > .disabled > a:focus {
  color: #cccccc;
  background-color: rgba(0, 0, 0, 0.4);
}
.c .navbar-default .navbar-toggle {
  border-color: #dddddd;
}
.c .navbar-default .navbar-toggle:hover,
.c .navbar-default .navbar-toggle:focus {
  background-color: #dddddd;
}
.c .navbar-default .navbar-toggle .icon-bar {
  background-color: #888888;
}
.c .navbar-default .navbar-collapse,
.c .navbar-default .navbar-form {
  border-color: #a0a2a3;
}
.c .navbar-default .navbar-nav > .open > a,
.c .navbar-default .navbar-nav > .open > a:hover,
.c .navbar-default .navbar-nav > .open > a:focus {
  background-color: #a0a2a3;
  color: #555555;
}
.c .navbar-default .navbar-link {
  color: #777777;
}
.c .navbar-default .navbar-link:hover {
  color: #333333;
}
.c .navbar-default .btn-link {
  color: #777777;
}
.c .navbar-default .btn-link:hover,
.c .navbar-default .btn-link:focus {
  color: #333333;
}
.c .navbar-default .btn-link[disabled]:hover,
.c fieldset[disabled] .navbar-default .btn-link:hover,
.c .navbar-default .btn-link[disabled]:focus,
.c fieldset[disabled] .navbar-default .btn-link:focus {
  color: #cccccc;
}
.c .navbar-inverse {
  background-color: #222222;
  border-color: #080808;
}
.c .navbar-inverse .navbar-brand {
  color: #777777;
}
.c .navbar-inverse .navbar-brand:hover,
.c .navbar-inverse .navbar-brand:focus {
  color: #ffffff;
  background-color: transparent;
}
.c .navbar-inverse .navbar-text {
  color: #777777;
}
.c .navbar-inverse .navbar-nav > li > a {
  color: #777777;
}
.c .navbar-inverse .navbar-nav > li > a:hover,
.c .navbar-inverse .navbar-nav > li > a:focus {
  color: #ffffff;
  background-color: transparent;
}
.c .navbar-inverse .navbar-nav > .active > a,
.c .navbar-inverse .navbar-nav > .active > a:hover,
.c .navbar-inverse .navbar-nav > .active > a:focus {
  color: #ffffff;
  background-color: #080808;
}
.c .navbar-inverse .navbar-nav > .disabled > a,
.c .navbar-inverse .navbar-nav > .disabled > a:hover,
.c .navbar-inverse .navbar-nav > .disabled > a:focus {
  color: #444444;
  background-color: transparent;
}
.c .navbar-inverse .navbar-toggle {
  border-color: #333333;
}
.c .navbar-inverse .navbar-toggle:hover,
.c .navbar-inverse .navbar-toggle:focus {
  background-color: #333333;
}
.c .navbar-inverse .navbar-toggle .icon-bar {
  background-color: #ffffff;
}
.c .navbar-inverse .navbar-collapse,
.c .navbar-inverse .navbar-form {
  border-color: #101010;
}
.c .navbar-inverse .navbar-nav > .open > a,
.c .navbar-inverse .navbar-nav > .open > a:hover,
.c .navbar-inverse .navbar-nav > .open > a:focus {
  background-color: #080808;
  color: #ffffff;
}
.c .navbar-inverse .navbar-link {
  color: #777777;
}
.c .navbar-inverse .navbar-link:hover {
  color: #ffffff;
}
.c .navbar-inverse .btn-link {
  color: #777777;
}
.c .navbar-inverse .btn-link:hover,
.c .navbar-inverse .btn-link:focus {
  color: #ffffff;
}
.c .navbar-inverse .btn-link[disabled]:hover,
.c fieldset[disabled] .navbar-inverse .btn-link:hover,
.c .navbar-inverse .btn-link[disabled]:focus,
.c fieldset[disabled] .navbar-inverse .btn-link:focus {
  color: #444444;
}
.c .pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 0px;
}
.c .pagination > li {
  display: inline;
}
.c .pagination > li > a,
.c .pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  line-height: 1.42857143;
  text-decoration: none;
  color: #213469;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  margin-left: -1px;
}
.c .pagination > li:first-child > a,
.c .pagination > li:first-child > span {
  margin-left: 0;
  border-bottom-left-radius: 0px;
  border-top-left-radius: 0px;
}
.c .pagination > li:last-child > a,
.c .pagination > li:last-child > span {
  border-bottom-right-radius: 0px;
  border-top-right-radius: 0px;
}
.c .pagination > li > a:hover,
.c .pagination > li > span:hover,
.c .pagination > li > a:focus,
.c .pagination > li > span:focus {
  color: #0f172f;
  background-color: #eaeef1;
  border-color: #dddddd;
}
.c .pagination > .active > a,
.c .pagination > .active > span,
.c .pagination > .active > a:hover,
.c .pagination > .active > span:hover,
.c .pagination > .active > a:focus,
.c .pagination > .active > span:focus {
  z-index: 2;
  color: #ffffff;
  background-color: #213469;
  border-color: #213469;
  cursor: default;
}
.c .pagination > .disabled > span,
.c .pagination > .disabled > span:hover,
.c .pagination > .disabled > span:focus,
.c .pagination > .disabled > a,
.c .pagination > .disabled > a:hover,
.c .pagination > .disabled > a:focus {
  color: #777777;
  background-color: #ffffff;
  border-color: #dddddd;
  cursor: not-allowed;
}
.c .pagination-lg > li > a,
.c .pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 18px;
}
.c .pagination-lg > li:first-child > a,
.c .pagination-lg > li:first-child > span {
  border-bottom-left-radius: 0px;
  border-top-left-radius: 0px;
}
.c .pagination-lg > li:last-child > a,
.c .pagination-lg > li:last-child > span {
  border-bottom-right-radius: 0px;
  border-top-right-radius: 0px;
}
.c .pagination-sm > li > a,
.c .pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 12px;
}
.c .pagination-sm > li:first-child > a,
.c .pagination-sm > li:first-child > span {
  border-bottom-left-radius: 0px;
  border-top-left-radius: 0px;
}
.c .pagination-sm > li:last-child > a,
.c .pagination-sm > li:last-child > span {
  border-bottom-right-radius: 0px;
  border-top-right-radius: 0px;
}
.c .label {
  display: inline;
  padding: .2em .6em .3em;
  font-size: 75%;
  font-weight: bold;
  line-height: 1;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: .25em;
}
.c a.label:hover,
.c a.label:focus {
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
}
.c .label:empty {
  display: none;
}
.c .btn .label {
  position: relative;
  top: -1px;
}
.c .label-default {
  background-color: #777777;
}
.c .label-default[href]:hover,
.c .label-default[href]:focus {
  background-color: #5e5e5e;
}
.c .label-primary {
  background-color: #213469;
}
.c .label-primary[href]:hover,
.c .label-primary[href]:focus {
  background-color: #152142;
}
.c .label-success {
  background-color: #79bc43;
}
.c .label-success[href]:hover,
.c .label-success[href]:focus {
  background-color: #619636;
}
.c .label-info {
  background-color: #5c2c81;
}
.c .label-info[href]:hover,
.c .label-info[href]:focus {
  background-color: #411f5b;
}
.c .label-warning {
  background-color: #ee7623;
}
.c .label-warning[href]:hover,
.c .label-warning[href]:focus {
  background-color: #ce5e10;
}
.c .label-danger {
  background-color: #ed1c24;
}
.c .label-danger[href]:hover,
.c .label-danger[href]:focus {
  background-color: #c61017;
}
.c .media,
.c .media-body {
  overflow: hidden;
  zoom: 1;
}
.c .media,
.c .media .media {
  margin-top: 15px;
}
.c .media:first-child {
  margin-top: 0;
}
.c .media-object {
  display: block;
}
.c .media-heading {
  margin: 0 0 5px;
}
.c .media > .pull-left {
  margin-right: 10px;
}
.c .media > .pull-right {
  margin-left: 10px;
}
.c .media-list {
  padding-left: 0;
  list-style: none;
}
.c .well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 0px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}
.c .well blockquote {
  border-color: #ddd;
  border-color: rgba(0, 0, 0, 0.15);
}
.c .well-lg {
  padding: 24px;
  border-radius: 0px;
}
.c .well-sm {
  padding: 9px;
  border-radius: 0px;
}
.c .carousel {
  position: relative;
}
.c .carousel-inner {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.c .carousel-inner > .item {
  display: none;
  position: relative;
  transition: 0.6s ease-in-out left;
}
.c .carousel-inner > .item > img,
.c .carousel-inner > .item > a > img {
  line-height: 1;
}
.c .carousel-inner > .active,
.c .carousel-inner > .next,
.c .carousel-inner > .prev {
  display: block;
}
.c .carousel-inner > .active {
  left: 0;
}
.c .carousel-inner > .next,
.c .carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%;
}
.c .carousel-inner > .next {
  left: 100%;
}
.c .carousel-inner > .prev {
  left: -100%;
}
.c .carousel-inner > .next.left,
.c .carousel-inner > .prev.right {
  left: 0;
}
.c .carousel-inner > .active.left {
  left: -100%;
}
.c .carousel-inner > .active.right {
  left: 100%;
}
.c .carousel-control {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 15%;
  opacity: 0.5;
  filter: alpha(opacity=50);
  font-size: 20px;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}
.c .carousel-control.left {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
}
.c .carousel-control.right {
  left: auto;
  right: 0;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
}
.c .carousel-control:hover,
.c .carousel-control:focus {
  outline: 0;
  color: #ffffff;
  text-decoration: none;
  opacity: 0.9;
  filter: alpha(opacity=90);
}
.c .carousel-control .icon-prev,
.c .carousel-control .icon-next,
.c .carousel-control .glyphicon-chevron-left,
.c .carousel-control .glyphicon-chevron-right {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: inline-block;
}
.c .carousel-control .icon-prev,
.c .carousel-control .glyphicon-chevron-left {
  left: 50%;
  margin-left: -10px;
}
.c .carousel-control .icon-next,
.c .carousel-control .glyphicon-chevron-right {
  right: 50%;
  margin-right: -10px;
}
.c .carousel-control .icon-prev,
.c .carousel-control .icon-next {
  width: 20px;
  height: 20px;
  margin-top: -10px;
  font-family: serif;
}
.c .carousel-control .icon-prev:before {
  content: '\2039';
}
.c .carousel-control .icon-next:before {
  content: '\203a';
}
.c .carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  margin-left: -30%;
  padding-left: 0;
  list-style: none;
  text-align: center;
}
.c .carousel-indicators li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 1px;
  text-indent: -999px;
  border: 1px solid #ffffff;
  border-radius: 10px;
  cursor: pointer;
  background-color: #000 \9;
  background-color: rgba(0, 0, 0, 0);
}
.c .carousel-indicators .active {
  margin: 0;
  width: 12px;
  height: 12px;
  background-color: #ffffff;
}
.c .carousel-caption {
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: 20px;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}
.c .carousel-caption .btn {
  text-shadow: none;
}
.c .clearfix:before,
.c .clearfix:after,
.c .dl-horizontal dd:before,
.c .dl-horizontal dd:after,
.c .container:before,
.c .container:after,
.c .container-fluid:before,
.c .container-fluid:after,
.c .row:before,
.c .row:after,
.c .form-horizontal .form-group:before,
.c .form-horizontal .form-group:after,
.c .btn-toolbar:before,
.c .btn-toolbar:after,
.c .btn-group-vertical > .btn-group:before,
.c .btn-group-vertical > .btn-group:after,
.c .nav:before,
.c .nav:after,
.c .navbar:before,
.c .navbar:after,
.c .navbar-header:before,
.c .navbar-header:after,
.c .navbar-collapse:before,
.c .navbar-collapse:after {
  content: " ";
  display: table;
}
.c .clearfix:after,
.c .dl-horizontal dd:after,
.c .container:after,
.c .container-fluid:after,
.c .row:after,
.c .form-horizontal .form-group:after,
.c .btn-toolbar:after,
.c .btn-group-vertical > .btn-group:after,
.c .nav:after,
.c .navbar:after,
.c .navbar-header:after,
.c .navbar-collapse:after {
  clear: both;
}
.c .center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.c .pull-right {
  float: right !important;
}
.c .pull-left {
  float: left !important;
}
.c .hide {
  display: none !important;
}
.c .show {
  display: block !important;
}
.c .invisible {
  visibility: hidden;
}
.c .text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.c .hidden {
  display: none !important;
  visibility: hidden !important;
}
.c .affix {
  position: fixed;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
@-ms-viewport {
  width: device-width;
}
.c .visible-xs,
.c .visible-sm,
.c .visible-md,
.c .visible-lg {
  display: none !important;
}
.c .visible-xs-block,
.c .visible-xs-inline,
.c .visible-xs-inline-block,
.c .visible-sm-block,
.c .visible-sm-inline,
.c .visible-sm-inline-block,
.c .visible-md-block,
.c .visible-md-inline,
.c .visible-md-inline-block,
.c .visible-lg-block,
.c .visible-lg-inline,
.c .visible-lg-inline-block {
  display: none !important;
}
.c .visible-print {
  display: none !important;
}
.c .visible-print-block {
  display: none !important;
}
.c .visible-print-inline {
  display: none !important;
}
.c .visible-print-inline-block {
  display: none !important;
}
@media (min-width: 0) {
  .c .dl-horizontal dt {
    float: left;
    width: 160px;
    clear: left;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .c .dl-horizontal dd {
    margin-left: 180px;
  }
  .c .navbar-right .dropdown-menu {
    left: auto;
    right: 0;
  }
  .c .navbar-right .dropdown-menu-left {
    left: 0;
    right: auto;
  }
  .c .navbar {
    border-radius: 0px;
  }
  .c .navbar-header {
    float: left;
  }
  .c .navbar-collapse {
    width: auto;
    border-top: 0;
    box-shadow: none;
  }
  .c .navbar-collapse.collapse {
    display: block !important;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important;
  }
  .c .navbar-collapse.in {
    overflow-y: visible;
  }
  .c .navbar-fixed-top .navbar-collapse,
  .c .navbar-static-top .navbar-collapse,
  .c .navbar-fixed-bottom .navbar-collapse {
    padding-left: 0;
    padding-right: 0;
  }
  .c .container > .navbar-header,
  .c .container-fluid > .navbar-header,
  .c .container > .navbar-collapse,
  .c .container-fluid > .navbar-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .c .navbar-static-top {
    border-radius: 0;
  }
  .c .navbar-fixed-top,
  .c .navbar-fixed-bottom {
    border-radius: 0;
  }
  .c .navbar > .container .navbar-brand,
  .c .navbar > .container-fluid .navbar-brand {
    margin-left: -15px;
  }
  .c .navbar-toggle {
    display: none;
  }
  .c .navbar-nav {
    float: left;
    margin: 0;
  }
  .c .navbar-nav > li {
    float: left;
  }
  .c .navbar-nav > li > a {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .c .navbar-nav.navbar-right:last-child {
    margin-right: -15px;
  }
  .c .navbar-left {
    float: left !important;
  }
  .c .navbar-right {
    float: right !important;
  }
  .c .navbar-form {
    width: auto;
    border: 0;
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 0;
    box-shadow: none;
  }
  .c .navbar-form.navbar-right:last-child {
    margin-right: -15px;
  }
  .c .navbar-text {
    float: left;
    margin-left: 15px;
    margin-right: 15px;
  }
  .c .navbar-text.navbar-right:last-child {
    margin-right: 0;
  }
}
@media (min-width: 768px) {
  .c .lead {
    font-size: 21px;
  }
  .c .container {
    width: 750px;
  }
  .c .col-sm-1,
  .c .col-sm-2,
  .c .col-sm-3,
  .c .col-sm-4,
  .c .col-sm-5,
  .c .col-sm-6,
  .c .col-sm-7,
  .c .col-sm-8,
  .c .col-sm-9,
  .c .col-sm-10,
  .c .col-sm-11,
  .c .col-sm-12 {
    float: left;
  }
  .c .col-sm-12 {
    width: 100%;
  }
  .c .col-sm-11 {
    width: 91.66666667%;
  }
  .c .col-sm-10 {
    width: 83.33333333%;
  }
  .c .col-sm-9 {
    width: 75%;
  }
  .c .col-sm-8 {
    width: 66.66666667%;
  }
  .c .col-sm-7 {
    width: 58.33333333%;
  }
  .c .col-sm-6 {
    width: 50%;
  }
  .c .col-sm-5 {
    width: 41.66666667%;
  }
  .c .col-sm-4 {
    width: 33.33333333%;
  }
  .c .col-sm-3 {
    width: 25%;
  }
  .c .col-sm-2 {
    width: 16.66666667%;
  }
  .c .col-sm-1 {
    width: 8.33333333%;
  }
  .c .col-sm-pull-12 {
    right: 100%;
  }
  .c .col-sm-pull-11 {
    right: 91.66666667%;
  }
  .c .col-sm-pull-10 {
    right: 83.33333333%;
  }
  .c .col-sm-pull-9 {
    right: 75%;
  }
  .c .col-sm-pull-8 {
    right: 66.66666667%;
  }
  .c .col-sm-pull-7 {
    right: 58.33333333%;
  }
  .c .col-sm-pull-6 {
    right: 50%;
  }
  .c .col-sm-pull-5 {
    right: 41.66666667%;
  }
  .c .col-sm-pull-4 {
    right: 33.33333333%;
  }
  .c .col-sm-pull-3 {
    right: 25%;
  }
  .c .col-sm-pull-2 {
    right: 16.66666667%;
  }
  .c .col-sm-pull-1 {
    right: 8.33333333%;
  }
  .c .col-sm-pull-0 {
    right: auto;
  }
  .c .col-sm-push-12 {
    left: 100%;
  }
  .c .col-sm-push-11 {
    left: 91.66666667%;
  }
  .c .col-sm-push-10 {
    left: 83.33333333%;
  }
  .c .col-sm-push-9 {
    left: 75%;
  }
  .c .col-sm-push-8 {
    left: 66.66666667%;
  }
  .c .col-sm-push-7 {
    left: 58.33333333%;
  }
  .c .col-sm-push-6 {
    left: 50%;
  }
  .c .col-sm-push-5 {
    left: 41.66666667%;
  }
  .c .col-sm-push-4 {
    left: 33.33333333%;
  }
  .c .col-sm-push-3 {
    left: 25%;
  }
  .c .col-sm-push-2 {
    left: 16.66666667%;
  }
  .c .col-sm-push-1 {
    left: 8.33333333%;
  }
  .c .col-sm-push-0 {
    left: auto;
  }
  .c .col-sm-offset-12 {
    margin-left: 100%;
  }
  .c .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .c .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .c .col-sm-offset-9 {
    margin-left: 75%;
  }
  .c .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .c .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .c .col-sm-offset-6 {
    margin-left: 50%;
  }
  .c .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .c .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .c .col-sm-offset-3 {
    margin-left: 25%;
  }
  .c .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .c .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .c .col-sm-offset-0 {
    margin-left: 0%;
  }
  .c .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .c .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .c .form-inline .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  .c .form-inline .input-group .input-group-addon,
  .c .form-inline .input-group .input-group-btn,
  .c .form-inline .input-group .form-control {
    width: auto;
  }
  .c .form-inline .input-group > .form-control {
    width: 100%;
  }
  .c .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .c .form-inline .radio,
  .c .form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .c .form-inline .radio label,
  .c .form-inline .checkbox label {
    padding-left: 0;
  }
  .c .form-inline .radio input[type="radio"],
  .c .form-inline .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }
  .c .form-inline .has-feedback .form-control-feedback {
    top: 0;
  }
  .c .form-horizontal .control-label {
    text-align: right;
    margin-bottom: 0;
    padding-top: 7px;
  }
  .c .form-horizontal .form-group-lg .control-label {
    padding-top: 14.3px;
  }
  .c .form-horizontal .form-group-sm .control-label {
    padding-top: 6px;
  }
  .c .nav-tabs.nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  .c .nav-tabs.nav-justified > li > a {
    margin-bottom: 0;
  }
  .c .nav-tabs.nav-justified > li > a {
    border-bottom: 1px solid none;
    border-radius: 0px 0px 0 0;
  }
  .c .nav-tabs.nav-justified > .active > a,
  .c .nav-tabs.nav-justified > .active > a:hover,
  .c .nav-tabs.nav-justified > .active > a:focus {
    border-bottom-color: none;
  }
  .c .nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  .c .nav-justified > li > a {
    margin-bottom: 0;
  }
  .c .nav-tabs-justified > li > a {
    border-bottom: 1px solid none;
    border-radius: 0px 0px 0 0;
  }
  .c .nav-tabs-justified > .active > a,
  .c .nav-tabs-justified > .active > a:hover,
  .c .nav-tabs-justified > .active > a:focus {
    border-bottom-color: none;
  }
  .c .navbar-form .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .c .navbar-form .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .c .navbar-form .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  .c .navbar-form .input-group .input-group-addon,
  .c .navbar-form .input-group .input-group-btn,
  .c .navbar-form .input-group .form-control {
    width: auto;
  }
  .c .navbar-form .input-group > .form-control {
    width: 100%;
  }
  .c .navbar-form .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .c .navbar-form .radio,
  .c .navbar-form .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .c .navbar-form .radio label,
  .c .navbar-form .checkbox label {
    padding-left: 0;
  }
  .c .navbar-form .radio input[type="radio"],
  .c .navbar-form .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }
  .c .navbar-form .has-feedback .form-control-feedback {
    top: 0;
  }
}
@media screen and (min-width: 768px) {
  .c .carousel-control .glyphicon-chevron-left,
  .c .carousel-control .glyphicon-chevron-right,
  .c .carousel-control .icon-prev,
  .c .carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -15px;
    font-size: 30px;
  }
  .c .carousel-control .glyphicon-chevron-left,
  .c .carousel-control .icon-prev {
    margin-left: -15px;
  }
  .c .carousel-control .glyphicon-chevron-right,
  .c .carousel-control .icon-next {
    margin-right: -15px;
  }
  .c .carousel-caption {
    left: 20%;
    right: 20%;
    padding-bottom: 30px;
  }
  .c .carousel-indicators {
    bottom: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .c .visible-sm {
    display: block !important;
  }
  .c table.visible-sm {
    display: table;
  }
  .c tr.visible-sm {
    display: table-row !important;
  }
  .c th.visible-sm,
  .c td.visible-sm {
    display: table-cell !important;
  }
  .c .visible-sm-block {
    display: block !important;
  }
  .c .visible-sm-inline {
    display: inline !important;
  }
  .c .visible-sm-inline-block {
    display: inline-block !important;
  }
  .c .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) {
  .c .container {
    width: 970px;
  }
  .c .col-md-1,
  .c .col-md-2,
  .c .col-md-3,
  .c .col-md-4,
  .c .col-md-5,
  .c .col-md-6,
  .c .col-md-7,
  .c .col-md-8,
  .c .col-md-9,
  .c .col-md-10,
  .c .col-md-11,
  .c .col-md-12 {
    float: left;
  }
  .c .col-md-12 {
    width: 100%;
  }
  .c .col-md-11 {
    width: 91.66666667%;
  }
  .c .col-md-10 {
    width: 83.33333333%;
  }
  .c .col-md-9 {
    width: 75%;
  }
  .c .col-md-8 {
    width: 66.66666667%;
  }
  .c .col-md-7 {
    width: 58.33333333%;
  }
  .c .col-md-6 {
    width: 50%;
  }
  .c .col-md-5 {
    width: 41.66666667%;
  }
  .c .col-md-4 {
    width: 33.33333333%;
  }
  .c .col-md-3 {
    width: 25%;
  }
  .c .col-md-2 {
    width: 16.66666667%;
  }
  .c .col-md-1 {
    width: 8.33333333%;
  }
  .c .col-md-pull-12 {
    right: 100%;
  }
  .c .col-md-pull-11 {
    right: 91.66666667%;
  }
  .c .col-md-pull-10 {
    right: 83.33333333%;
  }
  .c .col-md-pull-9 {
    right: 75%;
  }
  .c .col-md-pull-8 {
    right: 66.66666667%;
  }
  .c .col-md-pull-7 {
    right: 58.33333333%;
  }
  .c .col-md-pull-6 {
    right: 50%;
  }
  .c .col-md-pull-5 {
    right: 41.66666667%;
  }
  .c .col-md-pull-4 {
    right: 33.33333333%;
  }
  .c .col-md-pull-3 {
    right: 25%;
  }
  .c .col-md-pull-2 {
    right: 16.66666667%;
  }
  .c .col-md-pull-1 {
    right: 8.33333333%;
  }
  .c .col-md-pull-0 {
    right: auto;
  }
  .c .col-md-push-12 {
    left: 100%;
  }
  .c .col-md-push-11 {
    left: 91.66666667%;
  }
  .c .col-md-push-10 {
    left: 83.33333333%;
  }
  .c .col-md-push-9 {
    left: 75%;
  }
  .c .col-md-push-8 {
    left: 66.66666667%;
  }
  .c .col-md-push-7 {
    left: 58.33333333%;
  }
  .c .col-md-push-6 {
    left: 50%;
  }
  .c .col-md-push-5 {
    left: 41.66666667%;
  }
  .c .col-md-push-4 {
    left: 33.33333333%;
  }
  .c .col-md-push-3 {
    left: 25%;
  }
  .c .col-md-push-2 {
    left: 16.66666667%;
  }
  .c .col-md-push-1 {
    left: 8.33333333%;
  }
  .c .col-md-push-0 {
    left: auto;
  }
  .c .col-md-offset-12 {
    margin-left: 100%;
  }
  .c .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .c .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .c .col-md-offset-9 {
    margin-left: 75%;
  }
  .c .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .c .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .c .col-md-offset-6 {
    margin-left: 50%;
  }
  .c .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .c .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .c .col-md-offset-3 {
    margin-left: 25%;
  }
  .c .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .c .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .c .col-md-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .c .visible-md {
    display: block !important;
  }
  .c table.visible-md {
    display: table;
  }
  .c tr.visible-md {
    display: table-row !important;
  }
  .c th.visible-md,
  .c td.visible-md {
    display: table-cell !important;
  }
  .c .visible-md-block {
    display: block !important;
  }
  .c .visible-md-inline {
    display: inline !important;
  }
  .c .visible-md-inline-block {
    display: inline-block !important;
  }
  .c .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .c .container {
    width: 1170px;
  }
  .c .col-lg-1,
  .c .col-lg-2,
  .c .col-lg-3,
  .c .col-lg-4,
  .c .col-lg-5,
  .c .col-lg-6,
  .c .col-lg-7,
  .c .col-lg-8,
  .c .col-lg-9,
  .c .col-lg-10,
  .c .col-lg-11,
  .c .col-lg-12 {
    float: left;
  }
  .c .col-lg-12 {
    width: 100%;
  }
  .c .col-lg-11 {
    width: 91.66666667%;
  }
  .c .col-lg-10 {
    width: 83.33333333%;
  }
  .c .col-lg-9 {
    width: 75%;
  }
  .c .col-lg-8 {
    width: 66.66666667%;
  }
  .c .col-lg-7 {
    width: 58.33333333%;
  }
  .c .col-lg-6 {
    width: 50%;
  }
  .c .col-lg-5 {
    width: 41.66666667%;
  }
  .c .col-lg-4 {
    width: 33.33333333%;
  }
  .c .col-lg-3 {
    width: 25%;
  }
  .c .col-lg-2 {
    width: 16.66666667%;
  }
  .c .col-lg-1 {
    width: 8.33333333%;
  }
  .c .col-lg-pull-12 {
    right: 100%;
  }
  .c .col-lg-pull-11 {
    right: 91.66666667%;
  }
  .c .col-lg-pull-10 {
    right: 83.33333333%;
  }
  .c .col-lg-pull-9 {
    right: 75%;
  }
  .c .col-lg-pull-8 {
    right: 66.66666667%;
  }
  .c .col-lg-pull-7 {
    right: 58.33333333%;
  }
  .c .col-lg-pull-6 {
    right: 50%;
  }
  .c .col-lg-pull-5 {
    right: 41.66666667%;
  }
  .c .col-lg-pull-4 {
    right: 33.33333333%;
  }
  .c .col-lg-pull-3 {
    right: 25%;
  }
  .c .col-lg-pull-2 {
    right: 16.66666667%;
  }
  .c .col-lg-pull-1 {
    right: 8.33333333%;
  }
  .c .col-lg-pull-0 {
    right: auto;
  }
  .c .col-lg-push-12 {
    left: 100%;
  }
  .c .col-lg-push-11 {
    left: 91.66666667%;
  }
  .c .col-lg-push-10 {
    left: 83.33333333%;
  }
  .c .col-lg-push-9 {
    left: 75%;
  }
  .c .col-lg-push-8 {
    left: 66.66666667%;
  }
  .c .col-lg-push-7 {
    left: 58.33333333%;
  }
  .c .col-lg-push-6 {
    left: 50%;
  }
  .c .col-lg-push-5 {
    left: 41.66666667%;
  }
  .c .col-lg-push-4 {
    left: 33.33333333%;
  }
  .c .col-lg-push-3 {
    left: 25%;
  }
  .c .col-lg-push-2 {
    left: 16.66666667%;
  }
  .c .col-lg-push-1 {
    left: 8.33333333%;
  }
  .c .col-lg-push-0 {
    left: auto;
  }
  .c .col-lg-offset-12 {
    margin-left: 100%;
  }
  .c .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  .c .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  .c .col-lg-offset-9 {
    margin-left: 75%;
  }
  .c .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  .c .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  .c .col-lg-offset-6 {
    margin-left: 50%;
  }
  .c .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  .c .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  .c .col-lg-offset-3 {
    margin-left: 25%;
  }
  .c .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  .c .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .c .col-lg-offset-0 {
    margin-left: 0%;
  }
  .c .visible-lg {
    display: block !important;
  }
  .c table.visible-lg {
    display: table;
  }
  .c tr.visible-lg {
    display: table-row !important;
  }
  .c th.visible-lg,
  .c td.visible-lg {
    display: table-cell !important;
  }
  .c .visible-lg-block {
    display: block !important;
  }
  .c .visible-lg-inline {
    display: inline !important;
  }
  .c .visible-lg-inline-block {
    display: inline-block !important;
  }
  .c .hidden-lg {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .c .table-responsive {
    width: 100%;
    margin-bottom: 15px;
    overflow-y: hidden;
    overflow-x: auto;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #dddddd;
    -webkit-overflow-scrolling: touch;
  }
  .c .table-responsive > .table {
    margin-bottom: 0;
  }
  .c .table-responsive > .table > thead > tr > th,
  .c .table-responsive > .table > tbody > tr > th,
  .c .table-responsive > .table > tfoot > tr > th,
  .c .table-responsive > .table > thead > tr > td,
  .c .table-responsive > .table > tbody > tr > td,
  .c .table-responsive > .table > tfoot > tr > td {
    white-space: nowrap;
  }
  .c .table-responsive > .table-bordered {
    border: 0;
  }
  .c .table-responsive > .table-bordered > thead > tr > th:first-child,
  .c .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .c .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  .c .table-responsive > .table-bordered > thead > tr > td:first-child,
  .c .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .c .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0;
  }
  .c .table-responsive > .table-bordered > thead > tr > th:last-child,
  .c .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .c .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  .c .table-responsive > .table-bordered > thead > tr > td:last-child,
  .c .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .c .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0;
  }
  .c .table-responsive > .table-bordered > tbody > tr:last-child > th,
  .c .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  .c .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .c .table-responsive > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0;
  }
}
@media (max-width: 767px) {
  .c .visible-xs {
    display: block !important;
  }
  .c table.visible-xs {
    display: table;
  }
  .c tr.visible-xs {
    display: table-row !important;
  }
  .c th.visible-xs,
  .c td.visible-xs {
    display: table-cell !important;
  }
  .c .visible-xs-block {
    display: block !important;
  }
  .c .visible-xs-inline {
    display: inline !important;
  }
  .c .visible-xs-inline-block {
    display: inline-block !important;
  }
  .c .hidden-xs {
    display: none !important;
  }
}
@media (max-width: 480px) and (orientation: landscape) {
  .c .navbar-fixed-top .navbar-collapse,
  .c .navbar-fixed-bottom .navbar-collapse {
    max-height: 200px;
  }
}
@media (max-width: -1) {
  .c .navbar-nav .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    box-shadow: none;
  }
  .c .navbar-nav .open .dropdown-menu > li > a,
  .c .navbar-nav .open .dropdown-menu .dropdown-header {
    padding: 5px 15px 5px 25px;
  }
  .c .navbar-nav .open .dropdown-menu > li > a {
    line-height: 20px;
  }
  .c .navbar-nav .open .dropdown-menu > li > a:hover,
  .c .navbar-nav .open .dropdown-menu > li > a:focus {
    background-image: none;
  }
  .c .navbar-form .form-group {
    margin-bottom: 5px;
  }
  .c .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #777777;
  }
  .c .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
  .c .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #333333;
    background-color: rgba(0, 0, 0, 0.2);
  }
  .c .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
  .c .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
  .c .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #555555;
    background-color: #a0a2a3;
  }
  .c .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
  .c .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  .c .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #cccccc;
    background-color: rgba(0, 0, 0, 0.4);
  }
  .c .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
    border-color: #080808;
  }
  .c .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
    background-color: #080808;
  }
  .c .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
    color: #777777;
  }
  .c .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
  .c .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #ffffff;
    background-color: transparent;
  }
  .c .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
  .c .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
  .c .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #ffffff;
    background-color: #080808;
  }
  .c .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
  .c .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  .c .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #444444;
    background-color: transparent;
  }
}
@media print {
  .c .visible-print {
    display: block !important;
  }
  .c table.visible-print {
    display: table;
  }
  .c tr.visible-print {
    display: table-row !important;
  }
  .c th.visible-print,
  .c td.visible-print {
    display: table-cell !important;
  }
  .c .visible-print-block {
    display: block !important;
  }
  .c .visible-print-inline {
    display: inline !important;
  }
  .c .visible-print-inline-block {
    display: inline-block !important;
  }
  .c .hidden-print {
    display: none !important;
  }
}
/*************************************************
 * Libraries: Fontawesome.css
 ************************************************/
.fa.fa-transition {
  transition: 0.2s linear;
}
/*************************************************
 * Libraries: Animate.css
 ************************************************/
/**********************
 * Perfect scrollbar
 *********************/
/*! perfect-scrollbar - v0.5.5
* http://noraesae.github.com/perfect-scrollbar/
* Copyright (c) 2014 Hyunje Alex Jun; Licensed MIT */
.ps-container > .ps-scrollbar-x-rail {
  position: absolute;
  bottom: 3px;
  height: 8px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  opacity: 0;
  filter: alpha(opacity=0);
  -o-transition: background-color 0.2s linear, opacity 0.2s linear;
  -webkit-transition: background-color 0.2s linear, opacity 0.2s linear;
  -moz-transition: background-color 0.2s linear, opacity 0.2s linear;
  transition: background-color 0.2s linear, opacity 0.2s linear;
}
.ps-container:hover > .ps-scrollbar-x-rail {
  opacity: .6;
  filter: alpha(opacity=60);
}
.ps-container > .ps-scrollbar-x-rail:hover {
  background-color: #eee;
  opacity: .9;
  filter: alpha(opacity=90);
}
.ps-container > .ps-scrollbar-x-rail.in-scrolling {
  background-color: #eee;
  opacity: .9;
  filter: alpha(opacity=90);
}
.ps-container > .ps-scrollbar-y-rail {
  position: absolute;
  right: 3px;
  width: 8px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  opacity: 0;
  filter: alpha(opacity=0);
  -o-transition: background-color 0.2s linear, opacity 0.2s linear;
  -webkit-transition: background-color 0.2s linear, opacity 0.2s linear;
  -moz-transition: background-color 0.2s linear, opacity 0.2s linear;
  transition: background-color 0.2s linear, opacity 0.2s linear;
}
.ps-container:hover > .ps-scrollbar-y-rail {
  opacity: .6;
  filter: alpha(opacity=60);
}
.ps-container > .ps-scrollbar-y-rail:hover {
  background-color: #eee;
  opacity: .9;
  filter: alpha(opacity=90);
}
.ps-container > .ps-scrollbar-y-rail.in-scrolling {
  background-color: #eee;
  opacity: .9;
  filter: alpha(opacity=90);
}
.ps-container > .ps-scrollbar-x-rail > .ps-scrollbar-x {
  position: absolute;
  bottom: 0;
  height: 8px;
  background-color: #aaa;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -o-transition: background-color 0.2s linear;
  -webkit-transition: background-color 0.2s linear;
  -moz-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
}
.ps-container > .ps-scrollbar-x-rail:hover > .ps-scrollbar-x {
  background-color: #999999;
}
.ps-container > .ps-scrollbar-y-rail > .ps-scrollbar-y {
  position: absolute;
  right: 0;
  width: 8px;
  background-color: #aaa;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -o-transition: background-color 0.2s linear;
  -webkit-transition: background-color 0.2s linear;
  -moz-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
}
.ps-container > .ps-scrollbar-y-rail:hover > .ps-scrollbar-y {
  background-color: #999999;
}
/**
 * CM SITE specific CSS ONLY
 * -------------------------
 */
html,
body {
  height: 100%;
  max-height: 100%;
  overflow: hidden;
  position: relative;
  margin-top: 0px !important;
}
body.admin-bar .content-wrap,
body.admin-bar .c-content-wrap {
  top: 81px;
}
@media (max-width: 767px) {
  body.admin-bar .content-wrap,
  body.admin-bar .c-content-wrap {
    top: 95px;
  }
}
body.admin-bar .navbar-fixed-top {
  top: 32px;
}
@media (max-width: 767px) {
  body.admin-bar .navbar-fixed-top {
    top: 46px;
  }
}
.content-wrap.c-content-wrap {
  /*perspective: 1000px;*/
  display: block;
}
.content-wrap.c-content-wrap .content-main {
  display: block;
  /*
               animation: contentMainAppear 0.9s 1 0.5s ease-out;
               animation-fill-mode: both;
               //transform-origin: 100% 0%;
               @keyframes contentMainAppear {
               0% { transform: translateX(400px) //rotateY(-89deg); opacity: 0; }
               100% { transform: translateX(0px) ///rotateY(0deg); opacity: 1; }
               }
                */
}
.content-wrap {
  position: absolute;
  top: 47px;
  left: 0;
  right: 0;
  max-height: 100%;
  bottom: 0;
}
.content-wrap .content-main,
.content-wrap .sidebar {
  position: absolute;
  top: 0;
  bottom: 0;
  overflow: hidden;
  height: auto;
  display: inline-block;
  width: 100%;
  overflow-y: scroll;
}
.content-wrap .content-main {
  z-index: 1020;
}
@media (max-width: 767px) {
  .content-wrap .content-main > .container-fluid {
    padding: 0;
  }
  .content-wrap .content-main > .container-fluid > [class*="col-"] {
    padding: 0;
  }
}
.content-wrap .sidebar {
  z-index: 1025;
  visibility: hidden;
  left: -280px;
}
.content-wrap .sidebar.open {
  left: 0;
  visibility: visible;
}
@media (min-width: 768px) {
  .content-wrap.sidebarOpen .content-main {
    opacity: 0.5;
    filter: blur(5px);
  }
  .content-wrap .sidebar {
    left: -280px;
    display: block;
    width: 280px;
    right: auto;
    top: 0;
  }
  .content-wrap .sidebar.open {
    top: 0;
    left: 0;
  }
}
@media (min-width: 992px) {
  .content-wrap.sidebarOpen .content-main {
    transform: none;
    opacity: 1;
    filter: none;
  }
  .content-wrap .sidebar {
    visibility: visible;
    width: 280px;
    left: 0;
    top: 0;
  }
  .content-wrap .content-main {
    transform: none;
    opacity: 1;
    padding-left: 280px !important;
  }
}
.content-wrap .content-main,
.content-wrap .sidebar {
  transition: 0.5s linear;
}
.page-template-full-width-no-ads section.content-wrap {
  overflow: auto;
}
.page-template-full-width-no-ads section.content-wrap .vidyard_player {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: 640px;
  /* These should be the dimensions of your player */
  max-height: 360px;
}
.page-template-full-width-no-ads section.content-wrap .vidyard_player > span {
  width: 100% !important;
  height: 100% !important;
  margin: 0 auto !important;
}
.page-template-full-width-no-ads section.content-wrap .theiaPostSlider_slides .row {
  margin-left: 0;
  margin-right: 0;
  padding-bottom: 0;
}
.page-template-full-width-no-ads section.content-wrap .theiaPostSlider_slides > div > div {
  border: 3px solid #333;
  border-width: 0 3px 0 3px;
}
.page-template-full-width-no-ads section.content-wrap .theiaPostSlider_slides > div > div:last-child {
  padding: 0 30px 30px 30px;
  border-width: 0 3px 3px 3px;
}
.page-template-full-width-no-ads section.content-wrap .theiaPostSlider_slides > div > div:last-child div {
  margin-top: 0;
  padding-top: 0;
}
.page-template-full-width-no-ads section.content-wrap .theiaPostSlider_slides > div > div:first-child {
  border: 3px solid #333;
  border-width: 3px;
  padding: 30px;
}
.page-template-full-width-no-ads section.content-wrap .theiaPostSlider_slides > div > div:first-child + div {
  padding: 30px;
  padding-bottom: 10px;
}
.page-template-full-width-no-ads section.content-wrap .theiaPostSlider_slides div {
  font-size: 14px;
  background-color: #FFF;
}
.page-template-full-width-no-ads section.content-wrap .theiaPostSlider_slides div h1 {
  font-size: 26px;
}
.page-template-full-width-no-ads section.content-wrap .theiaPostSlider_slides div h3 {
  margin-top: 0;
  padding-top: 0;
  font-size: 24px;
}
.page-template-full-width-no-ads section.content-wrap .theiaPostSlider_slides div h1,
.page-template-full-width-no-ads section.content-wrap .theiaPostSlider_slides div h2,
.page-template-full-width-no-ads section.content-wrap .theiaPostSlider_slides div h3,
.page-template-full-width-no-ads section.content-wrap .theiaPostSlider_slides div p {
  color: #0C508B;
}
.page-template-full-width-no-ads section.content-wrap .theiaPostSlider_slides ul {
  padding-left: 26px;
  list-style: none;
}
.page-template-full-width-no-ads section.content-wrap .theiaPostSlider_slides ul li {
  margin-bottom: 15px;
}
.page-template-full-width-no-ads section.content-wrap .theiaPostSlider_slides ul li a {
  color: #0C508B;
}
.page-template-full-width-no-ads section.content-wrap .theiaPostSlider_slides ul li a i.fa-check-circle {
  color: #FFF;
  display: block;
  font-size: 16px;
  padding-bottom: 30px;
  text-indent: -26px;
  float: left;
  color: #79bc43 !important;
}
.c {
  /* =WordPress Core
-------------------------------------------------------------- */
}
.c .module {
  margin-bottom: 28px;
}
.c .module.basic,
.c .module.color {
  position: relative;
  z-index: 1000;
  padding: 18px;
  padding-top: 54px;
  padding-bottom: 18px;
}
.c .module.basic > .module-title-bar,
.c .module.color > .module-title-bar {
  display: block;
  width: 100%;
  margin: 0;
  position: absolute;
  z-index: 1001;
  top: 0;
  left: 0;
  right: 0;
  background-color: #b1b2b4;
}
.c .module.basic > .module-title-bar > .title,
.c .module.color > .module-title-bar > .title {
  display: inline-block;
  font-weight: normal;
  font-style: italic;
  font-size: 18px;
  text-transform: uppercase;
  margin: 0;
  padding: 5px 8px 5px 5px;
  font-family: 'Roboto Condensed', sans-serif;
}
.c .module.basic > .content,
.c .module.color > .content {
  position: relative;
}
.c .module.basic {
  background: #eaeef1;
  border: 1px solid #dbe2e7;
  padding-bottom: 3em;
}
.c .module.basic > .module-title-bar {
  line-height: 1;
}
.c .module.basic > .module-title-bar > .title {
  color: #ffffff;
  line-height: 1;
}
.c .module.basic.no-title {
  padding-top: 1em;
}
.c .module.basic.no-margin {
  margin: 0;
}
.c .module.color {
  border-bottom: 2px solid #b1b2b4;
  position: relative;
  padding-bottom: 2em;
}
.c .module.color::after {
  position: absolute;
  content: '';
  z-index: 1002;
  left: 0;
  bottom: -2px;
  width: 28px;
  height: 30px;
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABwAAAAeCAYAAAA/xX6fAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyNpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChNYWNpbnRvc2gpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjExOUVGMDYyMjk1MjExRTRBMzg3QkY1NTE1RERFMTZCIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjExOUVGMDYzMjk1MjExRTRBMzg3QkY1NTE1RERFMTZCIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6MjE0MTJFRjUyOTUwMTFFNEEzODdCRjU1MTVEREUxNkIiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6MjE0MTJFRjYyOTUwMTFFNEEzODdCRjU1MTVEREUxNkIiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz55VJyUAAABqUlEQVR42rxXbUrDQBDNxiRNUvUE6xHU+tV8aO1vQSz1pp5B8J/gHaoInqESZ2UWhnE2RpPswqPN6zJv583shKoGVuBxhQDlW9CsA9+C74C1T8ES8OAjU4U9EwG2yGnAZuwMt4R7G9NeJdyKGWaYjZFpxJ7ngGfAJ+nezRiWmrtYA16ImFmvgNWgKRpLAQUgw+8UC8AOQDcDLalL7VoAHsnzIN0rdWkKuAY8sb0fgPuhLLWIAKXNnEARvpe9NKipVYWf/CBL9qz7ChqRWhAyuBK4GHDbR1AKGpEupXwKOMTfdZ8MadAQa5YwPsdD7P/X3sCBS0ctZ8IhzOFu+gi6GucMg1POiB8Dpl0z5UELrBHlpphZLoidMl53FVRYm1hokDmrGR17qWDvqotgIdgVoF0Txk2wxpnDobwtU1fT7AKOBN44cY5XgvMV4/VfBM2V2BPsWgp7E+RjYXLd/SaoWiZOKQS13ZsIfI37tUvQ2hILE6dqGXtKyLjEsvywl3ed1CCVo6EuhP2q5XDrhk0W5bAxFDI+EcTsq43HyPBqfb/alOf/MsGXAAMA2/NMxG0/ZicAAAAASUVORK5CYII=');
  background-color: #b1b2b4;
  background-repeat: no-repeat;
}
.c .module.color,
.c .module.color .spinner {
  background: #ffffff;
}
.c .module.color > .module-title-bar {
  line-height: 0.8;
}
.c .module.color > .module-title-bar > .title {
  color: #ffffff;
  line-height: 1;
}
.c .module.color > .content {
  min-height: 330px;
}
.c .module.color.brand-primary {
  border-color: #213469;
}
.c .module.color.brand-primary::after {
  background-color: #213469;
}
.c .module.color.brand-primary > .module-title-bar {
  background-color: #213469;
}
.c .module.color.brand-primary .vary-bg {
  background-color: #213469 !important;
}
.c .module.color.brand-secondary {
  border-color: #f6b11f;
}
.c .module.color.brand-secondary::after {
  background-color: #f6b11f;
}
.c .module.color.brand-secondary > .module-title-bar {
  background-color: #f6b11f;
}
.c .module.color.brand-secondary .vary-bg {
  background-color: #f6b11f !important;
}
.c .module.color.brand-success {
  border-color: #79bc43;
}
.c .module.color.brand-success::after {
  background-color: #79bc43;
}
.c .module.color.brand-success > .module-title-bar {
  background-color: #79bc43;
}
.c .module.color.brand-success .vary-bg {
  background-color: #79bc43 !important;
}
.c .module.color.brand-info {
  border-color: #5c2c81;
}
.c .module.color.brand-info::after {
  background-color: #5c2c81;
}
.c .module.color.brand-info > .module-title-bar {
  background-color: #5c2c81;
}
.c .module.color.brand-info .vary-bg {
  background-color: #5c2c81 !important;
}
.c .module.color.brand-warning {
  border-color: #ee7623;
}
.c .module.color.brand-warning::after {
  background-color: #ee7623;
}
.c .module.color.brand-warning > .module-title-bar {
  background-color: #ee7623;
}
.c .module.color.brand-warning .vary-bg {
  background-color: #ee7623 !important;
}
.c .module.color.brand-danger {
  border-color: #ed1c24;
}
.c .module.color.brand-danger::after {
  background-color: #ed1c24;
}
.c .module.color.brand-danger > .module-title-bar {
  background-color: #ed1c24;
}
.c .module.color.brand-danger .vary-bg {
  background-color: #ed1c24 !important;
}
.c .module.ad > .content {
  border: 1px solid #b1b2b4;
}
.c .module.ad > .footer {
  text-align: right;
}
.c .module.ad > .footer > .footer-text {
  font-size: 12px;
  color: #ed1c24;
  font-style: italic;
}
.c .module.tabs {
  background: #ffffff;
}
.c .module.tabs .nav-tabs {
  margin-top: 0;
}
.c .module.tabs .nav-tabs > li > a {
  color: #ffffff;
  padding: 5px 8px 5px 5px;
  background: #b1b2b4;
  font-weight: normal;
  font-style: italic;
  font-size: 18px;
  text-transform: uppercase;
  font-family: 'Roboto Condensed', sans-serif;
  margin: 0;
  border: none !important;
  cursor: pointer;
}
.c .module.tabs .nav-tabs > li.active > a {
  color: #ed1c24;
  background: transparent;
}
.c .module.tabs .tab-content .tab-pane {
  padding: 18px;
  padding-top: 27px;
  padding-bottom: 18px;
  background: #605b55;
}
.c .module.tabs .tab-content .tab-pane .content {
  position: relative;
}
.c .module.tabs .tab-content .tab-pane.active {
  background: transparent;
}
.c .module.blank {
  border: 1px solid #b1b2b4;
  background: #fff;
  padding: 0;
  margin: 0;
}
.c .module.blank.brand-info {
  border-color: #5c2c81;
}
.c .module.blank.brand-success {
  border-color: #79bc43;
}
.c .module.blank.brand-danger {
  border-color: #ed1c24;
}
.c .module.blank.brand-secondary {
  border-color: #f6b11f;
}
.c .module.blank.brand-warning {
  border-color: #ee7623;
}
.c .module.blank.brand-primary {
  border-color: #213469;
}
.c .module.blank > .content {
  padding: 0.5em;
}
.c .module.blank > .module-title-bar {
  position: relative;
}
.c .module.blank > .module-title-bar,
.c .module.blank > .module-title-bar > .title {
  background: none !important;
  font-size: 14px;
  color: #ee7623;
  text-transform: capitalize;
}
.c .module.blank > .module-title-bar > .title {
  padding: 0.5em;
}
.c .module.blank::after {
  display: none;
}
.c .module.type-large-thumb {
  padding: 0;
  padding-top: 27px;
  padding-bottom: 18px;
}
.c .module.awards-module .content img {
  width: 100%;
  max-width: 100%;
  animation: flipInY 0.8s linear 1s 1 normal both;
}
.c .module.awards-module .content .awards-company-list {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  font-style: italic;
}
.c .module > .actions {
  position: absolute;
  bottom: 0;
  right: 0;
  text-align: right;
}
.c .module-title-bar {
  display: block;
  width: 100%;
  margin: 0;
  background-color: #b1b2b4;
}
.c .module-title-bar > .title {
  display: inline-block;
  font-weight: normal;
  font-style: italic;
  font-size: 18px;
  text-transform: uppercase;
  margin: 0;
  padding: 5px 8px 5px 5px;
  font-family: 'Roboto Condensed', sans-serif;
  color: #ffffff;
}
.c .module-title-bar.type-color {
  line-height: 0.8;
}
.c .module-title-bar.type-color > .title {
  color: #ffffff;
  line-height: 1;
}
.c .module-title-bar.type-color.brand-primary {
  background-color: #213469;
}
.c .module-title-bar.type-color.brand-secondary {
  background-color: #f6b11f;
}
.c .module-title-bar.type-color.brand-success {
  background-color: #79bc43;
}
.c .module-title-bar.type-color.brand-info {
  background-color: #5c2c81;
}
.c .module-title-bar.type-color.brand-warning {
  background-color: #ee7623;
}
.c .module-title-bar.type-color.brand-danger {
  background-color: #ed1c24;
}
.c .module-title-bar.type-basic {
  line-height: 1;
}
.c .module-title-bar.type-basic > .title {
  color: #ffffff;
  line-height: 1;
}
.c [ng-cloak].cloak-spin {
  display: block !important;
  position: relative;
  z-index: 1;
  animation: none;
}
.c [ng-cloak].cloak-spin::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4000;
  background: #ffffff;
  display: block;
  content: "";
}
.c [ng-cloak].cloak-spin::after {
  /* fa core */
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* spin */
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
  /* fw */
  width: 1.28571429em;
  text-align: center;
  content: "\f1ce";
  z-index: 4002;
  position: absolute;
  top: 20%;
  left: 50%;
}
.c .panel-group > .panel {
  margin-bottom: 1em;
}
.c .panel-heading {
  position: relative;
}
.c .panel-heading .module-title-bar {
  padding: 0px;
  cursor: pointer;
}
.c [data-toggle="collapse"] {
  position: relative;
}
.c .panel-heading .control-icon,
.c [data-toggle="collapse"] .control-icon {
  position: absolute;
  right: 5%;
  top: 27%;
  color: #fff;
}
.c .panel-body > .module {
  padding-top: 1em;
}
.c .panel-body > .module:last-child {
  margin-bottom: 0;
}
.c .video-container iframe {
  max-width: 100%;
  height: auto;
}
.c .bg-accessory-2-gradient {
  background-image: -webkit-linear-gradient(left, #c8e2fd 0%, rgba(200, 226, 253, 0) 100%);
  background-image: -o-linear-gradient(left, #c8e2fd 0%, rgba(200, 226, 253, 0) 100%);
  background-image: linear-gradient(to right, #c8e2fd 0%, rgba(200, 226, 253, 0) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffc8e2fd', endColorstr='#00c8e2fd', GradientType=1);
}
.c .text-white {
  color: #fff !important;
}
.c .striped {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAGCAYAAADgzO9IAAAAK0lEQVQIW2NkwAL+//9vzIguDhZkZDyLIgETBCmGSyALwiXQBcES2ARBEgCUVxc3f8oLcQAAAABJRU5ErkJggg==");
  background-position: 0 100%;
  background-repeat: repeat;
}
.c .striped.striped-gray {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAGCAYAAADgzO9IAAAAJ0lEQVQIW2NkwA6MGbGIGwPFzqJLgAVBipEl4ILIEiiCMAkMQZAEAEbIBTpQMFGXAAAAAElFTkSuQmCC");
}
.c .input-group.striped input,
.c .input-group.striped .input-group-addon {
  background: transparent;
  border: none;
}
.c .input-group.dark {
  background-color: #b1b2b4;
  box-shadow: inset 0 3px 3px 0px rgba(0, 0, 0, 0.4);
}
.c .input-group.dark input,
.c .input-group.dark .input-group-addon {
  color: #fff !important;
}
.c .input-group.dark input::-moz-placeholder,
.c .input-group.dark .input-group-addon::-moz-placeholder {
  color: #ffffff;
  opacity: 1;
}
.c .input-group.dark input:-ms-input-placeholder,
.c .input-group.dark .input-group-addon:-ms-input-placeholder {
  color: #ffffff;
}
.c .input-group.dark input::-webkit-input-placeholder,
.c .input-group.dark .input-group-addon::-webkit-input-placeholder {
  color: #ffffff;
}
.c .input-group.large-letters input,
.c .input-group.large-letters .input-group-addon {
  text-transform: uppercase;
  font-weight: normal;
  font-family: 'Roboto Condensed', sans-serif;
}
.c .logo-nav {
  max-width: 100%;
  max-height: 120%;
  width: 256px;
  height: 48px;
}
@media (max-width: 991px) {
  .c .logo-nav {
    width: auto;
    height: auto;
  }
}
@media (max-width: 767px) {
  .c .logo-nav {
    height: auto;
    width: 120px;
    max-width: 250%;
    max-height: 150%;
  }
}
.c .navbar-text {
  line-height: inherit;
}
.c .nav-follow-toggle {
  position: relative;
}
.c .nav-follow-toggle .follow-link {
  font-size: 1.1em;
  vertical-align: top;
  display: inline-block;
  margin-top: 5px;
}
.c .nav-search-toggle {
  width: 56px;
  height: 48px;
  transition: 0.3s linear;
  overflow: hidden;
}
.c .nav-search-toggle a.dropdown-toggle {
  background: #ffffff !important;
}
.c .nav-search-toggle > * {
  display: inline-block !important;
  white-space: nowrap;
}
.c .nav-search-toggle.open {
  width: 10em;
  background: #ffffff !important;
}
@media (min-width: 768px) {
  .c .nav-search-toggle.open {
    width: 16em;
  }
}
.c .nav-search-toggle > form {
  width: 5em;
  margin: 0;
  padding: 0;
  vertical-align: top;
  margin-top: 1px;
}
@media (min-width: 768px) {
  .c .nav-search-toggle > form {
    width: 11em;
  }
}
.c .nav-search-toggle > form input {
  width: 100%;
  border-width: 0;
  padding: 0.4em 0.2em;
  font-weight: normal;
  font-size: 1.1em;
  text-transform: uppercase;
  font-family: 'Roboto Condensed', sans-serif;
  margin: 0;
}
.c .nav-dropdown-login-menu .dropdown-menu {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  min-width: 400px;
  max-width: 100%;
}
.c .nav-dropdown-login-menu.open .dropdown-menu {
  animation: fadeInRight 0.5s linear;
}
.c .navbar .navbar-text-take-space {
  width: 40%;
  overflow: hidden;
  white-space: nowrap;
}
.c .navbar .navbar-text-take-space span.scroll {
  max-width: 100%;
  text-overflow: ellipsis;
}
@media (min-width: 1199px) {
  .c .navbar .navbar-text-take-space {
    width: 50%;
  }
}
.c .navbar div.dropdown-menu {
  padding: 1em;
}
.c .navbar.navbar-footer {
  /*margin-bottom: 90px; //Ad */
  margin-bottom: 0;
}
.c .navbar.navbar-footer .navbar-text {
  color: #eaeef1;
}
.c .navbar.navbar-footer .navbar-nav > li > a {
  font-family: 'Roboto Condensed', sans-serif;
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
}
.c .navbar.navbar-white {
  background-color: rgba(255, 255, 255, 0.9);
  border-color: #b1b2b4;
  box-shadow: 0 0 3px 0px rgba(0, 0, 0, 0.4);
}
.c .navbar.navbar-white .navbar-nav > li {
  border-right: 1px solid #aaa;
  font-family: 'Roboto Condensed', sans-serif;
}
.c .navbar.navbar-white .navbar-nav > li:first-child,
.c .navbar.navbar-white .navbar-nav > li:first-of-type {
  border-left: 1px solid #ccc;
}
.c .navbar.navbar-white .navbar-nav > li > a {
  color: #b1b2b4;
}
.c .navbar.navbar-white .navbar-nav > li.dropdown.open a {
  border-color: transparent;
}
.c .navbar.navbar-white .navbar-nav > li.dropdown .dropdown-menu:after,
.c .navbar.navbar-white .navbar-nav > li.dropdown .dropdown-menu:before {
  display: none !important;
}
.c .navbar.navbar-white .navbar-nav > li.dropdown .dropdown-menu > li > a:hover {
  background: #f5f5f5;
}
.c .navbar.navbar-white .navbar-nav > li.dropdown div.dropdown-menu > p > a {
  display: inline;
  margin: 0;
  padding: 0;
}
.c .navbar.navbar-white .navbar-nav > li.dropdown div.dropdown-menu > p > a:hover {
  background-color: transparent;
}
.c .navbar.navbar-white .navbar-nav > li.brand-primary {
  border-right: 1px solid #eee;
}
.c .navbar.navbar-white .navbar-nav > li.brand-primary > a {
  color: #fff;
  background-color: #213469;
}
.c .navbar.navbar-white .navbar-nav > li.brand-primary > a:hover,
.c .navbar.navbar-white .navbar-nav > li.brand-primary > a:focus {
  color: #fff;
  background-color: #2d4790;
}
.c .navbar.navbar-white .navbar-nav > li.brand-primary.active > a,
.c .navbar.navbar-white .navbar-nav > li.brand-primary.active > a:hover,
.c .navbar.navbar-white .navbar-nav > li.brand-primary.active > a:focus {
  color: #fff;
  background-color: #152142;
}
.c .navbar.navbar-white .navbar-nav > li.brand-primary.disabled > a,
.c .navbar.navbar-white .navbar-nav > li.brand-primary.disabled > a:hover,
.c .navbar.navbar-white .navbar-nav > li.brand-primary.disabled > a:focus {
  color: #777777;
  background-color: #5877cb;
}
.c .navbar .navbar-header {
  position: relative;
}
.c .navbar .navbar-brand {
  width: 280px;
}
@media (min-width: 768px) {
  .c .navbar .navbar-brand {
    padding: 0.1em;
  }
}
@media (max-width: 767px) {
  .c .navbar .navbar-brand {
    position: absolute;
    left: 0em;
    width: 4em;
    top: 0.5em;
    bottom: 0.5em;
    padding: 0;
  }
}
@media (max-width: 767px) {
  .c .navbar .navbar-header {
    width: 20%;
  }
}
.c .navbar-static-top,
.c .navbar-fixed-top {
  margin-bottom: 0;
}
.c .nav-colored > li > a,
.c .nav-colored > li > li > a {
  border-left: 6px solid #ed1c24;
}
.c .nav-colored > li + li > a,
.c .nav-colored > li + li > li > a {
  border-left: 6px solid #ee7623;
}
.c .nav-colored > li + li + li > a,
.c .nav-colored > li + li + li > li > a {
  border-left: 6px solid #79bc43;
}
.c .nav-colored > li + li + li + li > a,
.c .nav-colored > li + li + li + li > li > a {
  border-left: 6px solid #5c2c81;
}
.c .nav-colored > li + li + li + li + li > a,
.c .nav-colored > li + li + li + li + li > li > a {
  border-left: 6px solid #f6b11f;
}
.c .nav-colored > li + li + li + li + li + li > a,
.c .nav-colored > li + li + li + li + li + li > li > a {
  border-left: 6px solid #ed1c24;
}
.c .nav-colored > li {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}
.c .nav-colored > li:nth-of-type(1n) > a,
.c .nav-colored > li:nth-of-type(1n) > li > a {
  border-left: 6px solid #ed1c24;
}
.c .nav-colored > li:nth-of-type(2n) > a,
.c .nav-colored > li:nth-of-type(2n) > li > a {
  border-left: 6px solid #ee7623;
}
.c .nav-colored > li:nth-of-type(3n) > a,
.c .nav-colored > li:nth-of-type(3n) > li > a {
  border-left: 6px solid #79bc43;
}
.c .nav-colored > li:nth-of-type(4n) > a,
.c .nav-colored > li:nth-of-type(4n) > li > a {
  border-left: 6px solid #5c2c81;
}
.c .nav-colored > li:nth-of-type(5n) > a,
.c .nav-colored > li:nth-of-type(5n) > li > a {
  border-left: 6px solid #f6b11f;
}
.c .nav-colored > li:nth-of-type(6n) > a,
.c .nav-colored > li:nth-of-type(6n) > li > a {
  border-left: 6px solid #ed1c24;
}
.c .nav-colored > li,
.c .nav-colored > li ul.nav ul.nav > li {
  padding-left: 0.5em;
}
.c .nav-colored > li > a,
.c .nav-colored > li > li > a {
  padding: 0 0 0 .5em;
  line-height: 1;
}
.c .nav-colored > li > a {
  color: #212121;
  font-family: 'Roboto Condensed', sans-serif;
  text-transform: uppercase;
  font-weight: normal;
  font-size: 18px;
  transition: 0.1s linear;
  position: relative;
  left: 0;
}
.c .nav-colored > li > a:hover {
  padding-left: 1.5em;
  left: -0.3em;
}
.c .nav-colored > li li > a {
  border-bottom: 1px dotted #b1b2b4;
  color: #212121;
}
.c .nav-colored > li li:first-child > a,
.c .nav-colored > li li:first-of-type > a {
  border-top: none;
}
.c .nav-colored > li ul.nav {
  margin-top: 0;
}
.c .nav-colored > li ul.nav ul.nav {
  margin-top: 0;
}
.c .nav-colored > li ul.nav ul.nav > li > a:first-child,
.c .nav-colored > li ul.nav ul.nav > li > a:first-of-type {
  border-top: none;
}
.c .nav-striped > li {
  margin-bottom: 0.5em;
}
.c .nav-striped li > a {
  padding: 8px;
  color: #fff;
  font-family: 'Roboto Condensed', sans-serif;
  text-transform: uppercase;
  font-weight: normal;
  font-size: 18px;
  font-style: italic;
  background-color: #b1b2b4;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAGCAYAAADgzO9IAAAAK0lEQVQIW2NkwAL+//9vzIguDhZkZDyLIgETBCmGSyALwiXQBcES2ARBEgCUVxc3f8oLcQAAAABJRU5ErkJggg==");
  background-position: 0 100%;
  background-repeat: repeat;
}
.c .nav-striped li > a.striped-gray {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAGCAYAAADgzO9IAAAAJ0lEQVQIW2NkwA6MGbGIGwPFzqJLgAVBipEl4ILIEiiCMAkMQZAEAEbIBTpQMFGXAAAAAElFTkSuQmCC");
}
.c .nav-striped.brand-warning li > a {
  background-color: #ee7623;
}
.c .nav-striped.brand-accessory-1 li > a {
  background-color: #0096ff;
}
.c .nav-striped.brand-primary li > a {
  background-color: #213469;
}
.c #sidenav-accordion > .module.basic {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  margin-bottom: 1em;
}
.c #sidenav-accordion > .module.basic > [data-toggle="collapse"] {
  cursor: pointer;
}
.c #sidenav-accordion > .module.basic > [data-toggle="collapse"] .control-icon:before {
  content: "\f0aa";
}
.c #sidenav-accordion > .module.basic > [data-toggle="collapse"].collapsed .control-icon:before {
  content: "\f0ab";
}
.c.csstransforms #sidenav-accordion > .module.basic > [data-toggle="collapse"] .control-icon {
  transform: rotateZ(-180deg);
}
.c.csstransforms #sidenav-accordion > .module.basic > [data-toggle="collapse"] .control-icon::before {
  content: "\f0ab";
}
.c.csstransforms #sidenav-accordion > .module.basic > [data-toggle="collapse"].collapsed .control-icon {
  transform: rotateZ(0deg);
}
.c ul.cm-triangle-list {
  list-style-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHCAYAAADEUlfTAAAAKUlEQVQIW2N8K6PynwEHYASJ41IAlsSlAC6JTQGKJLoCDElkBVglYQoACpYPPKjd69UAAAAASUVORK5CYII=");
}
.c .label {
  position: relative;
}
.c .label.label-thick {
  font-size: 14px;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: normal;
  font-style: italic;
  text-transform: uppercase;
  border-radius: 0;
  padding: 0.5em 8px;
  line-height: 1;
}
.c .label.label-lg {
  font-size: 12.6px;
  font-weight: normal;
}
.c .label.label-arrow {
  margin-right: 14px;
  display: inline-block;
}
.c .label.label-arrow::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 14px solid;
  position: absolute;
  right: -14px;
  top: 0;
}
.c .label.label-danger.label-arrow::after {
  border-left-color: #ed1c24;
}
.c .label.label-black {
  background-color: #130c0e;
}
.c .label.label-black[href]:hover,
.c .label.label-black[href]:focus {
  background-color: #000000;
}
.c .label.label-black.label-arrow::after {
  border-left-color: #130c0e;
}
.c .ie .article > img {
  width: auto;
}
.c .article {
  margin-bottom: .5em;
}
.c .article header {
  overflow: hidden;
}
.c .article header .terms {
  font-style: italic;
  margin: 0 0 0.3em 0;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 12px;
}
.c .article header .title {
  font-size: 18px;
  margin: 0 0 0.3em 0;
}
.c .article header .date-author {
  color: #b1b2b4;
  font-size: 12px;
}
.c .article header .date-author .topic {
  font-style: italic;
  font-weight: bold;
  margin: 0 0 0.3em 0;
  font-family: 'Roboto Condensed', sans-serif;
  text-transform: capitalize;
}
.c .article .excerpt {
  font-size: 12px;
  color: #b1b2b4;
  margin: 0 0 0.3em 0;
}
.c .article.first-up {
  border-bottom: 1px dotted #b1b2b4;
}
.c .article.list-type {
  margin: 0.5em 0;
}
.c .article.list-type header {
  background-repeat: no-repeat;
  background-position: 0 0.4em;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAL0lEQVQYV2N8K6PynwEPYATJ4VMEVoBPEVwBLkUoCrApwlCArgirAmRFOBXAFAEA+qwRaQkFo2IAAAAASUVORK5CYII=");
  padding-left: 1em;
}
.c .article.list-type header .title {
  font-size: 14px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: normal;
  margin: 0;
  display: inline;
}
.c .article.list-type header .date-author {
  margin: 0;
  display: inline;
}
.c .article.single header {
  border-bottom: 4px solid #ed1c24;
  margin-bottom: 1em;
}
.c .article.single header .title {
  font-size: 36px;
  font-family: 'Roboto Condensed', sans-serif;
  text-transform: uppercase;
  font-style: italic;
  font-weight: bold;
}
.c .article.single header .date-author {
  margin: 0 0 0.3em 0;
}
.c .article.single > .content {
  padding: 1em;
}
.c .article.thumblist {
  margin-bottom: 1em;
}
.c .article.row-list {
  margin-bottom: 2em;
}
@media (max-width: 480px) {
  .c .article.row-list > img {
    width: 90px;
    height: 70px;
  }
}
.c .article.row-list > header .terms,
.c .article.row-list > header .title,
.c .article.row-list > header .date-author,
.c .article.row-list > header .excerpt {
  margin: 0 0 0.5em 0;
}
.c .article.row-list > .actions {
  text-align: right;
}
.c .article.large-thumb > header,
.c .article.large-thumb > .content {
  padding: 0.5em 1em;
}
.c .article.partner-content .title,
.c .article.partner-content .title a,
.c .article.partner-content .excerpt {
  color: #212121;
}
.c .article.partner-content.widget header {
  margin-bottom: 0.5em;
}
.c .article.partner-content.widget header .title {
  font-size: 24px;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: normal;
  margin: 0;
  display: inline;
  text-transform: capitalize;
}
.c .article.ng-enter,
.c .article.ng-enter-active {
  animation: zoomInRight;
  animation-duration: 0.8s;
  animation-fill-mode: both;
}
.c .article.ng-leave,
.c .article.ng-leave-active {
  display: none !important;
}
.c .article.ng-enter-stagger {
  animation-delay: 0.2s;
  transition-delay: 0.2s;
  /* in case the stagger doesn't work then these two values
        must be set to 0 to avoid an accidental CSS inheritance */
  -webkit-transition-duration: 0s;
  transition-duration: 0s;
}
.c .article .webinar-date {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: bold;
  line-height: 1;
  margin-right: 0.5em;
  text-transform: uppercase;
  display: inline-block;
  padding: 0.5em;
  color: #fff;
  background: #213469;
}
.c .article .webinar-date span {
  display: block;
  text-align: center;
}
.c .article .webinar-date span.month {
  font-size: 12px;
}
.c .article .webinar-date span.day {
  font-size: 36px;
}
.c .article > .actions {
  text-align: right;
}
.c .chem-post-list .ng-hide-add,
.c .post-list .ng-hide-add,
.c .chem-post-list.ng-hide-add-active,
.c .post-list.ng-hide-add-active,
.c .chem-post-list.ng-hide,
.c .post-list.ng-hide {
  display: none !important;
}
.c .chem-post-list.auto-columnize,
.c .post-list.auto-columnize {
  columns: 2 290px;
}
.c .chem-post-list.auto-columnize > article,
.c .post-list.auto-columnize > article {
  overflow: hidden;
  /* fix for Firefox */
  break-inside: avoid-column;
  -webkit-column-break-inside: avoid;
  /*white-space: nowrap;*/
}
.c .chem-post-list.auto-columnize > article > img,
.c .post-list.auto-columnize > article > img,
.c .chem-post-list.auto-columnize > article > header,
.c .post-list.auto-columnize > article > header {
  /*
                vertical-align: top;
                display: inline-block;
                float:none !important;
                white-space: normal;
                word-break: break-all;
                */
}
.c .chem-post-list.auto-columnize > article > header,
.c .post-list.auto-columnize > article > header {
  /*float:left !important; */
}
.c .animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}
.c .animated.infinite {
  animation-iteration-count: infinite;
}
.c .animated.hinge {
  animation-duration: 2s;
}
.c .module-container.animated {
  animation-duration: 0.6s;
}
.c .module-container.ng-leave.ng-leave-active {
  display: none !important;
}
.c .scroll-item,
.c [c-scroll-item] {
  display: inline-block;
}
.c .scroll-item.ng-hide-add,
.c [c-scroll-item].ng-hide-add,
.c .scroll-item.ng-hide-add-active,
.c [c-scroll-item].ng-hide-add-active,
.c .scroll-item.ng-hide,
.c [c-scroll-item].ng-hide {
  display: none !important;
}
.c .scroll-item.ng-hide-remove,
.c [c-scroll-item].ng-hide-remove,
.c .scroll-item.ng-hide-remove-active,
.c [c-scroll-item].ng-hide-remove-active {
  display: inline-block !important;
  animation-duration: 1s;
  animation-fill-mode: both;
}
.c .taxonomy-combo > header {
  padding-bottom: 2em;
}
.c .taxonomy-combo > header > .title {
  border-bottom: 4px solid #79bc43;
}
.c .taxonomy-combo > header > .title > .taxonomy-title {
  text-transform: uppercase;
}
.c .taxonomy > header {
  padding-bottom: 2em;
}
.c .taxonomy > header > .title {
  border-bottom: 4px solid #79bc43;
}
.c .taxonomy > header > .title > .taxonomy-title {
  text-transform: uppercase;
}
.c .taxonomy .term {
  padding: 0.5em;
  margin: 0.5em;
  border: 1px solid #eaeef1;
  transition: 0.4s linear;
  box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.2);
  animation-name: zoomIn;
  animation-duration: 0.5s;
  animation-timing-function: linear;
  animation-delay: 0.6s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: both;
  animation-play-state: running;
  overflow: hidden;
}
.c .taxonomy .term:hover {
  background: #eaeef1;
}
.c .taxonomy .term > .image {
  margin-bottom: 1em;
  max-width: 100%;
}
.c .taxonomy .term .term-title {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: bold;
  text-transform: uppercase;
}
.c .taxonomy .term > .content {
  min-height: 290px;
}
.c .taxonomy .term > .actions {
  text-align: right;
}
.c .taxonomy-term > header {
  padding-bottom: 2em;
}
.c .taxonomy-term > header > .title {
  border-bottom: 4px solid #79bc43;
}
.c .taxonomy-term > header > .title > .taxonomy-title {
  text-transform: uppercase;
}
.c .sidebar {
  vertical-align: top;
  background: #f2f2f2;
  padding: 1em;
  box-shadow: 0 0 3px 0px rgba(0, 0, 0, 0.4);
}
.c .sidebar hr {
  margin: 1em 0;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  border-bottom: 2px solid rgba(255, 255, 255, 0.7);
}
.c .sidebar.fixed .sidebar-inner {
  position: fixed;
  width: 252px;
}
.c .sidebar .sidebar-inner > .section {
  margin: 1em 0;
}
.c .sidebar .sidebar-inner > .section:first-child,
.c .sidebar .sidebar-inner > .section:first-of-type {
  margin-top: 0;
}
.c .alignnone {
  margin: 5px 20px 20px 0;
}
.c .aligncenter,
.c div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}
.c .alignright {
  float: right;
  margin: 5px 0 20px 20px;
}
.c .alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}
.c a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}
.c a img.alignnone {
  margin: 5px 20px 20px 0;
}
.c a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}
.c a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.c .wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%;
  /* Image does not overflow the content area */
  padding: 5px 3px 10px;
  text-align: center;
}
.c .wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}
.c .wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}
.c .wp-caption.alignright {
  margin: 5px 0 20px 20px;
}
.c .wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}
.c .wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}
.c .ad {
  margin-bottom: 28px;
  text-align: center;
}
.c .ad.topbillboard {
  height: 90px;
}
.c .ad.bottomstickyleaderboard {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  margin-bottom: 0;
  z-index: 1024;
  text-align: center;
}
@media (min-width: 992px) {
  .c .ad.bottomstickyleaderboard {
    left: 280px;
  }
}
.c .ad > div {
  display: inline-block;
  margin: 0 auto;
  position: relative;
}
.c .ad > div a.close {
  position: absolute;
  top: 5px;
  left: 5px;
  color: #212121;
  font-size: 2em;
  width: 30px;
  height: 34px;
  border: 1px solid #ccc;
  line-height: 1;
  padding: 0px;
  cursor: pointer;
  display: inline-block;
  background: #ffffff;
}
.c .ad > div a.close,
.c .ad > div a.close:hover {
  text-decoration: none;
}
.c .addthis_sharing_toolbox {
  text-align: right;
}
.c .c-paginator {
  overflow: hidden;
}
.c #internads #intern-ad {
  max-width: 640px;
  margin: 0 auto;
}
.c .carousel {
  max-height: 335px;
  overflow: hidden;
}
.c .carousel .item {
  max-height: 335px;
  overflow: hidden;
}
.c .carousel .carousel-control {
  cursor: pointer;
}
.c .carousel .carousel-control .fa-prev,
.c .carousel .carousel-control .fa-next {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: inline-block;
}
.c .carousel .carousel-control .fa-prev {
  left: 50%;
  margin-left: -10px;
}
.c .carousel .carousel-control .fa-next {
  right: 50%;
  margin-right: -10px;
}
@media (max-width: 480px) {
  .c .carousel .carousel-indicators {
    bottom: -30px;
  }
  .c .carousel .carousel-indicators li {
    border-color: #b1b2b4;
  }
  .c .carousel .carousel-indicators li.active {
    background-color: #b1b2b4;
  }
}
.c .carousel .carousel-inner .item .carousel-caption {
  display: block;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 1em;
  padding: 2em;
  font-size: 95%;
}
.c .carousel .carousel-inner .item .carousel-caption,
.c .carousel .carousel-inner .item .carousel-caption a {
  color: #fff;
}
@media (max-width: 767px) {
  .c .carousel .carousel-inner .item .carousel-caption {
    padding: 0.5em;
    font-size: 85%;
    bottom: auto;
    top: 20%;
  }
}
@media (max-width: 480px) {
  .c .carousel .carousel-inner .item .carousel-caption {
    padding: 0.2em;
    font-size: 75%;
    bottom: auto;
    top: 0;
  }
  .c .carousel .carousel-inner .item .carousel-caption h1,
  .c .carousel .carousel-inner .item .carousel-caption h2,
  .c .carousel .carousel-inner .item .carousel-caption h3,
  .c .carousel .carousel-inner .item .carousel-caption h4,
  .c .carousel .carousel-inner .item .carousel-caption h5,
  .c .carousel .carousel-inner .item .carousel-caption h6 {
    padding: 0;
  }
}
@media (max-width: 1024px) {
  .content-wrap .content-main {
    padding-left: 0 !important;
  }
  .content-wrap .sidebar {
    left: -280px;
  }
  .c .navbar.navbar-footer .navbar-nav > li > a {
    font-size: 14px;
    padding: 10px 5px;
  }
}
@media (min-width: 568px) and (max-width: 768px) {
  .container-fluid .col-md-4 .widget {
    display: block;
    float: left;
    margin-left: 10px;
    margin-right: 10px;
    width: 46%;
  }
  .module.basic.awards-module {
    height: 300px;
    overflow: hidden;
  }
  .c .nav-search-toggle.open {
    width: 12em;
  }
  .c .nav-search-toggle > form {
    width: 6em;
  }
}
@media (max-width: 768px) {
  .c .taxonomy .term > .content {
    min-height: 100px;
  }
  .content-wrap .sidebar {
    left: -100%;
  }
  #menu-footer-nav {
    display: block;
    float: none;
    margin: 0px auto;
    text-align: center;
  }
  #menu-footer-nav > li {
    display: inline-block;
    float: none;
  }
  .c .navbar.navbar-footer .navbar-nav > li > a {
    font-size: 11px;
  }
  .c .navbar-footer p.navbar-text.navbar-right {
    float: none ! important;
    font-size: 12px;
    margin: 0px auto;
    text-align: center;
  }
  .c .nav-tabs.nav-justified > li {
    display: table-cell;
    float: left;
    width: 50%;
  }
}
@media (max-width: 767px) {
  .c .logo-nav {
    max-height: 150%;
    max-width: 140%;
  }
  .post-list.auto-columnize article header {
    overflow: visible;
  }
  .c .ad.topbillboard {
    height: 60px;
    margin: 10px auto;
  }
}
body {
  -webkit-overflow-scrolling: touch;
}
article.single > div.content a {
  color: #3c67e0;
}
