/*
Version: @@ver@@ Timestamp: @@timestamp@@
*/
.select2-container {
    margin: 0;
    position: relative;
    display: inline-block;
    /* inline-block for ie7 */
    zoom: 1;
    *display: inline;
    vertical-align: middle;
}

.select2-container,
.select2-drop,
.select2-search,
.select2-search input {
  /*
    Force border-box so that % widths fit the parent
    container without overlap because of margin/padding.
    More Info : http://www.quirksmode.org/css/box.html
  */
  -webkit-box-sizing: border-box; /* webkit */
     -moz-box-sizing: border-box; /* firefox */
          box-sizing: border-box; /* css3 */
}

.select2-container .select2-choice {
    display: block;
    height: 26px;
    padding: 0 0 0 8px;
    overflow: hidden;
    position: relative;

    border: 1px solid #aaa;
    white-space: nowrap;
    line-height: 26px;
    color: #444;
    text-decoration: none;

    border-radius: 4px;

    background-clip: padding-box;

    -webkit-touch-callout: none;
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;

    background-color: #fff;
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eee), color-stop(0.5, #fff));
    background-image: -webkit-linear-gradient(center bottom, #eee 0%, #fff 50%);
    background-image: -moz-linear-gradient(center bottom, #eee 0%, #fff 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ffffff', endColorstr = '#eeeeee', GradientType = 0);
    background-image: linear-gradient(to top, #eee 0%, #fff 50%);
}

html[dir="rtl"] .select2-container .select2-choice {
    padding: 0 8px 0 0;
}

.select2-container.select2-drop-above .select2-choice {
    border-bottom-color: #aaa;

    border-radius: 0 0 4px 4px;

    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eee), color-stop(0.9, #fff));
    background-image: -webkit-linear-gradient(center bottom, #eee 0%, #fff 90%);
    background-image: -moz-linear-gradient(center bottom, #eee 0%, #fff 90%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0);
    background-image: linear-gradient(to bottom, #eee 0%, #fff 90%);
}

.select2-container.select2-allowclear .select2-choice .select2-chosen {
    margin-right: 42px;
}

.select2-container .select2-choice > .select2-chosen {
    margin-right: 26px;
    display: block;
    overflow: hidden;

    white-space: nowrap;

    text-overflow: ellipsis;
    float: none;
    width: auto;
}

html[dir="rtl"] .select2-container .select2-choice > .select2-chosen {
    margin-left: 26px;
    margin-right: 0;
}

.select2-container .select2-choice abbr {
    display: none;
    width: 12px;
    height: 12px;
    position: absolute;
    right: 24px;
    top: 8px;

    font-size: 1px;
    text-decoration: none;

    border: 0;
    background: url(./select2.png) right top no-repeat;
    cursor: pointer;
    outline: 0;
}

.select2-container.select2-allowclear .select2-choice abbr {
    display: inline-block;
}

.select2-container .select2-choice abbr:hover {
    background-position: right -11px;
    cursor: pointer;
}

.select2-drop-mask {
    border: 0;
    margin: 0;
    padding: 0;
    position: fixed;
    left: 0;
    top: 0;
    min-height: 100%;
    min-width: 100%;
    height: auto;
    width: auto;
    opacity: 0;
    z-index: 9998;
    /* styles required for IE to work */
    background-color: #fff;
    filter: alpha(opacity=0);
}

.select2-drop {
    width: 100%;
    margin-top: -1px;
    position: absolute;
    z-index: 9999;
    top: 100%;

    background: #fff;
    color: #000;
    border: 1px solid #aaa;
    border-top: 0;

    border-radius: 0 0 4px 4px;

    -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
            box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
}

.select2-drop.select2-drop-above {
    margin-top: 1px;
    border-top: 1px solid #aaa;
    border-bottom: 0;

    border-radius: 4px 4px 0 0;

    -webkit-box-shadow: 0 -4px 5px rgba(0, 0, 0, .15);
            box-shadow: 0 -4px 5px rgba(0, 0, 0, .15);
}

.select2-drop-active {
    border: 1px solid #5897fb;
    border-top: none;
}

.select2-drop.select2-drop-above.select2-drop-active {
    border-top: 1px solid #5897fb;
}

.select2-drop-auto-width {
    border-top: 1px solid #aaa;
    width: auto;
}

.select2-drop-auto-width .select2-search {
    padding-top: 4px;
}

.select2-container .select2-choice .select2-arrow {
    display: inline-block;
    width: 18px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;

    border-left: 1px solid #aaa;
    border-radius: 0 4px 4px 0;

    background-clip: padding-box;

    background: #ccc;
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #ccc), color-stop(0.6, #eee));
    background-image: -webkit-linear-gradient(center bottom, #ccc 0%, #eee 60%);
    background-image: -moz-linear-gradient(center bottom, #ccc 0%, #eee 60%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#eeeeee', endColorstr = '#cccccc', GradientType = 0);
    background-image: linear-gradient(to top, #ccc 0%, #eee 60%);
}

html[dir="rtl"] .select2-container .select2-choice .select2-arrow {
    left: 0;
    right: auto;

    border-left: none;
    border-right: 1px solid #aaa;
    border-radius: 4px 0 0 4px;
}

.select2-container .select2-choice .select2-arrow b {
    display: block;
    width: 100%;
    height: 100%;
    background: url(./select2.png) no-repeat 0 1px;
}

html[dir="rtl"] .select2-container .select2-choice .select2-arrow b {
    background-position: 2px 1px;
}

.select2-search {
    display: inline-block;
    width: 100%;
    min-height: 26px;
    margin: 0;
    padding-left: 4px;
    padding-right: 4px;

    position: relative;
    z-index: 10000;

    white-space: nowrap;
}

.select2-search input {
    width: 100%;
    height: auto !important;
    min-height: 26px;
    padding: 4px 20px 4px 5px;
    margin: 0;

    outline: 0;
    font-family: sans-serif;
    font-size: 1em;

    border: 1px solid #aaa;
    border-radius: 0;

    -webkit-box-shadow: none;
            box-shadow: none;

    background: #fff url(./select2.png) no-repeat 100% -22px;
    background: url(./select2.png) no-repeat 100% -22px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee));
    background: url(./select2.png) no-repeat 100% -22px, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%);
    background: url(./select2.png) no-repeat 100% -22px, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%);
    background: url(./select2.png) no-repeat 100% -22px, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0;
}

html[dir="rtl"] .select2-search input {
    padding: 4px 5px 4px 20px;

    background: #fff url(./select2.png) no-repeat -37px -22px;
    background: url(./select2.png) no-repeat -37px -22px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee));
    background: url(./select2.png) no-repeat -37px -22px, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%);
    background: url(./select2.png) no-repeat -37px -22px, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%);
    background: url(./select2.png) no-repeat -37px -22px, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0;
}

.select2-drop.select2-drop-above .select2-search input {
    margin-top: 4px;
}

.select2-search input.select2-active {
    background: #fff url(./select2-spinner.gif) no-repeat 100%;
    background: url(./select2-spinner.gif) no-repeat 100%, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee));
    background: url(./select2-spinner.gif) no-repeat 100%, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%);
    background: url(./select2-spinner.gif) no-repeat 100%, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%);
    background: url(./select2-spinner.gif) no-repeat 100%, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0;
}

.select2-container-active .select2-choice,
.select2-container-active .select2-choices {
    border: 1px solid #5897fb;
    outline: none;

    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .3);
            box-shadow: 0 0 5px rgba(0, 0, 0, .3);
}

.select2-dropdown-open .select2-choice {
    border-bottom-color: transparent;
    -webkit-box-shadow: 0 1px 0 #fff inset;
            box-shadow: 0 1px 0 #fff inset;

    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;

    background-color: #eee;
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #fff), color-stop(0.5, #eee));
    background-image: -webkit-linear-gradient(center bottom, #fff 0%, #eee 50%);
    background-image: -moz-linear-gradient(center bottom, #fff 0%, #eee 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
    background-image: linear-gradient(to top, #fff 0%, #eee 50%);
}

.select2-dropdown-open.select2-drop-above .select2-choice,
.select2-dropdown-open.select2-drop-above .select2-choices {
    border: 1px solid #5897fb;
    border-top-color: transparent;

    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff), color-stop(0.5, #eee));
    background-image: -webkit-linear-gradient(center top, #fff 0%, #eee 50%);
    background-image: -moz-linear-gradient(center top, #fff 0%, #eee 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
    background-image: linear-gradient(to bottom, #fff 0%, #eee 50%);
}

.select2-dropdown-open .select2-choice .select2-arrow {
    background: transparent;
    border-left: none;
    filter: none;
}
html[dir="rtl"] .select2-dropdown-open .select2-choice .select2-arrow {
    border-right: none;
}

.select2-dropdown-open .select2-choice .select2-arrow b {
    background-position: -18px 1px;
}

html[dir="rtl"] .select2-dropdown-open .select2-choice .select2-arrow b {
    background-position: -16px 1px;
}

.select2-hidden-accessible {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

/* results */
.select2-results {
    max-height: 200px;
    padding: 0 0 0 4px;
    margin: 4px 4px 4px 0;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html[dir="rtl"] .select2-results {
    padding: 0 4px 0 0;
    margin: 4px 0 4px 4px;
}

.select2-results ul.select2-result-sub {
    margin: 0;
    padding-left: 0;
}

.select2-results li {
    list-style: none;
    display: list-item;
    background-image: none;
}

.select2-results li.select2-result-with-children > .select2-result-label {
    font-weight: bold;
}

.select2-results .select2-result-label {
    padding: 3px 7px 4px;
    margin: 0;
    cursor: pointer;

    min-height: 1em;

    -webkit-touch-callout: none;
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;
}

.select2-results-dept-1 .select2-result-label { padding-left: 20px }
.select2-results-dept-2 .select2-result-label { padding-left: 40px }
.select2-results-dept-3 .select2-result-label { padding-left: 60px }
.select2-results-dept-4 .select2-result-label { padding-left: 80px }
.select2-results-dept-5 .select2-result-label { padding-left: 100px }
.select2-results-dept-6 .select2-result-label { padding-left: 110px }
.select2-results-dept-7 .select2-result-label { padding-left: 120px }

.select2-results .select2-highlighted {
    background: #3875d7;
    color: #fff;
}

.select2-results li em {
    background: #feffde;
    font-style: normal;
}

.select2-results .select2-highlighted em {
    background: transparent;
}

.select2-results .select2-highlighted ul {
    background: #fff;
    color: #000;
}

.select2-results .select2-no-results,
.select2-results .select2-searching,
.select2-results .select2-ajax-error,
.select2-results .select2-selection-limit {
    background: #f4f4f4;
    display: list-item;
    padding-left: 5px;
}

/*
disabled look for disabled choices in the results dropdown
*/
.select2-results .select2-disabled.select2-highlighted {
    color: #666;
    background: #f4f4f4;
    display: list-item;
    cursor: default;
}
.select2-results .select2-disabled {
  background: #f4f4f4;
  display: list-item;
  cursor: default;
}

.select2-results .select2-selected {
    display: none;
}

.select2-more-results.select2-active {
    background: #f4f4f4 url(./select2-spinner.gif) no-repeat 100%;
}

.select2-results .select2-ajax-error {
    background: rgba(255, 50, 50, .2);
}

.select2-more-results {
    background: #f4f4f4;
    display: list-item;
}

/* disabled styles */

.select2-container.select2-container-disabled .select2-choice {
    background-color: #f4f4f4;
    background-image: none;
    border: 1px solid #ddd;
    cursor: default;
}

.select2-container.select2-container-disabled .select2-choice .select2-arrow {
    background-color: #f4f4f4;
    background-image: none;
    border-left: 0;
}

.select2-container.select2-container-disabled .select2-choice abbr {
    display: none;
}


/* multiselect */

.select2-container-multi .select2-choices {
    height: auto !important;
    height: 1%;
    margin: 0;
    padding: 0 5px 0 0;
    position: relative;

    border: 1px solid #aaa;
    cursor: text;
    overflow: hidden;

    background-color: #fff;
    background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(1%, #eee), color-stop(15%, #fff));
    background-image: -webkit-linear-gradient(top, #eee 1%, #fff 15%);
    background-image: -moz-linear-gradient(top, #eee 1%, #fff 15%);
    background-image: linear-gradient(to bottom, #eee 1%, #fff 15%);
}

html[dir="rtl"] .select2-container-multi .select2-choices {
    padding: 0 0 0 5px;
}

.select2-locked {
  padding: 3px 5px 3px 5px !important;
}

.select2-container-multi .select2-choices {
    min-height: 26px;
}

.select2-container-multi.select2-container-active .select2-choices {
    border: 1px solid #5897fb;
    outline: none;

    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .3);
            box-shadow: 0 0 5px rgba(0, 0, 0, .3);
}
.select2-container-multi .select2-choices li {
    float: left;
    list-style: none;
}
html[dir="rtl"] .select2-container-multi .select2-choices li
{
    float: right;
}
.select2-container-multi .select2-choices .select2-search-field {
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

.select2-container-multi .select2-choices .select2-search-field input {
    padding: 5px;
    margin: 1px 0;

    font-family: sans-serif;
    font-size: 100%;
    color: #666;
    outline: 0;
    border: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    background: transparent !important;
}

.select2-container-multi .select2-choices .select2-search-field input.select2-active {
    background: #fff url(./select2-spinner.gif) no-repeat 100% !important;
}

.select2-default {
    color: #999 !important;
}

.select2-container-multi .select2-choices .select2-search-choice {
    padding: 3px 5px 3px 18px;
    margin: 3px 0 3px 5px;
    position: relative;

    line-height: 13px;
    color: #333;
    cursor: default;
    border: 1px solid #aaaaaa;

    border-radius: 3px;

    -webkit-box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
            box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);

    background-clip: padding-box;

    -webkit-touch-callout: none;
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;

    background-color: #e4e4e4;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#f4f4f4', GradientType=0);
    background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eee));
    background-image: -webkit-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
    background-image: -moz-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
    background-image: linear-gradient(to bottom, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
}
html[dir="rtl"] .select2-container-multi .select2-choices .select2-search-choice
{
    margin: 3px 5px 3px 0;
    padding: 3px 18px 3px 5px;
}
.select2-container-multi .select2-choices .select2-search-choice .select2-chosen {
    cursor: default;
}
.select2-container-multi .select2-choices .select2-search-choice-focus {
    background: #d4d4d4;
}

.select2-search-choice-close {
    display: block;
    width: 12px;
    height: 13px;
    position: absolute;
    right: 3px;
    top: 4px;

    font-size: 1px;
    outline: none;
    background: url(./select2.png) right top no-repeat;
}
html[dir="rtl"] .select2-search-choice-close {
    right: auto;
    left: 3px;
}

.select2-container-multi .select2-search-choice-close {
    left: 3px;
}

html[dir="rtl"] .select2-container-multi .select2-search-choice-close {
    left: auto;
    right: 2px;
}

.select2-container-multi .select2-choices .select2-search-choice .select2-search-choice-close:hover {
  background-position: right -11px;
}
.select2-container-multi .select2-choices .select2-search-choice-focus .select2-search-choice-close {
    background-position: right -11px;
}

/* disabled styles */
.select2-container-multi.select2-container-disabled .select2-choices {
    background-color: #f4f4f4;
    background-image: none;
    border: 1px solid #ddd;
    cursor: default;
}

.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice {
    padding: 3px 5px 3px 5px;
    border: 1px solid #ddd;
    background-image: none;
    background-color: #f4f4f4;
}

.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice .select2-search-choice-close {    display: none;
    background: none;
}
/* end multiselect */


.select2-result-selectable .select2-match,
.select2-result-unselectable .select2-match {
    text-decoration: underline;
}

.select2-offscreen, .select2-offscreen:focus {
    clip: rect(0 0 0 0) !important;
    width: 1px !important;
    height: 1px !important;
    border: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    outline: 0 !important;
    left: 0px !important;
    top: 0px !important;
}

.select2-display-none {
    display: none;
}

.select2-measure-scrollbar {
    position: absolute;
    top: -10000px;
    left: -10000px;
    width: 100px;
    height: 100px;
    overflow: scroll;
}

/* Retina-ize icons */

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 2dppx)  {
    .select2-search input,
    .select2-search-choice-close,
    .select2-container .select2-choice abbr,
    .select2-container .select2-choice .select2-arrow b {
        background-image: url(./select2x2.png) !important;
        background-repeat: no-repeat !important;
        background-size: 60px 40px !important;
    }

    .select2-search input {
        background-position: 100% -21px !important;
    }
}
/*!
 * Bootstrap v3.4.1 (https://getbootstrap.com/)
 * Copyright 2011-2019 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
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: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  -moz-text-decoration: underline dotted;
  text-decoration: underline dotted;
}
b,
strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
mark {
  background: #ff0;
  color: #000;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 1em 40px;
}
hr {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}
pre {
  overflow: auto;
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}
button {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
input {
  line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
}
optgroup {
  font-weight: bold;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print {
  *,
  *:before,
  *:after {
    color: #000 !important;
    text-shadow: none !important;
    background: transparent !important;
    -webkit-box-shadow: none !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^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  .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 th,
  .table-bordered td {
    border: 1px solid #ddd !important;
  }
}
@font-face {
  font-family: "Glyphicons Halflings";
  src: url(./glyphicons-halflings-regular.eot);
  src: url(./glyphicons-halflings-regular.eot?#iefix) format("embedded-opentype"), url(./glyphicons-halflings-regular.woff2) format("woff2"), url(./glyphicons-halflings-regular.woff) format("woff"), url(./glyphicons-halflings-regular.ttf) format("truetype"), url(./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-euro:before,
.glyphicon-eur:before {
  content: "\20AC";
}
.glyphicon-minus:before {
  content: "\2212";
}
.glyphicon-cloud:before {
  content: "\2601";
}
.glyphicon-envelope:before {
  content: "\2709";
}
.glyphicon-pencil:before {
  content: "\270F";
}
.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: "\26FA";
}
.glyphicon-blackboard:before {
  content: "\E218";
}
.glyphicon-bed:before {
  content: "\E219";
}
.glyphicon-apple:before {
  content: "\F8FF";
}
.glyphicon-erase:before {
  content: "\E221";
}
.glyphicon-hourglass:before {
  content: "\231B";
}
.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: "\A5";
}
.glyphicon-jpy:before {
  content: "\A5";
}
.glyphicon-ruble:before {
  content: "\20BD";
}
.glyphicon-rub:before {
  content: "\20BD";
}
.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";
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-size: 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: #333333;
  background-color: #fff;
}
input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
a {
  color: #337ab7;
  text-decoration: none;
}
a:hover,
a:focus {
  color: #23527c;
  text-decoration: underline;
}
a:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
figure {
  margin: 0;
}
img {
  vertical-align: middle;
}
.img-responsive,
.thumbnail > img,
.thumbnail a > img,
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  display: block;
  max-width: 100%;
  height: auto;
}
.img-rounded {
  border-radius: 6px;
}
.img-thumbnail {
  padding: 4px;
  line-height: 1.42857143;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto;
}
.img-circle {
  border-radius: 50%;
}
hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eeeeee;
}
.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,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small,
.h1 small,
.h2 small,
.h3 small,
.h4 small,
.h5 small,
.h6 small,
h1 .small,
h2 .small,
h3 .small,
h4 .small,
h5 .small,
h6 .small,
.h1 .small,
.h2 .small,
.h3 .small,
.h4 .small,
.h5 .small,
.h6 .small {
  font-weight: 400;
  line-height: 1;
  color: #777777;
}
h1,
.h1,
h2,
.h2,
h3,
.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,
.h4,
h5,
.h5,
h6,
.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: #777777;
}
.text-primary {
  color: #337ab7;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #286090;
}
.text-success {
  color: #3c763d;
}
a.text-success:hover,
a.text-success:focus {
  color: #2b542c;
}
.text-info {
  color: #31708f;
}
a.text-info:hover,
a.text-info:focus {
  color: #245269;
}
.text-warning {
  color: #8a6d3b;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #66512c;
}
.text-danger {
  color: #a94442;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #843534;
}
.bg-primary {
  color: #fff;
  background-color: #337ab7;
}
a.bg-primary:hover,
a.bg-primary:focus {
  background-color: #286090;
}
.bg-success {
  background-color: #dff0d8;
}
a.bg-success:hover,
a.bg-success:focus {
  background-color: #c1e2b3;
}
.bg-info {
  background-color: #d9edf7;
}
a.bg-info:hover,
a.bg-info:focus {
  background-color: #afd9ee;
}
.bg-warning {
  background-color: #fcf8e3;
}
a.bg-warning:hover,
a.bg-warning:focus {
  background-color: #f7ecb5;
}
.bg-danger {
  background-color: #f2dede;
}
a.bg-danger:hover,
a.bg-danger:focus {
  background-color: #e4b9b9;
}
.page-header {
  padding-bottom: 9px;
  margin: 40px 0 20px;
  border-bottom: 1px solid #eeeeee;
}
ul,
ol {
  margin-top: 0;
  margin-bottom: 10px;
}
ul ul,
ol ul,
ul ol,
ol ol {
  margin-bottom: 0;
}
.list-unstyled {
  padding-left: 0;
  list-style: none;
}
.list-inline {
  padding-left: 0;
  list-style: none;
  margin-left: -5px;
}
.list-inline > li {
  display: inline-block;
  padding-right: 5px;
  padding-left: 5px;
}
dl {
  margin-top: 0;
  margin-bottom: 20px;
}
dt,
dd {
  line-height: 1.42857143;
}
dt {
  font-weight: 700;
}
dd {
  margin-left: 0;
}
@media (min-width: 768px) {
  .dl-horizontal dt {
    float: left;
    width: 160px;
    clear: left;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .dl-horizontal dd {
    margin-left: 180px;
  }
}
abbr[title],
abbr[data-original-title] {
  cursor: help;
}
.initialism {
  font-size: 90%;
  text-transform: uppercase;
}
blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  font-size: 17.5px;
  border-left: 5px solid #eeeeee;
}
blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
  margin-bottom: 0;
}
blockquote footer,
blockquote small,
blockquote .small {
  display: block;
  font-size: 80%;
  line-height: 1.42857143;
  color: #777777;
}
blockquote footer:before,
blockquote small:before,
blockquote .small:before {
  content: "\2014   \A0";
}
.blockquote-reverse,
blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  text-align: right;
  border-right: 5px solid #eeeeee;
  border-left: 0;
}
.blockquote-reverse footer:before,
blockquote.pull-right footer:before,
.blockquote-reverse small:before,
blockquote.pull-right small:before,
.blockquote-reverse .small:before,
blockquote.pull-right .small:before {
  content: "";
}
.blockquote-reverse footer:after,
blockquote.pull-right footer:after,
.blockquote-reverse small:after,
blockquote.pull-right small:after,
.blockquote-reverse .small:after,
blockquote.pull-right .small:after {
  content: "\A0   \2014";
}
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;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
}
kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: 700;
  -webkit-box-shadow: none;
  box-shadow: none;
}
pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.42857143;
  color: #333333;
  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;
}
.row-no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.row-no-gutters [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}
.col-xs-1,
.col-sm-1,
.col-md-1,
.col-lg-1,
.col-xs-2,
.col-sm-2,
.col-md-2,
.col-lg-2,
.col-xs-3,
.col-sm-3,
.col-md-3,
.col-lg-3,
.col-xs-4,
.col-sm-4,
.col-md-4,
.col-lg-4,
.col-xs-5,
.col-sm-5,
.col-md-5,
.col-lg-5,
.col-xs-6,
.col-sm-6,
.col-md-6,
.col-lg-6,
.col-xs-7,
.col-sm-7,
.col-md-7,
.col-lg-7,
.col-xs-8,
.col-sm-8,
.col-md-8,
.col-lg-8,
.col-xs-9,
.col-sm-9,
.col-md-9,
.col-lg-9,
.col-xs-10,
.col-sm-10,
.col-md-10,
.col-lg-10,
.col-xs-11,
.col-sm-11,
.col-md-11,
.col-lg-11,
.col-xs-12,
.col-sm-12,
.col-md-12,
.col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
  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-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12 {
    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-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12 {
    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-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12 {
    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;
}
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;
}
caption {
  padding-top: 8px;
  padding-bottom: 8px;
  color: #777777;
  text-align: left;
}
th {
  text-align: left;
}
.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}
.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
  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 > th,
.table > colgroup + thead > tr:first-child > th,
.table > thead:first-child > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > td {
  border-top: 0;
}
.table > tbody + tbody {
  border-top: 2px solid #ddd;
}
.table .table {
  background-color: #fff;
}
.table-condensed > thead > tr > th,
.table-condensed > tbody > tr > th,
.table-condensed > tfoot > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > td {
  padding: 5px;
}
.table-bordered {
  border: 1px solid #ddd;
}
.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 #ddd;
}
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
  border-bottom-width: 2px;
}
.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #f9f9f9;
}
.table-hover > tbody > tr:hover {
  background-color: #f5f5f5;
}
.table > thead > tr > td.active,
.table > tbody > tr > td.active,
.table > tfoot > tr > td.active,
.table > thead > tr > th.active,
.table > tbody > tr > th.active,
.table > tfoot > tr > th.active,
.table > thead > tr.active > td,
.table > tbody > tr.active > td,
.table > tfoot > tr.active > td,
.table > thead > tr.active > th,
.table > tbody > tr.active > th,
.table > tfoot > tr.active > th {
  background-color: #f5f5f5;
}
.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover,
.table-hover > tbody > tr.active:hover > td,
.table-hover > tbody > tr:hover > .active,
.table-hover > tbody > tr.active:hover > th {
  background-color: #e8e8e8;
}
.table > thead > tr > td.success,
.table > tbody > tr > td.success,
.table > tfoot > tr > td.success,
.table > thead > tr > th.success,
.table > tbody > tr > th.success,
.table > tfoot > tr > th.success,
.table > thead > tr.success > td,
.table > tbody > tr.success > td,
.table > tfoot > tr.success > td,
.table > thead > tr.success > th,
.table > tbody > tr.success > th,
.table > tfoot > tr.success > th {
  background-color: #dff0d8;
}
.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover,
.table-hover > tbody > tr.success:hover > td,
.table-hover > tbody > tr:hover > .success,
.table-hover > tbody > tr.success:hover > th {
  background-color: #d0e9c6;
}
.table > thead > tr > td.info,
.table > tbody > tr > td.info,
.table > tfoot > tr > td.info,
.table > thead > tr > th.info,
.table > tbody > tr > th.info,
.table > tfoot > tr > th.info,
.table > thead > tr.info > td,
.table > tbody > tr.info > td,
.table > tfoot > tr.info > td,
.table > thead > tr.info > th,
.table > tbody > tr.info > th,
.table > tfoot > tr.info > th {
  background-color: #d9edf7;
}
.table-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover,
.table-hover > tbody > tr.info:hover > td,
.table-hover > tbody > tr:hover > .info,
.table-hover > tbody > tr.info:hover > th {
  background-color: #c4e3f3;
}
.table > thead > tr > td.warning,
.table > tbody > tr > td.warning,
.table > tfoot > tr > td.warning,
.table > thead > tr > th.warning,
.table > tbody > tr > th.warning,
.table > tfoot > tr > th.warning,
.table > thead > tr.warning > td,
.table > tbody > tr.warning > td,
.table > tfoot > tr.warning > td,
.table > thead > tr.warning > th,
.table > tbody > tr.warning > th,
.table > tfoot > tr.warning > th {
  background-color: #fcf8e3;
}
.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover,
.table-hover > tbody > tr.warning:hover > td,
.table-hover > tbody > tr:hover > .warning,
.table-hover > tbody > tr.warning:hover > th {
  background-color: #faf2cc;
}
.table > thead > tr > td.danger,
.table > tbody > tr > td.danger,
.table > tfoot > tr > td.danger,
.table > thead > tr > th.danger,
.table > tbody > tr > th.danger,
.table > tfoot > tr > th.danger,
.table > thead > tr.danger > td,
.table > tbody > tr.danger > td,
.table > tfoot > tr.danger > td,
.table > thead > tr.danger > th,
.table > tbody > tr.danger > th,
.table > tfoot > tr.danger > th {
  background-color: #f2dede;
}
.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover,
.table-hover > tbody > tr.danger:hover > td,
.table-hover > tbody > tr:hover > .danger,
.table-hover > tbody > tr.danger:hover > th {
  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 > thead > tr > th,
  .table-responsive > .table > tbody > tr > th,
  .table-responsive > .table > tfoot > tr > th,
  .table-responsive > .table > thead > tr > td,
  .table-responsive > .table > tbody > tr > td,
  .table-responsive > .table > tfoot > tr > td {
    white-space: nowrap;
  }
  .table-responsive > .table-bordered {
    border: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:first-child,
  .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  .table-responsive > .table-bordered > thead > tr > td:first-child,
  .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:last-child,
  .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  .table-responsive > .table-bordered > thead > tr > td:last-child,
  .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0;
  }
  .table-responsive > .table-bordered > tbody > tr:last-child > th,
  .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .table-responsive > .table-bordered > tfoot > tr:last-child > td {
    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: #333333;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}
label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: 700;
}
input[type="search"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input[type="radio"],
input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  line-height: normal;
}
input[type="radio"][disabled],
input[type="checkbox"][disabled],
input[type="radio"].disabled,
input[type="checkbox"].disabled,
fieldset[disabled] input[type="radio"],
fieldset[disabled] input[type="checkbox"] {
  cursor: not-allowed;
}
input[type="file"] {
  display: block;
}
input[type="range"] {
  display: block;
  width: 100%;
}
select[multiple],
select[size] {
  height: auto;
}
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
output {
  display: block;
  padding-top: 7px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555555;
}
.form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
}
.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(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::-ms-expand {
  background-color: transparent;
  border: 0;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  background-color: #eeeeee;
  opacity: 1;
}
.form-control[disabled],
fieldset[disabled] .form-control {
  cursor: not-allowed;
}
textarea.form-control {
  height: auto;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input[type="date"].form-control,
  input[type="time"].form-control,
  input[type="datetime-local"].form-control,
  input[type="month"].form-control {
    line-height: 34px;
  }
  input[type="date"].input-sm,
  input[type="time"].input-sm,
  input[type="datetime-local"].input-sm,
  input[type="month"].input-sm,
  .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"] {
    line-height: 30px;
  }
  input[type="date"].input-lg,
  input[type="time"].input-lg,
  input[type="datetime-local"].input-lg,
  input[type="month"].input-lg,
  .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"] {
    line-height: 46px;
  }
}
.form-group {
  margin-bottom: 15px;
}
.radio,
.checkbox {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}
.radio.disabled label,
.checkbox.disabled label,
fieldset[disabled] .radio label,
fieldset[disabled] .checkbox label {
  cursor: not-allowed;
}
.radio label,
.checkbox label {
  min-height: 20px;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: 400;
  cursor: pointer;
}
.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
  position: absolute;
  margin-top: 4px \9;
  margin-left: -20px;
}
.radio + .radio,
.checkbox + .checkbox {
  margin-top: -5px;
}
.radio-inline,
.checkbox-inline {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: 400;
  vertical-align: middle;
  cursor: pointer;
}
.radio-inline.disabled,
.checkbox-inline.disabled,
fieldset[disabled] .radio-inline,
fieldset[disabled] .checkbox-inline {
  cursor: not-allowed;
}
.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px;
}
.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;
}
textarea.input-sm,
select[multiple].input-sm {
  height: auto;
}
.form-group-sm .form-control {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.form-group-sm select.form-control {
  height: 30px;
  line-height: 30px;
}
.form-group-sm textarea.form-control,
.form-group-sm select[multiple].form-control {
  height: auto;
}
.form-group-sm .form-control-static {
  height: 30px;
  min-height: 32px;
  padding: 6px 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;
}
textarea.input-lg,
select[multiple].input-lg {
  height: auto;
}
.form-group-lg .form-control {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
.form-group-lg select.form-control {
  height: 46px;
  line-height: 46px;
}
.form-group-lg textarea.form-control,
.form-group-lg select[multiple].form-control {
  height: auto;
}
.form-group-lg .form-control-static {
  height: 46px;
  min-height: 38px;
  padding: 11px 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,
.input-group-lg + .form-control-feedback,
.form-group-lg .form-control + .form-control-feedback {
  width: 46px;
  height: 46px;
  line-height: 46px;
}
.input-sm + .form-control-feedback,
.input-group-sm + .form-control-feedback,
.form-group-sm .form-control + .form-control-feedback {
  width: 30px;
  height: 30px;
  line-height: 30px;
}
.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline,
.has-success.radio label,
.has-success.checkbox label,
.has-success.radio-inline label,
.has-success.checkbox-inline label {
  color: #3c763d;
}
.has-success .form-control {
  border-color: #3c763d;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-success .form-control:focus {
  border-color: #2b542c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
  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 .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline,
.has-warning.radio label,
.has-warning.checkbox label,
.has-warning.radio-inline label,
.has-warning.checkbox-inline label {
  color: #8a6d3b;
}
.has-warning .form-control {
  border-color: #8a6d3b;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-warning .form-control:focus {
  border-color: #66512c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
  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 .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 {
  color: #a94442;
}
.has-error .form-control {
  border-color: #a94442;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-error .form-control:focus {
  border-color: #843534;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
  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 .input-group-addon,
  .form-inline .input-group .input-group-btn,
  .form-inline .input-group .form-control {
    width: auto;
  }
  .form-inline .input-group > .form-control {
    width: 100%;
  }
  .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .radio,
  .form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .radio label,
  .form-inline .checkbox label {
    padding-left: 0;
  }
  .form-inline .radio input[type="radio"],
  .form-inline .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }
  .form-inline .has-feedback .form-control-feedback {
    top: 0;
  }
}
.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
  padding-top: 7px;
  margin-top: 0;
  margin-bottom: 0;
}
.form-horizontal .radio,
.form-horizontal .checkbox {
  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: 11px;
    font-size: 18px;
  }
}
@media (min-width: 768px) {
  .form-horizontal .form-group-sm .control-label {
    padding-top: 6px;
    font-size: 12px;
  }
}
.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.btn:hover,
.btn:focus,
.btn.focus {
  color: #333;
  text-decoration: none;
}
.btn:active,
.btn.active {
  background-image: none;
  outline: 0;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  cursor: not-allowed;
  filter: alpha(opacity=65);
  opacity: 0.65;
  -webkit-box-shadow: none;
  box-shadow: none;
}
a.btn.disabled,
fieldset[disabled] a.btn {
  pointer-events: none;
}
.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
}
.btn-default:focus,
.btn-default.focus {
  color: #333;
  background-color: #e6e6e6;
  border-color: #8c8c8c;
}
.btn-default:hover {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  color: #333;
  background-color: #e6e6e6;
  background-image: none;
  border-color: #adadad;
}
.btn-default:active:hover,
.btn-default.active:hover,
.open > .dropdown-toggle.btn-default:hover,
.btn-default:active:focus,
.btn-default.active:focus,
.open > .dropdown-toggle.btn-default:focus,
.btn-default:active.focus,
.btn-default.active.focus,
.open > .dropdown-toggle.btn-default.focus {
  color: #333;
  background-color: #d4d4d4;
  border-color: #8c8c8c;
}
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled.focus,
.btn-default[disabled].focus,
fieldset[disabled] .btn-default.focus {
  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:focus,
.btn-primary.focus {
  color: #fff;
  background-color: #286090;
  border-color: #122b40;
}
.btn-primary:hover {
  color: #fff;
  background-color: #286090;
  border-color: #204d74;
}
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  color: #fff;
  background-color: #286090;
  background-image: none;
  border-color: #204d74;
}
.btn-primary:active:hover,
.btn-primary.active:hover,
.open > .dropdown-toggle.btn-primary:hover,
.btn-primary:active:focus,
.btn-primary.active:focus,
.open > .dropdown-toggle.btn-primary:focus,
.btn-primary:active.focus,
.btn-primary.active.focus,
.open > .dropdown-toggle.btn-primary.focus {
  color: #fff;
  background-color: #204d74;
  border-color: #122b40;
}
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled.focus,
.btn-primary[disabled].focus,
fieldset[disabled] .btn-primary.focus {
  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:focus,
.btn-success.focus {
  color: #fff;
  background-color: #449d44;
  border-color: #255625;
}
.btn-success:hover {
  color: #fff;
  background-color: #449d44;
  border-color: #398439;
}
.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
  color: #fff;
  background-color: #449d44;
  background-image: none;
  border-color: #398439;
}
.btn-success:active:hover,
.btn-success.active:hover,
.open > .dropdown-toggle.btn-success:hover,
.btn-success:active:focus,
.btn-success.active:focus,
.open > .dropdown-toggle.btn-success:focus,
.btn-success:active.focus,
.btn-success.active.focus,
.open > .dropdown-toggle.btn-success.focus {
  color: #fff;
  background-color: #398439;
  border-color: #255625;
}
.btn-success.disabled:hover,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success:hover,
.btn-success.disabled:focus,
.btn-success[disabled]:focus,
fieldset[disabled] .btn-success:focus,
.btn-success.disabled.focus,
.btn-success[disabled].focus,
fieldset[disabled] .btn-success.focus {
  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:focus,
.btn-info.focus {
  color: #fff;
  background-color: #31b0d5;
  border-color: #1b6d85;
}
.btn-info:hover {
  color: #fff;
  background-color: #31b0d5;
  border-color: #269abc;
}
.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
  color: #fff;
  background-color: #31b0d5;
  background-image: none;
  border-color: #269abc;
}
.btn-info:active:hover,
.btn-info.active:hover,
.open > .dropdown-toggle.btn-info:hover,
.btn-info:active:focus,
.btn-info.active:focus,
.open > .dropdown-toggle.btn-info:focus,
.btn-info:active.focus,
.btn-info.active.focus,
.open > .dropdown-toggle.btn-info.focus {
  color: #fff;
  background-color: #269abc;
  border-color: #1b6d85;
}
.btn-info.disabled:hover,
.btn-info[disabled]:hover,
fieldset[disabled] .btn-info:hover,
.btn-info.disabled:focus,
.btn-info[disabled]:focus,
fieldset[disabled] .btn-info:focus,
.btn-info.disabled.focus,
.btn-info[disabled].focus,
fieldset[disabled] .btn-info.focus {
  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:focus,
.btn-warning.focus {
  color: #fff;
  background-color: #ec971f;
  border-color: #985f0d;
}
.btn-warning:hover {
  color: #fff;
  background-color: #ec971f;
  border-color: #d58512;
}
.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
  color: #fff;
  background-color: #ec971f;
  background-image: none;
  border-color: #d58512;
}
.btn-warning:active:hover,
.btn-warning.active:hover,
.open > .dropdown-toggle.btn-warning:hover,
.btn-warning:active:focus,
.btn-warning.active:focus,
.open > .dropdown-toggle.btn-warning:focus,
.btn-warning:active.focus,
.btn-warning.active.focus,
.open > .dropdown-toggle.btn-warning.focus {
  color: #fff;
  background-color: #d58512;
  border-color: #985f0d;
}
.btn-warning.disabled:hover,
.btn-warning[disabled]:hover,
fieldset[disabled] .btn-warning:hover,
.btn-warning.disabled:focus,
.btn-warning[disabled]:focus,
fieldset[disabled] .btn-warning:focus,
.btn-warning.disabled.focus,
.btn-warning[disabled].focus,
fieldset[disabled] .btn-warning.focus {
  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:focus,
.btn-danger.focus {
  color: #fff;
  background-color: #c9302c;
  border-color: #761c19;
}
.btn-danger:hover {
  color: #fff;
  background-color: #c9302c;
  border-color: #ac2925;
}
.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
  color: #fff;
  background-color: #c9302c;
  background-image: none;
  border-color: #ac2925;
}
.btn-danger:active:hover,
.btn-danger.active:hover,
.open > .dropdown-toggle.btn-danger:hover,
.btn-danger:active:focus,
.btn-danger.active:focus,
.open > .dropdown-toggle.btn-danger:focus,
.btn-danger:active.focus,
.btn-danger.active.focus,
.open > .dropdown-toggle.btn-danger.focus {
  color: #fff;
  background-color: #ac2925;
  border-color: #761c19;
}
.btn-danger.disabled:hover,
.btn-danger[disabled]:hover,
fieldset[disabled] .btn-danger:hover,
.btn-danger.disabled:focus,
.btn-danger[disabled]:focus,
fieldset[disabled] .btn-danger:focus,
.btn-danger.disabled.focus,
.btn-danger[disabled].focus,
fieldset[disabled] .btn-danger.focus {
  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;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.btn-link,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
  border-color: transparent;
}
.btn-link:hover,
.btn-link:focus {
  color: #23527c;
  text-decoration: underline;
  background-color: transparent;
}
.btn-link[disabled]:hover,
fieldset[disabled] .btn-link:hover,
.btn-link[disabled]:focus,
fieldset[disabled] .btn-link:focus {
  color: #777777;
  text-decoration: none;
}
.btn-lg,
.btn-group-lg > .btn {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
.btn-sm,
.btn-group-sm > .btn {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.btn-xs,
.btn-group-xs > .btn {
  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="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%;
}
.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  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;
  -webkit-transition-property: height, visibility;
  -o-transition-property: height, visibility;
  transition-property: height, visibility;
  -webkit-transition-duration: 0.35s;
  -o-transition-duration: 0.35s;
  transition-duration: 0.35s;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
}
.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-top: 4px solid \9;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}
.dropup,
.dropdown {
  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;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  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: #333333;
  white-space: nowrap;
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
  color: #262626;
  text-decoration: none;
  background-color: #f5f5f5;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
  color: #fff;
  text-decoration: none;
  background-color: #337ab7;
  outline: 0;
}
.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  color: #777777;
}
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  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: #777777;
  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 dashed;
  border-bottom: 4px solid \9;
}
.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 > .btn,
.btn-group-vertical > .btn {
  position: relative;
  float: left;
}
.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover,
.btn-group > .btn:focus,
.btn-group-vertical > .btn:focus,
.btn-group > .btn:active,
.btn-group-vertical > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn.active {
  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,
.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 {
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn-group.open .dropdown-toggle.btn-link {
  -webkit-box-shadow: none;
  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-left-radius: 4px;
  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-right-radius: 4px;
  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="radio"],
[data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
[data-toggle="buttons"] > .btn input[type="checkbox"],
[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
  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 .form-control:focus {
  z-index: 3;
}
.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;
}
textarea.input-group-lg > .form-control,
textarea.input-group-lg > .input-group-addon,
textarea.input-group-lg > .input-group-btn > .btn,
select[multiple].input-group-lg > .form-control,
select[multiple].input-group-lg > .input-group-addon,
select[multiple].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;
}
textarea.input-group-sm > .form-control,
textarea.input-group-sm > .input-group-addon,
textarea.input-group-sm > .input-group-btn > .btn,
select[multiple].input-group-sm > .form-control,
select[multiple].input-group-sm > .input-group-addon,
select[multiple].input-group-sm > .input-group-btn > .btn {
  height: auto;
}
.input-group-addon,
.input-group-btn,
.input-group .form-control {
  display: table-cell;
}
.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child),
.input-group .form-control:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.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: #555555;
  text-align: center;
  background-color: #eeeeee;
  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="radio"],
.input-group-addon input[type="checkbox"] {
  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:not(:last-child):not(.dropdown-toggle),
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  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:last-child > .btn,
.input-group-btn:last-child > .btn-group > .btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child),
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  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:hover,
.input-group-btn > .btn:focus,
.input-group-btn > .btn:active {
  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 {
  z-index: 2;
  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:hover,
.nav > li > a:focus {
  text-decoration: none;
  background-color: #eeeeee;
}
.nav > li.disabled > a {
  color: #777777;
}
.nav > li.disabled > a:hover,
.nav > li.disabled > a:focus {
  color: #777777;
  text-decoration: none;
  cursor: not-allowed;
  background-color: transparent;
}
.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
  background-color: #eeeeee;
  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: #eeeeee #eeeeee #ddd;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  color: #555555;
  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:hover,
.nav-tabs.nav-justified > .active > a:focus {
  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:hover,
  .nav-tabs.nav-justified > .active > a:focus {
    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:hover,
.nav-pills > li.active > a:focus {
  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:hover,
.nav-tabs-justified > .active > a:focus {
  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:hover,
  .nav-tabs-justified > .active > a:focus {
    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;
  }
}
@media (min-width: 768px) {
  .navbar-header {
    float: left;
  }
}
.navbar-collapse {
  padding-right: 15px;
  padding-left: 15px;
  overflow-x: visible;
  border-top: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  -webkit-overflow-scrolling: touch;
}
.navbar-collapse.in {
  overflow-y: auto;
}
@media (min-width: 768px) {
  .navbar-collapse {
    width: auto;
    border-top: 0;
    -webkit-box-shadow: none;
    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-top .navbar-collapse,
  .navbar-static-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    padding-right: 0;
    padding-left: 0;
  }
}
.navbar-fixed-top,
.navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
}
.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
  max-height: 340px;
}
@media (max-device-width: 480px) and (orientation: landscape) {
  .navbar-fixed-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    max-height: 200px;
  }
}
@media (min-width: 768px) {
  .navbar-fixed-top,
  .navbar-fixed-bottom {
    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;
}
.container > .navbar-header,
.container-fluid > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-collapse {
  margin-right: -15px;
  margin-left: -15px;
}
@media (min-width: 768px) {
  .container > .navbar-header,
  .container-fluid > .navbar-header,
  .container > .navbar-collapse,
  .container-fluid > .navbar-collapse {
    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-brand {
  float: left;
  height: 50px;
  padding: 15px 15px;
  font-size: 18px;
  line-height: 20px;
}
.navbar-brand:hover,
.navbar-brand:focus {
  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-right: 15px;
  margin-top: 8px;
  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;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .navbar-nav .open .dropdown-menu > li > a,
  .navbar-nav .open .dropdown-menu .dropdown-header {
    padding: 5px 15px 5px 25px;
  }
  .navbar-nav .open .dropdown-menu > li > a {
    line-height: 20px;
  }
  .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-nav .open .dropdown-menu > li > a:focus {
    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-right: -15px;
  margin-left: -15px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  margin-top: 8px;
  margin-bottom: 8px;
}
@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 .input-group-addon,
  .navbar-form .input-group .input-group-btn,
  .navbar-form .input-group .form-control {
    width: auto;
  }
  .navbar-form .input-group > .form-control {
    width: 100%;
  }
  .navbar-form .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .radio,
  .navbar-form .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .radio label,
  .navbar-form .checkbox label {
    padding-left: 0;
  }
  .navbar-form .radio input[type="radio"],
  .navbar-form .checkbox input[type="checkbox"] {
    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;
    -webkit-box-shadow: none;
    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;
  }
}
@media (min-width: 768px) {
  .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:hover,
.navbar-default .navbar-brand:focus {
  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:hover,
.navbar-default .navbar-nav > li > a:focus {
  color: #333;
  background-color: transparent;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
  color: #555;
  background-color: #e7e7e7;
}
.navbar-default .navbar-nav > .disabled > a,
.navbar-default .navbar-nav > .disabled > a:hover,
.navbar-default .navbar-nav > .disabled > a:focus {
  color: #ccc;
  background-color: transparent;
}
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
  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:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #333;
    background-color: transparent;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #555;
    background-color: #e7e7e7;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #ccc;
    background-color: transparent;
  }
}
.navbar-default .navbar-toggle {
  border-color: #ddd;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
  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-link {
  color: #777;
}
.navbar-default .navbar-link:hover {
  color: #333;
}
.navbar-default .btn-link {
  color: #777;
}
.navbar-default .btn-link:hover,
.navbar-default .btn-link:focus {
  color: #333;
}
.navbar-default .btn-link[disabled]:hover,
fieldset[disabled] .navbar-default .btn-link:hover,
.navbar-default .btn-link[disabled]:focus,
fieldset[disabled] .navbar-default .btn-link:focus {
  color: #ccc;
}
.navbar-inverse {
  background-color: #222;
  border-color: #080808;
}
.navbar-inverse .navbar-brand {
  color: #9d9d9d;
}
.navbar-inverse .navbar-brand:hover,
.navbar-inverse .navbar-brand:focus {
  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:hover,
.navbar-inverse .navbar-nav > li > a:focus {
  color: #fff;
  background-color: transparent;
}
.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:hover,
.navbar-inverse .navbar-nav > .active > a:focus {
  color: #fff;
  background-color: #080808;
}
.navbar-inverse .navbar-nav > .disabled > a,
.navbar-inverse .navbar-nav > .disabled > a:hover,
.navbar-inverse .navbar-nav > .disabled > a:focus {
  color: #444;
  background-color: transparent;
}
.navbar-inverse .navbar-nav > .open > a,
.navbar-inverse .navbar-nav > .open > a:hover,
.navbar-inverse .navbar-nav > .open > a:focus {
  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:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #fff;
    background-color: transparent;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #fff;
    background-color: #080808;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #444;
    background-color: transparent;
  }
}
.navbar-inverse .navbar-toggle {
  border-color: #333;
}
.navbar-inverse .navbar-toggle:hover,
.navbar-inverse .navbar-toggle:focus {
  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-link {
  color: #9d9d9d;
}
.navbar-inverse .navbar-link:hover {
  color: #fff;
}
.navbar-inverse .btn-link {
  color: #9d9d9d;
}
.navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link:focus {
  color: #fff;
}
.navbar-inverse .btn-link[disabled]:hover,
fieldset[disabled] .navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link[disabled]:focus,
fieldset[disabled] .navbar-inverse .btn-link:focus {
  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: "/\A0";
}
.breadcrumb > .active {
  color: #777777;
}
.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 > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
  z-index: 2;
  color: #23527c;
  background-color: #eeeeee;
  border-color: #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 > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  z-index: 3;
  color: #fff;
  cursor: default;
  background-color: #337ab7;
  border-color: #337ab7;
}
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: #777777;
  cursor: not-allowed;
  background-color: #fff;
  border-color: #ddd;
}
.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}
.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;
  line-height: 1.5;
}
.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:hover,
.pager li > a:focus {
  text-decoration: none;
  background-color: #eeeeee;
}
.pager .next > a,
.pager .next > span {
  float: right;
}
.pager .previous > a,
.pager .previous > span {
  float: left;
}
.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
  color: #777777;
  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:hover,
a.label:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
.label:empty {
  display: none;
}
.btn .label {
  position: relative;
  top: -1px;
}
.label-default {
  background-color: #777777;
}
.label-default[href]:hover,
.label-default[href]:focus {
  background-color: #5e5e5e;
}
.label-primary {
  background-color: #337ab7;
}
.label-primary[href]:hover,
.label-primary[href]:focus {
  background-color: #286090;
}
.label-success {
  background-color: #5cb85c;
}
.label-success[href]:hover,
.label-success[href]:focus {
  background-color: #449d44;
}
.label-info {
  background-color: #5bc0de;
}
.label-info[href]:hover,
.label-info[href]:focus {
  background-color: #31b0d5;
}
.label-warning {
  background-color: #f0ad4e;
}
.label-warning[href]:hover,
.label-warning[href]:focus {
  background-color: #ec971f;
}
.label-danger {
  background-color: #d9534f;
}
.label-danger[href]:hover,
.label-danger[href]:focus {
  background-color: #c9302c;
}
.badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  background-color: #777777;
  border-radius: 10px;
}
.badge:empty {
  display: none;
}
.btn .badge {
  position: relative;
  top: -1px;
}
.btn-xs .badge,
.btn-group-xs > .btn .badge {
  top: 0;
  padding: 1px 5px;
}
a.badge:hover,
a.badge:focus {
  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-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  color: inherit;
  background-color: #eeeeee;
}
.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 {
  padding-right: 15px;
  padding-left: 15px;
  border-radius: 6px;
}
.jumbotron .container {
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .jumbotron {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .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;
  -webkit-transition: border 0.2s ease-in-out;
  -o-transition: border 0.2s ease-in-out;
  transition: border 0.2s ease-in-out;
}
.thumbnail > img,
.thumbnail a > img {
  margin-right: auto;
  margin-left: auto;
}
a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
  border-color: #337ab7;
}
.thumbnail .caption {
  padding: 9px;
  color: #333333;
}
.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: bold;
}
.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;
}
@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
@-o-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
@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;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  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;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -webkit-transition: width 0.6s ease;
  -o-transition: width 0.6s ease;
  transition: width 0.6s ease;
}
.progress-striped .progress-bar,
.progress-bar-striped {
  background-image: -webkit-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-image: -o-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-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);
  -webkit-background-size: 40px 40px;
  background-size: 40px 40px;
}
.progress.active .progress-bar,
.progress-bar.active {
  -webkit-animation: progress-bar-stripes 2s linear infinite;
  -o-animation: progress-bar-stripes 2s linear infinite;
  animation: progress-bar-stripes 2s linear infinite;
}
.progress-bar-success {
  background-color: #5cb85c;
}
.progress-striped .progress-bar-success {
  background-image: -webkit-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-image: -o-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-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: -webkit-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-image: -o-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-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: -webkit-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-image: -o-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-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: -webkit-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-image: -o-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-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-object.img-thumbnail {
  max-width: none;
}
.media-right,
.media > .pull-right {
  padding-left: 10px;
}
.media-left,
.media > .pull-left {
  padding-right: 10px;
}
.media-left,
.media-right,
.media-body {
  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;
}
.list-group-item.disabled,
.list-group-item.disabled:hover,
.list-group-item.disabled:focus {
  color: #777777;
  cursor: not-allowed;
  background-color: #eeeeee;
}
.list-group-item.disabled .list-group-item-heading,
.list-group-item.disabled:hover .list-group-item-heading,
.list-group-item.disabled:focus .list-group-item-heading {
  color: inherit;
}
.list-group-item.disabled .list-group-item-text,
.list-group-item.disabled:hover .list-group-item-text,
.list-group-item.disabled:focus .list-group-item-text {
  color: #777777;
}
.list-group-item.active,
.list-group-item.active:hover,
.list-group-item.active:focus {
  z-index: 2;
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7;
}
.list-group-item.active .list-group-item-heading,
.list-group-item.active:hover .list-group-item-heading,
.list-group-item.active:focus .list-group-item-heading,
.list-group-item.active .list-group-item-heading > small,
.list-group-item.active:hover .list-group-item-heading > small,
.list-group-item.active:focus .list-group-item-heading > small,
.list-group-item.active .list-group-item-heading > .small,
.list-group-item.active:hover .list-group-item-heading > .small,
.list-group-item.active:focus .list-group-item-heading > .small {
  color: inherit;
}
.list-group-item.active .list-group-item-text,
.list-group-item.active:hover .list-group-item-text,
.list-group-item.active:focus .list-group-item-text {
  color: #c7ddef;
}
a.list-group-item,
button.list-group-item {
  color: #555;
}
a.list-group-item .list-group-item-heading,
button.list-group-item .list-group-item-heading {
  color: #333;
}
a.list-group-item:hover,
button.list-group-item:hover,
a.list-group-item:focus,
button.list-group-item:focus {
  color: #555;
  text-decoration: none;
  background-color: #f5f5f5;
}
button.list-group-item {
  width: 100%;
  text-align: left;
}
.list-group-item-success {
  color: #3c763d;
  background-color: #dff0d8;
}
a.list-group-item-success,
button.list-group-item-success {
  color: #3c763d;
}
a.list-group-item-success .list-group-item-heading,
button.list-group-item-success .list-group-item-heading {
  color: inherit;
}
a.list-group-item-success:hover,
button.list-group-item-success:hover,
a.list-group-item-success:focus,
button.list-group-item-success:focus {
  color: #3c763d;
  background-color: #d0e9c6;
}
a.list-group-item-success.active,
button.list-group-item-success.active,
a.list-group-item-success.active:hover,
button.list-group-item-success.active:hover,
a.list-group-item-success.active:focus,
button.list-group-item-success.active:focus {
  color: #fff;
  background-color: #3c763d;
  border-color: #3c763d;
}
.list-group-item-info {
  color: #31708f;
  background-color: #d9edf7;
}
a.list-group-item-info,
button.list-group-item-info {
  color: #31708f;
}
a.list-group-item-info .list-group-item-heading,
button.list-group-item-info .list-group-item-heading {
  color: inherit;
}
a.list-group-item-info:hover,
button.list-group-item-info:hover,
a.list-group-item-info:focus,
button.list-group-item-info:focus {
  color: #31708f;
  background-color: #c4e3f3;
}
a.list-group-item-info.active,
button.list-group-item-info.active,
a.list-group-item-info.active:hover,
button.list-group-item-info.active:hover,
a.list-group-item-info.active:focus,
button.list-group-item-info.active:focus {
  color: #fff;
  background-color: #31708f;
  border-color: #31708f;
}
.list-group-item-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
}
a.list-group-item-warning,
button.list-group-item-warning {
  color: #8a6d3b;
}
a.list-group-item-warning .list-group-item-heading,
button.list-group-item-warning .list-group-item-heading {
  color: inherit;
}
a.list-group-item-warning:hover,
button.list-group-item-warning:hover,
a.list-group-item-warning:focus,
button.list-group-item-warning:focus {
  color: #8a6d3b;
  background-color: #faf2cc;
}
a.list-group-item-warning.active,
button.list-group-item-warning.active,
a.list-group-item-warning.active:hover,
button.list-group-item-warning.active:hover,
a.list-group-item-warning.active:focus,
button.list-group-item-warning.active:focus {
  color: #fff;
  background-color: #8a6d3b;
  border-color: #8a6d3b;
}
.list-group-item-danger {
  color: #a94442;
  background-color: #f2dede;
}
a.list-group-item-danger,
button.list-group-item-danger {
  color: #a94442;
}
a.list-group-item-danger .list-group-item-heading,
button.list-group-item-danger .list-group-item-heading {
  color: inherit;
}
a.list-group-item-danger:hover,
button.list-group-item-danger:hover,
a.list-group-item-danger:focus,
button.list-group-item-danger:focus {
  color: #a94442;
  background-color: #ebcccc;
}
a.list-group-item-danger.active,
button.list-group-item-danger.active,
a.list-group-item-danger.active:hover,
button.list-group-item-danger.active:hover,
a.list-group-item-danger.active:focus,
button.list-group-item-danger.active:focus {
  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;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  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 > a,
.panel-title > small,
.panel-title > .small,
.panel-title > small > a,
.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 > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0;
}
.list-group + .panel-footer {
  border-top-width: 0;
}
.panel > .table,
.panel > .table-responsive > .table,
.panel > .panel-collapse > .table {
  margin-bottom: 0;
}
.panel > .table caption,
.panel > .table-responsive > .table caption,
.panel > .panel-collapse > .table caption {
  padding-right: 15px;
  padding-left: 15px;
}
.panel > .table:first-child,
.panel > .table-responsive:first-child > .table:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.panel > .table:first-child > thead: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-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.panel > .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 td:first-child,
.panel > .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 td:first-child,
.panel > .table:first-child > thead:first-child > tr:first-child th: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 th:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
  border-top-left-radius: 3px;
}
.panel > .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 td:last-child,
.panel > .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 td:last-child,
.panel > .table:first-child > thead:first-child > tr:first-child th: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 th:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
  border-top-right-radius: 3px;
}
.panel > .table:last-child,
.panel > .table-responsive:last-child > .table:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.panel > .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 td:first-child,
.panel > .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 td:first-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
  border-bottom-left-radius: 3px;
}
.panel > .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 td:last-child,
.panel > .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 td:last-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .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 th,
.panel > .table > tbody:first-child > tr:first-child td {
  border-top: 0;
}
.panel > .table-bordered,
.panel > .table-responsive > .table-bordered {
  border: 0;
}
.panel > .table-bordered > thead > tr > th:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
.panel > .table-bordered > tbody > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.panel > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-bordered > thead > tr > td:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.panel > .table-bordered > tbody > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.panel > .table-bordered > tfoot > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  border-left: 0;
}
.panel > .table-bordered > thead > tr > th:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
.panel > .table-bordered > tbody > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.panel > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-bordered > thead > tr > td:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.panel > .table-bordered > tbody > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.panel > .table-bordered > tfoot > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  border-right: 0;
}
.panel > .table-bordered > thead > tr:first-child > td,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
.panel > .table-bordered > tbody > tr:first-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
.panel > .table-bordered > thead > tr:first-child > th,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
.panel > .table-bordered > tbody > tr:first-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
  border-bottom: 0;
}
.panel > .table-bordered > tbody > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.panel > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-bordered > tbody > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.panel > .table-bordered > tfoot > tr:last-child > th,
.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 > .panel-body,
.panel-group .panel-heading + .panel-collapse > .list-group {
  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: #333333;
  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: #333333;
}
.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 iframe,
.embed-responsive embed,
.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;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}
.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: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  filter: alpha(opacity=20);
  opacity: 0.2;
}
.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  filter: alpha(opacity=50);
  opacity: 0.5;
}
button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.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 {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  -o-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out, -o-transform 0.3s ease-out;
}
.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  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;
  background-clip: padding-box;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  outline: 0;
}
.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 {
  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 {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    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-style: normal;
  font-weight: 400;
  line-height: 1.42857143;
  line-break: auto;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  white-space: normal;
  font-size: 12px;
  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.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;
}
.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 4px;
}
.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.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-style: normal;
  font-weight: 400;
  line-height: 1.42857143;
  line-break: auto;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  white-space: normal;
  font-size: 14px;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.popover.top {
  margin-top: -10px;
}
.popover.right {
  margin-left: 10px;
}
.popover.bottom {
  margin-top: 10px;
}
.popover.left {
  margin-left: -10px;
}
.popover > .arrow {
  border-width: 11px;
}
.popover > .arrow,
.popover > .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.popover > .arrow:after {
  content: "";
  border-width: 10px;
}
.popover.top > .arrow {
  bottom: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-color: #999999;
  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: #999999;
  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: #999999;
  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: #999999;
  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;
}
.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;
}
.carousel {
  position: relative;
}
.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.carousel-inner > .item {
  position: relative;
  display: none;
  -webkit-transition: 0.6s ease-in-out left;
  -o-transition: 0.6s ease-in-out left;
  transition: 0.6s ease-in-out left;
}
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  line-height: 1;
}
@media all and (transform-3d), (-webkit-transform-3d) {
  .carousel-inner > .item {
    -webkit-transition: -webkit-transform 0.6s ease-in-out;
    -o-transition: -o-transform 0.6s ease-in-out;
    transition: -webkit-transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    perspective: 1000px;
  }
  .carousel-inner > .item.next,
  .carousel-inner > .item.active.right {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    left: 0;
  }
  .carousel-inner > .item.prev,
  .carousel-inner > .item.active.left {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    left: 0;
  }
  .carousel-inner > .item.next.left,
  .carousel-inner > .item.prev.right,
  .carousel-inner > .item.active {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    left: 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);
  background-color: rgba(0, 0, 0, 0);
  filter: alpha(opacity=50);
  opacity: 0.5;
}
.carousel-control.left {
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));
  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: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));
  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:hover,
.carousel-control:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  filter: alpha(opacity=90);
  opacity: 0.9;
}
.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: inline-block;
  margin-top: -10px;
}
.carousel-control .icon-prev,
.carousel-control .glyphicon-chevron-left {
  left: 50%;
  margin-left: -10px;
}
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-right {
  right: 50%;
  margin-right: -10px;
}
.carousel-control .icon-prev,
.carousel-control .icon-next {
  width: 20px;
  height: 20px;
  font-family: serif;
  line-height: 1;
}
.carousel-control .icon-prev:before {
  content: "\2039";
}
.carousel-control .icon-next:before {
  content: "\203A";
}
.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-prev,
  .carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -10px;
    font-size: 30px;
  }
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .icon-prev {
    margin-left: -10px;
  }
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-next {
    margin-right: -10px;
  }
  .carousel-caption {
    right: 20%;
    left: 20%;
    padding-bottom: 30px;
  }
  .carousel-indicators {
    bottom: 20px;
  }
}
.clearfix:before,
.clearfix:after,
.dl-horizontal dd:before,
.dl-horizontal dd:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after,
.form-horizontal .form-group:before,
.form-horizontal .form-group:after,
.btn-toolbar:before,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:before,
.btn-group-vertical > .btn-group:after,
.nav:before,
.nav:after,
.navbar:before,
.navbar:after,
.navbar-header:before,
.navbar-header:after,
.navbar-collapse:before,
.navbar-collapse:after,
.pager:before,
.pager:after,
.panel-body:before,
.panel-body:after,
.modal-header:before,
.modal-header:after,
.modal-footer:before,
.modal-footer:after {
  display: table;
  content: " ";
}
.clearfix:after,
.dl-horizontal dd:after,
.container:after,
.container-fluid:after,
.row:after,
.form-horizontal .form-group:after,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:after,
.nav:after,
.navbar:after,
.navbar-header:after,
.navbar-collapse:after,
.pager:after,
.panel-body:after,
.modal-header:after,
.modal-footer: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;
}
@-ms-viewport {
  width: device-width;
}
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
  display: none !important;
}
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}
@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }
  table.visible-xs {
    display: table !important;
  }
  tr.visible-xs {
    display: table-row !important;
  }
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important;
  }
}
@media (max-width: 767px) {
  .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 !important;
  }
  tr.visible-sm {
    display: table-row !important;
  }
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .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 !important;
  }
  tr.visible-md {
    display: table-row !important;
  }
  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }
  table.visible-lg {
    display: table !important;
  }
  tr.visible-lg {
    display: table-row !important;
  }
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-block {
    display: block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important;
  }
}
@media (min-width: 1200px) {
  .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 !important;
  }
  tr.visible-print {
    display: table-row !important;
  }
  th.visible-print,
  td.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;
  }
}
@media print {
  .hidden-print {
    display: none !important;
  }
}
/*# sourceMappingURL=bootstrap.css.map *//* line 2, slider.scss */
slider, [slider] {
  display: inline-block;
  position: relative;
  height: 7px;
  width: 100%;
  margin: 25px 5px 25px 5px;
  vertical-align: middle;
}
/* line 10, slider.scss */
slider div, [slider] div {
  white-space: nowrap;
  position: absolute;
}
/* line 14, slider.scss */
slider div.bar, [slider] div.bar {
  width: 100%;
  height: 100%;
  border-radius: 7px;
  background: #444;
  overflow: hidden;
}
/* line 21, slider.scss */
slider div.bar .selection, [slider] div.bar .selection {
  width: 0%;
  height: 100%;
  background: #13b6ff;
}
/* line 28, slider.scss */
slider div.handle, [slider] div.handle {
  cursor: pointer;
  width: 20px;
  height: 20px;
  top: -8px;
  background-color: #fff;
  border: 1px solid #000;
  z-index: 2;
  border-radius: 100%;
}
/* line 38, slider.scss */
slider div.handle:after, [slider] div.handle:after {
  content: '';
  background-color: #777;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 6px;
  left: 6px;
  border-radius: 100%;
}
/* line 48, slider.scss */
slider div.handle:after:hover, [slider] div.handle:after:hover {
  background-color: #000;
}
/* line 53, slider.scss */
slider div.handle.active:after, [slider] div.handle.active:after {
  background-color: #f00;
}
/* line 58, slider.scss */
slider div.bubble, [slider] div.bubble {
  display: none;
  cursor: default;
  top: -22px;
  padding: 1px 3px 1px 3px;
  font-size: 0.7em;
  font-family: sans-serif;
}
/* line 66, slider.scss */
slider div.bubble.active, [slider] div.bubble.active {
  display: inline-block;
}
/* line 70, slider.scss */
slider div.bubble.limit, [slider] div.bubble.limit {
  color: #777;
}
/**
 * 	Angular RangeSlider SCSS
 * 
 *	Version: 0.0.14
 *
 * 	Author: Daniel Crisp, danielcrisp.com
 *
 * 	The rangeSlider has been styled to match the default styling
 * 	of form elements styled using Twitter's Bootstrap
 * 
 * 	Originally forked from https://github.com/leongersen/noUiSlider
 *

	This code is released under the MIT Licence - http://opensource.org/licenses/MIT

	Copyright (c) 2013 Daniel Crisp

	Permission is hereby granted, free of charge, to any person obtaining a copy
	of this software and associated documentation files (the "Software"), to deal
	in the Software without restriction, including without limitation the rights
	to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
	copies of the Software, and to permit persons to whom the Software is
	furnished to do so, subject to the following conditions:

	The above copyright notice and this permission notice shall be included in
	all copies or substantial portions of the Software.

	THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
	IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
	FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
	AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
	LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
	OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
	THE SOFTWARE.

 */
/*------------------------------------*\
    COMPASS IMPORTS
\*------------------------------------*/
/*------------------------------------*\
    SETTINGS
\*------------------------------------*/
/*------------------------------------*\
    THE CSS
\*------------------------------------*/
/* line 25, scss/_rangeSlider.scss */
.ngrs-range-slider {
  position: relative;
  margin: 10px 0 30px;
  padding: 4px;
  border: 1px solid #ccc;
  background: #fff;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -moz-transition: border 0.2s linear, box-shadow 0.2s linear;
  -o-transition: border 0.2s linear, box-shadow 0.2s linear;
  -webkit-transition: border 0.2s linear, box-shadow 0.2s linear;
  transition: border 0.2s linear, box-shadow 0.2s linear;
  -webkit-tap-highlight-color: transparent;
  /*------------------------------------*\
      RUNNER
  \*------------------------------------*/
  /*------------------------------------*\
      JOIN (connects the two handles)
  \*------------------------------------*/
  /*------------------------------------*\
      HANDLE
  \*------------------------------------*/
  /*------------------------------------*\
      HANDLE SPECIFICS
  \*------------------------------------*/
  /*------------------------------------*\
      VALUE LABELS
  \*------------------------------------*/
  /*------------------------------------*\
      ATTACHED VALUE RUNNER
  \*------------------------------------*/
  /*------------------------------------*\
      VERTICAL SLIDER
  \*------------------------------------*/
  /*------------------------------------*\
      FOCUS STATE
  \*------------------------------------*/
  /*------------------------------------*\
      DISABLED STATE
  \*------------------------------------*/
}
/* line 28, scss/_rangeSlider.scss */
.ngrs-range-slider, .ngrs-range-slider * {
  display: block;
  cursor: default;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-user-select: -moz-none;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}
/* line 53, scss/_rangeSlider.scss */
.ngrs-range-slider .ngrs-runner {
  position: relative;
  margin: 0 9px;
  height: 18px;
}
/* line 63, scss/_rangeSlider.scss */
.ngrs-range-slider .ngrs-join {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 0;
  right: 100%;
  height: 8px;
  margin: -4px 0 0 0;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  background-color: #2f96b4;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzViYzBkZSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzJmOTZiNCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #5bc0de), color-stop(100%, #2f96b4));
  background-image: -moz-linear-gradient(#5bc0de, #2f96b4);
  background-image: -webkit-linear-gradient(#5bc0de, #2f96b4);
  background-image: linear-gradient(#5bc0de, #2f96b4);
}
/* line 81, scss/_rangeSlider.scss */
.ngrs-range-slider .ngrs-handle {
  position: absolute;
  z-index: 2;
  height: 100%;
  width: 18px;
  margin: 0 0 0 -9px;
  background: #efefef;
  border: 1px solid #ccc;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  /*------------------------------------*\
      HANDLE ICON
  \*------------------------------------*/
}
/* line 95, scss/_rangeSlider.scss */
.ngrs-range-slider .ngrs-handle i {
  display: block;
  width: 100%;
  height: 100%;
  background: no-repeat -9999px -9999px;
  cursor: pointer;
}
/* line 104, scss/_rangeSlider.scss */
.ngrs-range-slider .ngrs-handle.ngrs-over i {
  background-position: 50% 50%;
}
/* line 109, scss/_rangeSlider.scss */
.ngrs-range-slider .ngrs-handle.ngrs-down {
  -moz-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}
/* line 120, scss/_rangeSlider.scss */
.ngrs-range-slider .ngrs-handle-min i {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAFNJREFUeNpiYMAEXEDsA+OwoEnKALETEHOgK2AEYhMgNkQ3DqSAB6pLAot1DExIJmAFzED8C4hvQdnIppyFKYCBp0D8CohloVafxWUqN7I3AQIMAKw6B24pOi8lAAAAAElFTkSuQmCC");
}
/* line 127, scss/_rangeSlider.scss */
.ngrs-range-slider .ngrs-handle-max i {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAFdJREFUeNpiYEAAHyDmYkADzEhsByBWA+K3QPwJmwJjIGYBYlUgZgLi59gUwIAkEEsD8VMmBtyAkQFqJDZwAYjPAPE/dAU/gHg/ED/GpgvkTW50QYAAAwADfwrM5sqplgAAAABJRU5ErkJggg==");
}
/* line 137, scss/_rangeSlider.scss */
.ngrs-range-slider .ngrs-value {
  position: absolute;
  top: 100%;
  left: 0;
  padding: 5px 0 0 0;
  font-size: 12px;
  color: #999;
}
/* line 145, scss/_rangeSlider.scss */
.ngrs-range-slider .ngrs-value.ngrs-value-max {
  left: auto;
  right: 0;
  text-align: right;
}
/* line 152, scss/_rangeSlider.scss */
.ngrs-range-slider.ngrs-handle-min-down .ngrs-value-min, .ngrs-range-slider.ngrs-handle-max-down .ngrs-value-max {
  color: #333;
}
/* line 160, scss/_rangeSlider.scss */
.ngrs-range-slider .ngrs-attached-handles {
  margin: 0 9px;
  position: relative;
  /*------------------------------------*\
      ATTACHED VALUE RUNNER LABELS
  \*------------------------------------*/
}
/* line 167, scss/_rangeSlider.scss */
.ngrs-range-slider .ngrs-attached-handles .ngrs-value {
  text-align: left;
}
/* line 172, scss/_rangeSlider.scss */
.ngrs-range-slider .ngrs-attached-handles .ngrs-value > div {
  margin: 0 0 0 -50%;
}
/* line 181, scss/_rangeSlider.scss */
.ngrs-range-slider.ngrs-vertical {
  width: 28px;
  margin: 10px auto;
  /*------------------------------------*\
      RUNNER
  \*------------------------------------*/
  /*------------------------------------*\
      ATTACHED VALUE RUNNER
  \*------------------------------------*/
  /*------------------------------------*\
      JOIN
  \*------------------------------------*/
  /*------------------------------------*\
      HANDLE
  \*------------------------------------*/
  /*------------------------------------*\
      HANDLE SPECIFICS
  \*------------------------------------*/
  /*------------------------------------*\
      VALUE LABELS
  \*------------------------------------*/
  /*------------------------------------*\
      VERTICAL LEFT SLIDER
  \*------------------------------------*/
  /*------------------------------------*\
      VERTICAL RIGHT SLIDER
  \*------------------------------------*/
}
/* line 189, scss/_rangeSlider.scss */
.ngrs-range-slider.ngrs-vertical .ngrs-runner {
  margin: 9px 0;
  height: 300px;
  width: 18px;
}
/* line 199, scss/_rangeSlider.scss */
.ngrs-range-slider.ngrs-vertical .ngrs-value-runner.ngrs-attached-handles {
  position: absolute;
  top: 0;
  left: 100%;
  bottom: 0;
  margin: 9px 0;
}
/* line 212, scss/_rangeSlider.scss */
.ngrs-range-slider.ngrs-vertical .ngrs-join {
  width: 8px;
  height: auto;
  top: 0;
  bottom: 100%;
  left: 50%;
  right: auto;
  margin: 0 0 0 -4px;
}
/* line 226, scss/_rangeSlider.scss */
.ngrs-range-slider.ngrs-vertical .ngrs-handle {
  width: 100%;
  height: 18px;
  margin: -9px 0 0 0;
}
/* line 237, scss/_rangeSlider.scss */
.ngrs-range-slider.ngrs-vertical .ngrs-handle-min i {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAFFJREFUeNpiYEAFPFAMB0xIbEYgdoJiRpggM5ICUyBWhZoA0vgMWYEsENsg6ZQE4ldA/AmkkguIHZGNhQKQGBfIBHcgFmTABCxALMJAMQAIMAAcNgVQJ7t7JQAAAABJRU5ErkJggg==");
}
/* line 244, scss/_rangeSlider.scss */
.ngrs-range-slider.ngrs-vertical .ngrs-handle-max i {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAFZJREFUeNpiYKAUMAKxDxBL4ZB/xgQk9gHxDyySILF9zEDiNxC/A2JVNAW7gfgtM5TzCYhZgFgCyr8IxNdADGZk+4BYGoi/APEBIP6PzVE8UAwHAAEGAArIDvzRFIA6AAAAAElFTkSuQmCC");
}
/* line 254, scss/_rangeSlider.scss */
.ngrs-range-slider.ngrs-vertical .ngrs-value {
  top: 0;
  left: 100%;
  padding: 0 0 0 5px;
}
/* line 259, scss/_rangeSlider.scss */
.ngrs-range-slider.ngrs-vertical .ngrs-value.ngrs-value-max {
  top: auto;
  bottom: 0;
  right: auto;
  text-align: left;
}
/* line 269, scss/_rangeSlider.scss */
.ngrs-range-slider.ngrs-vertical .ngrs-attached-handles .ngrs-value > div {
  margin: -50% 0 0 0;
}
/* line 279, scss/_rangeSlider.scss */
.ngrs-range-slider.ngrs-vertical.ngrs-left {
  margin: 10px 0;
}
/* line 287, scss/_rangeSlider.scss */
.ngrs-range-slider.ngrs-vertical.ngrs-right {
  margin: 10px 0 10px auto;
  /*------------------------------------*\
      VALUE LABELS
  \*------------------------------------*/
}
/* line 294, scss/_rangeSlider.scss */
.ngrs-range-slider.ngrs-vertical.ngrs-right .ngrs-value {
  left: auto;
  right: 100%;
  padding: 0 5px 0 0;
  text-align: right;
}
/* line 300, scss/_rangeSlider.scss */
.ngrs-range-slider.ngrs-vertical.ngrs-right .ngrs-value.ngrs-value-max {
  text-align: right;
}
/* line 306, scss/_rangeSlider.scss */
.ngrs-range-slider.ngrs-vertical.ngrs-right .ngrs-value-runner.ngrs-attached-handles {
  left: 0;
}
/* line 318, scss/_rangeSlider.scss */
.ngrs-range-slider.ngrs-focus {
  border-color: rgba(82, 168, 236, 0.8);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
}
/* line 329, scss/_rangeSlider.scss */
.ngrs-range-slider.ngrs-disabled, .ngrs-range-slider.ngrs-disabled.ngrs-focus {
  border-color: #ddd;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
/* line 335, scss/_rangeSlider.scss */
.ngrs-range-slider.ngrs-disabled .ngrs-handle {
  background: #fff;
  border-color: #ddd;
}
/* line 339, scss/_rangeSlider.scss */
.ngrs-range-slider.ngrs-disabled .ngrs-handle i {
  background: none !important;
  cursor: default;
}
/* line 345, scss/_rangeSlider.scss */
.ngrs-range-slider.ngrs-disabled .ngrs-join {
  background: #ddd;
}
/* line 349, scss/_rangeSlider.scss */
.ngrs-range-slider.ngrs-disabled .ngrs-value {
  color: #ddd;
}

/*------------------------------------*\
    TOUCH STATE
\*------------------------------------*/
/* line 361, scss/_rangeSlider.scss */
body.ngrs-touching {
  -ms-touch-action: none;
}
/* ************************************** */
/* Mandatory CSS required for ng-sortable */
/* ************************************** */

.as-sortable-item, .as-sortable-placeholder {
    display: block;
}

.as-sortable-item {
    -ms-touch-action: none;
    touch-action: none;
    /* to disable context menu on iOS devices */
    -webkit-touch-callout: none;
}

.as-sortable-item-handle {
    cursor: move;
    cursor: -webkit-grab;
    cursor: -moz-grab;
}

.as-sortable-placeholder {
}

.as-sortable-drag {
    position: absolute;
    pointer-events: none;
    z-index: 9999;
}

.as-sortable-hidden {
    display: none !important;
}

.as-sortable-un-selectable {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}/* required styles */

.leaflet-map-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-pane,
.leaflet-tile-container,
.leaflet-overlay-pane,
.leaflet-shadow-pane,
.leaflet-marker-pane,
.leaflet-popup-pane,
.leaflet-overlay-pane svg,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
	position: absolute;
	left: 0;
	top: 0;
	}
.leaflet-container {
	overflow: hidden;
	-ms-touch-action: none;
	touch-action: none;
	}
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
	-webkit-user-select: none;
	   -moz-user-select: none;
	        user-select: none;
	-webkit-user-drag: none;
	}
.leaflet-marker-icon,
.leaflet-marker-shadow {
	display: block;
	}
/* map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container img {
	max-width: none !important;
	}
/* stupid Android 2 doesn't understand "max-width: none" properly */
.leaflet-container img.leaflet-image-layer {
	max-width: 15000px !important;
	}
.leaflet-tile {
	filter: inherit;
	visibility: hidden;
	}
.leaflet-tile-loaded {
	visibility: inherit;
	}
.leaflet-zoom-box {
	width: 0;
	height: 0;
	}
/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
	-moz-user-select: none;
	}

.leaflet-tile-pane    { z-index: 2; }
.leaflet-objects-pane { z-index: 3; }
.leaflet-overlay-pane { z-index: 4; }
.leaflet-shadow-pane  { z-index: 5; }
.leaflet-marker-pane  { z-index: 6; }
.leaflet-popup-pane   { z-index: 7; }

.leaflet-vml-shape {
	width: 1px;
	height: 1px;
	}
.lvml {
	behavior: url(#default#VML);
	display: inline-block;
	position: absolute;
	}


/* control positioning */

.leaflet-control {
	position: relative;
	z-index: 7;
	pointer-events: auto;
	}
.leaflet-top,
.leaflet-bottom {
	position: absolute;
	z-index: 1000;
	pointer-events: none;
	}
.leaflet-top {
	top: 0;
	}
.leaflet-right {
	right: 0;
	}
.leaflet-bottom {
	bottom: 0;
	}
.leaflet-left {
	left: 0;
	}
.leaflet-control {
	float: left;
	clear: both;
	}
.leaflet-right .leaflet-control {
	float: right;
	}
.leaflet-top .leaflet-control {
	margin-top: 10px;
	}
.leaflet-bottom .leaflet-control {
	margin-bottom: 10px;
	}
.leaflet-left .leaflet-control {
	margin-left: 10px;
	}
.leaflet-right .leaflet-control {
	margin-right: 10px;
	}


/* zoom and fade animations */

.leaflet-fade-anim .leaflet-tile,
.leaflet-fade-anim .leaflet-popup {
	opacity: 0;
	-webkit-transition: opacity 0.2s linear;
	   -moz-transition: opacity 0.2s linear;
	     -o-transition: opacity 0.2s linear;
	        transition: opacity 0.2s linear;
	}
.leaflet-fade-anim .leaflet-tile-loaded,
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
	opacity: 1;
	}

.leaflet-zoom-anim .leaflet-zoom-animated {
	-webkit-transition: -webkit-transform 0.25s cubic-bezier(0,0,0.25,1);
	   -moz-transition:    -moz-transform 0.25s cubic-bezier(0,0,0.25,1);
	     -o-transition:      -o-transform 0.25s cubic-bezier(0,0,0.25,1);
	        transition:         transform 0.25s cubic-bezier(0,0,0.25,1);
	}
.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile,
.leaflet-touching .leaflet-zoom-animated {
	-webkit-transition: none;
	   -moz-transition: none;
	     -o-transition: none;
	        transition: none;
	}

.leaflet-zoom-anim .leaflet-zoom-hide {
	visibility: hidden;
	}


/* cursors */

.leaflet-clickable {
	cursor: pointer;
	}
.leaflet-container {
	cursor: -webkit-grab;
	cursor:    -moz-grab;
	}
.leaflet-popup-pane,
.leaflet-control {
	cursor: auto;
	}
.leaflet-dragging .leaflet-container,
.leaflet-dragging .leaflet-clickable {
	cursor: move;
	cursor: -webkit-grabbing;
	cursor:    -moz-grabbing;
	}


/* visual tweaks */

.leaflet-container {
	background: #ddd;
	outline: 0;
	}
.leaflet-container a {
	color: #0078A8;
	}
.leaflet-container a.leaflet-active {
	outline: 2px solid orange;
	}
.leaflet-zoom-box {
	border: 2px dotted #38f;
	background: rgba(255,255,255,0.5);
	}


/* general typography */
.leaflet-container {
	font: 12px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif;
	}


/* general toolbar styles */

.leaflet-bar {
	box-shadow: 0 1px 5px rgba(0,0,0,0.65);
	border-radius: 4px;
	}
.leaflet-bar a,
.leaflet-bar a:hover {
	background-color: #fff;
	border-bottom: 1px solid #ccc;
	width: 26px;
	height: 26px;
	line-height: 26px;
	display: block;
	text-align: center;
	text-decoration: none;
	color: black;
	}
.leaflet-bar a,
.leaflet-control-layers-toggle {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	display: block;
	}
.leaflet-bar a:hover {
	background-color: #f4f4f4;
	}
.leaflet-bar a:first-child {
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	}
.leaflet-bar a:last-child {
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	border-bottom: none;
	}
.leaflet-bar a.leaflet-disabled {
	cursor: default;
	background-color: #f4f4f4;
	color: #bbb;
	}

.leaflet-touch .leaflet-bar a {
	width: 30px;
	height: 30px;
	line-height: 30px;
	}


/* zoom control */

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
	font: bold 18px 'Lucida Console', Monaco, monospace;
	text-indent: 1px;
	}
.leaflet-control-zoom-out {
	font-size: 20px;
	}

.leaflet-touch .leaflet-control-zoom-in {
	font-size: 22px;
	}
.leaflet-touch .leaflet-control-zoom-out {
	font-size: 24px;
	}


/* layers control */

.leaflet-control-layers {
	box-shadow: 0 1px 5px rgba(0,0,0,0.4);
	background: #fff;
	border-radius: 5px;
	}
.leaflet-control-layers-toggle {
	background-image: url(./layers.png);
	width: 36px;
	height: 36px;
	}
.leaflet-retina .leaflet-control-layers-toggle {
	background-image: url(./layers-2x.png);
	background-size: 26px 26px;
	}
.leaflet-touch .leaflet-control-layers-toggle {
	width: 44px;
	height: 44px;
	}
.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
	display: none;
	}
.leaflet-control-layers-expanded .leaflet-control-layers-list {
	display: block;
	position: relative;
	}
.leaflet-control-layers-expanded {
	padding: 6px 10px 6px 6px;
	color: #333;
	background: #fff;
	}
.leaflet-control-layers-selector {
	margin-top: 2px;
	position: relative;
	top: 1px;
	}
.leaflet-control-layers label {
	display: block;
	}
.leaflet-control-layers-separator {
	height: 0;
	border-top: 1px solid #ddd;
	margin: 5px -10px 5px -6px;
	}


/* attribution and scale controls */

.leaflet-container .leaflet-control-attribution {
	background: #fff;
	background: rgba(255, 255, 255, 0.7);
	margin: 0;
	}
.leaflet-control-attribution,
.leaflet-control-scale-line {
	padding: 0 5px;
	color: #333;
	}
.leaflet-control-attribution a {
	text-decoration: none;
	}
.leaflet-control-attribution a:hover {
	text-decoration: underline;
	}
.leaflet-container .leaflet-control-attribution,
.leaflet-container .leaflet-control-scale {
	font-size: 11px;
	}
.leaflet-left .leaflet-control-scale {
	margin-left: 5px;
	}
.leaflet-bottom .leaflet-control-scale {
	margin-bottom: 5px;
	}
.leaflet-control-scale-line {
	border: 2px solid #777;
	border-top: none;
	line-height: 1.1;
	padding: 2px 5px 1px;
	font-size: 11px;
	white-space: nowrap;
	overflow: hidden;
	-moz-box-sizing: content-box;
	     box-sizing: content-box;

	background: #fff;
	background: rgba(255, 255, 255, 0.5);
	}
.leaflet-control-scale-line:not(:first-child) {
	border-top: 2px solid #777;
	border-bottom: none;
	margin-top: -2px;
	}
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
	border-bottom: 2px solid #777;
	}

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	box-shadow: none;
	}
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	border: 2px solid rgba(0,0,0,0.2);
	background-clip: padding-box;
	}


/* popup */

.leaflet-popup {
	position: absolute;
	text-align: center;
	}
.leaflet-popup-content-wrapper {
	padding: 1px;
	text-align: left;
	border-radius: 12px;
	}
.leaflet-popup-content {
	margin: 13px 19px;
	line-height: 1.4;
	}
.leaflet-popup-content p {
	margin: 18px 0;
	}
.leaflet-popup-tip-container {
	margin: 0 auto;
	width: 40px;
	height: 20px;
	position: relative;
	overflow: hidden;
	}
.leaflet-popup-tip {
	width: 17px;
	height: 17px;
	padding: 1px;

	margin: -10px auto 0;

	-webkit-transform: rotate(45deg);
	   -moz-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	     -o-transform: rotate(45deg);
	        transform: rotate(45deg);
	}
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
	background: white;

	box-shadow: 0 3px 14px rgba(0,0,0,0.4);
	}
.leaflet-container a.leaflet-popup-close-button {
	position: absolute;
	top: 0;
	right: 0;
	padding: 4px 4px 0 0;
	text-align: center;
	width: 18px;
	height: 14px;
	font: 16px/14px Tahoma, Verdana, sans-serif;
	color: #c3c3c3;
	text-decoration: none;
	font-weight: bold;
	background: transparent;
	}
.leaflet-container a.leaflet-popup-close-button:hover {
	color: #999;
	}
.leaflet-popup-scrolled {
	overflow: auto;
	border-bottom: 1px solid #ddd;
	border-top: 1px solid #ddd;
	}

.leaflet-oldie .leaflet-popup-content-wrapper {
	zoom: 1;
	}
.leaflet-oldie .leaflet-popup-tip {
	width: 24px;
	margin: 0 auto;

	-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
	filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
	}
.leaflet-oldie .leaflet-popup-tip-container {
	margin-top: -1px;
	}

.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
	border: 1px solid #999;
	}


/* div icon */

.leaflet-div-icon {
	background: #fff;
	border: 1px solid #666;
	}
/* ================================================================== */
/* Toolbars
/* ================================================================== */

.leaflet-draw-section {
	position: relative;
}

.leaflet-draw-toolbar {
	margin-top: 12px;
}

.leaflet-draw-toolbar-top {
	margin-top: 0;
}

.leaflet-draw-toolbar-notop a:first-child {
	border-top-right-radius: 0;
}

.leaflet-draw-toolbar-nobottom a:last-child {
	border-bottom-right-radius: 0;
}

.leaflet-draw-toolbar a {
	background-image: url(./spritesheet.png);
	background-repeat: no-repeat;
}

.leaflet-retina .leaflet-draw-toolbar a {
	background-image: url(./spritesheet-2x.png);
	background-size: 270px 30px;
}

.leaflet-draw a {
	display: block;
	text-align: center;
	text-decoration: none;
}

/* ================================================================== */
/* Toolbar actions menu
/* ================================================================== */

.leaflet-draw-actions {
	display: none;
	list-style: none;
	margin: 0;
	padding: 0;
	position: absolute;
	left: 26px; /* leaflet-draw-toolbar.left + leaflet-draw-toolbar.width */
	top: 0;
	white-space: nowrap;
}

.leaflet-touch .leaflet-draw-actions {
	left: 32px;
}

.leaflet-right .leaflet-draw-actions {
	right:26px;
	left:auto;
}

.leaflet-touch .leaflet-right .leaflet-draw-actions {
	right:32px;
	left:auto;
}

.leaflet-draw-actions li {
	display: inline-block;
}

.leaflet-draw-actions li:first-child a {
	border-left: none;
}

.leaflet-draw-actions li:last-child a {
	-webkit-border-radius: 0 4px 4px 0;
	        border-radius: 0 4px 4px 0;
}

.leaflet-right .leaflet-draw-actions li:last-child a {
	-webkit-border-radius: 0;
	        border-radius: 0;
}

.leaflet-right .leaflet-draw-actions li:first-child a {
	-webkit-border-radius: 4px 0 0 4px;
	        border-radius: 4px 0 0 4px;
}

.leaflet-draw-actions a {
	background-color: #919187;
	border-left: 1px solid #AAA;
	color: #FFF;
	font: 11px/19px "Helvetica Neue", Arial, Helvetica, sans-serif;
	line-height: 28px;
	text-decoration: none;
	padding-left: 10px;
	padding-right: 10px;
	height: 28px;
}

.leaflet-touch .leaflet-draw-actions a {
	font-size: 12px;
	line-height: 30px;
	height: 30px;
}

.leaflet-draw-actions-bottom {
	margin-top: 0;
}

.leaflet-draw-actions-top {
	margin-top: 1px;
}

.leaflet-draw-actions-top a,
.leaflet-draw-actions-bottom a {
	height: 27px;
	line-height: 27px;
}

.leaflet-draw-actions a:hover {
	background-color: #A0A098;
}

.leaflet-draw-actions-top.leaflet-draw-actions-bottom a {
	height: 26px;
	line-height: 26px;
}

/* ================================================================== */
/* Draw toolbar
/* ================================================================== */

.leaflet-draw-toolbar .leaflet-draw-draw-polyline {
	background-position: -2px -2px;
}

.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-polyline {
	background-position: 0 -1px;
}

.leaflet-draw-toolbar .leaflet-draw-draw-polygon {
	background-position: -31px -2px;
}

.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-polygon {
	background-position: -29px -1px;
}

.leaflet-draw-toolbar .leaflet-draw-draw-rectangle {
	background-position: -62px -2px;
}

.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-rectangle {
	background-position: -60px -1px;
}

.leaflet-draw-toolbar .leaflet-draw-draw-circle {
	background-position: -92px -2px;
}

.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-circle {
	background-position: -90px -1px;
}

.leaflet-draw-toolbar .leaflet-draw-draw-marker {
	background-position: -122px -2px;
}

.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-marker {
	background-position: -120px -1px;
}

/* ================================================================== */
/* Edit toolbar
/* ================================================================== */

.leaflet-draw-toolbar .leaflet-draw-edit-edit {
	background-position: -152px -2px;
}

.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-edit {
	background-position: -150px -1px;
}

.leaflet-draw-toolbar .leaflet-draw-edit-remove {
	background-position: -182px -2px;
}

.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-remove {
	background-position: -180px -1px;
}

.leaflet-draw-toolbar .leaflet-draw-edit-edit.leaflet-disabled {
	background-position: -212px -2px;
}

.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-edit.leaflet-disabled {
	background-position: -210px -1px;
}

.leaflet-draw-toolbar .leaflet-draw-edit-remove.leaflet-disabled {
	background-position: -242px -2px;
}

.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-remove.leaflet-disabled {
	background-position: -240px -2px;
}

/* ================================================================== */
/* Drawing styles
/* ================================================================== */

.leaflet-mouse-marker {
	background-color: #fff;
	cursor: crosshair;
}

.leaflet-draw-tooltip {
	background: rgb(54, 54, 54);
	background: rgba(0, 0, 0, 0.5);
	border: 1px solid transparent;
	-webkit-border-radius: 4px;
	        border-radius: 4px;
	color: #fff;
	font: 12px/18px "Helvetica Neue", Arial, Helvetica, sans-serif;
	margin-left: 20px;
	margin-top: -21px;
	padding: 4px 8px;
	position: absolute;
	visibility: hidden;
	white-space: nowrap;
	z-index: 6;
}

.leaflet-draw-tooltip:before {
	border-right: 6px solid black;
	border-right-color: rgba(0, 0, 0, 0.5);
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
	content: "";
	position: absolute;
	top: 7px;
	left: -7px;
}

.leaflet-error-draw-tooltip {
	background-color: #F2DEDE;
	border: 1px solid #E6B6BD;
	color: #B94A48;
}

.leaflet-error-draw-tooltip:before {
	border-right-color: #E6B6BD;
}

.leaflet-draw-tooltip-single {
	margin-top: -12px
}

.leaflet-draw-tooltip-subtext {
	color: #f8d5e4;
}

.leaflet-draw-guide-dash {
	font-size: 1%;
	opacity: 0.6;
	position: absolute;
	width: 5px;
	height: 5px;
}

/* ================================================================== */
/* Edit styles
/* ================================================================== */

.leaflet-edit-marker-selected {
	background: rgba(254, 87, 161, 0.1);
	border: 4px dashed rgba(254, 87, 161, 0.6);
	-webkit-border-radius: 4px;
	        border-radius: 4px;
	box-sizing: content-box;
}

.leaflet-edit-move {
	cursor: move;
}

.leaflet-edit-resize {
	cursor: pointer;
}

/* ================================================================== */
/* Old IE styles
/* ================================================================== */

.leaflet-oldie .leaflet-draw-toolbar {
	border: 1px solid #999;
}/*!
 *  Font Awesome 4.3.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url(./fontawesome-webfont.eot);
  src: url(./fontawesome-webfont.eot?#iefix&v=4.3.0) format('embedded-opentype'), url(./fontawesome-webfont.woff2) format('woff2'), url(./fontawesome-webfont.woff) format('woff'), url(./fontawesome-webfont.ttf) format('truetype'), url(./fontawesome-webfont.svg#fontawesomeregular) format('svg');
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translate(0, 0);
}
/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.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: .2em .25em .15em;
  border: solid 0.08em #eeeeee;
  border-radius: .1em;
}
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.fa.pull-left {
  margin-right: .3em;
}
.fa.pull-right {
  margin-left: .3em;
}
.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}
@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.fa-rotate-180 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.fa-rotate-270 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.fa-flip-vertical {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}
.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}
.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
.fa-stack-1x {
  line-height: inherit;
}
.fa-stack-2x {
  font-size: 2em;
}
.fa-inverse {
  color: #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-f:before,
.fa-facebook:before {
  content: "\F09A";
}
.fa-github:before {
  content: "\F09B";
}
.fa-unlock:before {
  content: "\F09C";
}
.fa-credit-card:before {
  content: "\F09D";
}
.fa-rss:before {
  content: "\F09E";
}
.fa-hdd-o:before {
  content: "\F0A0";
}
.fa-bullhorn:before {
  content: "\F0A1";
}
.fa-bell:before {
  content: "\F0F3";
}
.fa-certificate:before {
  content: "\F0A3";
}
.fa-hand-o-right:before {
  content: "\F0A4";
}
.fa-hand-o-left:before {
  content: "\F0A5";
}
.fa-hand-o-up:before {
  content: "\F0A6";
}
.fa-hand-o-down:before {
  content: "\F0A7";
}
.fa-arrow-circle-left:before {
  content: "\F0A8";
}
.fa-arrow-circle-right:before {
  content: "\F0A9";
}
.fa-arrow-circle-up:before {
  content: "\F0AA";
}
.fa-arrow-circle-down:before {
  content: "\F0AB";
}
.fa-globe:before {
  content: "\F0AC";
}
.fa-wrench:before {
  content: "\F0AD";
}
.fa-tasks:before {
  content: "\F0AE";
}
.fa-filter:before {
  content: "\F0B0";
}
.fa-briefcase:before {
  content: "\F0B1";
}
.fa-arrows-alt:before {
  content: "\F0B2";
}
.fa-group:before,
.fa-users:before {
  content: "\F0C0";
}
.fa-chain:before,
.fa-link:before {
  content: "\F0C1";
}
.fa-cloud:before {
  content: "\F0C2";
}
.fa-flask:before {
  content: "\F0C3";
}
.fa-cut:before,
.fa-scissors:before {
  content: "\F0C4";
}
.fa-copy:before,
.fa-files-o:before {
  content: "\F0C5";
}
.fa-paperclip:before {
  content: "\F0C6";
}
.fa-save:before,
.fa-floppy-o:before {
  content: "\F0C7";
}
.fa-square:before {
  content: "\F0C8";
}
.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\F0C9";
}
.fa-list-ul:before {
  content: "\F0CA";
}
.fa-list-ol:before {
  content: "\F0CB";
}
.fa-strikethrough:before {
  content: "\F0CC";
}
.fa-underline:before {
  content: "\F0CD";
}
.fa-table:before {
  content: "\F0CE";
}
.fa-magic:before {
  content: "\F0D0";
}
.fa-truck:before {
  content: "\F0D1";
}
.fa-pinterest:before {
  content: "\F0D2";
}
.fa-pinterest-square:before {
  content: "\F0D3";
}
.fa-google-plus-square:before {
  content: "\F0D4";
}
.fa-google-plus:before {
  content: "\F0D5";
}
.fa-money:before {
  content: "\F0D6";
}
.fa-caret-down:before {
  content: "\F0D7";
}
.fa-caret-up:before {
  content: "\F0D8";
}
.fa-caret-left:before {
  content: "\F0D9";
}
.fa-caret-right:before {
  content: "\F0DA";
}
.fa-columns:before {
  content: "\F0DB";
}
.fa-unsorted:before,
.fa-sort:before {
  content: "\F0DC";
}
.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\F0DD";
}
.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\F0DE";
}
.fa-envelope:before {
  content: "\F0E0";
}
.fa-linkedin:before {
  content: "\F0E1";
}
.fa-rotate-left:before,
.fa-undo:before {
  content: "\F0E2";
}
.fa-legal:before,
.fa-gavel:before {
  content: "\F0E3";
}
.fa-dashboard:before,
.fa-tachometer:before {
  content: "\F0E4";
}
.fa-comment-o:before {
  content: "\F0E5";
}
.fa-comments-o:before {
  content: "\F0E6";
}
.fa-flash:before,
.fa-bolt:before {
  content: "\F0E7";
}
.fa-sitemap:before {
  content: "\F0E8";
}
.fa-umbrella:before {
  content: "\F0E9";
}
.fa-paste:before,
.fa-clipboard:before {
  content: "\F0EA";
}
.fa-lightbulb-o:before {
  content: "\F0EB";
}
.fa-exchange:before {
  content: "\F0EC";
}
.fa-cloud-download:before {
  content: "\F0ED";
}
.fa-cloud-upload:before {
  content: "\F0EE";
}
.fa-user-md:before {
  content: "\F0F0";
}
.fa-stethoscope:before {
  content: "\F0F1";
}
.fa-suitcase:before {
  content: "\F0F2";
}
.fa-bell-o:before {
  content: "\F0A2";
}
.fa-coffee:before {
  content: "\F0F4";
}
.fa-cutlery:before {
  content: "\F0F5";
}
.fa-file-text-o:before {
  content: "\F0F6";
}
.fa-building-o:before {
  content: "\F0F7";
}
.fa-hospital-o:before {
  content: "\F0F8";
}
.fa-ambulance:before {
  content: "\F0F9";
}
.fa-medkit:before {
  content: "\F0FA";
}
.fa-fighter-jet:before {
  content: "\F0FB";
}
.fa-beer:before {
  content: "\F0FC";
}
.fa-h-square:before {
  content: "\F0FD";
}
.fa-plus-square:before {
  content: "\F0FE";
}
.fa-angle-double-left:before {
  content: "\F100";
}
.fa-angle-double-right:before {
  content: "\F101";
}
.fa-angle-double-up:before {
  content: "\F102";
}
.fa-angle-double-down:before {
  content: "\F103";
}
.fa-angle-left:before {
  content: "\F104";
}
.fa-angle-right:before {
  content: "\F105";
}
.fa-angle-up:before {
  content: "\F106";
}
.fa-angle-down:before {
  content: "\F107";
}
.fa-desktop:before {
  content: "\F108";
}
.fa-laptop:before {
  content: "\F109";
}
.fa-tablet:before {
  content: "\F10A";
}
.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\F10B";
}
.fa-circle-o:before {
  content: "\F10C";
}
.fa-quote-left:before {
  content: "\F10D";
}
.fa-quote-right:before {
  content: "\F10E";
}
.fa-spinner:before {
  content: "\F110";
}
.fa-circle:before {
  content: "\F111";
}
.fa-mail-reply:before,
.fa-reply:before {
  content: "\F112";
}
.fa-github-alt:before {
  content: "\F113";
}
.fa-folder-o:before {
  content: "\F114";
}
.fa-folder-open-o:before {
  content: "\F115";
}
.fa-smile-o:before {
  content: "\F118";
}
.fa-frown-o:before {
  content: "\F119";
}
.fa-meh-o:before {
  content: "\F11A";
}
.fa-gamepad:before {
  content: "\F11B";
}
.fa-keyboard-o:before {
  content: "\F11C";
}
.fa-flag-o:before {
  content: "\F11D";
}
.fa-flag-checkered:before {
  content: "\F11E";
}
.fa-terminal:before {
  content: "\F120";
}
.fa-code:before {
  content: "\F121";
}
.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\F122";
}
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\F123";
}
.fa-location-arrow:before {
  content: "\F124";
}
.fa-crop:before {
  content: "\F125";
}
.fa-code-fork:before {
  content: "\F126";
}
.fa-unlink:before,
.fa-chain-broken:before {
  content: "\F127";
}
.fa-question:before {
  content: "\F128";
}
.fa-info:before {
  content: "\F129";
}
.fa-exclamation:before {
  content: "\F12A";
}
.fa-superscript:before {
  content: "\F12B";
}
.fa-subscript:before {
  content: "\F12C";
}
.fa-eraser:before {
  content: "\F12D";
}
.fa-puzzle-piece:before {
  content: "\F12E";
}
.fa-microphone:before {
  content: "\F130";
}
.fa-microphone-slash:before {
  content: "\F131";
}
.fa-shield:before {
  content: "\F132";
}
.fa-calendar-o:before {
  content: "\F133";
}
.fa-fire-extinguisher:before {
  content: "\F134";
}
.fa-rocket:before {
  content: "\F135";
}
.fa-maxcdn:before {
  content: "\F136";
}
.fa-chevron-circle-left:before {
  content: "\F137";
}
.fa-chevron-circle-right:before {
  content: "\F138";
}
.fa-chevron-circle-up:before {
  content: "\F139";
}
.fa-chevron-circle-down:before {
  content: "\F13A";
}
.fa-html5:before {
  content: "\F13B";
}
.fa-css3:before {
  content: "\F13C";
}
.fa-anchor:before {
  content: "\F13D";
}
.fa-unlock-alt:before {
  content: "\F13E";
}
.fa-bullseye:before {
  content: "\F140";
}
.fa-ellipsis-h:before {
  content: "\F141";
}
.fa-ellipsis-v:before {
  content: "\F142";
}
.fa-rss-square:before {
  content: "\F143";
}
.fa-play-circle:before {
  content: "\F144";
}
.fa-ticket:before {
  content: "\F145";
}
.fa-minus-square:before {
  content: "\F146";
}
.fa-minus-square-o:before {
  content: "\F147";
}
.fa-level-up:before {
  content: "\F148";
}
.fa-level-down:before {
  content: "\F149";
}
.fa-check-square:before {
  content: "\F14A";
}
.fa-pencil-square:before {
  content: "\F14B";
}
.fa-external-link-square:before {
  content: "\F14C";
}
.fa-share-square:before {
  content: "\F14D";
}
.fa-compass:before {
  content: "\F14E";
}
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\F150";
}
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\F151";
}
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\F152";
}
.fa-euro:before,
.fa-eur:before {
  content: "\F153";
}
.fa-gbp:before {
  content: "\F154";
}
.fa-dollar:before,
.fa-usd:before {
  content: "\F155";
}
.fa-rupee:before,
.fa-inr:before {
  content: "\F156";
}
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\F157";
}
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\F158";
}
.fa-won:before,
.fa-krw:before {
  content: "\F159";
}
.fa-bitcoin:before,
.fa-btc:before {
  content: "\F15A";
}
.fa-file:before {
  content: "\F15B";
}
.fa-file-text:before {
  content: "\F15C";
}
.fa-sort-alpha-asc:before {
  content: "\F15D";
}
.fa-sort-alpha-desc:before {
  content: "\F15E";
}
.fa-sort-amount-asc:before {
  content: "\F160";
}
.fa-sort-amount-desc:before {
  content: "\F161";
}
.fa-sort-numeric-asc:before {
  content: "\F162";
}
.fa-sort-numeric-desc:before {
  content: "\F163";
}
.fa-thumbs-up:before {
  content: "\F164";
}
.fa-thumbs-down:before {
  content: "\F165";
}
.fa-youtube-square:before {
  content: "\F166";
}
.fa-youtube:before {
  content: "\F167";
}
.fa-xing:before {
  content: "\F168";
}
.fa-xing-square:before {
  content: "\F169";
}
.fa-youtube-play:before {
  content: "\F16A";
}
.fa-dropbox:before {
  content: "\F16B";
}
.fa-stack-overflow:before {
  content: "\F16C";
}
.fa-instagram:before {
  content: "\F16D";
}
.fa-flickr:before {
  content: "\F16E";
}
.fa-adn:before {
  content: "\F170";
}
.fa-bitbucket:before {
  content: "\F171";
}
.fa-bitbucket-square:before {
  content: "\F172";
}
.fa-tumblr:before {
  content: "\F173";
}
.fa-tumblr-square:before {
  content: "\F174";
}
.fa-long-arrow-down:before {
  content: "\F175";
}
.fa-long-arrow-up:before {
  content: "\F176";
}
.fa-long-arrow-left:before {
  content: "\F177";
}
.fa-long-arrow-right:before {
  content: "\F178";
}
.fa-apple:before {
  content: "\F179";
}
.fa-windows:before {
  content: "\F17A";
}
.fa-android:before {
  content: "\F17B";
}
.fa-linux:before {
  content: "\F17C";
}
.fa-dribbble:before {
  content: "\F17D";
}
.fa-skype:before {
  content: "\F17E";
}
.fa-foursquare:before {
  content: "\F180";
}
.fa-trello:before {
  content: "\F181";
}
.fa-female:before {
  content: "\F182";
}
.fa-male:before {
  content: "\F183";
}
.fa-gittip:before,
.fa-gratipay:before {
  content: "\F184";
}
.fa-sun-o:before {
  content: "\F185";
}
.fa-moon-o:before {
  content: "\F186";
}
.fa-archive:before {
  content: "\F187";
}
.fa-bug:before {
  content: "\F188";
}
.fa-vk:before {
  content: "\F189";
}
.fa-weibo:before {
  content: "\F18A";
}
.fa-renren:before {
  content: "\F18B";
}
.fa-pagelines:before {
  content: "\F18C";
}
.fa-stack-exchange:before {
  content: "\F18D";
}
.fa-arrow-circle-o-right:before {
  content: "\F18E";
}
.fa-arrow-circle-o-left:before {
  content: "\F190";
}
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\F191";
}
.fa-dot-circle-o:before {
  content: "\F192";
}
.fa-wheelchair:before {
  content: "\F193";
}
.fa-vimeo-square:before {
  content: "\F194";
}
.fa-turkish-lira:before,
.fa-try:before {
  content: "\F195";
}
.fa-plus-square-o:before {
  content: "\F196";
}
.fa-space-shuttle:before {
  content: "\F197";
}
.fa-slack:before {
  content: "\F198";
}
.fa-envelope-square:before {
  content: "\F199";
}
.fa-wordpress:before {
  content: "\F19A";
}
.fa-openid:before {
  content: "\F19B";
}
.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\F19C";
}
.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\F19D";
}
.fa-yahoo:before {
  content: "\F19E";
}
.fa-google:before {
  content: "\F1A0";
}
.fa-reddit:before {
  content: "\F1A1";
}
.fa-reddit-square:before {
  content: "\F1A2";
}
.fa-stumbleupon-circle:before {
  content: "\F1A3";
}
.fa-stumbleupon:before {
  content: "\F1A4";
}
.fa-delicious:before {
  content: "\F1A5";
}
.fa-digg:before {
  content: "\F1A6";
}
.fa-pied-piper:before {
  content: "\F1A7";
}
.fa-pied-piper-alt:before {
  content: "\F1A8";
}
.fa-drupal:before {
  content: "\F1A9";
}
.fa-joomla:before {
  content: "\F1AA";
}
.fa-language:before {
  content: "\F1AB";
}
.fa-fax:before {
  content: "\F1AC";
}
.fa-building:before {
  content: "\F1AD";
}
.fa-child:before {
  content: "\F1AE";
}
.fa-paw:before {
  content: "\F1B0";
}
.fa-spoon:before {
  content: "\F1B1";
}
.fa-cube:before {
  content: "\F1B2";
}
.fa-cubes:before {
  content: "\F1B3";
}
.fa-behance:before {
  content: "\F1B4";
}
.fa-behance-square:before {
  content: "\F1B5";
}
.fa-steam:before {
  content: "\F1B6";
}
.fa-steam-square:before {
  content: "\F1B7";
}
.fa-recycle:before {
  content: "\F1B8";
}
.fa-automobile:before,
.fa-car:before {
  content: "\F1B9";
}
.fa-cab:before,
.fa-taxi:before {
  content: "\F1BA";
}
.fa-tree:before {
  content: "\F1BB";
}
.fa-spotify:before {
  content: "\F1BC";
}
.fa-deviantart:before {
  content: "\F1BD";
}
.fa-soundcloud:before {
  content: "\F1BE";
}
.fa-database:before {
  content: "\F1C0";
}
.fa-file-pdf-o:before {
  content: "\F1C1";
}
.fa-file-word-o:before {
  content: "\F1C2";
}
.fa-file-excel-o:before {
  content: "\F1C3";
}
.fa-file-powerpoint-o:before {
  content: "\F1C4";
}
.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\F1C5";
}
.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\F1C6";
}
.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\F1C7";
}
.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\F1C8";
}
.fa-file-code-o:before {
  content: "\F1C9";
}
.fa-vine:before {
  content: "\F1CA";
}
.fa-codepen:before {
  content: "\F1CB";
}
.fa-jsfiddle:before {
  content: "\F1CC";
}
.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\F1CD";
}
.fa-circle-o-notch:before {
  content: "\F1CE";
}
.fa-ra:before,
.fa-rebel:before {
  content: "\F1D0";
}
.fa-ge:before,
.fa-empire:before {
  content: "\F1D1";
}
.fa-git-square:before {
  content: "\F1D2";
}
.fa-git:before {
  content: "\F1D3";
}
.fa-hacker-news:before {
  content: "\F1D4";
}
.fa-tencent-weibo:before {
  content: "\F1D5";
}
.fa-qq:before {
  content: "\F1D6";
}
.fa-wechat:before,
.fa-weixin:before {
  content: "\F1D7";
}
.fa-send:before,
.fa-paper-plane:before {
  content: "\F1D8";
}
.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\F1D9";
}
.fa-history:before {
  content: "\F1DA";
}
.fa-genderless:before,
.fa-circle-thin:before {
  content: "\F1DB";
}
.fa-header:before {
  content: "\F1DC";
}
.fa-paragraph:before {
  content: "\F1DD";
}
.fa-sliders:before {
  content: "\F1DE";
}
.fa-share-alt:before {
  content: "\F1E0";
}
.fa-share-alt-square:before {
  content: "\F1E1";
}
.fa-bomb:before {
  content: "\F1E2";
}
.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\F1E3";
}
.fa-tty:before {
  content: "\F1E4";
}
.fa-binoculars:before {
  content: "\F1E5";
}
.fa-plug:before {
  content: "\F1E6";
}
.fa-slideshare:before {
  content: "\F1E7";
}
.fa-twitch:before {
  content: "\F1E8";
}
.fa-yelp:before {
  content: "\F1E9";
}
.fa-newspaper-o:before {
  content: "\F1EA";
}
.fa-wifi:before {
  content: "\F1EB";
}
.fa-calculator:before {
  content: "\F1EC";
}
.fa-paypal:before {
  content: "\F1ED";
}
.fa-google-wallet:before {
  content: "\F1EE";
}
.fa-cc-visa:before {
  content: "\F1F0";
}
.fa-cc-mastercard:before {
  content: "\F1F1";
}
.fa-cc-discover:before {
  content: "\F1F2";
}
.fa-cc-amex:before {
  content: "\F1F3";
}
.fa-cc-paypal:before {
  content: "\F1F4";
}
.fa-cc-stripe:before {
  content: "\F1F5";
}
.fa-bell-slash:before {
  content: "\F1F6";
}
.fa-bell-slash-o:before {
  content: "\F1F7";
}
.fa-trash:before {
  content: "\F1F8";
}
.fa-copyright:before {
  content: "\F1F9";
}
.fa-at:before {
  content: "\F1FA";
}
.fa-eyedropper:before {
  content: "\F1FB";
}
.fa-paint-brush:before {
  content: "\F1FC";
}
.fa-birthday-cake:before {
  content: "\F1FD";
}
.fa-area-chart:before {
  content: "\F1FE";
}
.fa-pie-chart:before {
  content: "\F200";
}
.fa-line-chart:before {
  content: "\F201";
}
.fa-lastfm:before {
  content: "\F202";
}
.fa-lastfm-square:before {
  content: "\F203";
}
.fa-toggle-off:before {
  content: "\F204";
}
.fa-toggle-on:before {
  content: "\F205";
}
.fa-bicycle:before {
  content: "\F206";
}
.fa-bus:before {
  content: "\F207";
}
.fa-ioxhost:before {
  content: "\F208";
}
.fa-angellist:before {
  content: "\F209";
}
.fa-cc:before {
  content: "\F20A";
}
.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\F20B";
}
.fa-meanpath:before {
  content: "\F20C";
}
.fa-buysellads:before {
  content: "\F20D";
}
.fa-connectdevelop:before {
  content: "\F20E";
}
.fa-dashcube:before {
  content: "\F210";
}
.fa-forumbee:before {
  content: "\F211";
}
.fa-leanpub:before {
  content: "\F212";
}
.fa-sellsy:before {
  content: "\F213";
}
.fa-shirtsinbulk:before {
  content: "\F214";
}
.fa-simplybuilt:before {
  content: "\F215";
}
.fa-skyatlas:before {
  content: "\F216";
}
.fa-cart-plus:before {
  content: "\F217";
}
.fa-cart-arrow-down:before {
  content: "\F218";
}
.fa-diamond:before {
  content: "\F219";
}
.fa-ship:before {
  content: "\F21A";
}
.fa-user-secret:before {
  content: "\F21B";
}
.fa-motorcycle:before {
  content: "\F21C";
}
.fa-street-view:before {
  content: "\F21D";
}
.fa-heartbeat:before {
  content: "\F21E";
}
.fa-venus:before {
  content: "\F221";
}
.fa-mars:before {
  content: "\F222";
}
.fa-mercury:before {
  content: "\F223";
}
.fa-transgender:before {
  content: "\F224";
}
.fa-transgender-alt:before {
  content: "\F225";
}
.fa-venus-double:before {
  content: "\F226";
}
.fa-mars-double:before {
  content: "\F227";
}
.fa-venus-mars:before {
  content: "\F228";
}
.fa-mars-stroke:before {
  content: "\F229";
}
.fa-mars-stroke-v:before {
  content: "\F22A";
}
.fa-mars-stroke-h:before {
  content: "\F22B";
}
.fa-neuter:before {
  content: "\F22C";
}
.fa-facebook-official:before {
  content: "\F230";
}
.fa-pinterest-p:before {
  content: "\F231";
}
.fa-whatsapp:before {
  content: "\F232";
}
.fa-server:before {
  content: "\F233";
}
.fa-user-plus:before {
  content: "\F234";
}
.fa-user-times:before {
  content: "\F235";
}
.fa-hotel:before,
.fa-bed:before {
  content: "\F236";
}
.fa-viacoin:before {
  content: "\F237";
}
.fa-train:before {
  content: "\F238";
}
.fa-subway:before {
  content: "\F239";
}
.fa-medium:before {
  content: "\F23A";
}
.dialog-header-error{background-color:#d2322d}.dialog-header-wait{background-color:#428bca}.dialog-header-notify{background-color:#eee}.dialog-header-confirm{background-color:#333}.dialog-header-confirm h4,.dialog-header-confirm span,.dialog-header-error h4,.dialog-header-error span,.dialog-header-wait h4,.dialog-header-wait span{color:#fff}/*!
   angular-block-ui v0.2.2
   (c) 2016 (null) McNull https://github.com/McNull/angular-block-ui
   License: MIT
*/.block-ui{position:relative}body.block-ui{position:static}.block-ui-main>.block-ui-container,body.block-ui>.block-ui-container{position:fixed}.block-ui-container{position:absolute;z-index:10000;top:0;right:0;bottom:0;left:0;height:0;overflow:hidden;opacity:0;filter:alpha(opacity=00)}.block-ui-active>.block-ui-container{height:100%;cursor:wait}.block-ui-active .block-ui-active>.block-ui-container{height:0}.block-ui-visible>.block-ui-container{opacity:1;filter:alpha(opacity=100)}.block-ui-overlay{width:100%;height:100%;opacity:.5;filter:alpha(opacity=50);background-color:#fff}.block-ui-message-container{position:absolute;top:35%;left:0;right:0;height:0;text-align:center;z-index:10001}.block-ui-message{display:inline-block;text-align:left;background-color:#333;color:#f5f5f5;padding:20px;border-radius:4px;font-size:20px;font-weight:700;filter:alpha(opacity=100)}.block-ui-anim-fade>.block-ui-container{transition:height 0s linear 200ms,opacity 200ms ease 0s}.block-ui-anim-fade.block-ui-active>.block-ui-container{transition-delay:0s}.toast-title{font-weight:700}.toast-message{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:-.3em;top:-.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:.8}.toast-close-button:focus,.toast-close-button:hover{color:#000;text-decoration:none;cursor:pointer;opacity:.4}button.toast-close-button{padding:0;cursor:pointer;background:transparent;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 .toast{position:relative;overflow:hidden;margin:0 0 6px;padding:15px 15px 15px 50px;width:300px;border-radius:3px 3px 3px 3px;background-position:15px;background-repeat:no-repeat;box-shadow:0 0 12px #999;color:#fff;opacity:.8}#toast-container .toast:hover{box-shadow:0 0 12px #000;opacity:1;cursor:pointer}#toast-container .toast.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.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.toast-success{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADsSURBVEhLY2AYBfQMgf///3P8+/evAIgvA/FsIF+BavYDDWMBGroaSMMBiE8VC7AZDrIFaMFnii3AZTjUgsUUWUDA8OdAH6iQbQEhw4HyGsPEcKBXBIC4ARhex4G4BsjmweU1soIFaGg/WtoFZRIZdEvIMhxkCCjXIVsATV6gFGACs4Rsw0EGgIIH3QJYJgHSARQZDrWAB+jawzgs+Q2UO49D7jnRSRGoEFRILcdmEMWGI0cm0JJ2QpYA1RDvcmzJEWhABhD/pqrL0S0CWuABKgnRki9lLseS7g2AlqwHWQSKH4oKLrILpRGhEQCw2LiRUIa4lwAAAABJRU5ErkJggg==")!important}#toast-container .toast.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 .toast,#toast-container.toast-top-center .toast{width:300px;margin-left:auto;margin-right:auto}#toast-container.toast-bottom-full-width .toast,#toast-container.toast-top-full-width .toast{width:96%;margin-left:auto;margin-right: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}progress-bar{position:absolute;left:0;bottom:0;height:4px;background-color:#000;opacity:.4}div[toast]{opacity:1!important}div[toast].ng-enter{opacity:0!important;transition:opacity .3s linear}div[toast].ng-enter.ng-enter-active{opacity:1!important}div[toast].ng-leave{opacity:1;transition:opacity .3s linear}div[toast].ng-leave.ng-leave-active{opacity:0!important}@media all and (max-width:240px){#toast-container .toast.div{padding:8px 8px 8px 50px;width:11em}#toast-container .toast-close-button{right:-.2em;top:-.2em}}@media all and (min-width:241px) and (max-width:480px){#toast-container .toast.div{padding:8px 8px 8px 50px;width:18em}#toast-container .toast-close-button{right:-.2em;top:-.2em}}@media all and (min-width:481px) and (max-width:768px){#toast-container .toast.div{padding:15px 15px 15px 50px;width:25em}}.ngGrid {
  background-color: #fdfdfd;
}
.ngGrid input[type="checkbox"] {
  margin: 0;
  padding: 0;
}
.ngGrid input {
  vertical-align: top;
}
.ngGrid.unselectable {
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.ngViewport {
  overflow: auto;
  min-height: 20px;
}
.ngViewport:focus {
  outline: none;
}
.ngCanvas {
  position: relative;
}
.ngVerticalBar {
  position: absolute;
  right: 0;
  width: 0;
}
.ngVerticalBarVisible {
  width: 1px;
  background-color: #d4d4d4;
}
#testDataLength {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -100000;
}
.ngHeaderContainer {
  position: relative;
  overflow: hidden;
  font-weight: bold;
  background-color: inherit;
}
.ngHeaderCell {
  position: absolute;
  top: 0;
  bottom: 0;
  background-color: inherit;
}
.ngHeaderCell.pinned {
  z-index: 1;
}
.ngHeaderSortColumn {
  position: absolute;
  overflow: hidden;
}
.ngTopPanel {
  position: relative;
  z-index: 1;
  background-color: #eaeaea;
  border-bottom: 1px solid #d4d4d4;
}
.ngSortButtonDown {
  position: absolute;
  top: 3px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  border-color: gray transparent;
  border-style: solid;
  border-width: 0 5px 5px 5px;
  height: 0;
  width: 0;
}
.ngNoSort {
  cursor: default;
}
.ngHeaderButton {
  position: absolute;
  right: 2px;
  top: 8px;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  z-index: 1;
  background-color: #9fbbb4;
  cursor: pointer;
}
.ngSortButtonUp {
  position: absolute;
  top: 3px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  border-color: gray transparent;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  height: 0;
  width: 0;
}
.ngHeaderScroller {
  position: absolute;
  background-color: inherit;
}
.ngSortPriority {
  position: absolute;
  top: -5px;
  left: 1px;
  font-size: 6pt;
  font-weight: bold;
}
.ngHeaderGrip {
  cursor: col-resize;
  width: 10px;
  right: -5px;
  top: 0;
  height: 100%;
  position: absolute;
  background-color: transparent;
}
.ngHeaderText {
  padding: 5px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  white-space: nowrap;
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
}
.ngHeaderButtonArrow {
  position: absolute;
  top: 4px;
  left: 3px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6.5px 4.5px 0 4.5px;
  border-color: #4d4d4d transparent transparent transparent;
}
.ngPinnedIcon {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAOwgAADsIBFShKgAAAABp0RVh0U29mdHdhcmUAUGFpbnQuTkVUIHYzLjUuMTAw9HKhAAAAmElEQVQoU33PQapBURjA8UtkwJuaWYGSgfQWYBMvczPmTCzAAGVuaA228BZhRCkDGSmE31FucuRfvzq3vr5zT/JSjSU7DsypEPXDkDVn2hSIytJhw4kWGaLCxgHh2gt/RBuLzNhz5caWPjnSqqw4EraFfwznf8qklWjwy4IRTerkiQoPGtPl40OehcEJvcfXl8LglLfBJLkDcMgbgHlHhK8AAAAASUVORK5CYII=);
  background-repeat: no-repeat;
  position: absolute;
  right: 5px;
  top: 5px;
  height: 10px;
  width: 10px;
}
.ngUnPinnedIcon {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAOwgAADsIBFShKgAAAABp0RVh0U29mdHdhcmUAUGFpbnQuTkVUIHYzLjUuMTAw9HKhAAAAlElEQVQoU33PPQrCQBRF4fFnI2KfZVi5ARvdgo1l6mwmkCJVOgluwd5OwUoDtnoOxAei8cLXTN7cvEl/skCNDCMPfsUPO5zQwOHIDEvYtMURHe6wOVLgigvOePRyeDkyR4ln7wZ//7XfFBu8B23+aDJjrHGAwza7hjtHJvDmHg7b7Bru7AMjK7Rw2ObBVHDY5oGk9AKQNB2zy8MBTgAAAABJRU5ErkJggg==);
  background-repeat: no-repeat;
  position: absolute;
  height: 10px;
  width: 10px;
  right: 5px;
  top: 5px;
}
.ngColMenu {
  right: 2px;
  padding: 5px;
  top: 25px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  background-color: #bdd0cb;
  position: absolute;
  border: 2px solid #d4d4d4;
  z-index: 1;
}
.ngColListCheckbox {
  position: relative;
  right: 3px;
  top: 4px;
}
.ngColList {
  list-style-type: none;
  margin-top: 2px;
  margin-left: 8px;
}
.ngColListItem {
  white-space: nowrap;
}
.ngMenuText {
  position: relative;
  top: 2px;
  left: 2px;
}
.ngGroupPanel {
  background-color: #eaeaea;
  overflow: hidden;
  border-bottom: 1px solid #d4d4d4;
}
.ngGroupPanelDescription {
  margin-top: 5px;
  margin-left: 5px;
}
.ngGroupList {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.ngAggHeader {
  position: absolute;
  border: none;
}
.ngGroupElement {
  float: left;
  height: 100%;
  width: 100%;
}
.ngGroupIcon {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAANCAYAAACZ3F9/AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAadEVYdFNvZnR3YXJlAFBhaW50Lk5FVCB2My41LjEwMPRyoQAAAEFJREFUKFNjoAhISkr+h2J5JDZODNXGwGBsbPwfhIGAA8bGh6HaGBiAGhxAGJmND4M1gQCSM0adCsVQbcPcqQwMALWDGyDvWPefAAAAAElFTkSuQmCC);
  background-repeat: no-repeat;
  height: 15px;
  width: 15px;
  position: absolute;
  right: -2px;
  top: 2px;
}
.ngGroupedByIcon {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAANCAYAAACZ3F9/AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAadEVYdFNvZnR3YXJlAFBhaW50Lk5FVCB2My41LjEwMPRyoQAAAElJREFUKFNjoAhISkr+R8LyaHwMDNXGwGBsbPwfhoGAA5mPDUO1oWpE52PDYE0gALTFAYbR+dgwWBMIoPlh1I9ADNU2NPzIwAAAFQYI9E4OLvEAAAAASUVORK5CYII=);
  background-repeat: no-repeat;
  height: 15px;
  width: 15px;
  position: absolute;
  right: -2px;
  top: 2px;
}
.ngGroupName {
  background-color: #fdfdfd;
  border: 1px solid #d4d4d4;
  padding: 3px 10px;
  float: left;
  margin-left: 0;
  margin-top: 2px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  font-weight: bold;
}
.ngGroupArrow {
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid black;
  margin-top: 10px;
  margin-left: 5px;
  margin-right: 5px;
  float: right;
}
.ngGroupingNumber {
  position: absolute;
  right: -10px;
  top: -2px;
}
.ngAggArrowCollapsed {
  position: absolute;
  left: 8px;
  bottom: 10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 8.7px;
  border-color: transparent transparent transparent #000000;
}
.ngGroupItem {
  float: left;
}
.ngGroupItem:first-child {
  margin-left: 2px;
}
.ngRemoveGroup {
  width: 5px;
  -moz-opacity: 0.4;
  opacity: 0.4;
  margin-top: -1px;
  margin-left: 5px;
}
.ngRemoveGroup:hover {
  color: black;
  text-decoration: none;
  cursor: pointer;
  -moz-opacity: 0.7;
  opacity: 0.7;
}
.ngAggArrowExpanded {
  position: absolute;
  left: 8px;
  bottom: 10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 9px 9px;
  border-color: transparent transparent #000000 transparent;
}
.ngAggregate {
  position: absolute;
  background-color: #c9dde1;
  border-bottom: 1px solid beige;
  overflow: hidden;
  top: 0;
  bottom: 0;
  right: -1px;
  left: 0;
}
.ngAggregateText {
  position: absolute;
  left: 27px;
  top: 5px;
  line-height: 20px;
  white-space: nowrap;
}
.ngRow {
  position: absolute;
  border-bottom: 1px solid #d4d4d4;
}
.ngRow.odd {
  background-color: #fdfdfd;
}
.ngRow.even {
  background-color: #f3f3f3;
}
.ngRow.selected {
  background-color: #c9dde1;
}
.ngCell {
  overflow: hidden;
  position: absolute;
  top: 0;
  bottom: 0;
  background-color: inherit;
}
.ngCell.pinned {
  z-index: 1;
}
.ngCellText {
  padding: 5px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  white-space: nowrap;
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
}
.ngSelectionCell {
  margin-top: 9px;
  margin-left: 6px;
}
.ngSelectionHeader {
  position: absolute;
  top: 11px;
  left: 6px;
}
.ngCellElement:focus {
  outline: 0;
  background-color: #b3c4c7;
}
.ngRow.canSelect {
  cursor: pointer;
}
.ngSelectionCheckbox {
  margin-top: 9px;
  margin-left: 6px;
}
.ngFooterPanel {
  background-color: #eaeaea;
  padding: 0;
  border-top: 1px solid #d4d4d4;
  position: relative;
}
.nglabel {
  display: block;
  float: left;
  font-weight: bold;
  padding-right: 5px;
}
.ngTotalSelectContainer {
  float: left;
  margin: 5px;
  margin-top: 7px;
}
.ngFooterSelectedItems {
  padding: 2px;
}
.ngFooterTotalItems.ngnoMultiSelect {
  padding: 0 !important;
}
.ngGridMaxPagesNumber {
  vertical-align: middle;
}
.ngPagerFirstBar {
  width: 10px;
  border-left: 2px solid #4d4d4d;
  margin-top: -6px;
  height: 12px;
  margin-left: -3px;
}
.ngPagerButton {
  height: 25px;
  min-width: 26px;
}
.ngPagerFirstTriangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 8.7px 5px 0;
  border-color: transparent #4d4d4d transparent transparent;
  margin-left: 2px;
}
.ngPagerNextTriangle {
  margin-left: 1px;
}
.ngPagerPrevTriangle {
  margin-left: 0;
}
.ngPagerLastTriangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 8.7px;
  border-color: transparent transparent transparent #4d4d4d;
  margin-left: -1px;
}
.ngPagerLastBar {
  width: 10px;
  border-left: 2px solid #4d4d4d;
  margin-top: -6px;
  height: 12px;
  margin-left: 1px;
}
.ngFooterTotalItems {
  padding: 2px;
}
.search_form fieldset.focused input::-webkit-input-placeholder, .search_form #searchContainer > .inner.short_format .location_fieldset.focused input::-webkit-input-placeholder, #searchContainer > .inner.short_format .search_form .location_fieldset.focused input::-webkit-input-placeholder {
  color: #749fc0; }

.search_form fieldset.focused input::-moz-placeholder, .search_form #searchContainer > .inner.short_format .location_fieldset.focused input::-moz-placeholder, #searchContainer > .inner.short_format .search_form .location_fieldset.focused input::-moz-placeholder {
  /* Firefox 19+ */
  color: #749fc0; }

.search_form fieldset.focused input:-ms-input-placeholder, .search_form #searchContainer > .inner.short_format .location_fieldset.focused input:-ms-input-placeholder, #searchContainer > .inner.short_format .search_form .location_fieldset.focused input:-ms-input-placeholder {
  color: #749fc0; }

.search_form fieldset.focused input::placeholder, .search_form #searchContainer > .inner.short_format .location_fieldset.focused input::placeholder, #searchContainer > .inner.short_format .search_form .location_fieldset.focused input::placeholder {
  color: #749fc0; }

label[class*="icon-"], .search_form label {
  height: 100%;
  position: absolute; }

label[class*="icon-"]:before {
  font-size: 16px;
  position: relative;
  text-indent: 0;
  top: 23px; }

.select2-drop:before, .typeahead_input + ul.dropdown-menu:before, .flyout_arrow:before, .select2-drop:after, .typeahead_input + ul.dropdown-menu:after, .flyout_arrow:after {
  content: '';
  border-style: solid;
  position: absolute;
  top: -7px;
  left: 20px; }

.select2-drop:before, .typeahead_input + ul.dropdown-menu:before, .flyout_arrow:before {
  border-width: 0 6px 7px 6px;
  border-color: transparent transparent #d7dcdf transparent; }

.select2-drop:after, .typeahead_input + ul.dropdown-menu:after, .flyout_arrow:after {
  top: -6px;
  border-width: 0 6px 8px 6px;
  border-color: transparent transparent #ffffff transparent; }

@font-face {
  font-family: 'proxima_nova_rgregular';
  src: url("../assets/fonts/proximanova-regular-webfont.eot");
  src: url("../assets/fonts/proximanova-regular-webfont.eot?#iefix") format("embedded-opentype"), url("../assets/fonts/proximanova-regular-webfont.woff2") format("woff2"), url("../assets/fonts/proximanova-regular-webfont.woff") format("woff"), url("../assets/fonts/proximanova-regular-webfont.ttf") format("truetype"), url("../assets/fonts/proximanova-regular-webfont.svg#proxima_nova_rgregular") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'proxima_novasemibold';
  src: url("../assets/fonts/proximanova-semibold-webfont.eot");
  src: url("../assets/fonts/proximanova-semibold-webfont.eot?#iefix") format("embedded-opentype"), url("../assets/fonts/proximanova-semibold-webfont.woff2") format("woff2"), url("../assets/fonts/proximanova-semibold-webfont.woff") format("woff"), url("../assets/fonts/proximanova-semibold-webfont.ttf") format("truetype"), url("../assets/fonts/proximanova-semibold-webfont.svg#proxima_novasemibold") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'proxima_nova_rgbold';
  src: url("../assets/fonts/proximanova-bold-webfont.eot");
  src: url("../assets/fonts/proximanova-bold-webfont.eot?#iefix") format("embedded-opentype"), url("../assets/fonts/proximanova-bold-webfont.woff2") format("woff2"), url("../assets/fonts/proximanova-bold-webfont.woff") format("woff"), url("../assets/fonts/proximanova-bold-webfont.ttf") format("truetype"), url("../assets/fonts/proximanova-bold-webfont.svg#proxima_nova_rgbold") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'icomoon';
  src: url("../assets/fonts/icomoon.eot?-185c0u");
  src: url("../assets/fonts/icomoon.eot?#iefix-185c0u") format("embedded-opentype"), url("../assets/fonts/icomoon.woff?-185c0u") format("woff"), url("../assets/fonts/icomoon.ttf?-185c0u") format("truetype"), url("../assets/fonts/icomoon.svg?-185c0u#icomoon") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'proxima_novalight';
  src: url("../assets/fonts/proximanova-light-webfont.eot");
  src: url("../assets/fonts/proximanova-light-webfont.eot?#iefix") format("embedded-opentype"), url("../assets/fonts/proximanova-light-webfont.woff2") format("woff2"), url("../assets/fonts/proximanova-light-webfont.woff") format("woff"), url("../assets/fonts/proximanova-light-webfont.ttf") format("truetype"), url("../assets/fonts/proximanova-light-webfont.svg#proxima_novalight") format("svg");
  font-weight: normal;
  font-style: normal; }

.animate_fadein, .hover_flyout.opened .flyout {
  -webkit-animation: animate_fadein 250ms ease-in both;
  animation: animate_fadein 250ms ease-in both; }

.animate, a.underline, .btn-primary, button.btn-primary-sm, .btn.btn-primary-sm, .search_form input[type="submit"], .btn-action, .btn-primary:hover, button.btn-primary-sm:hover, .btn-primary:active, button.btn-primary-sm:active, .btn-action:hover, .btn-action:active, .search_form fieldset.focused, .search_form #searchContainer > .inner.short_format .location_fieldset.focused, #searchContainer > .inner.short_format .search_form .location_fieldset.focused, .search_list li, .search_list li:hover, .tab ul li a, .nav-tabs li a, .tab ul li a:hover, .tab ul li a:active, .nav-tabs li a:hover, .nav-tabs li a:active, .home fieldset {
  -webkit-transition: background 150ms ease-out;
  -moz-transition: background 150ms ease-out;
  -o-transition: background 150ms ease-out;
  -ms-transition: background 150ms ease-out;
  tansition: background 150ms ease-out; }

.animate_txt, a.underline .txt, a.underline:hover .txt, a.underline:hover, a.underline:active, .search_list li:hover a.underline {
  -webkit-transition: color 150ms ease-in;
  -moz-transition: color 150ms ease-in;
  -o-transition: color 150ms ease-in;
  -ms-transition: color 150ms ease-in;
  tansition: color 150ms ease-in; }

.animate_bg_txt, .btn-secondary, .btn-default, .btn-secondary:hover, .btn-secondary:active, .btn-default:hover, .btn-default:active, .typeahead_input + ul.dropdown-menu li > a, .typeahead_input + ul.dropdown-menu li > a:hover, .typeahead_input + ul.dropdown-menu li > a:active, .flyout .flyout_inner > ul > li > a, .flyout .flyout_inner > ul > li > a:hover, .flyout .flyout_inner > ul > li > a:active, .task_group a:hover, .task_group a:active {
  -webkit-transition: background, color 150ms ease-in;
  -moz-transition: background, color 150ms ease-in;
  -o-transition: background, color 150ms ease-in;
  -ms-transition: background, color 150ms ease-in;
  tansition: background, color 150ms ease-in; }

@-webkit-keyframes animate_fadein {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

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

@-webkit-keyframes animate_toright {
  0% {
    left: 0; }
  100% {
    left: 240px; } }

@keyframes animate_toright {
  0% {
    left: 0; }
  100% {
    left: 240px; } }

@-webkit-keyframes animate_toleft {
  0% {
    left: 240px; }
  100% {
    left: 0; } }

@keyframes animate_toleft {
  0% {
    left: 240px; }
  100% {
    left: 0; } }

@-webkit-keyframes animate_margin_toright {
  0% {
    margin-left: 0; }
  100% {
    margin-left: 240px; } }

@keyframes animate_margin_toright {
  0% {
    margin-left: 0; }
  100% {
    margin-left: 240px; } }

@-webkit-keyframes animate_margin_toleft {
  0% {
    margin-left: 240px; }
  100% {
    margin-left: 0; } }

@keyframes animate_margin_toleft {
  0% {
    margin-left: 240px; }
  100% {
    margin-left: 0; } }

[class^="icon-"]:before, [class*=" icon-"]:before, .icon-map_pan_open:before, .select2-container .select2-choice:before, .star_wrap span:after, .star_wrap span:before, .leaflet-control-layers .leaflet-control-layers-toggle:after {
  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; }

.icon-arrow, .select2-container .select2-choice {
  position: relative;
  padding-right: 20px; }
  .icon-arrow:before, .select2-container .select2-choice:before {
    opacity: 0.5;
    position: absolute;
    font-size: 7px;
    top: 30%;
    right: 0; }

.svg_map_icon {
  width: 26px;
  height: 26px;
  display: inline-block; }

.svg_map_contain {
  background: url(../img/icon_map_contain.svg) no-repeat 50% 50%; }

.svg_map_intersect {
  background: url(../img/icon_map_intersect.svg) no-repeat 50% 50%; }

.icon-edit:before {
  font-size: 10px; }

.icon-card_star_empty:before {
  content: "\E600"; }

.icon-arrow:before, .select2-container .select2-choice:before {
  content: "\E601"; }

.icon-card_gear:before {
  content: "\E602"; }

.icon-card_list:before {
  content: "\E603"; }

.icon-card_star_1:before {
  content: "\E615"; }

.icon-header_account:before {
  content: "\E605"; }

.icon-heart_empty:before {
  content: "\E606"; }

.icon-heart_filled:before {
  content: "\E607"; }

.icon-input_location:before {
  content: "\E608"; }

.icon-input_search:before {
  content: "\E609"; }

.icon-collection:before {
  content: "\E60D"; }

.icon-x:before {
  content: "\E60E"; }

.icon-plus:before {
  content: "\E60F"; }

.icon-error:before {
  content: "\E610"; }

.icon-warning:before {
  content: "\E610"; }

.icon-lock:before {
  content: "\E611"; }

.icon-map_home:before {
  content: "\E616"; }

.icon-map_layers:before {
  content: "\E617"; }

.icon-filters:before {
  content: "\E618"; }

.icon-pagination_next:before {
  content: "\E619"; }

.icon-pagination_prev:before {
  content: "\E61A"; }

.icon-edit:before {
  content: "\E61B"; }

.icon-tools:before {
  content: "\E61C"; }

.icon-preview:before {
  content: "\E626"; }

.icon-queue_download:before {
  content: "\E61D"; }

.icon-queue_rerun:before {
  content: "\E61E"; }

.icon-queue_status_error:before {
  content: "\E61F"; }

.icon-queue_status_working:before {
  content: "\E620"; }

.icon-queue_status_cancled:before {
  content: "\E621"; }

.icon-queue_status_complete:before {
  content: "\E622"; }

.icon-queue_status_waiting:before {
  content: "\E623"; }

.icon-queue_status_radioactive:before {
  content: "\E633"; }

.icon-map_pan:before {
  content: "\E624"; }

.icon-managecontrols_discover:before {
  content: "\E60A"; }

.icon-managecontrols_index:before {
  content: "\E604"; }

.icon-managecontrols_system:before {
  content: "\E60B"; }

.icon-managecontrols_security:before {
  content: "\E60C"; }

.icon-managecontrols_extensions:before {
  content: "\E612"; }

.icon-managecontrols_settings:before {
  content: "\E613"; }

.icon-managecontrols_appearance:before {
  content: "\E614"; }

.icon-place_search:before {
  content: "\E625"; }

.icon-looking_search:before {
  content: "\E626"; }

.icon-search_map:before {
  content: "\E627"; }

.icon-task_schedule:before {
  content: "\E628"; }

.icon-map_draw_point:before {
  content: "\E629"; }

.icon-map_draw_polyline:before {
  content: "\E62A"; }

.icon-map_draw_polygon:before {
  content: "\E62B"; }

.icon-map_draw_rectangle:before {
  content: "\E62C"; }

.icon-content_file_system:before {
  content: "\E62D"; }

.icon-content_other:before {
  content: "\E62E"; }

.icon-content_cms:before {
  content: "\E62F"; }

.icon-content_web_service:before {
  content: "\E630"; }

.icon-content_database:before {
  content: "\E631"; }

.icon-content_web_service:before {
  content: "\E630"; }

.icon-content_database:before {
  content: "\E631"; }

.icon-cone:before {
  content: "\E634"; }

.icon-map_pan:before {
  font-size: 16px;
  content: "\E624";
  position: relative;
  top: 3px; }

.frame-loading {
  background-image: url(../img/loading2.gif);
  background-repeat: no-repeat;
  background-position: 50% 50%; }

body, ul, li, p, fieldset {
  margin: 0;
  padding: 0; }

ul, ul li {
  list-style: none; }

a {
  outline: none;
  text-decoration: none; }
  a:active, a:focus, a:hover {
    text-decoration: none;
    outline: none; }
  a.underline {
    display: inline-block;
    color: #1985d5; }
    a.underline:hover .txt {
      box-shadow: 0 1px 0 #c1d9e8, 0 1px 0 #c1d9e8; }
    a.underline:hover {
      color: #47a3e8 !important; }
    a.underline:active {
      color: #106fb6 !important; }

html {
  font-size: 16px; }

body {
  font-family: "proxima_nova_rgregular";
  font-size: 16px;
  background-color: #ecf0f1;
  color: #2e3438; }

.preload * {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important; }

fieldset {
  border: 0; }

textarea {
  outline: none;
  border-radius: 5px;
  border: 1px solid #d7dcdf;
  resize: none;
  padding: 5px 10px; }

button, .btn {
  -moz-border-radius: 5px 5px 5px 5px;
  -webkit-border-radius: 5px 5px 5px 5px;
  border-radius: 5px 5px 5px 5px;
  background-color: #ffffff;
  color: #2e3438;
  font-family: "proxima_novasemibold";
  font-size: 0.875rem;
  border: 0;
  outline: none;
  box-shadow: none; }
  button:active, button:active, .btn:active, .btn:active {
    box-shadow: none; }
  button span:before, .btn span:before {
    opacity: 1 !important; }
  button.btn-primary, button.btn-primary-sm, button.btn.btn-primary-sm, .btn.btn-primary, .btn.btn-primary-sm, .search_form input.btn[type="submit"] {
    text-align: center;
    padding: 13px 30px 10px;
    border-top: 3px solid #fa6603;
    border-bottom: 3px solid #be4e02;
    background-color: #fa6603;
    font-size: 16px;
    color: #ffffff; }
  button.btn-primary-sm, .btn.btn-primary-sm {
    padding: 6px 12px !important; }
  button.btn-default, .btn.btn-default {
    border: 1px solid #d2d6d7;
    padding: 5px 15px; }
  button.btn-secondary, .btn.btn-secondary {
    border: 1px solid #d2d6d7;
    border-bottom-width: 2px;
    padding: 9px 20px; }
  button.btn-action, .btn.btn-action {
    color: #ffffff;
    border-bottom: 2px solid #1771b4;
    border-top: 2px solid #1b86d5;
    background-color: #1b86d5;
    padding: 8px 20px; }
    button.btn-action:hover, button.btn-action:active, .btn.btn-action:hover, .btn.btn-action:active {
      color: #ffffff; }
  button.btn-border, .btn.btn-border {
    color: #1985d5;
    border: 1px solid #1985d5;
    background-color: #ecf0f1;
    padding-top: 9px;
    padding-bottom: 9px; }
  button[class*=icon-]:before, .btn[class*=icon-]:before {
    font-size: 0.75rem;
    margin-right: 10px; }
  button.btn-util, .btn.btn-util {
    border: 1px solid #d2d6d7;
    border-bottom-width: 2px;
    background-color: #ffffff;
    color: #1985d5;
    padding: 9px 20px;
    position: relative; }
    button.btn-util.icon-arrow, .select2-container button.btn-util.select2-choice, .btn.btn-util.icon-arrow, .select2-container .btn.btn-util.select2-choice {
      padding-right: 40px; }
    button.btn-util span[class*=icon], .btn.btn-util span[class*=icon] {
      font-size: 12px;
      padding-right: 7px; }
    button.btn-util:before, .btn.btn-util:before {
      color: #1985d5;
      opacity: 1;
      font-size: 6px;
      margin-top: 4px;
      margin-right: 20px; }

.btn-action:hover {
  background-color: #3ea0e8;
  border-top-color: #3ea0e8; }

.btn-action:active {
  background-color: #1875b9;
  border-bottom: 2px solid #1875b9;
  border-top: 2px solid #12598d; }

.btn-primary:hover, button.btn-primary-sm:hover, .btn.btn-primary-sm:hover, .search_form input:hover[type="submit"] {
  background-color: #fa8333;
  border-bottom-color: #c35b15;
  border-top-color: #fa8333; }

.btn-primary:active, button.btn-primary-sm:active, .btn.btn-primary-sm:active, .search_form input:active[type="submit"] {
  background-color: #da5903;
  border-bottom-color: #da5903;
  border-top-color: #a64402;
  outline: none; }

.btn-secondary:hover {
  background-color: #fbfcfc; }

.btn-secondary:active {
  background-color: #f2f5f5; }

input, button, .btn {
  outline: none !important; }
  input:focus, input:active, button:focus, button:active, .btn:focus, .btn:active {
    outline: none !important; }

input.form-control {
  transition: none;
  box-shadow: none;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  border: 1px solid #d7dcdf; }
  input.form-control:focus {
    border: 1px solid #9cc0da;
    transition: none;
    box-shadow: none;
    background-color: #badaf2 !important; }

@-moz-document url-prefix() {
  .select_label select {
    color: rgba(0, 0, 0, 0);
    text-shadow: 0 0 0 #000; } }

input[type=text], input[type=password] {
  font-size: 1.125rem;
  outline: none;
  color: #2e3438; }
  input[type=text].placeholder, input[type=password].placeholder {
    color: #888992; }

input[type=submit] {
  border: none;
  color: #ffffff;
  font-family: "proxima_novasemibold";
  font-size: 16px;
  background-color: #fa6603;
  border-bottom: 2px solid #be4e02;
  padding-left: 25px;
  padding-right: 25px; }

label[class*="icon-"]:before {
  color: #d7dcdf;
  display: block;
  width: 50px;
  text-align: center;
  z-index: 2; }

.focus_field:focus {
  background-color: #badaf2; }
  .focus_field:focus::-webkit-input-placeholder {
    color: #749fc0; }
  .focus_field:focus::-moz-placeholder {
    /* Firefox 19+ */
    color: #749fc0; }
  .focus_field:focus input:-ms-input-placeholder {
    color: #749fc0; }
  .focus_field:focus::placeholder {
    color: #749fc0; }
  .focus_field:focus + label:before, .focus_field:focus + .suggest-container + label:before {
    color: #2e3438; }
  .focus_field:focus + label + .icon-x, .focus_field:focus + .suggest-container + label + .icon-x {
    display: block; }
    .focus_field:focus + label + .icon-x:before, .focus_field:focus + .suggest-container + label + .icon-x:before {
      color: #2e3438; }

.alert-status, .alert-error, .alert-danger, .alert-warning, .alert-warn, .alert-success {
  border: 0;
  border-radius: 0;
  background-color: transparent;
  margin-bottom: 10px; }
  .alert-status.alert-invert, .alert-invert.alert-error, .alert-invert.alert-danger, .alert-invert.alert-warning, .alert-invert.alert-warn, .alert-invert.alert-success {
    border: 1px solid transparent;
    border-radius: 4px; }
  .alert-status:before, .alert-error:before, .alert-danger:before, .alert-warning:before, .alert-warn:before, .alert-success:before {
    margin-right: 10px; }

.alert-error {
  color: #cd1717; }
  .alert-error.alert-invert {
    color: #cd1717;
    background-color: #f2dede;
    border-color: #ebccd1; }

.alert-danger {
  color: #cd1717; }
  .alert-danger.alert-invert {
    color: #cd1717;
    background-color: #f2dede;
    border-color: #ebccd1; }

.alert-warning {
  color: #ff8c00; }
  .alert-warning.alert-invert {
    color: #ffffff;
    background-color: #f0ad4e;
    border-color: #ff8c00; }

.alert-warn {
  color: #8a6d3b; }
  .alert-warn .alert-link {
    color: #66512c; }
  .alert-warn.alert-invert {
    color: #ffffff;
    background-color: #b39245;
    border-color: #8a6d3b; }

.alert-success {
  color: #3c763d; }
  .alert-success.alert-invert {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6; }

.checkbox_label {
  display: block; }
  .checkbox_label input {
    margin-right: 5px; }

.select2-container.select2-dropdown-open .select2-choice, .select2-container .select2-drop-above.select2-dropdown-open .select2-choice {
  border-color: #d7dcdf;
  border-top-width: 2px;
  background: #dedede;
  padding-top: 8px;
  padding-bottom: 9px;
  margin-top: 0;
  border-radius: 4px; }

.select2-container .select2-choice {
  -moz-border-radius: 5px 5px 5px 5px;
  -webkit-border-radius: 5px 5px 5px 5px;
  border-radius: 5px 5px 5px 5px;
  border: 1px solid #d7dcdf;
  border-bottom: 2px solid #d7dcdf;
  font-family: "proxima_novasemibold";
  font-size: 0.875rem;
  padding: 9px 20px;
  height: 41px;
  line-height: 1.3em;
  background: #ffffff;
  margin-top: 0;
  box-shadow: none; }
  .select2-container .select2-choice:hover {
    background: #fbfcfc; }
  .select2-container .select2-choice:before {
    top: 38%;
    right: 20px; }
  .select2-container .select2-choice .select2-arrow {
    display: none; }
  .select2-container .select2-choice > .select2-chosen {
    margin-top: 2px; }

.select2-drop {
  margin-top: 15px;
  border: 0 !important; }
  .select2-drop ul {
    border: 1px solid #d7dcdf; }
    .select2-drop ul li {
      border-bottom: 1px solid #ebeeef; }
      .select2-drop ul li:last-child {
        border: none; }
  .select2-drop.select2-drop-above {
    margin-top: -15px; }

.select2-results {
  padding: 0;
  margin: 0;
  border-radius: 0; }
  .select2-results li {
    color: #2e3438;
    font-family: "proxima_novasemibold";
    font-size: 0.875rem;
    padding: 10px 20px; }
    .select2-results li .select2-result-label {
      padding: 0; }
    .select2-results li:hover, .select2-results li.select2-highlighted {
      background-color: #fbfcfc;
      color: #47a3e8; }
    .select2-results li:active {
      background-color: #f2f5f5;
      color: #106fb6; }

.typeahead_input + ul.dropdown-menu {
  border-radius: 0;
  padding: 0;
  width: 100%;
  margin-top: 10px; }
  .typeahead_input + ul.dropdown-menu li {
    width: 100%;
    border-bottom: 1px solid #d7dcdf;
    position: relative;
    z-index: 10; }
    .typeahead_input + ul.dropdown-menu li > a {
      display: block;
      color: #2e3438;
      font-family: "proxima_novasemibold";
      font-size: 0.875rem;
      padding: 10px 20px;
      cursor: pointer; }
      .typeahead_input + ul.dropdown-menu li > a:hover {
        background-color: #fbfcfc;
        color: #47a3e8; }
      .typeahead_input + ul.dropdown-menu li > a:active {
        background-color: #f2f5f5;
        color: #106fb6; }
    .typeahead_input + ul.dropdown-menu li:last-child {
      border-bottom: none; }

input.error {
  border-color: #cd1717;
  border-bottom: 2px solid #cd1717; }

.label-danger {
  background-color: #cd1717;
  border-radius: 0;
  font-weight: normal; }
  .label-danger.icon-error:before {
    margin-right: 5px; }

.displaynone {
  display: none; }

.semi {
  font-family: "proxima_novasemibold"; }

.link_secondary {
  color: #8f9497;
  text-decoration: underline; }

.offscreen {
  position: absolute;
  left: -999em; }

.no_padding {
  padding-left: 0;
  padding-right: 0; }

.no_float {
  float: none; }

.sticky {
  position: fixed;
  z-index: 900; }

.highlight {
  display: inline-block;
  background-color: #a2a8b0;
  -moz-border-radius: 5px 5px 5px 5px;
  -webkit-border-radius: 5px 5px 5px 5px;
  border-radius: 5px 5px 5px 5px;
  color: #ffffff;
  font-family: "proxima_novasemibold";
  font-size: 0.875rem;
  padding: 2px 6px;
  position: relative;
  top: -2px;
  letter-spacing: 0; }

.modal-backdrop {
  height: 100%; }

.flyout_arrow {
  position: absolute;
  z-index: 10; }

.paginating {
  width: 100%;
  padding: 0 10px;
  box-sizing: border-box; }
  .paginating div {
    display: inline-block; }
    .paginating div .fa-arrow-left {
      margin-right: 10px; }
    .paginating div .fa-arrow-right {
      margin-left: 10px; }

.edit_link {
  font-size: 0.8125rem; }
  .edit_link span {
    margin-right: 2px; }

.small {
  font-size: 0.8125rem;
  color: #9097a0; }

.img-thumbnail {
  background: transparent;
  border: none;
  padding: 0; }

.tree .label {
  font-family: "proxima_nova_rgregular";
  font-size: 0.875rem;
  line-height: 1.8em;
  font-weight: normal;
  padding-left: 13px; }

.tree a {
  color: #2e3438; }

.tree li {
  position: relative; }
  .tree li:before {
    position: absolute;
    left: 17px;
    content: '';
    width: 1px;
    top: 20px;
    background-color: #d7dcdf;
    height: calc(100% - 15px); }
  .tree li div {
    display: inline; }
  .tree li .selected {
    background-color: #fcf2b9; }

.tree > li:first-child > div .node_icon {
  width: 15px;
  background-position: 1px 0; }

.tree > li:first-child > div .label {
  font-family: "proxima_novasemibold"; }

.tree .child {
  padding-left: 25px; }
  .tree .child .node_icon {
    background-position: -31px 0; }
  .tree .child .folder > .node_icon {
    background-position: -14px 0; }
  .tree .child .folder .label {
    font-family: "proxima_novasemibold"; }
  .tree .child .folder .disabled {
    pointer-events: none; }
  .tree .child > li:last-child:before {
    display: none; }

.tree .node_icon {
  background: url(./assets/img/node.png) no-repeat 2px 0;
  width: 16px;
  height: 15px;
  display: inline-block;
  position: relative;
  z-index: 2;
  top: 3px;
  left: 10px; }
  .tree .node_icon.icon-error {
    background: none;
    color: #cd1717; }

.tree .icon {
  width: 9px;
  height: 9px;
  position: relative;
  top: 9px;
  outline: none; }
  .tree .icon:before {
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    border-style: solid; }
  .tree .icon.collapsed:before {
    border-width: 4.5px 0 4.5px 8px;
    border-color: transparent transparent transparent #231F20; }
  .tree .icon.expanded:before {
    border-width: 8px 4.5px 0 4.5px;
    border-color: #231F20 transparent transparent transparent; }

.table {
  border-bottom: 2px solid #C7CDCE; }
  .table td, .table th {
    font-size: 0.875rem; }
  .table.table-striped > tbody > tr > td {
    background-color: #ffffff; }
  .table.table-striped > tbody > tr:nth-child(even) > td {
    background: #fbfcfc; }

.bottom_popover_arrow:before, .select2-drop.select2-drop-above:before, #mainContainer .bottom .flyout_arrow:before, .hover_flyout.bottom .flyout .flyout_inner li:last-child:before, .bottom_popover_arrow:after, .select2-drop.select2-drop-above:after, #mainContainer .bottom .flyout_arrow:after, .hover_flyout.bottom .flyout .flyout_inner li:last-child:after {
  content: '';
  border-style: solid;
  position: absolute;
  bottom: -7px;
  left: 20px;
  top: 100%; }

.bottom_popover_arrow:before, .select2-drop.select2-drop-above:before, #mainContainer .bottom .flyout_arrow:before, .hover_flyout.bottom .flyout .flyout_inner li:last-child:before {
  border-width: 7px 6px 0 6px;
  border-color: #d7dcdf transparent transparent transparent; }

.bottom_popover_arrow:after, .select2-drop.select2-drop-above:after, #mainContainer .bottom .flyout_arrow:after, .hover_flyout.bottom .flyout .flyout_inner li:last-child:after {
  margin-top: -1px;
  bottom: -6px;
  border-width: 6px 6px 0 6px;
  border-color: #ffffff transparent transparent transparent; }

#mainContainer .bottom .flyout_arrow {
  top: 100%; }

.flyout {
  position: absolute;
  z-index: 7;
  padding-top: 14px;
  display: none; }
  .flyout .flyout_inner {
    background-color: #ffffff;
    position: relative;
    -webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.11);
    -moz-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.11);
    box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.11);
    border: 1px solid #d7dcdf; }
    .flyout .flyout_inner > ul > li {
      border-bottom: 1px solid #ebeeef; }
      .flyout .flyout_inner > ul > li > a {
        display: block;
        color: #2e3438;
        font-family: "proxima_novasemibold";
        font-size: 0.875rem;
        padding: 10px 20px;
        white-space: nowrap; }
        .flyout .flyout_inner > ul > li > a:hover {
          background-color: #fbfcfc;
          color: #47a3e8; }
        .flyout .flyout_inner > ul > li > a:active {
          background-color: #f2f5f5;
          color: #106fb6; }
      .flyout .flyout_inner > ul > li:last-child {
        border: none; }

.hover_flyout {
  position: relative; }
  .hover_flyout.opened .flyout {
    display: block !important; }
  .hover_flyout.bottom .flyout {
    bottom: 30px; }
    .hover_flyout.bottom .flyout .flyout_inner li:last-child:hover:after {
      border-width: 6px 6px 0 6px;
      border-color: #ebeeef transparent transparent transparent; }
    .hover_flyout.bottom .flyout .flyout_inner li:first-child:before, .hover_flyout.bottom .flyout .flyout_inner li:first-child:after {
      display: none; }

.rating_wrap {
  display: inline-block; }
  .rating_wrap .flyout_trigger {
    cursor: text; }
  .rating_wrap.hover_flyout .flyout_trigger {
    cursor: pointer; }

.star_wrap span {
  position: relative;
  padding-left: 60px;
  font-size: 0.8125rem;
  display: block;
  top: 2px;
  color: #31373f; }
  .star_wrap span:before {
    content: "\E600\E600\E600";
    color: #c1c2c4; }
  .star_wrap span:after, .star_wrap span:before {
    font-size: 14px;
    position: absolute;
    left: 0;
    letter-spacing: 0.25em;
    top: 2px; }
  .star_wrap span.star3:after {
    content: "\E604\E604\E604";
    color: #f73e19; }
  .star_wrap span.star2:after {
    content: "\E604\E604";
    color: #f78c19; }
  .star_wrap span.star1:after {
    content: "\E604";
    color: #e2b52b; }

.star_wrap:hover .rating_breakdown {
  display: block; }

.rating_breakdown .flyout_inner {
  padding: 15px 20px;
  width: 185px; }

.rating_breakdown .title {
  font-family: "proxima_novasemibold";
  font-size: 0.875rem; }

.rating_breakdown .star_wrap {
  margin-top: 10px; }

.rating_flyout .flyout_inner {
  width: 230px;
  padding: 20px; }
  .rating_flyout .flyout_inner span i {
    font-size: 20px;
    color: #9097a0;
    outline: none; }
    .rating_flyout .flyout_inner span i.glyphicon-star {
      color: #f78c19; }
  .rating_flyout .flyout_inner i + i {
    margin-left: 5px; }

.hover_flyout.bottom .rating_flyout {
  bottom: 50px; }

.list {
  width: 100%;
  clear: both; }
  .list > .row {
    margin-left: -10px;
    margin-right: -10px; }
  .list article {
    padding: 0 10px;
    float: left;
    margin-bottom: 30px; }
  .list .card_inner {
    background-color: #ffffff;
    border-bottom: 2px solid #d7dcdf;
    box-sizing: border-box;
    display: block;
    position: relative;
    height: 360px; }
    .list .card_inner mark {
      background: #47a3e8;
      color: #ffffff; }
    .list .card_inner .img {
      width: 100%;
      height: 152px;
      margin: 0 auto;
      text-align: center; }
      .list .card_inner .img img {
        width: 100%;
        height: auto;
        max-height: 152px;
        background-size: 100%;
        background-position: 50% 50%;
        background-repeat: no-repeat; }
    .list .card_inner .like {
      position: absolute;
      left: 18px;
      bottom: 60px;
      font-size: 12px;
      height: 16px;
      width: 176px; }
      .list .card_inner .like a {
        display: inline-block;
        width: 36px;
        text-align: center;
        color: #8B8A8C;
        border-color: #8B8A8C; }
    .list .card_inner .detail_wrap {
      border-top: 1px solid #d7dcdf;
      padding: 15px 27px 10px;
      font-size: 0.875rem;
      margin-bottom: 10px; }
      .list .card_inner .detail_wrap .detail {
        width: 100%;
        height: 120px;
        overflow: hidden;
        line-height: 20px; }
        .list .card_inner .detail_wrap .detail .max-lines {
          display: block;
          /* Fallback for non-webkit */
          display: -webkit-box;
          margin: 0 auto;
          font-size: 0.875rem;
          line-height: 20px;
          -webkit-line-clamp: 3;
          -webkit-box-orient: vertical;
          overflow: hidden;
          text-overflow: ellipsis; }
        .list .card_inner .detail_wrap .detail .short {
          max-height: 80px;
          overflow: hidden; }
      .list .card_inner .detail_wrap a.underline {
        display: block; }
      .list .card_inner .detail_wrap a:hover .title {
        color: #47a3e8; }
      .list .card_inner .detail_wrap .title, .list .card_inner .detail_wrap .format {
        font-family: "proxima_novasemibold";
        line-height: 1.2em; }
      .list .card_inner .detail_wrap .title {
        color: #2e3438;
        font-size: 1.125rem;
        margin-bottom: 5px;
        white-space: nowrap; }
        .list .card_inner .detail_wrap .title .icon-error {
          font-size: 0.875rem;
          color: #cd1717;
          margin-right: 5px; }
      .list .card_inner .detail_wrap .format {
        font-size: 0.8125rem;
        color: #9097a0;
        margin-bottom: 7px; }
      .list .card_inner .detail_wrap .description {
        color: #2e3438;
        line-height: 1.3em; }
    .list .card_inner .cta, .list .card_inner .rating_wrap {
      margin: 0 27px; }
    .list .card_inner .cta {
      border-top: 1px solid #ecf0f1;
      bottom: 0;
      font-family: "proxima_novasemibold";
      font-size: 0.875rem;
      padding: 18px 0;
      position: absolute;
      width: calc(100% - 54px); }
      .list .card_inner .cta .icon-plus, .list .card_inner .cta .icon-arrow, .list .card_inner .cta .select2-container .select2-choice, .select2-container .list .card_inner .cta .select2-choice {
        display: inline-block; }
      .list .card_inner .cta ul {
        min-width: 120px; }
        .list .card_inner .cta ul li {
          white-space: nowrap; }
      .list .card_inner .cta .hover_flyout {
        float: right; }
  .list .no-thumb .like {
    top: 255px;
    right: 15px; }
  .list .relationship-card .card_inner {
    padding: 25px 30px 15px 30px; }
    .list .relationship-card .card_inner .detail_wrap {
      margin-bottom: 0;
      padding-right: 140px;
      min-height: 100px; }
    .list .relationship-card .card_inner .like {
      position: initial; }
    .list .relationship-card .card_inner .cta {
      border-left: 1px solid #ecf0f1;
      border-top: 0;
      margin-top: 0;
      padding-top: 35px;
      padding-left: 32px;
      position: absolute;
      top: 0;
      width: 140px;
      right: 0; }
      .list .relationship-card .card_inner .cta .icon-plus:before {
        content: none;
        margin: 0; }
      .list .relationship-card .card_inner .cta .hover_flyout {
        float: none;
        margin-top: 45px;
        left: 0 !important; }
  .list .icon-plus, .list .icon-x {
    position: absolute; }
    .list .icon-plus:before, .list .icon-x:before {
      font-size: 11px;
      margin-right: 8px; }
  .list .icon-x:before {
    font-size: 0.625rem; }

.card_view .no-thumb .title {
  margin-top: 20px; }

.card_view .no-thumb .detail_wrap .detail {
  height: 300px; }

.alt_list_view header h1 {
  font-size: 0.875rem;
  margin-top: 10px; }

.alt_list_view header .pull-right {
  position: relative;
  top: 7px;
  text-align: right;
  color: #9097a0; }

.alt_list_view article {
  margin-bottom: 20px;
  width: 100% !important;
  max-width: 100%; }
  .alt_list_view article .card_inner {
    padding: 30px;
    height: auto; }
    .alt_list_view article .card_inner .img {
      width: 106px;
      height: 60px;
      position: absolute;
      overflow: hidden; }
      .alt_list_view article .card_inner .img img {
        max-height: 60px; }
    .alt_list_view article .card_inner .tag {
      position: relative;
      top: 0;
      left: 130px; }
    .alt_list_view article .card_inner .like {
      position: absolute;
      top: 166px;
      right: 20px; }
    @media (max-width: 767px) {
      .alt_list_view article .card_inner .like {
        top: 140px; } }
    .alt_list_view article .card_inner .detail_wrap {
      border-top: 0;
      padding-left: 130px;
      padding-right: 0;
      padding-top: 0px;
      min-height: 110px;
      margin-bottom: 30px; }
    .alt_list_view article .card_inner .rating_wrap {
      position: absolute;
      top: 105px; }
    .alt_list_view article .card_inner .rating_wrap, .alt_list_view article .card_inner .cta {
      margin-left: 0;
      margin-right: 0; }
    .alt_list_view article .card_inner .cta {
      margin-top: 20px; }
      .alt_list_view article .card_inner .cta .hover_flyout {
        float: none;
        left: 145px; }
  .alt_list_view article .no-thumb .like {
    top: 226px;
    right: 15px; }
  @media (max-width: 767px) {
    .alt_list_view article .no-thumb .like {
      top: 170px; } }

.alt_list_view .no-thumb .title {
  margin-top: 0px; }

.alt_list_view .no-thumb .detail_wrap {
  padding-left: 0px !important; }
  .alt_list_view .no-thumb .detail_wrap .detail {
    height: 150px !important; }

.alt_list_view .no-thumb .tag {
  left: 0 !important; }

.wide_list_view article {
  margin-bottom: 0; }
  .wide_list_view article:last-child .card_inner {
    border-bottom: 2px solid #d7dcdf; }
  .wide_list_view article .card_inner {
    margin-bottom: 0;
    border-bottom: 1px solid #ecf0f1; }
    .wide_list_view article .card_inner .detail_wrap .detail {
      height: auto; }

.tag {
  color: #ffffff;
  position: absolute;
  top: 10px;
  left: 10px;
  font-family: "proxima_novasemibold";
  font-size: 0.75rem; }
  .tag a {
    display: inline-block;
    background-color: #333c4e;
    color: currentColor;
    padding: 3px 7px;
    cursor: pointer; }
    .tag a:hover {
      background-color: #455676; }
    .tag a:active {
      background-color: #282d31; }

.default-thumb {
  background-position: 10% 100% !important;
  background-size: 70% !important; }

.card_highlight {
  border: 4px solid #DD932E;
  border-bottom: 4px solid #DD932E !important; }

.search_form .search_fieldset {
  -moz-border-radius: 5px 0 0 5px;
  -webkit-border-radius: 5px 0 0 5px;
  border-radius: 5px 0 0 5px; }
  .search_form .search_fieldset.focused:after {
    position: absolute;
    right: 0;
    content: '';
    width: 1px;
    height: 100%;
    background-color: #97c8ec; }

.search_form fieldset {
  position: relative; }
  .search_form fieldset.focused, .search_form #searchContainer > .inner.short_format .location_fieldset.focused, #searchContainer > .inner.short_format .search_form .location_fieldset.focused {
    background-color: #badaf2; }

.search_form label + input {
  background-color: transparent; }

.search_form input {
  position: absolute;
  z-index: 2;
  height: 100%;
  box-sizing: border-box; }
  .search_form input[name="query"], .search_form input[name="location"] {
    border: none;
    width: 100%;
    padding: 9px 36px;
    height: 40px; }
  .search_form input[name="query"] {
    -moz-border-radius: 5px 0 0 5px;
    -webkit-border-radius: 5px 0 0 5px;
    border-radius: 5px 0 0 5px; }
  .search_form input[type="submit"] {
    -moz-border-radius: 0 5px 5px 0;
    -webkit-border-radius: 0 5px 5px 0;
    border-radius: 0 5px 5px 0;
    border-top: 2px solid #fa6603; }

.as-sortable-item-handle, .search_list li > div {
  padding: 15px 20px;
  background: #ffffff; }
  .as-sortable-item-handle a.icon-heart_empty, .search_list li > div a.icon-heart_empty, .as-sortable-item-handle a.icon-heart_filled, .search_list li > div a.icon-heart_filled {
    margin-right: 15px;
    font-size: 0.75rem;
    color: #1985d5;
    cursor: pointer; }
  .as-sortable-item-handle a.icon-heart_empty:hover:before, .search_list li > div a.icon-heart_empty:hover:before {
    content: "\E607"; }
  .as-sortable-item-handle .icon-x, .search_list li > div .icon-x {
    position: absolute;
    right: 20px;
    margin-top: 3px;
    font-size: 0.625rem;
    color: #474f58; }
  .as-sortable-item-handle a, .search_list li > div a {
    cursor: pointer;
    color: #2e3438; }
    .as-sortable-item-handle a em, .search_list li > div a em {
      font-style: normal;
      font-family: "proxima_novasemibold"; }

.search_list p {
  padding: 15px 20px; }

.search_list article {
  background: #ffffff; }

.search_list ul {
  border-bottom: 2px solid #d7dcdf;
  outline: none; }

.search_list li {
  position: relative;
  display: block;
  border-bottom: 1px solid #ecf0f1;
  font-size: 0.875rem; }
  .search_list li:hover {
    background-color: #f2f5f5 !important; }
    .search_list li:hover a.underline {
      box-shadow: 0 1px 0 #c1d9e8, 0 1px 0 #c1d9e8;
      color: #47a3e8; }
  .search_list li:nth-child(2n+2) div {
    background-color: #fbfcfc; }

#resultsTable {
  border-bottom: 2px solid #d7dcdf;
  margin-bottom: 0; }
  #resultsTable.table-striped > tbody > tr {
    outline: none; }
    #resultsTable.table-striped > tbody > tr:nth-child(odd) {
      background-color: #ffffff; }
    #resultsTable.table-striped > tbody > tr:nth-child(even) {
      background-color: #fbfcfc; }
  #resultsTable thead {
    background-color: #ecf0f1; }
    #resultsTable thead tr th {
      padding: 20px 15px;
      font-size: 0.875rem;
      color: #333c4e;
      outline: none;
      border: 1px solid #d7dcdf;
      border-bottom-color: #d7dcdf; }
  #resultsTable tr {
    position: relative; }
    #resultsTable tr th:not(:first-child) {
      cursor: pointer; }
    #resultsTable tr td {
      padding-left: 15px;
      padding-right: 15px; }
    #resultsTable tr td {
      border-left: 1px solid #ecf0f1;
      border-top-color: #ecf0f1;
      vertical-align: middle;
      word-wrap: break-word;
      color: #000000; }
      #resultsTable tr td.semi a {
        color: #000000; }
      #resultsTable tr td.img {
        min-width: 92px;
        max-width: 92px;
        padding: 0;
        border-left: none;
        text-align: center;
        margin: 0 auto;
        position: relative; }
        #resultsTable tr td.img .tag {
          width: 100%; }
          #resultsTable tr td.img .tag a {
            width: 100%;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            display: block; }
        #resultsTable tr td.img .img-link {
          display: block;
          max-height: 52px;
          width: 100%;
          overflow: hidden; }
        #resultsTable tr td.img img {
          width: 100%;
          height: auto;
          background-repeat: no-repeat;
          background-position: 50% 50%; }
        #resultsTable tr td.img .icon-error {
          color: #cd1717;
          position: absolute;
          right: 5px;
          bottom: 0;
          font-size: 0.625rem; }
      #resultsTable tr td.tools {
        min-width: 100px;
        padding-right: 5px;
        white-space: nowrap; }
        #resultsTable tr td.tools .flyout .flyout_inner {
          min-width: 140px; }
      #resultsTable tr td .field_wrap {
        width: 100%; }
        #resultsTable tr td .field_wrap .field_wrap_ellipsis {
          overflow: hidden;
          text-overflow: ellipsis;
          white-space: nowrap; }
        #resultsTable tr td .field_wrap .underline {
          display: inline; }

.ng-table {
  table-layout: fixed; }
  .ng-table th.sortable div {
    position: relative; }
    .ng-table th.sortable div:after, .ng-table th.sortable div:before {
      content: '';
      border-width: 0 4px 4px;
      border-style: solid;
      border-color: #000000 transparent;
      visibility: visible;
      right: 8px;
      top: 50%;
      position: absolute;
      opacity: 0.3;
      margin-top: -3px; }
    .ng-table th.sortable div:before {
      margin-top: 2px;
      border-bottom: 0;
      border-left: 4px solid transparent;
      border-right: 4px solid transparent;
      border-top: 4px solid #000000; }
  .ng-table th.sortable.sort-asc div:before {
    visibility: hidden; }
  .ng-table th.sortable.sort-asc div:after {
    visibility: visible;
    opacity: 0.6;
    margin-top: -2px; }
  .ng-table th.sortable.sort-desc div:before {
    visibility: visible;
    opacity: 0.6;
    margin-top: -2px; }
  .ng-table th.sortable.sort-desc div:after {
    visibility: hidden; }

.rc-handle-container {
  position: relative; }
  .rc-handle-container .rc-handle {
    position: absolute;
    z-index: 2;
    width: 7px;
    cursor: ew-resize;
    margin-left: -3px; }

.suggest-container {
  background-color: #fff;
  position: absolute !important;
  z-index: 1000;
  border-radius: 2px;
  border-top: 1px solid #d9d9d9;
  font-family: Arial, sans-serif;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  width: 100%;
  max-height: 15rem;
  overflow-y: auto; }

.suggest-item, .suggest-header {
  cursor: pointer;
  padding: 0 4px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  line-height: 30px;
  text-align: left;
  border-top: 1px solid #e6e6e6;
  font-size: 11px;
  color: #999; }

.suggest-header {
  cursor: default;
  font-size: 14px;
  font-weight: 700; }

.suggest-item:hover, .suggest-header:hover {
  background-color: #fafafa; }

.suggest-item-selected, .suggest-item-selected:hover {
  background-color: #ebf2fe; }

.suggest-matched {
  font-weight: 700; }

.suggest-item-query {
  font-size: 13px;
  padding-right: 3px;
  color: #000; }

.suggest-icon-search {
  background-position: -1px -1px; }

.suggest-item-selected .suggest-icon-search {
  background-position: -18px -1px; }

.suggest-item-selected .suggest-icon-marker {
  background-position: -18px -161px; }

.suggest-placeholder {
  color: gray; }

.default-table-thumb {
  background-position: 5% 105% !important;
  background-size: 200% !important; }

.search-map .leaflet-popup-tip-container {
  height: 0px;
  width: 0px; }

@media (min-width: 1501px) {
  #searchPage .map_content.col-md-12 .list article {
    width: 16.666%; } }

@media (min-width: 1301px) and (max-width: 1500px) {
  #searchPage .map_content.col-md-12 .list article {
    width: 20%; } }

@media (min-width: 980px) and (max-width: 1300px) {
  #searchPage .map_content.col-md-12 .list article {
    width: 25%; } }

@media (max-width: 768px) {
  #searchPage {
    /*.map_fixed {
		position: relative;
		width: 100%;
		height: 500px;
	}
	header.sticky {
		position: relative;
		width: 100%;

		+ .container-fluid {
			padding-top: 20px !important;
		}
	}*/ }
    #searchPage .result_container {
      width: 100%;
      float: none; }
    #searchPage .map_content.col-md-12 .list article {
      width: 33.333%; } }

.selected-filter:hover {
  text-decoration: underline; }

.status-link {
  text-decoration: underline;
  color: blue !important; }

.ss-list .fa-paste {
  margin-top: 1px; }

.ss-list .nudged {
  margin-right: 20px; }

.tab ul li, .nav-tabs li {
  float: left;
  font-family: "proxima_novasemibold";
  font-size: 0.875rem;
  position: relative; }
  .tab ul li:before, .nav-tabs li:before {
    content: '';
    position: absolute;
    top: 0;
    width: 1px;
    height: 100%;
    left: 0;
    background-color: #e3e4e4;
    border-top: 1px solid #d7dcdf;
    border-bottom: 2px solid #b8bbbc;
    box-sizing: border-box; }
  .tab ul li:active:before, .nav-tabs li:active:before {
    border-bottom-color: #dedede;
    border-top-color: #b2b2b2; }
  .tab ul li:first-child, .nav-tabs li:first-child {
    border-left: 1px solid #e3e4e4; }
    .tab ul li:first-child:before, .nav-tabs li:first-child:before {
      display: none; }
  .tab ul li:last-child, .nav-tabs li:last-child {
    border-right: 1px solid #e3e4e4; }
  .tab ul li:first-child, .tab ul li:first-child a, .nav-tabs li:first-child, .nav-tabs li:first-child a {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px; }
  .tab ul li:last-child, .tab ul li:last-child a, .nav-tabs li:last-child, .nav-tabs li:last-child a {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px; }
  .tab ul li.selected a, .tab ul li.selected a:hover, .tab ul li.selected a:active, .tab ul li.active a, .tab ul li.active a:hover, .tab ul li.active a:active, .nav-tabs li.selected a, .nav-tabs li.selected a:hover, .nav-tabs li.selected a:active, .nav-tabs li.active a, .nav-tabs li.active a:hover, .nav-tabs li.active a:active {
    background-color: #3a992d;
    border-bottom-color: #3a992d;
    border-top-color: #2a7021;
    color: #ffffff; }
  .tab ul li.selected a, .tab ul li.active a, .nav-tabs li.selected a, .nav-tabs li.active a {
    padding-top: 9px; }
  .tab ul li a, .nav-tabs li a {
    color: #2e3438;
    background-color: #ffffff;
    display: block;
    padding: 9px 20px;
    border-top: 1px solid #d7dcdf;
    border-bottom: 2px solid #b8bbbc;
    text-decoration: none; }
    .tab ul li a:hover, .nav-tabs li a:hover {
      background-color: #fbfcfc; }
    .tab ul li a:active, .nav-tabs li a:active {
      background-color: #dedede;
      border-bottom-color: #dedede;
      border-top-color: #b2b2b2; }

.nav-tabs {
  border-bottom: 0;
  margin-bottom: 20px; }

.tab_progress ul li {
  border-left: 1px solid #b8bbbc; }
  .tab_progress ul li:last-child {
    border-right: 1px solid #b8bbbc; }
  .tab_progress ul li.selected a, .tab_progress ul li:hover a {
    background-color: #333c4e;
    border-bottom-color: #333c4e;
    border-top: 3px solid #252c39;
    padding-top: 7px;
    color: #ffffff; }
  .tab_progress ul li a {
    border-top: 1px solid #b8bbbc;
    border-bottom: 3px solid #b8bbbc;
    padding: 9px 0 7px;
    color: #31373f;
    width: 114px;
    text-align: center; }

.tab_tert li a {
  font-size: 0.75rem;
  padding-top: 7px;
  padding-bottom: 7px; }

.navbar {
  min-height: 10px;
  margin-bottom: 0; }
  .navbar > li {
    display: inline-block;
    border-left: 1px solid #d7dcdf;
    font-family: "proxima_novasemibold";
    font-size: 0.875rem; }
    .navbar > li.first {
      border-left: none; }
    .navbar > li.first a, .navbar > li:first-child a {
      padding-left: 0; }
    .navbar > li a {
      padding: 0 10px; }

.floating-nav {
  position: fixed;
  background-color: #ecf0f1;
  padding: 20px 40px 10px 10px;
  z-index: 1001;
  top: 64px;
  width: 100%;
  margin-left: -10px; }
  .floating-nav > li {
    display: inline-block;
    border-left: 1px solid #d7dcdf;
    font-family: "proxima_novasemibold";
    font-size: 0.875rem; }
    .floating-nav > li.first {
      border-left: none; }
    .floating-nav > li.first a, .floating-nav > li:first-child a {
      padding-left: 0; }
    .floating-nav > li a {
      padding: 0 10px; }

.floating-header {
  border-left: none !important;
  position: absolute;
  left: 350px;
  margin-top: -5px;
  max-width: 500px; }
  .floating-header h1 {
    font-family: proxima_novalight;
    font-size: 2.5rem;
    position: relative;
    margin-top: 0px;
    display: none;
    overflow: hidden;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis; }

.filter_header, .taxo_header {
  height: 70px;
  border-bottom: 1px solid #44556a;
  margin-right: -20px;
  margin-top: -15px;
  margin-left: 20px !important;
  background-color: #333c4e; }
  .filter_header a, .taxo_header a {
    width: 220px;
    position: relative;
    display: block;
    padding: 25px 20px;
    font-size: 0.8125rem;
    color: #ffffff; }
    .filter_header a .icon-x, .taxo_header a .icon-x {
      position: absolute;
      right: 20px;
      margin-top: 3px;
      color: #ffffff;
      font-size: 0.625rem; }

#filterContainer {
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  background-color: #ecf0f1;
  padding: 0;
  width: 220px; }
  #filterContainer .filter_background {
    background-color: #ecf0f1;
    width: 220px;
    height: 100%;
    position: fixed;
    top: 0;
    z-index: 1; }
  #filterContainer > div {
    border-right: 1px solid #d7dcdf;
    position: relative;
    z-index: 3;
    margin-top: 105px;
    overflow-y: auto;
    height: calc(100vh - 145px); }
    #filterContainer > div::-webkit-scrollbar {
      width: 8px;
      background-color: #E5E9EA; }
    #filterContainer > div::-webkit-scrollbar-thumb {
      background: #A0A6AE;
      border-radius: 5px;
      height: 20px; }
  #filterContainer .panel-heading {
    padding: 0;
    background-color: transparent;
    border: 0; }
    #filterContainer .panel-heading a {
      display: block;
      padding: 20px; }
    #filterContainer .panel-heading .panel-title {
      font-size: 12px; }
    #filterContainer .panel-heading .fa {
      float: right;
      color: #B3B9C0; }
  #filterContainer .panel-primary .panel-heading {
    text-transform: uppercase; }
    #filterContainer .panel-primary .panel-heading a {
      color: #3F4347;
      font-family: "proxima_novasemibold"; }
    #filterContainer .panel-primary .panel-heading.selected a {
      color: #3F4347; }
  #filterContainer .panel-group {
    margin-bottom: 0; }
    #filterContainer .panel-group .panel {
      border-radius: 0;
      background: none;
      border: 0;
      box-shadow: unset;
      border-bottom: 1px solid #d7dcdf; }
      #filterContainer .panel-group .panel + .panel {
        margin-top: 0; }
  #filterContainer .panel-body {
    background-color: #E5E9EA;
    border-top: none !important;
    padding: 20px; }
    #filterContainer .panel-body a {
      color: #3F4347;
      font-size: .8em;
      font-family: "proxima_novasemibold"; }
    #filterContainer .panel-body .facet_count {
      color: #B2B9BE !important; }
    #filterContainer .panel-body label {
      color: #3F4347;
      font-size: .8em;
      font-family: "proxima_novasemibold"; }
    #filterContainer .panel-body .link-facet:hover .inverse {
      display: block; }
    #filterContainer .panel-body .link-facet {
      position: relative; }
      #filterContainer .panel-body .link-facet .inverse:hover {
        cursor: pointer;
        border: solid 1px #B2B9BE;
        border-radius: 5px; }
    #filterContainer .panel-body .checkbox {
      margin-top: 0;
      margin-bottom: 0; }
      #filterContainer .panel-body .checkbox input {
        margin-top: 2px; }
    #filterContainer .panel-body .checkbox-only {
      display: none;
      padding: 2px;
      position: absolute;
      top: 0;
      right: 20px; }
    #filterContainer .panel-body .inverse {
      height: 20px;
      margin-top: 2px;
      position: absolute;
      right: 2px;
      top: 0;
      background-color: #E5E9EA; }
      #filterContainer .panel-body .inverse img {
        margin-top: -8px; }
    #filterContainer .panel-body .checkbox-only:hover {
      border: solid 1px #B2B9BE;
      border-radius: 5px; }
    #filterContainer .panel-body .checkbox:hover .checkbox-only {
      display: block;
      color: #ffffff;
      cursor: pointer; }
    #filterContainer .panel-body .icon-x {
      font-size: 9px; }
    #filterContainer .panel-body .facet_error {
      color: orange;
      margin-left: 5px; }

.panel-body .hierarchy .label {
  white-space: nowrap; }

.panel-body .folder_tree .fa-folder, .panel-body .folder_tree .fa-folder-open {
  color: #ffffff; }

.panel-body .folder_tree li {
  position: relative;
  margin-bottom: 5px; }
  .panel-body .folder_tree li ul {
    padding-top: 5px;
    padding-left: 10px; }
  .panel-body .folder_tree li .label {
    white-space: normal;
    padding-left: 33px;
    display: block;
    text-align: left;
    line-height: 1.3em; }
  .panel-body .folder_tree li .fa {
    position: absolute;
    left: 15px;
    font-size: 13px;
    margin-top: 2px; }

.panel-body .folder_tree .icon {
  width: 18px;
  height: 8px;
  outline: none;
  font-size: 10px;
  position: absolute; }
  .panel-body .folder_tree .icon:before {
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    top: 3px; }
  .panel-body .folder_tree .icon.collapsed:before {
    border-width: 4.5px 0 4.5px 8px;
    border-color: transparent transparent transparent #8691a7; }
  .panel-body .folder_tree .icon.expanded:before {
    border-width: 8px 4.5px 0 4.5px;
    border-color: #8691a7 transparent transparent transparent; }

.panel-body .slider_wrap .form-group div[uib-datepicker-popup-wrap] {
  display: inline-block; }

.panel-body .slider_wrap .form-control {
  width: 104px;
  font-size: 0.8125rem; }

.panel-body .slider_wrap .input-group input.form-control {
  width: 84px;
  padding: 6px; }

.panel-body .slider_wrap .input-group select.form-control {
  width: 50px;
  padding-right: 0px;
  padding-left: 0px;
  background-color: #5b80a0;
  color: #ffffff; }

.panel-body .slider_wrap .dash {
  display: inline-block;
  width: 10px;
  text-align: center;
  position: relative;
  top: -5px;
  height: 1px;
  background-color: #a5b1c7;
  margin: 0 15px; }
  .panel-body .slider_wrap .dash.thin-dash {
    margin: 0 10px; }

.panel-body .slider_wrap button.btn-primary, .panel-body .slider_wrap button.btn-primary-sm {
  margin-top: 20px;
  padding: 0;
  font-size: 0.875rem;
  height: 36px;
  width: 100%;
  border-top: 2px solid #89b8dc;
  background-color: #89b8dc;
  color: #ffffff;
  border-bottom: 2px solid #6094ba; }

.panel-body .stats_wrap {
  padding: 20px 15px 0; }
  .panel-body .stats_wrap ul {
    padding-top: 20px;
    border-top: 1px solid #44556a; }
    .panel-body .stats_wrap ul li {
      color: #ffffff;
      font-size: 0.8125rem; }
      .panel-body .stats_wrap ul li .pull-left {
        margin-left: 0;
        padding-left: 0;
        color: #c5ccd9; }

.ui_slider_wrap {
  position: relative; }

#slider {
  height: 100%;
  width: 96%;
  padding: 0;
  background: none;
  border: none;
  margin: 20px 0;
  margin-left: 2%;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  transition: none; }
  #slider .ngrs-runner {
    width: 100%;
    background-color: #44556a;
    border-radius: 5px;
    height: 5px;
    margin: 0; }
  #slider .ngrs-join {
    background-color: #89b8dc; }
  #slider .ngrs-handle {
    width: 16px;
    height: 16px;
    border-radius: 8px;
    background-color: #89b8dc;
    border: none;
    top: -6px; }
    #slider .ngrs-handle i {
      display: none; }
    #slider .ngrs-handle:after {
      border-radius: 5px;
      content: '';
      position: absolute;
      background-color: #262e3f;
      height: 6px;
      width: 6px;
      top: 5px;
      left: 5px; }
    #slider .ngrs-handle.high {
      left: 100%; }
  #slider .bubble {
    display: none; }

.slider_range {
  font-size: 0.8125rem;
  color: #c5ccd9;
  margin-bottom: 20px; }

.open_filter #selectedFilters > div .selected_list {
  padding-right: 290px; }

#selectedFilters > div {
  margin-top: -20px;
  padding: 13px;
  width: calc(100% + 20px);
  position: fixed;
  z-index: 1;
  background-color: #d7dcdf;
  border-bottom: 1px solid #cacdce; }

#selectedFilters .hover_flyout {
  margin-left: 5px;
  position: absolute;
  width: 75px;
  font-size: 0.875rem;
  margin-top: 1px; }
  #selectedFilters .hover_flyout a.flyout_trigger {
    color: #2e3438; }
  #selectedFilters .hover_flyout .flyout {
    width: 100px; }

#selectedFilters .selected_list {
  padding-left: 80px; }
  #selectedFilters .selected_list li {
    background-color: #ffffff;
    display: inline-block;
    border-radius: 3px;
    font-size: 0.75rem;
    margin-right: 10px;
    margin-bottom: 7px; }
    #selectedFilters .selected_list li a {
      color: #000000;
      font-family: "proxima_novasemibold";
      padding: 0 5px;
      outline: none;
      display: inline-block; }
    #selectedFilters .selected_list li .icon-x {
      margin-left: 5px;
      outline: none; }
      #selectedFilters .selected_list li .icon-x:before {
        position: relative;
        top: -1px;
        color: #000000;
        font-size: 7px; }

#selectedFilters #expanded ul.expanded_list {
  padding-left: 190px; }

#selectedFilters #expanded div.expanded_list {
  float: left;
  margin-right: 15px; }

#selectedFilters #expanded .hover_flyout {
  width: 190px; }
  #selectedFilters #expanded .hover_flyout .flyout {
    left: 120px; }

#selectedFilters #expanded li.expanded {
  background-color: #ecf0f1;
  display: inline-block;
  border-radius: 3px;
  font-size: 0.75rem;
  margin-right: 6px;
  margin-bottom: 3px; }
  #selectedFilters #expanded li.expanded a {
    color: #000000;
    padding: 0 5px;
    outline: none;
    display: inline-block;
    font-family: "proxima_nova_rgregular"; }
  #selectedFilters #expanded li.expanded .icon-x {
    margin-left: 5px;
    outline: none; }
    #selectedFilters #expanded li.expanded .icon-x:before {
      position: relative;
      top: -1px;
      color: #000000;
      font-size: 7px; }

.slider_wrap {
  position: relative; }
  .slider_wrap .dropdown-menu {
    display: block;
    top: 0;
    box-shadow: none;
    width: 190px;
    outline: 0; }
    .slider_wrap .dropdown-menu table {
      width: 96%;
      margin-left: 2%;
      outline: 0; }
      .slider_wrap .dropdown-menu table .h6 {
        margin-top: 2px;
        margin-bottom: 2px; }
      .slider_wrap .dropdown-menu table button {
        font-size: 0.75rem;
        margin-top: 2px;
        padding: 2px 1px; }
  .slider_wrap .date-form {
    padding: 0 0 5px 5px; }
    .slider_wrap .date-form .min_date_picker_input, .slider_wrap .date-form .max_date_picker_input {
      margin-right: 20px; }
    .slider_wrap .date-form .title {
      position: absolute;
      padding: 3px 5px;
      font-size: 14px; }
    .slider_wrap .date-form input[type="radio"] {
      cursor: pointer; }
    .slider_wrap .date-form .input-type {
      width: 35px;
      font-size: 14px;
      text-align: center;
      display: inline-block; }
    .slider_wrap .date-form .since-input {
      width: 85px;
      text-align: center;
      padding-left: 25px;
      margin-left: 5px;
      border-top-right-radius: unset;
      border-bottom-right-radius: unset; }
    .slider_wrap .date-form .since-select {
      height: 34px;
      font-size: 14px;
      border: 1px solid #d8dbde;
      border-left: none;
      border-top-right-radius: 5px;
      border-bottom-right-radius: 5px;
      outline: none; }
    .slider_wrap .date-form .selectError {
      border: 1px solid #cd1717;
      border-bottom: 2px solid #cd1717; }
    .slider_wrap .date-form .uib-datepicker-popup {
      left: 0 !important; }
  .slider_wrap .max_date_picker_input + .dropdown-menu {
    margin-left: -134px; }

.block-ui-container {
  display: none; }

.selected_list.block-ui {
  position: relative; }
  .selected_list.block-ui:after {
    width: 100%;
    height: 100%;
    animation: skeleton-loading 2s linear infinite alternate;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    border-radius: .25rem;
    content: '';
    display: block;
    clear: both; }

#filterContainer.block-ui:after {
  width: 100%;
  height: 100%;
  animation: skeleton-loading 2s linear infinite alternate;
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  border-radius: .25rem;
  content: '';
  display: block;
  clear: both; }

@keyframes skeleton-loading {
  0% {
    background-color: rgba(209, 209, 209, 0.755); }
  100% {
    background-color: rgba(150, 150, 150, 0.755); } }

#preview {
  position: absolute;
  z-index: 1001;
  width: 500px;
  background: #ffffff;
  font-size: 0.875rem;
  display: none; }
  #preview .loading {
    text-align: center;
    margin: 25px auto 0; }
  #preview article {
    position: relative;
    border: 1px solid #d7dcdf;
    -webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.11);
    -moz-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.11);
    box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.11); }
    #preview article:after, #preview article:before {
      position: absolute;
      z-index: 1;
      top: 23px;
      margin-left: -10px;
      content: '';
      width: 0;
      height: 0;
      border-style: solid; }
    #preview article:after {
      border-width: 7px 10px 7px 0;
      border-color: transparent #d7dcdf transparent transparent; }
    #preview article:before {
      z-index: 2;
      margin-top: 2px;
      border-width: 5px 10px 5px 0;
      border-color: transparent #ffffff transparent transparent; }
  #preview .article_inner {
    position: relative;
    padding: 0 15px 15px;
    overflow: hidden;
    min-height: 80px; }
    #preview .article_inner h1 {
      font-size: 1.125rem; }
    #preview .article_inner .data_list {
      width: 100%;
      display: inline-block;
      word-wrap: break-word; }
      #preview .article_inner .data_list .semi {
        white-space: nowrap; }
      #preview .article_inner .data_list a:after {
        position: relative;
        content: ',';
        margin-right: 5px; }
      #preview .article_inner .data_list a:last-child:after {
        display: none; }

.task_header {
  position: relative;
  background: #ffffff;
  padding: 1px 1px 10px 15px; }
  .task_header .warning-msg {
    width: 100%;
    color: #ffffff;
    background-color: #f0ad4e;
    text-shadow: #ffffff; }
  .task_header div {
    padding-bottom: 10px;
    padding-right: 10px;
    padding-top: 10px;
    width: 100%; }
  .task_header i {
    padding: 5px; }
  .task_header a {
    padding-right: 10px;
    color: #337AB7;
    text-shadow: #ffffff; }
  .task_header h3, .task_header p {
    padding-right: 200px; }
  .task_header p {
    color: #868c92;
    font-size: 1.125rem; }
  .task_header .btn_secondary .icon_arrow:before {
    color: #868c92; }
  .task_header .pull-right {
    position: static;
    right: 40px;
    top: 50px; }
    .task_header .pull-right .flyout {
      width: 250px; }
      .task_header .pull-right .flyout .flyout_inner {
        max-height: 300px;
        overflow: hidden;
        overflow-y: auto; }

.task-params {
  background: #ffffff;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 10px;
  margin-top: 1px; }
  .task-params > .row {
    margin-right: 0; }

.select2-search-field > input {
  border: none !important; }

.task_list_modal_body .modal_inner {
  background-color: #ffffff;
  padding: 30px 15px; }
  .task_list_modal_body .modal_inner dt {
    font-family: "proxima_novasemibold";
    font-size: 1.125rem; }
  .task_list_modal_body .modal_inner dd {
    color: #868c92;
    font-size: 0.875rem; }
  .task_list_modal_body .modal_inner input[type=text], .task_list_modal_body .modal_inner input[type=number], .task_list_modal_body .modal_inner input[type=password] {
    border-radius: 5px;
    border: 1px solid #d7dcdf;
    padding: 9px 10px;
    font-size: 0.875rem; }
  .task_list_modal_body .modal_inner .clip-map {
    height: 250px;
    width: 100%; }
  .task_list_modal_body .modal_inner .process-control {
    margin-bottom: 15px; }
    .task_list_modal_body .modal_inner .process-control .form-control {
      height: auto; }
  .task_list_modal_body .modal_inner #task-details {
    margin-left: 0;
    margin-right: 0; }
    .task_list_modal_body .modal_inner #task-details .advanced_wrap {
      margin-bottom: 10px; }
    .task_list_modal_body .modal_inner #task-details .small {
      font-size: 0.875rem; }

.report-sub-head {
  border-bottom-color: lightgray;
  border-bottom-style: solid;
  border-bottom-width: thin;
  margin-bottom: 5px;
  padding-bottom: 5px; }

.report-item-col {
  white-space: nowrap;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  max-width: 0;
  overflow: hidden;
  width: 30%;
  border-right: 1px solid #ddd; }

.report-reason-col {
  word-break: break-all;
  word-wrap: break-word;
  width: 70%; }

#params vs-param div {
  margin-bottom: 10px; }

.task-modal {
  padding: 0 !important; }

body.cbp-spmenu-push .main_container {
  padding-top: 124px; }

body.cbp-spmenu-push .NGA_Bar_Container {
  z-index: 1020;
  width: 100%; }

body.cbp-spmenu-push #header {
  top: 60px; }

body.cbp-spmenu-push #searchPage .result_container header {
  left: 33.33%; }

body.cbp-spmenu-push.cbp-spmenu-fixed-backtoleft #header, body.cbp-spmenu-push.cbp-spmenu-fixed-backtoleft #searchPage .map_fixed {
  -webkit-animation: animate_toleft 0.3s ease both;
  -moz-animation: animate_toleft 0.3s ease both;
  animation: animate_toleft 0.3s ease both; }

body.cbp-spmenu-push.cbp-spmenu-fixed-backtoleft #searchPage .result_container header {
  -webkit-animation: animate_margin_toleft 0.3s ease both;
  -moz-animation: animate_margin_toleft 0.3s ease both;
  animation: animate_margin_toleft 0.3s ease both; }

body.cbp-spmenu-push.cbp-spmenu-push-toright #header, body.cbp-spmenu-push.cbp-spmenu-push-toright #searchPage .map_fixed {
  -webkit-animation: animate_toright 0.3s ease both;
  -moz-animation: animate_toright 0.3s ease both;
  animation: animate_toright 0.3s ease both; }

body.cbp-spmenu-push.cbp-spmenu-push-toright #searchPage .result_container header {
  -webkit-animation: animate_margin_toright 0.3s ease both;
  -moz-animation: animate_margin_toright 0.3s ease both;
  animation: animate_margin_toright 0.3s ease both; }

#detailPage {
  padding-top: 65px; }
  #detailPage .container-fluid {
    padding: 0px 40px; }
  #detailPage #detailTopStickyContent, #detailPage #detailTabContentNav {
    background: #ecf0f1; }
  #detailPage #detailTopStickyContent {
    overflow: hidden; }
  #detailPage #detailTabContentNav.sticky, #detailPage #detailTopStickyContent.sticky {
    width: calc(100% - 435px); }
  #detailPage #detailTopStickyContent.sticky, #detailPage #detailSecondaryColumn.sticky {
    top: 64px;
    padding-top: 30px;
    overflow: hidden; }
  #detailPage #detailSecondaryColumn.sticky .thumbnail_wrap .tag {
    top: 40px;
    left: 15px; }
  #detailPage #detailTabContentNav {
    clear: both;
    overflow: hidden;
    padding-bottom: 20px;
    z-index: 500; }
  #detailPage #detailTabContentWrap {
    z-index: 400; }
  #detailPage #detailTabContentNav.fixed {
    position: fixed;
    top: 135px; }
  #detailPage .detail-content-wrap > .col-lg-8 {
    width: calc(100% - 395px); }
  #detailPage .detail-content-wrap > .col-lg-4 {
    width: 395px; }
  #detailPage .result_title h1 {
    font-family: "proxima_novalight";
    font-size: 2.5rem;
    display: block;
    margin: 25px 15px 5px 0; }
    #detailPage .result_title h1 > span {
      word-wrap: break-word;
      margin-right: 20px; }
    #detailPage .result_title h1 .like {
      float: none;
      position: unset;
      display: block;
      padding-bottom: 20px; }
      #detailPage .result_title h1 .like i {
        padding-top: 0; }
      #detailPage .result_title h1 .like div {
        font-size: 10px; }
  #detailPage .result_title .missing_data {
    margin-top: 35px;
    margin-bottom: 0px; }
    #detailPage .result_title .missing_data + h1 {
      margin-top: 0px; }
  #detailPage .result_title .star_wrap {
    display: inline-block;
    position: relative;
    top: -5px; }
  #detailPage .result_title .info {
    margin-bottom: 10px; }
    #detailPage .result_title .info.path {
      font-family: "proxima_novasemibold";
      font-size: 0.875rem; }
  #detailPage .result_title .muted {
    color: #9097a0;
    font-family: "proxima_novasemibold"; }
    #detailPage .result_title .muted .bullet {
      display: inline-block;
      width: 18px;
      text-align: center; }
  #detailPage .result_title .like {
    display: inline;
    position: relative;
    font-family: "proxima_novasemibold";
    font-size: 16px;
    top: 140px; }
    #detailPage .result_title .like i {
      padding-top: 5px;
      font-size: 25px; }
    #detailPage .result_title .like i.fa-thumbs-down {
      padding-top: 15px; }
    #detailPage .result_title .like a {
      display: inline-block;
      width: 65px;
      color: #8B8A8C;
      border-color: #8B8A8C; }
    #detailPage .result_title .like div {
      font-size: 10px;
      padding-bottom: 5px; }
  #detailPage .field {
    margin-bottom: 10px;
    word-wrap: break-word; }
  #detailPage .divider {
    border-bottom: 1px solid #d7dcdf;
    margin-top: 50px;
    margin-bottom: 50px; }
  #detailPage .doc_description {
    margin-bottom: 15px; }
    #detailPage .doc_description > div {
      max-height: 110px;
      overflow: hidden; }
  #detailPage .tag_wrap {
    margin-bottom: 20px;
    margin-top: 10px;
    width: 100%; }
    #detailPage .tag_wrap h4 {
      font-size: 16px;
      font-family: "proxima_novasemibold";
      display: inline;
      margin-right: 5px; }
    #detailPage .tag_wrap .tag_list {
      display: inline; }
      #detailPage .tag_wrap .tag_list li {
        display: inline-block;
        margin-right: 5px; }
  #detailPage .thumbnail_wrap {
    margin-bottom: 20px;
    position: relative;
    width: 325px; }
    #detailPage .thumbnail_wrap .tag {
      left: 30px; }
    #detailPage .thumbnail_wrap .no-thumb {
      left: 0;
      top: 0; }
  #detailPage #details-table {
    font-size: 0.875rem;
    border-bottom: 2px solid #d7dcdf; }
    #detailPage #details-table th {
      width: 25%;
      font-family: "proxima_novasemibold";
      border-right: 1px solid #d7dcdf; }
    #detailPage #details-table td {
      width: 75%; }
    #detailPage #details-table th, #detailPage #details-table td {
      padding: 10px 10px 10px 25px;
      border-top: 0;
      border-bottom: 1px solid #d7dcdf; }
    #detailPage #details-table tbody tr {
      background-color: #ffffff; }
      #detailPage #details-table tbody tr:nth-child(2n+2) {
        background-color: #fbfcfc; }
  #detailPage #metadata-tab {
    font-size: 0.875rem;
    background-color: #ffffff; }
  #detailPage #schema-table {
    font-size: 0.875rem;
    border-bottom: 2px solid #d7dcdf;
    margin-bottom: 2px; }
    #detailPage #schema-table th {
      width: 25%;
      font-family: "proxima_novasemibold";
      border-right: 1px solid #d7dcdf;
      background-color: #fbfcfc; }
    #detailPage #schema-table td {
      width: 25%; }
    #detailPage #schema-table th, #detailPage #schema-table td {
      padding: 5px 5px 5px 5px;
      border-top: 0;
      border-bottom: 1px solid #d7dcdf; }
    #detailPage #schema-table tbody tr {
      background-color: #ffffff; }
      #detailPage #schema-table tbody tr:nth-child(2n+2) {
        background-color: #fbfcfc; }
  #detailPage .additional-info {
    background-color: #ffffff;
    padding: 20px 0 0 5px; }
    #detailPage .additional-info info-inner {
      margin-left: 5px; }
  #detailPage .formatted_value {
    width: 80%;
    padding-right: 10px;
    float: left;
    word-break: break-all; }
  #detailPage .summary_field {
    width: 80%;
    margin: 2px;
    word-break: break-all;
    margin: 0;
    margin-bottom: 2px; }
  #detailPage .summary_field_name {
    font-family: "proxima_novasemibold";
    font-size: 0.875rem; }
  #detailPage .edit_link {
    margin-right: 10px; }
  #detailPage .input_field {
    width: 95%;
    margin-bottom: 10px;
    border-radius: 5px;
    padding: 10px;
    font-size: 0.875rem;
    border: 1px solid #d7dcdf; }
  #detailPage textarea.input_field {
    height: 85px; }
  #detailPage .action_row button {
    margin-right: 10px; }
  #detailPage .metadata {
    background-color: #ffffff;
    border: 0;
    width: 100%;
    height: 500px;
    padding: 15px 0 15px 20px; }
  #detailPage .tags h1 {
    font-size: 1.875rem;
    font-family: "proxima_novalight";
    margin: 20px 0 10px; }
  #detailPage .recent h1 {
    font-size: 1.875rem;
    font-family: "proxima_novalight";
    margin: 20px 0 10px; }
  #detailPage .recent .alt_list_view article {
    margin-bottom: 10px; }
  #detailPage .recent .alt_list_view .card_inner {
    padding: 10px;
    min-height: 60px; }
    #detailPage .recent .alt_list_view .card_inner .detail_wrap {
      margin-bottom: 0;
      min-height: 30px; }
      #detailPage .recent .alt_list_view .card_inner .detail_wrap .detail {
        height: auto; }
        #detailPage .recent .alt_list_view .card_inner .detail_wrap .detail .format {
          margin-bottom: 0; }
  #detailPage .select2-container-multi .select2-choices .select2-search-choice {
    margin-top: 6px; }
  #detailPage .tab_content {
    margin: 0 0 20px; }
    #detailPage .tab_content header {
      padding: 8px 30px;
      color: #424a53;
      border-bottom: 1px solid #ecf0f1; }
      #detailPage .tab_content header h1 {
        font-size: 0.875rem;
        text-transform: uppercase; }
    #detailPage .tab_content .missing_data {
      padding-left: 40px; }
      #detailPage .tab_content .missing_data .icon-error {
        position: absolute;
        left: 30px; }
    #detailPage .tab_content .select2-container {
      margin: 10px 15px; }
    #detailPage .tab_content .tree {
      padding: 20px; }
    #detailPage .tab_content .content_inner {
      background: #ffffff; }
  #detailPage .details_table {
    max-height: 500px;
    overflow: auto; }
  #detailPage .detail-map-wrap {
    position: relative; }
    #detailPage .detail-map-wrap .alert-danger {
      position: absolute;
      z-index: 100;
      width: 100%;
      text-align: center;
      color: #a94442;
      background-color: #f2dede;
      border-color: #ebccd1; }
  #detailPage .detail_map {
    width: 100%;
    height: 365px; }
    #detailPage .detail_map .leaflet-top.leaflet-right .leaflet-control {
      margin-top: 40px; }
  #detailPage .relationship {
    position: relative;
    clear: both;
    padding-bottom: 10px; }
  #detailPage .highlight_missing {
    color: #cd1717; }

#detailSecondaryColumn .tag_header {
  float: left;
  margin-right: 20px !important;
  margin-bottom: 0 !important; }

#detailSecondaryColumn .tag_icon {
  margin: 20px 0 10px;
  float: left;
  margin-bottom: -5px; }

#detailSecondaryColumnWrap {
  margin-top: 5px;
  z-index: 600; }

.util_list {
  overflow: hidden; }
  .util_list > li {
    float: left;
    margin-right: 20px; }

@media (max-width: 768px) {
  #detailPage .detail-content-wrap > .col-lg-8, #detailPage .detail-content-wrap > .col-lg-4 {
    width: 100%; } }

.details_nav {
  margin-top: 5px; }

.details_tools {
  border: none;
  float: right;
  margin-right: 40px; }

#detailSimilarDocs {
  width: 100%;
  overflow: hidden;
  overflow-x: scroll; }
  #detailSimilarDocs .list article {
    margin-top: 80px;
    min-width: 265px;
    max-width: 325px; }
  #detailSimilarDocs .flyout_arrow {
    left: 35px; }
  #detailSimilarDocs .flyout {
    left: -35px; }

.rotate {
  transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  /* Mozilla */
  -webkit-transform: rotateX(180deg);
  /* Safari and Chrome */
  -ms-transform: rotateX(180deg);
  /* IE 9+ */
  -o-transform: rotateX(180deg);
  /* Opera */ }

.grid_item {
  min-width: 125px !important;
  max-width: 150px !important;
  margin-bottom: 20px;
  padding: 0 !important;
  background-color: #ffffff;
  box-sizing: border-box;
  position: relative;
  margin-right: 10px;
  margin-left: 10px; }
  .grid_item .img {
    margin: 0 auto;
    height: 150px;
    width: 150px; }
    .grid_item .img img {
      height: 150px;
      width: 150px; }
  .grid_item vs-grid-item {
    display: inline-block; }

.grid_item_preview {
  width: 100% !important;
  margin-bottom: auto !important;
  min-width: 250px;
  padding: 0 !important; }
  .grid_item_preview .detail_wrap {
    padding: 15px 25px 10px !important; }

.list .popover-content {
  padding: 0; }

.grid_highlight {
  -moz-box-shadow: 0 0 5px 5px #DD932E;
  -webkit-box-shadow: 0 0 5px 5px #DD932E;
  box-shadow: 0 0 5px 5px #DD932E; }

#header {
  font-size: 0.875rem;
  position: fixed;
  z-index: 1005;
  min-height: 64px;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
  -webkit-box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.11);
  -moz-box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.11);
  box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.11);
  min-width: 320px;
  /*	.hover_flyout {
		&:hover .flyout {
			display: block !important;
			@extend .animate_fadein;
		}
	}*/ }
  #header .inner {
    max-width: 100%; }
    #header .inner > span {
      float: left; }
    #header .inner .brand-logo {
      line-height: 64px; }
      #header .inner .brand-logo img {
        height: 36px;
        margin-top: -5px; }
    #header .inner .title {
      font-size: 18px;
      padding-left: 5px;
      line-height: 64px; }
    #header .inner .parent-logo {
      padding-left: 10px;
      line-height: 64px; }
      #header .inner .parent-logo a {
        border-left: solid 1px lightgray;
        padding-left: 10px;
        line-height: 30px;
        display: inline-block; }
      #header .inner .parent-logo img {
        height: 20px; }
    #header .inner h1 {
      float: left; }
      #header .inner h1 .logo {
        display: block;
        height: 30px;
        width: 110px; }
    #header .inner > ul {
      float: right;
      padding-top: 24px; }
      #header .inner > ul > li {
        display: inline-block;
        margin-left: 15px; }
        #header .inner > ul > li > a {
          color: #333c4e; }
          #header .inner > ul > li > a span[class*="icon-"], #header .inner > ul > li > a.icon-header_account:before {
            font-size: 11px;
            margin-right: 7px;
            position: relative; }
        #header .inner > ul > li .queue_count {
          background-color: #a2a8b0;
          font-size: 0.625rem;
          min-width: 20px;
          text-align: center; }
        #header .inner > ul > li:last-child a span[class*="icon-"] {
          font-size: 13px; }
  #header .flyout {
    left: -20px; }
    #header .flyout .task {
      overflow: hidden;
      text-overflow: ellipsis; }
  #header .queue_flyout, #header .user_flyout {
    max-width: 220px; }
  #header .queue_flyout .flyout_arrow {
    left: 50px; }
  #header .user_flyout .flyout_arrow {
    left: 30px; }

#headerSearchForm {
  min-height: 40px;
  top: 12px;
  margin-left: 40px; }
  #headerSearchForm input {
    -webkit-appearance: none;
    font-size: 0.875rem; }
    #headerSearchForm input[type="text"] {
      position: relative;
      border: 1px solid #d7dcdf; }
  #headerSearchForm button {
    border-radius: 0 5px 5px 0;
    position: absolute;
    top: 0;
    padding: 6px 15px; }
  #headerSearchForm button.query-expansion {
    border: none;
    border-radius: 0;
    position: absolute;
    top: 6px;
    padding: 6px 15px;
    right: -90px;
    background: transparent; }
    #headerSearchForm button.query-expansion span.fa {
      opacity: 0.6; }
  #headerSearchForm fieldset:hover .icon-x, #headerSearchForm fieldset:hover .icon-heart_filled {
    display: block; }
  #headerSearchForm .search_fieldset input {
    border-right: none; }
  #headerSearchForm .search_fieldset input.query_field_expansion {
    padding-left: 15px;
    padding-right: 15px; }
  #headerSearchForm .location_fieldset input {
    border-radius: 0; }
  #headerSearchForm .location_fieldset input.location_field_expansion {
    padding-left: 107px; }
  #headerSearchForm label {
    left: 0;
    top: 0; }
    #headerSearchForm label:before {
      top: 12px;
      width: 36px; }
  #headerSearchForm .icon-x, #headerSearchForm .icon-heart_filled {
    display: none;
    outline: none;
    position: absolute;
    z-index: 5;
    cursor: pointer;
    color: #d3d7d8;
    right: 10px;
    top: 13px;
    font-size: 0.75rem; }
  #headerSearchForm .icon-heart_filled {
    right: 30px; }
  #headerSearchForm .location_wrap .input_field {
    padding-left: 120px; }
    #headerSearchForm .location_wrap .input_field + .suggest-container + label:before {
      left: 90px; }
    #headerSearchForm .location_wrap .input_field:focus + .suggest-container + label + a + a {
      color: #000000; }
  #headerSearchForm .select_wrap {
    position: absolute;
    left: 5px;
    top: 5px;
    z-index: 2; }
    #headerSearchForm .select_wrap .select2-container .select2-choice {
      font-size: 0.75rem;
      padding: 5px 10px;
      height: 30px;
      width: 90px; }
      #headerSearchForm .select_wrap .select2-container .select2-choice:before {
        right: 10px;
        font-size: 6px; }
      #headerSearchForm .select_wrap .select2-container .select2-choice > .select2-chosen {
        overflow: visible; }
    #headerSearchForm .select_wrap select {
      height: 28px;
      width: 90px;
      padding-left: 2px;
      padding-right: 2px; }
  #headerSearchForm .enhanced-label {
    font-size: 0.75rem;
    font-family: "proxima_novasemibold";
    position: absolute;
    top: 11px;
    left: 30px; }
  #headerSearchForm #expandedSelected {
    visibility: hidden;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none; }
  #headerSearchForm #expandedSelected + label.enable-equery-expansion-label {
    left: 2px;
    top: 12px;
    background: url(./assets/img/toggle-off.svg) no-repeat;
    background-size: 100%;
    height: 18px;
    width: 25px;
    display: block;
    padding: 0 0 0 0px;
    z-index: 1000; }
  #headerSearchForm #expandedSelected:checked + label.enable-equery-expansion-label {
    left: 2px;
    top: 12px;
    background: url(./assets/img/toggle-on.svg) no-repeat;
    background-size: 100%;
    height: 18px;
    width: 25px;
    display: block;
    padding: 0 0 0 0px;
    z-index: 1000; }
  #headerSearchForm .toggle_wrapper {
    padding: 0;
    position: relative;
    background: #DDD; }
  #headerSearchForm .expansion_fieldset {
    padding: 0;
    height: 40px;
    border: 1px solid #d7dcdf;
    border-right: none;
    overflow: hidden; }
  #headerSearchForm .spellcheck_wrapper {
    vertical-align: middle;
    white-space: nowrap; }
    #headerSearchForm .spellcheck_wrapper label {
      padding-right: 4px;
      height: auto;
      position: relative;
      font-size: 0.75rem;
      font-weight: normal;
      text-align: right; }
    #headerSearchForm .spellcheck_wrapper .spellcheck-icon-x {
      display: inline;
      position: initial;
      font-size: 0.6rem; }
  #headerSearchForm .default {
    height: 0px;
    padding: 4px;
    opacity: 0;
    overflow: hidden; }
  #headerSearchForm .rollup {
    padding: 4px;
    opacity: 1;
    height: 42px;
    overflow: hidden; }
  #headerSearchForm .radio-label::before {
    left: 0;
    border: 1px solid #e6e6e6;
    box-shadow: inset 1px 1px rgba(0, 0, 0, 0.03); }
  #headerSearchForm .radio-label::after {
    left: 3px;
    background: url("img/radio_on.svg") no-repeat center center; }

#footer {
  box-sizing: border-box;
  clear: both;
  font-size: 0.75rem;
  margin: 110px 20px 0;
  overflow: hidden;
  background-color: #ecf0f1;
  border-top: 1px solid #d7dcdf;
  padding: 8px 0;
  position: relative;
  z-index: 999; }
  #footer ul {
    float: right; }
    #footer ul li {
      display: inline-block;
      margin-left: 5px; }
      #footer ul li strong {
        color: #5c5e5e;
        font-family: "proxima_nova_rgbold";
        margin-right: 2px;
        letter-spacing: -0.04em; }

.full #footer {
  position: fixed;
  z-index: 2;
  right: 0;
  bottom: 0;
  width: 100%;
  padding-left: 30px; }
  .full #footer .inner {
    max-width: 100%; }

.modal-backdrop {
  position: fixed; }

.modal-content {
  position: relative;
  border-radius: 0;
  -webkit-box-shadow: 0 0px 10px rgba(0, 0, 0, 0.35);
  -moz-box-shadow: 0 0px 10px rgba(0, 0, 0, 0.35);
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.35); }

.modal-close {
  position: absolute;
  top: -15px;
  right: -15px;
  border: 1px solid #d7dcdf;
  border-radius: 15px;
  width: 30px;
  height: 30px;
  background-color: #ffffff;
  z-index: 1000; }
  .modal-close:before {
    position: relative;
    top: 3px;
    margin-left: 9px;
    font-size: 0.625rem;
    color: #737373; }

.modal-header {
  border-color: #d7dcdf;
  padding: 30px 40px; }
  .modal-header h3 {
    margin: 0;
    font-family: "proxima_novalight";
    font-size: 1.875rem; }
    .modal-header h3 .fa {
      font-size: 19px;
      position: relative;
      top: -1px; }

.modal-body, .modal-footer, .modal-task-footer {
  padding-left: 40px;
  padding-right: 40px; }

.modal-body {
  padding-top: 40px;
  padding-bottom: 0;
  background-color: #ecf0f1; }
  .modal-body .search_list_space {
    padding-top: 15px; }
  .modal-body form {
    background-color: #ffffff;
    padding: 15px 30px 25px; }
    .modal-body form[name=savedForm] {
      position: relative;
      background: none;
      padding: 0 0 20px;
      margin-bottom: 35px; }
      .modal-body form[name=savedForm] .form-control {
        height: 40px;
        padding: 13px 20px 12px 50px; }
        .modal-body form[name=savedForm] .form-control + label:before {
          top: 12px; }
      .modal-body form[name=savedForm]:before {
        position: absolute;
        content: '';
        left: -40px;
        right: -40px;
        height: 1px;
        bottom: 0;
        background-color: #d7dcdf; }
      .modal-body form[name=savedForm] a.icon-x {
        display: none;
        position: absolute;
        z-index: 5;
        cursor: pointer;
        color: #d3d7d8;
        right: 10px;
        top: 13px; }
  .modal-body fieldset {
    position: relative;
    margin-top: 15px;
    padding-bottom: 5px; }
    .modal-body fieldset label {
      top: 0;
      margin-bottom: 0; }
      .modal-body fieldset label.checkbox_label {
        margin-bottom: 5px; }
    .modal-body fieldset + a {
      margin-top: 13px; }
  .modal-body .form-control {
    width: 100%;
    padding: 16px 20px 16px 50px;
    height: 60px; }
  .modal-body .form-control-short {
    padding: 12px 20px;
    height: 40px; }
  .modal-body .modal-inner {
    background-color: #ffffff;
    padding: 25px 30px; }
    .modal-body .modal-inner p {
      margin-bottom: 5px;
      font-weight: bold; }

.saved-modal {
  padding-top: 10px; }

.modal-task-footer {
  padding: 0 0 0 0; }

.modal-footer, .modal-task-footer {
  background-color: #ecf0f1;
  border: 0;
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 40px;
  text-align: left; }
  .modal-footer .cta_row, .modal-task-footer .cta_row {
    background-color: #d7dcdf;
    padding: 20px 30px; }
  .modal-footer .btn + .link_secondary, .modal-task-footer .btn + .link_secondary {
    margin-left: 30px; }

.modal_padding_bottom {
  padding-bottom: 40px; }

.form-signin {
  padding-top: 30px !important; }
  .form-signin fieldset + a {
    margin-top: 13px; }

.form-save-search fieldset .checkbox_label:last-child {
  margin-bottom: 0; }

.form-save-search fieldset input {
  padding: 5px;
  margin-bottom: 8px;
  border: 1px solid #aaaaaa; }

.form-save-search fieldset .select2-choice {
  font-size: 16px;
  border-radius: 0;
  border: 1px solid #aaaaaa;
  padding: 5px !important;
  height: 35px !important; }

.form-save-search fieldset .subscription-notification {
  padding: 10px 0 5px 0;
  color: #737373; }

.form-save-search fieldset .subscriptionsDisabled {
  pointer-events: none;
  opacity: 0.3; }

.form-bulk-updater p {
  margin-top: 10px;
  margin-bottom: 10px; }

.form-bulk-updater fieldset {
  min-height: 42px;
  margin: 10px 0 5px; }

.form-bulk-updater .alert-danger {
  margin-bottom: 0;
  padding-bottom: 0; }

.inline_form {
  margin-top: 20px;
  margin-bottom: 30px; }
  .inline_form .select2-container {
    display: block; }
  .inline_form .form-control-short {
    font-size: 0.875rem; }
  .inline_form .pull-right .select2-container {
    float: right;
    width: 99.5% !important; }
    .inline_form .pull-right .select2-container .select2-choices .select2-search-field input {
      padding: 8px 15px;
      font-size: 0.875rem; }

.modal_log_body pre {
  max-height: 400px;
  overflow: auto; }

.edit_item_list {
  max-height: 250px;
  overflow: hidden;
  overflow-y: auto; }
  .edit_item_list td {
    padding: 10px 0; }
  .edit_item_list .action_col {
    text-align: right; }
  .edit_item_list .icon-x {
    font-size: 0.625rem;
    color: #424a53; }

.saved_primary_nav {
  font-size: 24px;
  overflow: hidden;
  margin-bottom: 30px; }
  .saved_primary_nav li {
    float: left;
    border-right: 1px solid #d7dcdf;
    margin: 0 0 0 30px;
    padding-right: 30px; }
    .saved_primary_nav li:first-child {
      margin-left: 0; }
    .saved_primary_nav li:last-child {
      border-right: 0; }
    .saved_primary_nav li.selected a {
      color: #424a53; }
  .saved_primary_nav a {
    color: #8e9194; }
    .saved_primary_nav a:hover {
      color: #424a53; }

.modal_iframe {
  border: 1px solid #cccccc;
  background-color: #ffffff;
  width: 100%;
  height: 950px;
  padding: 5px;
  font-family: "proxima_novalight"; }

.modal-body .form-export-results {
  padding-top: 30px;
  padding-bottom: 30px; }

.modal-body .form-control.form-control-short {
  height: 40px;
  padding-left: 20px; }

@media (min-width: 980px) {
  .modal-lg {
    width: 900px; }
  .modal-xlg {
    width: 95%;
    margin-bottom: 20px; } }

body {
  min-width: 320px; }
  body #header {
    background-color: #ffffff; }
  body .inner {
    position: relative;
    max-width: 1170px;
    margin: 0 auto; }
  body .main_container {
    clear: both;
    padding-top: 100px; }
  body .wrapper {
    clear: both;
    max-width: 1400px;
    margin: 0 auto; }
  body .page {
    padding-top: 35px; }
    body .page > .inner > header h1 {
      font-family: "proxima_novalight";
      font-size: 1.875rem;
      margin-bottom: 30px;
      letter-spacing: -0.05em; }
    body .page .content {
      clear: both;
      padding-top: 30px; }
  body .container-fluid {
    padding: 0 20px; }

.full .main_container {
  padding-bottom: 30px;
  overflow-x: hidden; }

.missing_data {
  color: #ffffff;
  font-size: 0.875rem;
  font-family: "proxima_nova_rgregular";
  display: block;
  text-align: left;
  padding: 9px 14px; }

.righty {
  text-align: right; }

.toast {
  opacity: 1 !important; }

.dragging_disabled .leaflet-container {
  cursor: pointer; }

.dragging_disabled .leaflet-control-container .leaflet-top > div {
  display: none; }
  .dragging_disabled .leaflet-control-container .leaflet-top > div.leaflet-map-toggle-section {
    display: block; }

.leaflet-top .leaflet-control {
  margin-top: 20px;
  margin-left: 20px; }

.leaflet-bottom {
  bottom: 10px; }

.leaflet-bar {
  border-radius: 0; }
  .leaflet-bar a {
    position: relative;
    border-radius: 0 !important;
    color: #333c4e; }
    .leaflet-bar a:hover {
      color: #333c4e; }
    .leaflet-bar a.selected:before {
      border: 2px solid #1985d5;
      content: '';
      position: absolute;
      width: 100%;
      height: 100%;
      left: 0; }

.leaflet-draw-tooltip {
  font-family: "proxima_novasemibold";
  font-size: 0.875rem; }
  .leaflet-draw-tooltip .leaflet-draw-tooltip-subtext {
    display: none; }

.leaflet-draw-tooltip > br {
  display: none; }

.leaflet-control-layers {
  border-radius: 0; }
  .leaflet-control-layers .leaflet-control-layers-toggle {
    color: #333c4e;
    font-size: 17px;
    background: none;
    line-height: 32px;
    text-align: center;
    height: 30px;
    padding-right: 20px;
    width: 60px; }
    .leaflet-control-layers .leaflet-control-layers-toggle:after {
      opacity: 0.5;
      position: absolute;
      font-size: 7px;
      top: 10px;
      right: 10px;
      content: "\E601"; }

.leaflet-control-layers-expanded {
  padding: 0; }

.leaflet-control-layers-list {
  bottom: 0;
  pointer-events: auto; }
  .leaflet-control-layers-list .leaflet-control-layers-overlays label, .leaflet-control-layers-list .leaflet-control-layers-base label {
    border-bottom: 1px solid #ebeeef;
    position: relative;
    padding: 10px 35px;
    margin-bottom: 0;
    cursor: pointer; }
    .leaflet-control-layers-list .leaflet-control-layers-overlays label .leaflet-control-layers-selector, .leaflet-control-layers-list .leaflet-control-layers-base label .leaflet-control-layers-selector {
      position: absolute;
      top: 9px;
      left: 20px; }
    .leaflet-control-layers-list .leaflet-control-layers-overlays label:hover, .leaflet-control-layers-list .leaflet-control-layers-base label:hover {
      background-color: #ebeeef; }
    .leaflet-control-layers-list .leaflet-control-layers-overlays label span, .leaflet-control-layers-list .leaflet-control-layers-base label span {
      margin-left: 5px;
      max-width: 350px;
      display: block; }
    .leaflet-control-layers-list .leaflet-control-layers-overlays label button, .leaflet-control-layers-list .leaflet-control-layers-base label button {
      position: absolute;
      top: 9px;
      right: 20px;
      z-index: 2;
      padding: 0;
      color: #939aa3;
      font-weight: bold;
      background-color: transparent; }
    .leaflet-control-layers-list .leaflet-control-layers-overlays label:last-child, .leaflet-control-layers-list .leaflet-control-layers-base label:last-child {
      border-bottom: 0; }

.leaflet-touch .leaflet-draw-actions {
  left: 32px; }

.leaflet-draw-section .drawing-option-trigger {
  width: 26px; }

.leaflet-draw-section .drawing-option-cont {
  position: absolute;
  top: 0;
  left: 40px; }
  .leaflet-draw-section .drawing-option-cont:after, .leaflet-draw-section .drawing-option-cont:before {
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    border-style: solid; }
  .leaflet-draw-section .drawing-option-cont:before {
    z-index: 2;
    left: -6px;
    top: 6px;
    border-width: 6px 7px 6px 0;
    border-color: transparent #ffffff transparent transparent; }
  .leaflet-draw-section .drawing-option-cont:after {
    z-index: 1;
    left: -7px;
    top: 5px;
    border-width: 7px 7px 7px 0;
    border-color: transparent #ecf0f1 transparent transparent; }

.leaflet-draw-section ul {
  width: 105px; }
  .leaflet-draw-section ul li {
    float: left;
    width: 26px;
    height: 26px;
    position: relative;
    z-index: 3; }
    .leaflet-draw-section ul li a {
      border-right: 1px solid #ecf0f1; }
    .leaflet-draw-section ul li:last-child a {
      border-right: 0; }

.leaflet-control-map-size-toggle {
  background-color: #ffffff;
  width: 60px;
  height: 30px; }
  .leaflet-control-map-size-toggle a.icon-arrow:before, .leaflet-control-map-size-toggle .select2-container a.select2-choice:before, .select2-container .leaflet-control-map-size-toggle a.select2-choice:before {
    right: 10px; }

.leaflet-bottom .leaflet-control-layers-toggle, .leaflet-bottom .leaflet-control-map-size-toggle.leaflet-control {
  border: 1px solid #d7d5cf;
  height: 32px;
  width: 62px; }

.leaflet-bottom .leaflet-control-layers-toggle {
  border-right: 0; }

.leaflet-bottom .leaflet-control-map-size-toggle.leaflet-control {
  border-left: 0; }

.leaflet-bottom.leaflet-bottom-search {
  right: 72px; }
  .leaflet-bottom.leaflet-bottom-search .leaflet-control-layers {
    box-shadow: none; }

.leaflet-bottom .leaflet-control-map-size-toggle.leaflet-control {
  box-shadow: none;
  margin-right: 20px;
  border-left: 1px solid #d7dcdf; }
  .leaflet-bottom .leaflet-control-map-size-toggle.leaflet-control a.flyout_trigger {
    height: 30px;
    width: 60px;
    border-bottom: 0; }
    .leaflet-bottom .leaflet-control-map-size-toggle.leaflet-control a.flyout_trigger .icon-search_map {
      position: relative;
      top: 3px; }

.leaflet-control-map-size-toggle .hover_flyout .flyout {
  bottom: 30px;
  right: 0; }
  .leaflet-control-map-size-toggle .hover_flyout .flyout .arrow {
    left: 70px; }

.leaflet-control-map-size-toggle .hover_flyout .flyout_inner ul {
  width: 110px; }
  .leaflet-control-map-size-toggle .hover_flyout .flyout_inner ul li:last-child:before, .leaflet-control-map-size-toggle .hover_flyout .flyout_inner ul li:last-child:after {
    display: none; }
  .leaflet-control-map-size-toggle .hover_flyout .flyout_inner ul a {
    height: auto; }

.map-size-drop-down .icon-arrow, .map-size-drop-down .select2-container .select2-choice, .select2-container .map-size-drop-down .select2-choice {
  outline: none;
  cursor: pointer; }
  .map-size-drop-down .icon-arrow:before, .map-size-drop-down .select2-container .select2-choice:before, .select2-container .map-size-drop-down .select2-choice:before {
    top: 9px;
    right: 10px; }

.map-size-drop-down .icon-search_map {
  position: relative;
  top: 6px;
  left: 13px; }

#noMapMapsizeDropDown .icon-arrow, #noMapMapsizeDropDown .select2-container .select2-choice, .select2-container #noMapMapsizeDropDown .select2-choice {
  display: block;
  background-color: #ffffff;
  border: 1px solid #d7dcdf;
  color: #404859;
  padding: 8px 30px 7px 10px; }
  #noMapMapsizeDropDown .icon-arrow:before, #noMapMapsizeDropDown .select2-container .select2-choice:before, .select2-container #noMapMapsizeDropDown .select2-choice:before {
    right: 10px; }

#noMapMapsizeDropDown .hover_flyout .flyout .flyout_inner {
  width: 120px; }

.leaflet-control-container .heatmap-opacity-control {
  margin: 0px;
  width: 50px; }
  .leaflet-control-container .heatmap-opacity-control .bar {
    height: 4px;
    margin-top: 2px;
    background-color: #c1c2c4; }
  .leaflet-control-container .heatmap-opacity-control .handle {
    background-color: transparent;
    border-color: transparent;
    width: 0;
    height: 0x; }
    .leaflet-control-container .heatmap-opacity-control .handle:after {
      width: 12px;
      height: 12px;
      left: 0px;
      top: 5px;
      background-color: #2e3438; }

.home {
  min-width: 320px;
  margin-top: -35px; }
  .home > .col-md-12 .inner {
    max-width: 1170px;
    text-align: left; }
  .home section > header h1 {
    font-family: "proxima_novalight";
    font-size: 1.875rem;
    margin-bottom: 30px; }
  .home .cards .list article {
    padding: 0 15px; }
  .home .list > .row {
    margin-left: -15px;
    margin-right: -15px; }
  .home .select_wrap .select2-container .select2-choice {
    padding: 9px 5px 9px 15px;
    width: 105px; }
    .home .select_wrap .select2-container .select2-choice:before {
      right: 13px; }

#searchContainer {
  position: relative;
  height: 512px;
  margin-bottom: 50px; }
  #searchContainer #map {
    position: absolute;
    z-index: 1;
    background-color: #ffffff;
    width: 100%;
    height: 100%; }
  #searchContainer > .inner {
    position: relative;
    z-index: 2;
    overflow: hidden;
    max-width: 1170px;
    width: calc(100% - 20px);
    top: 100px;
    -moz-border-radius: 3px 3px 3px 3px;
    -webkit-border-radius: 3px 3px 3px 3px;
    border-radius: 3px 3px 3px 3px;
    -webkit-box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.11);
    -moz-box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.11);
    box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.11); }
    #searchContainer > .inner fieldset.focused label:before, #searchContainer > .inner.short_format .location_fieldset.focused label:before {
      color: #333c4e; }
    #searchContainer > .inner .location_fieldset {
      border: 2px solid transparent; }
      #searchContainer > .inner .location_fieldset label:before {
        position: relative;
        color: #d7dcdf;
        font-size: 18px !important;
        top: 20px;
        width: 30px; }
    #searchContainer > .inner .location_wrap {
      padding-left: 130px; }
    #searchContainer > .inner.short_format .location_fieldset.focused {
      border: 2px dashed #4695ce; }
      #searchContainer > .inner.short_format .location_fieldset.focused .select2-container .select2-choice {
        border-color: #82abc9; }
    #searchContainer > .inner .search_form input[name="query"], #searchContainer > .inner .search_form input[name="location"] {
      font-size: 1.125rem;
      height: 60px; }
    #searchContainer > .inner .search_form input[name="query"] {
      padding: 0 50px; }
    #searchContainer > .inner .search_form input[name="location"] {
      padding: 0 140px 0 36px; }
    #searchContainer > .inner .search_form input.query_field_expansion {
      padding-left: 25px;
      padding-right: 115px; }
    #searchContainer > .inner .search_form input.location_field_expansion {
      padding-left: 25px; }
    #searchContainer > .inner .search_form button {
      position: absolute;
      right: 0;
      top: 0;
      z-index: 3;
      width: 68px;
      height: 60px;
      padding-left: 0;
      padding-right: 0;
      border-radius: 0 5px 5px 0; }
  #searchContainer #homeExpandedSelected {
    -webkit-appearance: none;
    display: none; }
  #searchContainer #homeExpandedSelected + label {
    position: absolute;
    right: 80px;
    top: 24px;
    background: url(./assets/img/toggle-off.svg) no-repeat;
    background-size: 100%;
    height: 22px;
    width: 30px;
    display: inline-block;
    padding: 0 0 0 0px;
    z-index: 1000; }
  #searchContainer #homeExpandedSelected:checked + label {
    position: absolute;
    right: 80px;
    top: 24px;
    background: url(./assets/img/toggle-on.svg) no-repeat;
    background-size: 100%;
    height: 22px;
    width: 30px;
    display: inline-block;
    padding: 0 0 0 0px;
    z-index: 1000; }
  #searchContainer label.enhanced-label {
    position: absolute;
    display: block;
    top: 24px;
    right: 10px;
    z-index: 6000;
    font-family: "proxima_novasemibold";
    font-size: 0.875rem; }
  #searchContainer .toggle_wrapper {
    position: absolute;
    height: auto;
    background: transparent;
    right: 0;
    width: 110px;
    height: 60px;
    z-index: 4999; }
  #searchContainer .query_expansion_wrapper {
    vertical-align: middle;
    white-space: nowrap;
    margin-top: 6px; }
    #searchContainer .query_expansion_wrapper .hidden {
      display: none; }
    #searchContainer .query_expansion_wrapper .qes_inner {
      float: none;
      padding-left: 0; }
    #searchContainer .query_expansion_wrapper .qes_inner div {
      float: none;
      display: inline-flex;
      padding-left: 0; }
    #searchContainer .query_expansion_wrapper label {
      padding-right: 4px;
      height: auto;
      position: initial;
      font-family: "proxima_novasemibold";
      font-size: 0.875rem;
      font-weight: normal;
      text-align: right;
      color: #ffffff; }
    #searchContainer .query_expansion_wrapper label.pull-right {
      float: right; }
    #searchContainer .query_expansion_wrapper label.pull-left {
      float: left; }
  #searchContainer .default {
    height: 0px;
    opacity: 0;
    overflow: hidden;
    -moz-transition: 0.25s;
    -ms-transition: 0.25s;
    -o-transition: 0.25s;
    -webkit-transition: 0.25s;
    transition: 0.25s; }
  #searchContainer .rollup {
    height: 27px;
    opacity: 1;
    overflow: hidden;
    -moz-transition: 0.25s;
    -ms-transition: 0.25s;
    -o-transition: 0.25s;
    -webkit-transition: 0.25s;
    transition: 0.25s; }
  #searchContainer .transparent_bg {
    background-color: transparent; }

.search_wrap {
  background: #333c4e;
  background: rgba(51, 60, 78, 0.95);
  min-height: 120px;
  padding: 30px 40px 25px;
  -moz-border-radius: 5px 5px 0 0;
  -webkit-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0; }
  .search_wrap .col-md-12 {
    padding-right: 68px;
    border-sizing: border-box; }
    .search_wrap .col-md-12 .col-md-6 {
      height: 60px; }
    .search_wrap .col-md-12 .search_fieldset {
      -moz-border-radius: 5px 0 0 5px;
      -webkit-border-radius: 5px 0 0 5px;
      border-radius: 5px 0 0 5px; }
  .search_wrap form {
    height: 60px;
    position: relative;
    background: #ffffff;
    -moz-border-radius: 5px 5px 5px 5px;
    -webkit-border-radius: 5px 5px 5px 5px;
    border-radius: 5px 5px 5px 5px; }
    .search_wrap form .select_wrap {
      width: 100px;
      margin-top: 10px;
      margin-left: 20px;
      position: absolute;
      left: 0; }
    .search_wrap form .location_wrap {
      padding-left: 130px;
      line-height: 60px; }
      .search_wrap form .location_wrap a {
        display: none;
        position: absolute;
        z-index: 5;
        right: 5px;
        color: #9097a0; }
        .search_wrap form .location_wrap a + a {
          right: 30px; }
      .search_wrap form .location_wrap:hover a {
        display: block; }
      .search_wrap form .location_wrap a:hover {
        color: #333c4e; }
      .search_wrap form .location_wrap .suggest-container {
        top: 60px;
        width: 75%;
        max-height: 15rem;
        overflow-y: auto; }

#searchHistory {
  background: #ecf0f1;
  background: rgba(236, 240, 241, 0.88);
  min-height: 50px;
  overflow: hidden;
  padding: 23px 40px 40px;
  -moz-border-radius: 0 0 3px 3px;
  -webkit-border-radius: 0 0 3px 3px;
  border-radius: 0 0 3px 3px; }
  #searchHistory .action_row {
    padding: 20px auto 0;
    text-align: center; }
  #searchHistory article {
    margin-top: 7px;
    overflow: hidden; }
    #searchHistory article ul li {
      width: 46%;
      float: left;
      margin-top: 15px;
      padding-right: 4%;
      position: relative; }
      #searchHistory article ul li em {
        font-family: "proxima_novasemibold";
        font-style: normal; }
      #searchHistory article ul li a {
        color: #333c4e;
        line-height: 1.3em; }
      #searchHistory article ul li [class*="icon-"]:before {
        color: #c1c2c4;
        font-size: 12px;
        padding-right: 10px; }
      #searchHistory article ul li [class="icon-heart_filled"]:before {
        color: #1985d5; }
      #searchHistory article ul li .favorite_link {
        display: block;
        position: absolute;
        top: 0; }
        #searchHistory article ul li .favorite_link + a {
          margin-left: 25px; }

.collections ul li {
  background: #ffffff;
  border-bottom: 1px solid #d7dcdf; }
  .collections ul li:last-child {
    border-bottom: 2px solid #d7dcdf; }
  .collections ul li a {
    display: block;
    color: #2e3438;
    font-family: "proxima_novasemibold";
    font-size: 1.125rem;
    line-height: 1em;
    padding: 20px 30px 15px 60px;
    position: relative; }
    .collections ul li a:before {
      position: absolute;
      top: 20px;
      left: 20px;
      font-size: 28px; }
    .collections ul li a span {
      display: block;
      color: #878e90;
      font-size: 0.8125rem; }
    .collections ul li a:hover {
      color: #47a3e8; }

@media (max-width: 1000px) {
  .home .cards.col-md-9 .list article {
    width: 50%; }
  .home .cards.col-md-12 .list article {
    width: 33.33%; } }

@media (min-width: 1001px) {
  .home .cards.col-md-9 .list article {
    width: 33.33%; }
  .home .cards.col-md-12 .list article {
    width: 25%; } }

.quick-links .panel-primary .panel-heading {
  text-transform: uppercase;
  padding: 0;
  background-color: transparent;
  border: 0;
  color: #262e3f;
  border-bottom: 1px solid #d7dcdf; }

.quick-links .panel-heading a {
  display: block;
  padding: 20px;
  text-transform: uppercase; }
  .quick-links .panel-heading a .panel-title {
    font-size: .8125rem; }

.quick-links .panel-body {
  padding-left: 30px; }

.quick-links .panel-group {
  margin-bottom: 0; }

.quick-links .panel {
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid #44556a;
  margin-bottom: 0; }

.quick-links .fa {
  float: right; }

#searchPage {
  padding-bottom: 30px; }
  #searchPage #itemDetailContent {
    z-index: 1; }
  #searchPage #searchResultMapContainer .search-map-container-inner {
    height: 100%; }
  #searchPage #searchResultMapContainer .alert-warning {
    background-color: #ecf0f1;
    position: absolute;
    z-index: 50;
    height: 62px;
    width: 100%; }
  #searchPage .move-map-option {
    background-color: #ffffff;
    padding: 10px 15px 5px; }
    #searchPage .move-map-option input {
      margin-right: 10px; }
    #searchPage .move-map-option label {
      font-family: "proxima_nova_rgregular"; }
  #searchPage .tab_center {
    position: fixed;
    z-index: 1000;
    left: 50%;
    margin-left: -100px;
    margin-top: 15px; }
  #searchPage .map_fixed {
    position: fixed;
    z-index: 5;
    left: 0;
    height: calc(100% - 134px); }
    #searchPage .map_fixed.filter_opened {
      left: 220px; }
    #searchPage .map_fixed .search-map {
      position: relative;
      width: 100%;
      height: 100%; }
    #searchPage .map_fixed .tab {
      position: absolute;
      margin-top: 20px;
      z-index: 5;
      text-align: center;
      width: 100%; }
      #searchPage .map_fixed .tab ul {
        display: inline-block; }
  #searchPage .result_container .container-fluid {
    padding: 0; }
  #searchPage .result_container .warning {
    margin: -15px -20px 15px; }
  #searchPage .result_container header {
    right: 0;
    border-bottom: 1px solid #d7dcdf;
    padding: 15px 20px;
    background-color: #ecf0f1;
    height: 70px; }
    #searchPage .result_container header #results-header {
      position: absolute; }
      #searchPage .result_container header #results-header .result_actions .flyout_trigger.icon-arrow, #searchPage .result_container header #results-header .result_actions .select2-container .flyout_trigger.select2-choice, .select2-container #searchPage .result_container header #results-header .result_actions .flyout_trigger.select2-choice {
        cursor: text; }
        #searchPage .result_container header #results-header .result_actions .flyout_trigger.icon-arrow:before, #searchPage .result_container header #results-header .result_actions .select2-container .flyout_trigger.select2-choice:before, .select2-container #searchPage .result_container header #results-header .result_actions .flyout_trigger.select2-choice:before {
          display: none; }
      #searchPage .result_container header #results-header .result_actions.hover_flyout .flyout_trigger.icon-arrow, #searchPage .result_container header #results-header .result_actions.hover_flyout .select2-container .flyout_trigger.select2-choice, .select2-container #searchPage .result_container header #results-header .result_actions.hover_flyout .flyout_trigger.select2-choice {
        cursor: pointer; }
        #searchPage .result_container header #results-header .result_actions.hover_flyout .flyout_trigger.icon-arrow:before, #searchPage .result_container header #results-header .result_actions.hover_flyout .select2-container .flyout_trigger.select2-choice:before, .select2-container #searchPage .result_container header #results-header .result_actions.hover_flyout .flyout_trigger.select2-choice:before {
          display: block; }
      #searchPage .result_container header #results-header .list-sub-item {
        height: 40px; }
        #searchPage .result_container header #results-header .list-sub-item span {
          float: right;
          margin-top: 4px;
          margin-right: -5px; }
        #searchPage .result_container header #results-header .list-sub-item .flyout_inner {
          position: relative;
          top: -41px;
          left: 100% !important;
          display: none; }
        #searchPage .result_container header #results-header .list-sub-item:hover div {
          display: block; }
      #searchPage .result_container header #results-header .feed-list-item .flyout_inner {
        width: 75px; }
    #searchPage .result_container header .total {
      position: relative;
      top: 7px;
      font-family: "proxima_novasemibold";
      font-size: 1.125rem;
      color: #333c4e; }
    #searchPage .result_container header .result_range {
      color: #9097a0;
      font-family: "proxima_novasemibold";
      font-size: 0.8125rem; }
    #searchPage .result_container header > ul > li {
      float: left;
      margin-left: 10px; }
  #searchPage .result_container #result-header {
    min-height: 36px; }
  #searchPage .result_container .sticky + .container-fluid {
    padding-top: 90px; }
  #searchPage .result_container .list {
    padding-left: 20px;
    padding-right: 20px; }
  #searchPage .result_container.open_filter .container-fluid {
    padding-left: 220px; }
    #searchPage .result_container.open_filter .container-fluid .list.single article {
      width: 100%; }

@element '.result_container.close_filter' and (max-width:740px) {
  #searchPage .result_container.close_filter .ssearch-selector .ssearch-selector__text {
    display: inline; }
  #searchPage .result_container.close_filter .ssearch-selector .btn[class*=icon-]:before {
    margin-right: 10px; } }

@element '.result_container.open_filter' and (max-width:740px) {
  #searchPage .ssearch-selector__text {
    display: none; }
  #searchPage .ssearch-selector .btn[class*=icon-]:before {
    margin-right: auto; } }
  #searchPage #working {
    margin-top: -13px;
    margin-left: 150px;
    position: relative; }
  #searchPage .no_result {
    padding: 0 40px; }
    #searchPage .no_result ul {
      padding: 20px 40px; }
      #searchPage .no_result ul li {
        list-style: disc; }
  #searchPage .list.table_list > .row, #searchPage .list.list_list > .row {
    margin-left: 0;
    margin-right: 0; }
  #searchPage .list.table_list div[data-size="no"], #searchPage .list.list_list div[data-size="no"] {
    padding-top: 20px; }
  #searchPage .list.table_list .img .tag, #searchPage .list.list_list .img .tag {
    background-color: #333c4e;
    left: 0px;
    top: 0px;
    width: auto;
    max-width: 100%; }
    #searchPage .list.table_list .img .tag a, #searchPage .list.list_list .img .tag a {
      padding: 1px 3px;
      color: #ffffff;
      font-size: 0.75rem; }
  #searchPage .option_list {
    position: relative; }
    #searchPage .option_list .sort_label {
      display: inline-block;
      position: relative;
      width: 100px;
      overflow: hidden;
      line-height: 1em;
      top: 3px;
      text-align: left; }
      #searchPage .option_list .sort_label:after {
        content: '';
        width: 100%;
        height: 100%;
        position: absolute;
        right: 0;
        z-index: 1;
        background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwIi8+CiAgICA8c3RvcCBvZmZzZXQ9Ijg3JSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
        background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 87%, white 100%);
        background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(87%, rgba(255, 255, 255, 0)), color-stop(100%, white));
        background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 87%, white 100%);
        background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 87%, white 100%);
        background: -ms-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 87%, white 100%);
        background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 87%, white 100%); }
    #searchPage .option_list .flyout .arrow:after {
      border-color: transparent transparent #ebeeef transparent; }
    #searchPage .option_list .flyout .tab_tert {
      padding: 20px;
      background-color: #ebeeef; }
    #searchPage .option_list .flyout .flyout_inner {
      width: 250px; }
      #searchPage .option_list .flyout .flyout_inner .sort_list {
        width: 100%;
        max-height: 200px;
        overflow: hidden;
        overflow-y: scroll; }
      #searchPage .option_list .flyout .flyout_inner li {
        position: relative; }
        #searchPage .option_list .flyout .flyout_inner li .fa {
          position: absolute;
          right: 23px;
          top: 13px;
          display: none; }
        #searchPage .option_list .flyout .flyout_inner li.selected {
          background-color: #fbfcfc; }
          #searchPage .option_list .flyout .flyout_inner li.selected .fa {
            display: block; }
  #searchPage .map_content {
    padding-top: 20px; }
    #searchPage .map_content.extra_height .result_container header {
      height: 120px; }
    #searchPage .map_content.extra_height .sticky + .container-fluid {
      padding-top: 140px; }
    #searchPage .map_content.extra_height #taxoContainer > div {
      padding-top: 184px; }
    #searchPage .map_content.map_view_content .option_list {
      position: absolute;
      right: 20px;
      z-index: 5; }
      #searchPage .map_content.map_view_content .option_list .sort_label {
        width: auto !important; }
      #searchPage .map_content.map_view_content .option_list > li > a.btn-action {
        width: 40px;
        padding-left: 14px; }
        #searchPage .map_content.map_view_content .option_list > li > a.btn-action span {
          position: absolute;
          text-indent: -999em; }
    #searchPage .map_content.map_view_content .container-fluid {
      overflow: hidden; }
    #searchPage .map_content.col-lg-4 .sticky.col-lg-4 .option_list .sort_label, #searchPage .map_content.col-md-4 .sticky.col-lg-4 .option_list .sort_label {
      width: auto; }
    #searchPage .map_content.col-lg-4 .sticky.col-lg-4 .option_list > li > a, #searchPage .map_content.col-md-4 .sticky.col-lg-4 .option_list > li > a {
      padding: 12px 0;
      width: 40px;
      height: 40px; }
      #searchPage .map_content.col-lg-4 .sticky.col-lg-4 .option_list > li > a span, #searchPage .map_content.col-md-4 .sticky.col-lg-4 .option_list > li > a span {
        position: absolute;
        text-indent: -9999em; }
      #searchPage .map_content.col-lg-4 .sticky.col-lg-4 .option_list > li > a:before, #searchPage .map_content.col-md-4 .sticky.col-lg-4 .option_list > li > a:before {
        width: 40px;
        text-align: center;
        margin-right: 0;
        display: block; }
    #searchPage .map_content.col-lg-4 .container-fluid .list.card_list article, #searchPage .map_content.col-md-4 .container-fluid .list.card_list article {
      width: 100%; }
    #searchPage .map_content.col-lg-12 .list article {
      width: 20%; }

.warning {
  background-color: #f0ad4e;
  padding: 15px 20px 15px 50px;
  color: #ffffff;
  font-size: 0.875rem; }
  .warning .icon-error {
    position: absolute;
    left: 20px; }
  .warning a {
    color: #ffffff;
    text-decoration: underline; }
  .warning .icon-x {
    font-size: 9px;
    right: 0;
    color: #ffffff;
    opacity: 1;
    text-decoration: none; }

#locationPathWrap, #locationPathNotHighlight {
  display: inline; }
  #locationPathWrap a, #locationPathNotHighlight a {
    display: inline;
    height: 20px;
    line-height: 20px; }

.task-list {
  padding-top: 20px;
  line-height: 20px; }
  .task-list th {
    font-size: 24px;
    line-height: inherit !important; }
  .task-list button {
    background: #428bca;
    border-color: #357ebd;
    color: #ffffff; }
  .task-list .glyphicon-green {
    display: inline-block;
    font-size: 1.5em;
    color: #008000; }
    .task-list .glyphicon-green.task-status {
      font-size: 1.3em !important;
      width: 40px; }
  .task-list .glyphicon-orange {
    display: inline-block;
    font-size: 1.5em;
    color: #ffA500; }
    .task-list .glyphicon-orange.task-status {
      font-size: 1.3em !important;
      width: 40px; }
  .task-list .glyphicon-red {
    display: inline-block;
    font-size: 1.5em;
    color: #aa0000; }
    .task-list .glyphicon-red.task-status {
      font-size: 1.3em !important;
      width: 40px; }
  .task-list .subcat a {
    display: flex;
    align-items: center;
    gap: 1rem; }
  .task-list .category-name {
    padding: 10px;
    font-size: 18px; }
  .task-list .task-display-name {
    display: inline-block;
    width: 200px;
    font-size: 15px; }
  .task-list .task-description {
    font-size: 15px;
    max-width: 70%;
    margin-left: 1rem; }
  .task-list .error-details {
    font-size: 15px; }

.mr15 {
  margin-right: 15px; }

.ml15 {
  margin-left: 15px; }

.mt10 {
  margin-top: 10px; }

.taskSteps {
  position: absolute;
  left: 25%;
  padding: 5px; }
  .taskSteps li {
    content: '';
    width: 1.5em;
    height: 1.5em;
    text-align: center;
    line-height: 1.5em;
    border: 2px;
    border-radius: 1em;
    background: #3a992d;
    margin: 0 3em;
    display: inline-block;
    color: #ffffff;
    position: relative; }
  .taskSteps li::before {
    content: '';
    position: absolute;
    top: .7em;
    left: -5.8em;
    width: 5.5em;
    height: .15em;
    background: #3a992d;
    z-index: 1000; }
  .taskSteps li:first-child::before {
    display: none; }
  .taskSteps span {
    float: left;
    color: #d3d7d8;
    white-space: nowrap;
    margin-left: -30px; }
  .taskSteps .active {
    line-height: 1.5em;
    background: #3a992d;
    color: #ffffff; }
  .taskSteps .active ~ li {
    background: #ffffff;
    border: 2px solid #d3d7d8; }
  .taskSteps .active ~ li::before {
    background: #d3d7d8; }
  .taskSteps body {
    font-family: "proxima_nova_rgregular";
    padding: 2em; }
  .taskSteps .size-twelve {
    font-size: 12px; }
  .taskSteps .lightgrey {
    color: #d3d7d8; }
  .taskSteps .orange {
    background: #ffA500; }
  .taskSteps .red {
    background: #ff0000; }

.page.queue {
  padding-top: 0px;
  background: #ffffff;
  margin-top: -35px; }
  .page.queue .top_area {
    padding-top: 15px;
    padding-left: 20px;
    padding-right: 20px; }
    .page.queue .top_area h1 {
      margin-bottom: 20px; }
    .page.queue .top_area nav {
      padding-bottom: 40px; }
    .page.queue .top_area .btn-primary, .page.queue .top_area button.btn-primary-sm, .page.queue .top_area .btn.btn-primary-sm, .page.queue .top_area .search_form input[type="submit"], .search_form .page.queue .top_area input[type="submit"] {
      font-size: 0.875rem;
      padding: 8px 20px 10px;
      border-top-width: 2px;
      border-bottom-width: 2px; }
  .page.queue .task_flyout {
    width: 250px; }
    .page.queue .task_flyout .arrow:after {
      border-color: transparent transparent #ffffff transparent; }
    .page.queue .task_flyout.task_flyout_reload .arrow:after {
      border-color: transparent transparent #ebeeef transparent; }
    .page.queue .task_flyout .flyout_inner {
      max-height: 100%;
      overflow: hidden;
      overflow-y: auto; }
      .page.queue .task_flyout .flyout_inner .reload_task {
        background-color: #ebeeef; }

.task_group a {
  display: block;
  padding: 10px 20px;
  color: #2e3438; }
  .task_group a:hover {
    background-color: #fbfcfc;
    color: #47a3e8; }
  .task_group a:active {
    background-color: #f2f5f5;
    color: #106fb6; }

.task_group .subcat_trigger {
  border-bottom: 1px solid #d7dcdf;
  text-transform: capitalize; }
  .task_group .subcat_trigger:before {
    top: 40%;
    right: 20px; }

.task_group .subcat {
  display: none; }
  .task_group .subcat li {
    border-bottom: 1px solid #f9f9f9; }
    .task_group .subcat li:last-child {
      border-bottom: 0; }
    .task_group .subcat li a {
      padding-left: 36px; }
    .task_group .subcat li .disabled {
      cursor: default;
      color: #999999; }
  .task_group .subcat li:nth-child(odd) {
    background-color: #f9f9f9; }
  .task_group .subcat li:nth-child(even) {
    background-color: #ffffff; }

.task_group.opened .subcat_trigger {
  border-bottom: 0; }
  .task_group.opened .subcat_trigger:before {
    -ms-transform: rotate(180deg);
    /* IE 9 */
    -webkit-transform: rotate(180deg);
    /* Chrome, Safari, Opera */
    transform: rotate(180deg); }

.task_group.opened .subcat {
  display: block; }

.queue-secondary {
  border-top: 1px solid #d7dcdf;
  background: #ecf0f1;
  padding-left: 20px;
  padding-right: 20px; }

.back-to-search {
  font-size: 0.875rem; }
  .back-to-search span {
    position: relative;
    top: 0px;
    font-size: 20px;
    padding-right: 2px; }

.task-error-link {
  color: #106fb6; }
  .task-error-link:hover {
    cursor: pointer; }

.clear-queue {
  font-size: 0.875rem;
  margin-top: 20px;
  position: relative;
  left: 90%;
  top: 20px; }

.queue-content .table > thead > tr > th {
  font-size: 0.875rem;
  padding-left: 20px !important;
  padding-bottom: 15px;
  border-bottom: 0 !important; }

.queue-content .table > tbody > tr > td {
  padding-left: 20px;
  border-top: 0 !important;
  border-bottom: 1px solid #ECF0F1 !important;
  vertical-align: middle;
  padding-top: 15px;
  padding-bottom: 15px; }
  .queue-content .table > tbody > tr > td.thumbnail_col {
    height: 53px;
    padding: 0;
    width: 92px; }
    .queue-content .table > tbody > tr > td.thumbnail_col a {
      display: block;
      width: 100%; }
    .queue-content .table > tbody > tr > td.thumbnail_col img {
      display: block;
      width: 100%;
      height: auto;
      max-height: 53px;
      background-position: 50% 50%; }

.queue-content .table a {
  color: black;
  font-size: 0.875rem; }

.queue-content .table .icon-x {
  color: #424a53; }

.queue-content .icon-x {
  top: 3px !important;
  font-size: 0.625rem; }

.queue-content a .icon-x {
  margin-right: 5px; }

.queue-content .name_col {
  width: 340px; }

.queue-content .action_col {
  width: 32px;
  padding-right: 20px; }

.queue-content .format_col {
  width: 450px; }

#historyTable a {
  color: #1985d5; }

#historyTable .actions {
  padding-left: 5px;
  text-align: right;
  padding-right: 20px; }
  #historyTable .actions a {
    padding-left: 10px; }

.modal_log_body {
  padding-bottom: 25px; }
  .modal_log_body pre {
    padding: 40px 30px;
    border-radius: 0;
    border: 0;
    border-bottom: 2px solid #d7dcdf;
    margin-bottom: 0;
    background-color: #ffffff; }

.task_status {
  background-color: #ffffff;
  border-bottom: 2px solid #d7dcdf; }
  .task_status header {
    overflow: hidden;
    border-bottom: 1px solid #ecf0f1;
    padding: 10px 30px;
    margin: 0; }
    .task_status header h4 {
      text-transform: uppercase;
      font-size: 0.875rem; }
      .task_status header h4 i, .task_status header h4 .fa {
        margin-right: 5px; }
      .task_status header h4 .fa {
        font-size: 18px; }
        .task_status header h4 .fa.fa-cog {
          position: relative;
          top: 2px; }
    .task_status header .pull-right {
      color: #9097a0;
      font-size: 0.8125rem;
      margin-top: 10px;
      text-align: right; }
  .task_status .task_detail {
    padding: 20px 30px;
    overflow-wrap: break-word; }
    .task_status .task_detail h1 {
      margin-top: 0;
      font-size: 1.125rem; }
  .task_status footer {
    margin: 0 30px;
    box-sizing: border-box;
    border-top: 1px solid #ecf0f1;
    padding: 20px 0; }
    .task_status footer ul li {
      display: inline-block;
      font-size: 0.875rem;
      padding-right: 60px; }
      .task_status footer ul li:last-child {
        padding-right: 0; }

.modal-body .input-group-btn .btn {
  margin-left: -5px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  padding-top: 9px;
  padding-bottom: 9px;
  position: relative;
  z-index: 2; }

.modal-body .ngGrid {
  min-height: 250px;
  padding-bottom: 20px;
  background: transparent; }

.copy_flyout .flyout_inner {
  width: 550px;
  padding: 10px; }
  .copy_flyout .flyout_inner input {
    width: 100%; }

.default-thumb-queue {
  background-position: 10% 93% !important;
  background-size: 140% !important; }

@media (max-width: 500px) {
  .home .cards.col-md-12 .list article {
    width: 100%; }
  .search_wrap, #searchHistory {
    padding-left: 20px;
    padding-right: 20px; }
  #searchHistory article ul li {
    float: none;
    width: 100%; }
  #searchContainer {
    height: auto;
    margin-bottom: 100px; }
  .list article {
    width: 100% !important;
    float: none; } }

@media (max-width: 639px) {
  #header .inner > ul.full_width {
    z-index: 10; }
  #searchPage {
    padding-top: 60px; }
  #searchPage .result_container header.sticky {
    top: 130px; }
  #headerSearchForm {
    width: calc(100% + 40px);
    left: -20px;
    padding: 10px 20px;
    min-height: 65px;
    position: relative;
    background-color: #ffffff; }
    #headerSearchForm fieldset.search_fieldset {
      width: calc(50% - 20px); }
    #headerSearchForm fieldset.location_fieldset {
      width: calc(50% - 20px); }
    #headerSearchForm fieldset.search_fieldset_expanded {
      width: calc(40% - 20px); }
    #headerSearchForm fieldset.expansion_fieldset {
      width: 10%; }
    #headerSearchForm fieldset.location_fieldset_expanded {
      width: calc(50% - 20px); }
    #headerSearchForm button {
      top: 9px;
      right: 20px;
      width: 40px; }
    #headerSearchForm button.query-expansion {
      top: 15px;
      padding: 6px 15px;
      right: -15px;
      background: transparent; }
  .search_wrap {
    height: auto;
    padding: 10px; }
  #searchContainer > .inner .search_form {
    height: auto;
    background-color: transparent; }
    #searchContainer > .inner .search_form .col-md-12 {
      padding-right: 0; }
    #searchContainer > .inner .search_form fieldset {
      float: none;
      width: 100%;
      margin-bottom: 5px;
      border-radius: 5px;
      background-color: #ffffff; }
    #searchContainer > .inner .search_form .select_wrap {
      left: -9999em; }
    #searchContainer > .inner .search_form .location_wrap {
      padding-left: 0;
      display: block; }
      #searchContainer > .inner .search_form .location_wrap label {
        left: 8px; }
      #searchContainer > .inner .search_form .location_wrap a {
        right: 75px; }
        #searchContainer > .inner .search_form .location_wrap a + a {
          right: 100px; }
    #searchContainer > .inner .search_form input[name="query"], #searchContainer > .inner .search_form input[name="location"] {
      padding: 0 20px 0 50px;
      width: 100%; }
    #searchContainer > .inner .search_form button.btn {
      top: 65px !important; }
    #searchContainer > .inner .search_form .search_fieldset.focused:after {
      display: none; }
  .open_filter header .option_list li:first-child {
    display: none; }
  #searchPage .map_content .option_list {
    position: absolute;
    right: 20px;
    z-index: 5; }
    #searchPage .map_content .option_list .sort_label {
      width: auto !important; }
    #searchPage .map_content .option_list > li > a {
      padding: 12px 0;
      width: 40px;
      height: 40px; }
      #searchPage .map_content .option_list > li > a span {
        position: absolute;
        text-indent: -9999em; }
      #searchPage .map_content .option_list > li > a:before {
        width: 40px;
        text-align: center;
        margin-right: 0;
        display: block; } }

@media (min-width: 640px) and (max-width: 767px) {
  .result_container header.sticky {
    position: fixed;
    top: 64px; } }

@media (max-width: 767px) {
  .home .cards.col-md-12 .list article {
    width: 50%; }
  #header .inner h1 .logo {
    background-size: cover;
    height: 25px;
    width: 92px; }
  #headerSearchForm {
    margin-left: 0; }
  .list article {
    width: 50%; }
  #searchPage .map_fixed {
    position: relative;
    padding-top: 70px;
    width: 100%;
    height: 40px; }
    #searchPage .map_fixed.filter_opened {
      width: calc(100% - 290px) !important; }
    #searchPage .map_fixed .tab {
      position: relative; }
      #searchPage .map_fixed .tab + div {
        display: none; }
  #searchPage .map_content {
    width: 100%;
    left: 0; }
  #searchPage .result_container .container-fluid {
    padding-top: 20px !important; }
  #searchPage .alt_list_view article .card_inner {
    height: 220px; }
  #detailPage .thumbnail_wrap {
    margin-top: 20px; }
    #detailPage .thumbnail_wrap .tag {
      top: 30px; } }

@media (min-width: 640px) and (max-width: 768px) {
  #headerSearchForm {
    margin-left: 20px; }
  .detailPage .list article {
    width: 50%; }
  .map_view_content .container-fluid .alt_list_view article {
    width: 50%; } }

@media (min-width: 769px) and (max-width: 1200px) {
  .list article {
    width: 50%; } }

@media (min-width: 980px) and (max-width: 1200px) {
  #detailPage .list article {
    width: 25%; } }

@media (min-width: 1201px) and (max-width: 1500px) {
  .list article {
    width: 33.33%; }
  #detailPage .list article {
    width: 25%; }
  #searchPage .open_filter .container-fluid .list article {
    width: 50%; } }

@media (min-width: 1060px) and (max-width: 1150px) {
  #headerSearchForm {
    margin-left: 30px; } }

@media (min-width: 1501px) and (max-width: 1750px) {
  .list article {
    width: 25%; }
  .home .wrapper {
    max-width: 100%; }
    .home .wrapper .col-md-12 .inner {
      max-width: calc(100% - 40px); }
      .home .wrapper .col-md-12 .inner .list article {
        width: 20%;
        min-width: 230px; }
  #searchPage .open_filter .container-fluid .list article {
    width: 33%; } }

@media (min-width: 1750px) and (max-width: 2000px) {
  .home .wrapper {
    max-width: 1900px; }
    .home .wrapper .col-md-12 .inner {
      max-width: calc(100% - 40px); }
      .home .wrapper .col-md-12 .inner .list article {
        width: 16%;
        min-width: 230px; }
  #searchPage .list article {
    width: 25%; }
  #searchPage .open_filter .container-fluid .list article {
    width: 33%; } }

@media (min-width: 2000px) {
  .home .wrapper {
    max-width: 1900px; }
    .home .wrapper .col-md-12 .inner {
      max-width: calc(100% - 40px); }
      .home .wrapper .col-md-12 .inner .list article {
        width: 16%;
        min-width: 230px; }
  #searchPage .list article {
    width: 20%; }
  #searchPage .open_filter .container-fluid .list article {
    width: 25%; } }

@media (max-width: 1000px) {
  #searchPage .result_container.open_filter .container-fluid .list article {
    width: 100%; }
  #header {
    padding-left: 20px;
    padding-right: 20px; }
  .table_view .map_content #searchViewList {
    margin-left: -85px !important; }
  .tab {
    width: 170px; }
  .tab ul li a {
    padding: 5px 12px; }
  .tab ul li.selected a {
    padding-top: 6px;
    padding-bottom: 4px; }
  #detailPage .list article {
    width: 33.333%; }
  .card_view #searchViewList, .map_view #searchViewList {
    margin-top: 70px; } }

@media (max-width: 1100px) {
  #searchPage .result_container.open_filter .container-fluid .list article {
    width: 100%; } }

@media (min-width: 1000px) {
  .map_content.col-lg-4 .sticky.col-lg-4 .option_list .sort_label, .map_content.col-md-4 .sticky.col-lg-4 .option_list .sort_label {
    width: auto; }
  .map_content.col-lg-4 .sticky.col-lg-4 .option_list > li > a, .map_content.col-md-4 .sticky.col-lg-4 .option_list > li > a {
    padding: 12px 0;
    width: 40px;
    height: 40px; }
    .map_content.col-lg-4 .sticky.col-lg-4 .option_list > li > a span, .map_content.col-md-4 .sticky.col-lg-4 .option_list > li > a span {
      position: absolute;
      text-indent: -9999em; }
    .map_content.col-lg-4 .sticky.col-lg-4 .option_list > li > a:before, .map_content.col-md-4 .sticky.col-lg-4 .option_list > li > a:before {
      width: 40px;
      text-align: center;
      margin-right: 0;
      display: block; } }

@media (min-width: 1061px) {
  #hamburger {
    display: none; } }

@media (max-width: 1060px) {
  #hamburger {
    display: block;
    float: right;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 12px;
    right: 0; }
    #hamburger a {
      display: block;
      height: 40px;
      width: 40px;
      border: 1px solid #d7dcdf;
      border-radius: 3px;
      text-align: center;
      line-height: 40px;
      background-color: #ffffff;
      outline: none;
      color: #737373; }
    #hamburger a.fa-bars {
      font-size: 18px; }
    #hamburger a.icon-x {
      font-size: 11px; }
      #hamburger a.icon-x:after {
        content: '';
        position: absolute;
        bottom: -12px;
        left: 11px;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0 9px 9px 9px;
        border-color: transparent transparent #333c4e transparent; }
  #header .inner > ul {
    display: none; }
    #header .inner > ul.full_width {
      float: none;
      width: 100%;
      background-color: #333c4e;
      position: fixed;
      left: 0;
      right: 0;
      top: 64px;
      height: 70px;
      text-align: right;
      padding-right: 30px;
      display: block; }
      #header .inner > ul.full_width > li {
        text-align: left; }
        #header .inner > ul.full_width > li > a {
          color: #ffffff; } }

@media (max-width: 940px) {
  #searchPage .map_fixed {
    height: calc(100% - 134px); } }

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  body, #header, .home {
    min-width: 1024px; }
  body .inner {
    max-width: 100%; }
  .home > .col-md-12 .inner {
    max-width: 100%; }
  #searchContainer > .inner {
    max-width: 100%; }
  #detailPage .list article {
    width: 25%; }
  #searchPage .option_list .sort_label {
    top: 0; }
  #filterContainer, #taxoContainer {
    height: 100%;
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch; } }

@media (max-width: 768px) {
  #searchViewList {
    margin-top: 20px !important;
    margin-bottom: 20px; }
  .result_container #searchViewList {
    margin-top: 78px !important; } }

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  body, #header, .home {
    min-width: 768px; }
  #detailPage .list article {
    width: 33.333%; }
  #searchPage .map_fixed {
    width: 100%;
    position: relative;
    height: 450px;
    padding-top: 70px;
    z-index: 1; }
    #searchPage .map_fixed.filter_opened {
      width: calc(100% - 290px) !important; }
  #searchPage .map_content {
    width: 100%;
    left: 0; }
  #searchPage .result_container header.sticky {
    position: fixed;
    top: 64px; }
  #searchPage .result_container .container-fluid {
    padding-top: 20px !important; }
  #searchPage .map_view_content .container-fluid .alt_list_view article {
    width: 50% !important; } }

.waiting:after {
  overflow: hidden;
  display: inline-block;
  vertical-align: bottom;
  -webkit-animation: ellipsis steps(4, end) 3000ms infinite;
  content: "\2026";
  width: 0px; }

@keyframes ellipsis {
  to {
    width: 0.9em; } }

@-webkit-keyframes ellipsis {
  to {
    width: 0.9em; } }

.leaflet-popup-content-wrapper {
  border-radius: 0; }
  .leaflet-popup-content-wrapper form[name=bufferOption] {
    position: relative;
    padding-bottom: 95px; }
    .leaflet-popup-content-wrapper form[name=bufferOption]:after {
      position: absolute;
      z-index: 5;
      content: '';
      width: 17px;
      transform: rotate(45deg);
      bottom: -22px;
      background-color: #d2d6d7;
      left: 50%;
      margin-left: -8px; }
    .leaflet-popup-content-wrapper form[name=bufferOption] input[type=submit] {
      padding-top: 5px;
      padding-bottom: 5px;
      margin-right: 20px; }
    .leaflet-popup-content-wrapper form[name=bufferOption] .link_secondary {
      color: #8f9497;
      font-size: 16px; }
  .leaflet-popup-content-wrapper .buffer-label {
    font-size: 0.875rem;
    margin-bottom: 3px; }
  .leaflet-popup-content-wrapper input[type=text] {
    border-radius: 3px;
    width: 75px;
    border: 1px solid #d7dcdf;
    margin-right: 10px;
    padding: 4px 5px 5px;
    font-size: 0.875rem; }
  .leaflet-popup-content-wrapper .buffer-footer {
    background-color: #d2d6d7;
    position: absolute;
    bottom: -14px;
    left: -20px;
    right: -20px;
    padding: 20px; }
  .leaflet-popup-content-wrapper .select2-choice {
    padding-top: 3px;
    padding-bottom: 3px;
    height: 30px;
    border-radius: 3px; }

.leaflet-top .leaflet-draw-section .voyager-draw-rect {
  position: relative; }
  .leaflet-top .leaflet-draw-section .voyager-draw-rect:after {
    position: absolute;
    bottom: 2px;
    right: 2px;
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 5px 5px;
    border-color: transparent transparent #666d7a transparent; }
  .leaflet-top .leaflet-draw-section .voyager-draw-rect i:before {
    margin-top: 1px; }

.table_view .map_content {
  position: absolute; }
  .table_view .map_content #searchViewList {
    position: absolute;
    left: 50%;
    margin-left: -145px; }

.table_view .open_filter #searchViewList {
  margin-left: -250px; }

.table_view #searchResultMapContainer {
  background: #ecf0f1; }
  .table_view #searchResultMapContainer .search-map-container-inner {
    height: calc(100% - 20px) !important; }
  .table_view #searchResultMapContainer.tab_center {
    margin-left: 0; }
    .table_view #searchResultMapContainer.tab_center.filter_opened {
      width: calc(100% - 220px); }

body.no-map #resultsTable {
  top: -15px;
  position: relative; }

#resultsTable thead {
  position: fixed;
  z-index: 1;
  white-space: nowrap; }
  #resultsTable thead tr {
    display: inline-block;
    width: 100%; }
    #resultsTable thead tr th {
      display: inline-block;
      border-width: 0 0 2px 0;
      line-height: 1em;
      overflow: hidden;
      text-overflow: ellipsis; }
      #resultsTable thead tr th a.flyout_trigger {
        color: #333c4e;
        border-bottom: 1px solid transparent; }
        #resultsTable thead tr th a.flyout_trigger:before {
          color: #c1c2c4; }
      #resultsTable thead tr th.sortable div {
        display: inline-block; }

#resultsTable.ng-table th.sortable div:after, #resultsTable.ng-table th.sortable div:before {
  visibility: hidden; }

#resultsTable.ng-table th.sortable.sort-desc div, #resultsTable.ng-table th.sortable.sort-asc div {
  border-bottom: 0; }
  #resultsTable.ng-table th.sortable.sort-desc div:before, #resultsTable.ng-table th.sortable.sort-desc div:after, #resultsTable.ng-table th.sortable.sort-asc div:before, #resultsTable.ng-table th.sortable.sort-asc div:after {
    margin-top: -3px;
    right: -16px; }

#resultsTable.ng-table th.sortable.sort-desc div:before {
  visibility: visible;
  border-width: 5px 5px 0 5px; }

#resultsTable.ng-table th.sortable.sort-asc div:after {
  visibility: visible;
  border-width: 0 5px 5px 5px; }

#resultsTable tbody tr:first-child td {
  padding-top: 56px; }
  #resultsTable tbody tr:first-child td div.tag {
    padding-top: 60px; }

.no-header .main_container {
  padding-top: 0; }

.no-header .table_view .map_content {
  padding-top: 0;
  top: 0; }

.no-header #header {
  display: none; }

.no-header .header-controller {
  display: none; }

.no-header .list_wrap {
  padding-top: 65px !important; }

.no-map .list_wrap {
  margin-top: 0 !important; }

.list_wrap .table_list {
  margin-top: -20px; }

.nowrap {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden; }

.default-thumb-simple-table {
  background-position: 10% 93% !important;
  background-size: 140% !important; }

.thumbnail-col-simple-table {
  height: 53px;
  padding: 0;
  width: 92px; }
  .thumbnail-col-simple-table img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 53px;
    background-position: 50% 50%; }

#clipFeaturesTable {
  border-collapse: collapse;
  width: 100%; }

#clipFeaturesTable td, #clipFeatures th {
  max-height: 50px;
  padding: 8px; }

#clipFeaturesTable tr:nth-child(even) {
  background-color: #f2f2f2; }

#clipFeaturesTable tr:hover {
  background-color: #ddd; }

#clipFeaturesTable th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: transparent; }

/*# sourceMappingURL=app.css.map*/