@charset "UTF-8";@import url(//fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,400,600,700,900,200italic,300italic,400italic,600italic,700italic,900italic);@import url(//fonts.googleapis.com/css?family=Abel);


/**
 *  Main CSS file
 */
/* -----------------------------------
 * Slidebars
 * Version 0.10 Development
 * http://plugins.adchsm.me/slidebars/
 *
 * Written by Adam Smith
 * http://www.adchsm.me/
 *
 * Released under MIT License
 * http://plugins.adchsm.me/slidebars/license.txt
 *
 * -------------------
 * Slidebars CSS Index
 *
 * 001 - Box Model, Html & Body
 * 002 - Site
 * 003 - Slidebars
 * 004 - Animation
 * 005 - Helper Classes
 *
 * ----------------------------
 * 001 - Box Model, Html & Body
 */
/* ----------
 * 002 - Site
 */
#sb-site, .sb-site {
  /* You may now use .sb-site as your site container if you wish to use your own id. However please make sure you don't set any of the follwoing styles any differently on your id. */
  width: 100%;
  position: relative;
  z-index: 1; /* Site sits above Slidebars */
  /*background-color: #ffffff; */ /* Default background colour, overwrite this with your own css. */
}
/* ---------------
 * 003 - Slidebars
 */
.sb-slidebar {
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto; /* Enable vertical scrolling on Slidebars when needed. */
  position: fixed;
  top: 0;
  z-index: 10; /* Slidebars sit behind sb-site. */
  visibility: hidden; /* Initially hide the Slidebars. */
  background-color: #222222; /* Default Slidebars background colour, overwrite this with your own css. */
}
.sb-left {
  left: 0; /* Set Slidebar to the left. */
}
.sb-right {
  right: 0; /* Set Slidebar to the right. */
}
html.sb-static .sb-slidebar,
.sb-slidebar.sb-static {
  position: absolute; /* Makes Slidebars scroll naturally with the site, and unfixes them for Android Browser < 3 and iOS < 5. */
}
.sb-slidebar.sb-active {
  visibility: visible; /* Makes Slidebars visibile when open. */
}
.sb-slidebar.sb-style-overlay {
  z-index: 9999; /* Set z-index high to ensure it overlays any other site elements. */
}
/* Slidebar widths for devices that don't support media queries. */
.sb-slidebar {
  width: 250px;
}
.sb-width-thin {
  width: 15%;
}
.sb-width-wide {
  width: 45%;
}
@media (max-width: 480px) { /* Slidebar width on extra small screens. */
  .sb-slidebar {
    width: 250px;
  }
  .sb-width-thin {
    width: 55%;
  }
  .sb-width-wide {
    width: 85%;
  }
}
@media (min-width: 481px) { /* Slidebar width on small screens. */
  .sb-slidebar {
    width: 250px;
  }
  .sb-width-thin {
    width: 40%;
  }
  .sb-width-wide {
    width: 70%;
  }
}
@media (min-width: 768px) { /* Slidebar width on small screens. */
  .sb-slidebar {
    width: 250px;
  }
  .sb-width-thin {
    width: 25%;
  }
  .sb-width-wide {
    width: 55%;
  }
}
@media (min-width: 992px) { /* Slidebar width on medium screens. */
  .sb-slidebar {
    width: 250px;
  }
  .sb-width-thin {
    width: 15%;
  }
  .sb-width-wide {
    width: 45%;
  }
}
@media (min-width: 1200px) { /* Slidebar width on large screens. */
  .sb-slidebar {
    width: 250px;
  }
  .sb-width-thin {
    width: 5%;
  }
  .sb-width-wide {
    width: 35%;
  }
}
/* ---------------
 * 004 - Animation
 */
.sb-slide, #sb-site, .sb-site, .sb-slidebar {
  transition: transform 400ms ease;
  -webkit-transition-property: -webkit-transform, left, right; /* Add left/right for Android < 4.4. */
  -webkit-backface-visibility: hidden; /* Prevents flickering. This is non essential, and you may remove it if your having problems with fixed background images in Chrome. */
}
/* --------------------
 * 005 - Helper Classes
 */
.sb-hide {
  display: none; /* Optionally applied to control classes when Slidebars is disabled over a certain width. */
}
.sb-submenu-active {
  display: block;
}
.switchery {
  background-color: #fff;
  border: 1px solid #dfdfdf;
  border-radius: 20px;
  cursor: pointer;
  display: inline-block;
  height: 30px;
  position: relative;
  vertical-align: middle;
  width: 50px;
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  box-sizing: content-box;
  background-clip: content-box;
}
.switchery > small {
  background: #fff;
  border-radius: 100%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  height: 30px;
  position: absolute;
  top: 0;
  width: 30px;
}
.switchery-small {
  border-radius: 20px;
  height: 20px;
  width: 33px;
}
.switchery-small > small {
  height: 20px;
  width: 20px;
}
.switchery-large {
  border-radius: 40px;
  height: 40px;
  width: 66px;
}
.switchery-large > small {
  height: 40px;
  width: 40px;
}
/*
 * Table styles
 */
table.dataTable {
  width: 100%;
  margin: 0 auto;
  clear: both;
  border-collapse: separate;
  border-spacing: 0;
  /*
   * Header and footer styles
   */
  /*
   * Body styles
   */
}
table.dataTable thead th,
table.dataTable tfoot th {
  font-weight: bold;
}
table.dataTable thead th,
table.dataTable thead td {
  padding: 10px 18px;
  border-bottom: 1px solid #111111;
}
table.dataTable thead th:active,
table.dataTable thead td:active {
  outline: none;
}
table.dataTable tfoot th,
table.dataTable tfoot td {
  padding: 10px 18px 6px 18px;
  border-top: 1px solid #111111;
}
table.dataTable thead .sorting_asc,
table.dataTable thead .sorting_desc,
table.dataTable thead .sorting {
  cursor: pointer;
}
table.dataTable thead .sorting {
  background: url("../img/sort_both.png") no-repeat center right;
}
table.dataTable thead .sorting_asc {
  background: url("../img/sort_asc.png") no-repeat center right;
}
table.dataTable thead .sorting_desc {
  background: url("../img/sort_desc.png") no-repeat center right;
}
table.dataTable thead .sorting_asc_disabled {
  background: url("../img/sort_asc_disabled.png") no-repeat center right;
}
table.dataTable thead .sorting_desc_disabled {
  background: url("../img/sort_desc_disabled.png") no-repeat center right;
}
table.dataTable tbody tr {
  background-color: white;
}
table.dataTable tbody tr.selected {
  background-color: #b0bed9;
}
table.dataTable tbody th,
table.dataTable tbody td {
  padding: 8px 10px;
}
table.dataTable.row-border tbody th, table.dataTable.row-border tbody td, table.dataTable.display tbody th, table.dataTable.display tbody td {
  border-top: 1px solid #dddddd;
}
table.dataTable.row-border tbody tr:first-child th,
table.dataTable.row-border tbody tr:first-child td, table.dataTable.display tbody tr:first-child th,
table.dataTable.display tbody tr:first-child td {
  border-top: none;
}
table.dataTable.cell-border tbody th, table.dataTable.cell-border tbody td {
  border-top: 1px solid #dddddd;
  border-right: 1px solid #dddddd;
}
table.dataTable.cell-border tbody tr th:first-child,
table.dataTable.cell-border tbody tr td:first-child {
  border-left: 1px solid #dddddd;
}
table.dataTable.cell-border tbody tr:first-child th,
table.dataTable.cell-border tbody tr:first-child td {
  border-top: none;
}
table.dataTable.stripe tbody tr.odd, table.dataTable.display tbody tr.odd {
  background-color: #f9f9f9;
}
table.dataTable.stripe tbody tr.odd.selected, table.dataTable.display tbody tr.odd.selected {
  background-color: #abb9d3;
}
table.dataTable.hover tbody tr:hover,
table.dataTable.hover tbody tr.odd:hover,
table.dataTable.hover tbody tr.even:hover, table.dataTable.display tbody tr:hover,
table.dataTable.display tbody tr.odd:hover,
table.dataTable.display tbody tr.even:hover {
  background-color: whitesmoke;
}
table.dataTable.hover tbody tr:hover.selected,
table.dataTable.hover tbody tr.odd:hover.selected,
table.dataTable.hover tbody tr.even:hover.selected, table.dataTable.display tbody tr:hover.selected,
table.dataTable.display tbody tr.odd:hover.selected,
table.dataTable.display tbody tr.even:hover.selected {
  background-color: #a9b7d1;
}
table.dataTable.order-column tbody tr > .sorting_1,
table.dataTable.order-column tbody tr > .sorting_2,
table.dataTable.order-column tbody tr > .sorting_3, table.dataTable.display tbody tr > .sorting_1,
table.dataTable.display tbody tr > .sorting_2,
table.dataTable.display tbody tr > .sorting_3 {
  background-color: #f9f9f9;
}
table.dataTable.order-column tbody tr.selected > .sorting_1,
table.dataTable.order-column tbody tr.selected > .sorting_2,
table.dataTable.order-column tbody tr.selected > .sorting_3, table.dataTable.display tbody tr.selected > .sorting_1,
table.dataTable.display tbody tr.selected > .sorting_2,
table.dataTable.display tbody tr.selected > .sorting_3 {
  background-color: #acbad4;
}
table.dataTable.display tbody tr.odd > .sorting_1, table.dataTable.order-column.stripe tbody tr.odd > .sorting_1 {
  background-color: #f1f1f1;
}
table.dataTable.display tbody tr.odd > .sorting_2, table.dataTable.order-column.stripe tbody tr.odd > .sorting_2 {
  background-color: #f3f3f3;
}
table.dataTable.display tbody tr.odd > .sorting_3, table.dataTable.order-column.stripe tbody tr.odd > .sorting_3 {
  background-color: whitesmoke;
}
table.dataTable.display tbody tr.odd.selected > .sorting_1, table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_1 {
  background-color: #a6b3cd;
}
table.dataTable.display tbody tr.odd.selected > .sorting_2, table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_2 {
  background-color: #a7b5ce;
}
table.dataTable.display tbody tr.odd.selected > .sorting_3, table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_3 {
  background-color: #a9b6d0;
}
table.dataTable.display tbody tr.even > .sorting_1, table.dataTable.order-column.stripe tbody tr.even > .sorting_1 {
  background-color: #f9f9f9;
}
table.dataTable.display tbody tr.even > .sorting_2, table.dataTable.order-column.stripe tbody tr.even > .sorting_2 {
  background-color: #fbfbfb;
}
table.dataTable.display tbody tr.even > .sorting_3, table.dataTable.order-column.stripe tbody tr.even > .sorting_3 {
  background-color: #fdfdfd;
}
table.dataTable.display tbody tr.even.selected > .sorting_1, table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_1 {
  background-color: #acbad4;
}
table.dataTable.display tbody tr.even.selected > .sorting_2, table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_2 {
  background-color: #adbbd6;
}
table.dataTable.display tbody tr.even.selected > .sorting_3, table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_3 {
  background-color: #afbdd8;
}
table.dataTable.display tbody tr:hover > .sorting_1,
table.dataTable.display tbody tr.odd:hover > .sorting_1,
table.dataTable.display tbody tr.even:hover > .sorting_1, table.dataTable.order-column.hover tbody tr:hover > .sorting_1,
table.dataTable.order-column.hover tbody tr.odd:hover > .sorting_1,
table.dataTable.order-column.hover tbody tr.even:hover > .sorting_1 {
  background-color: #eaeaea;
}
table.dataTable.display tbody tr:hover > .sorting_2,
table.dataTable.display tbody tr.odd:hover > .sorting_2,
table.dataTable.display tbody tr.even:hover > .sorting_2, table.dataTable.order-column.hover tbody tr:hover > .sorting_2,
table.dataTable.order-column.hover tbody tr.odd:hover > .sorting_2,
table.dataTable.order-column.hover tbody tr.even:hover > .sorting_2 {
  background-color: #ebebeb;
}
table.dataTable.display tbody tr:hover > .sorting_3,
table.dataTable.display tbody tr.odd:hover > .sorting_3,
table.dataTable.display tbody tr.even:hover > .sorting_3, table.dataTable.order-column.hover tbody tr:hover > .sorting_3,
table.dataTable.order-column.hover tbody tr.odd:hover > .sorting_3,
table.dataTable.order-column.hover tbody tr.even:hover > .sorting_3 {
  background-color: #eeeeee;
}
table.dataTable.display tbody tr:hover.selected > .sorting_1,
table.dataTable.display tbody tr.odd:hover.selected > .sorting_1,
table.dataTable.display tbody tr.even:hover.selected > .sorting_1, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_1,
table.dataTable.order-column.hover tbody tr.odd:hover.selected > .sorting_1,
table.dataTable.order-column.hover tbody tr.even:hover.selected > .sorting_1 {
  background-color: #a1aec7;
}
table.dataTable.display tbody tr:hover.selected > .sorting_2,
table.dataTable.display tbody tr.odd:hover.selected > .sorting_2,
table.dataTable.display tbody tr.even:hover.selected > .sorting_2, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_2,
table.dataTable.order-column.hover tbody tr.odd:hover.selected > .sorting_2,
table.dataTable.order-column.hover tbody tr.even:hover.selected > .sorting_2 {
  background-color: #a2afc8;
}
table.dataTable.display tbody tr:hover.selected > .sorting_3,
table.dataTable.display tbody tr.odd:hover.selected > .sorting_3,
table.dataTable.display tbody tr.even:hover.selected > .sorting_3, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_3,
table.dataTable.order-column.hover tbody tr.odd:hover.selected > .sorting_3,
table.dataTable.order-column.hover tbody tr.even:hover.selected > .sorting_3 {
  background-color: #a4b2cb;
}
table.dataTable.no-footer {
  border-bottom: 1px solid #111111;
}
table.dataTable.nowrap th, table.dataTable.nowrap td {
  white-space: nowrap;
}
table.dataTable.compact thead th,
table.dataTable.compact thead td {
  padding: 5px 9px;
}
table.dataTable.compact tfoot th,
table.dataTable.compact tfoot td {
  padding: 5px 9px 3px 9px;
}
table.dataTable.compact tbody th,
table.dataTable.compact tbody td {
  padding: 4px 5px;
}
table.dataTable th.dt-left,
table.dataTable td.dt-left {
  text-align: left;
}
table.dataTable th.dt-center,
table.dataTable td.dt-center,
table.dataTable td.dataTables_empty {
  text-align: center;
}
table.dataTable th.dt-right,
table.dataTable td.dt-right {
  text-align: right;
}
table.dataTable th.dt-justify,
table.dataTable td.dt-justify {
  text-align: justify;
}
table.dataTable th.dt-nowrap,
table.dataTable td.dt-nowrap {
  white-space: nowrap;
}
table.dataTable thead th.dt-head-left,
table.dataTable thead td.dt-head-left,
table.dataTable tfoot th.dt-head-left,
table.dataTable tfoot td.dt-head-left {
  text-align: left;
}
table.dataTable thead th.dt-head-center,
table.dataTable thead td.dt-head-center,
table.dataTable tfoot th.dt-head-center,
table.dataTable tfoot td.dt-head-center {
  text-align: center;
}
table.dataTable thead th.dt-head-right,
table.dataTable thead td.dt-head-right,
table.dataTable tfoot th.dt-head-right,
table.dataTable tfoot td.dt-head-right {
  text-align: right;
}
table.dataTable thead th.dt-head-justify,
table.dataTable thead td.dt-head-justify,
table.dataTable tfoot th.dt-head-justify,
table.dataTable tfoot td.dt-head-justify {
  text-align: justify;
}
table.dataTable thead th.dt-head-nowrap,
table.dataTable thead td.dt-head-nowrap,
table.dataTable tfoot th.dt-head-nowrap,
table.dataTable tfoot td.dt-head-nowrap {
  white-space: nowrap;
}
table.dataTable tbody th.dt-body-left,
table.dataTable tbody td.dt-body-left {
  text-align: left;
}
table.dataTable tbody th.dt-body-center,
table.dataTable tbody td.dt-body-center {
  text-align: center;
}
table.dataTable tbody th.dt-body-right,
table.dataTable tbody td.dt-body-right {
  text-align: right;
}
table.dataTable tbody th.dt-body-justify,
table.dataTable tbody td.dt-body-justify {
  text-align: justify;
}
table.dataTable tbody th.dt-body-nowrap,
table.dataTable tbody td.dt-body-nowrap {
  white-space: nowrap;
}
table.dataTable,
table.dataTable th,
table.dataTable td {
  box-sizing: content-box;
}
/*
 * Control feature layout
 */
.dataTables_wrapper {
  position: relative;
  clear: both;
  zoom: 1;
}
.dataTables_wrapper .dataTables_length {
  float: left;
}
.dataTables_wrapper .dataTables_filter {
  float: right;
  text-align: right;
}
.dataTables_wrapper .dataTables_filter input {
  margin-left: 0.5em;
}
.dataTables_wrapper .dataTables_info {
  clear: both;
  float: left;
  padding-top: 0.755em;
}
.dataTables_wrapper .dataTables_paginate {
  float: right;
  text-align: right;
  padding-top: 0.25em;
}
/*.dataTables_wrapper .dataTables_paginate .paginate_button {
  box-sizing: border-box;
  display: inline-block;
  min-width: 1.5em;
  padding: 0.5em 1em;
  margin-left: 2px;
  text-align: center;
  text-decoration: none !important;
  cursor: pointer;
  *cursor: hand;
  color: #333333 !important;
  border: 1px solid transparent;
}*/
/*
.dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  color: #333333 !important;
  border: 1px solid #cacaca;
  background-color: white;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, white), color-stop(100%, gainsboro));*/
/* Chrome,Safari4+ */
/* background: -webkit-linear-gradient(top, white 0%, gainsboro 100%);*/
/* Chrome10+,Safari5.1+ */
/* background: -moz-linear-gradient(top, white 0%, gainsboro 100%);*/
/* FF3.6+ */
/* background: -ms-linear-gradient(top, white 0%, gainsboro 100%);*/
/* IE10+ */
/* background: -o-linear-gradient(top, white 0%, gainsboro 100%);*/
/* Opera 11.10+ */
/* background: linear-gradient(to bottom, white 0%, gainsboro 100%);*/
/* W3C */
/*}*/
/*.dataTables_wrapper .dataTables_paginate .paginate_button.disabled, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
  cursor: default;
  color: #666 !important;
  border: 1px solid transparent;
  background: transparent;
  box-shadow: none;
}
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  color: white !important;
  border: 1px solid #111111;
  background-color: #585858;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #585858), color-stop(100%, #111111));
  /* Chrome,Safari4+ */
/*background: -webkit-linear-gradient(top, #585858 0%, #111111 100%);*/
/* Chrome10+,Safari5.1+ */
/*background: -moz-linear-gradient(top, #585858 0%, #111111 100%);*/
/* FF3.6+ */
/*background: -ms-linear-gradient(top, #585858 0%, #111111 100%);*/
/* IE10+ */
/*background: -o-linear-gradient(top, #585858 0%, #111111 100%);*/
/* Opera 11.10+ */
/*background: linear-gradient(to bottom, #585858 0%, #111111 100%);*/
/* W3C */
/*}*/
.dataTables_wrapper .dataTables_paginate .paginate_button:active {
  outline: none;
  background-color: #2b2b2b;
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* FF3.6+ */
  /* IE10+ */
  /* Opera 11.10+ */
  background: linear-gradient(to bottom, #2b2b2b 0%, #0c0c0c 100%);
  /* W3C */
  box-shadow: inset 0 0 3px #111;
}
.dataTables_wrapper .dataTables_processing {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 40px;
  margin-left: -50%;
  margin-top: -25px;
  padding-top: 20px;
  text-align: center;
  font-size: 1.2em;
  background-color: white;
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* FF3.6+ */
  /* IE10+ */
  /* Opera 11.10+ */
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
  /* W3C */
}
.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter,
.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_processing,
.dataTables_wrapper .dataTables_paginate {
  color: #333333;
}
.dataTables_wrapper .dataTables_scroll {
  clear: both;
}
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody {
  -webkit-overflow-scrolling: touch;
}
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody th > div.dataTables_sizing,
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody td > div.dataTables_sizing {
  height: 0;
  overflow: hidden;
  margin: 0 !important;
  padding: 0 !important;
}
.dataTables_wrapper.no-footer .dataTables_scrollBody {
  border-bottom: 1px solid #111111;
}
.dataTables_wrapper.no-footer div.dataTables_scrollHead table,
.dataTables_wrapper.no-footer div.dataTables_scrollBody table {
  border-bottom: none;
}
.dataTables_wrapper:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}
@media screen and (max-width: 767px) {
  .dataTables_wrapper .dataTables_info,
  .dataTables_wrapper .dataTables_paginate {
    float: none;
    text-align: center;
  }
  .dataTables_wrapper .dataTables_paginate {
    margin-top: 0.5em;
  }
}
@media screen and (max-width: 640px) {
  .dataTables_wrapper .dataTables_length,
  .dataTables_wrapper .dataTables_filter {
    float: none;
    text-align: center;
  }
  .dataTables_wrapper .dataTables_filter {
    margin-top: 0.5em;
  }
}
/*!
 * Bootstrap v3.3.4 (http://getbootstrap.com)
 * Copyright 2011-2015 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
body {
  margin: 0;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, 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-color: transparent;
}
a:active, a:hover {
  outline: 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b, strong {
  font-weight: 700;
}
dfn {
  font-style: italic;
}
h1 {
  margin: 0.67em 0;
  font-size: 2em;
}
mark {
  color: #000;
  background: #ff0;
}
small {
  font-size: 80%;
}
sub, sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 1em 40px;
}
hr {
  height: 0;
  box-sizing: content-box;
}
pre {
  overflow: auto;
}
code, kbd, pre, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
button, input, optgroup, select, textarea {
  margin: 0;
  font: inherit;
  color: inherit;
}
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 {
  padding: 0;
  border: 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] {
  box-sizing: content-box;
  -webkit-appearance: textfield;
}
input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}
fieldset {
  padding: 0.35em 0.625em 0.75em;
  margin: 0 2px;
  border: 1px solid silver;
}
legend {
  padding: 0;
  border: 0;
}
textarea {
  overflow: auto;
}
optgroup {
  font-weight: 700;
}
table {
  border-spacing: 0;
  border-collapse: collapse;
}
td, th {
  padding: 0;
}
/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print {
  *, :after, :before {
    color: #000 !important;
    text-shadow: none !important;
    background: 0 0 !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: "";
  }
  blockquote, pre {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  img, tr {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  h2, h3, p {
    orphans: 3;
    widows: 3;
  }
  h2, h3 {
    page-break-after: avoid;
  }
  select {
    background: #fff !important;
  }
  .navbar {
    display: none;
  }
  .btn > .caret, .dropup > .btn > .caret {
    border-top-color: #000 !important;
  }
  .label {
    border: 1px solid #000;
  }
  .table {
    border-collapse: collapse !important;
  }
  .table td, .table th {
    background-color: #fff !important;
  }
  .table-bordered td, .table-bordered th {
    border: 1px solid #ddd !important;
  }
}
@font-face {
  font-family: "Glyphicons Halflings";
  src: url(vendor/fonts/glyphicons-halflings-regular.eot);
  src: url(vendor/fonts/glyphicons-halflings-regular.eot?#iefix) format("embedded-opentype"), url(vendor/fonts/glyphicons-halflings-regular.woff2) format("woff2"), url(vendor/fonts/glyphicons-halflings-regular.woff) format("woff"), url(vendor/fonts/glyphicons-halflings-regular.ttf) format("truetype"), url(vendor/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format("svg");
}
.glyphicon {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: "Glyphicons Halflings";
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.glyphicon-asterisk:before {
  content: "*";
}
.glyphicon-plus:before {
  content: "+";
}
.glyphicon-eur:before, .glyphicon-euro:before {
  content: "€";
}
.glyphicon-minus:before {
  content: "−";
}
.glyphicon-cloud:before {
  content: "☁";
}
.glyphicon-envelope:before {
  content: "✉";
}
.glyphicon-pencil:before {
  content: "✏";
}
.glyphicon-glass:before {
  content: "\e001";
}
.glyphicon-music:before {
  content: "\e002";
}
.glyphicon-search:before {
  content: "\e003";
}
.glyphicon-heart:before {
  content: "\e005";
}
.glyphicon-star:before {
  content: "\e006";
}
.glyphicon-star-empty:before {
  content: "\e007";
}
.glyphicon-user:before {
  content: "\e008";
}
.glyphicon-film:before {
  content: "\e009";
}
.glyphicon-th-large:before {
  content: "\e010";
}
.glyphicon-th:before {
  content: "\e011";
}
.glyphicon-th-list:before {
  content: "\e012";
}
.glyphicon-ok:before {
  content: "\e013";
}
.glyphicon-remove:before {
  content: "\e014";
}
.glyphicon-zoom-in:before {
  content: "\e015";
}
.glyphicon-zoom-out:before {
  content: "\e016";
}
.glyphicon-off:before {
  content: "\e017";
}
.glyphicon-signal:before {
  content: "\e018";
}
.glyphicon-cog:before {
  content: "\e019";
}
.glyphicon-trash:before {
  content: "\e020";
}
.glyphicon-home:before {
  content: "\e021";
}
.glyphicon-file:before {
  content: "\e022";
}
.glyphicon-time:before {
  content: "\e023";
}
.glyphicon-road:before {
  content: "\e024";
}
.glyphicon-download-alt:before {
  content: "\e025";
}
.glyphicon-download:before {
  content: "\e026";
}
.glyphicon-upload:before {
  content: "\e027";
}
.glyphicon-inbox:before {
  content: "\e028";
}
.glyphicon-play-circle:before {
  content: "\e029";
}
.glyphicon-repeat:before {
  content: "\e030";
}
.glyphicon-refresh:before {
  content: "\e031";
}
.glyphicon-list-alt:before {
  content: "\e032";
}
.glyphicon-lock:before {
  content: "\e033";
}
.glyphicon-flag:before {
  content: "\e034";
}
.glyphicon-headphones:before {
  content: "\e035";
}
.glyphicon-volume-off:before {
  content: "\e036";
}
.glyphicon-volume-down:before {
  content: "\e037";
}
.glyphicon-volume-up:before {
  content: "\e038";
}
.glyphicon-qrcode:before {
  content: "\e039";
}
.glyphicon-barcode:before {
  content: "\e040";
}
.glyphicon-tag:before {
  content: "\e041";
}
.glyphicon-tags:before {
  content: "\e042";
}
.glyphicon-book:before {
  content: "\e043";
}
.glyphicon-bookmark:before {
  content: "\e044";
}
.glyphicon-print:before {
  content: "\e045";
}
.glyphicon-camera:before {
  content: "\e046";
}
.glyphicon-font:before {
  content: "\e047";
}
.glyphicon-bold:before {
  content: "\e048";
}
.glyphicon-italic:before {
  content: "\e049";
}
.glyphicon-text-height:before {
  content: "\e050";
}
.glyphicon-text-width:before {
  content: "\e051";
}
.glyphicon-align-left:before {
  content: "\e052";
}
.glyphicon-align-center:before {
  content: "\e053";
}
.glyphicon-align-right:before {
  content: "\e054";
}
.glyphicon-align-justify:before {
  content: "\e055";
}
.glyphicon-list:before {
  content: "\e056";
}
.glyphicon-indent-left:before {
  content: "\e057";
}
.glyphicon-indent-right:before {
  content: "\e058";
}
.glyphicon-facetime-video:before {
  content: "\e059";
}
.glyphicon-picture:before {
  content: "\e060";
}
.glyphicon-map-marker:before {
  content: "\e062";
}
.glyphicon-adjust:before {
  content: "\e063";
}
.glyphicon-tint:before {
  content: "\e064";
}
.glyphicon-edit:before {
  content: "\e065";
}
.glyphicon-share:before {
  content: "\e066";
}
.glyphicon-check:before {
  content: "\e067";
}
.glyphicon-move:before {
  content: "\e068";
}
.glyphicon-step-backward:before {
  content: "\e069";
}
.glyphicon-fast-backward:before {
  content: "\e070";
}
.glyphicon-backward:before {
  content: "\e071";
}
.glyphicon-play:before {
  content: "\e072";
}
.glyphicon-pause:before {
  content: "\e073";
}
.glyphicon-stop:before {
  content: "\e074";
}
.glyphicon-forward:before {
  content: "\e075";
}
.glyphicon-fast-forward:before {
  content: "\e076";
}
.glyphicon-step-forward:before {
  content: "\e077";
}
.glyphicon-eject:before {
  content: "\e078";
}
.glyphicon-chevron-left:before {
  content: "\e079";
}
.glyphicon-chevron-right:before {
  content: "\e080";
}
.glyphicon-plus-sign:before {
  content: "\e081";
}
.glyphicon-minus-sign:before {
  content: "\e082";
}
.glyphicon-remove-sign:before {
  content: "\e083";
}
.glyphicon-ok-sign:before {
  content: "\e084";
}
.glyphicon-question-sign:before {
  content: "\e085";
}
.glyphicon-info-sign:before {
  content: "\e086";
}
.glyphicon-screenshot:before {
  content: "\e087";
}
.glyphicon-remove-circle:before {
  content: "\e088";
}
.glyphicon-ok-circle:before {
  content: "\e089";
}
.glyphicon-ban-circle:before {
  content: "\e090";
}
.glyphicon-arrow-left:before {
  content: "\e091";
}
.glyphicon-arrow-right:before {
  content: "\e092";
}
.glyphicon-arrow-up:before {
  content: "\e093";
}
.glyphicon-arrow-down:before {
  content: "\e094";
}
.glyphicon-share-alt:before {
  content: "\e095";
}
.glyphicon-resize-full:before {
  content: "\e096";
}
.glyphicon-resize-small:before {
  content: "\e097";
}
.glyphicon-exclamation-sign:before {
  content: "\e101";
}
.glyphicon-gift:before {
  content: "\e102";
}
.glyphicon-leaf:before {
  content: "\e103";
}
.glyphicon-fire:before {
  content: "\e104";
}
.glyphicon-eye-open:before {
  content: "\e105";
}
.glyphicon-eye-close:before {
  content: "\e106";
}
.glyphicon-warning-sign:before {
  content: "\e107";
}
.glyphicon-plane:before {
  content: "\e108";
}
.glyphicon-calendar:before {
  content: "\e109";
}
.glyphicon-random:before {
  content: "\e110";
}
.glyphicon-comment:before {
  content: "\e111";
}
.glyphicon-magnet:before {
  content: "\e112";
}
.glyphicon-chevron-up:before {
  content: "\e113";
}
.glyphicon-chevron-down:before {
  content: "\e114";
}
.glyphicon-retweet:before {
  content: "\e115";
}
.glyphicon-shopping-cart:before {
  content: "\e116";
}
.glyphicon-folder-close:before {
  content: "\e117";
}
.glyphicon-folder-open:before {
  content: "\e118";
}
.glyphicon-resize-vertical:before {
  content: "\e119";
}
.glyphicon-resize-horizontal:before {
  content: "\e120";
}
.glyphicon-hdd:before {
  content: "\e121";
}
.glyphicon-bullhorn:before {
  content: "\e122";
}
.glyphicon-bell:before {
  content: "\e123";
}
.glyphicon-certificate:before {
  content: "\e124";
}
.glyphicon-thumbs-up:before {
  content: "\e125";
}
.glyphicon-thumbs-down:before {
  content: "\e126";
}
.glyphicon-hand-right:before {
  content: "\e127";
}
.glyphicon-hand-left:before {
  content: "\e128";
}
.glyphicon-hand-up:before {
  content: "\e129";
}
.glyphicon-hand-down:before {
  content: "\e130";
}
.glyphicon-circle-arrow-right:before {
  content: "\e131";
}
.glyphicon-circle-arrow-left:before {
  content: "\e132";
}
.glyphicon-circle-arrow-up:before {
  content: "\e133";
}
.glyphicon-circle-arrow-down:before {
  content: "\e134";
}
.glyphicon-globe:before {
  content: "\e135";
}
.glyphicon-wrench:before {
  content: "\e136";
}
.glyphicon-tasks:before {
  content: "\e137";
}
.glyphicon-filter:before {
  content: "\e138";
}
.glyphicon-briefcase:before {
  content: "\e139";
}
.glyphicon-fullscreen:before {
  content: "\e140";
}
.glyphicon-dashboard:before {
  content: "\e141";
}
.glyphicon-paperclip:before {
  content: "\e142";
}
.glyphicon-heart-empty:before {
  content: "\e143";
}
.glyphicon-link:before {
  content: "\e144";
}
.glyphicon-phone:before {
  content: "\e145";
}
.glyphicon-pushpin:before {
  content: "\e146";
}
.glyphicon-usd:before {
  content: "\e148";
}
.glyphicon-gbp:before {
  content: "\e149";
}
.glyphicon-sort:before {
  content: "\e150";
}
.glyphicon-sort-by-alphabet:before {
  content: "\e151";
}
.glyphicon-sort-by-alphabet-alt:before {
  content: "\e152";
}
.glyphicon-sort-by-order:before {
  content: "\e153";
}
.glyphicon-sort-by-order-alt:before {
  content: "\e154";
}
.glyphicon-sort-by-attributes:before {
  content: "\e155";
}
.glyphicon-sort-by-attributes-alt:before {
  content: "\e156";
}
.glyphicon-unchecked:before {
  content: "\e157";
}
.glyphicon-expand:before {
  content: "\e158";
}
.glyphicon-collapse-down:before {
  content: "\e159";
}
.glyphicon-collapse-up:before {
  content: "\e160";
}
.glyphicon-log-in:before {
  content: "\e161";
}
.glyphicon-flash:before {
  content: "\e162";
}
.glyphicon-log-out:before {
  content: "\e163";
}
.glyphicon-new-window:before {
  content: "\e164";
}
.glyphicon-record:before {
  content: "\e165";
}
.glyphicon-save:before {
  content: "\e166";
}
.glyphicon-open:before {
  content: "\e167";
}
.glyphicon-saved:before {
  content: "\e168";
}
.glyphicon-import:before {
  content: "\e169";
}
.glyphicon-export:before {
  content: "\e170";
}
.glyphicon-send:before {
  content: "\e171";
}
.glyphicon-floppy-disk:before {
  content: "\e172";
}
.glyphicon-floppy-saved:before {
  content: "\e173";
}
.glyphicon-floppy-remove:before {
  content: "\e174";
}
.glyphicon-floppy-save:before {
  content: "\e175";
}
.glyphicon-floppy-open:before {
  content: "\e176";
}
.glyphicon-credit-card:before {
  content: "\e177";
}
.glyphicon-transfer:before {
  content: "\e178";
}
.glyphicon-cutlery:before {
  content: "\e179";
}
.glyphicon-header:before {
  content: "\e180";
}
.glyphicon-compressed:before {
  content: "\e181";
}
.glyphicon-earphone:before {
  content: "\e182";
}
.glyphicon-phone-alt:before {
  content: "\e183";
}
.glyphicon-tower:before {
  content: "\e184";
}
.glyphicon-stats:before {
  content: "\e185";
}
.glyphicon-sd-video:before {
  content: "\e186";
}
.glyphicon-hd-video:before {
  content: "\e187";
}
.glyphicon-subtitles:before {
  content: "\e188";
}
.glyphicon-sound-stereo:before {
  content: "\e189";
}
.glyphicon-sound-dolby:before {
  content: "\e190";
}
.glyphicon-sound-5-1:before {
  content: "\e191";
}
.glyphicon-sound-6-1:before {
  content: "\e192";
}
.glyphicon-sound-7-1:before {
  content: "\e193";
}
.glyphicon-copyright-mark:before {
  content: "\e194";
}
.glyphicon-registration-mark:before {
  content: "\e195";
}
.glyphicon-cloud-download:before {
  content: "\e197";
}
.glyphicon-cloud-upload:before {
  content: "\e198";
}
.glyphicon-tree-conifer:before {
  content: "\e199";
}
.glyphicon-tree-deciduous:before {
  content: "\e200";
}
.glyphicon-cd:before {
  content: "\e201";
}
.glyphicon-save-file:before {
  content: "\e202";
}
.glyphicon-open-file:before {
  content: "\e203";
}
.glyphicon-level-up:before {
  content: "\e204";
}
.glyphicon-copy:before {
  content: "\e205";
}
.glyphicon-paste:before {
  content: "\e206";
}
.glyphicon-alert:before {
  content: "\e209";
}
.glyphicon-equalizer:before {
  content: "\e210";
}
.glyphicon-king:before {
  content: "\e211";
}
.glyphicon-queen:before {
  content: "\e212";
}
.glyphicon-pawn:before {
  content: "\e213";
}
.glyphicon-bishop:before {
  content: "\e214";
}
.glyphicon-knight:before {
  content: "\e215";
}
.glyphicon-baby-formula:before {
  content: "\e216";
}
.glyphicon-tent:before {
  content: "⛺";
}
.glyphicon-blackboard:before {
  content: "\e218";
}
.glyphicon-bed:before {
  content: "\e219";
}
.glyphicon-apple:before {
  content: "\f8ff";
}
.glyphicon-erase:before {
  content: "\e221";
}
.glyphicon-hourglass:before {
  content: "⌛";
}
.glyphicon-lamp:before {
  content: "\e223";
}
.glyphicon-duplicate:before {
  content: "\e224";
}
.glyphicon-piggy-bank:before {
  content: "\e225";
}
.glyphicon-scissors:before {
  content: "\e226";
}
.glyphicon-bitcoin:before {
  content: "\e227";
}
.glyphicon-btc:before {
  content: "\e227";
}
.glyphicon-xbt:before {
  content: "\e227";
}
.glyphicon-yen:before {
  content: "¥";
}
.glyphicon-jpy:before {
  content: "¥";
}
.glyphicon-ruble:before {
  content: "₽";
}
.glyphicon-rub:before {
  content: "₽";
}
.glyphicon-scale:before {
  content: "\e230";
}
.glyphicon-ice-lolly:before {
  content: "\e231";
}
.glyphicon-ice-lolly-tasted:before {
  content: "\e232";
}
.glyphicon-education:before {
  content: "\e233";
}
.glyphicon-option-horizontal:before {
  content: "\e234";
}
.glyphicon-option-vertical:before {
  content: "\e235";
}
.glyphicon-menu-hamburger:before {
  content: "\e236";
}
.glyphicon-modal-window:before {
  content: "\e237";
}
.glyphicon-oil:before {
  content: "\e238";
}
.glyphicon-grain:before {
  content: "\e239";
}
.glyphicon-sunglasses:before {
  content: "\e240";
}
.glyphicon-text-size:before {
  content: "\e241";
}
.glyphicon-text-color:before {
  content: "\e242";
}
.glyphicon-text-background:before {
  content: "\e243";
}
.glyphicon-object-align-top:before {
  content: "\e244";
}
.glyphicon-object-align-bottom:before {
  content: "\e245";
}
.glyphicon-object-align-horizontal:before {
  content: "\e246";
}
.glyphicon-object-align-left:before {
  content: "\e247";
}
.glyphicon-object-align-vertical:before {
  content: "\e248";
}
.glyphicon-object-align-right:before {
  content: "\e249";
}
.glyphicon-triangle-right:before {
  content: "\e250";
}
.glyphicon-triangle-left:before {
  content: "\e251";
}
.glyphicon-triangle-bottom:before {
  content: "\e252";
}
.glyphicon-triangle-top:before {
  content: "\e253";
}
.glyphicon-console:before {
  content: "\e254";
}
.glyphicon-superscript:before {
  content: "\e255";
}
.glyphicon-subscript:before {
  content: "\e256";
}
.glyphicon-menu-left:before {
  content: "\e257";
}
.glyphicon-menu-right:before {
  content: "\e258";
}
.glyphicon-menu-down:before {
  content: "\e259";
}
.glyphicon-menu-up:before {
  content: "\e260";
}
* {
  box-sizing: border-box;
}
:after, :before {
  box-sizing: border-box;
}
html {
  font-size: 10px;
  -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: #333;
  background-color: #fff;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
a {
  color: #337ab7;
  text-decoration: none;
}
a:focus, a:hover {
  color: #23527c;
  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;
}
.carousel-inner > .item > a > img, .carousel-inner > .item > img, .img-responsive, .thumbnail a > img, .thumbnail > img {
  display: block;
  max-width: 100%;
  height: auto;
}
.img-rounded {
  border-radius: 6px;
}
.img-thumbnail {
  display: inline-block;
  max-width: 100%;
  height: auto;
  padding: 4px;
  line-height: 1.42857143;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: all 0.2s ease-in-out;
}
.img-circle {
  border-radius: 50%;
}
hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eee;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  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;
}
[role=button] {
  cursor: pointer;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}
.h1 .small, .h1 small, .h2 .small, .h2 small, .h3 .small, .h3 small, .h4 .small, .h4 small, .h5 .small, .h5 small, .h6 .small, .h6 small, h1 .small, h1 small, h2 .small, h2 small, h3 .small, h3 small, h4 .small, h4 small, h5 .small, h5 small, h6 .small, h6 small {
  font-weight: 400;
  line-height: 1;
  color: #777;
}
.h1, .h2, .h3, h1, h2, h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}
.h1 .small, .h1 small, .h2 .small, .h2 small, .h3 .small, .h3 small, h1 .small, h1 small, h2 .small, h2 small, h3 .small, h3 small {
  font-size: 65%;
}
.h4, .h5, .h6, h4, h5, h6 {
  margin-top: 10px;
  margin-bottom: 10px;
}
.h4 .small, .h4 small, .h5 .small, .h5 small, .h6 .small, .h6 small, h4 .small, h4 small, h5 .small, h5 small, h6 .small, h6 small {
  font-size: 75%;
}
.h1, h1 {
  font-size: 36px;
}
.h2, h2 {
  font-size: 30px;
}
.h3, h3 {
  font-size: 24px;
}
.h4, h4 {
  font-size: 18px;
}
.h5, h5 {
  font-size: 14px;
}
.h6, h6 {
  font-size: 12px;
}
p {
  margin: 0 0 10px;
}
.lead {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .lead {
    font-size: 21px;
  }
}
.small, small {
  font-size: 85%;
}
.mark, mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
}
.text-nowrap {
  white-space: nowrap;
}
.text-lowercase {
  text-transform: lowercase;
}
.text-uppercase {
  text-transform: uppercase;
}
.text-capitalize {
  text-transform: capitalize;
}
.text-muted {
  color: #777;
}
.text-primary {
  color: #337ab7;
}
a.text-primary:hover {
  color: #286090;
}
.text-success {
  color: #3c763d;
}
a.text-success:hover {
  color: #2b542c;
}
.text-info {
  color: #31708f;
}
a.text-info:hover {
  color: #245269;
}
.text-warning {
  color: #8a6d3b;
}
a.text-warning:hover {
  color: #66512c;
}
.text-danger {
  color: #a94442;
}
a.text-danger:hover {
  color: #843534;
}
.bg-primary {
  color: #fff;
  background-color: #337ab7;
}
a.bg-primary:hover {
  background-color: #286090;
}
.bg-success {
  background-color: #dff0d8;
}
a.bg-success:hover {
  background-color: #c1e2b3;
}
.bg-info {
  background-color: #d9edf7;
}
a.bg-info:hover {
  background-color: #afd9ee;
}
.bg-warning {
  background-color: #fcf8e3;
}
a.bg-warning:hover {
  background-color: #f7ecb5;
}
.bg-danger {
  background-color: #f2dede;
}
a.bg-danger:hover {
  background-color: #e4b9b9;
}
.page-header {
  padding-bottom: 9px;
  margin: 40px 0 20px;
  border-bottom: 1px solid #eee;
}
ol, ul {
  margin-top: 0;
  margin-bottom: 10px;
}
ol ol, ol ul, ul ol, ul ul {
  margin-bottom: 0;
}
.list-unstyled {
  padding-left: 0;
  list-style: none;
}
.list-inline {
  padding-left: 0;
  margin-left: -5px;
  list-style: none;
}
.list-inline > li {
  display: inline-block;
  padding-right: 5px;
  padding-left: 5px;
}
dl {
  margin-top: 0;
  margin-bottom: 20px;
}
dd, dt {
  line-height: 1.42857143;
}
dt {
  font-weight: 700;
}
dd {
  margin-left: 0;
}
@media (min-width: 768px) {
  .dl-horizontal dt {
    float: left;
    width: 160px;
    overflow: hidden;
    clear: left;
    text-align: right;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .dl-horizontal dd {
    margin-left: 180px;
  }
}
abbr[data-original-title], abbr[title] {
  cursor: help;
  border-bottom: 1px dotted #777;
}
.initialism {
  font-size: 90%;
  text-transform: uppercase;
}
blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  font-size: 17.5px;
  border-left: 5px solid #eee;
}
blockquote ol:last-child, blockquote p:last-child, blockquote ul:last-child {
  margin-bottom: 0;
}
blockquote .small, blockquote footer, blockquote small {
  display: block;
  font-size: 80%;
  line-height: 1.42857143;
  color: #777;
}
blockquote .small:before, blockquote footer:before, blockquote small:before {
  content: "— ";
}
.blockquote-reverse, blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  text-align: right;
  border-right: 5px solid #eee;
  border-left: 0;
}
.blockquote-reverse .small:before, .blockquote-reverse footer:before, .blockquote-reverse small:before, blockquote.pull-right .small:before, blockquote.pull-right footer:before, blockquote.pull-right small:before {
  content: "";
}
.blockquote-reverse .small:after, .blockquote-reverse footer:after, .blockquote-reverse small:after, blockquote.pull-right .small:after, blockquote.pull-right footer:after, blockquote.pull-right small:after {
  content: " —";
}
address {
  margin-bottom: 20px;
  font-style: normal;
  line-height: 1.42857143;
}
code, kbd, pre, samp {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}
code {
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  background-color: #f9f2f4;
  border-radius: 4px;
}
kbd {
  padding: 2px 4px;
  font-size: 90%;
  color: #fff;
  background-color: #333;
  border-radius: 3px;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
}
kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: 700;
  box-shadow: none;
}
pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.42857143;
  color: #333;
  word-break: break-all;
  word-wrap: break-word;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 4px;
}
pre code {
  padding: 0;
  font-size: inherit;
  color: inherit;
  white-space: pre-wrap;
  background-color: transparent;
  border-radius: 0;
}
.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}
.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
.container-fluid {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.row {
  margin-right: -15px;
  margin-left: -15px;
}
.col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}
.col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 {
  float: left;
}
.col-xs-12 {
  width: 100%;
}
.col-xs-11 {
  width: 91.66666667%;
}
.col-xs-10 {
  width: 83.33333333%;
}
.col-xs-9 {
  width: 75%;
}
.col-xs-8 {
  width: 66.66666667%;
}
.col-xs-7 {
  width: 58.33333333%;
}
.col-xs-6 {
  width: 50%;
}
.col-xs-5 {
  width: 41.66666667%;
}
.col-xs-4 {
  width: 33.33333333%;
}
.col-xs-3 {
  width: 25%;
}
.col-xs-2 {
  width: 16.66666667%;
}
.col-xs-1 {
  width: 8.33333333%;
}
.col-xs-pull-12 {
  right: 100%;
}
.col-xs-pull-11 {
  right: 91.66666667%;
}
.col-xs-pull-10 {
  right: 83.33333333%;
}
.col-xs-pull-9 {
  right: 75%;
}
.col-xs-pull-8 {
  right: 66.66666667%;
}
.col-xs-pull-7 {
  right: 58.33333333%;
}
.col-xs-pull-6 {
  right: 50%;
}
.col-xs-pull-5 {
  right: 41.66666667%;
}
.col-xs-pull-4 {
  right: 33.33333333%;
}
.col-xs-pull-3 {
  right: 25%;
}
.col-xs-pull-2 {
  right: 16.66666667%;
}
.col-xs-pull-1 {
  right: 8.33333333%;
}
.col-xs-pull-0 {
  right: auto;
}
.col-xs-push-12 {
  left: 100%;
}
.col-xs-push-11 {
  left: 91.66666667%;
}
.col-xs-push-10 {
  left: 83.33333333%;
}
.col-xs-push-9 {
  left: 75%;
}
.col-xs-push-8 {
  left: 66.66666667%;
}
.col-xs-push-7 {
  left: 58.33333333%;
}
.col-xs-push-6 {
  left: 50%;
}
.col-xs-push-5 {
  left: 41.66666667%;
}
.col-xs-push-4 {
  left: 33.33333333%;
}
.col-xs-push-3 {
  left: 25%;
}
.col-xs-push-2 {
  left: 16.66666667%;
}
.col-xs-push-1 {
  left: 8.33333333%;
}
.col-xs-push-0 {
  left: auto;
}
.col-xs-offset-12 {
  margin-left: 100%;
}
.col-xs-offset-11 {
  margin-left: 91.66666667%;
}
.col-xs-offset-10 {
  margin-left: 83.33333333%;
}
.col-xs-offset-9 {
  margin-left: 75%;
}
.col-xs-offset-8 {
  margin-left: 66.66666667%;
}
.col-xs-offset-7 {
  margin-left: 58.33333333%;
}
.col-xs-offset-6 {
  margin-left: 50%;
}
.col-xs-offset-5 {
  margin-left: 41.66666667%;
}
.col-xs-offset-4 {
  margin-left: 33.33333333%;
}
.col-xs-offset-3 {
  margin-left: 25%;
}
.col-xs-offset-2 {
  margin-left: 16.66666667%;
}
.col-xs-offset-1 {
  margin-left: 8.33333333%;
}
.col-xs-offset-0 {
  margin-left: 0;
}
@media (min-width: 768px) {
  .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9 {
    float: left;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.66666667%;
  }
  .col-sm-10 {
    width: 83.33333333%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66666667%;
  }
  .col-sm-7 {
    width: 58.33333333%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.66666667%;
  }
  .col-sm-4 {
    width: 33.33333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.66666667%;
  }
  .col-sm-1 {
    width: 8.33333333%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-pull-11 {
    right: 91.66666667%;
  }
  .col-sm-pull-10 {
    right: 83.33333333%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-8 {
    right: 66.66666667%;
  }
  .col-sm-pull-7 {
    right: 58.33333333%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-5 {
    right: 41.66666667%;
  }
  .col-sm-pull-4 {
    right: 33.33333333%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-2 {
    right: 16.66666667%;
  }
  .col-sm-pull-1 {
    right: 8.33333333%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-push-11 {
    left: 91.66666667%;
  }
  .col-sm-push-10 {
    left: 83.33333333%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-8 {
    left: 66.66666667%;
  }
  .col-sm-push-7 {
    left: 58.33333333%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-5 {
    left: 41.66666667%;
  }
  .col-sm-push-4 {
    left: 33.33333333%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-2 {
    left: 16.66666667%;
  }
  .col-sm-push-1 {
    left: 8.33333333%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-0 {
    margin-left: 0;
  }
}
@media (min-width: 992px) {
  .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9 {
    float: left;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-11 {
    width: 91.66666667%;
  }
  .col-md-10 {
    width: 83.33333333%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-8 {
    width: 66.66666667%;
  }
  .col-md-7 {
    width: 58.33333333%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-5 {
    width: 41.66666667%;
  }
  .col-md-4 {
    width: 33.33333333%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-2 {
    width: 16.66666667%;
  }
  .col-md-1 {
    width: 8.33333333%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-pull-11 {
    right: 91.66666667%;
  }
  .col-md-pull-10 {
    right: 83.33333333%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-8 {
    right: 66.66666667%;
  }
  .col-md-pull-7 {
    right: 58.33333333%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-5 {
    right: 41.66666667%;
  }
  .col-md-pull-4 {
    right: 33.33333333%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-2 {
    right: 16.66666667%;
  }
  .col-md-pull-1 {
    right: 8.33333333%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-push-11 {
    left: 91.66666667%;
  }
  .col-md-push-10 {
    left: 83.33333333%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-8 {
    left: 66.66666667%;
  }
  .col-md-push-7 {
    left: 58.33333333%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-5 {
    left: 41.66666667%;
  }
  .col-md-push-4 {
    left: 33.33333333%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-2 {
    left: 16.66666667%;
  }
  .col-md-push-1 {
    left: 8.33333333%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-0 {
    margin-left: 0;
  }
}
@media (min-width: 1200px) {
  .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9 {
    float: left;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-11 {
    width: 91.66666667%;
  }
  .col-lg-10 {
    width: 83.33333333%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-8 {
    width: 66.66666667%;
  }
  .col-lg-7 {
    width: 58.33333333%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-5 {
    width: 41.66666667%;
  }
  .col-lg-4 {
    width: 33.33333333%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-2 {
    width: 16.66666667%;
  }
  .col-lg-1 {
    width: 8.33333333%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-pull-11 {
    right: 91.66666667%;
  }
  .col-lg-pull-10 {
    right: 83.33333333%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-8 {
    right: 66.66666667%;
  }
  .col-lg-pull-7 {
    right: 58.33333333%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-5 {
    right: 41.66666667%;
  }
  .col-lg-pull-4 {
    right: 33.33333333%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-2 {
    right: 16.66666667%;
  }
  .col-lg-pull-1 {
    right: 8.33333333%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-push-11 {
    left: 91.66666667%;
  }
  .col-lg-push-10 {
    left: 83.33333333%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-8 {
    left: 66.66666667%;
  }
  .col-lg-push-7 {
    left: 58.33333333%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-5 {
    left: 41.66666667%;
  }
  .col-lg-push-4 {
    left: 33.33333333%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-2 {
    left: 16.66666667%;
  }
  .col-lg-push-1 {
    left: 8.33333333%;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-lg-offset-0 {
    margin-left: 0;
  }
}
table {
  background-color: transparent;
}
caption {
  padding-top: 8px;
  padding-bottom: 8px;
  color: #777;
  text-align: left;
}
th {
  text-align: left;
}
.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}
.table > tbody > tr > td, .table > tbody > tr > th, .table > tfoot > tr > td, .table > tfoot > tr > th, .table > thead > tr > td, .table > thead > tr > th {
  padding: 8px;
  line-height: 1.42857143;
  vertical-align: top;
  border-top: 1px solid #ddd;
}
.table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #ddd;
}
.table > caption + thead > tr:first-child > td, .table > caption + thead > tr:first-child > th, .table > colgroup + thead > tr:first-child > td, .table > colgroup + thead > tr:first-child > th, .table > thead:first-child > tr:first-child > td, .table > thead:first-child > tr:first-child > th {
  border-top: 0;
}
.table > tbody + tbody {
  border-top: 2px solid #ddd;
}
.table .table {
  background-color: #fff;
}
.table-condensed > tbody > tr > td, .table-condensed > tbody > tr > th, .table-condensed > tfoot > tr > td, .table-condensed > tfoot > tr > th, .table-condensed > thead > tr > td, .table-condensed > thead > tr > th {
  padding: 5px;
}
.table-bordered {
  border: 1px solid #ddd;
}
.table-bordered > tbody > tr > td, .table-bordered > tbody > tr > th, .table-bordered > tfoot > tr > td, .table-bordered > tfoot > tr > th, .table-bordered > thead > tr > td, .table-bordered > thead > tr > th {
  border: 1px solid #ddd;
}
.table-bordered > thead > tr > td, .table-bordered > thead > tr > th {
  border-bottom-width: 2px;
}
.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #f9f9f9;
}
.table-hover > tbody > tr:hover {
  background-color: #f5f5f5;
}
table col[class*=col-] {
  position: static;
  display: table-column;
  float: none;
}
table td[class*=col-], table th[class*=col-] {
  position: static;
  display: table-cell;
  float: none;
}
.table > tbody > tr.active > td, .table > tbody > tr.active > th, .table > tbody > tr > td.active, .table > tbody > tr > th.active, .table > tfoot > tr.active > td, .table > tfoot > tr.active > th, .table > tfoot > tr > td.active, .table > tfoot > tr > th.active, .table > thead > tr.active > td, .table > thead > tr.active > th, .table > thead > tr > td.active, .table > thead > tr > th.active {
  background-color: #f5f5f5;
}
.table-hover > tbody > tr.active:hover > td, .table-hover > tbody > tr.active:hover > th, .table-hover > tbody > tr:hover > .active, .table-hover > tbody > tr > td.active:hover, .table-hover > tbody > tr > th.active:hover {
  background-color: #e8e8e8;
}
.table > tbody > tr.success > td, .table > tbody > tr.success > th, .table > tbody > tr > td.success, .table > tbody > tr > th.success, .table > tfoot > tr.success > td, .table > tfoot > tr.success > th, .table > tfoot > tr > td.success, .table > tfoot > tr > th.success, .table > thead > tr.success > td, .table > thead > tr.success > th, .table > thead > tr > td.success, .table > thead > tr > th.success {
  background-color: #dff0d8;
}
.table-hover > tbody > tr.success:hover > td, .table-hover > tbody > tr.success:hover > th, .table-hover > tbody > tr:hover > .success, .table-hover > tbody > tr > td.success:hover, .table-hover > tbody > tr > th.success:hover {
  background-color: #d0e9c6;
}
.table > tbody > tr.info > td, .table > tbody > tr.info > th, .table > tbody > tr > td.info, .table > tbody > tr > th.info, .table > tfoot > tr.info > td, .table > tfoot > tr.info > th, .table > tfoot > tr > td.info, .table > tfoot > tr > th.info, .table > thead > tr.info > td, .table > thead > tr.info > th, .table > thead > tr > td.info, .table > thead > tr > th.info {
  background-color: #d9edf7;
}
.table-hover > tbody > tr.info:hover > td, .table-hover > tbody > tr.info:hover > th, .table-hover > tbody > tr:hover > .info, .table-hover > tbody > tr > td.info:hover, .table-hover > tbody > tr > th.info:hover {
  background-color: #c4e3f3;
}
.table > tbody > tr.warning > td, .table > tbody > tr.warning > th, .table > tbody > tr > td.warning, .table > tbody > tr > th.warning, .table > tfoot > tr.warning > td, .table > tfoot > tr.warning > th, .table > tfoot > tr > td.warning, .table > tfoot > tr > th.warning, .table > thead > tr.warning > td, .table > thead > tr.warning > th, .table > thead > tr > td.warning, .table > thead > tr > th.warning {
  background-color: #fcf8e3;
}
.table-hover > tbody > tr.warning:hover > td, .table-hover > tbody > tr.warning:hover > th, .table-hover > tbody > tr:hover > .warning, .table-hover > tbody > tr > td.warning:hover, .table-hover > tbody > tr > th.warning:hover {
  background-color: #faf2cc;
}
.table > tbody > tr.danger > td, .table > tbody > tr.danger > th, .table > tbody > tr > td.danger, .table > tbody > tr > th.danger, .table > tfoot > tr.danger > td, .table > tfoot > tr.danger > th, .table > tfoot > tr > td.danger, .table > tfoot > tr > th.danger, .table > thead > tr.danger > td, .table > thead > tr.danger > th, .table > thead > tr > td.danger, .table > thead > tr > th.danger {
  background-color: #f2dede;
}
.table-hover > tbody > tr.danger:hover > td, .table-hover > tbody > tr.danger:hover > th, .table-hover > tbody > tr:hover > .danger, .table-hover > tbody > tr > td.danger:hover, .table-hover > tbody > tr > th.danger:hover {
  background-color: #ebcccc;
}
.table-responsive {
  min-height: 0.01%;
  overflow-x: auto;
}
@media screen and (max-width: 767px) {
  .table-responsive {
    width: 100%;
    margin-bottom: 15px;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #ddd;
  }
  .table-responsive > .table {
    margin-bottom: 0;
  }
  .table-responsive > .table > tbody > tr > td, .table-responsive > .table > tbody > tr > th, .table-responsive > .table > tfoot > tr > td, .table-responsive > .table > tfoot > tr > th, .table-responsive > .table > thead > tr > td, .table-responsive > .table > thead > tr > th {
    white-space: nowrap;
  }
  .table-responsive > .table-bordered {
    border: 0;
  }
  .table-responsive > .table-bordered > tbody > tr > td:first-child, .table-responsive > .table-bordered > tbody > tr > th:first-child, .table-responsive > .table-bordered > tfoot > tr > td:first-child, .table-responsive > .table-bordered > tfoot > tr > th:first-child, .table-responsive > .table-bordered > thead > tr > td:first-child, .table-responsive > .table-bordered > thead > tr > th:first-child {
    border-left: 0;
  }
  .table-responsive > .table-bordered > tbody > tr > td:last-child, .table-responsive > .table-bordered > tbody > tr > th:last-child, .table-responsive > .table-bordered > tfoot > tr > td:last-child, .table-responsive > .table-bordered > tfoot > tr > th:last-child, .table-responsive > .table-bordered > thead > tr > td:last-child, .table-responsive > .table-bordered > thead > tr > th:last-child {
    border-right: 0;
  }
  .table-responsive > .table-bordered > tbody > tr:last-child > td, .table-responsive > .table-bordered > tbody > tr:last-child > th, .table-responsive > .table-bordered > tfoot > tr:last-child > td, .table-responsive > .table-bordered > tfoot > tr:last-child > th {
    border-bottom: 0;
  }
}
fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}
legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
  font-size: 21px;
  line-height: inherit;
  color: #333;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}
label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: 700;
}
input[type=search] {
  box-sizing: border-box;
}
input[type=checkbox], input[type=radio] {
  margin: 4px 0 0;
  margin-top: 1px \9 ;
  line-height: normal;
}
input[type=file] {
  display: block;
}
input[type=range] {
  display: block;
  width: 100%;
}
select[multiple], select[size] {
  height: auto;
}
input[type=file]:focus, input[type=checkbox]:focus, input[type=radio]:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
output {
  display: block;
  padding-top: 7px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
}
.form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  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;
}
.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);
}
.form-control::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #999;
}
.form-control::-webkit-input-placeholder {
  color: #999;
}
.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
  background-color: #eee;
  opacity: 1;
}
.form-control[disabled], fieldset[disabled] .form-control {
  cursor: not-allowed;
}
textarea.form-control {
  height: auto;
}
input[type=search] {
  -webkit-appearance: none;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input[type=date], input[type=time], input[type=datetime-local], input[type=month] {
    line-height: 34px;
  }
  .input-group-sm input[type=date], .input-group-sm input[type=time], .input-group-sm input[type=datetime-local], .input-group-sm input[type=month], input[type=date].input-sm, input[type=time].input-sm, input[type=datetime-local].input-sm, input[type=month].input-sm {
    line-height: 30px;
  }
  .input-group-lg input[type=date], .input-group-lg input[type=time], .input-group-lg input[type=datetime-local], .input-group-lg input[type=month], input[type=date].input-lg, input[type=time].input-lg, input[type=datetime-local].input-lg, input[type=month].input-lg {
    line-height: 46px;
  }
}
.form-group {
  margin-bottom: 15px;
}
.checkbox, .radio {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}
.checkbox label, .radio label {
  min-height: 20px;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: 400;
  cursor: pointer;
}
.checkbox input[type=checkbox], .checkbox-inline input[type=checkbox], .radio input[type=radio], .radio-inline input[type=radio] {
  position: absolute;
  margin-top: 4px \9 ;
  margin-left: -20px;
}
.checkbox + .checkbox, .radio + .radio {
  margin-top: -5px;
}
.checkbox-inline, .radio-inline {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: 400;
  vertical-align: middle;
  cursor: pointer;
}
.checkbox-inline + .checkbox-inline, .radio-inline + .radio-inline {
  margin-top: 0;
  margin-left: 10px;
}
fieldset[disabled] input[type=checkbox], fieldset[disabled] input[type=radio], input[type=checkbox].disabled, input[type=checkbox][disabled], input[type=radio].disabled, input[type=radio][disabled] {
  cursor: not-allowed;
}
.checkbox-inline.disabled, .radio-inline.disabled, fieldset[disabled] .checkbox-inline, fieldset[disabled] .radio-inline {
  cursor: not-allowed;
}
.checkbox.disabled label, .radio.disabled label, fieldset[disabled] .checkbox label, fieldset[disabled] .radio label {
  cursor: not-allowed;
}
.form-control-static {
  min-height: 34px;
  padding-top: 7px;
  padding-bottom: 7px;
  margin-bottom: 0;
}
.form-control-static.input-lg, .form-control-static.input-sm {
  padding-right: 0;
  padding-left: 0;
}
.input-sm {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
select.input-sm {
  height: 30px;
  line-height: 30px;
}
select[multiple].input-sm, textarea.input-sm {
  height: auto;
}
.form-group-sm .form-control {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
select.form-group-sm .form-control {
  height: 30px;
  line-height: 30px;
}
select[multiple].form-group-sm .form-control, textarea.form-group-sm .form-control {
  height: auto;
}
.form-group-sm .form-control-static {
  height: 30px;
  min-height: 32px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
}
.input-lg {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
select.input-lg {
  height: 46px;
  line-height: 46px;
}
select[multiple].input-lg, textarea.input-lg {
  height: auto;
}
.form-group-lg .form-control {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
select.form-group-lg .form-control {
  height: 46px;
  line-height: 46px;
}
select[multiple].form-group-lg .form-control, textarea.form-group-lg .form-control {
  height: auto;
}
.form-group-lg .form-control-static {
  height: 46px;
  min-height: 38px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}
.has-feedback {
  position: relative;
}
.has-feedback .form-control {
  padding-right: 42.5px;
}
.form-control-feedback {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  pointer-events: none;
}
.input-lg + .form-control-feedback {
  width: 46px;
  height: 46px;
  line-height: 46px;
}
.input-sm + .form-control-feedback {
  width: 30px;
  height: 30px;
  line-height: 30px;
}
.has-success .checkbox, .has-success .checkbox-inline, .has-success .control-label, .has-success .help-block, .has-success .radio, .has-success .radio-inline, .has-success.checkbox label, .has-success.checkbox-inline label, .has-success.radio label, .has-success.radio-inline label {
  color: #3c763d;
}
.has-success .form-control {
  border-color: #3c763d;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-success .form-control:focus {
  border-color: #2b542c;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
}
.has-success .input-group-addon {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #3c763d;
}
.has-success .form-control-feedback {
  color: #3c763d;
}
.has-warning .checkbox, .has-warning .checkbox-inline, .has-warning .control-label, .has-warning .help-block, .has-warning .radio, .has-warning .radio-inline, .has-warning.checkbox label, .has-warning.checkbox-inline label, .has-warning.radio label, .has-warning.radio-inline label {
  color: #8a6d3b;
}
.has-warning .form-control {
  border-color: #8a6d3b;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-warning .form-control:focus {
  border-color: #66512c;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
}
.has-warning .input-group-addon {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #8a6d3b;
}
.has-warning .form-control-feedback {
  color: #8a6d3b;
}
.has-error .checkbox, .has-error .checkbox-inline, .has-error .control-label, .has-error .help-block, .has-error .radio, .has-error .radio-inline, .has-error.checkbox label, .has-error.checkbox-inline label, .has-error.radio label, .has-error.radio-inline label {
  color: #a94442;
}
.has-error .form-control {
  border-color: #a94442;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-error .form-control:focus {
  border-color: #843534;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
}
.has-error .input-group-addon {
  color: #a94442;
  background-color: #f2dede;
  border-color: #a94442;
}
.has-error .form-control-feedback {
  color: #a94442;
}
.has-feedback label ~ .form-control-feedback {
  top: 25px;
}
.has-feedback label.sr-only ~ .form-control-feedback {
  top: 0;
}
.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #737373;
}
@media (min-width: 768px) {
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .form-control-static {
    display: inline-block;
  }
  .form-inline .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  .form-inline .input-group .form-control, .form-inline .input-group .input-group-addon, .form-inline .input-group .input-group-btn {
    width: auto;
  }
  .form-inline .input-group > .form-control {
    width: 100%;
  }
  .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .checkbox, .form-inline .radio {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .checkbox label, .form-inline .radio label {
    padding-left: 0;
  }
  .form-inline .checkbox input[type=checkbox], .form-inline .radio input[type=radio] {
    position: relative;
    margin-left: 0;
  }
  .form-inline .has-feedback .form-control-feedback {
    top: 0;
  }
}
.form-horizontal .checkbox, .form-horizontal .checkbox-inline, .form-horizontal .radio, .form-horizontal .radio-inline {
  padding-top: 7px;
  margin-top: 0;
  margin-bottom: 0;
}
.form-horizontal .checkbox, .form-horizontal .radio {
  min-height: 27px;
}
.form-horizontal .form-group {
  margin-right: -15px;
  margin-left: -15px;
}
@media (min-width: 768px) {
  .form-horizontal .control-label {
    padding-top: 7px;
    margin-bottom: 0;
    text-align: right;
  }
}
.form-horizontal .has-feedback .form-control-feedback {
  right: 15px;
}
@media (min-width: 768px) {
  .form-horizontal .form-group-lg .control-label {
    padding-top: 14.33px;
  }
  .form-horizontal .form-group-sm .control-label {
    padding-top: 6px;
  }
}
.btn {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}
.btn.active.focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn:active:focus, .btn:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.btn.focus, .btn:focus, .btn:hover {
  color: #333;
  text-decoration: none;
}
.btn.active, .btn:active {
  background-image: none;
  outline: 0;
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn.disabled, .btn[disabled], fieldset[disabled] .btn {
  pointer-events: none;
  cursor: not-allowed;
  filter: alpha(opacity=65);
  box-shadow: none;
  opacity: 0.65;
}
.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
}
.btn-default.active, .btn-default.focus, .btn-default:active, .btn-default:focus, .btn-default:hover, .open > .dropdown-toggle.btn-default {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}
.btn-default.active, .btn-default:active, .open > .dropdown-toggle.btn-default {
  background-image: none;
}
.btn-default.disabled, .btn-default.disabled.active, .btn-default.disabled.focus, .btn-default.disabled:active, .btn-default.disabled:focus, .btn-default.disabled:hover, .btn-default[disabled], .btn-default[disabled].active, .btn-default[disabled].focus, .btn-default[disabled]:active, .btn-default[disabled]:focus, .btn-default[disabled]:hover, fieldset[disabled] .btn-default, fieldset[disabled] .btn-default.active, fieldset[disabled] .btn-default.focus, fieldset[disabled] .btn-default:active, fieldset[disabled] .btn-default:focus, fieldset[disabled] .btn-default:hover {
  background-color: #fff;
  border-color: #ccc;
}
.btn-default .badge {
  color: #fff;
  background-color: #333;
}
.btn-primary {
  color: #fff;
  background-color: #337ab7;
  border-color: #2e6da4;
}
.btn-primary.active, .btn-primary.focus, .btn-primary:active, .btn-primary:focus, .btn-primary:hover, .open > .dropdown-toggle.btn-primary {
  color: #fff;
  background-color: #286090;
  border-color: #204d74;
}
.btn-primary.active, .btn-primary:active, .open > .dropdown-toggle.btn-primary {
  background-image: none;
}
.btn-primary.disabled, .btn-primary.disabled.active, .btn-primary.disabled.focus, .btn-primary.disabled:active, .btn-primary.disabled:focus, .btn-primary.disabled:hover, .btn-primary[disabled], .btn-primary[disabled].active, .btn-primary[disabled].focus, .btn-primary[disabled]:active, .btn-primary[disabled]:focus, .btn-primary[disabled]:hover, fieldset[disabled] .btn-primary, fieldset[disabled] .btn-primary.active, fieldset[disabled] .btn-primary.focus, fieldset[disabled] .btn-primary:active, fieldset[disabled] .btn-primary:focus, fieldset[disabled] .btn-primary:hover {
  background-color: #337ab7;
  border-color: #2e6da4;
}
.btn-primary .badge {
  color: #337ab7;
  background-color: #fff;
}
.btn-success {
  color: #fff;
  background-color: #5cb85c;
  border-color: #4cae4c;
}
.btn-success.active, .btn-success.focus, .btn-success:active, .btn-success:focus, .btn-success:hover, .open > .dropdown-toggle.btn-success {
  color: #fff;
  background-color: #449d44;
  border-color: #398439;
}
.btn-success.active, .btn-success:active, .open > .dropdown-toggle.btn-success {
  background-image: none;
}
.btn-success.disabled, .btn-success.disabled.active, .btn-success.disabled.focus, .btn-success.disabled:active, .btn-success.disabled:focus, .btn-success.disabled:hover, .btn-success[disabled], .btn-success[disabled].active, .btn-success[disabled].focus, .btn-success[disabled]:active, .btn-success[disabled]:focus, .btn-success[disabled]:hover, fieldset[disabled] .btn-success, fieldset[disabled] .btn-success.active, fieldset[disabled] .btn-success.focus, fieldset[disabled] .btn-success:active, fieldset[disabled] .btn-success:focus, fieldset[disabled] .btn-success:hover {
  background-color: #5cb85c;
  border-color: #4cae4c;
}
.btn-success .badge {
  color: #5cb85c;
  background-color: #fff;
}
.btn-info {
  color: #fff;
  background-color: #5bc0de;
  border-color: #46b8da;
}
.btn-info.active, .btn-info.focus, .btn-info:active, .btn-info:focus, .btn-info:hover, .open > .dropdown-toggle.btn-info {
  color: #fff;
  background-color: #31b0d5;
  border-color: #269abc;
}
.btn-info.active, .btn-info:active, .open > .dropdown-toggle.btn-info {
  background-image: none;
}
.btn-info.disabled, .btn-info.disabled.active, .btn-info.disabled.focus, .btn-info.disabled:active, .btn-info.disabled:focus, .btn-info.disabled:hover, .btn-info[disabled], .btn-info[disabled].active, .btn-info[disabled].focus, .btn-info[disabled]:active, .btn-info[disabled]:focus, .btn-info[disabled]:hover, fieldset[disabled] .btn-info, fieldset[disabled] .btn-info.active, fieldset[disabled] .btn-info.focus, fieldset[disabled] .btn-info:active, fieldset[disabled] .btn-info:focus, fieldset[disabled] .btn-info:hover {
  background-color: #5bc0de;
  border-color: #46b8da;
}
.btn-info .badge {
  color: #5bc0de;
  background-color: #fff;
}
.btn-warning {
  color: #fff;
  background-color: #f0ad4e;
  border-color: #eea236;
}
.btn-warning.active, .btn-warning.focus, .btn-warning:active, .btn-warning:focus, .btn-warning:hover, .open > .dropdown-toggle.btn-warning {
  color: #fff;
  background-color: #ec971f;
  border-color: #d58512;
}
.btn-warning.active, .btn-warning:active, .open > .dropdown-toggle.btn-warning {
  background-image: none;
}
.btn-warning.disabled, .btn-warning.disabled.active, .btn-warning.disabled.focus, .btn-warning.disabled:active, .btn-warning.disabled:focus, .btn-warning.disabled:hover, .btn-warning[disabled], .btn-warning[disabled].active, .btn-warning[disabled].focus, .btn-warning[disabled]:active, .btn-warning[disabled]:focus, .btn-warning[disabled]:hover, fieldset[disabled] .btn-warning, fieldset[disabled] .btn-warning.active, fieldset[disabled] .btn-warning.focus, fieldset[disabled] .btn-warning:active, fieldset[disabled] .btn-warning:focus, fieldset[disabled] .btn-warning:hover {
  background-color: #f0ad4e;
  border-color: #eea236;
}
.btn-warning .badge {
  color: #f0ad4e;
  background-color: #fff;
}
.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d43f3a;
}
.btn-danger.active, .btn-danger.focus, .btn-danger:active, .btn-danger:focus, .btn-danger:hover, .open > .dropdown-toggle.btn-danger {
  color: #fff;
  background-color: #c9302c;
  border-color: #ac2925;
}
.btn-danger.active, .btn-danger:active, .open > .dropdown-toggle.btn-danger {
  background-image: none;
}
.btn-danger.disabled, .btn-danger.disabled.active, .btn-danger.disabled.focus, .btn-danger.disabled:active, .btn-danger.disabled:focus, .btn-danger.disabled:hover, .btn-danger[disabled], .btn-danger[disabled].active, .btn-danger[disabled].focus, .btn-danger[disabled]:active, .btn-danger[disabled]:focus, .btn-danger[disabled]:hover, fieldset[disabled] .btn-danger, fieldset[disabled] .btn-danger.active, fieldset[disabled] .btn-danger.focus, fieldset[disabled] .btn-danger:active, fieldset[disabled] .btn-danger:focus, fieldset[disabled] .btn-danger:hover {
  background-color: #d9534f;
  border-color: #d43f3a;
}
.btn-danger .badge {
  color: #d9534f;
  background-color: #fff;
}
.btn-link {
  font-weight: 400;
  color: #337ab7;
  border-radius: 0;
}
.btn-link, .btn-link.active, .btn-link:active, .btn-link[disabled], fieldset[disabled] .btn-link {
  background-color: transparent;
  box-shadow: none;
}
.btn-link, .btn-link:active, .btn-link:focus, .btn-link:hover {
  border-color: transparent;
}
.btn-link:focus, .btn-link:hover {
  color: #23527c;
  text-decoration: underline;
  background-color: transparent;
}
.btn-link[disabled]:focus, .btn-link[disabled]:hover, fieldset[disabled] .btn-link:focus, fieldset[disabled] .btn-link:hover {
  color: #777;
  text-decoration: none;
}
.btn-group-lg > .btn, .btn-lg {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
.btn-group-sm > .btn, .btn-sm {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.btn-group-xs > .btn, .btn-xs {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.btn-block {
  display: block;
  width: 100%;
}
.btn-block + .btn-block {
  margin-top: 5px;
}
input[type=button].btn-block, input[type=reset].btn-block, input[type=submit].btn-block {
  width: 100%;
}
.fade {
  opacity: 0;
  transition: opacity 0.15s linear;
}
.fade.in {
  opacity: 1;
}
.collapse {
  display: none;
}
.collapse.in {
  display: block;
}
tr.collapse.in {
  display: table-row;
}
tbody.collapse.in {
  display: table-row-group;
}
.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition-timing-function: ease;
  transition-duration: 0.35s;
  transition-property: height, visibility;
}
.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}
.dropdown, .dropup {
  position: relative;
}
.dropdown-toggle:focus {
  outline: 0;
}
.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;
  font-size: 14px;
  text-align: left;
  list-style: none;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}
.dropdown-menu.pull-right {
  right: 0;
  left: auto;
}
.dropdown-menu .divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: 400;
  line-height: 1.42857143;
  color: #333;
  white-space: nowrap;
}
.dropdown-menu > li > a:focus, .dropdown-menu > li > a:hover {
  color: #262626;
  text-decoration: none;
  background-color: #f5f5f5;
}
.dropdown-menu > .active > a, .dropdown-menu > .active > a:focus, .dropdown-menu > .active > a:hover {
  color: #fff;
  text-decoration: none;
  background-color: #337ab7;
  outline: 0;
}
.dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:focus, .dropdown-menu > .disabled > a:hover {
  color: #777;
}
.dropdown-menu > .disabled > a:focus, .dropdown-menu > .disabled > a:hover {
  text-decoration: none;
  cursor: not-allowed;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}
.open > .dropdown-menu {
  display: block;
}
.open > a {
  outline: 0;
}
.dropdown-menu-right {
  right: 0;
  left: auto;
}
.dropdown-menu-left {
  right: auto;
  left: 0;
}
.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 12px;
  line-height: 1.42857143;
  color: #777;
  white-space: nowrap;
}
.dropdown-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 990;
}
.pull-right > .dropdown-menu {
  right: 0;
  left: auto;
}
.dropup .caret, .navbar-fixed-bottom .dropdown .caret {
  content: "";
  border-top: 0;
  border-bottom: 4px solid;
}
.dropup .dropdown-menu, .navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 2px;
}
@media (min-width: 768px) {
  .navbar-right .dropdown-menu {
    right: 0;
    left: auto;
  }
  .navbar-right .dropdown-menu-left {
    right: auto;
    left: 0;
  }
}
.btn-group, .btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.btn-group-vertical > .btn, .btn-group > .btn {
  position: relative;
  float: left;
}
.btn-group-vertical > .btn.active, .btn-group-vertical > .btn:active, .btn-group-vertical > .btn:focus, .btn-group-vertical > .btn:hover, .btn-group > .btn.active, .btn-group > .btn:active, .btn-group > .btn:focus, .btn-group > .btn:hover {
  z-index: 2;
}
.btn-group .btn + .btn, .btn-group .btn + .btn-group, .btn-group .btn-group + .btn, .btn-group .btn-group + .btn-group {
  margin-left: -1px;
}
.btn-toolbar {
  margin-left: -5px;
}
.btn-toolbar .btn-group, .btn-toolbar .input-group {
  float: left;
}
.btn-toolbar > .btn, .btn-toolbar > .btn-group, .btn-toolbar > .input-group {
  margin-left: 5px;
}
.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0;
}
.btn-group > .btn:first-child {
  margin-left: 0;
}
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn:last-child:not(:first-child), .btn-group > .dropdown-toggle:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group > .btn-group {
  float: left;
}
.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child, .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle {
  outline: 0;
}
.btn-group > .btn + .dropdown-toggle {
  padding-right: 8px;
  padding-left: 8px;
}
.btn-group > .btn-lg + .dropdown-toggle {
  padding-right: 12px;
  padding-left: 12px;
}
.btn-group.open .dropdown-toggle {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn-group.open .dropdown-toggle.btn-link {
  box-shadow: none;
}
.btn .caret {
  margin-left: 0;
}
.btn-lg .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0;
}
.dropup .btn-lg .caret {
  border-width: 0 5px 5px;
}
.btn-group-vertical > .btn, .btn-group-vertical > .btn-group, .btn-group-vertical > .btn-group > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
}
.btn-group-vertical > .btn-group > .btn {
  float: none;
}
.btn-group-vertical > .btn + .btn, .btn-group-vertical > .btn + .btn-group, .btn-group-vertical > .btn-group + .btn, .btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0;
}
.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.btn-group-vertical > .btn:first-child:not(:last-child) {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn:last-child:not(:first-child) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 4px;
}
.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child, .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
}
.btn-group-justified > .btn, .btn-group-justified > .btn-group {
  display: table-cell;
  float: none;
  width: 1%;
}
.btn-group-justified > .btn-group .btn {
  width: 100%;
}
.btn-group-justified > .btn-group .dropdown-menu {
  left: auto;
}
[data-toggle=buttons] > .btn input[type=checkbox], [data-toggle=buttons] > .btn input[type=radio], [data-toggle=buttons] > .btn-group > .btn input[type=checkbox], [data-toggle=buttons] > .btn-group > .btn input[type=radio] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}
.input-group[class*=col-] {
  float: none;
  padding-right: 0;
  padding-left: 0;
}
.input-group .form-control {
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0;
}
.input-group-lg > .form-control, .input-group-lg > .input-group-addon, .input-group-lg > .input-group-btn > .btn {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
select.input-group-lg > .form-control, select.input-group-lg > .input-group-addon, select.input-group-lg > .input-group-btn > .btn {
  height: 46px;
  line-height: 46px;
}
select[multiple].input-group-lg > .form-control, select[multiple].input-group-lg > .input-group-addon, select[multiple].input-group-lg > .input-group-btn > .btn, textarea.input-group-lg > .form-control, textarea.input-group-lg > .input-group-addon, textarea.input-group-lg > .input-group-btn > .btn {
  height: auto;
}
.input-group-sm > .form-control, .input-group-sm > .input-group-addon, .input-group-sm > .input-group-btn > .btn {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
select.input-group-sm > .form-control, select.input-group-sm > .input-group-addon, select.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  line-height: 30px;
}
select[multiple].input-group-sm > .form-control, select[multiple].input-group-sm > .input-group-addon, select[multiple].input-group-sm > .input-group-btn > .btn, textarea.input-group-sm > .form-control, textarea.input-group-sm > .input-group-addon, textarea.input-group-sm > .input-group-btn > .btn {
  height: auto;
}
.input-group .form-control, .input-group-addon, .input-group-btn {
  display: table-cell;
}
.input-group .form-control:not(:first-child):not(:last-child), .input-group-addon:not(:first-child):not(:last-child), .input-group-btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.input-group-addon, .input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
}
.input-group-addon {
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: #555;
  text-align: center;
  background-color: #eee;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.input-group-addon.input-sm {
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 3px;
}
.input-group-addon.input-lg {
  padding: 10px 16px;
  font-size: 18px;
  border-radius: 6px;
}
.input-group-addon input[type=checkbox], .input-group-addon input[type=radio] {
  margin-top: 0;
}
.input-group .form-control:first-child, .input-group-addon:first-child, .input-group-btn:first-child > .btn, .input-group-btn:first-child > .btn-group > .btn, .input-group-btn:first-child > .dropdown-toggle, .input-group-btn:last-child > .btn-group:not(:last-child) > .btn, .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group-addon:first-child {
  border-right: 0;
}
.input-group .form-control:last-child, .input-group-addon:last-child, .input-group-btn:first-child > .btn-group:not(:first-child) > .btn, .input-group-btn:first-child > .btn:not(:first-child), .input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group > .btn, .input-group-btn:last-child > .dropdown-toggle {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group-addon:last-child {
  border-left: 0;
}
.input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap;
}
.input-group-btn > .btn {
  position: relative;
}
.input-group-btn > .btn + .btn {
  margin-left: -1px;
}
.input-group-btn > .btn:active, .input-group-btn > .btn:focus, .input-group-btn > .btn:hover {
  z-index: 2;
}
.input-group-btn:first-child > .btn, .input-group-btn:first-child > .btn-group {
  margin-right: -1px;
}
.input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group {
  margin-left: -1px;
}
.nav {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.nav > li {
  position: relative;
  display: block;
}
.nav > li > a {
  position: relative;
  display: block;
  padding: 10px 15px;
}
.nav > li > a:focus, .nav > li > a:hover {
  text-decoration: none;
  background-color: #eee;
}
.nav > li.disabled > a {
  color: #777;
}
.nav > li.disabled > a:focus, .nav > li.disabled > a:hover {
  color: #777;
  text-decoration: none;
  cursor: not-allowed;
  background-color: transparent;
}
.nav .open > a, .nav .open > a:focus, .nav .open > a:hover {
  background-color: #eee;
  border-color: #337ab7;
}
.nav .nav-divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.nav > li > a > img {
  max-width: none;
}
.nav-tabs {
  border-bottom: 1px solid #ddd;
}
.nav-tabs > li {
  float: left;
  margin-bottom: -1px;
}
.nav-tabs > li > a {
  margin-right: 2px;
  line-height: 1.42857143;
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0;
}
.nav-tabs > li > a:hover {
  border-color: #eee #eee #ddd;
}
.nav-tabs > li.active > a, .nav-tabs > li.active > a:focus, .nav-tabs > li.active > a:hover {
  color: #555;
  cursor: default;
  background-color: #fff;
  border: 1px solid #ddd;
  border-bottom-color: transparent;
}
.nav-tabs.nav-justified {
  width: 100%;
  border-bottom: 0;
}
.nav-tabs.nav-justified > li {
  float: none;
}
.nav-tabs.nav-justified > li > a {
  margin-bottom: 5px;
  text-align: center;
}
.nav-tabs.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
@media (min-width: 768px) {
  .nav-tabs.nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  .nav-tabs.nav-justified > li > a {
    margin-bottom: 0;
  }
}
.nav-tabs.nav-justified > li > a {
  margin-right: 0;
  border-radius: 4px;
}
.nav-tabs.nav-justified > .active > a, .nav-tabs.nav-justified > .active > a:focus, .nav-tabs.nav-justified > .active > a:hover {
  border: 1px solid #ddd;
}
@media (min-width: 768px) {
  .nav-tabs.nav-justified > li > a {
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0;
  }
  .nav-tabs.nav-justified > .active > a, .nav-tabs.nav-justified > .active > a:focus, .nav-tabs.nav-justified > .active > a:hover {
    border-bottom-color: #fff;
  }
}
.nav-pills > li {
  float: left;
}
.nav-pills > li > a {
  border-radius: 4px;
}
.nav-pills > li + li {
  margin-left: 2px;
}
.nav-pills > li.active > a, .nav-pills > li.active > a:focus, .nav-pills > li.active > a:hover {
  color: #fff;
  background-color: #337ab7;
}
.nav-stacked > li {
  float: none;
}
.nav-stacked > li + li {
  margin-top: 2px;
  margin-left: 0;
}
.nav-justified {
  width: 100%;
}
.nav-justified > li {
  float: none;
}
.nav-justified > li > a {
  margin-bottom: 5px;
  text-align: center;
}
.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
@media (min-width: 768px) {
  .nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  .nav-justified > li > a {
    margin-bottom: 0;
  }
}
.nav-tabs-justified {
  border-bottom: 0;
}
.nav-tabs-justified > li > a {
  margin-right: 0;
  border-radius: 4px;
}
.nav-tabs-justified > .active > a, .nav-tabs-justified > .active > a:focus, .nav-tabs-justified > .active > a:hover {
  border: 1px solid #ddd;
}
@media (min-width: 768px) {
  .nav-tabs-justified > li > a {
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0;
  }
  .nav-tabs-justified > .active > a, .nav-tabs-justified > .active > a:focus, .nav-tabs-justified > .active > a:hover {
    border-bottom-color: #fff;
  }
}
.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.navbar {
  position: relative;
  min-height: 50px;
  margin-bottom: 20px;
  border: 1px solid transparent;
}
@media (min-width: 768px) {
  .navbar {
    border-radius: 4px;
  }
  .navbar-header {
    float: left;
  }
}
.navbar-collapse {
  padding-right: 15px;
  padding-left: 15px;
  overflow-x: visible;
  -webkit-overflow-scrolling: touch;
  border-top: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.navbar-collapse.in {
  overflow-y: auto;
}
@media (min-width: 768px) {
  .navbar-collapse {
    width: auto;
    border-top: 0;
    box-shadow: none;
  }
  .navbar-collapse.collapse {
    display: block !important;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important;
  }
  .navbar-collapse.in {
    overflow-y: visible;
  }
  .navbar-fixed-bottom .navbar-collapse, .navbar-fixed-top .navbar-collapse, .navbar-static-top .navbar-collapse {
    padding-right: 0;
    padding-left: 0;
  }
}
.navbar-fixed-bottom .navbar-collapse, .navbar-fixed-top .navbar-collapse {
  max-height: 340px;
}
@media (max-device-width: 480px) and (orientation: landscape) {
  .navbar-fixed-bottom .navbar-collapse, .navbar-fixed-top .navbar-collapse {
    max-height: 200px;
  }
}
.container-fluid > .navbar-collapse, .container-fluid > .navbar-header, .container > .navbar-collapse, .container > .navbar-header {
  margin-right: -15px;
  margin-left: -15px;
}
@media (min-width: 768px) {
  .container-fluid > .navbar-collapse, .container-fluid > .navbar-header, .container > .navbar-collapse, .container > .navbar-header {
    margin-right: 0;
    margin-left: 0;
  }
}
.navbar-static-top {
  z-index: 1000;
  border-width: 0 0 1px;
}
@media (min-width: 768px) {
  .navbar-static-top {
    border-radius: 0;
  }
}
.navbar-fixed-bottom, .navbar-fixed-top {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
}
@media (min-width: 768px) {
  .navbar-fixed-bottom, .navbar-fixed-top {
    border-radius: 0;
  }
}
.navbar-fixed-top {
  top: 0;
  border-width: 0 0 1px;
}
.navbar-fixed-bottom {
  bottom: 0;
  margin-bottom: 0;
  border-width: 1px 0 0;
}
.navbar-brand {
  float: left;
  height: 50px;
  padding: 15px 15px;
  font-size: 18px;
  line-height: 20px;
}
.navbar-brand:focus, .navbar-brand:hover {
  text-decoration: none;
}
.navbar-brand > img {
  display: block;
}
@media (min-width: 768px) {
  .navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand {
    margin-left: -15px;
  }
}
.navbar-toggle {
  position: relative;
  float: right;
  padding: 9px 10px;
  margin-top: 8px;
  margin-right: 15px;
  margin-bottom: 8px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}
.navbar-toggle:focus {
  outline: 0;
}
.navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
}
.navbar-toggle .icon-bar + .icon-bar {
  margin-top: 4px;
}
@media (min-width: 768px) {
  .navbar-toggle {
    display: none;
  }
}
.navbar-nav {
  margin: 7.5px -15px;
}
.navbar-nav > li > a {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 20px;
}
@media (max-width: 767px) {
  .navbar-nav .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    box-shadow: none;
  }
  .navbar-nav .open .dropdown-menu .dropdown-header, .navbar-nav .open .dropdown-menu > li > a {
    padding: 5px 15px 5px 25px;
  }
  .navbar-nav .open .dropdown-menu > li > a {
    line-height: 20px;
  }
  .navbar-nav .open .dropdown-menu > li > a:focus, .navbar-nav .open .dropdown-menu > li > a:hover {
    background-image: none;
  }
}
@media (min-width: 768px) {
  .navbar-nav {
    float: left;
    margin: 0;
  }
  .navbar-nav > li {
    float: left;
  }
  .navbar-nav > li > a {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.navbar-form {
  padding: 10px 15px;
  margin-top: 8px;
  margin-right: -15px;
  margin-bottom: 8px;
  margin-left: -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);
}
@media (min-width: 768px) {
  .navbar-form .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .navbar-form .form-control-static {
    display: inline-block;
  }
  .navbar-form .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  .navbar-form .input-group .form-control, .navbar-form .input-group .input-group-addon, .navbar-form .input-group .input-group-btn {
    width: auto;
  }
  .navbar-form .input-group > .form-control {
    width: 100%;
  }
  .navbar-form .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .checkbox, .navbar-form .radio {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .checkbox label, .navbar-form .radio label {
    padding-left: 0;
  }
  .navbar-form .checkbox input[type=checkbox], .navbar-form .radio input[type=radio] {
    position: relative;
    margin-left: 0;
  }
  .navbar-form .has-feedback .form-control-feedback {
    top: 0;
  }
}
@media (max-width: 767px) {
  .navbar-form .form-group {
    margin-bottom: 5px;
  }
  .navbar-form .form-group:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .navbar-form {
    width: auto;
    padding-top: 0;
    padding-bottom: 0;
    margin-right: 0;
    margin-left: 0;
    border: 0;
    box-shadow: none;
  }
}
.navbar-nav > li > .dropdown-menu {
  margin-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  margin-bottom: 0;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.navbar-btn {
  margin-top: 8px;
  margin-bottom: 8px;
}
.navbar-btn.btn-sm {
  margin-top: 10px;
  margin-bottom: 10px;
}
.navbar-btn.btn-xs {
  margin-top: 14px;
  margin-bottom: 14px;
}
.navbar-text {
  margin-top: 15px;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .navbar-text {
    float: left;
    margin-right: 15px;
    margin-left: 15px;
  }
  .navbar-left {
    float: left !important;
  }
  .navbar-right {
    float: right !important;
    margin-right: -15px;
  }
  .navbar-right ~ .navbar-right {
    margin-right: 0;
  }
}
.navbar-default {
  background-color: #f8f8f8;
  border-color: #e7e7e7;
}
.navbar-default .navbar-brand {
  color: #777;
}
.navbar-default .navbar-brand:focus, .navbar-default .navbar-brand:hover {
  color: #5e5e5e;
  background-color: transparent;
}
.navbar-default .navbar-text {
  color: #777;
}
.navbar-default .navbar-nav > li > a {
  color: #777;
}
.navbar-default .navbar-nav > li > a:focus, .navbar-default .navbar-nav > li > a:hover {
  color: #333;
  background-color: transparent;
}
.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:focus, .navbar-default .navbar-nav > .active > a:hover {
  color: #555;
  background-color: #e7e7e7;
}
.navbar-default .navbar-nav > .disabled > a, .navbar-default .navbar-nav > .disabled > a:focus, .navbar-default .navbar-nav > .disabled > a:hover {
  color: #ccc;
  background-color: transparent;
}
.navbar-default .navbar-toggle {
  border-color: #ddd;
}
.navbar-default .navbar-toggle:focus, .navbar-default .navbar-toggle:hover {
  background-color: #ddd;
}
.navbar-default .navbar-toggle .icon-bar {
  background-color: #888;
}
.navbar-default .navbar-collapse, .navbar-default .navbar-form {
  border-color: #e7e7e7;
}
.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:focus, .navbar-default .navbar-nav > .open > a:hover {
  color: #555;
  background-color: #e7e7e7;
}
@media (max-width: 767px) {
  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #777;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus, .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover {
    color: #333;
    background-color: transparent;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover {
    color: #555;
    background-color: #e7e7e7;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover {
    color: #ccc;
    background-color: transparent;
  }
}
.navbar-default .navbar-link {
  color: #777;
}
.navbar-default .navbar-link:hover {
  color: #333;
}
.navbar-default .btn-link {
  color: #777;
}
.navbar-default .btn-link:focus, .navbar-default .btn-link:hover {
  color: #333;
}
.navbar-default .btn-link[disabled]:focus, .navbar-default .btn-link[disabled]:hover, fieldset[disabled] .navbar-default .btn-link:focus, fieldset[disabled] .navbar-default .btn-link:hover {
  color: #ccc;
}
.navbar-inverse {
  background-color: #222;
  border-color: #080808;
}
.navbar-inverse .navbar-brand {
  color: #9d9d9d;
}
.navbar-inverse .navbar-brand:focus, .navbar-inverse .navbar-brand:hover {
  color: #fff;
  background-color: transparent;
}
.navbar-inverse .navbar-text {
  color: #9d9d9d;
}
.navbar-inverse .navbar-nav > li > a {
  color: #9d9d9d;
}
.navbar-inverse .navbar-nav > li > a:focus, .navbar-inverse .navbar-nav > li > a:hover {
  color: #fff;
  background-color: transparent;
}
.navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:focus, .navbar-inverse .navbar-nav > .active > a:hover {
  color: #fff;
  background-color: #080808;
}
.navbar-inverse .navbar-nav > .disabled > a, .navbar-inverse .navbar-nav > .disabled > a:focus, .navbar-inverse .navbar-nav > .disabled > a:hover {
  color: #444;
  background-color: transparent;
}
.navbar-inverse .navbar-toggle {
  border-color: #333;
}
.navbar-inverse .navbar-toggle:focus, .navbar-inverse .navbar-toggle:hover {
  background-color: #333;
}
.navbar-inverse .navbar-toggle .icon-bar {
  background-color: #fff;
}
.navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form {
  border-color: #101010;
}
.navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:focus, .navbar-inverse .navbar-nav > .open > a:hover {
  color: #fff;
  background-color: #080808;
}
@media (max-width: 767px) {
  .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
    border-color: #080808;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
    background-color: #080808;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
    color: #9d9d9d;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus, .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover {
    color: #fff;
    background-color: transparent;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover {
    color: #fff;
    background-color: #080808;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover {
    color: #444;
    background-color: transparent;
  }
}
.navbar-inverse .navbar-link {
  color: #9d9d9d;
}
.navbar-inverse .navbar-link:hover {
  color: #fff;
}
.navbar-inverse .btn-link {
  color: #9d9d9d;
}
.navbar-inverse .btn-link:focus, .navbar-inverse .btn-link:hover {
  color: #fff;
}
.navbar-inverse .btn-link[disabled]:focus, .navbar-inverse .btn-link[disabled]:hover, fieldset[disabled] .navbar-inverse .btn-link:focus, fieldset[disabled] .navbar-inverse .btn-link:hover {
  color: #444;
}
.breadcrumb {
  padding: 8px 15px;
  margin-bottom: 20px;
  list-style: none;
  background-color: #f5f5f5;
  border-radius: 4px;
}
.breadcrumb > li {
  display: inline-block;
}
.breadcrumb > li + li:before {
  padding: 0 5px;
  color: #ccc;
  content: "/ ";
}
.breadcrumb > .active {
  color: #777;
}
.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px;
}
.pagination > li {
  display: inline;
}
.pagination > li > a, .pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  margin-left: -1px;
  line-height: 1.42857143;
  color: #337ab7;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd;
}
.pagination > li:first-child > a, .pagination > li:first-child > span {
  margin-left: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.pagination > li:last-child > a, .pagination > li:last-child > span {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.pagination > li > a:focus, .pagination > li > a:hover, .pagination > li > span:focus, .pagination > li > span:hover {
  color: #23527c;
  background-color: #eee;
  border-color: #ddd;
}
.pagination > .active > a, .pagination > .active > a:focus, .pagination > .active > a:hover, .pagination > .active > span, .pagination > .active > span:focus, .pagination > .active > span:hover {
  z-index: 2;
  color: #fff;
  cursor: default;
  background-color: #337ab7;
  border-color: #337ab7;
}
.pagination > .disabled > a, .pagination > .disabled > a:focus, .pagination > .disabled > a:hover, .pagination > .disabled > span, .pagination > .disabled > span:focus, .pagination > .disabled > span:hover {
  color: #777;
  cursor: not-allowed;
  background-color: #fff;
  border-color: #ddd;
}
.pagination-lg > li > a, .pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 18px;
}
.pagination-lg > li:first-child > a, .pagination-lg > li:first-child > span {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
.pagination-lg > li:last-child > a, .pagination-lg > li:last-child > span {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
.pagination-sm > li > a, .pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 12px;
}
.pagination-sm > li:first-child > a, .pagination-sm > li:first-child > span {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.pagination-sm > li:last-child > a, .pagination-sm > li:last-child > span {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
.pager {
  padding-left: 0;
  margin: 20px 0;
  text-align: center;
  list-style: none;
}
.pager li {
  display: inline;
}
.pager li > a, .pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 15px;
}
.pager li > a:focus, .pager li > a:hover {
  text-decoration: none;
  background-color: #eee;
}
.pager .next > a, .pager .next > span {
  float: right;
}
.pager .previous > a, .pager .previous > span {
  float: left;
}
.pager .disabled > a, .pager .disabled > a:focus, .pager .disabled > a:hover, .pager .disabled > span {
  color: #777;
  cursor: not-allowed;
  background-color: #fff;
}
.label {
  display: inline;
  padding: 0.2em 0.6em 0.3em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25em;
}
a.label:focus, a.label:hover {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
.label:empty {
  display: none;
}
.btn .label {
  position: relative;
  top: -1px;
}
.label-default {
  background-color: #777;
}
.label-default[href]:focus, .label-default[href]:hover {
  background-color: #5e5e5e;
}
.label-primary {
  background-color: #337ab7;
}
.label-primary[href]:focus, .label-primary[href]:hover {
  background-color: #286090;
}
.label-success {
  background-color: #5cb85c;
}
.label-success[href]:focus, .label-success[href]:hover {
  background-color: #449d44;
}
.label-info {
  background-color: #5bc0de;
}
.label-info[href]:focus, .label-info[href]:hover {
  background-color: #31b0d5;
}
.label-warning {
  background-color: #f0ad4e;
}
.label-warning[href]:focus, .label-warning[href]:hover {
  background-color: #ec971f;
}
.label-danger {
  background-color: #d9534f;
}
.label-danger[href]:focus, .label-danger[href]:hover {
  background-color: #c9302c;
}
.badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  background-color: #777;
  border-radius: 10px;
}
.badge:empty {
  display: none;
}
.btn .badge {
  position: relative;
  top: -1px;
}
.btn-group-xs > .btn .badge, .btn-xs .badge {
  top: 0;
  padding: 1px 5px;
}
a.badge:focus, a.badge:hover {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
.list-group-item.active > .badge, .nav-pills > .active > a > .badge {
  color: #337ab7;
  background-color: #fff;
}
.list-group-item > .badge {
  float: right;
}
.list-group-item > .badge + .badge {
  margin-right: 5px;
}
.nav-pills > li > a > .badge {
  margin-left: 3px;
}
.jumbotron {
  padding: 30px 15px;
  margin-bottom: 30px;
  color: inherit;
  background-color: #eee;
}
.jumbotron .h1, .jumbotron h1 {
  color: inherit;
}
.jumbotron p {
  margin-bottom: 15px;
  font-size: 21px;
  font-weight: 200;
}
.jumbotron > hr {
  border-top-color: #d5d5d5;
}
.container .jumbotron, .container-fluid .jumbotron {
  border-radius: 6px;
}
.jumbotron .container {
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .jumbotron {
    padding: 48px 0;
  }
  .container .jumbotron, .container-fluid .jumbotron {
    padding-right: 60px;
    padding-left: 60px;
  }
  .jumbotron .h1, .jumbotron h1 {
    font-size: 63px;
  }
}
.thumbnail {
  display: block;
  padding: 4px;
  margin-bottom: 20px;
  line-height: 1.42857143;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: border 0.2s ease-in-out;
}
.thumbnail a > img, .thumbnail > img {
  margin-right: auto;
  margin-left: auto;
}
a.thumbnail.active, a.thumbnail:focus, a.thumbnail:hover {
  border-color: #337ab7;
}
.thumbnail .caption {
  padding: 9px;
  color: #333;
}
.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}
.alert h4 {
  margin-top: 0;
  color: inherit;
}
.alert .alert-link {
  font-weight: 700;
}
.alert > p, .alert > ul {
  margin-bottom: 0;
}
.alert > p + p {
  margin-top: 5px;
}
.alert-dismissable, .alert-dismissible {
  padding-right: 35px;
}
.alert-dismissable .close, .alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}
.alert-success {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}
.alert-success hr {
  border-top-color: #c9e2b3;
}
.alert-success .alert-link {
  color: #2b542c;
}
.alert-info {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}
.alert-info hr {
  border-top-color: #a6e1ec;
}
.alert-info .alert-link {
  color: #245269;
}
.alert-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}
.alert-warning hr {
  border-top-color: #f7e1b5;
}
.alert-warning .alert-link {
  color: #66512c;
}
.alert-danger {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}
.alert-danger hr {
  border-top-color: #e4b9c0;
}
.alert-danger .alert-link {
  color: #843534;
}
@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
.progress {
  height: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  background-color: #f5f5f5;
  border-radius: 4px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}
.progress-bar {
  float: left;
  width: 0;
  height: 100%;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  text-align: center;
  background-color: #337ab7;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  transition: width 0.6s ease;
}
.progress-bar-striped, .progress-striped .progress-bar {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 40px 40px;
}
.progress-bar.active, .progress.active .progress-bar {
  animation: progress-bar-stripes 2s linear infinite;
}
.progress-bar-success {
  background-color: #5cb85c;
}
.progress-striped .progress-bar-success {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-bar-info {
  background-color: #5bc0de;
}
.progress-striped .progress-bar-info {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-bar-warning {
  background-color: #f0ad4e;
}
.progress-striped .progress-bar-warning {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-bar-danger {
  background-color: #d9534f;
}
.progress-striped .progress-bar-danger {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.media {
  margin-top: 15px;
}
.media:first-child {
  margin-top: 0;
}
.media, .media-body {
  overflow: hidden;
  zoom: 1;
}
.media-body {
  width: 10000px;
}
.media-object {
  display: block;
}
.media-right, .media > .pull-right {
  padding-left: 10px;
}
.media-left, .media > .pull-left {
  padding-right: 10px;
}
.media-body, .media-left, .media-right {
  display: table-cell;
  vertical-align: top;
}
.media-middle {
  vertical-align: middle;
}
.media-bottom {
  vertical-align: bottom;
}
.media-heading {
  margin-top: 0;
  margin-bottom: 5px;
}
.media-list {
  padding-left: 0;
  list-style: none;
}
.list-group {
  padding-left: 0;
  margin-bottom: 20px;
}
.list-group-item {
  position: relative;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid #ddd;
}
.list-group-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
a.list-group-item {
  color: #555;
}
a.list-group-item .list-group-item-heading {
  color: #333;
}
a.list-group-item:focus, a.list-group-item:hover {
  color: #555;
  text-decoration: none;
  background-color: #f5f5f5;
}
.list-group-item.disabled, .list-group-item.disabled:focus, .list-group-item.disabled:hover {
  color: #777;
  cursor: not-allowed;
  background-color: #eee;
}
.list-group-item.disabled .list-group-item-heading, .list-group-item.disabled:focus .list-group-item-heading, .list-group-item.disabled:hover .list-group-item-heading {
  color: inherit;
}
.list-group-item.disabled .list-group-item-text, .list-group-item.disabled:focus .list-group-item-text, .list-group-item.disabled:hover .list-group-item-text {
  color: #777;
}
.list-group-item.active, .list-group-item.active:focus, .list-group-item.active:hover {
  z-index: 2;
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7;
}
.list-group-item.active .list-group-item-heading, .list-group-item.active .list-group-item-heading > .small, .list-group-item.active .list-group-item-heading > small, .list-group-item.active:focus .list-group-item-heading, .list-group-item.active:focus .list-group-item-heading > .small, .list-group-item.active:focus .list-group-item-heading > small, .list-group-item.active:hover .list-group-item-heading, .list-group-item.active:hover .list-group-item-heading > .small, .list-group-item.active:hover .list-group-item-heading > small {
  color: inherit;
}
.list-group-item.active .list-group-item-text, .list-group-item.active:focus .list-group-item-text, .list-group-item.active:hover .list-group-item-text {
  color: #c7ddef;
}
.list-group-item-success {
  color: #3c763d;
  background-color: #dff0d8;
}
a.list-group-item-success {
  color: #3c763d;
}
a.list-group-item-success .list-group-item-heading {
  color: inherit;
}
a.list-group-item-success:focus, a.list-group-item-success:hover {
  color: #3c763d;
  background-color: #d0e9c6;
}
a.list-group-item-success.active, a.list-group-item-success.active:focus, a.list-group-item-success.active:hover {
  color: #fff;
  background-color: #3c763d;
  border-color: #3c763d;
}
.list-group-item-info {
  color: #31708f;
  background-color: #d9edf7;
}
a.list-group-item-info {
  color: #31708f;
}
a.list-group-item-info .list-group-item-heading {
  color: inherit;
}
a.list-group-item-info:focus, a.list-group-item-info:hover {
  color: #31708f;
  background-color: #c4e3f3;
}
a.list-group-item-info.active, a.list-group-item-info.active:focus, a.list-group-item-info.active:hover {
  color: #fff;
  background-color: #31708f;
  border-color: #31708f;
}
.list-group-item-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
}
a.list-group-item-warning {
  color: #8a6d3b;
}
a.list-group-item-warning .list-group-item-heading {
  color: inherit;
}
a.list-group-item-warning:focus, a.list-group-item-warning:hover {
  color: #8a6d3b;
  background-color: #faf2cc;
}
a.list-group-item-warning.active, a.list-group-item-warning.active:focus, a.list-group-item-warning.active:hover {
  color: #fff;
  background-color: #8a6d3b;
  border-color: #8a6d3b;
}
.list-group-item-danger {
  color: #a94442;
  background-color: #f2dede;
}
a.list-group-item-danger {
  color: #a94442;
}
a.list-group-item-danger .list-group-item-heading {
  color: inherit;
}
a.list-group-item-danger:focus, a.list-group-item-danger:hover {
  color: #a94442;
  background-color: #ebcccc;
}
a.list-group-item-danger.active, a.list-group-item-danger.active:focus, a.list-group-item-danger.active:hover {
  color: #fff;
  background-color: #a94442;
  border-color: #a94442;
}
.list-group-item-heading {
  margin-top: 0;
  margin-bottom: 5px;
}
.list-group-item-text {
  margin-bottom: 0;
  line-height: 1.3;
}
.panel {
  margin-bottom: 20px;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 4px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}
.panel-body {
  padding: 15px;
}
.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.panel-heading > .dropdown .dropdown-toggle {
  color: inherit;
}
.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  color: inherit;
}
.panel-title > .small, .panel-title > .small > a, .panel-title > a, .panel-title > small, .panel-title > small > a {
  color: inherit;
}
.panel-footer {
  padding: 10px 15px;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.panel > .list-group, .panel > .panel-collapse > .list-group {
  margin-bottom: 0;
}
.panel > .list-group .list-group-item, .panel > .panel-collapse > .list-group .list-group-item {
  border-width: 1px 0;
  border-radius: 0;
}
.panel > .list-group:first-child .list-group-item:first-child, .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
  border-top: 0;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.panel > .list-group:last-child .list-group-item:last-child, .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
  border-bottom: 0;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0;
}
.list-group + .panel-footer {
  border-top-width: 0;
}
.panel > .panel-collapse > .table, .panel > .table, .panel > .table-responsive > .table {
  margin-bottom: 0;
}
.panel > .panel-collapse > .table caption, .panel > .table caption, .panel > .table-responsive > .table caption {
  padding-right: 15px;
  padding-left: 15px;
}
.panel > .table-responsive:first-child > .table:first-child, .panel > .table:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child, .panel > .table:first-child > thead:first-child > tr:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child, .panel > .table:first-child > thead:first-child > tr:first-child td:first-child, .panel > .table:first-child > thead:first-child > tr:first-child th:first-child {
  border-top-left-radius: 3px;
}
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child, .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child, .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child, .panel > .table:first-child > thead:first-child > tr:first-child td:last-child, .panel > .table:first-child > thead:first-child > tr:first-child th:last-child {
  border-top-right-radius: 3px;
}
.panel > .table-responsive:last-child > .table:last-child, .panel > .table:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child, .panel > .table:last-child > tbody:last-child > tr:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child, .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child, .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child, .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child, .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
  border-bottom-left-radius: 3px;
}
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child, .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child, .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
  border-bottom-right-radius: 3px;
}
.panel > .panel-body + .table, .panel > .panel-body + .table-responsive, .panel > .table + .panel-body, .panel > .table-responsive + .panel-body {
  border-top: 1px solid #ddd;
}
.panel > .table > tbody:first-child > tr:first-child td, .panel > .table > tbody:first-child > tr:first-child th {
  border-top: 0;
}
.panel > .table-bordered, .panel > .table-responsive > .table-bordered {
  border: 0;
}
.panel > .table-bordered > tbody > tr > td:first-child, .panel > .table-bordered > tbody > tr > th:first-child, .panel > .table-bordered > tfoot > tr > td:first-child, .panel > .table-bordered > tfoot > tr > th:first-child, .panel > .table-bordered > thead > tr > td:first-child, .panel > .table-bordered > thead > tr > th:first-child, .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child, .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child, .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child, .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child, .panel > .table-responsive > .table-bordered > thead > tr > td:first-child, .panel > .table-responsive > .table-bordered > thead > tr > th:first-child {
  border-left: 0;
}
.panel > .table-bordered > tbody > tr > td:last-child, .panel > .table-bordered > tbody > tr > th:last-child, .panel > .table-bordered > tfoot > tr > td:last-child, .panel > .table-bordered > tfoot > tr > th:last-child, .panel > .table-bordered > thead > tr > td:last-child, .panel > .table-bordered > thead > tr > th:last-child, .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child, .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child, .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child, .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child, .panel > .table-responsive > .table-bordered > thead > tr > td:last-child, .panel > .table-responsive > .table-bordered > thead > tr > th:last-child {
  border-right: 0;
}
.panel > .table-bordered > tbody > tr:first-child > td, .panel > .table-bordered > tbody > tr:first-child > th, .panel > .table-bordered > thead > tr:first-child > td, .panel > .table-bordered > thead > tr:first-child > th, .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td, .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th, .panel > .table-responsive > .table-bordered > thead > tr:first-child > td, .panel > .table-responsive > .table-bordered > thead > tr:first-child > th {
  border-bottom: 0;
}
.panel > .table-bordered > tbody > tr:last-child > td, .panel > .table-bordered > tbody > tr:last-child > th, .panel > .table-bordered > tfoot > tr:last-child > td, .panel > .table-bordered > tfoot > tr:last-child > th, .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td, .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th, .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td, .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
  border-bottom: 0;
}
.panel > .table-responsive {
  margin-bottom: 0;
  border: 0;
}
.panel-group {
  margin-bottom: 20px;
}
.panel-group .panel {
  margin-bottom: 0;
  border-radius: 4px;
}
.panel-group .panel + .panel {
  margin-top: 5px;
}
.panel-group .panel-heading {
  border-bottom: 0;
}
.panel-group .panel-heading + .panel-collapse > .list-group, .panel-group .panel-heading + .panel-collapse > .panel-body {
  border-top: 1px solid #ddd;
}
.panel-group .panel-footer {
  border-top: 0;
}
.panel-group .panel-footer + .panel-collapse .panel-body {
  border-bottom: 1px solid #ddd;
}
.panel-default {
  border-color: #ddd;
}
.panel-default > .panel-heading {
  color: #333;
  background-color: #f5f5f5;
  border-color: #ddd;
}
.panel-default > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ddd;
}
.panel-default > .panel-heading .badge {
  color: #f5f5f5;
  background-color: #333;
}
.panel-default > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ddd;
}
.panel-primary {
  border-color: #337ab7;
}
.panel-primary > .panel-heading {
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7;
}
.panel-primary > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #337ab7;
}
.panel-primary > .panel-heading .badge {
  color: #337ab7;
  background-color: #fff;
}
.panel-primary > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #337ab7;
}
.panel-success {
  border-color: #d6e9c6;
}
.panel-success > .panel-heading {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}
.panel-success > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #d6e9c6;
}
.panel-success > .panel-heading .badge {
  color: #dff0d8;
  background-color: #3c763d;
}
.panel-success > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #d6e9c6;
}
.panel-info {
  border-color: #bce8f1;
}
.panel-info > .panel-heading {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}
.panel-info > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #bce8f1;
}
.panel-info > .panel-heading .badge {
  color: #d9edf7;
  background-color: #31708f;
}
.panel-info > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #bce8f1;
}
.panel-warning {
  border-color: #faebcc;
}
.panel-warning > .panel-heading {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}
.panel-warning > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #faebcc;
}
.panel-warning > .panel-heading .badge {
  color: #fcf8e3;
  background-color: #8a6d3b;
}
.panel-warning > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #faebcc;
}
.panel-danger {
  border-color: #ebccd1;
}
.panel-danger > .panel-heading {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}
.panel-danger > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ebccd1;
}
.panel-danger > .panel-heading .badge {
  color: #f2dede;
  background-color: #a94442;
}
.panel-danger > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ebccd1;
}
.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}
.embed-responsive .embed-responsive-item, .embed-responsive embed, .embed-responsive iframe, .embed-responsive object, .embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.embed-responsive-16by9 {
  padding-bottom: 56.25%;
}
.embed-responsive-4by3 {
  padding-bottom: 75%;
}
.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}
.well blockquote {
  border-color: #ddd;
  border-color: rgba(0, 0, 0, 0.15);
}
.well-lg {
  padding: 24px;
  border-radius: 6px;
}
.well-sm {
  padding: 9px;
  border-radius: 3px;
}
.close {
  float: right;
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  filter: alpha(opacity=20);
  opacity: 0.2;
}
.close:focus, .close:hover {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  filter: alpha(opacity=50);
  opacity: 0.5;
}
button.close {
  -webkit-appearance: none;
  padding: 0;
  cursor: pointer;
  background: 0 0;
  border: 0;
}
.modal-open {
  overflow: hidden;
}
.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -25%);
}
.modal.in .modal-dialog {
  transform: translate(0, 0);
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}
.modal-content {
  position: relative;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  outline: 0;
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
}
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}
.modal-backdrop.fade {
  filter: alpha(opacity=0);
  opacity: 0;
}
.modal-backdrop.in {
  filter: alpha(opacity=50);
  opacity: 0.5;
}
.modal-header {
  min-height: 16.43px;
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}
.modal-header .close {
  margin-top: -2px;
}
.modal-title {
  margin: 0;
  line-height: 1.42857143;
}
.modal-body {
  position: relative;
  padding: 15px;
}
.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}
.modal-footer .btn + .btn {
  margin-bottom: 0;
  margin-left: 5px;
}
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}
.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }
  .modal-content {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }
  .modal-sm {
    width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg {
    width: 900px;
  }
}
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  filter: alpha(opacity=0);
  opacity: 0;
}
.tooltip.in {
  filter: alpha(opacity=90);
  opacity: 0.9;
}
.tooltip.top {
  padding: 5px 0;
  margin-top: -3px;
}
.tooltip.right {
  padding: 0 5px;
  margin-left: 3px;
}
.tooltip.bottom {
  padding: 5px 0;
  margin-top: 3px;
}
.tooltip.left {
  padding: 0 5px;
  margin-left: -3px;
}
.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background-color: #000;
  border-radius: 4px;
}
.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.top-left .tooltip-arrow {
  right: 5px;
  bottom: 0;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  left: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000;
}
.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000;
}
.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  right: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  left: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  max-width: 276px;
  padding: 1px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: left;
  white-space: normal;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.popover.top {
  margin-top: -10px;
}
.popover.right {
  margin-left: 10px;
}
.popover.bottom {
  margin-top: 10px;
}
.popover.left {
  margin-left: -10px;
}
.popover-title {
  padding: 8px 14px;
  margin: 0;
  font-size: 14px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 5px 5px 0 0;
}
.popover-content {
  padding: 9px 14px;
}
.popover > .arrow, .popover > .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.popover > .arrow {
  border-width: 11px;
}
.popover > .arrow:after {
  content: "";
  border-width: 10px;
}
.popover.top > .arrow {
  bottom: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-color: #999;
  border-top-color: rgba(0, 0, 0, 0.25);
  border-bottom-width: 0;
}
.popover.top > .arrow:after {
  bottom: 1px;
  margin-left: -10px;
  content: " ";
  border-top-color: #fff;
  border-bottom-width: 0;
}
.popover.right > .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-right-color: #999;
  border-right-color: rgba(0, 0, 0, 0.25);
  border-left-width: 0;
}
.popover.right > .arrow:after {
  bottom: -10px;
  left: 1px;
  content: " ";
  border-right-color: #fff;
  border-left-width: 0;
}
.popover.bottom > .arrow {
  top: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #999;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}
.popover.bottom > .arrow:after {
  top: 1px;
  margin-left: -10px;
  content: " ";
  border-top-width: 0;
  border-bottom-color: #fff;
}
.popover.left > .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #999;
  border-left-color: rgba(0, 0, 0, 0.25);
}
.popover.left > .arrow:after {
  right: 1px;
  bottom: -10px;
  content: " ";
  border-right-width: 0;
  border-left-color: #fff;
}
.carousel {
  position: relative;
}
.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.carousel-inner > .item {
  position: relative;
  display: none;
  transition: 0.6s ease-in-out left;
}
.carousel-inner > .item > a > img, .carousel-inner > .item > img {
  line-height: 1;
}
@media all and (transform-3d), (-webkit-transform-3d) {
  .carousel-inner > .item {
    transition: transform 0.6s ease-in-out;
    backface-visibility: hidden;
    perspective: 1000;
  }
  .carousel-inner > .item.active.right, .carousel-inner > .item.next {
    left: 0;
    transform: translate3d(100%, 0, 0);
  }
  .carousel-inner > .item.active.left, .carousel-inner > .item.prev {
    left: 0;
    transform: translate3d(-100%, 0, 0);
  }
  .carousel-inner > .item.active, .carousel-inner > .item.next.left, .carousel-inner > .item.prev.right {
    left: 0;
    transform: translate3d(0, 0, 0);
  }
}
.carousel-inner > .active, .carousel-inner > .next, .carousel-inner > .prev {
  display: block;
}
.carousel-inner > .active {
  left: 0;
}
.carousel-inner > .next, .carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%;
}
.carousel-inner > .next {
  left: 100%;
}
.carousel-inner > .prev {
  left: -100%;
}
.carousel-inner > .next.left, .carousel-inner > .prev.right {
  left: 0;
}
.carousel-inner > .active.left {
  left: -100%;
}
.carousel-inner > .active.right {
  left: 100%;
}
.carousel-control {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 15%;
  font-size: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  filter: alpha(opacity=50);
  opacity: 0.5;
}
.carousel-control.left {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#80000000", endColorstr="#00000000", GradientType=1);
  background-repeat: repeat-x;
}
.carousel-control.right {
  right: 0;
  left: auto;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00000000", endColorstr="#80000000", GradientType=1);
  background-repeat: repeat-x;
}
.carousel-control:focus, .carousel-control:hover {
  color: #fff;
  text-decoration: none;
  filter: alpha(opacity=90);
  outline: 0;
  opacity: 0.9;
}
.carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right, .carousel-control .icon-next, .carousel-control .icon-prev {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: inline-block;
}
.carousel-control .glyphicon-chevron-left, .carousel-control .icon-prev {
  left: 50%;
  margin-left: -10px;
}
.carousel-control .glyphicon-chevron-right, .carousel-control .icon-next {
  right: 50%;
  margin-right: -10px;
}
.carousel-control .icon-next, .carousel-control .icon-prev {
  width: 20px;
  height: 20px;
  margin-top: -10px;
  font-family: serif;
  line-height: 1;
}
.carousel-control .icon-prev:before {
  content: "‹";
}
.carousel-control .icon-next:before {
  content: "›";
}
.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  padding-left: 0;
  margin-left: -30%;
  text-align: center;
  list-style: none;
}
.carousel-indicators li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 1px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #000 \9 ;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #fff;
  border-radius: 10px;
}
.carousel-indicators .active {
  width: 12px;
  height: 12px;
  margin: 0;
  background-color: #fff;
}
.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}
.carousel-caption .btn {
  text-shadow: none;
}
@media screen and (min-width: 768px) {
  .carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right, .carousel-control .icon-next, .carousel-control .icon-prev {
    width: 30px;
    height: 30px;
    margin-top: -15px;
    font-size: 30px;
  }
  .carousel-control .glyphicon-chevron-left, .carousel-control .icon-prev {
    margin-left: -15px;
  }
  .carousel-control .glyphicon-chevron-right, .carousel-control .icon-next {
    margin-right: -15px;
  }
  .carousel-caption {
    right: 20%;
    left: 20%;
    padding-bottom: 30px;
  }
  .carousel-indicators {
    bottom: 20px;
  }
}
.btn-group-vertical > .btn-group:after, .btn-group-vertical > .btn-group:before, .btn-toolbar:after, .btn-toolbar:before, .clearfix:after, .clearfix:before, .container-fluid:after, .container-fluid:before, .container:after, .container:before, .dl-horizontal dd:after, .dl-horizontal dd:before, .form-horizontal .form-group:after, .form-horizontal .form-group:before, .modal-footer:after, .modal-footer:before, .nav:after, .nav:before, .navbar-collapse:after, .navbar-collapse:before, .navbar-header:after, .navbar-header:before, .navbar:after, .navbar:before, .pager:after, .pager:before, .panel-body:after, .panel-body:before, .row:after, .row:before {
  display: table;
  content: " ";
}
.btn-group-vertical > .btn-group:after, .btn-toolbar:after, .clearfix:after, .container-fluid:after, .container:after, .dl-horizontal dd:after, .form-horizontal .form-group:after, .modal-footer:after, .nav:after, .navbar-collapse:after, .navbar-header:after, .navbar:after, .pager:after, .panel-body:after, .row:after {
  clear: both;
}
.center-block {
  display: block;
  margin-right: auto;
  margin-left: auto;
}
.pull-right {
  float: right !important;
}
.pull-left {
  float: left !important;
}
.hide {
  display: none !important;
}
.show {
  display: block !important;
}
.invisible {
  visibility: hidden;
}
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.hidden {
  display: none !important;
}
.affix {
  position: fixed;
}
.visible-lg, .visible-md, .visible-sm, .visible-xs {
  display: none !important;
}
.visible-lg-block, .visible-lg-inline, .visible-lg-inline-block, .visible-md-block, .visible-md-inline, .visible-md-inline-block, .visible-sm-block, .visible-sm-inline, .visible-sm-inline-block, .visible-xs-block, .visible-xs-inline, .visible-xs-inline-block {
  display: none !important;
}
@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }
  table.visible-xs {
    display: table;
  }
  tr.visible-xs {
    display: table-row !important;
  }
  td.visible-xs, th.visible-xs {
    display: table-cell !important;
  }
  .visible-xs-block {
    display: block !important;
  }
  .visible-xs-inline {
    display: inline !important;
  }
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }
  table.visible-sm {
    display: table;
  }
  tr.visible-sm {
    display: table-row !important;
  }
  td.visible-sm, th.visible-sm {
    display: table-cell !important;
  }
  .visible-sm-block {
    display: block !important;
  }
  .visible-sm-inline {
    display: inline !important;
  }
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }
  table.visible-md {
    display: table;
  }
  tr.visible-md {
    display: table-row !important;
  }
  td.visible-md, th.visible-md {
    display: table-cell !important;
  }
  .visible-md-block {
    display: block !important;
  }
  .visible-md-inline {
    display: inline !important;
  }
  .visible-md-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }
  table.visible-lg {
    display: table;
  }
  tr.visible-lg {
    display: table-row !important;
  }
  td.visible-lg, th.visible-lg {
    display: table-cell !important;
  }
  .visible-lg-block {
    display: block !important;
  }
  .visible-lg-inline {
    display: inline !important;
  }
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}
@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}
.visible-print {
  display: none !important;
}
@media print {
  .visible-print {
    display: block !important;
  }
  table.visible-print {
    display: table;
  }
  tr.visible-print {
    display: table-row !important;
  }
  td.visible-print, th.visible-print {
    display: table-cell !important;
  }
}
.visible-print-block {
  display: none !important;
}
@media print {
  .visible-print-block {
    display: block !important;
  }
}
.visible-print-inline {
  display: none !important;
}
@media print {
  .visible-print-inline {
    display: inline !important;
  }
}
.visible-print-inline-block {
  display: none !important;
}
@media print {
  .visible-print-inline-block {
    display: inline-block !important;
  }
  .hidden-print {
    display: none !important;
  }
}
.nav-stacked > li + li {
  margin-top: 0px;
}
.panel {
  position: relative;
  border: none;
  box-shadow: none;
  border-radius: 0px;
}
.panel-heading {
  border-bottom: 1px solid #f3f3f3;
  padding: 15px;
  text-transform: uppercase;
  color: #232425;
  font-size: 13px;
  letter-spacing: 1px;
}
.panel-group .panel-default > .panel-heading {
  color: #333;
  background-color: #fff;
  border-color: #f3f3f3;
}
.alert {
  border-radius: 0px;
}
/*bg*/
.bg-default {
  background: #fff;
}
.bg-primary {
  background: #6f5499;
}
.bg-success, .progress-bar-success {
  background: #5FC29D;
}
.bg-info, .progress-bar-info {
  background: #5fb0e6;
}
.bg-warning, .progress-bar-warning {
  background: #f1c500;
}
.bg-danger, .progress-bar-danger {
  background: #e55957;
}
/*dropdown shadow*/
.btn-group.open .dropdown-toggle, .btn-white.active, .btn:active, .btn.active {
  box-shadow: none;
}
/*progress*/
.progress {
  box-shadow: none;
  background: #f0f2f7;
  height: 15px;
  border-radius: 0px;
}
.progress-bar {
  box-shadow: none;
  line-height: 15px;
}
.progress-xs {
  height: 5px;
  margin-bottom: 10px;
}
.progress-sm {
  height: 8px;
  margin-bottom: 10px;
}
/*alert*/
.alert-success, .alert-danger, .alert-info, .alert-warning {
  border: none;
}
/*modal*/
.modal-content {
  border-radius: 0px;
  box-shadow: none;
}
.modal-header {
  background: #5cc691;
  color: #fff;
  padding: 20px 15px;
  border-bottom: 5px solid #55b786;
}
.modal-header .close {
  margin-top: 3px;
}
.modal-body {
  padding: 30px 15px;
}
/*button*/
.btn {
  border-radius: 2px;
}
.btn-round {
  border-radius: 30px;
}
.btn-default {
  background-color: #fff;
  border-color: #e2e2e2;
  color: #3a3a3a;
}
.btn-default:hover, .btn-default:focus, .btn-default:active, .btn-default.active, .open .dropdown-toggle.btn-default {
  background-color: #e2e2e2;
  border-color: #e2e2e2;
}
.input-group-btn > .btn.btn-primary,
.btn-primary,
.btn-primary.disabled,
.btn-primary[disabled],
.btn-primary.disabled.active,
.btn-primary.active[disabled] {
  background-color: #a978d1;
  border-color: #a978d1;
  color: #FFFFFF;
}
.input-group-btn > .btn.btn-primary:hover,
.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .open .dropdown-toggle.btn-primary,
.btn-primary.disabled,
.btn-primary[disabled],
.btn-primary.disabled.active,
.btn-primary.active[disabled] {
  background-color: #8e65b0;
  border-color: #8e65b0;
  color: #FFFFFF;
}
.btn-success,
.input-group-btn > .btn.btn-success {
  background-color: #5cc691;
  border-color: #5cc691;
  color: #FFFFFF;
}
.btn-success:hover, .btn-success:focus, .btn-success:active, .btn-success.active, .open .dropdown-toggle.btn-success,
.input-group-btn > .btn.btn-success:hover {
  background-color: #54b585;
  border-color: #54b585;
  color: #FFFFFF;
}
.btn-info,
.input-group-btn > .btn.btn-info {
  background-color: #69c2fe;
  border-color: #69c2fe;
  color: #FFFFFF;
}
.btn-info:hover, .btn-info:focus, .btn-info:active, .btn-info.active, .open .dropdown-toggle.btn-info,
.input-group-btn > .btn.btn-info {
  background-color: #5fb0e6;
  border-color: #5fb0e6;
  color: #FFFFFF;
}
.btn-warning,
.input-group-btn > .btn.btn-warning {
  background-color: #f1c500;
  border-color: #f1c500;
  color: #FFFFFF;
}
.btn-warning:hover, .btn-warning:focus, .btn-warning:active, .btn-warning.active, .open .dropdown-toggle.btn-warning,
.input-group-btn > .btn.btn-warning:hover {
  background-color: #e4ba00;
  border-color: #e4ba00;
  color: #FFFFFF;
}
.btn-danger,
.input-group-btn > .btn.btn-danger {
  background-color: #e55957;
  border-color: #e55957;
  color: #FFFFFF;
}
.btn-danger:hover, .btn-danger:focus, .btn-danger:active, .btn-danger.active, .open .dropdown-toggle.btn-danger,
.input-group-btn > .btn.btn-danger:hover {
  background-color: #ec6459;
  border-color: #ec6459;
  color: #FFFFFF;
}
/*dropdown shadow*/
.btn-group.open .dropdown-toggle, .btn-white.active, .btn:active, .btn.active {
  box-shadow: none;
}
/*button group*/
.btn-group-vertical > .btn:first-child:not(:last-child) {
  border-top-right-radius: 2px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn:last-child:not(:first-child) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 2px;
}
/*input radio and checkbox*/
.radio input[type=radio], .radio-inline input[type=radio], .checkbox input[type=checkbox], .checkbox-inline input[type=checkbox] {
  margin-left: 0;
  position: static;
}
/*table*/
.table > thead > tr > th,
.table > tbody > tr > td {
  border-bottom: 1px solid #e8e8e8;
}
.table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td {
  border-bottom: 1px solid #e8e8e8;
}
.table-bordered > thead > tr > th, .table-bordered > tbody > tr > th, .table-bordered > tfoot > tr > th, .table-bordered > thead > tr > td, .table-bordered > tbody > tr > td, .table-bordered > tfoot > tr > td {
  border: 1px solid #e8e8e8;
}
/*label*/
label {
  font-weight: normal;
}
.label-inverse, .bg-inverse {
  background: #f1f1f1;
  color: #333;
}
.bg-important, .label-danger {
  background: #e55957;
}
.label-warning {
  background: #e4ba00;
}
.label-info {
  background-color: #69c2fe;
}
.label-success {
  background-color: #5cc691;
}
.label-primary {
  background-color: #a978d1;
}
/*nav*/
.navbar {
  border-radius: 0;
}
/*dropdown*/
.dropdown-menu {
  border-radius: 0;
  box-shadow: none;
}
/*alert*/
.alert {
  border: none;
}
/*pagination*/
.pagination-lg > li:first-child > a, .pagination-lg > li:first-child > span,
.pagination > li:first-child > a, .pagination > li:first-child > span {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.pagination-lg > li:last-child > a, .pagination-lg > li:last-child > span,
.pagination > li:last-child > a, .pagination > li:last-child > span {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.pagination li a {
  color: #5e5e5e;
}
.pagination > li > a:hover, .pagination > li.active > a, .pagination > .active > a:hover, .pagination > li > span:hover, .pagination > li > a:focus, .pagination > li > span:focus {
  color: #fff;
  background-color: #a978d1;
  border-color: #a978d1;
}
/*error*/
.has-error .help-block, .has-error .control-label, .has-error .radio, .has-error .checkbox, .has-error .radio-inline, .has-error .checkbox-inline, .has-error.radio label, .has-error.checkbox label, .has-error.radio-inline label, .has-error.checkbox-inline label, .has-error .form-control-feedback {
  color: #E55957;
}
.has-error .form-control {
  border-color: #E55957;
}
.has-error .form-control:focus {
  border-color: #c54d4b;
}
/*radio and checkbox gap*/
.radio input[type=radio], .radio-inline input[type=radio], .checkbox input[type=checkbox], .checkbox-inline input[type=checkbox] {
  margin-right: 10px;
}
/*input group*/
.input-group-btn:first-child > .btn, .input-group-btn:first-child > .btn-group {
  margin-right: -2px;
}
/*! jQuery UI - v1.10.3 - 2013-11-20
* http://jqueryui.com
* Includes: jquery.ui.core.css, jquery.ui.resizable.css, jquery.ui.selectable.css, jquery.ui.accordion.css, jquery.ui.autocomplete.css, jquery.ui.button.css, jquery.ui.datepicker.css, jquery.ui.dialog.css, jquery.ui.menu.css, jquery.ui.progressbar.css, jquery.ui.slider.css, jquery.ui.spinner.css, jquery.ui.tabs.css, jquery.ui.tooltip.css
* Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */
/* Layout helpers
----------------------------------*/
.ui-helper-hidden {
  display: none;
}
.ui-helper-hidden-accessible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.ui-helper-reset {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  line-height: 1.3;
  text-decoration: none;
  font-size: 100%;
  list-style: none;
}
.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
  content: "";
  display: table;
  border-collapse: collapse;
}
.ui-helper-clearfix:after {
  clear: both;
}
.ui-helper-clearfix {
  min-height: 0; /* support: IE7 */
}
.ui-helper-zfix {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  filter: Alpha(Opacity=0);
}
.ui-front {
  z-index: 100;
}
/* Interaction Cues
----------------------------------*/
.ui-state-disabled {
  cursor: default !important;
}
/* Icons
----------------------------------*/
/* states and images */
.ui-icon {
  display: block;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat;
}
/* Misc visuals
----------------------------------*/
/* Overlays */
.ui-widget-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ui-resizable {
  position: relative;
}
.ui-resizable-handle {
  position: absolute;
  font-size: 0.1px;
  display: block;
}
.ui-resizable-disabled .ui-resizable-handle,
.ui-resizable-autohide .ui-resizable-handle {
  display: none;
}
.ui-resizable-n {
  cursor: n-resize;
  height: 7px;
  width: 100%;
  top: -5px;
  left: 0;
}
.ui-resizable-s {
  cursor: s-resize;
  height: 7px;
  width: 100%;
  bottom: -5px;
  left: 0;
}
.ui-resizable-e {
  cursor: e-resize;
  width: 7px;
  right: -5px;
  top: 0;
  height: 100%;
}
.ui-resizable-w {
  cursor: w-resize;
  width: 7px;
  left: -5px;
  top: 0;
  height: 100%;
}
.ui-resizable-se {
  cursor: se-resize;
  width: 12px;
  height: 12px;
  right: 1px;
  bottom: 1px;
}
.ui-resizable-sw {
  cursor: sw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  bottom: -5px;
}
.ui-resizable-nw {
  cursor: nw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  top: -5px;
}
.ui-resizable-ne {
  cursor: ne-resize;
  width: 9px;
  height: 9px;
  right: -5px;
  top: -5px;
}
.ui-selectable-helper {
  position: absolute;
  z-index: 100;
  border: 1px dotted black;
}
.ui-accordion .ui-accordion-header {
  display: block;
  cursor: pointer;
  position: relative;
  margin-top: 2px;
  padding: 0.5em 0.5em 0.5em 0.7em;
  min-height: 0; /* support: IE7 */
}
.ui-accordion .ui-accordion-icons {
  padding-left: 2.2em;
}
.ui-accordion .ui-accordion-noicons {
  padding-left: 0.7em;
}
.ui-accordion .ui-accordion-icons .ui-accordion-icons {
  padding-left: 2.2em;
}
.ui-accordion .ui-accordion-header .ui-accordion-header-icon {
  position: absolute;
  left: 0.5em;
  top: 50%;
  margin-top: -8px;
}
.ui-accordion .ui-accordion-content {
  padding: 1em 2.2em;
  border-top: 0;
  overflow: auto;
}
.ui-autocomplete {
  position: absolute;
  top: 0;
  left: 0;
  cursor: default;
}
.ui-button {
  display: inline-block;
  position: relative;
  padding: 0;
  line-height: normal;
  margin-right: 0.1em;
  cursor: pointer;
  vertical-align: middle;
  text-align: center;
  overflow: visible; /* removes extra width in IE */
}
.ui-button,
.ui-button:link,
.ui-button:visited,
.ui-button:hover,
.ui-button:active {
  text-decoration: none;
}
/* to make room for the icon, a width needs to be set here */
.ui-button-icon-only {
  width: 2.2em;
}
/* button elements seem to need a little more width */
button.ui-button-icon-only {
  width: 2.4em;
}
.ui-button-icons-only {
  width: 3.4em;
}
button.ui-button-icons-only {
  width: 3.7em;
}
/* button text element */
.ui-button .ui-button-text {
  display: block;
  line-height: normal;
}
.ui-button-text-only .ui-button-text {
  padding: 0.4em 1em;
}
.ui-button-icon-only .ui-button-text,
.ui-button-icons-only .ui-button-text {
  padding: 0.4em;
  text-indent: -9999999px;
}
.ui-button-text-icon-primary .ui-button-text,
.ui-button-text-icons .ui-button-text {
  padding: 0.4em 1em 0.4em 2.1em;
}
.ui-button-text-icon-secondary .ui-button-text,
.ui-button-text-icons .ui-button-text {
  padding: 0.4em 2.1em 0.4em 1em;
}
.ui-button-text-icons .ui-button-text {
  padding-left: 2.1em;
  padding-right: 2.1em;
}
/* no icon support for input elements, provide padding by default */
input.ui-button {
  padding: 0.4em 1em;
}
/* button icon element(s) */
.ui-button-icon-only .ui-icon,
.ui-button-text-icon-primary .ui-icon,
.ui-button-text-icon-secondary .ui-icon,
.ui-button-text-icons .ui-icon,
.ui-button-icons-only .ui-icon {
  position: absolute;
  top: 50%;
  margin-top: -8px;
}
.ui-button-icon-only .ui-icon {
  left: 50%;
  margin-left: -8px;
}
.ui-button-text-icon-primary .ui-button-icon-primary,
.ui-button-text-icons .ui-button-icon-primary,
.ui-button-icons-only .ui-button-icon-primary {
  left: 0.5em;
}
.ui-button-text-icon-secondary .ui-button-icon-secondary,
.ui-button-text-icons .ui-button-icon-secondary,
.ui-button-icons-only .ui-button-icon-secondary {
  right: 0.5em;
}
/* button sets */
.ui-buttonset {
  margin-right: 7px;
}
.ui-buttonset .ui-button {
  margin-left: 0;
  margin-right: -0.3em;
}
/* workarounds */
/* reset extra padding in Firefox, see h5bp.com/l */
input.ui-button::-moz-focus-inner,
button.ui-button::-moz-focus-inner {
  border: 0;
  padding: 0;
}
.ui-datepicker {
  width: 17em;
  padding: 0.2em 0.2em 0;
  display: none;
}
.ui-datepicker .ui-datepicker-header {
  position: relative;
  padding: 0.2em 0;
}
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  position: absolute;
  top: 2px;
  width: 1.8em;
  height: 1.8em;
}
.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
  top: 1px;
}
.ui-datepicker .ui-datepicker-prev {
  left: 2px;
}
.ui-datepicker .ui-datepicker-next {
  right: 2px;
}
.ui-datepicker .ui-datepicker-prev-hover {
  left: 1px;
}
.ui-datepicker .ui-datepicker-next-hover {
  right: 1px;
}
.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
  display: block;
  position: absolute;
  left: 50%;
  margin-left: -8px;
  top: 50%;
  margin-top: -8px;
}
.ui-datepicker .ui-datepicker-title {
  margin: 0 2.3em;
  line-height: 1.8em;
  text-align: center;
}
.ui-datepicker .ui-datepicker-title select {
  font-size: 1em;
  margin: 1px 0;
}
.ui-datepicker select.ui-datepicker-month-year {
  width: 100%;
}
.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
  width: 49%;
}
.ui-datepicker table {
  width: 100%;
  font-size: 0.9em;
  border-collapse: collapse;
  margin: 0 0 0.4em;
}
.ui-datepicker th {
  padding: 0.7em 0.3em;
  text-align: center;
  font-weight: bold;
  border: 0;
}
.ui-datepicker td {
  border: 0;
  padding: 1px;
}
.ui-datepicker td span,
.ui-datepicker td a {
  display: block;
  padding: 0.2em;
  text-align: right;
  text-decoration: none;
}
.ui-datepicker .ui-datepicker-buttonpane {
  background-image: none;
  margin: 0.7em 0 0 0;
  padding: 0 0.2em;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
}
.ui-datepicker .ui-datepicker-buttonpane button {
  float: right;
  margin: 0.5em 0.2em 0.4em;
  cursor: pointer;
  padding: 0.2em 0.6em 0.3em 0.6em;
  width: auto;
  overflow: visible;
}
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
  float: left;
}
/* with multiple calendars */
.ui-datepicker.ui-datepicker-multi {
  width: auto;
}
.ui-datepicker-multi .ui-datepicker-group {
  float: left;
}
.ui-datepicker-multi .ui-datepicker-group table {
  width: 95%;
  margin: 0 auto 0.4em;
}
.ui-datepicker-multi-2 .ui-datepicker-group {
  width: 50%;
}
.ui-datepicker-multi-3 .ui-datepicker-group {
  width: 33.3%;
}
.ui-datepicker-multi-4 .ui-datepicker-group {
  width: 25%;
}
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
  border-left-width: 0;
}
.ui-datepicker-multi .ui-datepicker-buttonpane {
  clear: left;
}
.ui-datepicker-row-break {
  clear: both;
  width: 100%;
  font-size: 0;
}
/* RTL support */
.ui-datepicker-rtl {
  direction: rtl;
}
.ui-datepicker-rtl .ui-datepicker-prev {
  right: 2px;
  left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next {
  left: 2px;
  right: auto;
}
.ui-datepicker-rtl .ui-datepicker-prev:hover {
  right: 1px;
  left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next:hover {
  left: 1px;
  right: auto;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane {
  clear: right;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button {
  float: left;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-rtl .ui-datepicker-group {
  float: right;
}
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
  border-right-width: 0;
  border-left-width: 1px;
}
.ui-dialog {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.2em;
  outline: 0;
}
.ui-dialog .ui-dialog-titlebar {
  padding: 0.4em 1em;
  position: relative;
}
.ui-dialog .ui-dialog-title {
  float: left;
  margin: 0.1em 0;
  white-space: nowrap;
  width: 90%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ui-dialog .ui-dialog-titlebar-close {
  position: absolute;
  right: 0.3em;
  top: 50%;
  width: 21px;
  margin: -10px 0 0 0;
  padding: 1px;
  height: 20px;
}
.ui-dialog .ui-dialog-content {
  position: relative;
  border: 0;
  padding: 0.5em 1em;
  background: none;
  overflow: auto;
}
.ui-dialog .ui-dialog-buttonpane {
  text-align: left;
  border-width: 1px 0 0 0;
  background-image: none;
  margin-top: 0.5em;
  padding: 0.3em 1em 0.5em 0.4em;
}
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
  float: right;
}
.ui-dialog .ui-dialog-buttonpane button {
  margin: 0.5em 0.4em 0.5em 0;
  cursor: pointer;
}
.ui-dialog .ui-resizable-se {
  width: 12px;
  height: 12px;
  right: -5px;
  bottom: -5px;
  background-position: 16px 16px;
}
.ui-draggable .ui-dialog-titlebar {
  cursor: move;
}
.ui-menu {
  list-style: none;
  padding: 2px;
  margin: 0;
  display: block;
  outline: none;
}
.ui-menu .ui-menu {
  margin-top: -3px;
  position: absolute;
}
.ui-menu .ui-menu-item {
  margin: 0;
  padding: 0;
  width: 100%;
  /* support: IE10, see #8844 */
  list-style-image: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);
}
.ui-menu .ui-menu-divider {
  margin: 5px -2px 5px -2px;
  height: 0;
  font-size: 0;
  line-height: 0;
  border-width: 1px 0 0 0;
}
.ui-menu .ui-menu-item a {
  text-decoration: none;
  display: block;
  padding: 2px 0.4em;
  line-height: 1.5;
  min-height: 0; /* support: IE7 */
  font-weight: normal;
}
.ui-menu .ui-menu-item a.ui-state-focus,
.ui-menu .ui-menu-item a.ui-state-active {
  font-weight: normal;
  margin: -1px;
}
.ui-menu .ui-state-disabled {
  font-weight: normal;
  margin: 0.4em 0 0.2em;
  line-height: 1.5;
}
.ui-menu .ui-state-disabled a {
  cursor: default;
}
/* icon support */
.ui-menu-icons {
  position: relative;
}
.ui-menu-icons .ui-menu-item a {
  position: relative;
  padding-left: 2em;
}
/* left-aligned */
.ui-menu .ui-icon {
  position: absolute;
  top: 0.2em;
  left: 0.2em;
}
/* right-aligned */
.ui-menu .ui-menu-icon {
  position: static;
  float: right;
}
.ui-progressbar {
  height: 2em;
  text-align: left;
  overflow: hidden;
}
.ui-progressbar .ui-progressbar-value {
  margin: -1px;
  height: 100%;
}
.ui-progressbar .ui-progressbar-overlay {
  background: url("vendor/images/animated-overlay.gif");
  height: 100%;
  filter: alpha(opacity=25);
  opacity: 0.25;
}
.ui-progressbar-indeterminate .ui-progressbar-value {
  background-image: none;
}
.ui-slider {
  position: relative;
  text-align: left;
}
.ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 1.2em;
  height: 1.2em;
  cursor: default;
}
.ui-slider .ui-slider-range {
  position: absolute;
  z-index: 1;
  font-size: 0.7em;
  display: block;
  border: 0;
  background-position: 0 0;
}
/* For IE8 - See #6727 */
.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
  filter: inherit;
}
.ui-slider-horizontal {
  height: 0.8em;
}
.ui-slider-horizontal .ui-slider-handle {
  top: -0.3em;
  margin-left: -0.6em;
}
.ui-slider-horizontal .ui-slider-range {
  top: 0;
  height: 100%;
}
.ui-slider-horizontal .ui-slider-range-min {
  left: 0;
}
.ui-slider-horizontal .ui-slider-range-max {
  right: 0;
}
.ui-slider-vertical {
  width: 0.8em;
  height: 100px;
}
.ui-slider-vertical .ui-slider-handle {
  left: -0.3em;
  margin-left: 0;
  margin-bottom: -0.6em;
}
.ui-slider-vertical .ui-slider-range {
  left: 0;
  width: 100%;
}
.ui-slider-vertical .ui-slider-range-min {
  bottom: 0;
}
.ui-slider-vertical .ui-slider-range-max {
  top: 0;
}
.ui-spinner {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 0;
  vertical-align: middle;
}
.ui-spinner-input {
  border: none;
  background: none;
  color: inherit;
  padding: 0;
  margin: 0.2em 0;
  vertical-align: middle;
  margin-left: 0.4em;
  margin-right: 22px;
}
.ui-spinner-button {
  width: 16px;
  height: 50%;
  font-size: 0.5em;
  padding: 0;
  margin: 0;
  text-align: center;
  position: absolute;
  cursor: default;
  display: block;
  overflow: hidden;
  right: 0;
}
/* more specificity required here to overide default borders */
.ui-spinner a.ui-spinner-button {
  border-top: none;
  border-bottom: none;
  border-right: none;
}
/* vertical centre icon */
.ui-spinner .ui-icon {
  position: absolute;
  margin-top: -8px;
  top: 50%;
  left: 0;
}
.ui-spinner-up {
  top: 0;
}
.ui-spinner-down {
  bottom: 0;
}
/* TR overrides */
.ui-spinner .ui-icon-triangle-1-s {
  /* need to fix icons sprite */
  background-position: -65px -16px;
}
.ui-tabs {
  position: relative; /* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
  padding: 0.2em;
}
.ui-tabs .ui-tabs-nav {
  margin: 0;
  padding: 0.2em 0.2em 0;
}
.ui-tabs .ui-tabs-nav li {
  list-style: none;
  float: left;
  position: relative;
  top: 0;
  margin: 1px 0.2em 0 0;
  border-bottom-width: 0;
  padding: 0;
  white-space: nowrap;
}
.ui-tabs .ui-tabs-nav li a {
  float: left;
  padding: 0.5em 1em;
  text-decoration: none;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active {
  margin-bottom: -1px;
  padding-bottom: 1px;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active a,
.ui-tabs .ui-tabs-nav li.ui-state-disabled a,
.ui-tabs .ui-tabs-nav li.ui-tabs-loading a {
  cursor: text;
}
.ui-tabs .ui-tabs-nav li a,
.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a {
  cursor: pointer;
}
.ui-tabs .ui-tabs-panel {
  display: block;
  border-width: 0;
  padding: 1em 1.4em;
  background: none;
}
.ui-tooltip {
  padding: 8px;
  position: absolute;
  z-index: 9999;
  max-width: 300px;
  box-shadow: 0 0 5px #aaa;
}
body .ui-tooltip {
  border-width: 2px;
}
/* JQUERY UI THEME */
.ui-datepicker {
  background: #1D2939;
  margin-top: 1px;
  z-index: 100000;
  border-radius: 2px;
  width: 280px;
}
.ui-datepicker-title {
  text-transform: uppercase;
  font-family: "LatoBold";
  color: #1CAF9A;
}
.ui-datepicker th {
  text-transform: uppercase;
  font-family: "LatoBold";
  font-weight: normal;
  font-size: 11px;
  color: #fff;
}
.ui-datepicker td.ui-datepicker-today a {
  background: rgba(255, 255, 255, 0.1);
}
.ui-datepicker td a {
  color: #636E7B;
  border-radius: 2px;
  padding: 3px 5px;
  transition: all 0.2s ease-out 0s;
}
.ui-datepicker td a:hover {
  background: #1CAF9A;
  color: #fff;
}
.ui-datepicker-next,
.ui-datepicker-prev {
  transition: all 0.2s ease-out 0s;
  border-radius: 2px;
}
.ui-datepicker-next {
  background: url(images/calendar-arrow.png) no-repeat 10px 5px;
}
.ui-datepicker-next:hover {
  top: 2px;
  right: 2px;
  background-color: #1CAF9A;
  cursor: pointer;
}
.ui-datepicker-prev {
  background: url(images/calendar-arrow.png) no-repeat 8px -80px;
}
.ui-datepicker-prev:hover {
  top: 2px;
  left: 2px;
  background-color: #1CAF9A;
  cursor: pointer;
}
.ui-datepicker-buttonpane button {
  border: 0;
  background: #1CAF9A;
  color: #fff;
  border-radius: 2px;
  padding: 7px 10px;
}
.ui-spinner {
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 2px;
  overflow: hidden;
}
.ui-spinner-input {
  margin: 0 20px 0 0;
  padding: 10px;
}
.ui-spinner-button {
  background-color: #E4E7EA;
  border-left: 1px solid #ccc;
  width: 32px;
  background-repeat: no-repeat;
  background-image: url(images/dropdown-arrow.png);
  cursor: pointer;
}
.ui-spinner-up {
  background-position: 9px -41px;
  border-bottom: 1px solid #ccc !important;
}
.ui-spinner-down {
  background-position: 9px 6px;
}
.ui-spinner-button:hover {
  background-color: #f3f3f3;
}
.ui-slider {
  background: rgba(17, 18, 18, 0.1);
  border-radius: 3px;
}
.ui-slider-horizontal {
  height: 6px;
  margin: 15px 0;
}
.ui-slider .ui-slider-handle {
  background: #999;
  border: 6px solid #fff;
  width: 20px;
  height: 20px;
  border-radius: 50px;
  top: -0.4em;
  cursor: pointer;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.4);
}
.ui-slider .ui-slider-handle:hover {
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
}
.ui-slider .ui-slider-range {
  border-radius: 3px;
  background: #999;
}
.slider-primary .ui-slider-range,
.slider-primary .ui-slider-handle {
  background-color: #428BCA;
}
.slider-success .ui-slider-range,
.slider-success .ui-slider-handle {
  background-color: #1CAF9A;
}
.slider-warning .ui-slider-range,
.slider-warning .ui-slider-handle {
  background-color: #F0AD4E;
}
.slider-danger .ui-slider-range,
.slider-danger .ui-slider-handle {
  background-color: #D9534F;
}
.slider-info .ui-slider-range,
.slider-info .ui-slider-handle {
  background-color: #5BC0DE;
}
.ui-slider-vertical {
  width: 6px;
  display: inline-block;
}
.ui-slider-vertical .ui-slider-handle {
  top: auto;
  left: -7px;
}
/*!
 *  Font Awesome 4.2.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: "FontAwesome";
  src: url("/build/assets/fontawesome-webfont-BA62gdvp.eot?v=4.2.0");
  src: url("/build/assets/fontawesome-webfont-BA62gdvp.eot?#iefix&v=4.2.0") format("embedded-opentype"), url("/build/assets/fontawesome-webfont-CtuGZhPQ.woff?v=4.2.0") format("woff"), url("/build/assets/fontawesome-webfont-Bq7zYqJt.ttf?v=4.2.0") format("truetype"), url("/build/assets/fontawesome-webfont-B8UvJmn5.svg?v=4.2.0#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}
.fa-2x {
  font-size: 2em;
}
.fa-3x {
  font-size: 3em;
}
.fa-4x {
  font-size: 4em;
}
.fa-5x {
  font-size: 5em;
}
.fa-fw {
  width: 1.28571429em;
  text-align: center;
}
.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}
.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.85714286em;
}
.fa-border {
  padding: 0.2em 0.25em 0.15em;
  border: solid 0.08em #eeeeee;
  border-radius: 0.1em;
}
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.fa.pull-left {
  margin-right: 0.3em;
}
.fa.pull-right {
  margin-left: 0.3em;
}
.fa-spin {
  animation: fa-spin 2s infinite linear;
}
@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  transform: rotate(90deg);
}
.fa-rotate-180 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  transform: rotate(180deg);
}
.fa-rotate-270 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
  transform: scale(-1, 1);
}
.fa-flip-vertical {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
  transform: scale(1, -1);
}
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}
.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}
.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
.fa-stack-1x {
  line-height: inherit;
}
.fa-stack-2x {
  font-size: 2em;
}
.fa-inverse {
  color: #ffffff;
}
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "\f000";
}
.fa-music:before {
  content: "\f001";
}
.fa-search:before {
  content: "\f002";
}
.fa-envelope-o:before {
  content: "\f003";
}
.fa-heart:before {
  content: "\f004";
}
.fa-star:before {
  content: "\f005";
}
.fa-star-o:before {
  content: "\f006";
}
.fa-user:before {
  content: "\f007";
}
.fa-film:before {
  content: "\f008";
}
.fa-th-large:before {
  content: "\f009";
}
.fa-th:before {
  content: "\f00a";
}
.fa-th-list:before {
  content: "\f00b";
}
.fa-check:before {
  content: "\f00c";
}
.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\f00d";
}
.fa-search-plus:before {
  content: "\f00e";
}
.fa-search-minus:before {
  content: "\f010";
}
.fa-power-off:before {
  content: "\f011";
}
.fa-signal:before {
  content: "\f012";
}
.fa-gear:before,
.fa-cog:before {
  content: "\f013";
}
.fa-trash-o:before {
  content: "\f014";
}
.fa-home:before {
  content: "\f015";
}
.fa-file-o:before {
  content: "\f016";
}
.fa-clock-o:before {
  content: "\f017";
}
.fa-road:before {
  content: "\f018";
}
.fa-download:before {
  content: "\f019";
}
.fa-arrow-circle-o-down:before {
  content: "\f01a";
}
.fa-arrow-circle-o-up:before {
  content: "\f01b";
}
.fa-inbox:before {
  content: "\f01c";
}
.fa-play-circle-o:before {
  content: "\f01d";
}
.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e";
}
.fa-refresh:before {
  content: "\f021";
}
.fa-list-alt:before {
  content: "\f022";
}
.fa-lock:before {
  content: "\f023";
}
.fa-flag:before {
  content: "\f024";
}
.fa-headphones:before {
  content: "\f025";
}
.fa-volume-off:before {
  content: "\f026";
}
.fa-volume-down:before {
  content: "\f027";
}
.fa-volume-up:before {
  content: "\f028";
}
.fa-qrcode:before {
  content: "\f029";
}
.fa-barcode:before {
  content: "\f02a";
}
.fa-tag:before {
  content: "\f02b";
}
.fa-tags:before {
  content: "\f02c";
}
.fa-book:before {
  content: "\f02d";
}
.fa-bookmark:before {
  content: "\f02e";
}
.fa-print:before {
  content: "\f02f";
}
.fa-camera:before {
  content: "\f030";
}
.fa-font:before {
  content: "\f031";
}
.fa-bold:before {
  content: "\f032";
}
.fa-italic:before {
  content: "\f033";
}
.fa-text-height:before {
  content: "\f034";
}
.fa-text-width:before {
  content: "\f035";
}
.fa-align-left:before {
  content: "\f036";
}
.fa-align-center:before {
  content: "\f037";
}
.fa-align-right:before {
  content: "\f038";
}
.fa-align-justify:before {
  content: "\f039";
}
.fa-list:before {
  content: "\f03a";
}
.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}
.fa-indent:before {
  content: "\f03c";
}
.fa-video-camera:before {
  content: "\f03d";
}
.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\f03e";
}
.fa-pencil:before {
  content: "\f040";
}
.fa-map-marker:before {
  content: "\f041";
}
.fa-adjust:before {
  content: "\f042";
}
.fa-tint:before {
  content: "\f043";
}
.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}
.fa-share-square-o:before {
  content: "\f045";
}
.fa-check-square-o:before {
  content: "\f046";
}
.fa-arrows:before {
  content: "\f047";
}
.fa-step-backward:before {
  content: "\f048";
}
.fa-fast-backward:before {
  content: "\f049";
}
.fa-backward:before {
  content: "\f04a";
}
.fa-play:before {
  content: "\f04b";
}
.fa-pause:before {
  content: "\f04c";
}
.fa-stop:before {
  content: "\f04d";
}
.fa-forward:before {
  content: "\f04e";
}
.fa-fast-forward:before {
  content: "\f050";
}
.fa-step-forward:before {
  content: "\f051";
}
.fa-eject:before {
  content: "\f052";
}
.fa-chevron-left:before {
  content: "\f053";
}
.fa-chevron-right:before {
  content: "\f054";
}
.fa-plus-circle:before {
  content: "\f055";
}
.fa-minus-circle:before {
  content: "\f056";
}
.fa-times-circle:before {
  content: "\f057";
}
.fa-check-circle:before {
  content: "\f058";
}
.fa-question-circle:before {
  content: "\f059";
}
.fa-info-circle:before {
  content: "\f05a";
}
.fa-crosshairs:before {
  content: "\f05b";
}
.fa-times-circle-o:before {
  content: "\f05c";
}
.fa-check-circle-o:before {
  content: "\f05d";
}
.fa-ban:before {
  content: "\f05e";
}
.fa-arrow-left:before {
  content: "\f060";
}
.fa-arrow-right:before {
  content: "\f061";
}
.fa-arrow-up:before {
  content: "\f062";
}
.fa-arrow-down:before {
  content: "\f063";
}
.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}
.fa-expand:before {
  content: "\f065";
}
.fa-compress:before {
  content: "\f066";
}
.fa-plus:before {
  content: "\f067";
}
.fa-minus:before {
  content: "\f068";
}
.fa-asterisk:before {
  content: "\f069";
}
.fa-exclamation-circle:before {
  content: "\f06a";
}
.fa-gift:before {
  content: "\f06b";
}
.fa-leaf:before {
  content: "\f06c";
}
.fa-fire:before {
  content: "\f06d";
}
.fa-eye:before {
  content: "\f06e";
}
.fa-eye-slash:before {
  content: "\f070";
}
.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071";
}
.fa-plane:before {
  content: "\f072";
}
.fa-calendar:before {
  content: "\f073";
}
.fa-random:before {
  content: "\f074";
}
.fa-comment:before {
  content: "\f075";
}
.fa-magnet:before {
  content: "\f076";
}
.fa-chevron-up:before {
  content: "\f077";
}
.fa-chevron-down:before {
  content: "\f078";
}
.fa-retweet:before {
  content: "\f079";
}
.fa-shopping-cart:before {
  content: "\f07a";
}
.fa-folder:before {
  content: "\f07b";
}
.fa-folder-open:before {
  content: "\f07c";
}
.fa-arrows-v:before {
  content: "\f07d";
}
.fa-arrows-h:before {
  content: "\f07e";
}
.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\f080";
}
.fa-twitter-square:before {
  content: "\f081";
}
.fa-facebook-square:before {
  content: "\f082";
}
.fa-camera-retro:before {
  content: "\f083";
}
.fa-key:before {
  content: "\f084";
}
.fa-gears:before,
.fa-cogs:before {
  content: "\f085";
}
.fa-comments:before {
  content: "\f086";
}
.fa-thumbs-o-up:before {
  content: "\f087";
}
.fa-thumbs-o-down:before {
  content: "\f088";
}
.fa-star-half:before {
  content: "\f089";
}
.fa-heart-o:before {
  content: "\f08a";
}
.fa-sign-out:before {
  content: "\f08b";
}
.fa-linkedin-square:before {
  content: "\f08c";
}
.fa-thumb-tack:before {
  content: "\f08d";
}
.fa-external-link:before {
  content: "\f08e";
}
.fa-sign-in:before {
  content: "\f090";
}
.fa-trophy:before {
  content: "\f091";
}
.fa-github-square:before {
  content: "\f092";
}
.fa-upload:before {
  content: "\f093";
}
.fa-lemon-o:before {
  content: "\f094";
}
.fa-phone:before {
  content: "\f095";
}
.fa-square-o:before {
  content: "\f096";
}
.fa-bookmark-o:before {
  content: "\f097";
}
.fa-phone-square:before {
  content: "\f098";
}
.fa-twitter:before {
  content: "\f099";
}
.fa-facebook:before {
  content: "\f09a";
}
.fa-github:before {
  content: "\f09b";
}
.fa-unlock:before {
  content: "\f09c";
}
.fa-credit-card:before {
  content: "\f09d";
}
.fa-rss:before {
  content: "\f09e";
}
.fa-hdd-o:before {
  content: "\f0a0";
}
.fa-bullhorn:before {
  content: "\f0a1";
}
.fa-bell:before {
  content: "\f0f3";
}
.fa-certificate:before {
  content: "\f0a3";
}
.fa-hand-o-right:before {
  content: "\f0a4";
}
.fa-hand-o-left:before {
  content: "\f0a5";
}
.fa-hand-o-up:before {
  content: "\f0a6";
}
.fa-hand-o-down:before {
  content: "\f0a7";
}
.fa-arrow-circle-left:before {
  content: "\f0a8";
}
.fa-arrow-circle-right:before {
  content: "\f0a9";
}
.fa-arrow-circle-up:before {
  content: "\f0aa";
}
.fa-arrow-circle-down:before {
  content: "\f0ab";
}
.fa-globe:before {
  content: "\f0ac";
}
.fa-wrench:before {
  content: "\f0ad";
}
.fa-tasks:before {
  content: "\f0ae";
}
.fa-filter:before {
  content: "\f0b0";
}
.fa-briefcase:before {
  content: "\f0b1";
}
.fa-arrows-alt:before {
  content: "\f0b2";
}
.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}
.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}
.fa-cloud:before {
  content: "\f0c2";
}
.fa-flask:before {
  content: "\f0c3";
}
.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}
.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}
.fa-paperclip:before {
  content: "\f0c6";
}
.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7";
}
.fa-square:before {
  content: "\f0c8";
}
.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\f0c9";
}
.fa-list-ul:before {
  content: "\f0ca";
}
.fa-list-ol:before {
  content: "\f0cb";
}
.fa-strikethrough:before {
  content: "\f0cc";
}
.fa-underline:before {
  content: "\f0cd";
}
.fa-table:before {
  content: "\f0ce";
}
.fa-magic:before {
  content: "\f0d0";
}
.fa-truck:before {
  content: "\f0d1";
}
.fa-pinterest:before {
  content: "\f0d2";
}
.fa-pinterest-square:before {
  content: "\f0d3";
}
.fa-google-plus-square:before {
  content: "\f0d4";
}
.fa-google-plus:before {
  content: "\f0d5";
}
.fa-money:before {
  content: "\f0d6";
}
.fa-caret-down:before {
  content: "\f0d7";
}
.fa-caret-up:before {
  content: "\f0d8";
}
.fa-caret-left:before {
  content: "\f0d9";
}
.fa-caret-right:before {
  content: "\f0da";
}
.fa-columns:before {
  content: "\f0db";
}
.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc";
}
.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\f0dd";
}
.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\f0de";
}
.fa-envelope:before {
  content: "\f0e0";
}
.fa-linkedin:before {
  content: "\f0e1";
}
.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}
.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3";
}
.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}
.fa-comment-o:before {
  content: "\f0e5";
}
.fa-comments-o:before {
  content: "\f0e6";
}
.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7";
}
.fa-sitemap:before {
  content: "\f0e8";
}
.fa-umbrella:before {
  content: "\f0e9";
}
.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea";
}
.fa-lightbulb-o:before {
  content: "\f0eb";
}
.fa-exchange:before {
  content: "\f0ec";
}
.fa-cloud-download:before {
  content: "\f0ed";
}
.fa-cloud-upload:before {
  content: "\f0ee";
}
.fa-user-md:before {
  content: "\f0f0";
}
.fa-stethoscope:before {
  content: "\f0f1";
}
.fa-suitcase:before {
  content: "\f0f2";
}
.fa-bell-o:before {
  content: "\f0a2";
}
.fa-coffee:before {
  content: "\f0f4";
}
.fa-cutlery:before {
  content: "\f0f5";
}
.fa-file-text-o:before {
  content: "\f0f6";
}
.fa-building-o:before {
  content: "\f0f7";
}
.fa-hospital-o:before {
  content: "\f0f8";
}
.fa-ambulance:before {
  content: "\f0f9";
}
.fa-medkit:before {
  content: "\f0fa";
}
.fa-fighter-jet:before {
  content: "\f0fb";
}
.fa-beer:before {
  content: "\f0fc";
}
.fa-h-square:before {
  content: "\f0fd";
}
.fa-plus-square:before {
  content: "\f0fe";
}
.fa-angle-double-left:before {
  content: "\f100";
}
.fa-angle-double-right:before {
  content: "\f101";
}
.fa-angle-double-up:before {
  content: "\f102";
}
.fa-angle-double-down:before {
  content: "\f103";
}
.fa-angle-left:before {
  content: "\f104";
}
.fa-angle-right:before {
  content: "\f105";
}
.fa-angle-up:before {
  content: "\f106";
}
.fa-angle-down:before {
  content: "\f107";
}
.fa-desktop:before {
  content: "\f108";
}
.fa-laptop:before {
  content: "\f109";
}
.fa-tablet:before {
  content: "\f10a";
}
.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}
.fa-circle-o:before {
  content: "\f10c";
}
.fa-quote-left:before {
  content: "\f10d";
}
.fa-quote-right:before {
  content: "\f10e";
}
.fa-spinner:before {
  content: "\f110";
}
.fa-circle:before {
  content: "\f111";
}
.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}
.fa-github-alt:before {
  content: "\f113";
}
.fa-folder-o:before {
  content: "\f114";
}
.fa-folder-open-o:before {
  content: "\f115";
}
.fa-smile-o:before {
  content: "\f118";
}
.fa-frown-o:before {
  content: "\f119";
}
.fa-meh-o:before {
  content: "\f11a";
}
.fa-gamepad:before {
  content: "\f11b";
}
.fa-keyboard-o:before {
  content: "\f11c";
}
.fa-flag-o:before {
  content: "\f11d";
}
.fa-flag-checkered:before {
  content: "\f11e";
}
.fa-terminal:before {
  content: "\f120";
}
.fa-code:before {
  content: "\f121";
}
.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\f122";
}
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}
.fa-location-arrow:before {
  content: "\f124";
}
.fa-crop:before {
  content: "\f125";
}
.fa-code-fork:before {
  content: "\f126";
}
.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127";
}
.fa-question:before {
  content: "\f128";
}
.fa-info:before {
  content: "\f129";
}
.fa-exclamation:before {
  content: "\f12a";
}
.fa-superscript:before {
  content: "\f12b";
}
.fa-subscript:before {
  content: "\f12c";
}
.fa-eraser:before {
  content: "\f12d";
}
.fa-puzzle-piece:before {
  content: "\f12e";
}
.fa-microphone:before {
  content: "\f130";
}
.fa-microphone-slash:before {
  content: "\f131";
}
.fa-shield:before {
  content: "\f132";
}
.fa-calendar-o:before {
  content: "\f133";
}
.fa-fire-extinguisher:before {
  content: "\f134";
}
.fa-rocket:before {
  content: "\f135";
}
.fa-maxcdn:before {
  content: "\f136";
}
.fa-chevron-circle-left:before {
  content: "\f137";
}
.fa-chevron-circle-right:before {
  content: "\f138";
}
.fa-chevron-circle-up:before {
  content: "\f139";
}
.fa-chevron-circle-down:before {
  content: "\f13a";
}
.fa-html5:before {
  content: "\f13b";
}
.fa-css3:before {
  content: "\f13c";
}
.fa-anchor:before {
  content: "\f13d";
}
.fa-unlock-alt:before {
  content: "\f13e";
}
.fa-bullseye:before {
  content: "\f140";
}
.fa-ellipsis-h:before {
  content: "\f141";
}
.fa-ellipsis-v:before {
  content: "\f142";
}
.fa-rss-square:before {
  content: "\f143";
}
.fa-play-circle:before {
  content: "\f144";
}
.fa-ticket:before {
  content: "\f145";
}
.fa-minus-square:before {
  content: "\f146";
}
.fa-minus-square-o:before {
  content: "\f147";
}
.fa-level-up:before {
  content: "\f148";
}
.fa-level-down:before {
  content: "\f149";
}
.fa-check-square:before {
  content: "\f14a";
}
.fa-pencil-square:before {
  content: "\f14b";
}
.fa-external-link-square:before {
  content: "\f14c";
}
.fa-share-square:before {
  content: "\f14d";
}
.fa-compass:before {
  content: "\f14e";
}
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150";
}
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151";
}
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152";
}
.fa-euro:before,
.fa-eur:before {
  content: "\f153";
}
.fa-gbp:before {
  content: "\f154";
}
.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}
.fa-rupee:before,
.fa-inr:before {
  content: "\f156";
}
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157";
}
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158";
}
.fa-won:before,
.fa-krw:before {
  content: "\f159";
}
.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}
.fa-file:before {
  content: "\f15b";
}
.fa-file-text:before {
  content: "\f15c";
}
.fa-sort-alpha-asc:before {
  content: "\f15d";
}
.fa-sort-alpha-desc:before {
  content: "\f15e";
}
.fa-sort-amount-asc:before {
  content: "\f160";
}
.fa-sort-amount-desc:before {
  content: "\f161";
}
.fa-sort-numeric-asc:before {
  content: "\f162";
}
.fa-sort-numeric-desc:before {
  content: "\f163";
}
.fa-thumbs-up:before {
  content: "\f164";
}
.fa-thumbs-down:before {
  content: "\f165";
}
.fa-youtube-square:before {
  content: "\f166";
}
.fa-youtube:before {
  content: "\f167";
}
.fa-xing:before {
  content: "\f168";
}
.fa-xing-square:before {
  content: "\f169";
}
.fa-youtube-play:before {
  content: "\f16a";
}
.fa-dropbox:before {
  content: "\f16b";
}
.fa-stack-overflow:before {
  content: "\f16c";
}
.fa-instagram:before {
  content: "\f16d";
}
.fa-flickr:before {
  content: "\f16e";
}
.fa-adn:before {
  content: "\f170";
}
.fa-bitbucket:before {
  content: "\f171";
}
.fa-bitbucket-square:before {
  content: "\f172";
}
.fa-tumblr:before {
  content: "\f173";
}
.fa-tumblr-square:before {
  content: "\f174";
}
.fa-long-arrow-down:before {
  content: "\f175";
}
.fa-long-arrow-up:before {
  content: "\f176";
}
.fa-long-arrow-left:before {
  content: "\f177";
}
.fa-long-arrow-right:before {
  content: "\f178";
}
.fa-apple:before {
  content: "\f179";
}
.fa-windows:before {
  content: "\f17a";
}
.fa-android:before {
  content: "\f17b";
}
.fa-linux:before {
  content: "\f17c";
}
.fa-dribbble:before {
  content: "\f17d";
}
.fa-skype:before {
  content: "\f17e";
}
.fa-foursquare:before {
  content: "\f180";
}
.fa-trello:before {
  content: "\f181";
}
.fa-female:before {
  content: "\f182";
}
.fa-male:before {
  content: "\f183";
}
.fa-gittip:before {
  content: "\f184";
}
.fa-sun-o:before {
  content: "\f185";
}
.fa-moon-o:before {
  content: "\f186";
}
.fa-archive:before {
  content: "\f187";
}
.fa-bug:before {
  content: "\f188";
}
.fa-vk:before {
  content: "\f189";
}
.fa-weibo:before {
  content: "\f18a";
}
.fa-renren:before {
  content: "\f18b";
}
.fa-pagelines:before {
  content: "\f18c";
}
.fa-stack-exchange:before {
  content: "\f18d";
}
.fa-arrow-circle-o-right:before {
  content: "\f18e";
}
.fa-arrow-circle-o-left:before {
  content: "\f190";
}
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191";
}
.fa-dot-circle-o:before {
  content: "\f192";
}
.fa-wheelchair:before {
  content: "\f193";
}
.fa-vimeo-square:before {
  content: "\f194";
}
.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195";
}
.fa-plus-square-o:before {
  content: "\f196";
}
.fa-space-shuttle:before {
  content: "\f197";
}
.fa-slack:before {
  content: "\f198";
}
.fa-envelope-square:before {
  content: "\f199";
}
.fa-wordpress:before {
  content: "\f19a";
}
.fa-openid:before {
  content: "\f19b";
}
.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\f19c";
}
.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\f19d";
}
.fa-yahoo:before {
  content: "\f19e";
}
.fa-google:before {
  content: "\f1a0";
}
.fa-reddit:before {
  content: "\f1a1";
}
.fa-reddit-square:before {
  content: "\f1a2";
}
.fa-stumbleupon-circle:before {
  content: "\f1a3";
}
.fa-stumbleupon:before {
  content: "\f1a4";
}
.fa-delicious:before {
  content: "\f1a5";
}
.fa-digg:before {
  content: "\f1a6";
}
.fa-pied-piper:before {
  content: "\f1a7";
}
.fa-pied-piper-alt:before {
  content: "\f1a8";
}
.fa-drupal:before {
  content: "\f1a9";
}
.fa-joomla:before {
  content: "\f1aa";
}
.fa-language:before {
  content: "\f1ab";
}
.fa-fax:before {
  content: "\f1ac";
}
.fa-building:before {
  content: "\f1ad";
}
.fa-child:before {
  content: "\f1ae";
}
.fa-paw:before {
  content: "\f1b0";
}
.fa-spoon:before {
  content: "\f1b1";
}
.fa-cube:before {
  content: "\f1b2";
}
.fa-cubes:before {
  content: "\f1b3";
}
.fa-behance:before {
  content: "\f1b4";
}
.fa-behance-square:before {
  content: "\f1b5";
}
.fa-steam:before {
  content: "\f1b6";
}
.fa-steam-square:before {
  content: "\f1b7";
}
.fa-recycle:before {
  content: "\f1b8";
}
.fa-automobile:before,
.fa-car:before {
  content: "\f1b9";
}
.fa-cab:before,
.fa-taxi:before {
  content: "\f1ba";
}
.fa-tree:before {
  content: "\f1bb";
}
.fa-spotify:before {
  content: "\f1bc";
}
.fa-deviantart:before {
  content: "\f1bd";
}
.fa-soundcloud:before {
  content: "\f1be";
}
.fa-database:before {
  content: "\f1c0";
}
.fa-file-pdf-o:before {
  content: "\f1c1";
}
.fa-file-word-o:before {
  content: "\f1c2";
}
.fa-file-excel-o:before {
  content: "\f1c3";
}
.fa-file-powerpoint-o:before {
  content: "\f1c4";
}
.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\f1c5";
}
.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\f1c6";
}
.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\f1c7";
}
.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\f1c8";
}
.fa-file-code-o:before {
  content: "\f1c9";
}
.fa-vine:before {
  content: "\f1ca";
}
.fa-codepen:before {
  content: "\f1cb";
}
.fa-jsfiddle:before {
  content: "\f1cc";
}
.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\f1cd";
}
.fa-circle-o-notch:before {
  content: "\f1ce";
}
.fa-ra:before,
.fa-rebel:before {
  content: "\f1d0";
}
.fa-ge:before,
.fa-empire:before {
  content: "\f1d1";
}
.fa-git-square:before {
  content: "\f1d2";
}
.fa-git:before {
  content: "\f1d3";
}
.fa-hacker-news:before {
  content: "\f1d4";
}
.fa-tencent-weibo:before {
  content: "\f1d5";
}
.fa-qq:before {
  content: "\f1d6";
}
.fa-wechat:before,
.fa-weixin:before {
  content: "\f1d7";
}
.fa-send:before,
.fa-paper-plane:before {
  content: "\f1d8";
}
.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\f1d9";
}
.fa-history:before {
  content: "\f1da";
}
.fa-circle-thin:before {
  content: "\f1db";
}
.fa-header:before {
  content: "\f1dc";
}
.fa-paragraph:before {
  content: "\f1dd";
}
.fa-sliders:before {
  content: "\f1de";
}
.fa-share-alt:before {
  content: "\f1e0";
}
.fa-share-alt-square:before {
  content: "\f1e1";
}
.fa-bomb:before {
  content: "\f1e2";
}
.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\f1e3";
}
.fa-tty:before {
  content: "\f1e4";
}
.fa-binoculars:before {
  content: "\f1e5";
}
.fa-plug:before {
  content: "\f1e6";
}
.fa-slideshare:before {
  content: "\f1e7";
}
.fa-twitch:before {
  content: "\f1e8";
}
.fa-yelp:before {
  content: "\f1e9";
}
.fa-newspaper-o:before {
  content: "\f1ea";
}
.fa-wifi:before {
  content: "\f1eb";
}
.fa-calculator:before {
  content: "\f1ec";
}
.fa-paypal:before {
  content: "\f1ed";
}
.fa-google-wallet:before {
  content: "\f1ee";
}
.fa-cc-visa:before {
  content: "\f1f0";
}
.fa-cc-mastercard:before {
  content: "\f1f1";
}
.fa-cc-discover:before {
  content: "\f1f2";
}
.fa-cc-amex:before {
  content: "\f1f3";
}
.fa-cc-paypal:before {
  content: "\f1f4";
}
.fa-cc-stripe:before {
  content: "\f1f5";
}
.fa-bell-slash:before {
  content: "\f1f6";
}
.fa-bell-slash-o:before {
  content: "\f1f7";
}
.fa-trash:before {
  content: "\f1f8";
}
.fa-copyright:before {
  content: "\f1f9";
}
.fa-at:before {
  content: "\f1fa";
}
.fa-eyedropper:before {
  content: "\f1fb";
}
.fa-paint-brush:before {
  content: "\f1fc";
}
.fa-birthday-cake:before {
  content: "\f1fd";
}
.fa-area-chart:before {
  content: "\f1fe";
}
.fa-pie-chart:before {
  content: "\f200";
}
.fa-line-chart:before {
  content: "\f201";
}
.fa-lastfm:before {
  content: "\f202";
}
.fa-lastfm-square:before {
  content: "\f203";
}
.fa-toggle-off:before {
  content: "\f204";
}
.fa-toggle-on:before {
  content: "\f205";
}
.fa-bicycle:before {
  content: "\f206";
}
.fa-bus:before {
  content: "\f207";
}
.fa-ioxhost:before {
  content: "\f208";
}
.fa-angellist:before {
  content: "\f209";
}
.fa-cc:before {
  content: "\f20a";
}
.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\f20b";
}
.fa-meanpath:before {
  content: "\f20c";
}
@font-face {
  font-family: "Simple-Line-Icons";
  src: url("fonts/Simple-Line-Icons.eot");
  src: url("fonts/Simple-Line-Icons.eot?#iefix") format("embedded-opentype"), url("fonts/Simple-Line-Icons.woff") format("woff"), url("fonts/Simple-Line-Icons.ttf") format("truetype"), url("fonts/Simple-Line-Icons.svg#Simple-Line-Icons") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Use the following CSS code if you want to use data attributes for inserting your icons */
[data-icon]:before {
  font-family: "Simple-Line-Icons";
  content: attr(data-icon);
  speak: none;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* Use the following CSS code if you want to have a class per icon */
/*
Instead of a list of all class selectors,
you can use the generic selector below, but it's slower:
[class*="icon-"] {
*/
.icon-user-female, .icon-user-follow, .icon-user-following, .icon-user-unfollow, .icon-trophy, .icon-screen-smartphone, .icon-screen-desktop, .icon-plane, .icon-notebook, .icon-moustache, .icon-mouse, .icon-magnet, .icon-energy, .icon-emoticon-smile, .icon-disc, .icon-cursor-move, .icon-crop, .icon-credit-card, .icon-chemistry, .icon-user, .icon-speedometer, .icon-social-youtube, .icon-social-twitter, .icon-social-tumblr, .icon-social-facebook, .icon-social-dropbox, .icon-social-dribbble, .icon-shield, .icon-screen-tablet, .icon-magic-wand, .icon-hourglass, .icon-graduation, .icon-ghost, .icon-game-controller, .icon-fire, .icon-eyeglasses, .icon-envelope-open, .icon-envelope-letter, .icon-bell, .icon-badge, .icon-anchor, .icon-wallet, .icon-vector, .icon-speech, .icon-puzzle, .icon-printer, .icon-present, .icon-playlist, .icon-pin, .icon-picture, .icon-map, .icon-layers, .icon-handbag, .icon-globe-alt, .icon-globe, .icon-frame, .icon-folder-alt, .icon-film, .icon-feed, .icon-earphones-alt, .icon-earphones, .icon-drop, .icon-drawer, .icon-docs, .icon-directions, .icon-direction, .icon-diamond, .icon-cup, .icon-compass, .icon-call-out, .icon-call-in, .icon-call-end, .icon-calculator, .icon-bubbles, .icon-briefcase, .icon-book-open, .icon-basket-loaded, .icon-basket, .icon-bag, .icon-action-undo, .icon-action-redo, .icon-wrench, .icon-umbrella, .icon-trash, .icon-tag, .icon-support, .icon-size-fullscreen, .icon-size-actual, .icon-shuffle, .icon-share-alt, .icon-share, .icon-rocket, .icon-question, .icon-pie-chart, .icon-pencil, .icon-note, .icon-music-tone-alt, .icon-music-tone, .icon-microphone, .icon-loop, .icon-logout, .icon-login, .icon-list, .icon-like, .icon-home, .icon-grid, .icon-graph, .icon-equalizer, .icon-dislike, .icon-cursor, .icon-control-start, .icon-control-rewind, .icon-control-play, .icon-control-pause, .icon-control-forward, .icon-control-end, .icon-calendar, .icon-bulb, .icon-bar-chart, .icon-arrow-up, .icon-arrow-right, .icon-arrow-left, .icon-arrow-down, .icon-ban, .icon-bubble, .icon-camcorder, .icon-camera, .icon-check, .icon-clock, .icon-close, .icon-cloud-download, .icon-cloud-upload, .icon-doc, .icon-envelope, .icon-eye, .icon-flag, .icon-folder, .icon-heart, .icon-info, .icon-key, .icon-link, .icon-lock, .icon-lock-open, .icon-magnifier, .icon-magnifier-add, .icon-magnifier-remove, .icon-paper-clip, .icon-paper-plane, .icon-plus, .icon-pointer, .icon-power, .icon-refresh, .icon-reload, .icon-settings, .icon-star, .icon-symbol-female, .icon-symbol-male, .icon-target, .icon-volume-1, .icon-volume-2, .icon-volume-off, .icon-users {
  font-family: "Simple-Line-Icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}
.icon-user-female:before {
  content: "\e000";
}
.icon-user-follow:before {
  content: "\e002";
}
.icon-user-following:before {
  content: "\e003";
}
.icon-user-unfollow:before {
  content: "\e004";
}
.icon-trophy:before {
  content: "\e006";
}
.icon-screen-smartphone:before {
  content: "\e010";
}
.icon-screen-desktop:before {
  content: "\e011";
}
.icon-plane:before {
  content: "\e012";
}
.icon-notebook:before {
  content: "\e013";
}
.icon-moustache:before {
  content: "\e014";
}
.icon-mouse:before {
  content: "\e015";
}
.icon-magnet:before {
  content: "\e016";
}
.icon-energy:before {
  content: "\e020";
}
.icon-emoticon-smile:before {
  content: "\e021";
}
.icon-disc:before {
  content: "\e022";
}
.icon-cursor-move:before {
  content: "\e023";
}
.icon-crop:before {
  content: "\e024";
}
.icon-credit-card:before {
  content: "\e025";
}
.icon-chemistry:before {
  content: "\e026";
}
.icon-user:before {
  content: "\e005";
}
.icon-speedometer:before {
  content: "\e007";
}
.icon-social-youtube:before {
  content: "\e008";
}
.icon-social-twitter:before {
  content: "\e009";
}
.icon-social-tumblr:before {
  content: "\e00a";
}
.icon-social-facebook:before {
  content: "\e00b";
}
.icon-social-dropbox:before {
  content: "\e00c";
}
.icon-social-dribbble:before {
  content: "\e00d";
}
.icon-shield:before {
  content: "\e00e";
}
.icon-screen-tablet:before {
  content: "\e00f";
}
.icon-magic-wand:before {
  content: "\e017";
}
.icon-hourglass:before {
  content: "\e018";
}
.icon-graduation:before {
  content: "\e019";
}
.icon-ghost:before {
  content: "\e01a";
}
.icon-game-controller:before {
  content: "\e01b";
}
.icon-fire:before {
  content: "\e01c";
}
.icon-eyeglasses:before {
  content: "\e01d";
}
.icon-envelope-open:before {
  content: "\e01e";
}
.icon-envelope-letter:before {
  content: "\e01f";
}
.icon-bell:before {
  content: "\e027";
}
.icon-badge:before {
  content: "\e028";
}
.icon-anchor:before {
  content: "\e029";
}
.icon-wallet:before {
  content: "\e02a";
}
.icon-vector:before {
  content: "\e02b";
}
.icon-speech:before {
  content: "\e02c";
}
.icon-puzzle:before {
  content: "\e02d";
}
.icon-printer:before {
  content: "\e02e";
}
.icon-present:before {
  content: "\e02f";
}
.icon-playlist:before {
  content: "\e030";
}
.icon-pin:before {
  content: "\e031";
}
.icon-picture:before {
  content: "\e032";
}
.icon-map:before {
  content: "\e033";
}
.icon-layers:before {
  content: "\e034";
}
.icon-handbag:before {
  content: "\e035";
}
.icon-globe-alt:before {
  content: "\e036";
}
.icon-globe:before {
  content: "\e037";
}
.icon-frame:before {
  content: "\e038";
}
.icon-folder-alt:before {
  content: "\e039";
}
.icon-film:before {
  content: "\e03a";
}
.icon-feed:before {
  content: "\e03b";
}
.icon-earphones-alt:before {
  content: "\e03c";
}
.icon-earphones:before {
  content: "\e03d";
}
.icon-drop:before {
  content: "\e03e";
}
.icon-drawer:before {
  content: "\e03f";
}
.icon-docs:before {
  content: "\e040";
}
.icon-directions:before {
  content: "\e041";
}
.icon-direction:before {
  content: "\e042";
}
.icon-diamond:before {
  content: "\e043";
}
.icon-cup:before {
  content: "\e044";
}
.icon-compass:before {
  content: "\e045";
}
.icon-call-out:before {
  content: "\e046";
}
.icon-call-in:before {
  content: "\e047";
}
.icon-call-end:before {
  content: "\e048";
}
.icon-calculator:before {
  content: "\e049";
}
.icon-bubbles:before {
  content: "\e04a";
}
.icon-briefcase:before {
  content: "\e04b";
}
.icon-book-open:before {
  content: "\e04c";
}
.icon-basket-loaded:before {
  content: "\e04d";
}
.icon-basket:before {
  content: "\e04e";
}
.icon-bag:before {
  content: "\e04f";
}
.icon-action-undo:before {
  content: "\e050";
}
.icon-action-redo:before {
  content: "\e051";
}
.icon-wrench:before {
  content: "\e052";
}
.icon-umbrella:before {
  content: "\e053";
}
.icon-trash:before {
  content: "\e054";
}
.icon-tag:before {
  content: "\e055";
}
.icon-support:before {
  content: "\e056";
}
.icon-size-fullscreen:before {
  content: "\e057";
}
.icon-size-actual:before {
  content: "\e058";
}
.icon-shuffle:before {
  content: "\e059";
}
.icon-share-alt:before {
  content: "\e05a";
}
.icon-share:before {
  content: "\e05b";
}
.icon-rocket:before {
  content: "\e05c";
}
.icon-question:before {
  content: "\e05d";
}
.icon-pie-chart:before {
  content: "\e05e";
}
.icon-pencil:before {
  content: "\e05f";
}
.icon-note:before {
  content: "\e060";
}
.icon-music-tone-alt:before {
  content: "\e061";
}
.icon-music-tone:before {
  content: "\e062";
}
.icon-microphone:before {
  content: "\e063";
}
.icon-loop:before {
  content: "\e064";
}
.icon-logout:before {
  content: "\e065";
}
.icon-login:before {
  content: "\e066";
}
.icon-list:before {
  content: "\e067";
}
.icon-like:before {
  content: "\e068";
}
.icon-home:before {
  content: "\e069";
}
.icon-grid:before {
  content: "\e06a";
}
.icon-graph:before {
  content: "\e06b";
}
.icon-equalizer:before {
  content: "\e06c";
}
.icon-dislike:before {
  content: "\e06d";
}
.icon-cursor:before {
  content: "\e06e";
}
.icon-control-start:before {
  content: "\e06f";
}
.icon-control-rewind:before {
  content: "\e070";
}
.icon-control-play:before {
  content: "\e071";
}
.icon-control-pause:before {
  content: "\e072";
}
.icon-control-forward:before {
  content: "\e073";
}
.icon-control-end:before {
  content: "\e074";
}
.icon-calendar:before {
  content: "\e075";
}
.icon-bulb:before {
  content: "\e076";
}
.icon-bar-chart:before {
  content: "\e077";
}
.icon-arrow-up:before {
  content: "\e078";
}
.icon-arrow-right:before {
  content: "\e079";
}
.icon-arrow-left:before {
  content: "\e07a";
}
.icon-arrow-down:before {
  content: "\e07b";
}
.icon-ban:before {
  content: "\e07c";
}
.icon-bubble:before {
  content: "\e07d";
}
.icon-camcorder:before {
  content: "\e07e";
}
.icon-camera:before {
  content: "\e07f";
}
.icon-check:before {
  content: "\e080";
}
.icon-clock:before {
  content: "\e081";
}
.icon-close:before {
  content: "\e082";
}
.icon-cloud-download:before {
  content: "\e083";
}
.icon-cloud-upload:before {
  content: "\e084";
}
.icon-doc:before {
  content: "\e085";
}
.icon-envelope:before {
  content: "\e086";
}
.icon-eye:before {
  content: "\e087";
}
.icon-flag:before {
  content: "\e088";
}
.icon-folder:before {
  content: "\e089";
}
.icon-heart:before {
  content: "\e08a";
}
.icon-info:before {
  content: "\e08b";
}
.icon-key:before {
  content: "\e08c";
}
.icon-link:before {
  content: "\e08d";
}
.icon-lock:before {
  content: "\e08e";
}
.icon-lock-open:before {
  content: "\e08f";
}
.icon-magnifier:before {
  content: "\e090";
}
.icon-magnifier-add:before {
  content: "\e091";
}
.icon-magnifier-remove:before {
  content: "\e092";
}
.icon-paper-clip:before {
  content: "\e093";
}
.icon-paper-plane:before {
  content: "\e094";
}
.icon-plus:before {
  content: "\e095";
}
.icon-pointer:before {
  content: "\e096";
}
.icon-power:before {
  content: "\e097";
}
.icon-refresh:before {
  content: "\e098";
}
.icon-reload:before {
  content: "\e099";
}
.icon-settings:before {
  content: "\e09a";
}
.icon-star:before {
  content: "\e09b";
}
.icon-symbol-female:before {
  content: "\e09c";
}
.icon-symbol-male:before {
  content: "\e09d";
}
.icon-target:before {
  content: "\e09e";
}
.icon-volume-1:before {
  content: "\e09f";
}
.icon-volume-2:before {
  content: "\e0a0";
}
.icon-volume-off:before {
  content: "\e0a1";
}
.icon-users:before {
  content: "\e001";
}
@font-face {
  font-family: "icomoon";
  src: url("fonts/icomoon.eot");
}
@font-face {
  font-family: "icomoon";
  src: url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg8SA34AAAC8AAAAYGNtYXAaVcyrAAABHAAAAExnYXNwAAAAEAAAAWgAAAAIZ2x5ZlbueywAAAFwAABtzGhlYWQE6UCSAABvPAAAADZoaGVhB8MECwAAb3QAAAAkaG10eFYPA/sAAG+YAAABZGxvY2FFLmBoAABw/AAAALRtYXhwAHAAxwAAcbAAAAAgbmFtZVcZpu4AAHHQAAABRXBvc3QAAwAAAABzGAAAACAAAwQAAZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADmVAPA/8AAQAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAACAAAAAwAAABQAAwABAAAAFAAEADgAAAAKAAgAAgACAAEAIOZU//3//wAAAAAAIOYA//3//wAB/+MaBAADAAEAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAv/2AKUD/QLaAA0AGwAAAScFJwUXNxclFzcXNycDJwUnBRc3FyUXNxc3JwKIQP8AQP7uFO5AAQBA9HcaiexA/wBA/u4U7kABAED0dxqJAhu/wMDNGrPAwMHEshLO/gS/wMDNGrPAwMHEshLOAAAAAAEAAP/ABAADwABFAAABIgYHDgEHLgEnLgEjIgYHDgEVFBYXHgEXNzQmNTQ2Nz4BMzIWFxYSFTM0Ejc+ATMyFhceARUUBhUXPgE3PgE1NCYnLgEjAzA/ZSYlMw4OMyUmZT8zThoaGxkQEBoCFksWFhVDLElsJCQjICMkJGxJLEMVFhZLFgIaEBAZGxoaTjMDwEpLS+OamuNLS0odHBxUNyZDGRoeARYBYkIwSRcYGHp8e/6L+voBdXt8ehgYF0kwQmIBFgEeGhlDJjdUHBwdAAAE//gAgAQIAwAALAA5AGYAcwAAEzEOARUUFhceATMyNjc+ATU0Jic+ATc+ATMyFhceARc3LgEnLgEjIgYHDgEHFxQGIyImNTQ2MzIWFSUiBgcOARUUFhcOAQcOASMiJicuAScHHgEXHgEzMjY3PgE3MT4BNTQmJy4BIxEiJjU0NjMyFhUUBiNGICYcGBhAJCRAGBgcTjoaQCcmXDVXrkVFWAEQA1tHR7Fbf602NjEB+lQ8PFRUPDxUAhAkQBgYHE46GkAnJlw1V65FRVgBEANbR0exW3+tNjYxASAmHBgYQCQ8VFQ8PFRUPAKcGEkrJEAYGBwcGBhAJD5gDQgNBQUGMR0eMQEcAjMeHjEeEhMfAow8VFQ8PFRUPBAcGBhAJD5gDQgNBQUGMR0eMQEcAjMeHjEeEhMfAhhJKyRAGBgc/sBUPDxUVDw8VAAAAAIAgP/AA4ADwABUAGQAAAEiBgcOAQcuATURNCYjIgYHLgEnLgEjIgYVMzQ2MzIWFx4BBxQGFREzETQ2NT4BMzIWFREUFhcOAR0BFgYHDgEjFTI2Nz4BJzU8ATUeATMyNjU0JiMVIiYnPgE3PgEzMhYVFAYjAwAePRobKQwXBDRMJzIOBAwIChkOUx0gFzkIDAUQCQEBIAEDJDhHGQgqAQEBEhMWRjA2UhsYFgEhWDc1S0s1OVYdCCoaGjQSKDg4KAFQDhAPMiMpSAEB0C6CKBwNGAkLC08BAy0FBhFCGgcMBf4wAc4CCwcdYYwE/jEDaDMJEQkEIzcUFxcgHBwYQyoDAQMBGhtLNTVL4B8eLDQNDgg4KCg4AAADAAAAkAQAA6AAQQBWAGkAAAEuAScuASMiBgcOAQcjIgYHDgEVFBYXHgE7ATUjIiY1NDY7ATc+ATc+ATMyFhceAR0BMzIWFRQGKwEVMzI2NTQmJwM0JicuAS8BBw4BBw4BFRQWMzI2NQciJjU0Njc+ATceARceARUUBiMDgAM5Ly9+SEBzLi5BDRMkQBgYHBsXGEAmcHA+UlU7LQMKOSsrazxDdSsrMhAxP0AwoKA+UkY68CgYGCkDCw0CLxsbLVpGQk6QLlIeFRQrDQwmEhIbOzUCX0R1KywxJiIiXjgfGhpGJyZAGBcbIFI+QV8NNVkgISQvKSlvQBBTLTBAIFI+NmIH/sEsYSkpOAMPDgM4KSphLD9RTkJwNjogSiIiORAQOSIjSSA1OwAAAAADAAAARwQAA6AACgATAFUAAAEDFzMHFxMnIzcnFwc3JyM3BxczJS4BJy4BIyIGBw4BByMiBgcOARUUFhceATsBNSMiJjU0NjsBNz4BNz4BMzIWFx4BHQEzMhYVFAYrARUzMjY1NCYnAkPgDU0dHeANTR0dLaYWEECmFhBAARADOS8vfkhAcy4uQQ0TJEAYGBwbFxhAJnBwPlJVOy0DCjkrK2s8Q3UrKzIQMT9AMJCQPlJGOgJZ/tAZvgsBMBm+C+nikBLikBLvRHUrLDEmIiJeOB8aGkYnJkAYFxsgUj5BXw01WSAhJC8pKW9AEFMtMEAgUj42YgcAAAkAAACDBAADoABBAEoAUwBcAGUAbgB3AIAAiQAAEzM1IyImNTQ2OwE3PgE3PgEzMhYXHgEdATMyFhUUBisBFTMyNjU0JicuAScuASMiBgcOAQcjIgYHDgEVFBYXHgEzFzczNSMnBxcHJQcjFTMXNyc3Bxc3JzUjFQcXEycHFxUzNTcnDwIXNxc3JzcTPwEnBycHFwcnBycHHwE3Jzc/ARc3LwEHFwewcHA+UlU7LQMKOSsrazxDdSsrMhAxP0AwkJA+UkY6AzkvL35IQHMuLkENEyRAGBgcGxcYQCatHGdnHBoaGgFgHGdnHBoaGr0nEikgKRInJxIpICkSkQkvBzBAFj8JtQkvBzBAFj8JdkAwBy8JHwk/QEAwBy8JHwk/ATAgUj5BXw01WSAhJC8pKW9AEFMtMEAgUj42YgdEdSssMSYiIl44HxoaRicmQBgXGykpICkSJydgKSApEicnyhoaHGdnHBoBYBoaHGdnHBobLwkfCT8WQDD+wy8JHwk/FkAwhj8JHwkvBzBAQD8JHwkvBzBAAAAAAAIAAACQBAADAAAgAD4AADchMjY1NCYnLgEnLgEjIgYHDgEHIyIGBw4BFRQWFx4BMxEzNz4BNz4BMzIWFx4BHQEzMhYVFAYjISImNTQ2M7ACwD5SRjoDOS8vfkhAcy4uQQ0TJEAYGBwbFxhAJi0DCjkrK2s8Q3UrKzIQMT9AMP1APlJVO5BSPjZiB0R1KywxJiIiXjgfGhpGJyZAGBcbAVANNVkgISQvKSlvQBBTLTBAUj5BXwAAAAAHAAD/2AQAA0AAJQA8AFoAXwBkAGkAbgAAAS4BJy4BIyIGBy4BIyIGBw4BFRQWFx4BFw4BFRQWMyEyNjU0JicFLgE1NDY3PgEzMhYXDgEHIyIGBy4BJwUhIiY1NDY7ATc+ATc+ATMyFhceAR0BMzIWFRQGIwE3FwcnMzcXByczNxcHJzM3FwcnA5AENy0teEMxWyYgWzMuUh4fIxIRChoPAwNaRgKQOUc9M/yuDw8eGhpGKCtNGyk7DBMvTBMLEgcDQv1wOUdLNS0DCTQnJmE1P28pKTAQKjY0LP0ygByAHKCAHIAcoIAcgByggByAHAH/PGonJy0aGScsIx8eUi4gPhsQHAsMGAxGWkc5NmEIBhc0HChGGhoeJCEfWDQ1KwkUDPlHOTxUDTFUHh4iKyUlYzgQUy0sNP7o4BDgEOAQ4BDgEOAQ4BDgEAAAAAf////YBAADQAAvAE0AagBvAHQAeQB+AAATHgEXDgEVFBYzITI2NTQmJy4BJy4BIyIGBy4BIyIGDwEXHgEVFAYjIiYvARceARclFTMyFhUUBiMhIiY1NDY7ATc+ATc+ATMyFhceARUlMjY1NCYnNjIzMhYXDgEHIyIGBy4BJy4BJx4BMwEHJzcXMwcnNxczByc3FzMHJzcXIwoaDwMDWkYCkDlHPTMENy0teEMxWyYgWzMKFQsXDQoKSzULFQoXAQIREANNECo2NCz9cDlHSzUtAwk0JyZhNT9vKSkw/NBCXgcHBAcDK00bKTsMEy9MEwsSBwoOBAgPBwEOgByAHKCAHIAcoIAcgByggByAHAHnEBwLDBgMRlpHOTZhCDxqJyctGhknLAICBBQQIxI1SwQDCBceORkJEFMtLDRHOTxUDTFUHh4iKyUlYzhPXkIRIA8BJCEfWDQ1KwkUDBAlFAIB/nngEOAQ4BDgEOAQ4BDgEOAQAAoAAP/YBAADwAAiADkAVwBcAGEAZgBrAHAAdQB6AAABLgEnLgEjIgYHLgEjIgYHDgEVFBYXDgEVFBYzITI2NTQmJyU0Njc+ATMyFhcOAQcOAQcjIgYHLgE1ASEiJjU0NjsBNz4BNz4BMzIWFx4BHQEzMhYVFAYjATMVIzUBMxUjNQUXByc3ExcHJzcXNxcHJzM3FwcnMzcXBycDkAQ3LS14QxgtFh1DJS5SHh8jCwkfJVpGApA5Rz0z/RAeGhpGKBkwFiM9GBkiCRMRIQ8IBwLg/XA5R0s1LQMJNCcmYTU/bykpMBAqNjQs/IBgYAFQICD++2AWYBbnHIAcgCCAHIAcoIAcgByggByAHAH/PGonJy0GBhUXIx8eUi4aJREYSy1GWkc5NmEIYShGGhoeDQwPKxscQSUIBw8dE/6gRzk8VA0xVB4eIislJWM4EFMtLDQBcCAgAVBgYDVgFmAW/T0Q4BDg4OAQ4BDgEOAQ4BDgEAAAAAIAoP/AA2ADyQAaADMAAAUyNjc+ATU0JicuAS8BBw4BBw4BFRQWFx4BMxMeARceARUUBgcOASMiJicuATU0Njc+ATcCAEmAMDA3Zj4/awUMDQVsPj9mODAwgEgBFmk3NlMyLCt1QkJ0LCszUzY3ahdAOTIxhUte4GFihwYPDwaHYmHgXkyEMTI5A9ccjFlZwVBFeS0tNDQtLXlFUMFZWYwcAAAADQAA/8AEAAPAABgAIgAoAC4ANQA8AEMASgBRAFgAXwBmAHQAAAUyNjc+ATU0JicuASMiBgcOARUUFhceATMBNDY1IRUhNCY1AS4BJzMVESM+ATcVHQEhPgE3Mx0BIT4BNyEdASE+ATchHQEhPgE3IR0BIS4BJyEdASEuASchHQEhLgEnIR0BIy4BJyEBFAYHDgEHER4BFx4BFQIAarpGRVFRRUa6amq6RkVRUUVGumr+IAEBz/4xAQHQKU4lnJwlTin+yhQrGN/+egsYDgFV/kwFDgkBmP40AwYEAb/+QQQGAwHM/mgIDwUBtP6rDhgLAYbfGCsUATYB8Ek/PqpgYKo+P0lAUUVGumpqukZFUVFFRrpqarpGRVECAAgQCEAIEAj+IAIQDiADoA4QAiAgQBIgDmBAESAPYEARIA9gQBAgEMBAECAQYEAPIBFgQA8gEWBADiASAWBhrEFBTQQDwARNQUGsYQAABQAAACAEAANAAEIAWQBeAGMAaAAAEw4BFRQWMzUiJjU0NjsBNz4BNz4BMzIWFx4BHQEzMhYVFAYjFTI2NTQmJy4BJy4BIyIGBy4BIyIGBw4BFRQWFx4BFxMyFhcOAQcjIgYHLgEnLgE1NDY3PgEzEyEVITUVIRUhNRUhFSE1VgMDWkY5R0s1LQMJNCcmYTU/bykpMBAqNjQsOUc9MwQ3LS14QzFbJiBbMy5SHh8jEhEKGg+KK00bKTsMEy9MEwsSBw8PHhoaRigwAlD9sAJQ/bACUP2wAbAMGAxGWiBHOTxUDTFUHh4iKyUlYzgQUy0sNCBHOTZhCDxqJyctGhknLCMfHlIuID4bEBwLAXAkIR9YNDUrCRQMFzQcKEYaGh794CAgYCAgYCAgAAAABf//ACAEAANAAEwAaQBuAHMAeAAAAS4BJy4BIyIGBy4BIyIGDwEXHgEVFAYjIiYvARceARceARcOARUUFjM1IiY1NDY7ATc+ATc+ATMyFhceAR0BMzIWFRQGIxUyNjU0JiclIyIGBy4BJy4BJx4BMzI2NTQmJzYyMzIWFw4BBxMhFSE1FSEVITUVIRUhNQOQBDctLXhDMVsmIFszChULFw0KCks1CxUKFwECERAKGg8DA1pGOUdLNS0DCTQnJmE1P28pKTAQKjY0LDlHPTP9cxMvTBMLEgcKDgQIDwdCXgcHBAcDK00bKTsMDQJQ/bACUP2wAlD9sAH/PGonJy0aGScsAgIEFBAjEjVLBAMIFx45GRAcCwwYDEZaIEc5PFQNMVQeHiIrJSVjOBBTLSw0IEc5NmEIMTUrCRQMECUUAgFeQhEgDwEkIR9YNP7QICBgICBgICAAAAAIAAAAIAQAA8AAPwBWAFsAYABlAGoAbwB0AAABLgEnLgEjIgYHLgEjIgYHDgEVFBYXDgEVFBYzNSImNTQ2OwE3PgE3PgEzMhYXHgEdATMyFhUUBiMVMjY1NCYnJSMiBgcuATU0Njc+ATMyFhcOAQcOAQclMxUjNQEzFSM1BRcHJzcTIRUhNRUhFSE1FSEVITUDkAQ3LS14QxgtFh1DJS5SHh8jCwkfJVpGOUdLNS0DCTQnJmE1P28pKTAQKjY0LDlHPTP9cxMRIQ8IBx4aGkYoGTAWIz0YGSIJ/v1gYAFQICD++2AWYBbFAlD9sAJQ/bACUP2wAf88aicnLQYGFRcjHx5SLholERhLLUZaIEc5PFQNMVQeHiIrJSVjOBBTLSw0IEc5NmEIMQgHDx0TKEYaGh4NDA8rGxxBJUAgIAFQYGA1YBZgFv11ICBgICBgICAAAAAABAAAADAEAAOgAD0AQgBHAEwAAAEuAScuASMiBgcOAQcjIgYHDgEVFBYXHgEzNSImNTQ2OwE3PgE3PgEzMhYXHgEdATMyFhUUBiMVMjY1NCYnASEVITUVIRUhNRUhFSE1A4ADOS8vfkhAcy4uQQ0TJEAYGBwbFxhAJj5SVTstAwo5KytrPEN1KysyEDE/QDA+UkY6/VACgP2AAoD9gAKA/YACX0R1KywxJiIiXjgfGhpGJyZAGBcbIFI+QV8NNVkgISQvKSlvQBBTLTBAIFI+NmIH/vEgIIAgIIAgIAAAAAACAAD/wAQAA8AAGAAxAAABIgYHDgEVFBYXHgEzMjY3PgE1NCYnLgEjESImJy4BNTQ2Nz4BMzIWFx4BFRQGBw4BIwIAarpGRVFRRUa6amq6RkVRUUVGumpjr0FBTExBQa9jY69BQUxMQUGvYwPAUUVGumpqukZFUVFFRrpqarpGRVH8IExBQa9jY69BQUxMQUGvY2OvQUFMAAL//AAwBAQDUAA2AEUAAAEnDgEHDgEjIiYnLgEnBzIWFx4BFxEOAQcOASMXPgE3PgEzMhYXHgEXNyImJy4BJxE+ATc+ATMBLgEjIgYHER4BMzI2NxEEBAgBWEhHtl5etkdIWAEIATMsLHVDQ3UsLDMBCAFYSEe2Xl62R0hYAQgBMywsdUNDdSwsMwH+nCdQKSlQJydQKSlQJwMwIAEUCwwUFAwLFAEgDAgIEwf9jAcTCAgMIAEUCwwUFAwLFAEgDAgIEwcCdAcTCAgM/VkDBAQDAm4DBAQD/ZIAAAALAAD/2QQAA0AAJQA8AFoAXwBkAGkAbgBzAHgAfQCCAAABLgEnLgEjIgYHLgEjIgYHDgEVFBYXHgEXDgEVFBYzITI2NTQmJwUuATU0Njc+ATMyFhcOAQcjIgYHLgEnBSEiJjU0NjsBNz4BNz4BMzIWFx4BHQEzMhYVFAYjBRcHJzczFwcnNzMXByc3MxcHJzcFJzcXBzMnNxcHMyc3FwczJzcXBwOQBDctLXhDMVsmIFszLlIeHyMSEQoaDwMDWkYCkDlHPTP8rg8PHhoaRigrTRspOwwTL0wTCxIHA0L9cDlHSzUtAwk0JyZhNT9vKSkwECo2NCz9sR5AHkCgHkAeQKAeQB5AoB5AHkD93RwQHBCgHBAcEKAcEBwQoBwQHBAB/zxqJyctGhknLCMfHlIuID4bEBwLDBgMRlpHOTZhCAYXNBwoRhoaHiQhH1g0NSsJFAz5Rzk8VA0xVB4eIislJWM4EFMtLDQ5DZANkA2QDZANkA2QDZANkO4OIA4gDiAOIA4gDiAOIA4gAAAL////2QQAA0AALwBMAGoAbwB0AHkAfgCDAIgAjQCSAAABLgEnLgEjIgYHLgEjIgYPARceARUUBiMiJi8BFx4BFx4BFw4BFRQWMyEyNjU0JicFLgEnHgEzMjY1NCYnNjIzMhYXDgEHIyIGBy4BJwUhIiY1NDY7ATc+ATc+ATMyFhceAR0BMzIWFRQGIwUXByc3MxcHJzczFwcnNzMXByc3BSc3FwczJzcXBzMnNxcHMyc3FwcDkAQ3LS14QzFbJiBbMwoVCxcNCgpLNQsVChcBAhEQChoPAwNaRgKQOUc9M/yuCg4ECA8HQl4HBwQHAytNGyk7DBMvTBMLEgcDQv1wOUdLNS0DCTQnJmE1P28pKTAQKjY0LP2xHkAeQKAeQB5AoB5AHkCgHkAeQP3dHBAcEKAcEBwQoBwQHBCgHBAcEAH/PGonJy0aGScsAgIEFBAjEjVLBAMIFx45GRAcCwwYDEZaRzk2YQgGECUUAgFeQhEgDwEkIR9YNDUrCRQM+Uc5PFQNMVQeHiIrJSVjOBBTLSw0OQ2QDZANkA2QDZANkA2QDZDuDiAOIA4gDiAOIA4gDiAOIAAAAA4AAP/ZBAADwAAiADkAVwBcAGEAZgBrAHAAdQB6AH8AhACJAI4AAAEuAScuASMiBgcuASMiBgcOARUUFhcOARUUFjMhMjY1NCYnJTQ2Nz4BMzIWFw4BBw4BByMiBgcuATUBISImNTQ2OwE3PgE3PgEzMhYXHgEdATMyFhUUBiMBMxUjNQEzFSM1BRcHJzcTFwcnNzMXByc3MxcHJzczFwcnNwUnNxcHMyc3FwczJzcXBzMnNxcHA5AENy0teEMYLRYdQyUuUh4fIwsJHyVaRgKQOUc9M/0QHhoaRigZMBYjPRgZIgkTESEPCAcC4P1wOUdLNS0DCTQnJmE1P28pKTAQKjY0LPyAYGABUCAg/vtgFmAW5h5AHkCgHkAeQKAeQB5AoB5AHkD93RwQHBCgHBAcEKAcEBwQoBwQHBAB/zxqJyctBgYVFyMfHlIuGiURGEstRlpHOTZhCGEoRhoaHg0MDysbHEElCAcPHRP+oEc5PFQNMVQeHiIrJSVjOBBTLSw0AXAgIAFQYGA1YBZgFv08DZANkA2QDZANkA2QDZANkO4OIA4gDiAOIA4gDiAOIA4gAAAMAAD/6QQAA6AAIAA+AEMASABNAFIAVwBcAGEAZgBrAHAAAAEuAScuASMiBgcOAQcjIgYHDgEVFBYXHgEzITI2NTQmJwMhIiY1NDY7ATc+ATc+ATMyFhceAR0BMzIWFRQGIwE3FwcnIzcXBychNxcHJzM3FwcnNxcHJzcBNxcHJyM3FwcnITcXByczNxcHJzM3FwcnA4ADOS8vfkhAcy4uQQ0TJEAYGBwbFxhAJgLAPlJGOhD9QD5SVTstAwo5KytrPEN1KysyEDE/QDD9sVAeUB6gUB5QHgFAUB5QHqBQHlAe8B5QHlD9oRAcEBygEBwQHAFAEBwQHKAQHBAcoBAcEBwCX0R1KywxJiIiXjgfGhpGJyZAGBcbUj42Ygf+8VI+QV8NNVkgISQvKSlvQBBTLTBA/vewDrAOsA6wDrAOsA6wDrAOsA6wDrD/ACAOIA4gDiAOIA4gDiAOIA4gDiAOAAAAAA0AAP/ABAADwAAYACIAKAAuADUAPABDAEoAUQBYAF8AZgB0AAABIgYHDgEVFBYXHgEzMjY3PgE1NCYnLgEjARQGFSE1IRQWFQEeARcjNREzDgEHNT0BIQ4BByM9ASEOAQchPQEhDgEHIT0BIQ4BByE9ASEeARchPQEhHgEXIT0BIR4BFyE9ATMeARchATQ2Nz4BNxEuAScuATUCAGq6RkVRUUVGumpqukZFUVFFRrpqAeAB/jEBzwH+MClOJZycJU4pATYUKxjfAYYLGA7+qwG0BQ8I/mgBzAMGBP5BAb8EBgP+NAGYCA8F/kwBVQ4YC/563xgrFP7K/hBJPz6qYGCqPj9JA8BRRUa6amq6RkVRUUVGumpqukZFUf4ACBAIQAgQCAHgAhAOIPxgDhACICBAEiAOYEARIA9gQBEgD2BAECAQwEAQIBBgQA8gEWBADyARYEAOIBL+oGGsQUFNBPxABE1BQaxhAAIAkP/AA18DtgBKAFcAAAUiJjU0Njc+ATU+AScuAScuAQcOAQcOARceARcOARUUFjMyNjU0Jic3LgEnJjY3PgE3NhYXHgEXFgYHDgEHDgEVFBYzMjY3Jw4BIwEUBiMiJjU0NjMyFhUC0DVLNB8fNR8PDw5GNDN0OjldHhsSCAcuJUFdXkJCXjUqAS8+DA0NGxtTMzRnLi8+DA0NGwM2IB80XkIuTRQcET0l/uBLNTVLSzU1SyBLNS6NQ0NgATV1NzdeHx4QDw9GMy5kMDFYIwFdQkJeXkIxThMCHFQxMWgwLT8NDg8aHFQxMWkvBGRERJExQl4wKQ4hJgFANUtLNTVLSzUAAgAAAEAEAANAAC4AMwAAATQmJy4BIyIGBw4BFRQWFyEVITUjLgE1NDY3PgEzMhYXHgEVFAYHIxUhNSE+ATUBIRUhNQMSKyUmYzk5YyYlKygl/sUBcAUsMSYhIVgyMlghISYxLAUBcP7FJSj87gQA/AACLjlkJSUrKyUlZDk2YiYgICNjODJYISEmJiEhWDI4YyMgICZiNv4yICAAAgED/8cDLQO5AAoAEwAAAQMXAScjEycBFzMTAxczARMnIwEB22ocAaANzT0d/pANy4o1EMH+pVkPwwE4AWD+dA0CQBkBjgv9wBkCB/6rEv4gAUwUAecAAA8AAP/ZBAADQAAlADwAWgBfAGQAaQBuAHMAeAB9AIIAhwCMAJEAlgAAAS4BJy4BIyIGBy4BIyIGBw4BFRQWFx4BFw4BFRQWMyEyNjU0JicFLgE1NDY3PgEzMhYXDgEHIyIGBy4BJwUhIiY1NDY7ATc+ATc+ATMyFhceAR0BMzIWFRQGIwUXByc3MxcHJzcXNxcHJzM3FwcnJSc3FwczJzcXBzMnNxcHPwEXBycFNxcHJzcXByc3MxcHJzczFwcnNwOQBDctLXhDMVsmIFszLlIeHyMSEQoaDwMDWkYCkDlHPTP8rg8PHhoaRigrTRspOwwTL0wTCxIHA0L9cDlHSzUtAwk0JyZhNT9vKSkwECo2NCz9YhwQHBCgHBAcEJAQHBAcoBAcEBz+fBwQHBCgHBAcEKAcEBwQhBAcEBz9oBAcEBywHBAcEKAcEBwQoBwQHBAB/zxqJyctGhknLCMfHlIuID4bEBwLDBgMRlpHOTZhCAYXNBwoRhoaHiQhH1g0NSsJFAz5Rzk8VA0xVB4eIislJWM4EFMtLDT5DiAOIA4gDiAgIA4gDiAOIA6yDiAOIA4gDiAOIA4gDiAOIA5gIA4gDiAOIA4gDiAOIA4gDiAAD////9kEAANAAC8ATABqAG8AdAB5AH4AgwCIAI0AkgCXAJwAoQCmAAABLgEnLgEjIgYHLgEjIgYPARceARUUBiMiJi8BFx4BFx4BFw4BFRQWMyEyNjU0JicFLgEnHgEzMjY1NCYnNjIzMhYXDgEHIyIGBy4BJwUhIiY1NDY7ATc+ATc+ATMyFhceAR0BMzIWFRQGIwUXByc3MxcHJzcXNxcHJzM3FwcnJSc3FwczJzcXBzMnNxcHPwEXBycFFwcnNzMXByc3MxcHJzczFwcnNwOQBDctLXhDMVsmIFszChULFw0KCks1CxUKFwECERAKGg8DA1pGApA5Rz0z/K4KDgQIDwdCXgcHBAcDK00bKTsMEy9MEwsSBwNC/XA5R0s1LQMJNCcmYTU/bykpMBAqNjQs/WIcEBwQoBwQHBCQEBwQHKAQHBAc/nwcEBwQoBwQHBCgHBAcEIQQHBAc/bAcEBwQoBwQHBCgHBAcEKAcEBwQAf88aicnLRoZJywCAgQUECMSNUsEAwgXHjkZEBwLDBgMRlpHOTZhCAYQJRQCAV5CESAPASQhH1g0NSsJFAz5Rzk8VA0xVB4eIislJWM4EFMtLDT5DiAOIA4gDiAgIA4gDiAOIA6yDiAOIA4gDiAOIA4gDiAOIA5ADiAOIA4gDiAOIA4gDiAOIAAAABIAAP/ZBAADwAAiADkAVwBcAGEAZgBrAHAAdQB6AH8AhACJAI4AkwCYAJ0AogAAAS4BJy4BIyIGBy4BIyIGBw4BFRQWFw4BFRQWMyEyNjU0JiclNDY3PgEzMhYXDgEHDgEHIyIGBy4BNQEhIiY1NDY7ATc+ATc+ATMyFhceAR0BMzIWFRQGIwEzFSM1ATMVIzUFFwcnNxM3FwcnMzcXByczNxcHJzM3FwcnJSc3FwczJzcXBzMnNxcHPwEXBycFFwcnNxcnNxcHNxcHJzczFwcnNwOQBDctLXhDGC0WHUMlLlIeHyMLCR8lWkYCkDlHPTP9EB4aGkYoGTAWIz0YGSIJExEhDwgHAuD9cDlHSzUtAwk0JyZhNT9vKSkwECo2NCz8gGBgAVAgIP77YBZgFocQHBAcoBAcEBygEBwQHKAQHBAc/nwcEBwQoBwQHBCgHBAcEIQQHBAc/bAcEBwQrBwQHBCUHBAcEKAcEBwQAf88aicnLQYGFRcjHx5SLholERhLLUZaRzk2YQhhKEYaGh4NDA8rGxxBJQgHDx0T/qBHOTxUDTFUHh4iKyUlYzgQUy0sNAFwICABUGBgNWAWYBb8XCAOIA4gDiAOIA4gDiAOIA6yDiAOIA4gDiAOIA4gDiAOIA5ADiAOIC4OIA4gLg4gDiAOIA4gABEAAP/pBAADoAAgAD4AQwBIAE0AUgBXAFwAYQBmAGsAcAB1AHoAfwCEAIkAAAEuAScuASMiBgcOAQcjIgYHDgEVFBYXHgEzITI2NTQmJwMhIiY1NDY7ATc+ATc+ATMyFhceAR0BMzIWFRQGIwEnNxcHIyc3FwchJzcXBzMnNxcHMyc3FwclNxcHJycXByc3BTcXByczNxcHJzM3FwcnJRcHJzcjFwcnNyEXByc3MxcHJzczFwcnNwOAAzkvL35IQHMuLkENEyRAGBgcGxcYQCYCwD5SRjoQ/UA+UlU7LQMKOSsrazxDdSsrMhAxP0Aw/Z4cEBwQoBwQHBABQBwQHBCgHBAcEKAcEBwQ/nQQHBAckBwQHBABMBAcEBygEBwQHKAQHBAc/eAcEBwQoBwQHBABQBwQHBCgHBAcEKAcEBwQAl9EdSssMSYiIl44HxoaRicmQBgXG1I+NmIH/vFSPkFfDTVZICEkLykpb0AQUy0wQP6ZDiAOIA4gDiAOIA4gDiAOIA4gDiB+IA4gDiAOIA4gICAOIA4gDiAOIA4gDqAOIA4gDiAOIA4gDiAOIA4gDiAOIAACAC3/wAPQA8AAJgBIAAAFMjY3PgE1NCYnLgEjIgYPARceARceARUUBgcOASsBJxceARceATMTNCYnLgEnPgEzMhYXHgEVFAYHDgEjIiYnLgEnPgE3PgE1AdBqukZFUVFFRrpqMmwoISA0Vh4eIT82N5FTCygXJFozM285QB4dHFAyI1AmY69BQUxMQUGvYzFgLC1RIVaWODhAQFFFRrpqarpGRVESDw0QHE4uLmc1U5E3Nj8BGytDGBcZAmA1aC8vUh8JC0xBQa9jY69BQUwUEhM1IgRHOjuZVwAAAwAA//AEAAKwABcAKwAyAAA3ITUjPgE1NCYnLgEjIgYHDgEVFBYXIxU3NDY3PgEzMhYXHgEVFAYHIS4BNRcHFzM3JwcABADiEBIyLCt1QkJ1KywyERHi4C0nKGg8PGgoJy0UE/4OExS7FnAWcBZlwCAhSSZCdSssMjIsK3VCJkkhILA8aCgnLS0nKGg8JkkhIUkm9RlychhkAAAAAwAA//AEAAKwACcARABLAAAlIz4BNTQmJy4BIyoBIwcXHgEVFAYHDgEjIiYvAQcUBhUUFhcjFSE1JTA0MR4BMzI2Nz4BNTQmJx4BFx4BFRQGByEuATUXBxczNycHBADiEBIyLCt1QgEBARgKCAkfHBtJKRkwFhYCARER4gQA/OAVLBcwVCAfJQYFOGEkJCoUE/4OExS7FnAWcBZl4CFJJkJ1KywyARYTKRUpSRscHwwMDBkGDgcmSSEgIJABCAklHyBUMBIkEQQwJidlOSZJISFJJvUZcnIYZAAAAAMAAP/1BAACsAAXACsAMgAAJSM+ATU0JicuASMiBgcOARUUFhcjFSE1JTQ2Nz4BMzIWFx4BFRQGByEuATUTFzcXNycjBADiEBIyLCt1QkJ1KywyERHiBAD84C0nKGg8PGgoJy0UE/4OExSlFmVlFnAW4CFJJkJ1KywyMiwrdUImSSEgIJA8aCgnLS0nKGg8JkkhIUkm/p4YZGUZcgAAAAADAAD/9QQAArAAJwBEAEsAAAE0JicuASMqASMHFx4BFRQGBw4BIyImLwEHFAYVFBYXIxUhNSM+ATUhMDQxHgEzMjY3PgE1NCYnHgEXHgEVFAYHIS4BNQE3JyMHFzcDQDIsK3VCAQEBGAoICR8cG0kpGTAWFgIBERHiBADiEBL9oBUsFzBUIB8lBgU4YSQkKhQT/g4TFAGFFnAWcBZlAXBCdSssMgEWEykVKUkbHB8MDAwZBg4HJkkhICAhSSYBCAklHyBUMBIkEQQwJidlOSZJISFJJv6FGXJyGGQADQAA/8AEAAPAABgAIgAoAC4ANQA8AEMASgBRAFgAXwBmAHQAAAUyNjc+ATU0JicuASMiBgcOARUUFhceATMBNDY1IRUhNCY1AS4BJzMVESM+ATcVHQEhPgE3Mx0BIT4BNyEdASE+ATchHQEhPgE3IR0BIS4BJyEdASEuASchHQEhLgEnIR0BIy4BJyEBFAYHDgEHER4BFx4BFQIAarpGRVFRRUa6amq6RkVRUUVGumr+IAEBz/4xAQHQKU4lnJwlTin+yhQrGN/+egsYDgFV/kwFDgkBmP40AwYEAb/+QQQGAwHM/mgIDwUBtP6rDhgLAYbfGCsUATYB8Ek/PqpgYKo+P0lAUUVGumpqukZFUVFFRrpqarpGRVECAAgQCEAIEAj+IAIQDiADoA4QAiAgQBIgDmBAESAPYEARIA9gQBAgEMBAECAQYEAPIBFgQA8gEWBADiASAWBhrEFBTQQDwARNQUGsYQAADAAA/8AEAAPAABgAJwAwADkAQgBLAFQAXQBmAG8AdwB/AAABIgYHDgEVFBYXHgEzMjY3PgE1NCYnLgEjARQGFSE0JjU0NjUhFBYVASEOAQchLgEnJy4BJyEOAQchJy4BJyEOAQchJy4BJyEOAQchJz4BNyEeARchNz4BNyEeARchNz4BNyEeARchNz4BNyEeARchJSE+ATMyFhcBIQ4BIyImJwIAarpGRVFRRUa6amq6RkVRUUVGumoB4AH8QgEBA74B/NoCjBQrGP4iGCsUHw4YCwMsCxgO/TZDCA8FA4gFDgn8sCcEBgMDuAMGBPxiDQMGBAOeBAYD/EgYBQ4JA1AIDwX8eC4LGA4Cyg4YC/zUUBQrGAHeFywU/XQB8v6oKFctLVco/qgBWChXLS1XKAPAUUVGumpqukZFUVFFRrpqarpGRVH+AAgQCAgQCAgQCAgQCP6gEiAODiASIA8gEREgD2APIBERIA9gECAQECAQwBAgEBAgEGARIA8PIBFgESAPDyARYBIgDg4gEmAPEREP/IAPEREPAAAAAAEAcP+4A5ADyAA8AAABJw4BBw4BByEuAScuAScHHgEXHgEXIxUzDgEHDgEHFz4BNz4BNyEeARceARc3LgEnLgEnMzUjPgE3PgE3A24cAjIdHTED/qADMR0dMgIcATAcHTEDwMADMR0cMAEcAjIdHTEDAWADMR0dMgIcATAcHTEDwMADMR0cMAEDuBADWEZGs15es0ZGWAMQAVVERK9bIFuvRERVARADWEZGsl9fskZGWAMQAVVERK9bIFuvRERVAQAAAAAHAAD/4AQAA0AAJQBDAFoAXwBkAGkAbgAAEw4BFRQWMyEyNjU0JicuAScuASMiBgcuASMiBgcOARUUFhceARclFTMyFhUUBiMhIiY1NDY7ATc+ATc+ATMyFhceARUBMhYXDgEHIyIGBy4BJy4BNTQ2Nz4BMxMzFSM1OwEVIzU7ARUjNTsBFSM1VgMDWkYCkDlHPTMENy0teEMxWyYgWzMuUh4fIxIRChoPAxoQKjY0LP1wOUdLNS0DCTQnJmE1P28pKTD9cCtNGyk7DBMvTBMLEgcPDx4aGkYoUCAgoCAgoCAgoCAgAbAMGAxGWkc5NmEIPGonJy0aGScsIx8eUi4gPhsQHAtAEFMtLDRHOTxUDTFUHh4iKyUlYzgBMCQhH1g0NSsJFAwXNBwoRhoaHv2g4ODg4ODg4OAAAAAAB////+AEAANAAC8ATABqAG8AdAB5AH4AAAEuAScuASMiBgcuASMiBg8BFx4BFRQGIyImLwEXHgEXHgEXDgEVFBYzITI2NTQmJwUuASceATMyNjU0Jic2MjMyFhcOAQcjIgYHLgEnBSEiJjU0NjsBNz4BNz4BMzIWFx4BHQEzMhYVFAYjBTMVIzU7ARUjNTsBFSM1OwEVIzUDkAQ3LS14QzFbJiBbMwoVCxcNCgpLNQsVChcBAhEQChoPAwNaRgKQOUc9M/yuCg4ECA8HQl4HBwQHAytNGyk7DBMvTBMLEgcDQv1wOUdLNS0DCTQnJmE1P28pKTAQKjY0LP2wICCgICCgICCgICAB/zxqJyctGhknLAICBBQQIxI1SwQDCBceORkQHAsMGAxGWkc5NmEIBhAlFAIBXkIRIA8BJCEfWDQ1KwkUDPlHOTxUDTFUHh4iKyUlYzgQUy0sNEDg4ODg4ODg4AAKAAD/4AQAA8AAIgA5AFcAXABhAGYAawBwAHUAegAAAS4BJy4BIyIGBy4BIyIGBw4BFRQWFw4BFRQWMyEyNjU0JiclNDY3PgEzMhYXDgEHDgEHIyIGBy4BNQEhIiY1NDY7ATc+ATc+ATMyFhceAR0BMzIWFRQGIwEzFSM1ATMVIzUFFwcnNxMzFSM1OwEVIzU7ARUjNTsBFSM1A5AENy0teEMYLRYdQyUuUh4fIwsJHyVaRgKQOUc9M/0QHhoaRigZMBYjPRgZIgkTESEPCAcC4P1wOUdLNS0DCTQnJmE1P28pKTAQKjY0LPyAYGABUCAg/vtgFmAW5SAgoCAgoCAgoCAgAf88aicnLQYGFRcjHx5SLholERhLLUZaRzk2YQhhKEYaGh4NDA8rGxxBJQgHDx0T/qBHOTxUDTFUHh4iKyUlYzgQUy0sNAFwICABUGBgNWAWYBb9NeDg4ODg4ODgAAAAAAcAAAAABAADoAAgAD4AQwBIAE0AUgBXAAATITI2NTQmJy4BJy4BIyIGBw4BByMiBgcOARUUFhceATMRMzc+ATc+ATMyFhceAR0BMzIWFRQGIyEiJjU0NjMTMxUjNSMzFSM1ITMVIzU7ARUjNTsBFSM1sALAPlJGOgM5Ly9+SEBzLi5BDRMkQBgYHBsXGEAmLQMKOSsrazxDdSsrMhAxP0Aw/UA+UlU7oCAgoCAgAUAgIKAgIKAgIAEwUj42YgdEdSssMSYiIl44HxoaRicmQBgXGwFQDTVZICEkLykpb0AQUy0wQFI+QV/+YODg4ODg4ODg4OAAAAAAAf/1/7UEAAPAABAAAAEhCQEHCQEXCQE3CQERMxEhAkABif1f/vMWAQz+5BYBHQENFv70AqEg/kADoP1fAQwW/vP+4xYBHP70FgENAqH+dwHAAAAAAQBg/8UDoAPAAEUAACUXIyImNRE0JicuASMiBgcuASMiBgcuASMVMhYVETMRNDY3PgEzMhYXHgEVETMRNDY3PgEzMhYXHgEVERQWOwEHFzc1JwcDNTQpOhYNEBE3KzU9Dg88NTY9Dg88NFMdIAQLCy0pKS0LCwQgBAsKLikpLgoLBC5CKTQZUlIZZTVKBgKAGUIeHik+KCg+QSkkNiCMBP2AAoACMx0eMDAeHTMC/YACgAIzHR4wMB4dMwL9gB1TNRZQFlAWAAATAAD/4AQAA0AAJQBDAFoAXwBkAGkAbgBzAHgAfQCCAIcAjACRAJYAmwCgAKUAqgAAEw4BFRQWMyEyNjU0JicuAScuASMiBgcuASMiBgcOARUUFhceARclFTMyFhUUBiMhIiY1NDY7ATc+ATc+ATMyFhceARUBMhYXDgEHIyIGBy4BJy4BNTQ2Nz4BMxMzFSM1FTMVIzU3FwcnNwcXByc3FwcnNxcnNxcHJxczFSM1IzMVIzUlMxUjNRUzFSM1NxcHJzcHFwcnNxcHJzcXJzcXBycXMxUjNSMzFSM1VgMDWkYCkDlHPTMENy0teEMxWyYgWzMuUh4fIxIRChoPAxoQKjY0LP1wOUdLNS0DCTQnJmE1P28pKTD9cCtNGyk7DBMvTBMLEgcPDx4aGkYokCAgICBFFiAWIGAWIBYgdhYgFiCWFiAWIGtAQIBAQAGQICAgIEUWIBYgYBYgFiB2FiAWIJYWIBYga0BAgEBAAbAMGAxGWkc5NmEIPGonJy0aGScsIx8eUi4gPhsQHAtAEFMtLDRHOTxUDTFUHh4iKyUlYzgBMCQhH1g0NSsJFAwXNBwoRhoaHv2gQECAQEBrFiAWIGAWIBYgIBYgFiBqFiAWICUgICAgMEBAgEBAaxYgFiBgFiAWICAWIBYgahYgFiAlICAgIAAAAAAT////4AQAA0AALwBMAGoAbwB0AHkAfgCDAIgAjQCSAJcAnAChAKYAqwCwALUAugAAAS4BJy4BIyIGBy4BIyIGDwEXHgEVFAYjIiYvARceARceARcOARUUFjMhMjY1NCYnBS4BJx4BMzI2NTQmJzYyMzIWFw4BByMiBgcuAScFISImNTQ2OwE3PgE3PgEzMhYXHgEdATMyFhUUBiMFMxUjNRUzFSM1Nyc3FwcHJzcXBzcHJzcXJzcXBycXMxUjNSMzFSM1JTMVIzUVMxUjNTcnNxcHByc3Fwc3Byc3Fyc3FwcnFzMVIzUjMxUjNQOQBDctLXhDMVsmIFszChULFw0KCks1CxUKFwECERAKGg8DA1pGApA5Rz0z/K4KDgQIDwdCXgcHBAcDK00bKTsMEy9MEwsSBwNC/XA5R0s1LQMJNCcmYTU/bykpMBAqNjQs/fAgICAgOxYgFiBgFiAWIIAWIBYglhYgFiBrQECAQEABkCAgICA7FiAWIGAWIBYggBYgFiCWFiAWIGtAQIBAQAH/PGonJy0aGScsAgIEFBAjEjVLBAMIFx45GRAcCwwYDEZaRzk2YQgGECUUAgFeQhEgDwEkIR9YNDUrCRQM+Uc5PFQNMVQeHiIrJSVjOBBTLSw0QEBAgEBANRYgFiBgFiAWIBYWIBYgahYgFiAlICAgIDBAQIBAQDUWIBYgYBYgFiAWFiAWIGoWIBYgJSAgICAAFgAA/+AEAAPAACIAOQBXAFwAYQBmAGsAcAB1AHoAfwCEAIkAjgCTAJgAnQCiAKcArACxALYAAAEuAScuASMiBgcuASMiBgcOARUUFhcOARUUFjMhMjY1NCYnJTQ2Nz4BMzIWFw4BBw4BByMiBgcuATUBISImNTQ2OwE3PgE3PgEzMhYXHgEdATMyFhUUBiMBMxUjNQEzFSM1BRcHJzcBMxUjNRUzFSM1Nyc3FwcHJzcXBzcHJzcXJzcXBycXMxUjNSMzFSM1JTMVIzUVMxUjNTcnNxcHByc3Fwc3Byc3Fyc3FwcnFzMVIzUjMxUjNQOQBDctLXhDGC0WHUMlLlIeHyMLCR8lWkYCkDlHPTP9EB4aGkYoGTAWIz0YGSIJExEhDwgHAuD9cDlHSzUtAwk0JyZhNT9vKSkwECo2NCz8gGBgAVAgIP77YBZgFgElICAgIDsWIBYgYBYgFiCAFiAWIJYWIBYga0BAgEBAAZAgICAgOxYgFiBgFiAWIIAWIBYglhYgFiBrQECAQEAB/zxqJyctBgYVFyMfHlIuGiURGEstRlpHOTZhCGEoRhoaHg0MDysbHEElCAcPHRP+oEc5PFQNMVQeHiIrJSVjOBBTLSw0AXAgIAFQYGA1YBZgFv01QECAQEA1FiAWIGAWIBYgFhYgFiBqFiAWICUgICAgMEBAgEBANRYgFiBgFiAWIBYWIBYgahYgFiAlICAgIAAAABIAAP/gBAADoAAgAD4AQwBIAE0AUgBXAFwAYQBmAGsAcAB1AHoAfwCEAIkAjgAAEyEyNjU0JicuAScuASMiBgcOAQcjIgYHDgEVFBYXHgEzETM3PgE3PgEzMhYXHgEdATMyFhUUBiMhIiY1NDYzEzMVIzUVMxUjNTcXByc3BxcHJzcXByc3Fyc3FwcnFzMVIzUjMxUjNSUzFSM1FTMVIzU3FwcnNwcXByc3FwcnNxcnNxcHJxczFSM1IzMVIzWwAsA+UkY6AzkvL35IQHMuLkENEyRAGBgcGxcYQCYtAwo5KytrPEN1KysyEDE/QDD9QD5SVTugICAgIFUWMBYwcBYwFjCGFjAWMLYWMBYwe1BQkFBQAaAgICAgVRYwFjBwFjAWMIYWMBYwthYwFjB7UFCQUFABMFI+NmIHRHUrLDEmIiJeOB8aGkYnJkAYFxsBUA01WSAhJC8pKW9AEFMtMEBSPkFf/pBQUJBQUHsWMBYwcBYwFjAwFjAWMIoWMBYwNSAgICAQUFCQUFB7FjAWMHAWMBYwMBYwFjCKFjAWMDUgICAgAAIABf/FA/sDuwBYAGUAABM3Mx4BFwcjFTMVMzU3HgEXFQcXNxc3JzU+ATcXFTM1MzUjJz4BNzMXNyc3JwcjLgEnNzM1IzUjFQcuASc1NycHJwcXFQ4BByc1IxUjFTMXDgEHIycHFwcXJTIWFRQGIyImNTQ2Mxt82gIQDaeZkCCmECUVexZ1dRZ7FSUQpiCQmacNEALafBZ0dBZ82gIQDaeZkCCmECUVexZ1dRZ7FSUQpiCQmacNEALafBZ0dBYB5S5CQi4uQkIuATV7FSUQpiCQmacNEALafBZ0dBZ82gIQDaeZkCCmECUVexZ1dRZ7FSUQpiCQmacNEALafBZ0dBZ82gIQDaeZkCCmECUVexZ1dRb7Qi4uQkIuLkIAAv/x/7QEDwPhAAoAFQAAAQMhBQMJAQMlIQMbASUFEyUhGwEhBQIAi/58ATyMAV8BX4wBPP58i610/t/+33T+/AE8dXUBPP78A+H+b/b+WgEI/vgBpvYBkf2F/qbY2AFaygFP/rHKAAAGAAD/2AQAA0AAJQBDAFoAYgBqAHIAABMOARUUFjMhMjY1NCYnLgEnLgEjIgYHLgEjIgYHDgEVFBYXHgEXJRUzMhYVFAYjISImNTQ2OwE3PgE3PgEzMhYXHgEVATIWFw4BByMiBgcuAScuATU0Njc+ATMBNyM3JwczBxc3IzcnBzMHBTcjNycHMwdWAwNaRgKQOUc9MwQ3LS14QzFbJiBbMy5SHh8jEhEKGg8DGhAqNjQs/XA5R0s1LQMJNCcmYTU/bykpMP1wK00bKTsMEy9MEwsSBw8PHhoaRigBDk5UJx45TDK8TlQnHjlMMv7cTlQnHjlMMgGwDBgMRlpHOTZhCDxqJyctGhknLCMfHlIuID4bEBwLQBBTLSw0Rzk8VA0xVB4eIislJWM4ATAkIR9YNDUrCRQMFzQcKEYaGh78uIhaDIZYEIhaDIZYEIhaDIZYAAAABv///9gEAANAAC8ATABqAHIAegCCAAABLgEnLgEjIgYHLgEjIgYPARceARUUBiMiJi8BFx4BFx4BFw4BFRQWMyEyNjU0JicFLgEnHgEzMjY1NCYnNjIzMhYXDgEHIyIGBy4BJwUhIiY1NDY7ATc+ATc+ATMyFhceAR0BMzIWFRQGIwUHMwcXNyM3NwczBxc3IzclBzMHFzcjNwOQBDctLXhDMVsmIFszChULFw0KCks1CxUKFwECERAKGg8DA1pGApA5Rz0z/K4KDgQIDwdCXgcHBAcDK00bKTsMEy9MEwsSBwNC/XA5R0s1LQMJNCcmYTU/bykpMBAqNjQs/nE5TDIcTlQngjlMMhxOVCf+ojlMMhxOVCcB/zxqJyctGhknLAICBBQQIxI1SwQDCBceORkQHAsMGAxGWkc5NmEIBhAlFAIBXkIRIA8BJCEfWDQ1KwkUDPlHOTxUDTFUHh4iKyUlYzgQUy0sNDqGWBCIWgyGWBCIWgyGWBCIWgAJAAD/2AQAA8AAIgA5AFcAXABhAGYAbgB2AH4AAAEuAScuASMiBgcuASMiBgcOARUUFhcOARUUFjMhMjY1NCYnJTQ2Nz4BMzIWFw4BBw4BByMiBgcuATUBISImNTQ2OwE3PgE3PgEzMhYXHgEdATMyFhUUBiMBMxUjNQEzFSM1BRcHJzcBBzMHFzcjNzcHMwcXNyM3JQczBxc3IzcDkAQ3LS14QxgtFh1DJS5SHh8jCwkfJVpGApA5Rz0z/RAeGhpGKBkwFiM9GBkiCRMRIQ8IBwLg/XA5R0s1LQMJNCcmYTU/bykpMBAqNjQs/IBgYAFQICD++2AWYBYBpjlMMhxOVCeCOUwyHE5UJ/6iOUwyHE5UJwH/PGonJy0GBhUXIx8eUi4aJREYSy1GWkc5NmEIYShGGhoeDQwPKxscQSUIBw8dE/6gRzk8VA0xVB4eIislJWM4EFMtLDQBcCAgAVBgYDVgFmAW/TuGWBCIWgyGWBCIWgyGWBCIWgAAAAcAAP/4BAADoAAgAD4AQwBIAE0AUgBXAAABLgEnLgEjIgYHDgEHIyIGBw4BFRQWFx4BMyEyNjU0JicDISImNTQ2OwE3PgE3PgEzMhYXHgEdATMyFhUUBiMBNxcHJyM3FwcnITcXByczNxcHJzM3FwcnA4ADOS8vfkhAcy4uQQ0TJEAYGBwbFxhAJgLAPlJGOhD9QD5SVTstAwo5KytrPEN1KysyEDE/QDD9coAcgByggByAHAFAgByAHKCAHIAcoIAcgBwCX0R1KywxJiIiXjgfGhpGJyZAGBcbUj42Ygf+8VI+QV8NNVkgISQvKSlvQBBTLTBA/rjgEOAQ4BDgEOAQ4BDgEOAQ4BDgEAAFAAD/+AQAA6AAIAA+AEYATgBWAAABLgEnLgEjIgYHDgEHIyIGBw4BFRQWFx4BMyEyNjU0JicDISImNTQ2OwE3PgE3PgEzMhYXHgEdATMyFhUUBiMFBzMHFzcjNzcHMwcXNyM3JQczBxc3IzcDgAM5Ly9+SEBzLi5BDRMkQBgYHBsXGEAmAsA+UkY6EP1APlJVOy0DCjkrK2s8Q3UrKzIQMT9AMP6BOTwyHE5EJ4I5PDIcTkQn/qI5PDIcTkQnAl9EdSssMSYiIl44HxoaRicmQBgXG1I+NmIH/vFSPkFfDTVZICEkLykpb0AQUy0wQGqGWBCIWgyGWBCIWgyGWBCIWgAAAAoAAP/ABAADwAAYADEANgA7AEAARQBKAE8AVABZAAAlMjY3PgE1NCYnLgEjIgYHDgEVFBYXHgEzETIWFx4BFRQGBw4BIyImJy4BNTQ2Nz4BMwMzFSM1ETMVIzUBMxUjNSEzFSM1ARcHJzcBFwcnNwUnNxcHARcHJzcCADhjJSUrKyUlYzg4YyUlKyslJWM4MlchICYmICFXMjJXISAmJiAhVzIQICAgIAFwoKD8oKCgA0UWUBZQ/bAWUBZQAlBQFlAW/XZQFlAWsCslJWM4OGMlJSsrJSVjODhjJSUrAgAmICFXMjJXISAmJiAhVzIyVyEgJgEQoKD8oKCgAXAgICAgAUsWUBZQ/bAWUBZQZlAWUBYCtlAWUBYAAAAACAAA//AEAAOAAAQACQAOABMAGAAfADcASwAAEzMVIzUhMxUjNQEzFSM1BRcHJzcFNxcHJwMnBycHFzMBNCYnLgEjIgYHDgEVFBYXIxUhNSM+ATUhNDY3PgEzMhYXHgEVFAYHIS4BNQCgoANgoKD+kCAg/nuAFoAWAqqAFoAWmhZlZRZwFgE1MiwrdUJCdSssMhER4gQA4hAS/aAtJyhoPDxoKCctFBP+DhMUAYAgICAgAgCwsKWAFoAWgIAWgBb+BxhkZRlyAYBCdSssMjIsK3VCJkkhICAhSSY8aCgnLS0nKGg8JkkhIUkmAAAIAAD/9QQAA4AABAAJAA4AEwAYAB8ANwBLAAATMxUjNSEzFSM1ATMVIzUFFwcnNwU3FwcnAzcnIwcXNwE0JicuASMiBgcOARUUFhcjFSE1Iz4BNSE0Njc+ATMyFhceARUUBgchLgE1AKCgA2CgoP6QICD+e4AWgBYCqoAWgBawFnAWcBZlAUAyLCt1QkJ1KywyERHiBADiEBL9oC0nKGg8PGgoJy0UE/4OExQBgCAgICACALCwpYAWgBaAgBaAFv2aGXJyGGQBFkJ1KywyMiwrdUImSSEgICFJJjxoKCctLScoaDwmSSEhSSYAAAIAAP/gBAADoABKAGMAAAEUBgcOASMiJicuATUuAScuASMVMhYXHgEVFBYXHgEXDgEHDgEVFBYXHgEzMjY3PgE1NCYnLgEnPgE3PgE1MDY3PgEzNSIGBw4BBxMUBgcOASMiJicuATU0Njc+ATMyFhceARUDAAkYGGhfXmgYGQkCHB0eYEdNWRcXDAocF0YuKkcaGR0wKSlvPz9vKSkwHRkaRyouRhccCgsWHmBBR2AeHRwCECslJWM4OGMlJSsrJSVjODhjJSUrAtABLRsaLSsbGy4CG0cgISwgNSEgOAIBOCEcJQoROCUlWDA/bykpMDApKW8/MFglJTgRCiUcITcBNyEsLSAtICBIG/5AOGMlJSsrJSVjODhjJSUrKyUlYzgAAAAGAAD/2AQAA0AAJQA8AFoAYgBnAGwAAAEuAScuASMiBgcuASMiBgcOARUUFhceARcOARUUFjMhMjY1NCYnBS4BNTQ2Nz4BMzIWFw4BByMiBgcuAScFISImNTQ2OwE3PgE3PgEzMhYXHgEdATMyFhUUBiMFBzMHFzcjNwU3FwcnITcXBycDkAQ3LS14QzFbJiBbMy5SHh8jEhEKGg8DA1pGApA5Rz0z/K4PDx4aGkYoK00bKTsMEy9MEwsSBwNC/XA5R0s1LQMJNCcmYTU/bykpMBAqNjQs/nE5PDIcTkQn/tOAHIAcAYCAHIAcAf88aicnLRoZJywjHx5SLiA+GxAcCwwYDEZaRzk2YQgGFzQcKEYaGh4kIR9YNDUrCRQM+Uc5PFQNMVQeHiIrJSVjOBBTLSw0OoZYEIha0uAQ4BDgEOAQAAAG////2AQAA0AALwBMAGoAcgB3AHwAAAEuAScuASMiBgcuASMiBg8BFx4BFRQGIyImLwEXHgEXHgEXDgEVFBYzITI2NTQmJwUuASceATMyNjU0Jic2MjMyFhcOAQcjIgYHLgEnBSEiJjU0NjsBNz4BNz4BMzIWFx4BHQEzMhYVFAYjBQczBxc3IzcFNxcHJyE3FwcnA5AENy0teEMxWyYgWzMKFQsXDQoKSzULFQoXAQIREAoaDwMDWkYCkDlHPTP8rgoOBAgPB0JeBwcEBwMrTRspOwwTL0wTCxIHA0L9cDlHSzUtAwk0JyZhNT9vKSkwECo2NCz+cTk8MhxORCf+04AcgBwBgIAcgBwB/zxqJyctGhknLAICBBQQIxI1SwQDCBceORkQHAsMGAxGWkc5NmEIBhAlFAIBXkIRIA8BJCEfWDQ1KwkUDPlHOTxUDTFUHh4iKyUlYzgQUy0sNDqGWBCIWtLgEOAQ4BDgEAAAAAkAAP/YBAADwAAiADkAVwBcAGEAZgBuAHMAeAAAAS4BJy4BIyIGBy4BIyIGBw4BFRQWFw4BFRQWMyEyNjU0JiclNDY3PgEzMhYXDgEHDgEHIyIGBy4BNQEhIiY1NDY7ATc+ATc+ATMyFhceAR0BMzIWFRQGIwEzFSM1ATMVIzUHJzcXBwEHMwcXNyM3BTcXBychNxcHJwOQBDctLXhDGC0WHUMlLlIeHyMLCR8lWkYCkDlHPTP9EB4aGkYoGTAWIz0YGSIJExEhDwgHAuD9cDlHSzUtAwk0JyZhNT9vKSkwECo2NCz8gGBgAVAgILtgFmAWAVw5PDIcTkQn/tOAHIAcAYCAHIAcAf88aicnLQYGFRcjHx5SLholERhLLUZaRzk2YQhhKEYaGh4NDA8rGxxBJQgHDx0T/qBHOTxUDTFUHh4iKyUlYzgQUy0sNAFwICABUGBgq2AWYBb9sYZYEIha0uAQ4BDgEOAQAAAFAAD/+AQAA6AAIAA+AEYASwBQAAABLgEnLgEjIgYHDgEHIyIGBw4BFRQWFx4BMyEyNjU0JicDISImNTQ2OwE3PgE3PgEzMhYXHgEdATMyFhUUBiMFBzMHFzcjNxc3FwcnITcXBycDgAM5Ly9+SEBzLi5BDRMkQBgYHBsXGEAmAsA+UkY6EP1APlJVOy0DCjkrK2s8Q3UrKzIQMT9AMP6BOTwyHE5EJ1OAHIAc/nCAHIAcAl9EdSssMSYiIl44HxoaRicmQBgXG1I+NmIH/vFSPkFfDTVZICEkLykpb0AQUy0wQGqGWBCIWtLgEOAQ4BDgEAAAAwAAAJAEAALwACUAQwBaAAATDgEVFBYzITI2NTQmJy4BJy4BIyIGBy4BIyIGBw4BFRQWFx4BFyUVMzIWFRQGIyEiJjU0NjsBNz4BNz4BMzIWFx4BFQEyFhcOAQcjIgYHLgEnLgE1NDY3PgEzVgMDWkYCkDlHPTMENy0teEMxWyYgWzMuUh4fIxIRChoPAxoQKjY0LP1wOUdLNS0DCTQnJmE1P28pKTD9cCtNGyk7DBMvTBMLEgcPDx4aGkYoAWAMGAxGWkc5NmEIPGonJy0aGScsIx8eUi4gPhsQHAtAEFMtLDRHOTxUDTFUHh4iKyUlYzgBMCQhH1g0NSsJFAwXNBwoRhoaHgAAA///AJAEAALwAC8ATABqAAABLgEnLgEjIgYHLgEjIgYPARceARUUBiMiJi8BFx4BFx4BFw4BFRQWMyEyNjU0JicFLgEnHgEzMjY1NCYnNjIzMhYXDgEHIyIGBy4BJwUhIiY1NDY7ATc+ATc+ATMyFhceAR0BMzIWFRQGIwOQBDctLXhDMVsmIFszChULFw0KCks1CxUKFwECERAKGg8DA1pGApA5Rz0z/K4KDgQIDwdCXgcHBAcDK00bKTsMEy9MEwsSBwNC/XA5R0s1LQMJNCcmYTU/bykpMBAqNjQsAa88aicnLRoZJywCAgQUECMSNUsEAwgXHjkZEBwLDBgMRlpHOTZhCAYQJRQCAV5CESAPASQhH1g0NSsJFAz5Rzk8VA0xVB4eIislJWM4EFMtLDQAAAAGAAAAkAQAA3AAIgA5AFcAXABhAGYAAAEuAScuASMiBgcuASMiBgcOARUUFhcOARUUFjMhMjY1NCYnJTQ2Nz4BMzIWFw4BBw4BByMiBgcuATUBISImNTQ2OwE3PgE3PgEzMhYXHgEdATMyFhUUBiMBMxUjNQEzFSM1BRcHJzcDkAQ3LS14QxgtFh1DJS5SHh8jCwkfJVpGApA5Rz0z/RAeGhpGKBkwFiM9GBkiCRMRIQ8IBwLg/XA5R0s1LQMJNCcmYTU/bykpMBAqNjQs/IBgYAFQICD++2AWYBYBrzxqJyctBgYVFyMfHlIuGiURGEstRlpHOTZhCGEoRhoaHg0MDysbHEElCAcPHRP+oEc5PFQNMVQeHiIrJSVjOBBTLSw0AXAgIAFQYGA1YBZgFgAAAgCA/7QD0APAAF8AdgAAATQmJy4BIyIGBzU0JicuASMiBgcuASMiBgcuASMVMhYVETMRNDY3PgEzMhYXHgEVETMRNDY3PgEzMhYXHgEVERwBFQ4BIxUyNjc+ATceARceARc3NCYnLgEnPgE3PgE1IzQ2Nz4BMzIWFx4BFTAGBw4BBw4BBxED0AQLCy0pHScMDRARNys1PQ4PPDU2PQ4PPDRTHSAECwstKSktCwsEIAQKCy0qKS4KCwQucEIjQBwdMhYHHxEQGQIUGRAQHARDTRMTCcAHCQggGBggCAkHAwYGGBQUMx4CQAlOKitEJBoOGUIeHik+KCg+QSkkNiCMBP2AAoACMx0eMDAeHTMC/YACgAEyHh0yMB4dMwL9gAEDAiUlIAoJCRoQJDsVFRgBGAEYFRU7IzugSEhmAhRGIiIyMiIiRRUvJSZfMjBQHwGqAAAAAA0AAP/ABAADwAAmADUAPgBGAE8AWABhAGoAcwB8AIUAjQCsAAABJyIGIy4BIyIGBw4BFRQWFx4BMzI2NzIWMzc+ATc+ATU0JicuAScBFAYVITQmNTQ2NSEUFhUBLgEnIQ4BByMXDgEHLgEnMycuASchDgEHIScuASchDgEHIScuASchDgEHISc+ATchHgEXITc+ATchHgEXITc+ATchHgEXITc+ATczHgEXITc+ATceARcjAyImJy4BNTQ2Nz4BMzIWFw4BBw4BFRQWFx4BFw4BIwKNAQEDASBEI2q6RkVRUUVGumojRCABAwEBUIgyMTg4MTKIUAFTAf1iAQECngH+QhcqEwF4FCsYzYoJEgoJEglJ+wwXCgISCxgO/kw+CA0FAmsFDgn9yyMEBgICmAMGBP2BDAIGBAJ/BAYD/WgVBQ0IAjUJDgb9lCsKFwwBtA4YC/3uShMqF80YKxT+iJUJEgkKEglJY2OvQUFMTEFBr2MUJhNEbygnKysnKG9EEyYUA6wDAQkJUUVGumpqukZFUQkJAQMXXkBBnlhYnkFAXhf+FAgQCAgQCAgQCAgQCP5gDiASEiAOIAMHAgIHA4APIBERIA9gDyARESAPYBAgEBAgEMAQIBAQIBBgESAPDyARYBEgDw8gEWASIA4OIBJgAwcCAgcD/GBMQUGvY2OvQUFMAwMdXz0+klFQkz49Xx0DAwANAAD/wAQAA8AAJgA1AD4ARwBQAFkAYgBrAHQAfQCIAKEArAAAASIGByImIwcOAQcOARUUFhceAR8BMjYzHgEzMjY3PgE1NCYnLgEjARQGFSE0NjU0JjUhFBYVATMOAQcjPgE3Nz4BNzMOAQcjNz4BNzMOAQcjNz4BNyEOAQcjNy4BJzMeARchJy4BJzMeARcjJy4BJzMeARcjJy4BJzMeARcjJzIWFyMuASc+ATMBNDY3PgE3HgEXHgEVFAYHDgEHLgEnLgE1AT4BNzMOASMiJicCACNEIAEDAQFQiDIxODgxMohQAQEDASBEI2q6RkVRUUVGumoB4AH/AAEBAQAB/n7oFCsY1xMjEBoLFQn1CxgO7TgHDQT8BQ8I+CEEBQIBAAMGBP4LAgUE/gQGA/8AFAQNB/gIDwX8JwkVC+0OGAv1QxAjE9cYKxToXi1XKMQNGw0TJhT+IDQuLn5LSXkrKy8vKyt5SUt+Li40AZMNGw3EKFctFCYTA8AJCQEDF15AQZ5YWJ5BQF4XAwEJCVFFRrpqarpGRVH+AAgQCAgQCAgQCAgQCP6gEiAODiASIA8gEREgD2APIBERIA9gECAQECAQwBAgEBAgEGARIA8PIBFgESAPDyARYBIgDg4gEoARDwcNBgMD/iBSkz08WRUVWD08lFJSlDw9WBUVWTw9k1L+JgYNBw8RAwMAAA0AAP/ABAADwAAmADUAPgBGAE8AWABhAGkAcgB7AIQAjQCsAAAFFzI2Mx4BMzI2Nz4BNTQmJy4BIyIGByImIwcOAQcOARUUFhceARcBNDY1IRQWFRQGFSE0JjUBHgEXIT4BNzMnPgE3HgEXIxceARchPgE3IRceARchPgE3IQMjLgEnIQ4BBwcOAQcuASczNyEuASchDgEHNyEuASchDgEHEx4BFyE+ATchFw4BByEuASchAzIWFx4BFRQGBw4BIyImJz4BNz4BNTQmJy4BJz4BMwFzAQEDASBEI2q6RkVRUUVGumojRCABAwEBUIgyMTg4MTKIUP6tAQKeAQH9YgEBvhcqE/6IFCsYzYoJEgoJEglJ+w0WCv3uCxgOAbQ+CA0F/ZUFDgkCNa/NGCsUAXgTKhdBCRIJChIJSbL+TA4YCwISChYNPv3LCA8FAmsFDQgjBAYC/WgDBgQCfwwCBgT9gQQGAwKYvGOvQUFMTEFBr2MUJhNEbygnKysnKG9EEyYULAMBCQlRRUa6amq6RkVRCQkBAxdeQEGeWFieQUBeFwHsCBAICBAICBAICBAIAaAOIBISIA4gAwcCAgcDgA8gEREgD2APIBERIA/9gA4gEhIgDiADBwICBwOADyARESAPYA8gEREgDwFgECAQECAQwBAgEBAgEAIgTEFBr2Njr0FBTAMDHV89PpNQUJM+PV8dAwMAAAAADQAA/8AEAAPAACYAMQA6AEMATABbAGQAbQB2AH8AiACTAKwAAAEnIgYjLgEjIgYHDgEVFBYXHgEzMjY3MhYzNz4BNz4BNTQmJy4BJwcOAQcjPgEzMhYXATMeARcjLgEnJy4BJzMeARcjJy4BJzMeARcjJzQ2NSEUBhUUFhUhNCY1BR4BFyMuASchNSE+ATczDgEHNyM+ATczDgEHNyM+ATczDgEHNyM+ATczDgEHEyImJzMeARcOASM3LgEnLgE1NDY3PgE3HgEXHgEVFAYHDgEHAo0BAQMBIEQjarpGRVFRRUa6aiNEIAEDAQFQiDIxODgxMohQQA0bDcQoVy0UJhP+begQIxPXGCsUHw4YC/UJFQvtQwgPBfwFDAf4OAEBAAEB/wABAQQCBQT+BAYDAQD/AAMGBP4EBQIU/AUOCfgHDQQn9QsYDu0LFQlD6BQrGNcTIxBeLVcoxA0bDRMmFIdJeSsrLy8rK3lJS34uLjQ0Li5+SwOsAwEJCVFFRrpqarpGRVEJCQEDF15AQZ5YWJ5BQF4XEgYNBw8RAwP8xhIgDg4gEiAPIBERIA9gDyARESAP4AgQCAgQCAgQCAgQCEAQIBAQIBCAECAQECAQYBEgDw8gEWARIA8PIBFgEiAODiAS/MARDwcNBgMDFBVYPTyUUlKUPD1YFRVZPD2TUlKUPDxZFQAAAAYAAP/ABAADwAAYADEAPgBLAGYAfwAAASIGBw4BFRQWFx4BMzI2Nz4BNTQmJy4BIxEiJicuATU0Njc+ATMyFhceARUUBgcOASMDFBYzMjY1NCYjIgYVMxQGIyImNTQ2MzIWFSEUFhceATMyNjc+AT8BJy4BJy4BIyIGBw4BFRciJicuATU0Njc+ATMyFhceARcOAQcOASMCAGq6RkVRUUVGumpqukZFUVFFRrpqY69BQUxMQUGvY2OvQUFMTEFBr2NQLyEhLy8hIS+AHBQUHBwUFBz/ACEcHEwrKYdBQWIFFBQFYkFBhykrTBwcIdAkQBgYHBwYGEAkHWA2NWcjI2c1NmAdA8BRRUa6amq6RkVRUUVGumpqukZFUfwgTEFBr2Njr0FBTExBQa9jY69BQUwB4CEvLyEhLy8hFBwcFBQcHBQrTBwcITsjJD4DDQ0DPiQjOyEcHEwrsBwYGEAkJEAYGBwmHBs9FhY9GxwmAAAABAAA/8AEAANAAEIAWQBwAIcAAAEuAScuASMiBgcuASMiBgcOARUUFhceARcOARUUFjM1IiY1NDY7ATc+ATc+ATMyFhceAR0BMzIWFRQGIxUyNjU0JiclIyIGBy4BJy4BNTQ2Nz4BMzIWFw4BBwMhMhYVFAYjIiY1IxQWMzI2NTQmIyEVJSEVITI2NTQmIyIGFTM0NjMyFhUUBiMDkAQ3LS14QzFbJiBbMy5SHh8jEhEKGg8DA1pGOUdLNS0DCTQnJmE1P28pKTAQKjY0LDlHPTP9cxMvTBMLEgcPDx4aGkYoK00bKTsM4wHgGiYmGhomIDgoKDg4KP4gArD9cAKQKDg4KCg4ICYaGiYmGgH/PGonJy0aGScsIx8eUi4gPhsQHAsMGAxGWiBHOTxUDTFUHh4iKyUlYzgQUy0sNCBHOTZhCDE1KwkUDBc0HChGGhoeJCEfWDT+MCYaGiYmGig4OCgoOCBgIDgoKDg4KBomJhoaJgAABP///8AEAANAAEwAaQCAAJcAAAEuAScuASMiBgcuASMiBg8BFx4BFRQGIyImLwEXHgEXHgEXDgEVFBYzNSImNTQ2OwE3PgE3PgEzMhYXHgEdATMyFhUUBiMVMjY1NCYnJSMiBgcuAScuASceATMyNjU0Jic2MjMyFhcOAQcDITIWFRQGIyImNSMUFjMyNjU0JiMhFSUhFSEyNjU0JiMiBhUzNDYzMhYVFAYjA5AENy0teEMxWyYgWzMKFQsXDQoKSzULFQoXAQIREAoaDwMDWkY5R0s1LQMJNCcmYTU/bykpMBAqNjQsOUc9M/1zEy9MEwsSBwoOBAgPB0JeBwcEBwMrTRspOwzjAeAaJiYaGiYgOCgoODgo/iACsP1wApAoODgoKDggJhoaJiYaAf88aicnLRoZJywCAgQUECMSNUsEAwgXHjkZEBwLDBgMRlogRzk8VA0xVB4eIislJWM4EFMtLDQgRzk2YQgxNSsJFAwQJRQCAV5CESAPASQhH1g0/jAmGhomJhooODgoKDggYCA4KCg4OCgaJiYaGiYAAAAGAAD/wAQAA8AAGAAxAD4ASwBmAH8AAAEiBgcOARUUFhceATMyNjc+ATU0JicuASMRIiYnLgE1NDY3PgEzMhYXHgEVFAYHDgEjAxQWMzI2NTQmIyIGFTMUBiMiJjU0NjMyFhUDBw4BBw4BFRQWFx4BMzI2Nz4BNTQmJy4BLwERIiYnLgE1NDY3PgE3HgEXHgEVFAYHDgEjAgBqukZFUVFFRrpqarpGRVFRRUa6amOvQUFMTEFBr2Njr0FBTExBQa9jUC8hIS8vISEvgBwUFBwcFBQcMA0DPiQjOyEcHEwrK0wcHCE7IyQ+Aw0kQBgYHCYcGz0WFj0bHCYcGBhAJAPAUUVGumpqukZFUVFFRrpqarpGRVH8IExBQa9jY69BQUxMQUGvY2OvQUFMAeAhLy8hIS8vIRQcHBQUHBwUAa0UBWJBQYcpK0wcHCEhHBxMKymHQUFiBRT9oxwYGEAkHWA2NWcjI2c1NmAdJEAYGBwAAAYAAP/ABAADwAAkAEkAXABsAIoAowAAASIGBw4BBw4BFRQWFx4BFx4BMzI2Nz4BNz4BNTQmJy4BJy4BIwEOAQcOASMiJicuAScuATU0Njc+ATc+ATMyFhceARceARUUBgcBMjY3NjQnLgEjIgYHBhQXHgEzJz4BMzIWFxYUBwYiJyY0NycOARUUFhceATM4ATEyNjc+ATc+AT8BBw4BBw4BBwEOASMiJicuATU0Njc+ATc+ATcOAQcOAQcCADNjLi5UJEtLS0skVC4uYzMzYy4uVCRLS0tLJFQuLmMzAVMiTisrXTAwXSsrTiJHRkZHIk4rK10wMF0rK04iR0ZGR/6tEB0MFxcMHRAQHQwXFwwdECIHEQoKEQcODg4oDg4OcR4fHx4dTCoqTB0dMxMSFwEEFwVuRUaFHQEPGEEjI0EYGhoaGhRdODdxJwgaEREnFQPAFBMTOCRLvWJivUskOBMTFBQTEzgkS71iYr1LJDgTExT8rSI1EhISEhISNSJGsVxcsUYiNRISEhISEjUiRrFcXLFGAQMMCxhCGAsMDAsYQhgLDHIHBwcHDigODg4OKA5xHk0oKE0eHh8fHh2FRkVuBRcEARcSEzMd/vEZGxsZGUEiIkEZFScRERoIJ3A4OF0UAAAGAAD/wAQAA8AAMABhAHoAkACrAMQAAAEiBgcOAQcOAQcOARUUFhceARceARceATMyNjc+ATc+ATc+ATU0JicuAScuAScuASMBDgEHDgEjIiYnLgEnLgEnLgE1NDY3PgE3PgE3PgEzMhYXHgEXHgEXHgEVFAYHDgEHASIGBw4BFRQWFx4BMzI2Nz4BNTQmJy4BIxcGIicuATU0Njc+ATMyFhceARUUBgcBJxceARceARceATMyNjc+ATU0JicuAScuAScBDgEjIiYnLgEnLgEnHgEXHgEXHgEVFAYHAgAzYy4uVCQkOBMTFBQTEzgkJFQuLmMzM2MuLlQkJDgTExQUExM4JCRULi5jMwFTIk4rK10wMF0rK04iIjUSEhISEhI1IiJOKytdMDBdKytOIiI1EhISEhISNSL+rRAdDAsMDAsMHRAQHQwLDAwLDB0QIg4oDgcHBwcHEQoKEQcHBwcH/tEXBAEXEhMzHR1MKipMHR4fHx4dhUZFbgUBiRlAIyNBGBUnEREaCCdxNzhdFBkbGxkDwBQTEzgkJFQuLmMzM2MuLlQkJDgTExQUExM4JCRULi5jMzNjLi5UJCQ4ExMU/K0iNRISEhISEjUiIk4rK10wMF0rK04iIjUSEhISEhI1IiJOKytdMDBdKytOIgGjDAsMHRAQHQwLDAwLDB0QEB0MCwxyDg4HEQoKEQcHBwcHBxEKChEHAUIEFwVuRUaFHR4fHx4dTCoqTB0dMxMSFwH+ZBkbGxkUXTg3cScIGhERJxUYQSMjQRgAAAAGAAD/wAQAA8AAGAAxAD4ASwBmAH8AAAUyNjc+ATU0JicuASMiBgcOARUUFhceATMRMhYXHgEVFAYHDgEjIiYnLgE1NDY3PgEzEzQmIyIGFRQWMzI2NSM0NjMyFhUUBiMiJjUTNz4BNz4BNTQmJy4BIyIGBw4BFRQWFx4BHwERMhYXHgEVFAYHDgEHLgEnLgE1NDY3PgEzAgBqukZFUVFFRrpqarpGRVFRRUa6amOvQUFMTEFBr2Njr0FBTExBQa9jUC8hIS8vISEvgBwUFBwcFBQcMA0DPiQjOyEcHEwrK0wcHCE7IyQ+Aw0kQBgYHCYcGz0WFj0bHCYcGBhAJEBRRUa6amq6RkVRUUVGumpqukZFUQPgTEFBr2Njr0FBTExBQa9jY69BQUz+ICEvLyEhLy8hFBwcFBQcHBT+UxQFYkFBhykrTBwcISEcHEwrKYdBQWIFFAJdHBgYQCQdYDY1ZyMjZzU2YB0kQBgYHAAAAAYAAP/ABAADwAAkAEkAXABsAIcAoAAAASIGBw4BBw4BFRQWFx4BFx4BMzI2Nz4BNz4BNTQmJy4BJy4BIwEOAQcOASMiJicuAScuATU0Njc+ATc+ATMyFhceARceARUUBgcBIgYHBhQXHgEzMjY3NjQnLgEjFwYiJyY0Nz4BMzIWFxYUBzcuASMiBgcOARUUFhceARceAR8BJy4BJy4BJwEuATU0Njc+ATMyFhceARceARcuAScuAScCADNjLi5UJEtLS0skVC4uYzMzYy4uVCRLS0tLJFQuLmMzAVMiTisrXTAwXSsrTiJHRkZHIk4rK10wMF0rK04iR0ZGR/6tEB0MFxcMHRAQHQwXFwwdECIOKA4ODgcRCgoRBw4OcR1MKipMHR4fHx4dhUZFbgUXBAEXEhMzHf7xGRsbGRhBIyNBGBUnERAbCCdxNzhdFAPAFBMTOCRLvWJivUskOBMTFBQTEzgkS71iYr1LJDgTExT8rSI1EhISEhISNSJGsVxcsUYiNRISEhISEjUiRrFcXLFGAaMMCxhCGAsMDAsYQhgLDHIODg4oDgcHBwcOKA61Hh8fHh1MKipMHR0zExIXAQQXBW5FRoUd/vEZQCMjQRgZGxsZFF04N3EnCBsQEScVAAcAAP/ABAADwAA/AFYAWwBgAGUAfACTAAABLgEnLgEjIgYHLgEjIgYHDgEVFBYXDgEVFBYzNSImNTQ2OwE3PgE3PgEzMhYXHgEdATMyFhUUBiMVMjY1NCYnJSMiBgcuATU0Njc+ATMyFhcOAQcOAQclMxUjNQEzFSM1BRcHJzcBIiY1IxQWMzI2NTQmIyEVITIWFRQGIzchFSEyNjU0JiMiBhUzNDYzMhYVFAYjA5AENy0teEMYLRYdQyUuUh4fIwsJHyVaRjlHSzUtAwk0JyZhNT9vKSkwECo2NCw5Rz0z/XMTESEPCAceGhpGKBkwFiM9GBkiCf79YGABUCAg/vtgFmAWAbUaJiA4KCg4OCj+IAHgGiYmGtD9cAKQKDg4KCg4ICYaGiYmGgH/PGonJy0GBhUXIx8eUi4aJREYSy1GWiBHOTxUDTFUHh4iKyUlYzgQUy0sNCBHOTZhCDEIBw8dEyhGGhoeDQwPKxscQSVAICABUGBgNWAWYBb8VSYaKDg4KCg4ICYaGibgIDgoKDg4KBomJhoaJgAAAAAGAAD/wAQAA8AAJABJAFwAbACHAKAAACU+ATU0JicuAScuASMiBgcOAQcOARUUFhceARceATMyNjc+ATcBPgE3PgEzMhYXHgEXHgEVFAYHDgEHDgEjIiYnLgEnLgE1NDY3ASIGBwYUFx4BMzI2NzY0Jy4BIxcGIicmNDc+ATMyFhcWFAc3LgEjIgYHDgEHDgEPATc+ATc+ATc+ATU0JicBPgE3PgE3PgEzMhYXHgEVFAYHDgEHDgEHA2pLS0tLJFQuLmMzM2MuLlQkS0tLSyRULi5jMzNjLi5UJP1DIk4rK10wMF0rK04iR0ZGRyJOKytdMDBdKytOIkdGRkcBUxAdDBcXDB0QEB0MFxcMHRAiDigODg4HEQoKEQcODnEdTCoqTB0dMxMSFwEEFwVuRUaFHR4fHx7+cQgaEREnFRhBIyNBGBoaGhoUXTg3cSdWS71iYr1LJDgTExQUExM4JEu9YmK9SyQ4ExMUFBMTOCQCvSI1EhISEhISNSJGsVxcsUYiNRISEhISEjUiRrFcXLFG/v0MCxhCGAsMDAsYQhgLDHIODg4oDgcHBwcOKA61Hh8fHh2FRkVuBRcEARcSEzMdHk0oKE0e/nEncTc4XRQZGxsZGUEiIkEZFScREBsIAAAGAAD/wAQAA8AAGAAxAD4ASwBmAH8AAAUyNjc+ATU0JicuASMiBgcOARUUFhceATMRMhYXHgEVFAYHDgEjIiYnLgE1NDY3PgEzEzQmIyIGFRQWMzI2NSM0NjMyFhUUBiMiJjUFHgEXHgEzMjY3PgE1NCYnLgEjIgYHDgEPARclMhYXHgEVFAYHDgEjIiYnLgEnPgE3PgEzAgBqukZFUVFFRrpqarpGRVFRRUa6amOvQUFMTEFBr2Njr0FBTExBQa9jUC8hIS8vISEvgBwUFBwcFBQc/pcFYkFBhykrTBwcISEcHEwrKYdBQWIFFBQBmSRAGBgcHBgYQCQdYDY1ZyMjZzU2YB1AUUVGumpqukZFUVFFRrpqarpGRVED4ExBQa9jY69BQUxMQUGvY2OvQUFM/iAhLy8hIS8vIRQcHBQUHBwUDQM+JCM7IRwcTCsrTBwcITsjJD4DDQ29HBgXQSQkQBgYHCYcGz0WFj0bHCYAAAMAAP/ABAADoAA9AFQAawAAEzUiJjU0NjsBNz4BNz4BMzIWFx4BHQEzMhYVFAYjFTI2NTQmJy4BJy4BIyIGBw4BByMiBgcOARUUFhceATMBIiY1IxQWMzI2NTQmIyEVITIWFRQGIwE0JiMiBhUzNDYzMhYVFAYjIRUhMjY1sD5SVTstAwo5KytrPEN1KysyEDE/QDA+UkY6AzkvL35IQHMuLkENEyRAGBgcGxcYQCYBUBomIDgoKDg4KP4gAeAaJiYaATA4KCg4ICYaGiYmGv1wApAoOAEwIFI+QV8NNVkgISQvKSlvQBBTLTBAIFI+NmIHRHUrLDEmIiJeOB8aGkYnJkAYFxv+sCYaKDg4KCg4ICYaGiYBQCg4OCgaJiYaGiYgOCgAAAAAAwAAAJAEAAMQABYALQBEAAATITIWFRQGIyImNSMUFjMyNjU0JiMhFTUhMjY1NCYjIgYVMzQ2MzIWFRQGIyEVFSEyFhUUBiMiJjUjFBYzMjY1NCYjIRUAAzAoODgoKDggSzU1S0s1/NADgDVLSzU1SyA4KCg4OCj8gAIAGiYmGhomIDgoKDg4KP4AAaA4KCg4OCg1S0s1NUsgcEs1NUtLNSg4OCgoOCDgJhoaJiYaKDg4KCg4IAAAAAEAAAABAAA+mXR0Xw889QALBAAAAAAA0OT+AAAAAADQ5P4A//H/tAQPA+EAAAAIAAIAAAAAAAAAAQAAA8D/wAAABAD/8f/xBA8AAQAAAAAAAAAAAAAAAAAAAFkAAAAAAAAAAAAAAAACAAAABAD/9gQAAAAEAP/4BAAAgAQAAAAEAAAABAAAAAQAAAAEAAAABAD//wQAAAAEAACgBAAAAAQAAAAEAP//BAAAAAQAAAAEAAAABAD//AQAAAAEAP//BAAAAAQAAAAEAAAABAAAkAQAAAAEAAEDBAAAAAQA//8EAAAABAAAAAQAAC0EAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAABwBAAAAAQA//8EAAAABAAAAAQA//UEAABgBAAAAAQA//8EAAAABAAAAAQAAAUEAP/xBAAAAAQA//8EAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQA//8EAAAABAAAAAQAAAAEAP//BAAAAAQAAIAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAP//BAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAAAAAAACgAUAB4AVgC+AWQB8AKGAwIDzgQqBNAFigZEBpYHSgfgCIwJNgmmCfIKYAsmDAIM3A2ODkIOxA8SDz4QJhEkEiAS+hNoE7YUJBR0FOIVlhZkFsYXZBgWGMgZRBluGdIazhveHO4dwB5OHoIfLB/qIKghLiGwIj4itCMqI7wkXiUWJcwmRibKJ2Qn/CimKbAqtivCLMYtfi44LwgvwDCyMdgykDOANE41PjX2Noo25gABAAAAWQDFABYAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAADgCuAAEAAAAAAAEADgAAAAEAAAAAAAIADgBHAAEAAAAAAAMADgAkAAEAAAAAAAQADgBVAAEAAAAAAAUAFgAOAAEAAAAAAAYABwAyAAEAAAAAAAoANABjAAMAAQQJAAEADgAAAAMAAQQJAAIADgBHAAMAAQQJAAMADgAkAAMAAQQJAAQADgBVAAMAAQQJAAUAFgAOAAMAAQQJAAYADgA5AAMAAQQJAAoANABjAGkAYwBvAG0AbwBvAG4AVgBlAHIAcwBpAG8AbgAgADEALgAwAGkAYwBvAG0AbwBvAG5pY29tb29uAGkAYwBvAG0AbwBvAG4AUgBlAGcAdQBsAGEAcgBpAGMAbwBtAG8AbwBuAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA) format("truetype"), url(data:application/font-woff;charset=utf-8;base64,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) format("woff");
  font-weight: normal;
  font-style: normal;
}
[class^=slicon-], [class*=" slicon-"] {
  font-family: "icomoon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slicon-weather_aquarius:before {
  content: "\e600";
}
.slicon-weather_aries:before {
  content: "\e601";
}
.slicon-weather_cancer:before {
  content: "\e602";
}
.slicon-weather_capricorn:before {
  content: "\e603";
}
.slicon-weather_cloud_drop:before {
  content: "\e604";
}
.slicon-weather_cloud_lightning:before {
  content: "\e605";
}
.slicon-weather_cloud_snowflake:before {
  content: "\e606";
}
.slicon-weather_cloud:before {
  content: "\e607";
}
.slicon-weather_downpour_fullmoon:before {
  content: "\e608";
}
.slicon-weather_downpour_halfmoon:before {
  content: "\e609";
}
.slicon-weather_downpour_sun:before {
  content: "\e60a";
}
.slicon-weather_drop:before {
  content: "\e60b";
}
.slicon-weather_first_quarter:before {
  content: "\e60c";
}
.slicon-weather_fog_fullmoon:before {
  content: "\e60d";
}
.slicon-weather_fog_halfmoon:before {
  content: "\e60e";
}
.slicon-weather_fog_sun:before {
  content: "\e60f";
}
.slicon-weather_fog:before {
  content: "\e610";
}
.slicon-weather_fullmoon:before {
  content: "\e611";
}
.slicon-weather_gemini:before {
  content: "\e612";
}
.slicon-weather_hail_fullmoon:before {
  content: "\e613";
}
.slicon-weather_hail_halfmoon:before {
  content: "\e614";
}
.slicon-weather_hail_sun:before {
  content: "\e615";
}
.slicon-weather_hail:before {
  content: "\e616";
}
.slicon-weather_last_quarter:before {
  content: "\e617";
}
.slicon-weather_leo:before {
  content: "\e618";
}
.slicon-weather_libra:before {
  content: "\e619";
}
.slicon-weather_lightning:before {
  content: "\e61a";
}
.slicon-weather_mistyrain_fullmoon:before {
  content: "\e61b";
}
.slicon-weather_mistyrain_halfmoon:before {
  content: "\e61c";
}
.slicon-weather_mistyrain_sun:before {
  content: "\e61d";
}
.slicon-weather_mistyrain:before {
  content: "\e61e";
}
.slicon-weather_moon:before {
  content: "\e61f";
}
.slicon-weather_moondown_full:before {
  content: "\e620";
}
.slicon-weather_moondown_half:before {
  content: "\e621";
}
.slicon-weather_moonset_full:before {
  content: "\e622";
}
.slicon-weather_moonset_half:before {
  content: "\e623";
}
.slicon-weather_move2:before {
  content: "\e624";
}
.slicon-weather_newmoon:before {
  content: "\e625";
}
.slicon-weather_pisces:before {
  content: "\e626";
}
.slicon-weather_rain_fullmoon:before {
  content: "\e627";
}
.slicon-weather_rain_halfmoon:before {
  content: "\e628";
}
.slicon-weather_rain_sun:before {
  content: "\e629";
}
.slicon-weather_rain:before {
  content: "\e62a";
}
.slicon-weather_sagittarius:before {
  content: "\e62b";
}
.slicon-weather_scorpio:before {
  content: "\e62c";
}
.slicon-weather_snow_fullmoon:before {
  content: "\e62d";
}
.slicon-weather_snow_halfmoon:before {
  content: "\e62e";
}
.slicon-weather_snow_sun:before {
  content: "\e62f";
}
.slicon-weather_snow:before {
  content: "\e630";
}
.slicon-weather_snowflake:before {
  content: "\e631";
}
.slicon-weather_star:before {
  content: "\e632";
}
.slicon-weather_storm_fullmoon:before {
  content: "\e633";
}
.slicon-weather_storm_halfmoon:before {
  content: "\e634";
}
.slicon-weather_storm_sun:before {
  content: "\e635";
}
.slicon-weather_storm-11:before {
  content: "\e636";
}
.slicon-weather_storm-32:before {
  content: "\e637";
}
.slicon-weather_sun:before {
  content: "\e638";
}
.slicon-weather_sundown:before {
  content: "\e639";
}
.slicon-weather_sunset:before {
  content: "\e63a";
}
.slicon-weather_taurus:before {
  content: "\e63b";
}
.slicon-weather_tempest_fullmoon:before {
  content: "\e63c";
}
.slicon-weather_tempest_halfmoon:before {
  content: "\e63d";
}
.slicon-weather_tempest_sun:before {
  content: "\e63e";
}
.slicon-weather_tempest:before {
  content: "\e63f";
}
.slicon-weather_variable_fullmoon:before {
  content: "\e640";
}
.slicon-weather_variable_halfmoon:before {
  content: "\e641";
}
.slicon-weather_variable_sun:before {
  content: "\e642";
}
.slicon-weather_virgo:before {
  content: "\e643";
}
.slicon-weather_waning_cresent:before {
  content: "\e644";
}
.slicon-weather_waning_gibbous:before {
  content: "\e645";
}
.slicon-weather_waxing_cresent:before {
  content: "\e646";
}
.slicon-weather_waxing_gibbous:before {
  content: "\e647";
}
.slicon-weather_wind_E:before {
  content: "\e648";
}
.slicon-weather_wind_fullmoon:before {
  content: "\e649";
}
.slicon-weather_wind_halfmoon:before {
  content: "\e64a";
}
.slicon-weather_wind_N:before {
  content: "\e64b";
}
.slicon-weather_wind_NE:before {
  content: "\e64c";
}
.slicon-weather_wind_NW:before {
  content: "\e64d";
}
.slicon-weather_wind_S:before {
  content: "\e64e";
}
.slicon-weather_wind_SE:before {
  content: "\e64f";
}
.slicon-weather_wind_sun:before {
  content: "\e650";
}
.slicon-weather_wind_SW:before {
  content: "\e651";
}
.slicon-weather_wind_W:before {
  content: "\e652";
}
.slicon-weather_wind:before {
  content: "\e653";
}
.slicon-weather_windgust:before {
  content: "\e654";
}
body,
.dark-logo-bg {
  background: #32323a;
}
.white-logo-bg {
  background: #fff;
}
.logo.white-logo-bg a {
  color: #32323a;
}
.logo.gray-logo-bg a {
  color: #32323a;
}
.sidebar-left .nav > li > a:hover,
.sidebar-left .nav > li > a:focus,
.side-navigation > li.active > a,
.side-navigation > li.active > a:hover,
.side-navigation > li.active > a:focus,
.side-navigation > li.menu-list > a:hover,
.side-navigation > li.nav-active > a,
.side-navigation .child-list,
.sidebar-collapsed .side-navigation > li.nav-hover > a,
.sidebar-collapsed .side-navigation > li.nav-hover.active > a,
.sidebar-collapsed .side-navigation li.nav-hover.active a span,
.sidebar-collapsed .side-navigation li a span,
.sidebar-collapsed .side-navigation li.nav-hover ul {
  background-color: #121212;
}
.side-navigation > li.active > a,
.side-navigation > li.active > a:hover,
.side-navigation > li.active > a:focus,
.side-navigation .child-list > li > a:hover,
.side-navigation .child-list > li > a:active,
.side-navigation .child-list > li > a:focus,
.mega-menu ul li ul li a:hover,
.weather-widget .weather-info .degree,
.weather-widget .weather-info .degree:after,
.side-navigation > li.nav-active > a,
.side-navigation > li > a:hover, .side-navigation > li > a:active,
.side-navigation > li.nav-active > a:after {
  color: #fff;
}
.side-navigation > li.active > a {
  font-weight: bold;
}
.r-close-btn:hover {
  background: #7cd8a9;
}
.side-navigation .child-list > li > a:hover,
.side-navigation .child-list > li > a:active,
.side-navigation .child-list > li > a:focus,
.sidebar-collapsed .side-navigation ul a:hover {
  background: rgba(0, 0, 0, 0.2);
}
.navigation-title {
  color: rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.sidebar-widget {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.btn-back,
.btn-back:active,
.btn-tag,
.btn-tag:active {
  background-color: #4990e2;
  border-color: #4990e2;
  color: #fff;
}
.btn-back:hover,
.btn-back:focus,
.btn-tag:hover,
.btn-tag:focus {
  background-color: #45c0fe;
  border-color: #45c0fe;
  color: #fff;
}
.btn-pdf,
.btn-pdf:active,
.btn-dd,
.btn-dd:active {
  background-color: #c01c3c;
  border-color: #c01c3c;
  color: #fff;
}
.btn-pdf:hover,
.btn-pdf:focus,
.btn-dd:hover,
.btn-dd:focus {
  background-color: #d0011b;
  border-color: #d0011b;
  color: #fff;
}
.btn-tag,
.btn-back:active {
  background-color: #4990e2;
  border-color: #4990e2;
  color: #fff;
}
.btn-tag:hover,
.btn-tag:focus {
  background-color: #45c0fe;
  border-color: #45c0fe;
  color: #fff;
}
/*
Template Name: SlickLab
Build with : BS 3 +
Author: Mosaddek Hossain
*/
/************************
    Table of Content
**************************/
/*

1. logo
2. sidebar left
3. sidebar collapsed
4. header section
5. sticky header
6. non sticky header
7. sidebar left widget
8. left notification
9. notification list
10. language switch
11. mail notification
12. yamm css
13. mega-menu
14. right notification
15. body content
16. page heading
17. state overview
18. text color
19. boxed view
20. tools
21. footer content
22. mobile visit
23. monthly page view
24. team member
25. cpu graph
26. sale monitor
27. dashboard v map
28. flot chart
29. code high light style
30. right side bar
31. chat
32. info
33. settings
34. weather widget
35. login page
36. lock
37. 404 page
38. 500 page
39. Checkbox and Radio buttons
40. to do list
41. mail inbox
42. form layout
43. picker
44. Table
45. general
46. toastr
47. font awesome & simple icon
48. slider
49. profile
50. invoice
51. widget
52. Data Table
53. form
54. ion slider
55. nestable
56. timeline
57. summernote
58. form validation
59. form wizard
60. map
61. calendar
62. slick carousel

*/
body {
  font-family: "Source Sans Pro", sans-serif;
  color: #323232;
  line-height: 20px;
  overflow-x: hidden;
  font-size: 14px;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
}
input, select, textarea {
  font-family: "Source Sans Pro", sans-serif;
  color: #767676;
}
a {
  /*color: #91918E;*/
}
a:focus, a:active, a:hover {
  outline: none;
  transition: all 0.3s;
  text-decoration: none;
  color: #7cd8a9;
}
h1, h2, h3, h4, h5 {
  font-family: "Source Sans Pro", sans-serif;
}
.m-t-10 {
  margin-top: 10px;
}
.m-t-20 {
  margin-top: 20px;
}
.m-t-30 {
  margin-top: 30px;
}
.m-t-40 {
  margin-top: 40px;
}
.m-t-50 {
  margin-top: 50px;
}
.m-b-10 {
  margin-bottom: 10px;
}
.m-b-20 {
  margin-bottom: 20px;
}
.m-b-30 {
  margin-bottom: 30px;
}
.m-b-40 {
  margin-bottom: 40px;
}
.m-b-50 {
  margin-bottom: 50px;
}
/*---------------------
    sidebar left
-----------------------*/
.sidebar-left {
  width: 240px;
  position: absolute;
  top: 50px;
  left: 0;
}
.sticky-sidebar {
  position: fixed;
  height: 100%;
  overflow-y: auto;
  z-index: 100;
}
.sidebar-collapsed .sticky-sidebar {
  overflow-y: visible;
  position: absolute;
}
.sidebar-left-info {
  padding: 0px;
}
.sidebar-left .search-content {
  display: none;
}
.sidebar-left .search-content::after {
  content: "";
  display: block;
  clear: both;
}
.sidebar-left .search-content input {
  padding: 10px;
  width: 90%;
  margin: 20px 10px 20px 12px;
  border-radius: 30px;
  border: none;
}
.sidebar-left .search-content input:focus {
  width: 90%;
}
.noti-arrow {
  margin-right: 15px;
  margin-top: 2px;
  font-weight: normal;
}
.side-navigation {
  margin-bottom: 10px;
  margin-top: 1px;
}
.navigation-title {
  font-size: 11px;
  font-weight: normal;
  margin: 0;
  padding: 10px 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.side-navigation > li > a {
  color: #fff;
  padding: 15px 20px;
  border-radius: 0;
}
.side-navigation > li > a:hover,
.side-navigation > li > a:active {
  /*background-color: #000;*/
  border-radius: 0;
  -webkit-border-radius: 0;
}
.side-navigation > li.menu-list > a {
  position: relative;
}
.side-navigation > li.nav-active > ul {
  display: block;
}
.side-navigation > li.menu-list > a:after {
  content: "\f105";
  display: inline-block;
  font-family: "FontAwesome";
  padding-right: 20px;
  position: absolute;
  right: 0;
}
.side-navigation > li.nav-active > a:after {
  content: "\f107";
  display: inline-block;
  font-family: "FontAwesome";
  padding-right: 20px;
  position: absolute;
  right: 0;
}
.side-navigation > li.menu-list.active > a:after,
.side-navigation > li.nav-active.active > a:after,
.side-navigation > li.nav-active.active > a:after:hover {
  content: "\f107";
}
.side-navigation li .fa, .side-navigation li .ico {
  font-size: 14px;
  vertical-align: middle;
  margin-right: 10px;
  width: 16px;
  text-align: center;
}
.side-navigation .child-list {
  list-style: none;
  display: none;
  margin: 0;
  padding: 0 0 1px 0;
}
.side-navigation .child-list > li > a {
  color: #fff;
  font-size: 13px;
  display: block;
  padding: 10px 5px 10px 50px;
  transition: all 0.2s ease-out 0s;
}
.side-navigation .child-list > li > a:hover,
.side-navigation .child-list > li > a:active,
.side-navigation .child-list > li > a:focus {
  text-decoration: none;
  transition: all 0.2s ease-out 0s;
}
.side-navigation .child-list > li .fa {
  font-size: 12px;
  opacity: 0.5;
  margin-right: 5px;
  text-align: left;
  width: auto;
  vertical-align: baseline;
}
.side-navigation .child-list > li.active > a {
  color: #7cd8a9;
  /*background-color: rgba(0,0,0,0.2);*/
}
.side-navigation .child-list ul {
  margin-left: 12px;
  border: 0;
}
.side-navigation .menu-list.active ul {
  display: block;
}
.user-nav {
  margin-bottom: 0;
}
.user-nav > li > a {
  padding: 10px 20px;
}
/*---------------------
    sidebar collapsed
-----------------------*/
.sidebar-collapsed .side-navigation > li.nav-active > a:after,
.sidebar-collapsed .side-navigation > li.menu-list > a:after {
  display: none;
}
.sidebar-collapsed .header-section {
  margin-left: 0px;
}
.sidebar-collapsed .sidebar-left {
  width: 52px;
  top: 52px;
}
.sidebar-collapsed .sidebar-left-info {
  padding: 0;
}
h5.left-nav-title {
  color: #7cd8a9;
  margin-left: 20px;
  text-transform: uppercase;
}
.sidebar-collapsed .side-navigation {
  margin: 0px 0 20px 0;
}
.sidebar-collapsed .side-navigation li a {
  text-align: center;
  padding: 15px 10px;
  position: relative;
}
.sidebar-collapsed .side-navigation > li.menu-list > a {
  background-image: none;
}
.sidebar-collapsed .side-navigation li a span {
  position: absolute;
  padding: 15px;
  left: 52px;
  top: 0;
  min-width: 175px;
  text-align: left;
  z-index: 1000;
  display: none;
}
.sidebar-collapsed .side-navigation li a span .badge,
.sidebar-collapsed .side-navigation li a span .label {
  display: none !important;
}
.sidebar-collapsed .side-navigation li.active a span {
  border-radius: 0;
}
.sidebar-collapsed .side-navigation ul,
.sidebar-collapsed .side-navigation .menu-list.nav-active ul {
  display: none;
}
.sidebar-collapsed .side-navigation .menu-list.nav-hover ul,
.sidebar-collapsed .side-navigation li.nav-hover a span {
  display: block;
}
.sidebar-collapsed .side-navigation > li.nav-hover > a,
.sidebar-collapsed .side-navigation > li.nav-hover.active > a,
.sidebar-collapsed .side-navigation li.nav-hover.active a span,
.sidebar-collapsed .side-navigation li.nav-hover a span {
  color: #fff;
}
.sidebar-collapsed .side-navigation li.nav-hover ul {
  display: block;
  position: absolute;
  top: 50px;
  left: 52px;
  margin: 0;
  min-width: 175px;
  z-index: 100;
}
.sidebar-collapsed .side-navigation ul a {
  text-align: left;
  padding: 10px 15px;
}
.sidebar-collapsed .side-navigation li a i {
  margin-right: 0;
}
.sidebar-collapsed .body-content {
  margin-left: 52px;
}
.sidebar-collapsed .sidebar-widget,
.sidebar-collapsed .navigation-title {
  display: none;
}
/*---------------------
    header section
-----------------------*/
.header-section {
  background: #fff;
  border-bottom: 1px solid #E8E8E8;
}
.header-section::after {
  clear: both;
  display: block;
  content: "";
}
.toggle-btn {
  width: 55px;
  height: 60px;
  line-height: 30px;
  font-size: 14px;
  padding: 15px;
  cursor: pointer;
  float: left;
  text-align: center;
  color: #384246;
  transition: all 0.2s ease-out 0s;
}
.toggle-btn:hover,
.notification-menu .dropdown-toggle:hover,
.notification-menu .dropdown-toggle:focus,
.notification-menu .dropdown-toggle:active,
.notification-menu .dropdown-toggle.active,
.notification-menu .open .dropdown-toggle.dropdown-toggle {
  background: #f7f7f7;
  color: #8b8b8b;
}
.search-content input {
  box-shadow: none;
  float: right;
  font-size: 14px;
  height: 30px;
  margin: 15px 10px 0 10px;
  width: 100px;
  border-radius: 30px;
  background: #f3f3f3;
  border: none;
}
.search-content input,
.search-content input:focus {
  transition: all 0.3s ease;
}
.search-content input:focus {
  box-shadow: none;
  border-color: #eff0f4;
  width: 210px;
}
/*---------------------
    sticky header
-----------------------*/
.sticky-header .sidebar-left {
  top: 60px;
}
.sticky-header .header-section {
  position: fixed;
  top: 0;
  left: 240px;
  width: 100%;
  z-index: 1000;
}
.sticky-header .body-content {
  padding-top: 60px;
}
.sticky-header .right-notification {
  margin-right: 240px;
}
.sticky-header.sidebar-collapsed .header-section {
  left: 52px;
}
.sticky-header.sidebar-collapsed .right-notification {
  margin-right: 52px;
}
/*-----------------------------
    non sticky header
-----------------------------*/
.non-sticky-header .sidebar-left {
  top: 0px;
}
.non-sticky-header .side-navigation {
  margin-top: 60px;
}
.non-sticky-header .right-notification {
  margin-right: 0px;
}
/*-------------------------
    sidebar left widget
---------------------------*/
.sidebar-widget {
  padding: 0 20px;
  margin-bottom: 100px;
}
.sidebar-widget h4 {
  font-size: 11px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 10px;
  padding-top: 10px;
  letter-spacing: 2px;
}
.sidebar-widget p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 400;
}
.sidebar-widget ul {
  list-style: none;
}
.sidebar-widget .progress {
  margin-bottom: 20px;
}
/*---------------------------
     left notification
---------------------------*/
.left-notification {
  float: left;
}
.notification-menu {
  list-style: none;
  padding-left: 0px;
}
.notification-menu > li {
  float: left;
  position: relative;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}
.notification-menu > li.open .dropdown-menu {
  animation-name: fadeInUp;
}
.notification-menu .dropdown-toggle {
  padding: 12px 10px;
  border-color: #fff;
  background: none;
  border-radius: 0;
  border: none;
}
.notification-menu .dropdown-toggle:hover,
.notification-menu .open .dropdown-toggle.dropdown-toggle {
  background: #f7f7f7;
  box-shadow: none;
}
.notification-menu .dropdown-toggle .caret {
  margin-left: 5px;
}
.notification-menu .dropdown-menu {
  margin-top: 0px;
  border-radius: 0;
  box-shadow: none;
  border-top: 1px solid rgba(0, 0, 0, 0);
  border-left: 1px solid #ececec;
  border-right: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
}
.notification-menu .dropdown-menu li {
  display: block;
  margin: 0;
  float: none;
  background: none;
  padding: 15px;
}
.notification-menu .dropdown-usermenu li {
  padding: 0;
}
.notification-menu .dropdown-menu li a {
  color: #fff;
  font-size: 13px;
  padding: 7px 10px;
  transition: all 0.2s ease-out 0s;
}
.notification-menu .dropdown-menu li a:hover {
  background: #f7f7f7;
  color: #2b2b2c;
}
.notification-menu .dropdown-title {
  padding: 0;
  min-width: 300px;
}
.notification-menu .info-number {
  padding: 0px 18px;
  height: 60px;
  line-height: 60px;
  font-size: 16px;
  background: none;
  color: #8b8b8b;
  border-color: #fff;
  transition: all 0.2s ease-out 0s;
  float: left;
}
.title {
  border-bottom: 1px solid #efefef;
  display: inline-block;
  width: 100%;
}
.dropdown-title .title {
  color: #797979;
  padding: 20px 15px;
  font-size: 14px;
  margin-top: -1px;
  margin-bottom: 0;
}
.dropdown-title .title.purple:after,
.dropdown-title .title.green:after,
.dropdown-title .title.yellow:after {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  content: "";
  display: inline-block;
  left: 20px;
  position: absolute;
  top: -6px;
}
.dropdown-title .title.purple:after {
  border-bottom: 6px solid #9c78cd;
}
.dropdown-title .title.green:after {
  border-bottom: 6px solid #52d192;
}
.dropdown-title .title.yellow:after {
  border-bottom: 6px solid #ffd200;
}
.dropdown-title .title.purple {
  border-top: 1px solid #9c78cd;
}
.dropdown-title .title.green {
  border-top: 1px solid #65cea7;
}
.dropdown-title .title.yellow {
  border-top: 1px solid #ffd200;
}
.info-number .badge {
  font-size: 11px;
  font-weight: normal;
  line-height: 13px;
  padding: 2px 6px;
  position: absolute;
  right: 5px;
  top: 10px;
}
/*----------------------*/
.bg-info,
.info-number .bg-info {
  color: #fff;
  background-color: #6bd3f3;
}
.bg-success,
.info-number .bg-success {
  color: #fff;
  background-color: #53d192;
}
.bg-warning,
.info-number .bg-warning {
  color: #fff;
  background-color: #ffd200;
}
.bg-primary,
.info-number .bg-primary {
  color: #fff;
  background-color: #9c78cd;
}
.bg-danger,
.info-number .bg-danger {
  color: #fff;
  background-color: #e55957;
}
.bg-dark,
.info-number .bg-dark {
  color: #fff;
  background-color: #2b2b2c;
}
/*-------------------------
    notification list
--------------------------*/
.notification-list {
  padding: 0 15px;
  display: inline-block;
}
.notification-list a {
  display: inline-block;
  width: 100%;
  padding: 20px 0;
  border-top: 1px solid #f3f3f3;
  color: #2b2b2c;
  text-decoration: none;
  font-size: 14px;
}
.noti-information .notification-list {
  padding: 0;
}
.noti-information .notification-list a {
  padding: 20px;
}
.noti-information .notification-list a:hover {
  background: #fafafa;
}
.notification-list a:first-child {
  border-top: none;
}
.notification-list-scroll {
  height: 240px;
  overflow-y: scroll;
}
.notification-list a small {
  color: #bdbdbd;
  padding-left: 5px;
}
.notification-list a span.icon {
  margin-right: 15px;
  font-size: 16px;
  float: left;
}
.title-row {
  position: relative;
}
a.btn-view-all {
  position: absolute;
  right: 15px;
  top: 15px;
  padding: 3px 10px;
  border-radius: 30px;
  text-decoration: none;
  white-space: nowrap;
}
.notification-list p,
.notification-list p small {
  margin: 0;
  padding: 0;
}
.notification-list p small {
  color: #a9a9a9;
}
.task-list .progress {
  margin: 10px 0 0 0px;
  height: 10px;
}
.task-info {
  float: left;
  width: 87%;
}
.noti-information .mail-list .un-read, .noti-information .mail-list .read {
  right: 20px;
}
/* --------------------------------
       language switch
-----------------------------------*/
.language-switch li a img {
  float: right;
  margin-top: 2px;
}
.language-switch span {
  float: left;
}
.language-switch li a {
  margin: 5px 0 !important;
}
/*---------------------
    mail notification
----------------------*/
.mail-list .single-mail {
  position: relative;
}
.mail-list .un-read,
.mail-list .read {
  position: absolute;
  right: 0px;
  top: 32px;
  font-size: 12px;
  color: #dfdfe2;
}
.notification-list.mail-list a span.icon {
  padding: 3px 10px;
  margin-top: 7px;
}
/**/
.not-list span.icon {
  border-radius: 50%;
  width: 35px;
  height: 35px;
  line-height: 33px;
  font-size: 12px;
  padding: 0 !important;
  text-align: center;
}
.not-list span.icon i {
  font-size: 14px;
}
.notification-list.not-list a span.icon {
  margin-top: 5px;
}
/*-------------------------
    yamm css
-------------------------*/
.yamm .nav,
.yamm .collapse,
.yamm .dropup,
.yamm .dropdown {
  position: static;
}
.yamm .container {
  position: relative;
}
.yamm .dropdown-menu {
  left: auto;
}
.yamm .yamm-content {
  padding: 20px;
}
.yamm .dropdown.yamm-fw .dropdown-menu {
  left: 0;
  right: 0;
}
/*--------------------
    mega-menu
--------------------*/
.mega-menu {
  float: left;
  /*margin:0px 0 0 20px;*/
  padding: 0;
}
.mega-menu .navbar-nav {
  height: 60px;
}
.mega-menu .navbar-nav > li > a {
  padding-top: 20px;
  padding-bottom: 20px;
}
.mega-menu ul li a {
  margin-bottom: 15px;
  display: inline-block;
  color: #8b8b8b;
  font-size: 13px;
}
.mega-menu ul li a:hover,
.mega-menu ul li a:focus {
  background-color: #f7f7f7 !important;
}
.mega-menu ul ul li a:hover,
.mega-menu ul ul li a:focus {
  background: none !important;
}
.mega-menu ul ul li a {
  width: 100%;
  margin: 10px 0;
}
.mega-menu .nav .open > a,
.mega-menu .nav .open > a:hover,
.mega-menu .nav .open > a:focus {
  background-color: #fff;
}
.mega-menu ul li a i {
  padding-right: 5px;
  width: 20px;
}
.mega-menu ul li.dropdown a:hover {
  background: none;
}
.mega-menu #main-content {
  margin-left: 0px;
}
.mega-menu .title {
  color: #323232;
  font-size: 14px;
  text-transform: none;
  font-weight: bold;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}
.mega-menu .d-title,
.mega-menu .d-desk {
  display: block;
}
.mega-menu .d-desk {
  color: #aaa;
  font-size: 11px;
}
.custom-nav-img .desk {
  line-height: 25px;
  font-size: 13px;
  color: #8b8b8b;
}
.custom-nav-img {
  position: static;
}
.yamm-content {
  position: relative;
}
.mega-bg {
  background-image: url("img/mega-menu/corner_image.jpg");
  background-repeat: no-repeat;
  background-position: bottom right;
  position: absolute;
  right: 0;
  bottom: -5px;
  width: 300px;
  height: 130px;
}
.mega-menu .dropdown-menu {
  /*z-index: 11000!important;*/
}
.icon-img {
  float: left;
  margin-right: 10px;
}
.icon-desk {
  display: inline-block;
}
.mega-menu .dropdown-menu {
  box-shadow: none;
  border-radius: 0;
  border-color: #f1f2f7;
}
.wide-full {
  width: 77%;
  /*width: auto;*/
}
/*-----------------------
    right notification
------------------------*/
.right-notification {
  float: right;
  margin-right: 40px;
  height: 60px;
}
.right-notification .notification-menu > li > a {
  /*padding-top: 15px;*/
  /*padding-bottom: 16px;*/
}
.right-notification .notification-menu li a {
  height: 60px;
  line-height: 60px;
  padding: 0 15px;
}
.right-notification .notification-menu li li a {
  height: auto;
  line-height: normal;
  padding: 15px;
}
.right-notification .notification-menu li a {
  color: #8b8b8b;
}
.right-notification .notification-menu > li > a > img {
  width: 29px;
  height: 29px;
  border-radius: 50%;
  margin-right: 10px;
}
.right-notification .notification-menu li a i {
  font-size: 16px;
  position: absolute;
  right: 15px;
}
.right-notification .input-group {
  margin-top: 7px;
}
.right-notification .rounded {
  border-radius: 100px;
  background: #f3f3f3;
  border: none;
  box-shadow: none;
}
.right-notification .search .btn-sm,
.right-notification .search .btn-group-sm > .btn {
  font-size: 13px;
  line-height: 1.6;
  outline: none;
}
.right-notification .search input.form-control {
  width: 122px;
}
.right-notification .search .twitter-typeahead {
  float: left;
}
.search .input-group-btn > .btn {
  border: none;
  background: none;
}
.search .input-group {
  background: #f3f3f3;
  border-radius: 100px;
}
.right-notification .notification-menu > li > a > span.fa-angle-down {
  margin-left: 5px;
}
.typeahead,
.tt-query,
.tt-hint {
  /*width: 396px;*/
  height: 31px;
  padding: 8px 0px 8px 10px;
  font-size: 13px;
  line-height: 30px;
  border: 2px solid #ccc;
  border-radius: 8px;
  outline: none;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  /* Safari and Chrome */
  .typeahead,
  .tt-query,
  .tt-hint {
    height: 30px;
  }
  /* Safari only override */
  /*::i-block-chrome,.flex-direction-nav-featured a{*/
  /**/
  /*}*/
}
.tt-hint {
  color: #999;
}
.tt-dropdown-menu {
  width: 130px;
  margin-top: 12px;
  padding: 8px 0;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 0px;
}
.tt-suggestion {
  padding: 3px 10px;
  font-size: 14px;
  line-height: 24px;
}
.tt-suggestion.tt-cursor {
  color: #fff;
}
.tt-suggestion p {
  margin: 0;
}
.gist {
  font-size: 14px;
}
/*---------*/
.right-notification .search input.form-control:focus {
  /*width: 130px;*/
}
.right-notification .search input.form-control,
.right-notification .search input.form-control:focus {
  transition: all 0.3s ease;
}
.dropdown-usermenu.purple:after {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  content: "";
  display: inline-block;
  right: 6%;
  position: absolute;
  top: -6px;
  border-bottom: 6px solid #9c78cd;
}
.right-notification .notification-menu .dropdown-menu li a:hover {
  background: #f7f7f7;
  /*color: #fff;*/
}
.dropdown-usermenu.purple {
  border-top: 1px solid #9c78cd;
}
.dropdown-usermenu {
  min-width: 230px;
}
.notification-menu .dropdown-menu {
  padding: 0;
}
/*---------------------
    body content
-----------------------*/
.body-content {
  margin-left: 240px;
  background: #e8e8e8;
  min-height: 900px;
  position: relative;
}
.wrapper {
  padding: 20px;
}
.wrapper::after {
  clear: both;
  display: block;
  content: "";
  margin-bottom: 30px;
}
.wrapper.no-pad {
  display: table-cell;
}
/*------------------
    page heading
-------------------*/
.page-head {
  padding: 20px;
  background: #e8e8e8;
  position: relative;
}
.page-head h3 {
  margin-top: 0;
  font-size: 20px;
  font-weight: 600;
}
.page-head .sub-title {
  color: #a3a3a3;
  font-size: 14px;
}
.state-information {
  position: absolute;
  right: 20px;
  top: 20px;
}
.state-information .state-graph {
  float: right;
  margin-left: 60px;
  text-align: center;
}
.state-information .state-graph .info {
  font-size: 12px;
  color: #555555;
}
.state-graph .chart {
  margin-bottom: 5px;
}
/*---------------------
    state overview
-----------------------*/
.state-overview .symbol, .state-overview .value {
  display: inline-block;
  text-align: center;
}
.state-overview .value {
  float: right;
  text-align: left;
}
.state-overview .value h1, .state-overview .value p {
  margin: 0;
  padding: 0;
}
.state-overview .value h1 {
  font-weight: 300;
}
.state-overview .symbol i {
  font-size: 25px;
}
.state-overview .symbol {
  width: 30%;
  padding: 50px 15px;
}
.state-overview .value {
  width: 68%;
  margin-top: 30px;
  border-left: 1px solid;
  padding-left: 10%;
}
.state-overview .value.gray {
  border-color: #eaeaeb;
}
.state-overview .value.white {
  border-color: rgba(255, 255, 255, 0.2);
}
/*----------------------*/
.state-overview .green {
  background: #53d192;
  color: #fff;
}
.state-overview .purple {
  background: #a979d1;
  color: #fff;
}
.state-overview .red {
  background: #ff6c60;
  color: #fff;
}
.state-overview .yellow {
  background: #f8d347;
  color: #fff;
}
.state-overview .blue {
  background: #57c8f2;
  color: #fff;
}
/*-------------------------------
    text color
--------------------------------*/
.green-color, .text-success {
  color: #53d192;
}
.purple-color, .text-primary {
  color: #a979d1;
}
.blue-color, .text-info {
  color: #6bd3f3;
}
.yellow-color, .text-warning {
  color: #ffd200;
}
.red-color, .text-danger {
  color: #e55957;
}
/*---------------------
    boxed view
-----------------------*/
.boxed-view {
  background: #5ac29c;
}
.boxed-view .container {
  position: relative;
  background: #32323a;
  padding: 0;
}
.boxed-view .container .sidebar-left {
  top: 0px;
}
.boxed-view .container .side-navigation {
  margin-top: 60px;
}
.boxed-view .right-notification {
  margin-right: 0px;
}
/*---------------------
    tools
-----------------------*/
.tools {
  margin: -5px;
}
.tools a {
  border-radius: 2px;
  color: #C5C5CA;
  float: left;
  padding: 10px;
  text-decoration: none;
  font-size: 11px;
}
.tools a:hover {
  background: #7cd8a9;
  color: #fff;
}
.refresh-block {
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  transition: all 0.05s ease;
  top: 0px;
  left: 0px;
  position: absolute;
  z-index: 1000;
  border-radius: 2px;
}
.refresh-block .refresh-loader {
  display: inline-block;
  position: absolute;
  text-align: center;
  top: 50%;
  left: 50%;
  margin-left: -16px;
  margin-top: -16px;
}
.refresh-block .refresh-loader i {
  display: inline-block;
  line-height: 32px;
  color: #000;
  font-size: 16px;
}
/*---------------------
    footer content
-----------------------*/
footer {
  background: #e9e9eb;
  padding: 15px 20px;
  color: #232425;
  font-size: 12px;
  position: absolute;
  bottom: 0;
  width: 100%;
}
footer.sticky-footer {
  position: fixed;
  bottom: 0;
  width: 100%;
}
/*---------------------------
    mobile visit
----------------------------*/
.mobile-visit {
  margin: 0px;
  padding-left: 0;
}
.mobile-visit .page-view-label {
  margin-top: 18px;
}
.mobile-visit li {
  padding: 35px 0px;
  margin-left: 4%;
  list-style: none;
  float: left;
  width: 33%;
}
.mobile-visit li:first-child {
  width: 20%;
}
.easy-pie-chart {
  display: inline-block;
  padding: 0 20px 20px 0;
}
.easy-pie-chart .iphone-visitor {
  color: #43c584;
}
.easy-pie-chart .android-visitor {
  color: #a979d1;
}
.visit-title {
  display: inline-block;
  color: #555555;
}
.visit-title i {
  font-size: 20px;
  padding-right: 10px;
}
.visit-title i,
.visit-title span {
  float: left;
}
/*---------------------------
    monthly page view
----------------------------*/
.monthly-page-view {
  margin: 0px;
  padding-left: 0;
}
.monthly-page-view li {
  padding: 20px 0px;
  list-style: none;
}
.monthly-page-view li:last-child .chart {
  margin-top: 10px;
}
.page-view-label span {
  display: block;
  color: #bdc1c3;
}
.page-view-value {
  font-size: 26px;
  color: #555555 !important;
  font-weight: 400;
  margin-bottom: 10px;
}
/*------------------
    team member
-------------------*/
.post-wrap aside {
  display: table-cell;
  float: none;
  height: 100%;
  padding: 0;
  vertical-align: top;
}
.pro-box {
  border-collapse: collapse;
  border-spacing: 0;
  display: table;
  table-layout: fixed;
  width: 100%;
}
.team-member .action-set a,
.team-member .team-title a {
  color: #fff;
}
.team-member .action-set,
.team-member .team-title,
.team-member .sub-title {
  display: inline-block;
  width: 100%;
}
.team-member .action-set {
  margin-top: 30px;
  margin-bottom: 20px;
}
.team-member .m-name {
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: 600;
}
.team-member .sub-title {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}
.team-member .call-info {
  margin: 72px 0;
}
.team-member .call-info a {
  width: 38px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  border: 1px solid #fff;
  border-radius: 50%;
  color: #fff;
  display: inline-block;
}
.team-member .call-info a:hover {
  background: #fff;
}
.team-member .call-info a i {
  font-size: 14px;
}
.team-member .call-info img {
  width: 100px;
  border-radius: 50%;
  margin: 10px;
}
.team-member .status {
  margin: 30px 0;
  display: inline-block;
}
.team-member .status h5 {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 5px;
}
.team-member .status span {
  font-size: 13px;
}
.team-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.team-list li a {
  display: inline-block;
  width: 100%;
  padding: 14px 15px;
  border-bottom: 1px solid #f3f3f3;
  color: #333;
}
.team-list li:hover {
  background: #fafafa;
}
.team-list li a span {
  display: inline-block;
  margin-right: 10px;
}
.team-list li .thumb-small {
  width: 50px;
  height: 50px;
  display: inline-block;
  position: relative;
}
.team-list li .thumb-small .dot {
  width: 12px;
  height: 12px;
  display: inline-block;
  position: absolute;
  background: #e6e6e6;
  border-radius: 50%;
  top: auto;
  right: 0;
  bottom: 0;
  left: auto;
  border: 2px solid #fff;
}
.team-list li .thumb-small .dot.online {
  background: #5cc691;
}
.team-list li .thumb-small .dot.away {
  background: #ffd200;
}
.team-list li .thumb-small .dot.busy {
  background: #ff6a6a;
}
.team-list li .thumb-small .dot.offline {
  background: #e6e6e6;
}
.team-list li .thumb-small img {
  width: 100%;
  height: auto;
}
.circle {
  border-radius: 50%;
}
.team-list li .name {
  margin-top: 15px;
  display: inline-block;
}
.add-more-member {
  padding: 18px 15px;
}
.add-more-member a, a.light-color {
  color: #bdc1c3;
}
.add-more-member a:hover, a.light-color:hover {
  color: #2b2b2c;
}
a.add-btn {
  padding: 4px 10px;
  color: #fff;
  display: inline-block;
  margin-top: -3px;
}
a.add-btn:hover {
  color: #fff;
}
a.add-btn {
  background: #9c78cd;
}
.team-member .call-info a:hover {
  color: #a389d3;
}
.action-tools a {
  color: #c5c5ca;
}
/*----------------
    cpu graph
------------------*/
.cpu-graph {
  padding: 32px 20px;
}
.cpu-graph .c-info {
  margin-top: 40px;
}
.cpu-graph .c-info h3 {
  color: #5dbddb;
  font-size: 16px;
  text-transform: uppercase;
}
.cpu-graph .c-info p {
  color: #b1b5b7;
  font-size: 14px;
  line-height: 25px;
}
.cpu-graph .easy-pie-chart {
  margin-top: 15px;
}
.cpu-graph .easy-pie-chart span {
  background: #90d7ed;
  width: 60px;
  height: 60px;
  line-height: 50px;
  border-radius: 50%;
  display: inline-block;
  color: #fff;
  border: 5px solid #e9f7fb;
  text-align: center;
}
/*------------------
    sale monitor
-------------------*/
.sale-monitor .title {
  margin: 0 0 40px 0;
}
.sale-monitor .title h3 {
  font-size: 14px;
  text-transform: uppercase;
  color: #555;
  margin: 20px 0 10px 0;
}
.sale-monitor .title p {
  font-size: 14px;
  color: #b1b5b7;
}
.sale-monitor .states {
  width: 90%;
}
.sale-monitor .states .info {
  display: inline-block;
  width: 100%;
  font-size: 13px;
}
/*---------------------------
    dashboard v map
----------------------------*/
.w-map-size {
  width: 100%;
  height: 300px;
  position: relative;
  margin-top: 10px;
}
.jvectormap-zoomin, .jvectormap-zoomout,
.jqvmap-zoomin, .jqvmap-zoomout {
  border: 1px solid #eaeaea;
  background: #fff;
  border-radius: 0;
  color: #545454;
  width: 28px;
  height: 28px;
  line-height: 20px;
  text-align: center;
  cursor: pointer;
}
.jvectormap-zoomin:hover, .jvectormap-zoomout:hover,
.jqvmap-zoomin:hover, .jqvmap-zoomout:hover {
  background: #eaeaea;
}
.jvectormap-zoomin, .jqvmap-zoomin {
  position: absolute;
  z-index: 70;
  top: 0px;
}
.jvectormap-zoomout, .jqvmap-zoomout {
  position: absolute;
  z-index: 70;
  top: 27px;
}
/*---------------------------
    flot chart
----------------------------*/
#flotTip {
  background: rgba(0, 0, 0, 0.8);
  padding: 5px 10px;
  border-radius: 3px;
  color: #fff;
}
.pieLabel div {
  font-size: 11px !important;
  font-weight: normal;
  line-height: normal;
}
.legend table {
  left: 35px;
}
.legend > div {
  left: 33px !important;
  opacity: 0.85;
}
.earning-chart-space {
  width: 100%;
  height: 268px;
  text-align: center;
  margin: 0 auto;
}
.earning-chart-info {
  padding: 15px 0 0 0;
}
.earning-chart-info h4 {
  /*margin-top: 0;*/
  margin-bottom: 5px;
}
.series-list input {
  margin-right: 10px;
}
.f-c-space {
  width: 100%;
  height: 280px;
  text-align: center;
  margin: 0 auto;
}
/*---------------------------
    code high light style
----------------------------*/
.highlight pre code {
  color: #333333;
  font-size: inherit;
}
.nt {
  color: #2F6F9F;
}
.na {
  color: #4F9FCF;
}
.s {
  color: #D44950;
}
.c {
  color: #999999;
}
.r-close-btn {
  position: absolute;
  right: 10px;
  color: #fff;
  top: 15px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  border-radius: 2px;
  transition: all 0.3s;
}
.r-close-btn:hover {
  color: #fff;
}
/*---------------------------
    right side bar
----------------------------*/
.sb-toggle-right {
  width: 55px;
  height: 60px;
  line-height: 30px;
  font-size: 14px;
  padding: 15px;
  cursor: pointer;
  text-align: center;
  color: #384246;
  transition: all 0.2s ease-out 0s;
}
.sb-toggle-right:hover {
  background: #f7f7f7;
}
.sb-slidebar {
  background-color: #fff !important;
  /*margin-top: 60px;*/
  border-left: 1px solid #e9e9e9;
  color: #2b2b2c;
}
.sb-slidebar .side-title {
  padding: 10px 0px;
  text-transform: uppercase;
  color: #FF6C60;
}
.right-bar .tab-content {
  padding: 20px;
}
.sb-slidebar .tab-content > .active {
  display: none;
  visibility: hidden;
}
.sb-slidebar.sb-active .tab-content > .active {
  display: block;
  visibility: visible;
}
.right-bar .nav-tabs li a,
.right-bar .nav-tabs li a:hover,
.right-bar .nav-tabs li.active a {
  padding: 20px 15px;
  border-radius: 0;
  border: none;
}
.right-bar .nav-tabs li a {
  color: #fff;
  margin-right: 0px;
}
.right-bar .nav-tabs li a:hover,
.right-bar .nav-tabs li.active a {
  color: #2b2b2c;
  background: #fff;
}
.right-bar .nav-tabs {
  background: #2b2b2c;
  color: #fff;
}
/*---------------
    chat
----------------*/
.chat-list {
  position: relative;
  margin-bottom: 20px;
}
.chat-list h3 {
  font-size: 14px;
  text-transform: uppercase;
  color: #000;
  margin: 0 0 5px;
}
.chat-list h5 {
  font-size: 12px;
  color: #a5a5a5;
  margin: 0;
}
.chat-list a {
  color: #323232;
}
.chat-list .add-people {
  position: absolute;
  right: 0;
  top: 5px;
}
.side-title {
  display: table;
  margin: 0 0 20px;
  overflow: hidden;
}
.side-title h2 {
  float: left;
  padding: 0 10px 0 0;
  margin: 0;
  font-size: 14px;
  text-transform: uppercase;
  color: #2b2b2c;
  font-weight: bold;
}
.side-title .title-border-row {
  position: relative;
  display: table-cell;
  vertical-align: middle;
  height: 1px;
  width: 100%;
}
.side-title .title-border {
  height: 1px;
  border-top: 1px solid #e8e8e8;
  position: relative;
  display: block;
  width: 100%;
  box-sizing: content-box;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  -o-box-sizing: content-box;
}
.team-list.chat-list-side li:hover {
  background: #f3f3f3;
}
.team-list.chat-list-side li .thumb-small {
  width: 30px;
  height: 30px;
  margin-top: 5px;
}
.team-list.chat-list-side li .thumb-small .dot {
  right: -3px;
  top: 0px;
}
.team-list.chat-list-side li .name {
  margin-top: 0;
  font-size: 14px;
  color: #2b2b2c;
}
.inline small {
  display: block;
}
.team-list.chat-list-side {
  margin: 0 -20px 20px -20px;
}
.team-list.chat-list-side li a {
  display: table;
  padding: 10px 20px;
  border: none;
  position: relative;
}
.team-list.chat-list-side li .thumb-small,
.team-list.chat-list-side li .inline {
  display: table-cell;
  float: none;
  vertical-align: middle;
}
.team-list.chat-list-side li .inline {
  padding-left: 20px;
  text-align: left;
}
.team-list.chat-list-side li .settings {
  position: absolute;
  right: 10px;
  top: 16px;
}
.right-bar .tab-pane .team-list.chat-list-side:last-child,
.right-bar .tab-pane .aside-widget:last-child {
  padding-bottom: 100px;
}
.right-bar .tab-pane .aside-widget .team-list.chat-list-side:last-child {
  padding-bottom: 0px;
}
.right-bar .tab-pane .aside-widget {
  margin: 0px -20px;
  padding: 0px 20px;
}
/*---------------------
        info
---------------------*/
.chat-list.info h3 {
  margin-top: 5px;
}
.chat-list.info .add-people {
  top: -3px;
}
.side-title-alt {
  background: #f3f3f3;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
  padding: 10px 20px;
  position: relative;
  margin: 0 -20px 0 -20px;
}
.side-title-alt h2 {
  font-size: 15px;
  margin: 0;
  color: #2b2b2c;
}
.side-title-alt a.close {
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 14px;
}
.team-list.chat-list-side.info {
  margin-bottom: 0;
}
.team-list.chat-list-side.info li .inline {
  padding-left: 0px;
}
.team-list.chat-list-side.info li {
  padding: 15px 20px;
  border-bottom: 1px solid #e9e9e9;
}
.team-list.chat-list-side.info li:last-child {
  border-bottom: none;
}
.team-list.chat-list-side.info li:hover {
  background: #fafafa;
}
.team-list.chat-list-side.info li span.value {
  display: block;
}
.team-list.chat-list-side.info.statistics li .inline {
  width: 85%;
}
.border-less-list li {
  border-bottom: none !important;
}
.info.sale-monitor .states {
  width: 100%;
}
.info.sale-monitor .progress {
  margin-bottom: 5px;
}
/*---------------------
        settings
-----------------------*/
.settings-head {
  margin-bottom: 0;
}
.settings-head h3 {
  font-size: 17px;
  text-transform: capitalize;
}
.setting-list {
  margin-bottom: 20px !important;
}
.bottom-border {
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 15px;
}
/*-------------------
    weather widget
--------------------*/
.weather-widget {
  width: 100%;
  float: left;
  background: #fff;
  margin-bottom: 20px;
}
.weather-widget .weather-state {
  background-color: #00c4a9;
  background-image: url(img/weather_background.jpg);
  background-size: cover;
  height: 261px;
  width: 45%;
  text-align: center;
}
.weather-widget .weather-state .weather-icon {
  font-size: 60px;
  color: #fff;
  display: block;
  margin: 20px 0 60px 0;
}
.weather-widget .weather-state .weather-type {
  display: block;
  text-align: center;
  padding: 20px 0;
  font-size: 28px;
  color: #fff;
  font-weight: 300;
  line-height: 28px;
}
.weather-widget .weather-state,
.weather-widget .weather-info {
  float: left;
  padding: 20px;
}
.weather-widget .weather-info {
  width: 54%;
}
.weather-widget .weather-info .degree {
  font-size: 72px;
  display: block;
  font-weight: 100;
  margin-top: 20px;
}
.weather-widget .weather-info .degree:after {
  content: "o";
  position: relative;
  top: -40px;
  font-size: 20px;
  font-weight: 400;
}
.weather-widget .weather-info .weather-city {
  color: #bdc1c3;
  font-size: 20px;
  font-weight: 300;
  margin-top: 20px;
  display: block;
}
.weather-widget .weather-info {
  position: relative;
}
.weather-widget .weather-info .switch-btn {
  position: absolute;
  right: 20px;
  top: 30px;
}
/*----------------------------
        login page
------------------------------*/
.guest-body {
  background-color: #2b2b2d;
}
.guest-body .guest-logo {
  margin: 0;
  text-align: center;
  background: #1b1b1d;
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
  display: inline-block;
  width: 100%;
  padding: 50px 0;
}
h2.form-heading {
  margin: 0;
  padding: 30px 15px;
  text-align: center;
  background: #222224;
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
  display: inline-block;
  width: 100%;
}
.radios {
  display: inline-block;
  margin-bottom: 15px;
  width: 100%;
}
.radios .col-sm-6, .radios .col-lg-6 {
  padding-left: 0;
}
.radios input[type=radio] {
  margin-right: 5px;
}
.modal-body p {
  color: #333;
}
.registration {
  color: #565658;
}
.registration a {
  color: #fff;
}
.modal-body input[type=text] {
  background: #fff;
  border: 1px solid #ddd;
  color: #333;
}
/*----------------
    lock
------------------*/
.lock span {
  display: block;
  font-size: 14px;
  color: #49494a;
  text-transform: none;
}
.lock span.u-name {
  font-size: 18px;
  color: #fff;
  margin: 10px 0;
}
.d-log a {
  color: #49494a;
}
.user-avatar img {
  border-radius: 50%;
  width: 112px;
  height: 112px;
  margin-top: -20px;
  margin-bottom: 25px;
}
.lock-row, .log-row {
  margin-bottom: 50px;
}
/*----------------------------------
    Checkbox and Radio buttons
-------------------------------------*/
.radio label, .checkbox label {
  min-height: 20px;
  padding-left: 5px;
  margin-bottom: 0;
  font-weight: normal;
  cursor: pointer;
  padding-right: 10px;
}
.checkbox-custom,
.radio-custom {
  margin: 10px 0 10px 0;
  padding-left: 0px;
  display: block;
}
.checkbox-custom.inline,
.radio-custom.inline {
  padding-left: 0px;
  display: inline-block;
  margin: 10px 0 10px 0;
}
.checkbox-custom label,
.radio-custom label {
  display: inline-block;
  cursor: pointer;
  position: relative;
  padding-left: 30px !important;
  margin-right: 15px;
}
.checkbox-custom label:before,
.radio-custom label:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 5px;
  position: absolute;
  left: 0px;
  border: 1px solid #dbdbdb;
  margin-top: 4px;
}
.checkbox-custom input[type=radio][disabled] + label:after {
  background-color: #e6e6e6;
}
.checkbox-custom label {
  white-space: nowrap;
  transition: all 0.2s;
}
.checkbox-custom label:before {
  top: -1px;
  transition: all 0.2s;
}
.checkbox-custom label::after {
  display: inline-block;
  width: 16px;
  height: 16px;
  position: absolute;
  left: 2.5px;
  top: 1px;
  font-size: 12px;
  transition: all 0.2s;
}
.checkbox-custom input[type=checkbox] {
  display: none;
}
.checkbox-custom input[type=checkbox]:checked + label:before {
  border-width: 8px;
}
.checkbox-custom input[type=checkbox]:checked + label::after {
  font-family: "FontAwesome";
  content: "\f00c";
  color: #fff;
}
.checkbox-custom input[type=checkbox][disabled] + label {
  opacity: 0.5;
}
.checkbox-custom input[type=checkbox][disabled] + label:before {
  background-color: #e2e5e9;
}
.radio-custom label {
  margin-bottom: 6px;
}
.radio-custom label:before {
  border-radius: 50%;
  transition: all 0.2s;
}
.radio-custom input[type=radio]:checked + label:before {
  border-width: 6px;
}
.radio-custom input[type=radio] {
  display: none;
}
.radio-custom input[type=radio][disabled] + label {
  opacity: 0.5;
}
.radio-custom.radio-success input[type=radio]:checked + label:before,
.checkbox-custom.check-success input[type=checkbox]:checked + label:before {
  border-color: #53D192;
}
.radio-custom.radio-primary input[type=radio]:checked + label:before,
.checkbox-custom.check-primary input[type=checkbox]:checked + label:before {
  border-color: #8f67b1;
}
.radio-custom.radio-info input[type=radio]:checked + label:before,
.checkbox-custom.check-info input[type=checkbox]:checked + label:before {
  border-color: #119dc9;
}
.radio-custom.radio-warning input[type=radio]:checked + label:before,
.checkbox-custom.check-warning input[type=checkbox]:checked + label:before {
  border-color: #ecc200;
}
.radio-custom.radio-danger input[type=radio]:checked + label:before,
.checkbox-custom.check-danger input[type=checkbox]:checked + label:before {
  border-color: #e55957;
}
.radio-custom.radio-dark input[type=radio]:checked + label:before,
.checkbox-custom.check-dark input[type=checkbox]:checked + label:before {
  border-color: #333;
}
/*------------------
    to do list
-------------------*/
.todo-list-item {
  padding-left: 0;
}
.todo-list-item li {
  background: #f9f9f9;
  position: relative;
  padding: 13px;
  margin-bottom: 5px;
  cursor: move;
  list-style: none;
  border-top: #f3f3f3 1px solid;
  border-right: #f3f3f3 1px solid;
  border-bottom: #f3f3f3 1px solid;
  border-left: #f3f3f3 1px solid;
}
.todo-list-item li:before {
  content: "";
  display: inline-block;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 3px;
  background-color: #a288d2;
}
.todo-list-item li.todo-done:before {
  content: "";
  display: inline-block;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 3px;
  background-color: #5FC29D;
}
.todo-done .todo-title {
  text-decoration: line-through;
  color: #b1b5b7;
}
.todo-list-item li p {
  margin-bottom: 0px;
}
.action-todo {
  position: absolute;
  right: 15px;
  top: 13px;
}
.action-todo a {
  height: 24px;
  width: 24px;
  display: inline-block;
  float: left;
}
.action-todo a i {
  height: 24px;
  width: 24px;
  display: inline-block;
  text-align: center;
  line-height: 24px;
  color: #ccc;
}
.action-todo a:hover i {
  color: #666;
}
.todo-done i {
  font-size: 14px;
}
.todo-remove i {
  font-size: 14px;
}
.line-through {
  text-decoration: line-through;
}
.todo-action-bar {
  margin-top: 20px;
}
/* To-Do Check*/
.chk-todo {
  margin-right: 10px;
  position: relative;
  top: -2px;
}
.btn-todo-select button, .btn-add-task button {
  width: 100%;
  font-size: 12px;
}
.todo-search-wrap {
  padding: 0px;
}
.todo-search {
  border-radius: 3px !important;
}
.action-todo a.todo-remove:hover i {
  color: red !important;
}
/*------------------------
    mail inbox
------------------------*/
.mail-box {
  border-collapse: collapse;
  border-spacing: 0;
  display: table;
  table-layout: fixed;
  width: 100%;
}
.mail-box aside {
  display: table-cell;
  float: none;
  height: 100%;
  padding: 0;
  vertical-align: top;
}
.mail-box .sm-side {
  width: 25%;
  background: #f5f5f5;
}
.mail-box .lg-side {
  width: 75%;
  background: #fff;
}
.mail-box .sm-side .m-title {
  background: #e9e9eb;
  padding: 10px 20px;
  color: #32323a;
  min-height: 80px;
}
.mail-box .sm-side .m-title h3 {
  margin: 8px 0 0 0;
  font-size: 20px;
  font-weight: 400;
}
.mail-box .sm-side .m-title span {
  color: #a3a3a3;
  font-size: 14px;
}
.inbox-body {
  padding: 20px;
  /*margin-bottom: 20px;*/
}
.inbox-body .btn-group {
  margin-bottom: 20px;
}
.btn-compose {
  background: #e55957;
  padding: 12px 0;
  text-align: center;
  width: 100%;
  color: #fff;
}
.btn-compose:hover, .btn-compose:focus {
  background: #c74d4c;
  color: #fff;
}
ul.inbox-nav {
  display: inline-block;
  width: 100%;
  margin: 0;
  padding: 0;
}
.inbox-divider {
  border-bottom: 1px solid #e0e0e1;
}
ul.inbox-nav li {
  display: inline-block;
  line-height: 45px;
  width: 100%;
}
ul.inbox-nav li a {
  color: #6a6a6a;
  line-height: 45px;
  width: 100%;
  display: inline-block;
  padding: 0 20px;
  border-right: 2px solid #f5f5f5;
}
ul.inbox-nav li a:hover, ul.inbox-nav li.active a, ul.inbox-nav li a:focus {
  color: #222223;
  background: #fff;
  border-right: 2px solid #53d192;
}
ul.inbox-nav li a i {
  padding-right: 10px;
  font-size: 16px;
  color: #aaaaaa;
}
ul.inbox-nav li a span.label {
  margin-top: 13px;
}
ul.labels-info li h4 {
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 5px;
  color: #5c5c5e;
  font-size: 13px;
  text-transform: uppercase;
}
ul.labels-info li, .inbox-small-cells .checkbox label {
  margin: 0;
}
ul.labels-info li a {
  color: #6a6a6a;
  border-radius: 0;
  border-right: 2px solid #f5f5f5;
}
ul.labels-info li a:hover, ul.labels-info li a:focus {
  color: #222223;
  background: #fff;
  border-right: 2px solid #53d192;
}
ul.labels-info li a i {
  padding-right: 10px;
}
.nav.nav-pills.nav-stacked.labels-info p {
  margin-bottom: 0;
  padding: 0 22px;
  color: #9d9f9e;
  font-size: 11px;
}
.inbox-head {
  padding: 20px 15px;
  background: #f3f3f3;
  color: #333;
  min-height: 80px;
}
.inbox-head h3 {
  margin: 0;
  display: inline-block;
  padding-top: 6px;
  font-weight: 300;
}
.all-check {
  background: #fff;
  border: 1px solid #e7e7e7;
  padding-left: 10px;
  height: 32px;
  margin-right: -1px;
}
.all-check .checkbox-custom {
  width: 30px;
  margin: 5px 0 0 0;
  position: relative;
  top: -10px;
}
.inbox-small-cells .checkbox-custom {
  margin: 0;
  height: 35px;
  width: 20px;
}
.all-check .checkbox-custom label:before {
  /*top: -10px;*/
}
.table-inbox .checkbox {
  margin: 5px 0 0 0;
  width: 10px;
}
.table-inbox {
  margin-bottom: 20px;
  font-size: 13px;
}
.table-inbox > tbody > tr > td {
  border-top: none;
  vertical-align: middle;
}
.table-inbox tr td {
  padding: 5px 15px !important;
}
.table-inbox tr td:hover {
  cursor: pointer;
}
.table-inbox tr td .fa-star.inbox-started, .table-inbox tr td .fa-star:hover {
  color: #ffd200;
}
.table-inbox tr td .fa-star {
  color: #d5d5d5;
}
.table-inbox tr.unread td {
  font-weight: 600;
}
.table-inbox .avatar img, .table-inbox .avatar span {
  width: 30px;
  height: 30px;
  line-height: 30px;
  display: inline-block;
}
.table-inbox .avatar span {
  /*background: #929292;*/
  text-align: center;
  color: #fff;
}
ul.inbox-pagination {
  float: right;
}
ul.inbox-pagination li {
  float: left;
}
.mail-option {
  display: inline-block;
  width: 100%;
}
.mail-option .chk-all, .mail-option .btn-group {
  margin-right: 5px;
}
.mail-option .chk-all, .mail-option .btn-group a.btn {
  border: 1px solid #e7e7e7;
  padding: 5px 10px;
  display: inline-block;
  background: #fcfcfc;
  color: #afafaf;
}
.inbox-pagination {
  margin-bottom: 0;
  list-style: none;
}
.inbox-pagination a.np-btn {
  border: 1px solid #e7e7e7;
  padding: 5px 15px;
  display: inline-block;
  background: #fcfcfc;
  color: #afafaf;
}
.mail-option .chk-all input[type=checkbox] {
  margin-top: 0;
}
.mail-option .btn-group a.all {
  padding: 0;
  border: none;
}
.inbox-pagination a.np-btn {
  margin-left: 5px;
}
.inbox-pagination li span {
  display: inline-block;
  margin-top: 7px;
  margin-right: 5px;
}
.fileinput-button {
  border: 1px solid #e6e6e6;
  background: #eeeeee;
}
.inbox-body .modal .modal-body input, .inbox-body .modal .modal-body textarea {
  border: 1px solid #e6e6e6;
  box-shadow: none;
}
.inbox-body .btn {
  border-radius: 0;
}
.btn-send, .btn-send:hover {
  background: #00A8B3;
  color: #fff;
}
.btn-send:hover {
  background: #009da7;
}
.modal-header h4.modal-title {
  font-weight: normal;
}
.modal-body label {
  font-weight: 400;
}
.heading-inbox h4 {
  font-size: 30px;
  font-weight: 300;
  color: #444;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
  margin-top: 0px;
  margin-bottom: 20px;
}
.sender-info {
  margin-bottom: 20px;
}
.sender-info .date {
  margin: 5px 20px 0 0;
  color: #a3a3a3;
}
.sender-info img {
  width: 50px;
  height: 50px;
}
.s-info {
  margin-left: 15px;
  display: inline-block;
}
.s-info strong {
  display: block;
}
.s-info span {
  color: #a3a3a3;
}
.sender-dropdown {
  border: 1px solid #eaeaea;
  padding: 0 3px;
  color: #777;
  font-size: 10px;
  width: 18px;
  display: inline-block;
}
.view-mail a {
  color: #9c78cd;
}
.view-mail p {
  line-height: 25px;
}
.attachment-mail {
  margin-top: 30px;
}
.attachment-mail h5 {
  font-weight: bold;
}
.attachment-mail ul {
  width: 100%;
  display: inline-block;
  margin-bottom: 20px;
  list-style: none;
  padding: 0;
}
.attachment-mail ul li {
  float: left;
  width: 180px;
  margin-right: 10px;
  margin-bottom: 10px;
  border: 1px solid #dfdfdf;
  text-align: center;
}
.attachment-mail ul li a {
  padding: 5px;
  display: inline-block;
  height: 110px;
  line-height: 98px;
}
.attachment-mail ul li img {
  width: 100%;
}
.attachment-mail ul li span {
  float: right;
}
.attachment-mail .file-name {
  float: left;
  background: #f5f5f5;
  width: 100%;
  padding: 8px;
  border-top: 1px solid #dfdfdf;
  font-size: 12px;
  cursor: pointer;
}
.attachment-mail .file-name i {
  padding-right: 5px;
}
.no-pad {
  padding: 0px;
}
.mail-box .checkbox-custom label::after {
  top: 3px;
}
.mail-box .mail-option .checkbox-custom label::after {
  top: 1px;
}
.team-member-info {
  background-color: #9c78cd;
  width: 100%;
}
.reply-mail {
  border-top: 1px solid #e1e1e1;
  padding-top: 30px;
}
/*compose-mail*/
.compose-mail {
  width: 100%;
  display: inline-block;
  position: relative;
}
.compose-mail .compose-options {
  color: #979797;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  position: absolute;
  right: 10px;
  top: 7px;
}
.compose-options a {
  color: #545454;
  margin-left: 5px;
}
.compose-mail .form-group label {
  margin-bottom: 0;
  font-weight: normal;
}
.compose-editor input {
  margin-top: 15px;
}
.compose-editor .form-horizontal .form-group {
  margin: 0;
}
.compose-btn {
  float: left;
  margin-bottom: 40px;
}
.compose-editor textarea {
  border-color: #dfdfdf;
  box-shadow: none;
  border-radius: 0;
}
.compose-mail .form-horizontal .control-label {
  text-align: left;
}
/*---------------
    form layout
--------------*/
.form-control {
  border: 1px solid #dfdfdf;
  box-shadow: none;
  border-radius: 0;
}
.form-control:focus {
  box-shadow: none;
}
.bv-form .help-block {
  margin-bottom: 0;
}
.bv-form .tooltip-inner {
  text-align: left;
}
.nav-tabs li.bv-tab-success > a {
  color: #3c763d;
}
.nav-tabs li.bv-tab-error > a {
  color: #a94442;
}
div.tagsinput, .colpick, .colpick_field, .colpick_hex_field,
.select2-container .select2-choices .select2-search-field input,
.select2-container .select2-choice, .select2-container .select2-choices {
  border-radius: 0;
  box-shadow: none;
}
.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up, .select2-search input {
  border-radius: 0;
  border-top-right-radius: 0;
}
.select2-search input {
  background: none;
}
.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down {
  margin-top: -2px;
  border-radius: 0;
  border-bottom-right-radius: 0px;
}
.select2-container-active .select2-choice, .select2-container-multi.select2-container-active .select2-choices {
  box-shadow: none;
}
.select2-container .select2-choice .select2-arrow {
  width: 25px;
}
.select2-container .select2-choice .select2-arrow b, .select2-container .select2-choice div b {
  background-position: 3px 3px;
}
.select2-container .select2-choice abbr {
  right: 30px;
}
.spinner .input-group-btn:first-child > .btn, .spinner .input-group-btn:first-child > .btn-group {
  margin-right: -2px;
}
.ui-widget-content {
  list-style: none;
  padding: 10px 15px;
  width: 50%;
}
.ui-widget-content li a {
  color: #323232;
  line-height: 30px;
  display: block;
}
.icheck-row label {
  text-align: left;
  padding: 0 10px;
}
/*--------------------------
      picker
---------------------------*/
.add-on {
  float: right;
  margin-top: -37px;
  padding: 3px;
  text-align: center;
}
.add-on .btn {
  padding: 9px;
}
.colorpicker.dropdown-menu {
  min-width: 130px;
  padding: 5px;
}
.datepicker.dropdown-menu {
  z-index: 1060;
  padding: 5px;
}
.custom-date-range .input-group-addon {
  border-left: 1px solid #EEEEEE;
  border-right: 1px solid #EEEEEE;
}
.input-group-btn.add-on:last-child > .btn {
  margin-left: -31px;
}
/*-------------
    Table
--------------*/
.custom-table tr th,
.custom-table tr td {
  vertical-align: middle !important;
}
.custom-table tr td .progress {
  margin-bottom: 0px;
}
.table-hover > tbody > tr:hover {
  background-color: #f9f9f9;
}
/*-------------
    general
--------------*/
.btn-gap .btn {
  float: left;
  margin-right: 5px;
}
.breadcrumb li a {
  color: #4d4d4f;
}
.breadcrumb li a:hover {
  color: #2b2b2c;
}
.light-color {
  color: #fff !important;
}
.pulse {
  margin: 100px auto 40px;
  padding: 5px 10px;
  border: 1px solid #ddd;
  color: #000;
  text-align: center;
  text-shadow: none;
  margin: 20px;
  float: left;
}
.end {
  text-align: right;
  font-style: italic;
}
/*carousel*/
.carousel-indicators li {
  background: rgba(0, 0, 0, 0.2);
  border: none;
  transition: background-color 0.25s ease 0s;
  -moz-transition: background-color 0.25s ease 0s;
  -webkit-transition: background-color 0.25s ease 0s;
}
.carousel-indicators .active {
  background: #a978d1;
  height: 10px;
  margin: 1px;
  width: 10px;
}
.carousel-indicators.out {
  bottom: -5px;
}
.carousel-control {
  color: #999999;
  text-shadow: none;
  width: 45px;
}
.carousel-control i {
  display: inline-block;
  height: 25px;
  left: 50%;
  margin-left: -10px;
  margin-top: -10px;
  position: absolute;
  top: 50%;
  width: 20px;
  z-index: 5;
}
.carousel-control.left, .carousel-control.right {
  background: none;
  filter: none;
}
.carousel-control:hover, .carousel-control:focus {
  color: #CCCCCC;
  opacity: 0.9;
  text-decoration: none;
}
.carousel-inner h3 {
  font-weight: 300;
  font-size: 16px;
  margin: 0;
}
.carousel-inner {
  margin-bottom: 15px;
}
/*-------*/
.isolate-tabs {
  margin-bottom: 20px;
}
.isolate-tabs li a {
  color: #333;
}
.isolate-tabs .panel-body {
  background: #fff;
  border-left: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  border-right: 1px solid #ddd;
}
.isolate-tabs .nav-tabs.nav-justified > li > a,
.isolate-tabs .nav-tabs > li > a {
  border-radius: 0;
}
.panel-heading.tab-dark .nav {
  border: medium none;
  font-size: 13px;
  margin: -15px;
}
.tab-dark {
  background: #32323a;
  border-bottom: none;
}
.tab-dark .nav-tabs > li > a {
  margin-right: 1px;
}
.tab-dark .nav > li > a {
  position: relative;
  display: block;
  padding: 12px 15px;
}
.tab-dark li a i {
  padding: 0 5px;
}
.panel-heading .nav > li > a,
.panel-heading .nav > li.active > a, .panel-heading .nav > li.active > a:hover, .panel-heading .nav > li.active > a:focus {
  border-width: 0;
  border-radius: 0;
}
.panel-heading .nav > li > a {
  color: #fff;
}
.panel-heading .nav > li.active > a, .panel-heading .nav > li > a:hover {
  color: #32323a;
  background: #fff;
}
.panel-heading {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.tab-right {
  height: 42px;
  line-height: 13px;
}
.panel-heading.tab-right .nav-tabs > li > a {
  margin-left: 1px;
  margin-right: 0px;
}
.m-bot-none {
  margin-bottom: 0;
}
.wht-color {
  color: #fff;
}
.close-sm {
  font-size: 14px;
}
.pager a {
  color: #333;
}
/* collapsible*/
.panel-group .panel-heading .panel-title > a {
  display: block;
  font-size: 12px;
  font-weight: normal;
}
.panel-group .panel-heading .panel-title > a.collapsed:after {
  content: "\f067";
  color: #8b8b8b;
}
.panel-group .panel-heading .panel-title > a:hover:after {
  color: #333 !important;
}
.panel-group .panel-heading .panel-title > a:after {
  font-family: "FontAwesome";
  content: "\f068";
  float: right;
  color: #333;
}
/*-------------------
        toastr
--------------------*/
.toastr-row label {
  font-weight: 400;
}
.checkbox-list .checker span {
  float: left;
  margin-right: 10px;
}
.toastr-pad input, .toastr-row label {
  margin-bottom: 10px;
}
#toast-container > div, #toast-container > :hover {
  box-shadow: none;
}
pre {
  border-radius: 0;
  border: 1px solid #ddd;
  background: none;
}
/*------------------------------------
    font awesome & simple icon
---------------------------------------*/
.font-awesome-icon h4 {
  margin-top: 20px;
}
.fontawesome-list div, .simple-icon-list div {
  line-height: 35px;
}
.fontawesome-list div i, .simple-icon-list div i {
  width: 30px;
  display: inline-block;
}
.font-awesome-icon .page-header {
  border-bottom: 1px solid #ddd;
}
/*----------------------------
        slider
----------------------------*/
table.sliders tr td {
  padding: 30px 0;
  border: none;
}
.slider {
  margin-top: 3px;
}
.slider.ui-widget-content, .ui-slider.ui-widget-content {
  list-style: none;
  padding: 0;
  width: auto;
}
.slider-info {
  padding-top: 10px;
}
.sliders .ui-widget-header {
  background: #9c78cd !important;
  border-radius: 0px !important;
  -webkit-border-radius: 0px !important;
}
.ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br {
  border-bottom-right-radius: 0 !important;
}
.ui-corner-all, .ui-corner-bottom, .ui-corner-left, .ui-corner-bl {
  border-bottom-left-radius: 0 !important;
}
.ui-corner-all, .ui-corner-top, .ui-corner-right, .ui-corner-tr {
  border-top-right-radius: 0 !important;
}
.ui-corner-all, .ui-corner-top, .ui-corner-left, .ui-corner-tl {
  border-top-left-radius: 0 !important;
}
#eq span {
  height: 120px;
  float: left;
  margin: 15px;
}
.ui-widget-content {
  background: #f0f2f7 !important;
  border: none !important;
  border-radius: 0px !important;
  -webkit-border-radius: 0px !important;
}
.ui-slider-horizontal {
  height: 5px !important;
}
.ui-slider-horizontal .ui-slider-handle {
  top: -0.5em !important;
}
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
  background: #fff !important;
  border: 1px solid #d8dadf !important;
  border-radius: 50% !important;
  -webkit-border-radius: 50% !important;
}
.ui-widget-content .ui-slider-handle:after {
  content: "\f111";
  font-family: fontawesome;
  position: absolute;
  left: 5.5px;
  top: 4px;
  font-size: 8px;
  color: #b1b3b7;
}
.ui-slider-vertical {
  width: 5px !important;
}
.ui-slider-vertical .ui-slider-handle {
  left: -0.5em !important;
}
.ui-slider .ui-slider-handle {
  cursor: default;
  height: 1.3em;
  position: absolute;
  width: 1.3em;
  z-index: 2;
}
.bound-s {
  width: 90px;
  margin-bottom: 15px;
}
/*
-----------------
*/
.ion-list div {
  margin-bottom: 30px;
  display: inline-block;
  width: 100%;
}
.m-b-less {
  margin-bottom: 0;
}
.breadcrumb.bg-less {
  padding: 0;
}
.bg-less {
  background: none;
}
/**/
.sales-chart {
  display: inline-block;
  text-align: center;
  width: 100%;
  height: 215px;
}
/* star rating */
.rating {
  unicode-bidi: bidi-override;
  direction: rtl;
}
.rating span.star,
.rating span.star {
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  font-size: 22px;
}
.rating span.star:hover,
.rating span.star:hover {
  cursor: pointer;
}
.rating span.star:before,
.rating span.star:before {
  content: "\f006";
  padding-right: 5px;
  color: #BEC3C7;
}
.rating span.star:hover:before,
.rating span.star:hover:before,
.rating span.star:hover ~ span.star:before,
.rating span.star:hover ~ span.star:before {
  content: "\f005";
  color: #986cbc;
}
/*addon btn*/
.addon-btn.btn-sm i {
  width: 30px;
  height: 30px;
  margin: -6px -10px;
  margin-right: 10px;
  line-height: 30px;
}
.addon-btn.btn-sm i.pull-right {
  margin-right: -11px;
  margin-left: 10px;
}
.addon-btn i.pull-right {
  margin-right: -13px;
  margin-left: 12px;
}
.addon-btn.btn-lg i.pull-right {
  margin-right: -17px;
  margin-left: 15px;
}
.addon-btn.btn-lg i {
  width: 50px;
  height: 45px;
  margin: -10px -16px;
  margin-right: 15px;
  line-height: 45px;
}
.addon-btn i {
  float: left;
  width: 35px;
  height: 35px;
  line-height: 35px;
  margin: -6px -12px;
  margin-right: 10px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 2px 0 0 2px;
}
.addon-btn i.pull-right {
  border-radius: 0 2px 2px 0;
}
.addon-btn.btn-default i {
  background-color: transparent;
  border-right: 1px solid #c6cbcf;
}
.addon-btn.btn-default i.pull-right {
  background-color: transparent;
  border-left: 1px solid #c6cbcf;
}
/*---------------
    profile
--------------*/
.profile-hero {
  position: relative;
  background: url("img/profile-banner.jpg") no-repeat;
  background-size: cover;
  width: 100%;
  height: 359px;
}
.profile-intro {
  text-align: center;
  padding: 40px 0;
  color: #fff;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}
.profile-intro img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}
.profile-intro h1 {
  font-size: 34px;
  font-weight: normal;
  margin: 20px 0 5px 0;
}
.profile-intro span {
  font-size: 14px;
}
.profile-intro .s-n {
  margin-top: 15px;
}
.profile-intro .s-n a {
  display: inline-block;
  margin: 0 10px;
  color: #fff;
  font-size: 16px;
}
.profile-intro .s-n a:hover, .p-list li a:hover {
  color: #3bc781;
}
.profile-follow, .profile-value-info {
  position: absolute;
  bottom: 20px;
  color: #fff;
}
.profile-follow {
  left: 20px;
}
.profile-value-info {
  right: 20px;
}
.profile-value-info .info {
  color: #fff;
  display: inline-block;
  margin-left: 40px;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}
.profile-value-info .info span {
  display: block;
  font-size: 24px;
}
.profile-desk {
  border-collapse: collapse;
  border-spacing: 0;
  display: table;
  table-layout: fixed;
  width: 100%;
  /*min-height: 600px;*/
}
.profile-desk .p-short-info {
  width: 30%;
  background: #fff;
}
.profile-desk aside {
  display: table-cell;
  float: none;
  /*height: 100%;*/
  padding: 20px;
  vertical-align: top;
}
.profile-desk .p-aside {
  width: 70%;
  background: #f3f3f3;
}
.profile-info {
  border: 1px solid #e9e9e9;
}
.profile-info textarea, .profile-info textarea:focus {
  border: none;
  font-size: 14px;
  box-shadow: none;
}
.profile-info .panel-footer {
  background-color: #f9f9f9;
  border-top: none;
}
.profile-info .panel-footer ul li a {
  color: #adadad;
}
.profile-info .panel-footer .btn {
  margin-top: 4px;
}
.profile-timeline ul {
  list-style: none;
  padding: 0;
}
.profile-timeline ul li {
  padding: 15px 0;
  border-top: 1px solid #e6e5e5;
  display: inline-block;
  width: 100%;
}
.profile-timeline ul li .avatar {
  width: 30px;
  float: left;
  margin-right: 10px;
}
.profile-timeline ul li .avatar img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-block;
}
.profile-timeline ul li .avatar-desk {
  float: left;
  width: 90%;
}
.profile-timeline ul li .avatar-desk span {
  display: block;
  color: #c3c3c3;
  margin-bottom: 15px;
}
.profile-timeline ul li .avatar-desk .gallery a {
  display: inline-block;
  margin-right: 10px;
}
.title {
  border-bottom: 1px solid #efefef;
  margin-bottom: 20px;
  padding-bottom: 10px;
  display: inline-block;
  width: 100%;
}
.title h1 {
  font-size: 20px;
  margin: 0;
  font-weight: 300;
  color: #474748;
}
.team-m img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.team-m a {
  position: relative;
  width: 50px;
  height: 50px;
  margin: 0 16px 16px 0;
  display: inline-block;
}
.team-m a .dot.online {
  background: #5cc691;
}
.team-m a .dot.offline {
  background: #e6e6e6;
}
.team-m a .dot.busy {
  background: #ff6a6a;
}
.team-m a .dot.away {
  background: #ffd200;
}
.team-m a .dot {
  width: 12px;
  height: 12px;
  display: inline-block;
  position: absolute;
  background: #e6e6e6;
  border-radius: 50%;
  top: 0;
  right: 3px;
  left: auto;
  border: 2px solid #fff;
}
.widget {
  margin-bottom: 30px;
}
.widget p, .widget a.v-all {
  color: #9e9e9e;
}
.bio-row {
  width: 100%;
  float: left;
}
.bio-row p span {
  width: 100px;
  display: inline-block;
  color: #333;
}
.p-list {
  list-style: none;
  padding: 0;
}
.p-list li a {
  color: #999999;
  margin-bottom: 20px;
  display: block;
}
.p-list li a i {
  padding-right: 5px;
}
.work-progress .states {
  width: 100%;
}
.twt-feed {
  background: #f3f3f3;
  padding: 20px;
  text-align: center;
  position: relative;
}
.twt-feed:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  border-right: 5px solid #fff;
  border-bottom: 45px solid #fff;
  border-left: 45px solid #27baff;
  border-top: 6px solid #27baff;
  transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
}
.twt-feed:before {
  content: "\f099";
  font-family: fontawesome;
  left: 25px;
  position: absolute;
  top: 25px;
  z-index: 100;
  font-size: 18px;
  color: #fff;
}
.twt-feed img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 5px solid #fff;
}
.twt-feed h2, .twt-feed h2 a {
  font-size: 22px;
  text-transform: uppercase;
  color: #333;
}
.twt-feed a {
  color: #27baff;
}
/*------------------------------
        invoice
-------------------------------*/
.invoice {
  margin-bottom: 20px;
  display: inline-block;
  width: 100%;
}
.invoice h1 {
  color: #d5d5d5;
  font-size: 48px;
  text-transform: uppercase;
  font-family: "Abel", sans-serif;
}
.total-purchase {
  font-size: 16px;
  font-weight: bold;
  color: #2b2b2c;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.amount {
  background: #656565;
  color: #fff;
  font-size: 48px;
  font-family: "Abel", sans-serif;
  padding: 30px;
}
.inv-info span {
  padding-right: 20px;
}
/*------------------------------
        widget
-------------------------------*/
.state-alt.state-overview .value {
  border: none;
}
.state-alt .symbol span {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
}
.state-alt .symbol span i {
  width: 60px;
  height: 60px;
  line-height: 60px;
  color: #fff;
}
.state-alt .symbol {
  padding: 25px 15px;
}
.state-alt .value {
  margin-top: 30px;
}
.state-alt .value h1 {
  font-size: 24px;
  color: #2b2b2c;
  font-weight: 400;
}
.state-alt .value p {
  color: #a4a4a4;
}
.y-border {
  border-left: 2px solid #ffd200;
}
.g-border {
  border-left: 2px solid #53d192;
}
.p-border {
  border-left: 2px solid #9c78cd;
}
.b-border {
  border-left: 2px solid #6BD3F3;
}
/* widget profile */
.user-head img {
  width: 100%;
  height: auto;
}
.user-desk {
  text-align: center;
  position: relative;
}
.user-desk .avatar {
  position: absolute;
  top: -80px;
  left: 50%;
  margin-left: -57px;
}
.user-desk .avatar img {
  width: 115px;
  height: 115px;
  border-radius: 50%;
}
.user-desk h4 {
  margin-top: 60px;
  margin-bottom: 3px;
  font-weight: bold;
  letter-spacing: 2px;
}
.user-desk span {
  font-size: 13px;
  color: #b7b7b7;
}
.user-desk .s-n {
  margin-top: 10px;
}
.user-desk .s-n a {
  color: #c9c9c9;
  margin: 0 5px;
  font-size: 16px;
}
.user-desk .s-n a:hover {
  color: #53d293;
}
.user-p-list {
  padding: 0;
  margin: 20px 0;
  list-style: none;
}
.user-p-list li a {
  background: #f3f3f3;
  padding: 10px;
  display: block;
  width: 80%;
  margin: 0 auto 5px;
  color: #2e2e2f;
  border-radius: 3px;
}
.user-p-list li a:hover, .user-p-list li.active a {
  background: #53d293;
  color: #fff;
}
/*w-tabs*/
.w-tabs .panel-body, .w-tabs .nav-tabs.nav-justified > li > a,
.w-tabs .nav-tabs.nav-justified > .active > a,
.w-tabs .nav-tabs.nav-justified > .active > a:hover,
.w-tabs .nav-tabs.nav-justified > .active > a:focus {
  border: none;
}
.w-tabs .nav-tabs.nav-justified > li > a {
  padding: 15px;
  background: #454545;
  color: #fff;
}
.w-tabs .nav-tabs.nav-justified > .active > a,
.w-tabs .nav-tabs.nav-justified > .active > a:hover,
.w-tabs .nav-tabs.nav-justified > .active > a:focus {
  background: #53d293;
}
.w-foot:hover {
  background: #dd5e45;
}
.w-tabs .nav-tabs.nav-justified > li > a i {
  font-size: 20px;
}
.p-s-info .panel-body {
  padding: 30px 20px;
}
.s-l {
  margin-top: 10px;
}
.p-s-info .media-body a {
  color: #989898;
  text-decoration: underline;
  display: inline-block;
}
.p-s-info .media-body .s-l i {
  padding-right: 5px;
  float: left;
  margin-top: 4px;
  color: #bbbbbb;
}
.p-s-info .media-body .space-i i {
  padding-right: 5px;
  color: #bbbbbb;
}
.p-s-info .media-body .space-i span {
  margin-right: 15px;
}
.light-bg {
  background: #fff !important;
}
.twt-feed.light-bg:after {
  border-right: 5px solid #f3f3f3;
  border-bottom: 45px solid #f3f3f3;
}
.page-view-value.wht-color, .w-foot a {
  color: #fff !important;
}
.w-setting .team-list.chat-list-side {
  margin: 0 -15px 0px -15px !important;
}
.w-setting .team-list li .inline {
  width: 88% !important;
}
.w-login {
  color: #a1b1c2;
  text-decoration: underline;
}
.w-foot {
  color: #fff;
  background: #454545;
  border-radius: 0;
  border: none;
  text-align: center;
  padding: 20px;
}
.w-foot:hover {
  cursor: pointer;
}
.w-pad {
  padding: 10px;
}
.weather-wallpaper img, .k-avatar img {
  width: 100%;
  height: auto;
}
.weather-wallpaper {
  position: relative;
}
.w-location {
  position: absolute;
  top: 30px;
  color: #fff;
  width: 100%;
  text-align: center;
}
.w-location i {
  display: block;
  font-size: 70px;
  line-height: 80px;
}
.w-location span {
  font-size: 18px;
  margin-top: -15px;
  display: inline-block;
}
.w-location .degree:after {
  content: "o";
  position: relative;
  top: -12px;
  font-size: 14px;
}
.weather-list {
  padding: 0;
  list-style: none;
}
.weather-list li {
  width: 24%;
  text-align: center;
  display: inline-block;
  color: #989898;
}
.weather-list li.active {
  color: #333;
}
.weather-list li h5 {
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
}
.weather-list li i {
  font-size: 25px;
}
.weather-list .degree:after {
  content: "o";
  position: relative;
  top: -8px;
  font-size: 12px;
  color: #989898;
}
.w-p-view li {
  padding: 0;
}
.carousel-inner .item .media {
  padding: 0 30px;
}
.news-c .carousel-indicators {
  display: none;
}
.carousel.news-c {
  padding: 45px 15px;
}
.news-c .carousel-inner {
  margin-bottom: 0;
}
.n-comments {
  vertical-align: middle;
}
.n-comments span {
  display: block;
}
.n-comments strong {
  font-size: 30px;
}
.news-c .media-body {
  border-right: 1px solid #e5e5e5;
  padding-right: 20px;
  width: 80%;
}
.w-pie-chart {
  margin: 0 auto 20px;
}
.w-info {
  color: #9ea6ab;
}
.w-info h3 {
  font-size: 18px;
}
.w-info p {
  font-size: 13px;
}
.k-item {
  font-size: 32px;
  font-style: italic;
  color: #c6c6c6;
  font-weight: 300;
}
.k-info {
  margin: 40px 0;
}
.k-info h2 {
  font-size: 26px;
}
.k-info p {
  color: #9e9e9e;
}
.btn-dark {
  background: #454545;
  color: #fff;
}
.btn-dark:hover {
  background: #000000;
  color: #fff;
}
.s-p-info .avatar img {
  width: 130px;
  height: 130px;
}
.s-p-info h2 {
  font-size: 18px;
  color: #454545;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 5px;
}
.s-p-info p {
  color: #a4a4a4;
}
.social-btn {
  margin-top: 50px;
}
.social-btn a {
  width: 65px;
  height: 55px;
  line-height: 55px;
  font-size: 18px;
  color: #fff;
  text-align: center;
  display: inline-block;
  border-radius: 3px;
  margin: 0 5px;
}
.social-btn a.fb {
  background: #4b6cb6;
}
.social-btn a.twt {
  background: #59c2e6;
}
.social-btn a.drb {
  background: #ec4989;
}
.fav-list .media-left img {
  width: 40px;
  height: 40px;
}
.media.fav-list {
  margin-bottom: 20px;
}
.media.fav-list:last-child {
  margin-bottom: 0;
}
.fav-list .media-heading {
  font-size: 16px;
  text-transform: none;
}
.w-m-list {
  padding: 0;
  list-style: none;
  margin-bottom: 0;
}
.w-m-list li i {
  color: #bbbbbb;
  padding-right: 10px;
}
.w-m-list li i:after {
  content: "|";
  padding-left: 10px;
}
.w-m-list li {
  margin-bottom: 10px;
  padding: 5px;
}
.w-m-list li:hover {
  background: #8f67b1;
  color: #fff;
}
.w-m-list li:hover i, .w-m-list li:hover .text-muted {
  color: #fff;
}
.black-bg {
  background: #32323a;
}
/*--------------------
    Data Table
---------------------*/
.tbl-head {
  padding: 20px;
  padding-bottom: 0px;
  text-align: right;
}
.tbl-top {
  padding: 20px;
  border-bottom: #ccc 1px solid;
}
.table.dataTable.no-footer {
  border-bottom: #ccc 1px solid;
}
.data-table.table > thead > tr > th, .data-table.table > tbody > tr > th, .data-table.table > tfoot > tr > th, .data-table.table > thead > tr > td, .data-table.table > tbody > tr > td, .data-table.table > tfoot > tr > td {
  border-bottom: #ccc 0px solid;
}
.tbl-footer {
  padding: 0px 20px;
}
.tbl-info {
  margin-top: 20px;
}
.tbl-info-large {
  padding: 0px 20px 20px 0px;
}
td.details-control {
  background: url("img/details_open.png") no-repeat center center;
  cursor: pointer;
}
tr.shown td.details-control {
  background: url("img/details_close.png") no-repeat center center;
}
.dataTables_wrapper .ColVis_Button, ul.ColVis_collection, ul.ColVis_collection li, ul.ColVis_collection li:hover {
  box-shadow: none;
  border-radius: 2px;
  border-color: #ddd;
  outline: none;
  background: linear-gradient(to bottom, #fff 0%, #fff 89%, #fff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#fff",GradientType=0 );
}
ul.ColVis_collection li:hover {
  background: #efefef;
}
.dataTables_wrapper button.ColVis_Button {
  height: auto;
  padding: 10px 15px;
}
.dataTables_wrapper.no-footer .dataTables_scrollBody {
  border-bottom: 1px solid #ddd;
}
/*---------------
    form
----------------*/
.form-control:focus {
  box-shadow: none;
}
.input-group-btn > .btn {
  position: relative;
  background: #eee;
  border-radius: 0;
  border: 1px solid #dfdfdf;
}
.radio-box, .check-box {
  margin-bottom: 10px;
}
.radio-box input, .check-box input,
.checkbox-inline input {
  margin-right: 10px;
}
.radio-inline, .checkbox-inline {
  padding-left: 0;
}
.btn:focus, .btn:active:focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn.active.focus {
  outline: none;
}
.input-group-addon {
  border: 1px solid #dfdfdf;
  border-radius: 0px;
}
.input-group-lg > .form-control, .input-group-lg > .input-group-addon, .input-group-lg > .input-group-btn > .btn,
.input-group-sm > .form-control, .input-group-sm > .input-group-addon, .input-group-sm > .input-group-btn > .btn {
  border-radius: 0px;
}
.sm-input {
  width: 175px;
}
.form-horizontal.tasi-form .form-group, .s-row {
  border-bottom: 1px solid #eff2f7;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.form-horizontal.tasi-form .form-group:last-child {
  border-bottom: none;
  padding-bottom: 0px;
  margin-bottom: 0px;
}
.form-horizontal.tasi-form .form-group .help-block {
  margin-bottom: 0;
}
.round-input {
  border-radius: 500px;
  -webkit-border-radius: 500px;
}
.form-horizontal.tasi-form .checkbox-inline > input {
  margin-top: 1px;
  border: none;
}
.iconic-input {
  position: relative;
}
.iconic-input i {
  color: #CCCCCC;
  display: block;
  font-size: 15px;
  height: 16px;
  margin: 10px 5px 8px 10px;
  position: absolute;
  text-align: center;
  width: 16px;
}
.iconic-input input {
  padding-left: 30px !important;
}
.iconic-input.right input {
  padding-left: 10px !important;
  padding-right: 30px !important;
}
.iconic-input.right i {
  float: right;
  right: 5px;
}
input.spinner[type=text], input.spinner[type=password], input.spinner[type=datetime], input.spinner[type=datetime-local], input.spinner[type=date], input.spinner[type=month], input.spinner[type=time], input.spinner[type=week], input.spinner[type=number], input.spinner[type=email], input.spinner[type=url], input.spinner[type=search], input.spinner[type=tel], input.spinner[type=color] {
  background: url("img/spinner.gif") right no-repeat !important;
}
.has-success .form-control:focus,
.has-warning .form-control:focus,
.has-error .form-control:focus {
  box-shadow: none;
}
/*-------------------
    ion slider
-------------------*/
.ion-list div {
  margin-bottom: 30px;
  display: inline-block;
  width: 100%;
}
/*------------------------------
        nestable
-------------------------------*/
.dd-handle, .dd3-content {
  height: 40px;
  padding: 10px;
  color: #333;
  font-weight: normal;
  border: 1px solid #dfdfdf;
  background: #fff;
  border-radius: 3px;
}
.dd-item > button {
  height: 30px;
  outline: none;
}
.dd3-content {
  padding-left: 50px;
}
.dd3-handle {
  width: 40px;
}
.dd3-item > button {
  margin-left: 40px;
}
.dd3-handle:before {
  top: 6px;
  color: #333;
  font-size: 30px;
}
.dd3-content:hover, .dd-handle:hover {
  color: #333;
  background: #f8f8f8;
}
.dd3-handle:hover {
  background: #404040;
  border: 1px solid #404040;
}
.dd3-handle:hover:before {
  color: #fff;
}
.dd-handle.dd3-handle {
  border-radius: 3px 0 0 3px;
}
.s-animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}
/*------------------
    timeline
-------------------*/
.time-line-wrapper {
  border-collapse: collapse;
  border-spacing: 0;
  display: table;
  position: relative;
  table-layout: fixed;
  width: 100%;
}
.time-line-caption {
  display: table-caption;
  text-align: center;
}
.time-line-wrapper:before {
  background-color: #d1d1d1;
  bottom: 5px;
  content: "";
  left: 50%;
  position: absolute;
  top: 25px;
  width: 1px;
  z-index: 0;
}
h3.time-line-title {
  margin: 0;
  color: #333;
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 20px 0;
  text-transform: uppercase;
  height: 40px;
}
.time-line-row:before, .time-line-row.alt:after {
  content: "";
  display: block;
  width: 50%;
}
.time-line-row {
  display: table-row;
}
.time-line-info .title {
  margin-bottom: 15px;
}
.time-line-info {
  display: table-cell;
  vertical-align: top;
  width: 50%;
}
.time-line-info h1 {
  font-size: 16px;
  font-weight: bold;
  margin: 0;
}
.time-line-info .panel {
  display: block;
  margin-left: 25px;
  position: relative;
  text-align: left;
  background: #fff;
}
.time-line-row .time-line-info .arrow {
  border-bottom: 8px solid transparent;
  border-top: 8px solid transparent;
  display: block;
  height: 0;
  left: -7px;
  position: absolute;
  top: 13px;
  width: 0;
  border-right: 8px solid #fff !important;
}
.time-line-row.alt .time-line-info .arrow-alt {
  border-bottom: 8px solid transparent;
  border-top: 8px solid transparent;
  display: block;
  height: 0;
  right: -7px;
  position: absolute;
  top: 13px;
  width: 0;
  left: auto;
  border-left: 8px solid #fff !important;
}
.time-line-wrapper .time-line-ico-box {
  left: -30px;
  position: absolute;
  top: 15px;
  background: #C7CBD6;
  box-shadow: 0 0 0 5px #f3f3f3;
}
.time-line-info span a {
  text-transform: uppercase;
}
.time-line-info h1.red, .time-line-info span a.red {
  color: #EF6F66;
}
.time-line-info h1.green, .time-line-info span a.green {
  color: #39B6AE;
}
.time-line-info h1.blue, .time-line-info span a.blue {
  color: #56C9F5;
}
.time-line-info h1.purple, .time-line-info span a.purple {
  color: #8074C6;
}
.time-line-info h1.light-green, .time-line-info span a.light-green {
  color: #A8D76F;
}
.time-line-wrapper .time-line-ico-box.red,
.time-line-wrapper .time-line-subject.red {
  background: #fa6f6a;
  color: #fff;
}
.time-line-wrapper .time-line-ico-box.green,
.time-line-wrapper .time-line-subject.green {
  background: #5bc690;
  color: #fff;
}
.time-line-wrapper .time-line-ico-box.blue,
.time-line-wrapper .time-line-subject.blue {
  background: #69c2fe;
  color: #fff;
}
.time-line-wrapper .time-line-ico-box.purple,
.time-line-wrapper .time-line-subject.purple {
  background: #a978d1;
  color: #fff;
}
.time-line-wrapper .time-line-ico-box.yellow,
.time-line-wrapper .time-line-subject.yellow {
  background: #ffd200;
  color: #fff;
}
.time-line-wrapper .time-line-ico-box.gray,
.time-line-wrapper .time-line-subject.gray {
  background: #9a9a9a;
  color: #fff;
}
.time-line-wrapper .time-line-ico-box {
  border: 0px solid #FFFFFF;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  display: block;
  height: 12px;
  width: 12px;
  z-index: 100;
}
.time-line-row.alt .time-line-ico-box {
  left: auto;
  right: -32px;
}
.time-line-wrapper .time-icon:before {
  font-size: 16px;
  margin-top: 5px;
}
.time-line-wrapper .time-line-subject {
  left: -174px;
  position: absolute;
  text-align: right;
  top: 0px;
  width: 150px;
  background: #fff;
  padding: 10px 20px;
  border-radius: 5px 0 0 5px;
}
.time-line-wrapper .time-line-subject i {
  margin-top: 4px;
  padding-right: 10px;
}
.time-line-info h5 span {
  color: #999999;
  display: block;
  font-size: 12px;
  margin-bottom: 4px;
}
.time-line-row.alt:before {
  display: none;
}
.time-line-row:before, .time-line-row.alt:after {
  content: "";
  display: block;
  width: 50%;
}
.time-line-info p {
  font-size: 13px;
  margin-bottom: 20px;
}
.time-line-info p:last-child {
  margin-bottom: 0;
}
.time-line-info .panel {
  margin-bottom: 30px;
}
.time-line-info .album {
  margin-top: 20px;
}
.time-line-info .album a {
  margin-top: 5px;
  margin-left: 5px;
  float: left;
}
.time-line-info .notification {
  background: none repeat scroll 0 0 #FFFFFF;
  margin-top: 20px;
  padding: 8px;
}
.time-line-row.alt .panel {
  margin-left: 0;
  margin-right: 25px;
  text-align: right;
}
.time-line-row.alt .time-line-subject {
  left: auto;
  right: -175px;
  text-align: left;
  border-radius: 0 5px 5px 0;
}
.panel-timeline {
  position: relative;
}
.fb-timeliner {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
}
.fb-timeliner ul {
  margin: 0px;
  list-style: none;
  padding: 0;
}
.fb-timeliner ul li {
  margin-bottom: 3px;
}
.fb-timeliner ul li a {
  color: #9a9a9a;
  border-left: 4px solid #d9d9d9;
  padding-left: 10px;
  padding-top: 3px;
  padding-bottom: 3px;
  display: block;
}
.fb-timeliner ul li a:hover {
  color: #999797;
  border-left: 4px solid #4a4a51;
  padding-left: 10px;
}
.fb-timeliner ul li.active a {
  color: #4a4a51;
  border-left: 4px solid #4a4a51;
  padding-left: 10px;
}
/*-------------------
    summernote
-------------------*/
.note-editor .note-toolbar {
  background-color: #f3f3f3;
  border-bottom: 1px solid #dfdfdf;
  margin: 0;
}
.note-editor {
  position: relative;
  border: 1px solid #dfdfdf;
}
.note-editor .note-statusbar {
  background-color: #fff;
}
.note-editor .note-statusbar .note-resizebar {
  height: 15px;
  border-top: 1px solid #dfdfdf;
  padding-top: 3px;
}
.note-popover .popover .popover-content, .note-toolbar {
  padding: 5px 0 10px 5px;
}
/*------------------
    form validation
------------------*/
.cmxform .form-group label.error {
  display: inline-block;
  margin: 8px 0;
  color: #e55957;
  font-weight: 400;
  white-space: nowrap;
}
.cmxform .form-group .chk-fv label.error {
  margin-left: 30px !important;
  display: inline-block;
  margin: 0;
}
.m-t-less-6 {
  margin-top: -6px;
}
/*------------------
    form wizard
------------------*/
.wizard > .content {
  background: #fff;
}
.wizard > .content > .body {
  padding: 0px;
}
.wizard > .content > .body ul > li {
  display: block;
}
.wizard > .steps .number {
  font-size: 13px;
  text-align: center;
  background: #ccc;
  color: #323232;
  width: 30px;
  height: 30px;
  display: inline-block;
  line-height: 30px;
  border-radius: 50%;
  margin-right: 10px;
}
.wizard > .steps .disabled a, .wizard > .steps .disabled a:hover, .wizard > .steps .disabled a:active {
  background: #e8e8e8;
  color: #323232;
  cursor: default;
}
.wizard > .steps a, .wizard > .steps a:hover, .wizard > .steps a:active, .wizard > .content {
  border-radius: 2px;
}
.wizard > .steps .current a,
.wizard > .steps .current a:hover,
.wizard > .steps .current a:active {
  background: #53D192;
}
.wizard > .steps .current a .number,
.wizard > .steps .current a:hover .number,
.wizard > .steps .current a:active .number {
  background: #fff;
  color: #53D192;
}
.wizard > .steps .done a, .wizard > .steps .done a:hover, .wizard > .steps .done a:active {
  background: #989898;
  /*color: #323232;*/
}
.wizard > .content > .body label.error {
  margin-left: 0;
  color: #e55957;
}
.wizard > .actions {
  margin-bottom: 30px;
}
.wizard > .actions a, .wizard > .actions a:hover, .wizard > .actions a:active {
  background: #53D192;
  color: #fff;
  border-radius: 2px;
}
.wizard > .actions .disabled a, .wizard > .actions .disabled a:hover, .wizard > .actions .disabled a:active {
  background: #e2e2e2;
  color: #323232;
}
.wizard > .content > .body label {
  display: inline-block;
  margin-top: 10px;
}
.wizard > .content > .body ul > li {
  display: block;
  line-height: 30px;
}
/*---------------
    profile
--------------*/
.profile-hero {
  position: relative;
  background: url("img/profile-banner.jpg") no-repeat;
  background-size: cover;
  width: 100%;
  height: 359px;
}
.profile-intro {
  text-align: center;
  padding: 40px 0;
  color: #fff;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}
.profile-intro img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}
.profile-intro h1 {
  font-size: 34px;
  font-weight: normal;
  margin: 20px 0 5px 0;
}
.profile-intro span {
  font-size: 14px;
}
.profile-intro .s-n {
  margin-top: 15px;
}
.profile-intro .s-n a {
  display: inline-block;
  margin: 0 10px;
  color: #fff;
  font-size: 16px;
}
.profile-intro .s-n a:hover, .p-list li a:hover {
  color: #3bc781;
}
.profile-follow, .profile-value-info {
  position: absolute;
  bottom: 20px;
  color: #fff;
}
.profile-follow {
  left: 20px;
}
.profile-value-info {
  right: 20px;
}
.profile-value-info .info {
  color: #fff;
  display: inline-block;
  margin-left: 40px;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}
.profile-value-info .info span {
  display: block;
  font-size: 24px;
}
.profile-desk {
  border-collapse: collapse;
  border-spacing: 0;
  display: table;
  table-layout: fixed;
  width: 100%;
  /*min-height: 600px;*/
}
.profile-desk .p-short-info {
  width: 30%;
  background: #fff;
}
.profile-desk aside {
  display: table-cell;
  float: none;
  /*height: 100%;*/
  padding: 20px;
  vertical-align: top;
}
.profile-desk .p-aside {
  width: 70%;
  background: #f3f3f3;
}
.profile-info {
  border: 1px solid #e9e9e9;
  min-height: 120px;
}
.profile-info textarea, .profile-info textarea:focus {
  border: none;
  font-size: 14px;
  box-shadow: none;
}
.profile-info .panel-footer {
  background-color: #f9f9f9;
  border-top: none;
}
.profile-info .panel-footer ul li a {
  color: #adadad;
}
.profile-info .panel-footer .btn {
  margin-top: 4px;
}
.profile-timeline ul {
  list-style: none;
  padding: 0;
}
.profile-timeline ul li {
  padding: 15px 0;
  border-top: 1px solid #e6e5e5;
  display: inline-block;
  width: 100%;
}
.profile-timeline ul li .avatar {
  width: 30px;
  float: left;
  margin-right: 10px;
}
.profile-timeline ul li .avatar img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-block;
}
.profile-timeline ul li .avatar-desk {
  float: left;
  width: 90%;
}
.profile-timeline ul li .avatar-desk span {
  display: block;
  color: #c3c3c3;
  margin-bottom: 15px;
}
.profile-timeline ul li .avatar-desk .gallery a {
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 10px;
}
.title {
  border-bottom: 1px solid #efefef;
  margin-bottom: 20px;
  padding-bottom: 10px;
  display: inline-block;
  width: 100%;
}
.title h1 {
  font-size: 20px;
  margin: 0;
  font-weight: 300;
  color: #474748;
}
.team-m img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.team-m a {
  position: relative;
  width: 50px;
  height: 50px;
  margin: 0 16px 16px 0;
  display: inline-block;
}
.team-m a .dot.online {
  background: #5cc691;
}
.team-m a .dot.offline {
  background: #e6e6e6;
}
.team-m a .dot.busy {
  background: #ff6a6a;
}
.team-m a .dot.away {
  background: #ffd200;
}
.team-m a .dot {
  width: 12px;
  height: 12px;
  display: inline-block;
  position: absolute;
  background: #e6e6e6;
  border-radius: 50%;
  top: 0;
  right: 3px;
  left: auto;
  border: 2px solid #fff;
}
.widget {
  margin-bottom: 30px;
}
.widget p, .widget a.v-all {
  color: #9e9e9e;
}
.bio-row {
  width: 100%;
  float: left;
}
.bio-row p span {
  width: 100px;
  display: inline-block;
  color: #333;
}
.p-list {
  list-style: none;
  padding: 0;
}
.p-list li a {
  color: #999999;
  margin-bottom: 20px;
  display: block;
}
.p-list li a i {
  padding-right: 5px;
}
.work-progress .states {
  width: 100%;
}
.twt-feed {
  background: #f3f3f3;
  padding: 20px;
  text-align: center;
  position: relative;
}
.twt-feed:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  border-right: 5px solid #fff;
  border-bottom: 45px solid #fff;
  border-left: 45px solid #27baff;
  border-top: 6px solid #27baff;
  transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
}
.twt-feed:before {
  content: "\f099";
  font-family: fontawesome;
  left: 25px;
  position: absolute;
  top: 25px;
  z-index: 100;
  font-size: 18px;
  color: #fff;
}
.twt-feed img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 5px solid #fff;
}
.twt-feed h2, .twt-feed h2 a {
  font-size: 22px;
  text-transform: uppercase;
  color: #333;
}
.twt-feed a {
  color: #27baff;
}
/*--------------
      map
---------------*/
.gmaps {
  height: 310px;
  width: 100%;
}
.map-search .form-group, .map-search .form-group input {
  width: 100%;
}
.vmap-space {
  width: 100%;
  height: 350px;
}
/*--------------------
        calendar
---------------------*/
.has-toolbar.fc {
  margin-top: 50px;
}
.fc-header-title {
  display: inline-block;
  margin-top: -50px;
  vertical-align: top;
}
.fc-view {
  margin-top: -50px;
  overflow: hidden;
  width: 100%;
}
.fc-header-left .fc-button-today .fc-button-inner {
  background: #f2f2f2 !important;
  border-color: #f2f2f2;
  border-style: none solid;
  color: #8B8B8B;
}
.fc-header-left .fc-button-today {
  border-radius: 2px !important;
}
.fc-state-default, .fc-state-default .fc-button-inner {
  background: #f2f2f2 !important;
  border-color: #f2f2f2;
  border-style: none solid;
  color: #c2c2c2;
}
.fc-header-right .fc-state-default .fc-button-inner,
.fc-header-left .fc-state-default:hover .fc-button-inner {
  background: #53D192 !important;
  border-color: #53D192;
  border-style: none solid;
  color: #fff;
}
.fc-header-right .fc-state-default .fc-button-inner:hover,
.fc-header-right .fc-state-active .fc-button-inner {
  background: #2f9f67 !important;
  border-color: #2f9f67;
  border-style: none solid;
  color: #fff;
}
.fc-header .fc-button {
  margin-right: 1px;
}
.fc-event-skin {
  background-color: #5fc6e6 !important;
  border-color: #5fc6e6 !important;
  color: #FFFFFF !important;
}
.fc-grid th {
  height: 30px;
  line-height: 30px;
  text-align: center;
  background: #f6f6f6 !important;
}
.fc-header-title h2 {
  font-size: 20px !important;
  color: #404047;
  font-weight: normal;
  margin-top: 8px;
}
.fc-widget-header, .fc-widget-content {
  border-color: #ebebeb !important;
  color: #a3a3a3 !important;
  font-weight: normal;
}
.external-event {
  cursor: move;
  display: inline-block !important;
  margin-bottom: 6px !important;
  margin-right: 6px !important;
  padding: 8px 15px;
  border-radius: 0;
  font-size: 12px;
  font-weight: normal;
  font-family: "Source Sans Pro", sans-serif;
}
#external-events p input[type=checkbox] {
  margin: 0;
}
.drg-event-title {
  font-weight: 300;
  margin-top: 0;
  margin-bottom: 20px;
}
.fc-content .fc-event {
  border-radius: 0px;
  padding: 4px 6px;
}
.fc-corner-left {
  border-radius: 2px 0 0 2px;
  -webkit-border-radius: 2px 0 0 2px;
}
.fc-corner-right {
  border-radius: 0 2px 2px 0;
  -webkit-border-radius: 0 2px 2px 0;
}
.drp-rmv {
  padding-top: 10px;
  margin-top: 10px;
}
/*-------------------------------
        slick carousel
--------------------------------*/
.slick-carousal {
  background: url("img/news_image.jpg") no-repeat;
  padding: 20px 10px;
  color: #fff;
  position: relative;
  width: 100%;
  height: 278px;
  background-size: cover;
}
.overlay-c-bg {
  background: rgba(68, 68, 68, 0.9);
  width: 100%;
  height: 278px;
  position: absolute;
  left: 0;
  top: 0;
}
.slick-carousal h1 {
  text-align: center;
  font-size: 14px;
  margin: 40px 20px;
  line-height: 20px;
  font-weight: normal;
  font-style: italic;
}
.slick-carousal h3, .slick-carousal .date {
  text-align: center;
  font-size: 12px;
  margin: 5px;
  font-weight: normal;
  text-transform: uppercase;
}
.slick-carousal .date {
  display: block;
  margin: 0;
}
a.view-all {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 5px 15px;
  text-align: center;
  border-radius: 25px;
  -webkit-border-radius: 25px;
  margin-bottom: 18px;
  display: inline-block;
  text-transform: uppercase;
  font-size: 12px;
  margin-top: 20px;
}
a.view-all:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #000;
}
.slick-carousal #owl-demo .item img {
  display: block;
  width: 100%;
  height: auto;
}
.slick-carousal .owl-buttons {
  position: absolute;
  top: 50%;
  margin-top: -8px;
  width: 100%;
}
.slick-carousal .owl-carousel .owl-item {
  overflow: hidden;
}
.slick-carousal .owl-prev, .owl-next {
  position: absolute;
}
.slick-carousal .owl-next {
  right: 0;
}
.slick-carousal .owl-buttons .owl-prev {
  text-indent: -9999px;
  background: url("img/left-arrow.png") no-repeat;
  width: 16px;
  height: 16px;
  display: inline-block;
}
.slick-carousal .owl-buttons .owl-next {
  text-indent: -9999px;
  background: url("img/right-arrow.png") no-repeat;
  width: 16px;
  height: 16px;
  display: inline-block;
}
/*----------------------
    different theme layout
-----------------------*/
.d-theme img {
  width: 100%;
  height: auto;
  border: 1px solid #D9D9D9;
}
/*----------------------
    gallery
-----------------------*/
.gal-tools a {
  color: #555;
  margin-left: 20px;
}
.gal-tools a:hover {
  color: #53d192;
}
.gal-tools a i {
  padding-right: 5px;
}
.gal-upload .file-caption {
  display: none;
}
.gallery {
  margin: 0 0 0 -20px;
  padding: 0;
}
.gallery li {
  display: inline-block;
  width: 30%;
  margin: 0 0 20px 21px;
}
.gallery li img {
  width: 100%;
  height: auto;
}
/* MEDIA QUERIES */
@media screen and (max-width: 1024px) {
  body {
    position: relative;
  }
  .sidebar-left {
    display: none;
  }
  .body-content {
    margin-left: 0;
    width: 100%;
  }
  .logo {
    display: none;
  }
  .sidebar-collapsed .sidebar-left {
    display: none;
  }
  .sidebar-collapsed .icon-logo {
    display: none;
  }
  .sidebar-collapsed .body-content {
    margin-left: 0;
  }
  .sidebar-collapsed .header-section {
    margin-left: 0;
  }
  .sidebar-open section {
    overflow-x: hidden;
  }
  .sidebar-open .sidebar-left {
    display: block;
  }
  .sidebar-open .body-content {
    margin-left: 240px;
  }
  .sidebar-open .logo {
    display: block;
  }
  .btn-demo {
    margin-bottom: 20px;
  }
  .left-sideinner {
    padding: 5px 10px;
  }
  .left-sideinner .search-content input {
    background: #fff;
    border: 0;
  }
  .sticky-header .header-section {
    left: 0;
  }
  .sticky-header.sidebar-open .header-section {
    left: 240px;
  }
  .sticky-header.sidebar-collapsed .header-section {
    left: 0;
  }
  .sticky-header .right-notification {
    margin-right: 0px;
  }
  .non-sticky-header .sidebar-left-info {
    margin-top: 60px;
  }
  .non-sticky-header .side-navigation {
    margin-top: 0px;
  }
  .non-sticky-header .sidebar-left .search-content {
    margin-top: 60px;
  }
  .sticky-sidebar {
    position: absolute;
  }
  .wide-full {
    width: auto;
  }
  .gallery li {
    width: 45%;
  }
}
@media screen and (max-width: 767px) {
  .search-content {
    position: relative;
  }
  .search-content input {
    background: #fff;
  }
  .sidebar-left .search-content {
    display: block;
  }
  .breadcrumb-wrapper, .search-content {
    display: none;
  }
  .mail-box aside {
    display: block;
  }
  .mail-box .sm-side, .mail-box .lg-side, .profile-desk .p-aside, .profile-desk .p-short-info {
    width: 100%;
    display: inline-block;
  }
  .profile-timeline ul li .avatar-desk .gallery a {
    margin-bottom: 10px;
  }
  .profile-follow, .profile-value-info {
    text-align: center;
    position: static;
    margin-bottom: 10px;
  }
  .profile-intro {
    padding: 20px 0;
  }
  .fb-timeliner {
    display: none;
  }
  .compose-mail .compose-options {
    top: 26px;
  }
  /* full calendar fix */
  .fc-header-right {
    right: 15px;
    position: absolute;
  }
  .fc-header-left .fc-button {
    margin: 0px !important;
    top: 0px !important;
  }
  .fc-header-right .fc-button {
    margin: 0px !important;
    top: -50px !important;
  }
  .fc-state-active, .fc-state-active .fc-button-inner, .fc-state-hover, .fc-state-hover .fc-button-inner {
    background: none !important;
    color: #FFFFFF !important;
  }
  .fc-state-default, .fc-state-default .fc-button-inner {
    background: none !important;
  }
  .fc-button {
    border: none !important;
    margin-right: 2px;
  }
  .fc-view {
    top: 0px !important;
  }
  .fc-button .fc-button-inner {
    margin: 0px !important;
    padding: 2px !important;
    margin-right: 2px !important;
    background-color: #fafafa !important;
    background-image: linear-gradient(to bottom, #f2f2f2, #f2f2f2) !important;
    filter: progid:dximagetransform.microsoft.gradient(startColorstr="#f2f2f2", endColorstr="#f2f2f2", GradientType=0) !important;
    box-shadow: none !important;
    border-radius: 2px !important;
    color: #fff !important;
    border: none !important;
    text-shadow: none !important;
    text-align: center;
  }
  .fc-button.fc-state-disabled .fc-button-inner,
  .fc-header-left .fc-button .fc-button-inner {
    color: #bcbbbb !important;
  }
  .fc-button.fc-state-active .fc-button-inner {
    background-color: #e5e4e4 !important;
    background-image: linear-gradient(to bottom, #e5e4e4, #dddcdc) !important;
    filter: progid:dximagetransform.microsoft.gradient(startColorstr="#e5e4e4", endColorstr="#dddcdc", GradientType=0) !important;
  }
  .fc-content {
    margin-top: 50px;
  }
  .fc-header-title h2 {
    line-height: 40px !important;
    font-size: 15px !important;
  }
  .fc-header {
    margin-bottom: 0px !important;
  }
  .fc-header-left, .fc-header-center, .fc-header-right {
    width: 100%;
    display: block;
  }
  .fc-header-title h2 {
    margin-top: -35px;
  }
  .fc-header-right .fc-state-default .fc-button-inner,
  .fc-header-left .fc-state-default:hover .fc-button-inner {
    background: #53D192 !important;
    border-color: #53D192;
    border-style: none solid;
    color: #fff !important;
  }
  .fc-header-right .fc-state-default .fc-button-inner:hover,
  .fc-header-right .fc-state-active .fc-button-inner {
    background: #2f9f67 !important;
    border-color: #2f9f67;
    border-style: none solid;
    color: #fff;
  }
  .mail-box aside {
    height: auto;
  }
  .gallery {
    margin: 0;
  }
  .gallery li {
    width: 100%;
    margin: 0 0 20px 0;
  }
}
@media screen and (max-width: 640px) {
  .compose-mail .compose-options {
    top: 26px;
  }
}
@media screen and (max-width: 480px) {
  .compose-mail .compose-options {
    top: 26px;
  }
}
@media only screen and (max-width: 479px) {
  .state-information {
    display: inline-block;
    margin-top: 20px;
    position: static;
    width: 100%;
  }
  .state-information .state-graph {
    float: left;
    margin-left: 0;
    margin-right: 30px;
    text-align: center;
  }
  .notification-menu li:nth-child(2) .dropdown-menu {
    margin-right: 0px !important;
  }
  .notification-menu .dropdown-title {
    min-width: 265px;
    padding: 0;
  }
  .error-wrapper .icon-404,
  .error-wrapper .icon-500 {
    width: 100%;
  }
  .error-wrapper .icon-404 {
    margin: 0;
  }
  .body-500 .error-wrapper h2 {
    margin: -5px 0 30px -6px;
  }
  .login-social-link a.facebook {
    margin-right: 20px;
  }
  .mail-box aside {
    display: block;
  }
  .mail-box .sm-side, .mail-box .lg-side, .profile-desk .p-aside, .profile-desk .p-short-info {
    width: 100%;
    display: inline-block;
  }
  .profile-timeline ul li .avatar-desk .gallery a {
    margin-bottom: 10px;
  }
  .profile-follow, .profile-value-info {
    text-align: center;
    position: static;
  }
  .profile-intro {
    padding: 20px 0;
  }
  .notification-menu .info-number {
    padding: 0px 10px;
  }
  .team-list li a {
    text-align: center;
  }
  .fc-header-title h2 {
    margin-top: -35px;
  }
  button.btn {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 360px) {
  .notification-menu li:first-child .dropdown-menu {
    margin-right: -90px;
  }
  .notification-menu li:nth-child(2) .dropdown-menu {
    margin-right: -45px;
  }
  .notification-menu li:nth-child(3) .dropdown-menu {
    margin-right: 0px;
  }
  .nav-tabs.nav-justified.nav-profile > li {
    float: none;
    display: block;
    width: auto;
  }
  .d-none {
    display: none;
  }
}
@media screen and (max-width: 320px) {
  .d-none {
    display: none;
  }
}
div.tagsinput {
  border: 1px solid #e5e5e5;
  background: #FFF;
  padding: 5px;
  width: 300px;
  height: 100px;
  overflow-y: auto;
  border-radius: 2px;
}
div.tagsinput span.tag {
  border-radius: 2px;
  display: block;
  float: left;
  padding: 8px 10px 5px 10px;
  text-decoration: none;
  background: #53D192;
  color: #226C5A;
  margin-right: 5px;
  margin-bottom: 5px;
  font-family: helvetica;
  font-size: 13px;
}
div.tagsinput span.tag a {
  font-weight: bold;
  color: #226C5A;
  text-decoration: none;
  font-size: 11px;
}
div.tagsinput input {
  width: 80px;
  margin: 0px;
  font-family: helvetica;
  font-size: 13px;
  border: 1px solid transparent;
  padding: 5px;
  background: transparent;
  color: #000;
  outline: 0px;
  margin-right: 5px;
  margin-bottom: 5px;
}
div.tagsinput div {
  display: block;
  float: left;
}
.tags_clear {
  clear: both;
  width: 100%;
  height: 0px;
}
.not_valid {
  background: #FBD8DB !important;
  color: #90111A !important;
}
.toast-title {
  font-weight: 700;
}
.toast-message {
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}
.toast-message a, .toast-message label {
  color: #fff;
}
.toast-message a:hover {
  color: #ccc;
  text-decoration: none;
}
.toast-close-button {
  position: relative;
  right: -0.3em;
  top: -0.3em;
  float: right;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  -webkit-text-shadow: 0 1px 0 #fff;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.8;
  -ms-filter: alpha(Opacity=80);
  filter: alpha(opacity=80);
}
.toast-close-button:focus, .toast-close-button:hover {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.4;
  -ms-filter: alpha(Opacity=40);
  filter: alpha(opacity=40);
}
button.toast-close-button {
  padding: 0;
  cursor: pointer;
  background: 0 0;
  border: 0;
  -webkit-appearance: none;
}
.toast-top-center {
  top: 0;
  right: 0;
  width: 100%;
}
.toast-bottom-center {
  bottom: 0;
  right: 0;
  width: 100%;
}
.toast-top-full-width {
  top: 0;
  right: 0;
  width: 100%;
}
.toast-bottom-full-width {
  bottom: 0;
  right: 0;
  width: 100%;
}
.toast-top-left {
  top: 12px;
  left: 12px;
}
.toast-top-right {
  top: 12px;
  right: 12px;
}
.toast-bottom-right {
  right: 12px;
  bottom: 12px;
}
.toast-bottom-left {
  bottom: 12px;
  left: 12px;
}
#toast-container {
  position: fixed;
  z-index: 999999;
}
#toast-container * {
  box-sizing: border-box;
}
#toast-container > div {
  position: relative;
  overflow: hidden;
  margin: 0 0 6px;
  padding: 15px 15px 15px 50px;
  width: 300px;
  border-radius: 3px;
  background-position: 15px center;
  background-repeat: no-repeat;
  box-shadow: 0 0 12px #999;
  color: #fff;
  opacity: 0.8;
  -ms-filter: alpha(Opacity=80);
  filter: alpha(opacity=80);
}
#toast-container > :hover {
  box-shadow: 0 0 12px #000;
  opacity: 1;
  -ms-filter: alpha(Opacity=100);
  filter: alpha(opacity=100);
  cursor: pointer;
}
#toast-container > .toast-info {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGwSURBVEhLtZa9SgNBEMc9sUxxRcoUKSzSWIhXpFMhhYWFhaBg4yPYiWCXZxBLERsLRS3EQkEfwCKdjWJAwSKCgoKCcudv4O5YLrt7EzgXhiU3/4+b2ckmwVjJSpKkQ6wAi4gwhT+z3wRBcEz0yjSseUTrcRyfsHsXmD0AmbHOC9Ii8VImnuXBPglHpQ5wwSVM7sNnTG7Za4JwDdCjxyAiH3nyA2mtaTJufiDZ5dCaqlItILh1NHatfN5skvjx9Z38m69CgzuXmZgVrPIGE763Jx9qKsRozWYw6xOHdER+nn2KkO+Bb+UV5CBN6WC6QtBgbRVozrahAbmm6HtUsgtPC19tFdxXZYBOfkbmFJ1VaHA1VAHjd0pp70oTZzvR+EVrx2Ygfdsq6eu55BHYR8hlcki+n+kERUFG8BrA0BwjeAv2M8WLQBtcy+SD6fNsmnB3AlBLrgTtVW1c2QN4bVWLATaIS60J2Du5y1TiJgjSBvFVZgTmwCU+dAZFoPxGEEs8nyHC9Bwe2GvEJv2WXZb0vjdyFT4Cxk3e/kIqlOGoVLwwPevpYHT+00T+hWwXDf4AJAOUqWcDhbwAAAAASUVORK5CYII=) !important;
}
#toast-container > .toast-error {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHOSURBVEhLrZa/SgNBEMZzh0WKCClSCKaIYOED+AAKeQQLG8HWztLCImBrYadgIdY+gIKNYkBFSwu7CAoqCgkkoGBI/E28PdbLZmeDLgzZzcx83/zZ2SSXC1j9fr+I1Hq93g2yxH4iwM1vkoBWAdxCmpzTxfkN2RcyZNaHFIkSo10+8kgxkXIURV5HGxTmFuc75B2RfQkpxHG8aAgaAFa0tAHqYFfQ7Iwe2yhODk8+J4C7yAoRTWI3w/4klGRgR4lO7Rpn9+gvMyWp+uxFh8+H+ARlgN1nJuJuQAYvNkEnwGFck18Er4q3egEc/oO+mhLdKgRyhdNFiacC0rlOCbhNVz4H9FnAYgDBvU3QIioZlJFLJtsoHYRDfiZoUyIxqCtRpVlANq0EU4dApjrtgezPFad5S19Wgjkc0hNVnuF4HjVA6C7QrSIbylB+oZe3aHgBsqlNqKYH48jXyJKMuAbiyVJ8KzaB3eRc0pg9VwQ4niFryI68qiOi3AbjwdsfnAtk0bCjTLJKr6mrD9g8iq/S/B81hguOMlQTnVyG40wAcjnmgsCNESDrjme7wfftP4P7SP4N3CJZdvzoNyGq2c/HWOXJGsvVg+RA/k2MC/wN6I2YA2Pt8GkAAAAASUVORK5CYII=) !important;
}
#toast-container > .toast-success {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADsSURBVEhLY2AYBfQMgf///3P8+/evAIgvA/FsIF+BavYDDWMBGroaSMMBiE8VC7AZDrIFaMFnii3AZTjUgsUUWUDA8OdAH6iQbQEhw4HyGsPEcKBXBIC4ARhex4G4BsjmweU1soIFaGg/WtoFZRIZdEvIMhxkCCjXIVsATV6gFGACs4Rsw0EGgIIH3QJYJgHSARQZDrWAB+jawzgs+Q2UO49D7jnRSRGoEFRILcdmEMWGI0cm0JJ2QpYA1RDvcmzJEWhABhD/pqrL0S0CWuABKgnRki9lLseS7g2AlqwHWQSKH4oKLrILpRGhEQCw2LiRUIa4lwAAAABJRU5ErkJggg==) !important;
}
#toast-container > .toast-warning {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGYSURBVEhL5ZSvTsNQFMbXZGICMYGYmJhAQIJAICYQPAACiSDB8AiICQQJT4CqQEwgJvYASAQCiZiYmJhAIBATCARJy+9rTsldd8sKu1M0+dLb057v6/lbq/2rK0mS/TRNj9cWNAKPYIJII7gIxCcQ51cvqID+GIEX8ASG4B1bK5gIZFeQfoJdEXOfgX4QAQg7kH2A65yQ87lyxb27sggkAzAuFhbbg1K2kgCkB1bVwyIR9m2L7PRPIhDUIXgGtyKw575yz3lTNs6X4JXnjV+LKM/m3MydnTbtOKIjtz6VhCBq4vSm3ncdrD2lk0VgUXSVKjVDJXJzijW1RQdsU7F77He8u68koNZTz8Oz5yGa6J3H3lZ0xYgXBK2QymlWWA+RWnYhskLBv2vmE+hBMCtbA7KX5drWyRT/2JsqZ2IvfB9Y4bWDNMFbJRFmC9E74SoS0CqulwjkC0+5bpcV1CZ8NMej4pjy0U+doDQsGyo1hzVJttIjhQ7GnBtRFN1UarUlH8F3xict+HY07rEzoUGPlWcjRFRr4/gChZgc3ZL2d8oAAAAASUVORK5CYII=) !important;
}
#toast-container.toast-bottom-center > div, #toast-container.toast-top-center > div {
  width: 300px;
  margin: auto;
}
#toast-container.toast-bottom-full-width > div, #toast-container.toast-top-full-width > div {
  width: 96%;
  margin: auto;
}
.toast {
  background-color: #030303;
}
.toast-success {
  background-color: #51a351;
}
.toast-error {
  background-color: #bd362f;
}
.toast-info {
  background-color: #2f96b4;
}
.toast-warning {
  background-color: #f89406;
}
.toast-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  background-color: #000;
  opacity: 0.4;
  -ms-filter: alpha(Opacity=40);
  filter: alpha(opacity=40);
}
@media all and (max-width: 240px) {
  #toast-container > div {
    padding: 8px 8px 8px 50px;
    width: 11em;
  }
  #toast-container .toast-close-button {
    right: -0.2em;
    top: -0.2em;
  }
}
@media all and (min-width: 241px) and (max-width: 480px) {
  #toast-container > div {
    padding: 8px 8px 8px 50px;
    width: 18em;
  }
  #toast-container .toast-close-button {
    right: -0.2em;
    top: -0.2em;
  }
}
@media all and (min-width: 481px) and (max-width: 768px) {
  #toast-container > div {
    padding: 15px 15px 15px 50px;
    width: 25em;
  }
}
table td.details-control {
  min-width: 15px;
}
/*
Dashboard's style
*/
#redeem-widget #redeemButton {
  margin-top: 10px;
}
/* Rating widget */
/* .rating span.star.active:before {
    content: "\f005";
    color: #986cbc;
} */
p.forgot-password-help {
  color: #9b9b9b;
}
.login-session-status {
  margin: 10px 0;
}
/* flasher (notification) */
.fl-wrapper {
  z-index: 1000 !important;
}
.btn-icon {
  width: 22px;
}
table.dataTable thead th {
  position: relative;
  background-image: none !important;
  vertical-align: middle;
}
table.dataTable thead th.sorting,
table.dataTable thead th.sorting_asc,
table.dataTable thead th.sorting_desc,
table.dataTable tbody td.dt-center {
  padding-right: 28px;
}
table.dataTable thead th.sorting:before,
table.dataTable thead th.sorting:after,
table.dataTable thead th.sorting_asc:after,
table.dataTable thead th.sorting_desc:after {
  position: absolute;
  right: 8px;
  top: 50%;
  display: block;
  font-family: FontAwesome;
  font-size: 12px;
}
table.dataTable thead th.sorting:before {
  content: "\f077";
  margin-top: -13px;
  color: #fff;
}
table.dataTable thead th.sorting:after {
  content: "\f078";
  margin-top: -4px;
  color: #fff;
}
table.dataTable thead th.sorting_asc:after {
  content: "\f077";
  margin-top: -9px;
  color: #2f2f2f;
}
table.dataTable thead th.sorting_desc:after {
  content: "\f078";
  margin-top: -9px;
  color: #2f2f2f;
}
table.dataTable thead th.sorting_asc,
table.dataTable thead th.sorting_desc {
  background-color: #f2f2f2;
}
table.dataTable thead th.sorting:hover,
table.dataTable thead th.sorting:focus {
  background-color: #f9f9f9;
}
table.dataTable thead th.sorting:hover:before,
table.dataTable thead th.sorting:hover:after,
table.dataTable thead th.sorting:focus:before,
table.dataTable thead th.sorting:focus:after {
  color: #ddd;
}
table th.dt-center,
table td.dt-center {
  text-align: center;
}
table.table {
  border-collapse: separate;
}
.languages-menu .language-switch {
  padding: 5px 0 0 0;
}
.languages-menu .language-switch li {
  padding: 0;
}
.languages-menu .language-switch li a {
  width: 100%;
  font-weight: 400;
  line-height: 1.42857143;
  display: inline-block;
  color: #8b8b8b;
  font-size: 13px;
  margin: 0 !important;
  padding: 8px 20px !important;
}
.languages-menu .language-switch li a:hover {
  background: none !important;
  color: #7cd8a9;
}
.partner-name {
  float: left;
  height: 60px;
  line-height: 60px;
}
.partners-menu-wrapper {
  float: left;
}
.partners-menu-wrapper .notification-menu .partners-menu a {
  height: 60px;
  line-height: 60px;
  padding: 0 15px;
}
.partners-menu-wrapper .notification-menu .partners-menu li a {
  height: auto;
  line-height: normal;
  padding: 15px;
}
.partners-menu-wrapper .notification-menu .partners-menu a {
  color: #8b8b8b;
}
.partners-menu-wrapper .notification-menu > .partners-menu > a > img {
  width: 29px;
  height: 29px;
  border-radius: 50%;
  margin-right: 10px;
}
.partners-menu-wrapper .notification-menu .partners-menu a i {
  font-size: 16px;
  position: absolute;
  right: 15px;
}
.partners-menu-wrapper .notification-menu > .partners-menu > a > span.fa-angle-down {
  margin-left: 5px;
}
.partners-menu-wrapper .notification-menu .dropdown-menu li a:hover {
  background: #f7f7f7;
}
.right-notification .notification-menu .dropdown-menu li a:hover {
  /*color: #fff;*/
}
.partners-menu {
  float: left;
}
.partners-menu .partners-switch {
  padding: 5px 0 0 0;
  overflow-y: scroll;
  max-height: 600px;
}
.partners-menu .partners-switch li {
  padding: 0;
}
.partners-menu .partners-switch li a {
  width: 100%;
  font-weight: 400;
  line-height: 1.42857143;
  display: inline-block;
  color: #8b8b8b;
  font-size: 13px;
  margin: 0 !important;
  padding: 8px 20px !important;
}
.partners-menu .partners-switch li a:hover {
  background: none !important;
  color: #7cd8a9;
}
.breadcrumbs-wrapper {
  padding: 0 20px;
}
.breadcrumbs-wrapper .breadcrumb {
  margin-bottom: 0;
  padding: 8px 0 0 0;
  background: transparent;
}
.breadcrumbs-wrapper .btn-back {
  margin-top: 8px;
}
/*---------------
    logo
---------------*/
.logo {
  height: 60px;
  line-height: 60px;
  position: absolute;
  top: 0;
  left: 0;
  width: 240px;
  z-index: 100;
  overflow: hidden;
  text-align: center;
}
.logo a,
.icon-logo a {
  text-decoration: none;
  display: inline-block;
}
.logo a img,
.icon-logo a img {
  display: block;
  height: 46px;
  margin-top: 7px;
}
.sticky-header .logo {
  position: fixed;
  top: 0;
  left: 0;
  width: 240px;
  z-index: 100;
}
.icon-logo {
  display: none;
  overflow: hidden;
}
.sidebar-collapsed .icon-logo {
  height: 60px;
  line-height: 45px;
  display: block;
  position: absolute;
  left: -52px;
  width: 52px;
  font-size: 24px;
  text-align: center;
}
.sidebar-collapsed .logo {
  display: none;
}
.pagination li a {
  color: #5e5e5e;
}
.pagination > li > a:hover,
.pagination > li.active > a,
.pagination > .active > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
  color: #fff;
  background-color: #9b9b9b;
  border-color: #9b9b9b;
}
.table-widget .tbl-pagin {
  padding: 8px 0;
}
.page-head h3 {
  margin-bottom: 0;
}
.page-head .state-information {
  top: auto;
  bottom: 15px;
}
.wrapper {
  padding-top: 0;
}
.wrapper .col-lg-12 {
  padding-left: 0;
  padding-right: 0;
  float: left;
  width: 100%;
}
.wrapper .toolbar .search-widget {
  padding-left: 0;
}
.wrapper .toolbar .search-results {
  clear: both;
  float: left;
}
.wrapper .toolbar .search-results h4 {
  margin-top: 0;
  margin-bottom: 15px;
}
.table.table-clickable tbody tr:hover {
  cursor: pointer;
  background: #dedede;
}
.summary-table {
  border: 1px solid #a9a9a9;
  margin-bottom: 20px;
}
.summary-table thead tr th {
  padding: 8px 8px 0px 8px;
  font-weight: 400;
}
.summary-table tbody tr td {
  padding: 8px;
  font-weight: 600;
  font-size: 18px;
}
.deal-table {
  border: 1px solid #a9a9a9;
  margin-bottom: 20px;
  background: #f6f6f6;
}
.deal-table tbody tr td {
  padding: 8px;
  font-weight: 600;
  font-size: 18px;
}
.deal-table tbody tr td.id-label {
  width: 150px;
  font-size: 12px;
  color: #777;
  font-weight: normal;
}
.deal-table tbody tr td.subtitle {
  font-size: 15px;
  font-weight: normal;
}
.deal-table tbody tr.top td {
  padding-bottom: 0;
}
.deal-table tbody tr.bottom td {
  padding-top: 0;
}
.panel-form {
  padding: 0;
}
.panel-form .panel-heading {
  border: none;
  text-transform: none;
  font-weight: bold;
}
.panel-form .form-pin {
  max-width: 150px;
}
.coupons-table tbody tr.success {
  background-color: #bad89a;
}
.coupons-table tbody tr.error {
  background-color: #e87583;
}
#partners-table td {
  vertical-align: middle;
}
#partners-table button {
  margin-bottom: 0;
}
.form-signin-container {
  max-width: 330px;
  margin: 15px auto 0;
}
.form-signin-container .language {
  margin-bottom: 15px;
}
.form-signin-container .language .languages-menu {
  position: relative;
}
.form-signin-container .language .languages-menu .dropdown-toggle {
  color: #9b9b9b;
}
.form-signin-container .language .languages-menu .dropdown-toggle:hover {
  color: #b6b6b6;
}
.form-signin-container .language .languages-menu .language-switch {
  min-width: 100px;
  border: 1px solid #ccc;
}
.form-signin-container .language .languages-menu .language-switch li a {
  padding: 3px 10px !important;
}
.form-signin-container .language .languages-menu .language-switch li a:hover {
  color: #4990e2;
}
.form-signin-container .form-signin {
  width: 100%;
}
.form-signin-container .form-signin .form-control {
  position: relative;
  font-size: 16px;
  height: auto;
  padding: 10px;
  box-sizing: border-box;
}
.form-signin-container .form-signin .form-control:focus {
  z-index: 2;
}
.form-signin-container .form-signin input[type=text],
.form-signin-container .form-signin input[type=password],
.form-signin-container .form-signin input[type=email] {
  margin-bottom: 15px;
  border-radius: 4px;
  border: none;
  background: #222224;
  box-shadow: none;
  font-size: 13px;
  color: #fff;
  padding: 12px;
}
.form-signin-container .form-signin .form-control.error {
  margin-bottom: 0;
}
.form-signin-container .form-signin .checkbox {
  margin-bottom: 14px;
}
.form-signin-container .form-signin .checkbox, .form-signin-container .form-signin .radios label, .form-signin-container .form-signin .checkbox-custom {
  font-weight: normal;
  color: #9b9b9b;
}
.form-signin-container .form-signin .checkbox input[type=checkbox] {
  margin-right: 5px;
}
.form-signin-container .form-signin p {
  /*text-align: center;*/
  color: #b6b6b6;
  font-size: 14px;
}
.form-signin-container .form-signin label.error {
  color: red;
  font-size: 14px;
  margin-bottom: 10px;
}
.form-signin-container .form-signin a {
  color: #9b9b9b;
}
.form-signin-container .form-signin a:hover {
  color: #b6b6b6;
}
.form-forgot-password .error {
  color: red;
}
.partner-details .detail-group {
  overflow: hidden;
  margin-bottom: 15px;
}
.partner-details .detail-group .detail-label {
  float: left;
  text-align: right;
}
.partner-details .detail-group .detail-content {
  float: left;
}
.form-password-reset-container {
  max-width: 330px;
  margin: 15px auto 0;
}
.form-password-reset-container .language {
  margin-bottom: 15px;
}
.form-password-reset-container .language .languages-menu {
  position: relative;
}
.form-password-reset-container .language .languages-menu .dropdown-toggle {
  color: #9b9b9b;
}
.form-password-reset-container .language .languages-menu .dropdown-toggle:hover {
  color: #b6b6b6;
}
.form-password-reset-container .language .languages-menu .language-switch {
  min-width: 100px;
  border: 1px solid #ccc;
}
.form-password-reset-container .language .languages-menu .language-switch li a {
  padding: 3px 10px !important;
}
.form-password-reset-container .language .languages-menu .language-switch li a:hover {
  color: #4990e2;
}
.form-password-reset-container .form-password-reset {
  width: 100%;
}
.form-password-reset-container .form-password-reset .form-control {
  position: relative;
  font-size: 16px;
  height: auto;
  padding: 10px;
  box-sizing: border-box;
}
.form-password-reset-container .form-password-reset .form-control.error {
  margin-bottom: 0;
}
.form-password-reset-container .form-password-reset .form-control:focus {
  z-index: 2;
}
.form-password-reset-container .form-password-reset input[type=password],
.form-password-reset-container .form-password-reset input[type=email] {
  margin-bottom: 15px;
  border-radius: 4px;
  border: none;
  background: #222224;
  box-shadow: none;
  font-size: 13px;
  color: #fff;
  padding: 12px;
}
.form-password-reset-container .form-password-reset label.error {
  color: red;
  font-size: 14px;
  margin: -14px 0px 10px 0px;
}
/*----------------------
    Error page
-----------------------*/
.body-error {
  background: #2b2b2d;
  color: #fff;
}
.error-wrapper {
  text-align: center;
  margin-top: 10%;
}
.error-wrapper .dd-logo {
  padding: 20px;
  max-width: 200px;
  display: inline-block;
  width: 50%;
}
.error-wrapper .dd-logo img {
  width: 100%;
}
.error-wrapper h2 {
  font-size: 20px;
  font-weight: normal;
  display: inline-block;
  text-transform: capitalize;
}
.error-wrapper p {
  font-size: 14px;
}
.error-wrapper .btn-back {
  margin-top: 15px;
  color: #fff;
  background: #4990e2;
  padding: 15px 30px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 2px;
}
/**
 *  Custom styles
 */