@charset "UTF-8";
/*app.scss is compiled into /assets/application-name.css
 *all additional SASS files must be imported into app.scss and all further SASS rules must
 *follow the imports */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: "FontAwesome";
  src: url("../fonts/fontawesome-webfont.eot?v=4.7.0");
  src: url("../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format("embedded-opentype"), url("../fonts/fontawesome-webfont.woff2?v=4.7.0") format("woff2"), url("../fonts/fontawesome-webfont.woff?v=4.7.0") format("woff"), url("../fonts/fontawesome-webfont.ttf?v=4.7.0") format("truetype"), url("../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px / 1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.3333333333em;
  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.2857142857em;
  text-align: center;
}

.fa-ul {
  padding-left: 0;
  margin-left: 2.1428571429em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}

.fa-li {
  position: absolute;
  left: -2.1428571429em;
  width: 2.1428571429em;
  top: 0.1428571429em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.8571428571em;
}

.fa-border {
  padding: 0.2em 0.25em 0.15em;
  border: solid 0.08em #eee;
  border-radius: 0.1em;
}

.fa-pull-left {
  float: left;
}

.fa-pull-right {
  float: right;
}

.fa.fa-pull-left {
  margin-right: 0.3em;
}
.fa.fa-pull-right {
  margin-left: 0.3em;
}

/* Deprecated as of 4.4.0 */
.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.fa.pull-left {
  margin-right: 0.3em;
}
.fa.pull-right {
  margin-left: 0.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 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  -ms-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 {
  -ms-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: #fff;
}

/* 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-feed:before,
.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-pp: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-resistance: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-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "\f1d4";
}

.fa-tencent-weibo:before {
  content: "\f1d5";
}

.fa-qq:before {
  content: "\f1d6";
}

.fa-wechat:before,
.fa-weixin:before {
  content: "\f1d7";
}

.fa-send:before,
.fa-paper-plane:before {
  content: "\f1d8";
}

.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\f1d9";
}

.fa-history:before {
  content: "\f1da";
}

.fa-circle-thin:before {
  content: "\f1db";
}

.fa-header:before {
  content: "\f1dc";
}

.fa-paragraph:before {
  content: "\f1dd";
}

.fa-sliders:before {
  content: "\f1de";
}

.fa-share-alt:before {
  content: "\f1e0";
}

.fa-share-alt-square:before {
  content: "\f1e1";
}

.fa-bomb:before {
  content: "\f1e2";
}

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\f1e3";
}

.fa-tty:before {
  content: "\f1e4";
}

.fa-binoculars:before {
  content: "\f1e5";
}

.fa-plug:before {
  content: "\f1e6";
}

.fa-slideshare:before {
  content: "\f1e7";
}

.fa-twitch:before {
  content: "\f1e8";
}

.fa-yelp:before {
  content: "\f1e9";
}

.fa-newspaper-o:before {
  content: "\f1ea";
}

.fa-wifi:before {
  content: "\f1eb";
}

.fa-calculator:before {
  content: "\f1ec";
}

.fa-paypal:before {
  content: "\f1ed";
}

.fa-google-wallet:before {
  content: "\f1ee";
}

.fa-cc-visa:before {
  content: "\f1f0";
}

.fa-cc-mastercard:before {
  content: "\f1f1";
}

.fa-cc-discover:before {
  content: "\f1f2";
}

.fa-cc-amex:before {
  content: "\f1f3";
}

.fa-cc-paypal:before {
  content: "\f1f4";
}

.fa-cc-stripe:before {
  content: "\f1f5";
}

.fa-bell-slash:before {
  content: "\f1f6";
}

.fa-bell-slash-o:before {
  content: "\f1f7";
}

.fa-trash:before {
  content: "\f1f8";
}

.fa-copyright:before {
  content: "\f1f9";
}

.fa-at:before {
  content: "\f1fa";
}

.fa-eyedropper:before {
  content: "\f1fb";
}

.fa-paint-brush:before {
  content: "\f1fc";
}

.fa-birthday-cake:before {
  content: "\f1fd";
}

.fa-area-chart:before {
  content: "\f1fe";
}

.fa-pie-chart:before {
  content: "\f200";
}

.fa-line-chart:before {
  content: "\f201";
}

.fa-lastfm:before {
  content: "\f202";
}

.fa-lastfm-square:before {
  content: "\f203";
}

.fa-toggle-off:before {
  content: "\f204";
}

.fa-toggle-on:before {
  content: "\f205";
}

.fa-bicycle:before {
  content: "\f206";
}

.fa-bus:before {
  content: "\f207";
}

.fa-ioxhost:before {
  content: "\f208";
}

.fa-angellist:before {
  content: "\f209";
}

.fa-cc:before {
  content: "\f20a";
}

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\f20b";
}

.fa-meanpath:before {
  content: "\f20c";
}

.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-intersex:before,
.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-genderless:before {
  content: "\f22d";
}

.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";
}

.fa-yc:before,
.fa-y-combinator:before {
  content: "\f23b";
}

.fa-optin-monster:before {
  content: "\f23c";
}

.fa-opencart:before {
  content: "\f23d";
}

.fa-expeditedssl:before {
  content: "\f23e";
}

.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: "\f240";
}

.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\f241";
}

.fa-battery-2:before,
.fa-battery-half:before {
  content: "\f242";
}

.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\f243";
}

.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\f244";
}

.fa-mouse-pointer:before {
  content: "\f245";
}

.fa-i-cursor:before {
  content: "\f246";
}

.fa-object-group:before {
  content: "\f247";
}

.fa-object-ungroup:before {
  content: "\f248";
}

.fa-sticky-note:before {
  content: "\f249";
}

.fa-sticky-note-o:before {
  content: "\f24a";
}

.fa-cc-jcb:before {
  content: "\f24b";
}

.fa-cc-diners-club:before {
  content: "\f24c";
}

.fa-clone:before {
  content: "\f24d";
}

.fa-balance-scale:before {
  content: "\f24e";
}

.fa-hourglass-o:before {
  content: "\f250";
}

.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\f251";
}

.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\f252";
}

.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\f253";
}

.fa-hourglass:before {
  content: "\f254";
}

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\f255";
}

.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "\f256";
}

.fa-hand-scissors-o:before {
  content: "\f257";
}

.fa-hand-lizard-o:before {
  content: "\f258";
}

.fa-hand-spock-o:before {
  content: "\f259";
}

.fa-hand-pointer-o:before {
  content: "\f25a";
}

.fa-hand-peace-o:before {
  content: "\f25b";
}

.fa-trademark:before {
  content: "\f25c";
}

.fa-registered:before {
  content: "\f25d";
}

.fa-creative-commons:before {
  content: "\f25e";
}

.fa-gg:before {
  content: "\f260";
}

.fa-gg-circle:before {
  content: "\f261";
}

.fa-tripadvisor:before {
  content: "\f262";
}

.fa-odnoklassniki:before {
  content: "\f263";
}

.fa-odnoklassniki-square:before {
  content: "\f264";
}

.fa-get-pocket:before {
  content: "\f265";
}

.fa-wikipedia-w:before {
  content: "\f266";
}

.fa-safari:before {
  content: "\f267";
}

.fa-chrome:before {
  content: "\f268";
}

.fa-firefox:before {
  content: "\f269";
}

.fa-opera:before {
  content: "\f26a";
}

.fa-internet-explorer:before {
  content: "\f26b";
}

.fa-tv:before,
.fa-television:before {
  content: "\f26c";
}

.fa-contao:before {
  content: "\f26d";
}

.fa-500px:before {
  content: "\f26e";
}

.fa-amazon:before {
  content: "\f270";
}

.fa-calendar-plus-o:before {
  content: "\f271";
}

.fa-calendar-minus-o:before {
  content: "\f272";
}

.fa-calendar-times-o:before {
  content: "\f273";
}

.fa-calendar-check-o:before {
  content: "\f274";
}

.fa-industry:before {
  content: "\f275";
}

.fa-map-pin:before {
  content: "\f276";
}

.fa-map-signs:before {
  content: "\f277";
}

.fa-map-o:before {
  content: "\f278";
}

.fa-map:before {
  content: "\f279";
}

.fa-commenting:before {
  content: "\f27a";
}

.fa-commenting-o:before {
  content: "\f27b";
}

.fa-houzz:before {
  content: "\f27c";
}

.fa-vimeo:before {
  content: "\f27d";
}

.fa-black-tie:before {
  content: "\f27e";
}

.fa-fonticons:before {
  content: "\f280";
}

.fa-reddit-alien:before {
  content: "\f281";
}

.fa-edge:before {
  content: "\f282";
}

.fa-credit-card-alt:before {
  content: "\f283";
}

.fa-codiepie:before {
  content: "\f284";
}

.fa-modx:before {
  content: "\f285";
}

.fa-fort-awesome:before {
  content: "\f286";
}

.fa-usb:before {
  content: "\f287";
}

.fa-product-hunt:before {
  content: "\f288";
}

.fa-mixcloud:before {
  content: "\f289";
}

.fa-scribd:before {
  content: "\f28a";
}

.fa-pause-circle:before {
  content: "\f28b";
}

.fa-pause-circle-o:before {
  content: "\f28c";
}

.fa-stop-circle:before {
  content: "\f28d";
}

.fa-stop-circle-o:before {
  content: "\f28e";
}

.fa-shopping-bag:before {
  content: "\f290";
}

.fa-shopping-basket:before {
  content: "\f291";
}

.fa-hashtag:before {
  content: "\f292";
}

.fa-bluetooth:before {
  content: "\f293";
}

.fa-bluetooth-b:before {
  content: "\f294";
}

.fa-percent:before {
  content: "\f295";
}

.fa-gitlab:before {
  content: "\f296";
}

.fa-wpbeginner:before {
  content: "\f297";
}

.fa-wpforms:before {
  content: "\f298";
}

.fa-envira:before {
  content: "\f299";
}

.fa-universal-access:before {
  content: "\f29a";
}

.fa-wheelchair-alt:before {
  content: "\f29b";
}

.fa-question-circle-o:before {
  content: "\f29c";
}

.fa-blind:before {
  content: "\f29d";
}

.fa-audio-description:before {
  content: "\f29e";
}

.fa-volume-control-phone:before {
  content: "\f2a0";
}

.fa-braille:before {
  content: "\f2a1";
}

.fa-assistive-listening-systems:before {
  content: "\f2a2";
}

.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}

.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "\f2a4";
}

.fa-glide:before {
  content: "\f2a5";
}

.fa-glide-g:before {
  content: "\f2a6";
}

.fa-signing:before,
.fa-sign-language:before {
  content: "\f2a7";
}

.fa-low-vision:before {
  content: "\f2a8";
}

.fa-viadeo:before {
  content: "\f2a9";
}

.fa-viadeo-square:before {
  content: "\f2aa";
}

.fa-snapchat:before {
  content: "\f2ab";
}

.fa-snapchat-ghost:before {
  content: "\f2ac";
}

.fa-snapchat-square:before {
  content: "\f2ad";
}

.fa-pied-piper:before {
  content: "\f2ae";
}

.fa-first-order:before {
  content: "\f2b0";
}

.fa-yoast:before {
  content: "\f2b1";
}

.fa-themeisle:before {
  content: "\f2b2";
}

.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "\f2b3";
}

.fa-fa:before,
.fa-font-awesome:before {
  content: "\f2b4";
}

.fa-handshake-o:before {
  content: "\f2b5";
}

.fa-envelope-open:before {
  content: "\f2b6";
}

.fa-envelope-open-o:before {
  content: "\f2b7";
}

.fa-linode:before {
  content: "\f2b8";
}

.fa-address-book:before {
  content: "\f2b9";
}

.fa-address-book-o:before {
  content: "\f2ba";
}

.fa-vcard:before,
.fa-address-card:before {
  content: "\f2bb";
}

.fa-vcard-o:before,
.fa-address-card-o:before {
  content: "\f2bc";
}

.fa-user-circle:before {
  content: "\f2bd";
}

.fa-user-circle-o:before {
  content: "\f2be";
}

.fa-user-o:before {
  content: "\f2c0";
}

.fa-id-badge:before {
  content: "\f2c1";
}

.fa-drivers-license:before,
.fa-id-card:before {
  content: "\f2c2";
}

.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: "\f2c3";
}

.fa-quora:before {
  content: "\f2c4";
}

.fa-free-code-camp:before {
  content: "\f2c5";
}

.fa-telegram:before {
  content: "\f2c6";
}

.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: "\f2c7";
}

.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}

.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "\f2c9";
}

.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "\f2ca";
}

.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "\f2cb";
}

.fa-shower:before {
  content: "\f2cc";
}

.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: "\f2cd";
}

.fa-podcast:before {
  content: "\f2ce";
}

.fa-window-maximize:before {
  content: "\f2d0";
}

.fa-window-minimize:before {
  content: "\f2d1";
}

.fa-window-restore:before {
  content: "\f2d2";
}

.fa-times-rectangle:before,
.fa-window-close:before {
  content: "\f2d3";
}

.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "\f2d4";
}

.fa-bandcamp:before {
  content: "\f2d5";
}

.fa-grav:before {
  content: "\f2d6";
}

.fa-etsy:before {
  content: "\f2d7";
}

.fa-imdb:before {
  content: "\f2d8";
}

.fa-ravelry:before {
  content: "\f2d9";
}

.fa-eercast:before {
  content: "\f2da";
}

.fa-microchip:before {
  content: "\f2db";
}

.fa-snowflake-o:before {
  content: "\f2dc";
}

.fa-superpowers:before {
  content: "\f2dd";
}

.fa-wpexplorer:before {
  content: "\f2de";
}

.fa-meetup:before {
  content: "\f2e0";
}

/* General site-wide layouts -------------------------------------- */
html {
  min-width: 940px !important;
}

body {
  background: url("../images/bodybg-15a2ef40acf7ac07c375189a1f39008b.png") 0 0 repeat-x;
  color: #1f1f1f;
  font: normal 0.875em arial, helvetica, sans-serif;
  padding-bottom: 0px;
  margin: 0;
  min-width: 940px !important;
}

table,
p,
div {
  color: #1f1f1f;
}

a:not(.btn).disabled, a:not(.btn):disabled {
  cursor: not-allowed;
  text-decoration: none;
  color: #1f1f1f;
}

.a-icon-wrap {
  white-space: normal;
  height: auto;
  display: block;
  padding-left: 20px !important;
}
.a-icon-wrap i {
  position: absolute;
  margin-left: -18px;
  margin-top: 2px;
}
.a-icon-wrap i.icon-pad-right {
  margin-left: -20px;
}

textarea {
  width: 100%;
  border: 1px solid #cccccc;
  min-height: 330px;
  padding-left: 10px;
  padding-top: 7px;
}

/* General IDs / Classes -------------------------------------- */
.right {
  float: right;
}

.right.inline-btns {
  margin-left: -10px;
}

.left {
  float: left;
}

.datepicker {
  margin-right: 7px;
  vertical-align: bottom;
}

.leftPadding {
  padding-left: 7px;
}

.leftMargin {
  margin-left: 7px;
}

.topPadding {
  padding-top: 10px;
}

.topMargin {
  margin-top: 10px;
}

.bottomPadding {
  padding-bottom: 10px;
}

.bottomMargin {
  margin-bottom: 10px;
}

.bottomMoreMargin {
  margin-bottom: 20px;
}

.bottomMorePadding {
  padding-bottom: 20px;
}

.bottomExtraMorePadding {
  padding-bottom: 30px;
}

.bottomBorder {
  border-bottom: 1px solid #b2b4b7;
  width: 460px;
}

.widthFull {
  width: 100%;
}

.extra-wide-input {
  width: 450px !important;
}

.checkbox-for-input {
  display: inline-block;
  margin-left: 30px;
  padding-top: 7px;
}

.noBullet {
  list-style: none;
  padding-left: 0;
}

.icoLabel {
  padding-top: 3px;
}

.bold {
  font-weight: bold;
}

.legend-industrial-copi {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
  border-bottom: none;
}

.no-bold {
  font-weight: normal;
}

.indentLeft {
  margin-left: 17px;
}

.reverseIndentLeft {
  margin-left: -17px;
}

/* Print and Adjust Font Size Section styles -------------------------------------- */
.controlContainer {
  padding: 0 0 10px 0;
  overflow: hidden;
}

.siteControls {
  float: right;
  border-bottom: 4px solid #fff;
  list-style-type: none;
}
.siteControls li {
  display: inline;
  float: left;
  margin-left: 10px;
}

.printIcon {
  background: url("../images/ico_sprites.png") 4px -112px no-repeat;
  list-style: none;
  padding: 5px 0 5px 30px;
}

.fontSizeSelector a {
  color: #999;
}

a.fontSizeSelected {
  color: #1f1f1f;
  font-weight: bold;
}

#regularFontSizeAnchor {
  font-size: 100%;
}

#mediumFontSizeAnchor {
  font-size: 120%;
}

#largeFontSizeAnchor {
  font-size: 150%;
}

/* Displaytag styles -------------------------------------- */
.vert-spacing {
  margin: 10px 0;
}

.xml {
  background: url("../images/ico_sprites.png") no-repeat scroll 0 0 transparent;
  padding: 0 0 0 20px;
}

.excel {
  background: url("../images/ico_sprites.png") no-repeat scroll 0 -50px transparent;
  padding: 0 0 0 20px;
}

.csv {
  background: url("../images/ico_sprites.png") no-repeat scroll 0 -74px transparent;
  padding: 0 0 0 20px;
}

.pdf {
  background: url("../images/ico_sprites.png") no-repeat scroll 0 -98px transparent;
  padding: 0 0 0 20px;
}

/* Section 508 Skip navigation link */
.visuallyhidden {
  position: absolute;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

/* Icon color styles -------------------------------------- */
.fa-file-excel-o {
  color: #27ae60;
}

.fa-file-pdf-o {
  color: #c0392b;
}

.fa-file-word-o {
  color: #007f9b;
}

.fa-star {
  color: #f39c12;
}

.fa-flag {
  color: #c0392b;
}

.fa-asterisk {
  color: #b12a1f;
  font-size: 7px;
  vertical-align: top;
  padding-right: 4px;
}

.fa-exclamation-circle,
.fa-red-x {
  color: #b12a1f;
}

.fa-exclamation-triangle {
  color: #8e5300;
}

.fa-check-circle,
.fa-green-check {
  color: #006149;
}

.row-expanded .fa.hide-if-expanded {
  display: none;
}

/* Make all spinners gray color per UX */
.app-loading {
  /* use a fixed container for loading screens */
}
.app-loading .fa-spinner {
  color: #999999;
}
.app-loading .panel-default {
  height: 890px;
  margin-top: 134px;
}
.app-loading .logo-container {
  padding-top: 100px;
}
.app-loading .logo-container > p {
  color: #666666;
}
.app-loading.proposal-loading .panel-default {
  margin-top: 31px;
}
.app-loading.panel-body-loading {
  height: 660px;
  margin-top: 30px;
}

/* Globally remove IE x icon in input fields -------------------------------------- */
input::-ms-clear {
  display: none;
}

/* Globally apply gray background and not-allowed cursor to disabled inputs */
html body input:disabled,
html body input[disabled],
html body textarea:disabled,
html body textarea[disabled] {
  background-color: #f5f7f8;
  cursor: not-allowed;
  border: 1px solid #ccc;
  border-radius: 0;
}

.p-top-0 {
  padding-top: 0px;
}

.m-top-0 {
  margin-top: 0px;
}

.p-right-0 {
  padding-right: 0px;
}

.m-right-0 {
  margin-right: 0px;
}

.p-bottom-0 {
  padding-bottom: 0px;
}

.m-bottom-0 {
  margin-bottom: 0px;
}

.p-left-0 {
  padding-left: 0px;
}

.m-left-0 {
  margin-left: 0px;
}

.p-top-5 {
  padding-top: 5px;
}

.m-top-5 {
  margin-top: 5px;
}

.p-right-5 {
  padding-right: 5px;
}

.m-right-5 {
  margin-right: 5px;
}

.p-bottom-5 {
  padding-bottom: 5px;
}

.m-bottom-5 {
  margin-bottom: 5px;
}

.p-left-5 {
  padding-left: 5px;
}

.m-left-5 {
  margin-left: 5px;
}

.p-top-10 {
  padding-top: 10px;
}

.m-top-10 {
  margin-top: 10px;
}

.p-right-10 {
  padding-right: 10px;
}

.m-right-10 {
  margin-right: 10px;
}

.p-bottom-10 {
  padding-bottom: 10px;
}

.m-bottom-10 {
  margin-bottom: 10px;
}

.p-left-10 {
  padding-left: 10px;
}

.m-left-10 {
  margin-left: 10px;
}

.p-top-15 {
  padding-top: 15px;
}

.m-top-15 {
  margin-top: 15px;
}

.p-right-15 {
  padding-right: 15px;
}

.m-right-15 {
  margin-right: 15px;
}

.p-bottom-15 {
  padding-bottom: 15px;
}

.m-bottom-15 {
  margin-bottom: 15px;
}

.p-left-15 {
  padding-left: 15px;
}

.m-left-15 {
  margin-left: 15px;
}

.p-top-20 {
  padding-top: 20px;
}

.m-top-20 {
  margin-top: 20px;
}

.p-right-20 {
  padding-right: 20px;
}

.m-right-20 {
  margin-right: 20px;
}

.p-bottom-20 {
  padding-bottom: 20px;
}

.m-bottom-20 {
  margin-bottom: 20px;
}

.p-left-20 {
  padding-left: 20px;
}

.m-left-20 {
  margin-left: 20px;
}

.p-top-25 {
  padding-top: 25px;
}

.m-top-25 {
  margin-top: 25px;
}

.p-right-25 {
  padding-right: 25px;
}

.m-right-25 {
  margin-right: 25px;
}

.p-bottom-25 {
  padding-bottom: 25px;
}

.m-bottom-25 {
  margin-bottom: 25px;
}

.p-left-25 {
  padding-left: 25px;
}

.m-left-25 {
  margin-left: 25px;
}

.p-top-30 {
  padding-top: 30px;
}

.m-top-30 {
  margin-top: 30px;
}

.p-right-30 {
  padding-right: 30px;
}

.m-right-30 {
  margin-right: 30px;
}

.p-bottom-30 {
  padding-bottom: 30px;
}

.m-bottom-30 {
  margin-bottom: 30px;
}

.p-left-30 {
  padding-left: 30px;
}

.m-left-30 {
  margin-left: 30px;
}

.p-top-35 {
  padding-top: 35px;
}

.m-top-35 {
  margin-top: 35px;
}

.p-right-35 {
  padding-right: 35px;
}

.m-right-35 {
  margin-right: 35px;
}

.p-bottom-35 {
  padding-bottom: 35px;
}

.m-bottom-35 {
  margin-bottom: 35px;
}

.p-left-35 {
  padding-left: 35px;
}

.m-left-35 {
  margin-left: 35px;
}

.p-top-40 {
  padding-top: 40px;
}

.m-top-40 {
  margin-top: 40px;
}

.p-right-40 {
  padding-right: 40px;
}

.m-right-40 {
  margin-right: 40px;
}

.p-bottom-40 {
  padding-bottom: 40px;
}

.m-bottom-40 {
  margin-bottom: 40px;
}

.p-left-40 {
  padding-left: 40px;
}

.m-left-40 {
  margin-left: 40px;
}

.p-top-45 {
  padding-top: 45px;
}

.m-top-45 {
  margin-top: 45px;
}

.p-right-45 {
  padding-right: 45px;
}

.m-right-45 {
  margin-right: 45px;
}

.p-bottom-45 {
  padding-bottom: 45px;
}

.m-bottom-45 {
  margin-bottom: 45px;
}

.p-left-45 {
  padding-left: 45px;
}

.m-left-45 {
  margin-left: 45px;
}

.p-top-50 {
  padding-top: 50px;
}

.m-top-50 {
  margin-top: 50px;
}

.p-right-50 {
  padding-right: 50px;
}

.m-right-50 {
  margin-right: 50px;
}

.p-bottom-50 {
  padding-bottom: 50px;
}

.m-bottom-50 {
  margin-bottom: 50px;
}

.p-left-50 {
  padding-left: 50px;
}

.m-left-50 {
  margin-left: 50px;
}

.p-top-55 {
  padding-top: 55px;
}

.m-top-55 {
  margin-top: 55px;
}

.p-right-55 {
  padding-right: 55px;
}

.m-right-55 {
  margin-right: 55px;
}

.p-bottom-55 {
  padding-bottom: 55px;
}

.m-bottom-55 {
  margin-bottom: 55px;
}

.p-left-55 {
  padding-left: 55px;
}

.m-left-55 {
  margin-left: 55px;
}

.p-top-60 {
  padding-top: 60px;
}

.m-top-60 {
  margin-top: 60px;
}

.p-right-60 {
  padding-right: 60px;
}

.m-right-60 {
  margin-right: 60px;
}

.p-bottom-60 {
  padding-bottom: 60px;
}

.m-bottom-60 {
  margin-bottom: 60px;
}

.p-left-60 {
  padding-left: 60px;
}

.m-left-60 {
  margin-left: 60px;
}

.p-top-65 {
  padding-top: 65px;
}

.m-top-65 {
  margin-top: 65px;
}

.p-right-65 {
  padding-right: 65px;
}

.m-right-65 {
  margin-right: 65px;
}

.p-bottom-65 {
  padding-bottom: 65px;
}

.m-bottom-65 {
  margin-bottom: 65px;
}

.p-left-65 {
  padding-left: 65px;
}

.m-left-65 {
  margin-left: 65px;
}

.p-top-70 {
  padding-top: 70px;
}

.m-top-70 {
  margin-top: 70px;
}

.p-right-70 {
  padding-right: 70px;
}

.m-right-70 {
  margin-right: 70px;
}

.p-bottom-70 {
  padding-bottom: 70px;
}

.m-bottom-70 {
  margin-bottom: 70px;
}

.p-left-70 {
  padding-left: 70px;
}

.m-left-70 {
  margin-left: 70px;
}

.p-top-75 {
  padding-top: 75px;
}

.m-top-75 {
  margin-top: 75px;
}

.p-right-75 {
  padding-right: 75px;
}

.m-right-75 {
  margin-right: 75px;
}

.p-bottom-75 {
  padding-bottom: 75px;
}

.m-bottom-75 {
  margin-bottom: 75px;
}

.p-left-75 {
  padding-left: 75px;
}

.m-left-75 {
  margin-left: 75px;
}

.p-top-80 {
  padding-top: 80px;
}

.m-top-80 {
  margin-top: 80px;
}

.p-right-80 {
  padding-right: 80px;
}

.m-right-80 {
  margin-right: 80px;
}

.p-bottom-80 {
  padding-bottom: 80px;
}

.m-bottom-80 {
  margin-bottom: 80px;
}

.p-left-80 {
  padding-left: 80px;
}

.m-left-80 {
  margin-left: 80px;
}

.p-top-85 {
  padding-top: 85px;
}

.m-top-85 {
  margin-top: 85px;
}

.p-right-85 {
  padding-right: 85px;
}

.m-right-85 {
  margin-right: 85px;
}

.p-bottom-85 {
  padding-bottom: 85px;
}

.m-bottom-85 {
  margin-bottom: 85px;
}

.p-left-85 {
  padding-left: 85px;
}

.m-left-85 {
  margin-left: 85px;
}

.p-top-90 {
  padding-top: 90px;
}

.m-top-90 {
  margin-top: 90px;
}

.p-right-90 {
  padding-right: 90px;
}

.m-right-90 {
  margin-right: 90px;
}

.p-bottom-90 {
  padding-bottom: 90px;
}

.m-bottom-90 {
  margin-bottom: 90px;
}

.p-left-90 {
  padding-left: 90px;
}

.m-left-90 {
  margin-left: 90px;
}

.p-top-95 {
  padding-top: 95px;
}

.m-top-95 {
  margin-top: 95px;
}

.p-right-95 {
  padding-right: 95px;
}

.m-right-95 {
  margin-right: 95px;
}

.p-bottom-95 {
  padding-bottom: 95px;
}

.m-bottom-95 {
  margin-bottom: 95px;
}

.p-left-95 {
  padding-left: 95px;
}

.m-left-95 {
  margin-left: 95px;
}

.p-top-100 {
  padding-top: 100px;
}

.m-top-100 {
  margin-top: 100px;
}

.p-right-100 {
  padding-right: 100px;
}

.m-right-100 {
  margin-right: 100px;
}

.p-bottom-100 {
  padding-bottom: 100px;
}

.m-bottom-100 {
  margin-bottom: 100px;
}

.p-left-100 {
  padding-left: 100px;
}

.m-left-100 {
  margin-left: 100px;
}

.p-top-105 {
  padding-top: 105px;
}

.m-top-105 {
  margin-top: 105px;
}

.p-right-105 {
  padding-right: 105px;
}

.m-right-105 {
  margin-right: 105px;
}

.p-bottom-105 {
  padding-bottom: 105px;
}

.m-bottom-105 {
  margin-bottom: 105px;
}

.p-left-105 {
  padding-left: 105px;
}

.m-left-105 {
  margin-left: 105px;
}

.p-top-110 {
  padding-top: 110px;
}

.m-top-110 {
  margin-top: 110px;
}

.p-right-110 {
  padding-right: 110px;
}

.m-right-110 {
  margin-right: 110px;
}

.p-bottom-110 {
  padding-bottom: 110px;
}

.m-bottom-110 {
  margin-bottom: 110px;
}

.p-left-110 {
  padding-left: 110px;
}

.m-left-110 {
  margin-left: 110px;
}

.p-top-115 {
  padding-top: 115px;
}

.m-top-115 {
  margin-top: 115px;
}

.p-right-115 {
  padding-right: 115px;
}

.m-right-115 {
  margin-right: 115px;
}

.p-bottom-115 {
  padding-bottom: 115px;
}

.m-bottom-115 {
  margin-bottom: 115px;
}

.p-left-115 {
  padding-left: 115px;
}

.m-left-115 {
  margin-left: 115px;
}

.p-top-120 {
  padding-top: 120px;
}

.m-top-120 {
  margin-top: 120px;
}

.p-right-120 {
  padding-right: 120px;
}

.m-right-120 {
  margin-right: 120px;
}

.p-bottom-120 {
  padding-bottom: 120px;
}

.m-bottom-120 {
  margin-bottom: 120px;
}

.p-left-120 {
  padding-left: 120px;
}

.m-left-120 {
  margin-left: 120px;
}

.p-top-125 {
  padding-top: 125px;
}

.m-top-125 {
  margin-top: 125px;
}

.p-right-125 {
  padding-right: 125px;
}

.m-right-125 {
  margin-right: 125px;
}

.p-bottom-125 {
  padding-bottom: 125px;
}

.m-bottom-125 {
  margin-bottom: 125px;
}

.p-left-125 {
  padding-left: 125px;
}

.m-left-125 {
  margin-left: 125px;
}

.p-top-130 {
  padding-top: 130px;
}

.m-top-130 {
  margin-top: 130px;
}

.p-right-130 {
  padding-right: 130px;
}

.m-right-130 {
  margin-right: 130px;
}

.p-bottom-130 {
  padding-bottom: 130px;
}

.m-bottom-130 {
  margin-bottom: 130px;
}

.p-left-130 {
  padding-left: 130px;
}

.m-left-130 {
  margin-left: 130px;
}

.p-top-135 {
  padding-top: 135px;
}

.m-top-135 {
  margin-top: 135px;
}

.p-right-135 {
  padding-right: 135px;
}

.m-right-135 {
  margin-right: 135px;
}

.p-bottom-135 {
  padding-bottom: 135px;
}

.m-bottom-135 {
  margin-bottom: 135px;
}

.p-left-135 {
  padding-left: 135px;
}

.m-left-135 {
  margin-left: 135px;
}

.p-top-140 {
  padding-top: 140px;
}

.m-top-140 {
  margin-top: 140px;
}

.p-right-140 {
  padding-right: 140px;
}

.m-right-140 {
  margin-right: 140px;
}

.p-bottom-140 {
  padding-bottom: 140px;
}

.m-bottom-140 {
  margin-bottom: 140px;
}

.p-left-140 {
  padding-left: 140px;
}

.m-left-140 {
  margin-left: 140px;
}

.p-top-145 {
  padding-top: 145px;
}

.m-top-145 {
  margin-top: 145px;
}

.p-right-145 {
  padding-right: 145px;
}

.m-right-145 {
  margin-right: 145px;
}

.p-bottom-145 {
  padding-bottom: 145px;
}

.m-bottom-145 {
  margin-bottom: 145px;
}

.p-left-145 {
  padding-left: 145px;
}

.m-left-145 {
  margin-left: 145px;
}

.p-top-150 {
  padding-top: 150px;
}

.m-top-150 {
  margin-top: 150px;
}

.p-right-150 {
  padding-right: 150px;
}

.m-right-150 {
  margin-right: 150px;
}

.p-bottom-150 {
  padding-bottom: 150px;
}

.m-bottom-150 {
  margin-bottom: 150px;
}

.p-left-150 {
  padding-left: 150px;
}

.m-left-150 {
  margin-left: 150px;
}

.p-top-155 {
  padding-top: 155px;
}

.m-top-155 {
  margin-top: 155px;
}

.p-right-155 {
  padding-right: 155px;
}

.m-right-155 {
  margin-right: 155px;
}

.p-bottom-155 {
  padding-bottom: 155px;
}

.m-bottom-155 {
  margin-bottom: 155px;
}

.p-left-155 {
  padding-left: 155px;
}

.m-left-155 {
  margin-left: 155px;
}

.p-top-160 {
  padding-top: 160px;
}

.m-top-160 {
  margin-top: 160px;
}

.p-right-160 {
  padding-right: 160px;
}

.m-right-160 {
  margin-right: 160px;
}

.p-bottom-160 {
  padding-bottom: 160px;
}

.m-bottom-160 {
  margin-bottom: 160px;
}

.p-left-160 {
  padding-left: 160px;
}

.m-left-160 {
  margin-left: 160px;
}

.p-top-165 {
  padding-top: 165px;
}

.m-top-165 {
  margin-top: 165px;
}

.p-right-165 {
  padding-right: 165px;
}

.m-right-165 {
  margin-right: 165px;
}

.p-bottom-165 {
  padding-bottom: 165px;
}

.m-bottom-165 {
  margin-bottom: 165px;
}

.p-left-165 {
  padding-left: 165px;
}

.m-left-165 {
  margin-left: 165px;
}

.p-top-170 {
  padding-top: 170px;
}

.m-top-170 {
  margin-top: 170px;
}

.p-right-170 {
  padding-right: 170px;
}

.m-right-170 {
  margin-right: 170px;
}

.p-bottom-170 {
  padding-bottom: 170px;
}

.m-bottom-170 {
  margin-bottom: 170px;
}

.p-left-170 {
  padding-left: 170px;
}

.m-left-170 {
  margin-left: 170px;
}

.p-top-175 {
  padding-top: 175px;
}

.m-top-175 {
  margin-top: 175px;
}

.p-right-175 {
  padding-right: 175px;
}

.m-right-175 {
  margin-right: 175px;
}

.p-bottom-175 {
  padding-bottom: 175px;
}

.m-bottom-175 {
  margin-bottom: 175px;
}

.p-left-175 {
  padding-left: 175px;
}

.m-left-175 {
  margin-left: 175px;
}

.p-top-180 {
  padding-top: 180px;
}

.m-top-180 {
  margin-top: 180px;
}

.p-right-180 {
  padding-right: 180px;
}

.m-right-180 {
  margin-right: 180px;
}

.p-bottom-180 {
  padding-bottom: 180px;
}

.m-bottom-180 {
  margin-bottom: 180px;
}

.p-left-180 {
  padding-left: 180px;
}

.m-left-180 {
  margin-left: 180px;
}

.p-top-185 {
  padding-top: 185px;
}

.m-top-185 {
  margin-top: 185px;
}

.p-right-185 {
  padding-right: 185px;
}

.m-right-185 {
  margin-right: 185px;
}

.p-bottom-185 {
  padding-bottom: 185px;
}

.m-bottom-185 {
  margin-bottom: 185px;
}

.p-left-185 {
  padding-left: 185px;
}

.m-left-185 {
  margin-left: 185px;
}

.p-top-190 {
  padding-top: 190px;
}

.m-top-190 {
  margin-top: 190px;
}

.p-right-190 {
  padding-right: 190px;
}

.m-right-190 {
  margin-right: 190px;
}

.p-bottom-190 {
  padding-bottom: 190px;
}

.m-bottom-190 {
  margin-bottom: 190px;
}

.p-left-190 {
  padding-left: 190px;
}

.m-left-190 {
  margin-left: 190px;
}

.p-top-195 {
  padding-top: 195px;
}

.m-top-195 {
  margin-top: 195px;
}

.p-right-195 {
  padding-right: 195px;
}

.m-right-195 {
  margin-right: 195px;
}

.p-bottom-195 {
  padding-bottom: 195px;
}

.m-bottom-195 {
  margin-bottom: 195px;
}

.p-left-195 {
  padding-left: 195px;
}

.m-left-195 {
  margin-left: 195px;
}

.p-top-200 {
  padding-top: 200px;
}

.m-top-200 {
  margin-top: 200px;
}

.p-right-200 {
  padding-right: 200px;
}

.m-right-200 {
  margin-right: 200px;
}

.p-bottom-200 {
  padding-bottom: 200px;
}

.m-bottom-200 {
  margin-bottom: 200px;
}

.p-left-200 {
  padding-left: 200px;
}

.m-left-200 {
  margin-left: 200px;
}

.p-top-205 {
  padding-top: 205px;
}

.m-top-205 {
  margin-top: 205px;
}

.p-right-205 {
  padding-right: 205px;
}

.m-right-205 {
  margin-right: 205px;
}

.p-bottom-205 {
  padding-bottom: 205px;
}

.m-bottom-205 {
  margin-bottom: 205px;
}

.p-left-205 {
  padding-left: 205px;
}

.m-left-205 {
  margin-left: 205px;
}

.p-top-210 {
  padding-top: 210px;
}

.m-top-210 {
  margin-top: 210px;
}

.p-right-210 {
  padding-right: 210px;
}

.m-right-210 {
  margin-right: 210px;
}

.p-bottom-210 {
  padding-bottom: 210px;
}

.m-bottom-210 {
  margin-bottom: 210px;
}

.p-left-210 {
  padding-left: 210px;
}

.m-left-210 {
  margin-left: 210px;
}

.p-top-215 {
  padding-top: 215px;
}

.m-top-215 {
  margin-top: 215px;
}

.p-right-215 {
  padding-right: 215px;
}

.m-right-215 {
  margin-right: 215px;
}

.p-bottom-215 {
  padding-bottom: 215px;
}

.m-bottom-215 {
  margin-bottom: 215px;
}

.p-left-215 {
  padding-left: 215px;
}

.m-left-215 {
  margin-left: 215px;
}

.p-top-220 {
  padding-top: 220px;
}

.m-top-220 {
  margin-top: 220px;
}

.p-right-220 {
  padding-right: 220px;
}

.m-right-220 {
  margin-right: 220px;
}

.p-bottom-220 {
  padding-bottom: 220px;
}

.m-bottom-220 {
  margin-bottom: 220px;
}

.p-left-220 {
  padding-left: 220px;
}

.m-left-220 {
  margin-left: 220px;
}

.p-top-225 {
  padding-top: 225px;
}

.m-top-225 {
  margin-top: 225px;
}

.p-right-225 {
  padding-right: 225px;
}

.m-right-225 {
  margin-right: 225px;
}

.p-bottom-225 {
  padding-bottom: 225px;
}

.m-bottom-225 {
  margin-bottom: 225px;
}

.p-left-225 {
  padding-left: 225px;
}

.m-left-225 {
  margin-left: 225px;
}

.p-top-230 {
  padding-top: 230px;
}

.m-top-230 {
  margin-top: 230px;
}

.p-right-230 {
  padding-right: 230px;
}

.m-right-230 {
  margin-right: 230px;
}

.p-bottom-230 {
  padding-bottom: 230px;
}

.m-bottom-230 {
  margin-bottom: 230px;
}

.p-left-230 {
  padding-left: 230px;
}

.m-left-230 {
  margin-left: 230px;
}

.p-top-235 {
  padding-top: 235px;
}

.m-top-235 {
  margin-top: 235px;
}

.p-right-235 {
  padding-right: 235px;
}

.m-right-235 {
  margin-right: 235px;
}

.p-bottom-235 {
  padding-bottom: 235px;
}

.m-bottom-235 {
  margin-bottom: 235px;
}

.p-left-235 {
  padding-left: 235px;
}

.m-left-235 {
  margin-left: 235px;
}

.p-top-240 {
  padding-top: 240px;
}

.m-top-240 {
  margin-top: 240px;
}

.p-right-240 {
  padding-right: 240px;
}

.m-right-240 {
  margin-right: 240px;
}

.p-bottom-240 {
  padding-bottom: 240px;
}

.m-bottom-240 {
  margin-bottom: 240px;
}

.p-left-240 {
  padding-left: 240px;
}

.m-left-240 {
  margin-left: 240px;
}

.p-top-245 {
  padding-top: 245px;
}

.m-top-245 {
  margin-top: 245px;
}

.p-right-245 {
  padding-right: 245px;
}

.m-right-245 {
  margin-right: 245px;
}

.p-bottom-245 {
  padding-bottom: 245px;
}

.m-bottom-245 {
  margin-bottom: 245px;
}

.p-left-245 {
  padding-left: 245px;
}

.m-left-245 {
  margin-left: 245px;
}

.p-top-250 {
  padding-top: 250px;
}

.m-top-250 {
  margin-top: 250px;
}

.p-right-250 {
  padding-right: 250px;
}

.m-right-250 {
  margin-right: 250px;
}

.p-bottom-250 {
  padding-bottom: 250px;
}

.m-bottom-250 {
  margin-bottom: 250px;
}

.p-left-250 {
  padding-left: 250px;
}

.m-left-250 {
  margin-left: 250px;
}

.p-top-255 {
  padding-top: 255px;
}

.m-top-255 {
  margin-top: 255px;
}

.p-right-255 {
  padding-right: 255px;
}

.m-right-255 {
  margin-right: 255px;
}

.p-bottom-255 {
  padding-bottom: 255px;
}

.m-bottom-255 {
  margin-bottom: 255px;
}

.p-left-255 {
  padding-left: 255px;
}

.m-left-255 {
  margin-left: 255px;
}

.p-top-260 {
  padding-top: 260px;
}

.m-top-260 {
  margin-top: 260px;
}

.p-right-260 {
  padding-right: 260px;
}

.m-right-260 {
  margin-right: 260px;
}

.p-bottom-260 {
  padding-bottom: 260px;
}

.m-bottom-260 {
  margin-bottom: 260px;
}

.p-left-260 {
  padding-left: 260px;
}

.m-left-260 {
  margin-left: 260px;
}

.p-top-265 {
  padding-top: 265px;
}

.m-top-265 {
  margin-top: 265px;
}

.p-right-265 {
  padding-right: 265px;
}

.m-right-265 {
  margin-right: 265px;
}

.p-bottom-265 {
  padding-bottom: 265px;
}

.m-bottom-265 {
  margin-bottom: 265px;
}

.p-left-265 {
  padding-left: 265px;
}

.m-left-265 {
  margin-left: 265px;
}

.p-top-270 {
  padding-top: 270px;
}

.m-top-270 {
  margin-top: 270px;
}

.p-right-270 {
  padding-right: 270px;
}

.m-right-270 {
  margin-right: 270px;
}

.p-bottom-270 {
  padding-bottom: 270px;
}

.m-bottom-270 {
  margin-bottom: 270px;
}

.p-left-270 {
  padding-left: 270px;
}

.m-left-270 {
  margin-left: 270px;
}

.p-top-275 {
  padding-top: 275px;
}

.m-top-275 {
  margin-top: 275px;
}

.p-right-275 {
  padding-right: 275px;
}

.m-right-275 {
  margin-right: 275px;
}

.p-bottom-275 {
  padding-bottom: 275px;
}

.m-bottom-275 {
  margin-bottom: 275px;
}

.p-left-275 {
  padding-left: 275px;
}

.m-left-275 {
  margin-left: 275px;
}

.p-top-280 {
  padding-top: 280px;
}

.m-top-280 {
  margin-top: 280px;
}

.p-right-280 {
  padding-right: 280px;
}

.m-right-280 {
  margin-right: 280px;
}

.p-bottom-280 {
  padding-bottom: 280px;
}

.m-bottom-280 {
  margin-bottom: 280px;
}

.p-left-280 {
  padding-left: 280px;
}

.m-left-280 {
  margin-left: 280px;
}

.p-top-285 {
  padding-top: 285px;
}

.m-top-285 {
  margin-top: 285px;
}

.p-right-285 {
  padding-right: 285px;
}

.m-right-285 {
  margin-right: 285px;
}

.p-bottom-285 {
  padding-bottom: 285px;
}

.m-bottom-285 {
  margin-bottom: 285px;
}

.p-left-285 {
  padding-left: 285px;
}

.m-left-285 {
  margin-left: 285px;
}

.p-top-290 {
  padding-top: 290px;
}

.m-top-290 {
  margin-top: 290px;
}

.p-right-290 {
  padding-right: 290px;
}

.m-right-290 {
  margin-right: 290px;
}

.p-bottom-290 {
  padding-bottom: 290px;
}

.m-bottom-290 {
  margin-bottom: 290px;
}

.p-left-290 {
  padding-left: 290px;
}

.m-left-290 {
  margin-left: 290px;
}

.p-top-295 {
  padding-top: 295px;
}

.m-top-295 {
  margin-top: 295px;
}

.p-right-295 {
  padding-right: 295px;
}

.m-right-295 {
  margin-right: 295px;
}

.p-bottom-295 {
  padding-bottom: 295px;
}

.m-bottom-295 {
  margin-bottom: 295px;
}

.p-left-295 {
  padding-left: 295px;
}

.m-left-295 {
  margin-left: 295px;
}

.p-top-300 {
  padding-top: 300px;
}

.m-top-300 {
  margin-top: 300px;
}

.p-right-300 {
  padding-right: 300px;
}

.m-right-300 {
  margin-right: 300px;
}

.p-bottom-300 {
  padding-bottom: 300px;
}

.m-bottom-300 {
  margin-bottom: 300px;
}

.p-left-300 {
  padding-left: 300px;
}

.m-left-300 {
  margin-left: 300px;
}

.p-top-305 {
  padding-top: 305px;
}

.m-top-305 {
  margin-top: 305px;
}

.p-right-305 {
  padding-right: 305px;
}

.m-right-305 {
  margin-right: 305px;
}

.p-bottom-305 {
  padding-bottom: 305px;
}

.m-bottom-305 {
  margin-bottom: 305px;
}

.p-left-305 {
  padding-left: 305px;
}

.m-left-305 {
  margin-left: 305px;
}

.p-top-310 {
  padding-top: 310px;
}

.m-top-310 {
  margin-top: 310px;
}

.p-right-310 {
  padding-right: 310px;
}

.m-right-310 {
  margin-right: 310px;
}

.p-bottom-310 {
  padding-bottom: 310px;
}

.m-bottom-310 {
  margin-bottom: 310px;
}

.p-left-310 {
  padding-left: 310px;
}

.m-left-310 {
  margin-left: 310px;
}

.p-top-315 {
  padding-top: 315px;
}

.m-top-315 {
  margin-top: 315px;
}

.p-right-315 {
  padding-right: 315px;
}

.m-right-315 {
  margin-right: 315px;
}

.p-bottom-315 {
  padding-bottom: 315px;
}

.m-bottom-315 {
  margin-bottom: 315px;
}

.p-left-315 {
  padding-left: 315px;
}

.m-left-315 {
  margin-left: 315px;
}

.p-top-320 {
  padding-top: 320px;
}

.m-top-320 {
  margin-top: 320px;
}

.p-right-320 {
  padding-right: 320px;
}

.m-right-320 {
  margin-right: 320px;
}

.p-bottom-320 {
  padding-bottom: 320px;
}

.m-bottom-320 {
  margin-bottom: 320px;
}

.p-left-320 {
  padding-left: 320px;
}

.m-left-320 {
  margin-left: 320px;
}

.p-top-325 {
  padding-top: 325px;
}

.m-top-325 {
  margin-top: 325px;
}

.p-right-325 {
  padding-right: 325px;
}

.m-right-325 {
  margin-right: 325px;
}

.p-bottom-325 {
  padding-bottom: 325px;
}

.m-bottom-325 {
  margin-bottom: 325px;
}

.p-left-325 {
  padding-left: 325px;
}

.m-left-325 {
  margin-left: 325px;
}

.p-top-330 {
  padding-top: 330px;
}

.m-top-330 {
  margin-top: 330px;
}

.p-right-330 {
  padding-right: 330px;
}

.m-right-330 {
  margin-right: 330px;
}

.p-bottom-330 {
  padding-bottom: 330px;
}

.m-bottom-330 {
  margin-bottom: 330px;
}

.p-left-330 {
  padding-left: 330px;
}

.m-left-330 {
  margin-left: 330px;
}

.p-top-335 {
  padding-top: 335px;
}

.m-top-335 {
  margin-top: 335px;
}

.p-right-335 {
  padding-right: 335px;
}

.m-right-335 {
  margin-right: 335px;
}

.p-bottom-335 {
  padding-bottom: 335px;
}

.m-bottom-335 {
  margin-bottom: 335px;
}

.p-left-335 {
  padding-left: 335px;
}

.m-left-335 {
  margin-left: 335px;
}

.p-top-340 {
  padding-top: 340px;
}

.m-top-340 {
  margin-top: 340px;
}

.p-right-340 {
  padding-right: 340px;
}

.m-right-340 {
  margin-right: 340px;
}

.p-bottom-340 {
  padding-bottom: 340px;
}

.m-bottom-340 {
  margin-bottom: 340px;
}

.p-left-340 {
  padding-left: 340px;
}

.m-left-340 {
  margin-left: 340px;
}

.p-top-345 {
  padding-top: 345px;
}

.m-top-345 {
  margin-top: 345px;
}

.p-right-345 {
  padding-right: 345px;
}

.m-right-345 {
  margin-right: 345px;
}

.p-bottom-345 {
  padding-bottom: 345px;
}

.m-bottom-345 {
  margin-bottom: 345px;
}

.p-left-345 {
  padding-left: 345px;
}

.m-left-345 {
  margin-left: 345px;
}

.p-top-350 {
  padding-top: 350px;
}

.m-top-350 {
  margin-top: 350px;
}

.p-right-350 {
  padding-right: 350px;
}

.m-right-350 {
  margin-right: 350px;
}

.p-bottom-350 {
  padding-bottom: 350px;
}

.m-bottom-350 {
  margin-bottom: 350px;
}

.p-left-350 {
  padding-left: 350px;
}

.m-left-350 {
  margin-left: 350px;
}

.p-top-355 {
  padding-top: 355px;
}

.m-top-355 {
  margin-top: 355px;
}

.p-right-355 {
  padding-right: 355px;
}

.m-right-355 {
  margin-right: 355px;
}

.p-bottom-355 {
  padding-bottom: 355px;
}

.m-bottom-355 {
  margin-bottom: 355px;
}

.p-left-355 {
  padding-left: 355px;
}

.m-left-355 {
  margin-left: 355px;
}

.p-top-360 {
  padding-top: 360px;
}

.m-top-360 {
  margin-top: 360px;
}

.p-right-360 {
  padding-right: 360px;
}

.m-right-360 {
  margin-right: 360px;
}

.p-bottom-360 {
  padding-bottom: 360px;
}

.m-bottom-360 {
  margin-bottom: 360px;
}

.p-left-360 {
  padding-left: 360px;
}

.m-left-360 {
  margin-left: 360px;
}

.p-top-365 {
  padding-top: 365px;
}

.m-top-365 {
  margin-top: 365px;
}

.p-right-365 {
  padding-right: 365px;
}

.m-right-365 {
  margin-right: 365px;
}

.p-bottom-365 {
  padding-bottom: 365px;
}

.m-bottom-365 {
  margin-bottom: 365px;
}

.p-left-365 {
  padding-left: 365px;
}

.m-left-365 {
  margin-left: 365px;
}

.p-top-370 {
  padding-top: 370px;
}

.m-top-370 {
  margin-top: 370px;
}

.p-right-370 {
  padding-right: 370px;
}

.m-right-370 {
  margin-right: 370px;
}

.p-bottom-370 {
  padding-bottom: 370px;
}

.m-bottom-370 {
  margin-bottom: 370px;
}

.p-left-370 {
  padding-left: 370px;
}

.m-left-370 {
  margin-left: 370px;
}

.p-top-375 {
  padding-top: 375px;
}

.m-top-375 {
  margin-top: 375px;
}

.p-right-375 {
  padding-right: 375px;
}

.m-right-375 {
  margin-right: 375px;
}

.p-bottom-375 {
  padding-bottom: 375px;
}

.m-bottom-375 {
  margin-bottom: 375px;
}

.p-left-375 {
  padding-left: 375px;
}

.m-left-375 {
  margin-left: 375px;
}

.p-top-380 {
  padding-top: 380px;
}

.m-top-380 {
  margin-top: 380px;
}

.p-right-380 {
  padding-right: 380px;
}

.m-right-380 {
  margin-right: 380px;
}

.p-bottom-380 {
  padding-bottom: 380px;
}

.m-bottom-380 {
  margin-bottom: 380px;
}

.p-left-380 {
  padding-left: 380px;
}

.m-left-380 {
  margin-left: 380px;
}

.p-top-385 {
  padding-top: 385px;
}

.m-top-385 {
  margin-top: 385px;
}

.p-right-385 {
  padding-right: 385px;
}

.m-right-385 {
  margin-right: 385px;
}

.p-bottom-385 {
  padding-bottom: 385px;
}

.m-bottom-385 {
  margin-bottom: 385px;
}

.p-left-385 {
  padding-left: 385px;
}

.m-left-385 {
  margin-left: 385px;
}

.p-top-390 {
  padding-top: 390px;
}

.m-top-390 {
  margin-top: 390px;
}

.p-right-390 {
  padding-right: 390px;
}

.m-right-390 {
  margin-right: 390px;
}

.p-bottom-390 {
  padding-bottom: 390px;
}

.m-bottom-390 {
  margin-bottom: 390px;
}

.p-left-390 {
  padding-left: 390px;
}

.m-left-390 {
  margin-left: 390px;
}

.p-top-395 {
  padding-top: 395px;
}

.m-top-395 {
  margin-top: 395px;
}

.p-right-395 {
  padding-right: 395px;
}

.m-right-395 {
  margin-right: 395px;
}

.p-bottom-395 {
  padding-bottom: 395px;
}

.m-bottom-395 {
  margin-bottom: 395px;
}

.p-left-395 {
  padding-left: 395px;
}

.m-left-395 {
  margin-left: 395px;
}

.p-top-400 {
  padding-top: 400px;
}

.m-top-400 {
  margin-top: 400px;
}

.p-right-400 {
  padding-right: 400px;
}

.m-right-400 {
  margin-right: 400px;
}

.p-bottom-400 {
  padding-bottom: 400px;
}

.m-bottom-400 {
  margin-bottom: 400px;
}

.p-left-400 {
  padding-left: 400px;
}

.m-left-400 {
  margin-left: 400px;
}

.p-top-405 {
  padding-top: 405px;
}

.m-top-405 {
  margin-top: 405px;
}

.p-right-405 {
  padding-right: 405px;
}

.m-right-405 {
  margin-right: 405px;
}

.p-bottom-405 {
  padding-bottom: 405px;
}

.m-bottom-405 {
  margin-bottom: 405px;
}

.p-left-405 {
  padding-left: 405px;
}

.m-left-405 {
  margin-left: 405px;
}

.p-top-410 {
  padding-top: 410px;
}

.m-top-410 {
  margin-top: 410px;
}

.p-right-410 {
  padding-right: 410px;
}

.m-right-410 {
  margin-right: 410px;
}

.p-bottom-410 {
  padding-bottom: 410px;
}

.m-bottom-410 {
  margin-bottom: 410px;
}

.p-left-410 {
  padding-left: 410px;
}

.m-left-410 {
  margin-left: 410px;
}

.p-top-415 {
  padding-top: 415px;
}

.m-top-415 {
  margin-top: 415px;
}

.p-right-415 {
  padding-right: 415px;
}

.m-right-415 {
  margin-right: 415px;
}

.p-bottom-415 {
  padding-bottom: 415px;
}

.m-bottom-415 {
  margin-bottom: 415px;
}

.p-left-415 {
  padding-left: 415px;
}

.m-left-415 {
  margin-left: 415px;
}

.p-top-420 {
  padding-top: 420px;
}

.m-top-420 {
  margin-top: 420px;
}

.p-right-420 {
  padding-right: 420px;
}

.m-right-420 {
  margin-right: 420px;
}

.p-bottom-420 {
  padding-bottom: 420px;
}

.m-bottom-420 {
  margin-bottom: 420px;
}

.p-left-420 {
  padding-left: 420px;
}

.m-left-420 {
  margin-left: 420px;
}

.p-top-425 {
  padding-top: 425px;
}

.m-top-425 {
  margin-top: 425px;
}

.p-right-425 {
  padding-right: 425px;
}

.m-right-425 {
  margin-right: 425px;
}

.p-bottom-425 {
  padding-bottom: 425px;
}

.m-bottom-425 {
  margin-bottom: 425px;
}

.p-left-425 {
  padding-left: 425px;
}

.m-left-425 {
  margin-left: 425px;
}

.p-top-430 {
  padding-top: 430px;
}

.m-top-430 {
  margin-top: 430px;
}

.p-right-430 {
  padding-right: 430px;
}

.m-right-430 {
  margin-right: 430px;
}

.p-bottom-430 {
  padding-bottom: 430px;
}

.m-bottom-430 {
  margin-bottom: 430px;
}

.p-left-430 {
  padding-left: 430px;
}

.m-left-430 {
  margin-left: 430px;
}

.p-top-435 {
  padding-top: 435px;
}

.m-top-435 {
  margin-top: 435px;
}

.p-right-435 {
  padding-right: 435px;
}

.m-right-435 {
  margin-right: 435px;
}

.p-bottom-435 {
  padding-bottom: 435px;
}

.m-bottom-435 {
  margin-bottom: 435px;
}

.p-left-435 {
  padding-left: 435px;
}

.m-left-435 {
  margin-left: 435px;
}

.p-top-440 {
  padding-top: 440px;
}

.m-top-440 {
  margin-top: 440px;
}

.p-right-440 {
  padding-right: 440px;
}

.m-right-440 {
  margin-right: 440px;
}

.p-bottom-440 {
  padding-bottom: 440px;
}

.m-bottom-440 {
  margin-bottom: 440px;
}

.p-left-440 {
  padding-left: 440px;
}

.m-left-440 {
  margin-left: 440px;
}

.p-top-445 {
  padding-top: 445px;
}

.m-top-445 {
  margin-top: 445px;
}

.p-right-445 {
  padding-right: 445px;
}

.m-right-445 {
  margin-right: 445px;
}

.p-bottom-445 {
  padding-bottom: 445px;
}

.m-bottom-445 {
  margin-bottom: 445px;
}

.p-left-445 {
  padding-left: 445px;
}

.m-left-445 {
  margin-left: 445px;
}

.p-top-450 {
  padding-top: 450px;
}

.m-top-450 {
  margin-top: 450px;
}

.p-right-450 {
  padding-right: 450px;
}

.m-right-450 {
  margin-right: 450px;
}

.p-bottom-450 {
  padding-bottom: 450px;
}

.m-bottom-450 {
  margin-bottom: 450px;
}

.p-left-450 {
  padding-left: 450px;
}

.m-left-450 {
  margin-left: 450px;
}

.p-top-455 {
  padding-top: 455px;
}

.m-top-455 {
  margin-top: 455px;
}

.p-right-455 {
  padding-right: 455px;
}

.m-right-455 {
  margin-right: 455px;
}

.p-bottom-455 {
  padding-bottom: 455px;
}

.m-bottom-455 {
  margin-bottom: 455px;
}

.p-left-455 {
  padding-left: 455px;
}

.m-left-455 {
  margin-left: 455px;
}

.p-top-460 {
  padding-top: 460px;
}

.m-top-460 {
  margin-top: 460px;
}

.p-right-460 {
  padding-right: 460px;
}

.m-right-460 {
  margin-right: 460px;
}

.p-bottom-460 {
  padding-bottom: 460px;
}

.m-bottom-460 {
  margin-bottom: 460px;
}

.p-left-460 {
  padding-left: 460px;
}

.m-left-460 {
  margin-left: 460px;
}

.p-top-465 {
  padding-top: 465px;
}

.m-top-465 {
  margin-top: 465px;
}

.p-right-465 {
  padding-right: 465px;
}

.m-right-465 {
  margin-right: 465px;
}

.p-bottom-465 {
  padding-bottom: 465px;
}

.m-bottom-465 {
  margin-bottom: 465px;
}

.p-left-465 {
  padding-left: 465px;
}

.m-left-465 {
  margin-left: 465px;
}

.p-top-470 {
  padding-top: 470px;
}

.m-top-470 {
  margin-top: 470px;
}

.p-right-470 {
  padding-right: 470px;
}

.m-right-470 {
  margin-right: 470px;
}

.p-bottom-470 {
  padding-bottom: 470px;
}

.m-bottom-470 {
  margin-bottom: 470px;
}

.p-left-470 {
  padding-left: 470px;
}

.m-left-470 {
  margin-left: 470px;
}

.p-top-475 {
  padding-top: 475px;
}

.m-top-475 {
  margin-top: 475px;
}

.p-right-475 {
  padding-right: 475px;
}

.m-right-475 {
  margin-right: 475px;
}

.p-bottom-475 {
  padding-bottom: 475px;
}

.m-bottom-475 {
  margin-bottom: 475px;
}

.p-left-475 {
  padding-left: 475px;
}

.m-left-475 {
  margin-left: 475px;
}

.p-top-480 {
  padding-top: 480px;
}

.m-top-480 {
  margin-top: 480px;
}

.p-right-480 {
  padding-right: 480px;
}

.m-right-480 {
  margin-right: 480px;
}

.p-bottom-480 {
  padding-bottom: 480px;
}

.m-bottom-480 {
  margin-bottom: 480px;
}

.p-left-480 {
  padding-left: 480px;
}

.m-left-480 {
  margin-left: 480px;
}

.p-top-485 {
  padding-top: 485px;
}

.m-top-485 {
  margin-top: 485px;
}

.p-right-485 {
  padding-right: 485px;
}

.m-right-485 {
  margin-right: 485px;
}

.p-bottom-485 {
  padding-bottom: 485px;
}

.m-bottom-485 {
  margin-bottom: 485px;
}

.p-left-485 {
  padding-left: 485px;
}

.m-left-485 {
  margin-left: 485px;
}

.p-top-490 {
  padding-top: 490px;
}

.m-top-490 {
  margin-top: 490px;
}

.p-right-490 {
  padding-right: 490px;
}

.m-right-490 {
  margin-right: 490px;
}

.p-bottom-490 {
  padding-bottom: 490px;
}

.m-bottom-490 {
  margin-bottom: 490px;
}

.p-left-490 {
  padding-left: 490px;
}

.m-left-490 {
  margin-left: 490px;
}

.p-top-495 {
  padding-top: 495px;
}

.m-top-495 {
  margin-top: 495px;
}

.p-right-495 {
  padding-right: 495px;
}

.m-right-495 {
  margin-right: 495px;
}

.p-bottom-495 {
  padding-bottom: 495px;
}

.m-bottom-495 {
  margin-bottom: 495px;
}

.p-left-495 {
  padding-left: 495px;
}

.m-left-495 {
  margin-left: 495px;
}

.p-top-500 {
  padding-top: 500px;
}

.m-top-500 {
  margin-top: 500px;
}

.p-right-500 {
  padding-right: 500px;
}

.m-right-500 {
  margin-right: 500px;
}

.p-bottom-500 {
  padding-bottom: 500px;
}

.m-bottom-500 {
  margin-bottom: 500px;
}

.p-left-500 {
  padding-left: 500px;
}

.m-left-500 {
  margin-left: 500px;
}

.label.green-success {
  background-color: #10795f;
  padding-left: 0.8em;
  padding-top: 0.3em;
}

.input-md-addon-width {
  width: 315px;
}

.width-100 {
  width: 100%;
}

.flex {
  display: flex;
}

.page-container__container {
  display: flex;
}

.page-container__side-info {
  margin-left: auto;
  margin-right: 0;
  padding-left: 15px;
}

.inherited-text {
  font-weight: normal;
  color: #666666;
}

/*!
 * 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;
  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 {
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type=checkbox],
input[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

input[type=search] {
  -webkit-appearance: textfield;
  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;
    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;
  }
}
* {
  -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: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.428571429;
  color: #1f1f1f;
  background-color: #fff;
}

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

a {
  color: #00748d;
  text-decoration: none;
}
a:hover, a:focus {
  color: #b13900;
  text-decoration: underline;
}
a:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

figure {
  margin: 0;
}

img {
  vertical-align: middle;
}

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

.img-rounded {
  border-radius: 0px;
}

.img-thumbnail {
  padding: 4px;
  line-height: 1.428571429;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 0px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto;
}

.img-circle {
  border-radius: 50%;
}

hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #f5f7f8;
}

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

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

[role=button] {
  cursor: pointer;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}
h1 small,
h1 .small, h2 small,
h2 .small, h3 small,
h3 .small, h4 small,
h4 .small, h5 small,
h5 .small, h6 small,
h6 .small,
.h1 small,
.h1 .small, .h2 small,
.h2 .small, .h3 small,
.h3 .small, .h4 small,
.h4 .small, .h5 small,
.h5 .small, .h6 small,
.h6 .small {
  font-weight: 400;
  line-height: 1;
  color: #ced6da;
}

h1, .h1,
h2, .h2,
h3, .h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}
h1 small,
h1 .small, .h1 small,
.h1 .small,
h2 small,
h2 .small, .h2 small,
.h2 .small,
h3 small,
h3 .small, .h3 small,
.h3 .small {
  font-size: 65%;
}

h4, .h4,
h5, .h5,
h6, .h6 {
  margin-top: 10px;
  margin-bottom: 10px;
}
h4 small,
h4 .small, .h4 small,
.h4 .small,
h5 small,
h5 .small, .h5 small,
.h5 .small,
h6 small,
h6 .small, .h6 small,
.h6 .small {
  font-size: 75%;
}

h1, .h1 {
  font-size: 28px;
}

h2, .h2 {
  font-size: 22px;
}

h3, .h3 {
  font-size: 18px;
}

h4, .h4 {
  font-size: 16px;
}

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: 940px) {
  .lead {
    font-size: 21px;
  }
}

small,
.small {
  font-size: 85%;
}

mark,
.mark {
  padding: 0.2em;
  background-color: #fcecd2;
}

.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, .initialism {
  text-transform: uppercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.text-muted {
  color: #ced6da;
}

.text-primary {
  color: #313b52;
}

a.text-primary:hover,
a.text-primary:focus {
  color: rgb(29.9236641221, 36.0305343511, 50.0763358779);
}

.text-success {
  color: #14635e;
}

a.text-success:hover,
a.text-success:focus {
  color: rgb(11.4285714286, 56.5714285714, 53.7142857143);
}

.text-info {
  color: #00748d;
}

a.text-info:hover,
a.text-info:focus {
  color: rgb(0, 74.0425531915, 90);
}

.text-warning {
  color: #8e5300;
}

a.text-warning:hover,
a.text-warning:focus {
  color: rgb(91, 53.1901408451, 0);
}

.text-danger {
  color: #b12a1f;
}

a.text-danger:hover,
a.text-danger:focus {
  color: rgb(133.6009615385, 31.7019230769, 23.3990384615);
}

.bg-primary {
  color: #fff;
}

.bg-primary {
  background-color: #313b52;
}

a.bg-primary:hover,
a.bg-primary:focus {
  background-color: rgb(29.9236641221, 36.0305343511, 50.0763358779);
}

.bg-success {
  background-color: #edfbfa;
}

a.bg-success:hover,
a.bg-success:focus {
  background-color: rgb(195.2727272727, 241.7272727273, 238.4090909091);
}

.bg-info {
  background-color: #eefbff;
}

a.bg-info:hover,
a.bg-info:focus {
  background-color: #bbefff;
}

.bg-warning {
  background-color: #fcecd2;
}

a.bg-warning:hover,
a.bg-warning:focus {
  background-color: rgb(248.8125, 215.8125, 162.1875);
}

.bg-danger {
  background-color: #f5dcd9;
}

a.bg-danger:hover,
a.bg-danger:focus {
  background-color: rgb(234.375, 182.8125, 176.625);
}

.page-header {
  padding-bottom: 9px;
  margin: 40px 0 20px;
  border-bottom: 1px solid #f5f7f8;
}

ul,
ol {
  margin-top: 0;
  margin-bottom: 10px;
}
ul ul,
ul ol,
ol ul,
ol ol {
  margin-bottom: 0;
}

.list-unstyled, .response-radio {
  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.428571429;
}

dt {
  font-weight: 700;
}

dd {
  margin-left: 0;
}

.dl-horizontal dd:before, .dl-horizontal dd:after {
  display: table;
  content: " ";
}
.dl-horizontal dd:after {
  clear: both;
}
@media (min-width: 940px) {
  .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%;
}

blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  font-size: 17.5px;
  border-left: 5px solid #f5f7f8;
}
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.428571429;
  color: #ced6da;
}
blockquote footer:before,
blockquote small:before,
blockquote .small:before {
  content: "— ";
}

.blockquote-reverse,
blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  text-align: right;
  border-right: 5px solid #f5f7f8;
  border-left: 0;
}
.blockquote-reverse footer:before,
.blockquote-reverse small:before,
.blockquote-reverse .small:before,
blockquote.pull-right footer:before,
blockquote.pull-right small:before,
blockquote.pull-right .small:before {
  content: "";
}
.blockquote-reverse footer:after,
.blockquote-reverse small:after,
.blockquote-reverse .small:after,
blockquote.pull-right footer:after,
blockquote.pull-right small:after,
blockquote.pull-right .small:after {
  content: " —";
}

address {
  margin-bottom: 20px;
  font-style: normal;
  line-height: 1.428571429;
}

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: 2px;
}

kbd {
  padding: 2px 4px;
  font-size: 90%;
  color: #fff;
  background-color: #333;
  border-radius: 0px;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
}
kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: 700;
  box-shadow: none;
}

pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.428571429;
  color: #1f1f1f;
  word-break: break-all;
  word-wrap: break-word;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 2px;
}
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, .psm-container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.container:before, .psm-container:before, .container:after, .psm-container:after {
  display: table;
  content: " ";
}
.container:after, .psm-container:after {
  clear: both;
}
@media (min-width: 940px) {
  .container, .psm-container {
    width: 750px;
  }
}
@media (min-width: 940px) {
  .container, .psm-container {
    width: 940px;
  }
}
@media (min-width: 1200px) {
  .container, .psm-container {
    width: 1200px;
  }
}

.container-fluid {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.container-fluid:before, .container-fluid:after {
  display: table;
  content: " ";
}
.container-fluid:after {
  clear: both;
}

.row {
  margin-right: -15px;
  margin-left: -15px;
}
.row:before, .row:after {
  display: table;
  content: " ";
}
.row:after {
  clear: both;
}

.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-1 {
  width: 8.3333333333%;
}

.col-xs-2 {
  width: 16.6666666667%;
}

.col-xs-3 {
  width: 25%;
}

.col-xs-4 {
  width: 33.3333333333%;
}

.col-xs-5 {
  width: 41.6666666667%;
}

.col-xs-6 {
  width: 50%;
}

.col-xs-7 {
  width: 58.3333333333%;
}

.col-xs-8 {
  width: 66.6666666667%;
}

.col-xs-9 {
  width: 75%;
}

.col-xs-10 {
  width: 83.3333333333%;
}

.col-xs-11 {
  width: 91.6666666667%;
}

.col-xs-12 {
  width: 100%;
}

.col-xs-pull-0 {
  right: auto;
}

.col-xs-pull-1 {
  right: 8.3333333333%;
}

.col-xs-pull-2 {
  right: 16.6666666667%;
}

.col-xs-pull-3 {
  right: 25%;
}

.col-xs-pull-4 {
  right: 33.3333333333%;
}

.col-xs-pull-5 {
  right: 41.6666666667%;
}

.col-xs-pull-6 {
  right: 50%;
}

.col-xs-pull-7 {
  right: 58.3333333333%;
}

.col-xs-pull-8 {
  right: 66.6666666667%;
}

.col-xs-pull-9 {
  right: 75%;
}

.col-xs-pull-10 {
  right: 83.3333333333%;
}

.col-xs-pull-11 {
  right: 91.6666666667%;
}

.col-xs-pull-12 {
  right: 100%;
}

.col-xs-push-0 {
  left: auto;
}

.col-xs-push-1 {
  left: 8.3333333333%;
}

.col-xs-push-2 {
  left: 16.6666666667%;
}

.col-xs-push-3 {
  left: 25%;
}

.col-xs-push-4 {
  left: 33.3333333333%;
}

.col-xs-push-5 {
  left: 41.6666666667%;
}

.col-xs-push-6 {
  left: 50%;
}

.col-xs-push-7 {
  left: 58.3333333333%;
}

.col-xs-push-8 {
  left: 66.6666666667%;
}

.col-xs-push-9 {
  left: 75%;
}

.col-xs-push-10 {
  left: 83.3333333333%;
}

.col-xs-push-11 {
  left: 91.6666666667%;
}

.col-xs-push-12 {
  left: 100%;
}

.col-xs-offset-0 {
  margin-left: 0%;
}

.col-xs-offset-1 {
  margin-left: 8.3333333333%;
}

.col-xs-offset-2 {
  margin-left: 16.6666666667%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-offset-4 {
  margin-left: 33.3333333333%;
}

.col-xs-offset-5 {
  margin-left: 41.6666666667%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-offset-7 {
  margin-left: 58.3333333333%;
}

.col-xs-offset-8 {
  margin-left: 66.6666666667%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-offset-10 {
  margin-left: 83.3333333333%;
}

.col-xs-offset-11 {
  margin-left: 91.6666666667%;
}

.col-xs-offset-12 {
  margin-left: 100%;
}

@media (min-width: 940px) {
  .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-1 {
    width: 8.3333333333%;
  }
  .col-sm-2 {
    width: 16.6666666667%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-4 {
    width: 33.3333333333%;
  }
  .col-sm-5 {
    width: 41.6666666667%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-7 {
    width: 58.3333333333%;
  }
  .col-sm-8 {
    width: 66.6666666667%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-10 {
    width: 83.3333333333%;
  }
  .col-sm-11 {
    width: 91.6666666667%;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-pull-1 {
    right: 8.3333333333%;
  }
  .col-sm-pull-2 {
    right: 16.6666666667%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-4 {
    right: 33.3333333333%;
  }
  .col-sm-pull-5 {
    right: 41.6666666667%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-7 {
    right: 58.3333333333%;
  }
  .col-sm-pull-8 {
    right: 66.6666666667%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-10 {
    right: 83.3333333333%;
  }
  .col-sm-pull-11 {
    right: 91.6666666667%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-push-1 {
    left: 8.3333333333%;
  }
  .col-sm-push-2 {
    left: 16.6666666667%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-4 {
    left: 33.3333333333%;
  }
  .col-sm-push-5 {
    left: 41.6666666667%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-7 {
    left: 58.3333333333%;
  }
  .col-sm-push-8 {
    left: 66.6666666667%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-10 {
    left: 83.3333333333%;
  }
  .col-sm-push-11 {
    left: 91.6666666667%;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-offset-0 {
    margin-left: 0%;
  }
  .col-sm-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-sm-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-sm-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-sm-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-sm-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 940px) {
  .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-1 {
    width: 8.3333333333%;
  }
  .col-md-2 {
    width: 16.6666666667%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-4 {
    width: 33.3333333333%;
  }
  .col-md-5 {
    width: 41.6666666667%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-7 {
    width: 58.3333333333%;
  }
  .col-md-8 {
    width: 66.6666666667%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-10 {
    width: 83.3333333333%;
  }
  .col-md-11 {
    width: 91.6666666667%;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-pull-1 {
    right: 8.3333333333%;
  }
  .col-md-pull-2 {
    right: 16.6666666667%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-4 {
    right: 33.3333333333%;
  }
  .col-md-pull-5 {
    right: 41.6666666667%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-7 {
    right: 58.3333333333%;
  }
  .col-md-pull-8 {
    right: 66.6666666667%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-10 {
    right: 83.3333333333%;
  }
  .col-md-pull-11 {
    right: 91.6666666667%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-push-1 {
    left: 8.3333333333%;
  }
  .col-md-push-2 {
    left: 16.6666666667%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-4 {
    left: 33.3333333333%;
  }
  .col-md-push-5 {
    left: 41.6666666667%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-7 {
    left: 58.3333333333%;
  }
  .col-md-push-8 {
    left: 66.6666666667%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-10 {
    left: 83.3333333333%;
  }
  .col-md-push-11 {
    left: 91.6666666667%;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-offset-0 {
    margin-left: 0%;
  }
  .col-md-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-md-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-md-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-md-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-md-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
}
@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-1 {
    width: 8.3333333333%;
  }
  .col-lg-2 {
    width: 16.6666666667%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-4 {
    width: 33.3333333333%;
  }
  .col-lg-5 {
    width: 41.6666666667%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-7 {
    width: 58.3333333333%;
  }
  .col-lg-8 {
    width: 66.6666666667%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-10 {
    width: 83.3333333333%;
  }
  .col-lg-11 {
    width: 91.6666666667%;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-lg-pull-1 {
    right: 8.3333333333%;
  }
  .col-lg-pull-2 {
    right: 16.6666666667%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-4 {
    right: 33.3333333333%;
  }
  .col-lg-pull-5 {
    right: 41.6666666667%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-7 {
    right: 58.3333333333%;
  }
  .col-lg-pull-8 {
    right: 66.6666666667%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-10 {
    right: 83.3333333333%;
  }
  .col-lg-pull-11 {
    right: 91.6666666667%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-lg-push-1 {
    left: 8.3333333333%;
  }
  .col-lg-push-2 {
    left: 16.6666666667%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-4 {
    left: 33.3333333333%;
  }
  .col-lg-push-5 {
    left: 41.6666666667%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-7 {
    left: 58.3333333333%;
  }
  .col-lg-push-8 {
    left: 66.6666666667%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-10 {
    left: 83.3333333333%;
  }
  .col-lg-push-11 {
    left: 91.6666666667%;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-offset-0 {
    margin-left: 0%;
  }
  .col-lg-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-lg-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-lg-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-lg-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-lg-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
}
table {
  background-color: #f5f7f8;
}
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: 10px;
  padding-bottom: 10px;
  color: #ced6da;
  text-align: left;
}

th {
  text-align: left;
}

.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}
.table > thead > tr > th,
.table > thead > tr > td,
.table > tbody > tr > th,
.table > tbody > tr > td,
.table > tfoot > tr > th,
.table > tfoot > tr > td {
  padding: 10px;
  line-height: 1.428571429;
  vertical-align: top;
  border-top: 1px solid #ced6da;
}
.table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #ced6da;
}
.table > caption + thead > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > th,
.table > thead:first-child > tr:first-child > td {
  border-top: 0;
}
.table > tbody + tbody {
  border-top: 2px solid #ced6da;
}
.table .table {
  background-color: #fff;
}

.table-condensed > thead > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > th,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > th,
.table-condensed > tfoot > tr > td {
  padding: 4px;
}

.table-bordered {
  border: 1px solid #ced6da;
}
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > th,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > th,
.table-bordered > tfoot > tr > td {
  border: 1px solid #ced6da;
}
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
  border-bottom-width: 2px;
}

.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #fff;
}

.table-hover > tbody > tr:hover {
  background-color: #ecf0f1;
}

.table > thead > tr > td.active,
.table > thead > tr > th.active, .table > thead > tr.active > td, .table > thead > tr.active > th,
.table > tbody > tr > td.active,
.table > tbody > tr > th.active,
.table > tbody > tr.active > td,
.table > tbody > tr.active > th,
.table > tfoot > tr > td.active,
.table > tfoot > tr > th.active,
.table > tfoot > tr.active > td,
.table > tfoot > tr.active > th {
  background-color: #ecf0f1;
}

.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: rgb(221.3181818182, 228.4090909091, 230.1818181818);
}

.table > thead > tr > td.success,
.table > thead > tr > th.success, .table > thead > tr.success > td, .table > thead > tr.success > th,
.table > tbody > tr > td.success,
.table > tbody > tr > th.success,
.table > tbody > tr.success > td,
.table > tbody > tr.success > th,
.table > tfoot > tr > td.success,
.table > tfoot > tr > th.success,
.table > tfoot > tr.success > td,
.table > tfoot > tr.success > th {
  background-color: #edfbfa;
}

.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: rgb(216.1363636364, 246.3636363636, 244.2045454545);
}

.table > thead > tr > td.info,
.table > thead > tr > th.info, .table > thead > tr.info > td, .table > thead > tr.info > th,
.table > tbody > tr > td.info,
.table > tbody > tr > th.info,
.table > tbody > tr.info > td,
.table > tbody > tr.info > th,
.table > tfoot > tr > td.info,
.table > tfoot > tr > th.info,
.table > tfoot > tr.info > td,
.table > tfoot > tr.info > th {
  background-color: #eefbff;
}

.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: rgb(212.5, 245, 255);
}

.table > thead > tr > td.warning,
.table > thead > tr > th.warning, .table > thead > tr.warning > td, .table > thead > tr.warning > th,
.table > tbody > tr > td.warning,
.table > tbody > tr > th.warning,
.table > tbody > tr.warning > td,
.table > tbody > tr.warning > th,
.table > tfoot > tr > td.warning,
.table > tfoot > tr > th.warning,
.table > tfoot > tr.warning > td,
.table > tfoot > tr.warning > th {
  background-color: #fcecd2;
}

.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: rgb(250.40625, 225.90625, 186.09375);
}

.table > thead > tr > td.danger,
.table > thead > tr > th.danger, .table > thead > tr.danger > td, .table > thead > tr.danger > th,
.table > tbody > tr > td.danger,
.table > tbody > tr > th.danger,
.table > tbody > tr.danger > td,
.table > tbody > tr.danger > th,
.table > tfoot > tr > td.danger,
.table > tfoot > tr > th.danger,
.table > tfoot > tr.danger > td,
.table > tfoot > tr.danger > th {
  background-color: #f5dcd9;
}

.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: rgb(239.6875, 201.40625, 196.8125);
}

.table-responsive {
  min-height: 0.01%;
  overflow-x: auto;
}
@media screen and (max-width: 939px) {
  .table-responsive {
    width: 100%;
    margin-bottom: 15px;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #ced6da;
  }
  .table-responsive > .table {
    margin-bottom: 0;
  }
  .table-responsive > .table > thead > tr > th,
  .table-responsive > .table > thead > tr > td,
  .table-responsive > .table > tbody > tr > th,
  .table-responsive > .table > tbody > tr > td,
  .table-responsive > .table > tfoot > tr > th,
  .table-responsive > .table > tfoot > tr > td {
    white-space: nowrap;
  }
  .table-responsive > .table-bordered {
    border: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:first-child,
  .table-responsive > .table-bordered > thead > tr > td:first-child,
  .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:last-child,
  .table-responsive > .table-bordered > thead > tr > td:last-child,
  .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0;
  }
  .table-responsive > .table-bordered > tbody > tr:last-child > th,
  .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  .table-responsive > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0;
  }
}

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: #1f1f1f;
  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;
  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=radio].disabled, fieldset[disabled] input[type=radio],
input[type=checkbox][disabled],
input[type=checkbox].disabled,
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.428571429;
  color: rgb(85.425, 85.425, 85.425);
}

.form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.428571429;
  color: rgb(85.425, 85.425, 85.425);
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 0px;
  -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 0.15s, box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.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: #f5f7f8;
  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-group-sm > .input-group-btn > input[type=date].btn, .input-group-sm input[type=date],
  input[type=time].input-sm,
  .input-group-sm > .input-group-btn > input[type=time].btn,
  .input-group-sm input[type=time],
  input[type=datetime-local].input-sm,
  .input-group-sm > .input-group-btn > input[type=datetime-local].btn,
  .input-group-sm input[type=datetime-local],
  input[type=month].input-sm,
  .input-group-sm > .input-group-btn > input[type=month].btn,
  .input-group-sm input[type=month] {
    line-height: 30px;
  }
  input[type=date].input-lg,
  .input-group-lg > .input-group-btn > input[type=date].btn, .input-group-lg input[type=date],
  input[type=time].input-lg,
  .input-group-lg > .input-group-btn > input[type=time].btn,
  .input-group-lg input[type=time],
  input[type=datetime-local].input-lg,
  .input-group-lg > .input-group-btn > input[type=datetime-local].btn,
  .input-group-lg input[type=datetime-local],
  input[type=month].input-lg,
  .input-group-lg > .input-group-btn > input[type=month].btn,
  .input-group-lg input[type=month] {
    line-height: 40px;
  }
}
.form-group {
  margin-bottom: 15px;
}

.radio,
.checkbox {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}
.radio.disabled label, li.rbContainerDisabled > label.radio.ember-radio-button label, fieldset[disabled] .radio label,
.checkbox.disabled label,
li.rbContainerDisabled > label.checkbox.ember-radio-button 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, li.rbContainerDisabled > label.radio-inline.ember-radio-button, fieldset[disabled] .radio-inline,
.checkbox-inline.disabled,
li.rbContainerDisabled > label.checkbox-inline.ember-radio-button,
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, .input-group-lg > .form-control-static.form-control,
.input-group-lg > .form-control-static.input-group-addon,
.input-group-lg > .input-group-btn > .form-control-static.btn, .form-control-static.input-sm, .input-group-sm > .form-control-static.form-control,
.input-group-sm > .form-control-static.input-group-addon,
.input-group-sm > .input-group-btn > .form-control-static.btn {
  padding-right: 0;
  padding-left: 0;
}

.input-sm, .input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 0px;
}

select.input-sm, .input-group-sm > select.form-control,
.input-group-sm > select.input-group-addon,
.input-group-sm > .input-group-btn > select.btn {
  height: 30px;
  line-height: 30px;
}

textarea.input-sm, .input-group-sm > textarea.form-control,
.input-group-sm > textarea.input-group-addon,
.input-group-sm > .input-group-btn > textarea.btn,
select[multiple].input-sm,
.input-group-sm > select[multiple].form-control,
.input-group-sm > select[multiple].input-group-addon,
.input-group-sm > .input-group-btn > select[multiple].btn {
  height: auto;
}

.form-group-sm .form-control {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 0px;
}
.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, .input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
  height: 40px;
  padding: 7px 36px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 0px;
}

select.input-lg, .input-group-lg > select.form-control,
.input-group-lg > select.input-group-addon,
.input-group-lg > .input-group-btn > select.btn {
  height: 40px;
  line-height: 40px;
}

textarea.input-lg, .input-group-lg > textarea.form-control,
.input-group-lg > textarea.input-group-addon,
.input-group-lg > .input-group-btn > textarea.btn,
select[multiple].input-lg,
.input-group-lg > select[multiple].form-control,
.input-group-lg > select[multiple].input-group-addon,
.input-group-lg > .input-group-btn > select[multiple].btn {
  height: auto;
}

.form-group-lg .form-control {
  height: 40px;
  padding: 7px 36px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 0px;
}
.form-group-lg select.form-control {
  height: 40px;
  line-height: 40px;
}
.form-group-lg textarea.form-control,
.form-group-lg select[multiple].form-control {
  height: auto;
}
.form-group-lg .form-control-static {
  height: 40px;
  min-height: 38px;
  padding: 8px 36px;
  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 + .form-control-feedback,
.input-group-lg > .input-group-addon + .form-control-feedback,
.input-group-lg > .input-group-btn > .btn + .form-control-feedback,
.input-group-lg + .form-control-feedback,
.form-group-lg .form-control + .form-control-feedback {
  width: 40px;
  height: 40px;
  line-height: 40px;
}

.input-sm + .form-control-feedback, .input-group-sm > .form-control + .form-control-feedback,
.input-group-sm > .input-group-addon + .form-control-feedback,
.input-group-sm > .input-group-btn > .btn + .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: #14635e;
}
.has-success .form-control {
  border-color: #14635e;
  -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: rgb(11.4285714286, 56.5714285714, 53.7142857143);
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px rgb(37.1428571429, 183.8571428571, 174.5714285714);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px rgb(37.1428571429, 183.8571428571, 174.5714285714);
}
.has-success .input-group-addon {
  color: #14635e;
  background-color: #edfbfa;
  border-color: #14635e;
}
.has-success .form-control-feedback {
  color: #14635e;
}

.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: #8e5300;
}
.has-warning .form-control {
  border-color: #8e5300;
  -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: rgb(91, 53.1901408451, 0);
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px rgb(244, 142.6197183099, 0);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px rgb(244, 142.6197183099, 0);
}
.has-warning .input-group-addon {
  color: #8e5300;
  background-color: #fcecd2;
  border-color: #8e5300;
}
.has-warning .form-control-feedback {
  color: #8e5300;
}

.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: #b12a1f;
}
.has-error .form-control {
  border-color: #b12a1f;
  -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: rgb(133.6009615385, 31.7019230769, 23.3990384615);
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px rgb(225.1923076923, 95.3846153846, 84.8076923077);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px rgb(225.1923076923, 95.3846153846, 84.8076923077);
}
.has-error .input-group-addon {
  color: #b12a1f;
  background-color: #f5dcd9;
  border-color: #b12a1f;
}
.has-error .form-control-feedback {
  color: #b12a1f;
}

.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: rgb(94.75, 94.75, 94.75);
}

@media (min-width: 940px) {
  .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;
}
.form-horizontal .form-group:before, .form-horizontal .form-group:after {
  display: table;
  content: " ";
}
.form-horizontal .form-group:after {
  clear: both;
}
@media (min-width: 940px) {
  .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: 940px) {
  .form-horizontal .form-group-lg .control-label {
    padding-top: 8px;
    font-size: 18px;
  }
}
@media (min-width: 940px) {
  .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;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.428571429;
  border-radius: 0px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.btn:focus, .btn.focus, .btn:active:focus, .btn:active.focus, .btn.active:focus, .btn.active.focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.btn:hover, .btn:focus, .btn.focus {
  color: #1f1f1f;
  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, li.rbContainerDisabled > label.btn.ember-radio-button, .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: #1f1f1f;
  background-color: #fff;
  border-color: #ccc;
}
.btn-default:focus, .btn-default.focus {
  color: #1f1f1f;
  background-color: rgb(229.5, 229.5, 229.5);
  border-color: rgb(140.25, 140.25, 140.25);
}
.btn-default:hover {
  color: #1f1f1f;
  background-color: rgb(229.5, 229.5, 229.5);
  border-color: rgb(173.4, 173.4, 173.4);
}
.btn-default:active, .btn-default.active, .open > .btn-default.dropdown-toggle {
  color: #1f1f1f;
  background-color: rgb(229.5, 229.5, 229.5);
  background-image: none;
  border-color: rgb(173.4, 173.4, 173.4);
}
.btn-default:active:hover, .btn-default:active:focus, .btn-default:active.focus, .btn-default.active:hover, .btn-default.active:focus, .btn-default.active.focus, .open > .btn-default.dropdown-toggle:hover, .open > .btn-default.dropdown-toggle:focus, .open > .btn-default.dropdown-toggle.focus {
  color: #1f1f1f;
  background-color: rgb(211.65, 211.65, 211.65);
  border-color: rgb(140.25, 140.25, 140.25);
}
.btn-default.disabled:hover, li.rbContainerDisabled > label.btn-default.ember-radio-button:hover, .btn-default.disabled:focus, li.rbContainerDisabled > label.btn-default.ember-radio-button:focus, .btn-default.disabled.focus, li.rbContainerDisabled > label.btn-default.focus.ember-radio-button, .btn-default[disabled]:hover, .btn-default[disabled]:focus, .btn-default[disabled].focus, fieldset[disabled] .btn-default:hover, fieldset[disabled] .btn-default:focus, fieldset[disabled] .btn-default.focus {
  background-color: #fff;
  border-color: #ccc;
}
.btn-default .badge {
  color: #fff;
  background-color: #1f1f1f;
}

.btn-primary, .ember-power-select-trigger,
.ember-power-select-trigger:focus, .btn-primary-prop {
  color: #fff;
  background-color: #313b52;
  border-color: rgb(39.4618320611, 47.5152671756, 66.0381679389);
}
.btn-primary:focus, .ember-power-select-trigger:focus, .btn-primary-prop:focus, .btn-primary.focus, .focus.ember-power-select-trigger, .focus.btn-primary-prop {
  color: #fff;
  background-color: rgb(29.9236641221, 36.0305343511, 50.0763358779);
  border-color: black;
}
.btn-primary:hover, .ember-power-select-trigger:hover, .btn-primary-prop:hover {
  color: #fff;
  background-color: rgb(29.9236641221, 36.0305343511, 50.0763358779);
  border-color: rgb(16.5702290076, 19.9519083969, 27.7297709924);
}
.btn-primary:active, .ember-power-select-trigger:active, .btn-primary-prop:active, .btn-primary.active, .active.ember-power-select-trigger, .active.btn-primary-prop, .open > .btn-primary.dropdown-toggle, .open > .dropdown-toggle.ember-power-select-trigger, .open > .dropdown-toggle.btn-primary-prop {
  color: #fff;
  background-color: rgb(29.9236641221, 36.0305343511, 50.0763358779);
  background-image: none;
  border-color: rgb(16.5702290076, 19.9519083969, 27.7297709924);
}
.btn-primary:active:hover, .ember-power-select-trigger:active:hover, .btn-primary-prop:active:hover, .btn-primary:active:focus, .ember-power-select-trigger:active:focus, .btn-primary-prop:active:focus, .btn-primary:active.focus, .ember-power-select-trigger:active.focus, .btn-primary-prop:active.focus, .btn-primary.active:hover, .active.ember-power-select-trigger:hover, .active.btn-primary-prop:hover, .btn-primary.active:focus, .active.ember-power-select-trigger:focus, .active.btn-primary-prop:focus, .btn-primary.active.focus, .active.focus.ember-power-select-trigger, .active.focus.btn-primary-prop, .open > .btn-primary.dropdown-toggle:hover, .open > .dropdown-toggle.ember-power-select-trigger:hover, .open > .dropdown-toggle.btn-primary-prop:hover, .open > .btn-primary.dropdown-toggle:focus, .open > .dropdown-toggle.ember-power-select-trigger:focus, .open > .dropdown-toggle.btn-primary-prop:focus, .open > .btn-primary.dropdown-toggle.focus, .open > .dropdown-toggle.focus.ember-power-select-trigger, .open > .dropdown-toggle.focus.btn-primary-prop {
  color: #fff;
  background-color: rgb(16.5702290076, 19.9519083969, 27.7297709924);
  border-color: black;
}
.btn-primary.disabled:hover, li.rbContainerDisabled > label.btn-primary.ember-radio-button:hover, .disabled.ember-power-select-trigger:hover, li.rbContainerDisabled > label.ember-power-select-trigger.ember-radio-button:hover, .disabled.btn-primary-prop:hover, li.rbContainerDisabled > label.btn-primary-prop.ember-radio-button:hover, .btn-primary.disabled:focus, li.rbContainerDisabled > label.btn-primary.ember-radio-button:focus, .disabled.ember-power-select-trigger:focus, li.rbContainerDisabled > label.ember-power-select-trigger.ember-radio-button:focus, .disabled.btn-primary-prop:focus, li.rbContainerDisabled > label.btn-primary-prop.ember-radio-button:focus, .btn-primary.disabled.focus, li.rbContainerDisabled > label.btn-primary.focus.ember-radio-button, .disabled.focus.ember-power-select-trigger, li.rbContainerDisabled > label.focus.ember-power-select-trigger.ember-radio-button, .disabled.focus.btn-primary-prop, li.rbContainerDisabled > label.focus.btn-primary-prop.ember-radio-button, .btn-primary[disabled]:hover, [disabled].ember-power-select-trigger:hover, [disabled].btn-primary-prop:hover, .btn-primary[disabled]:focus, [disabled].ember-power-select-trigger:focus, [disabled].btn-primary-prop:focus, .btn-primary[disabled].focus, [disabled].focus.ember-power-select-trigger, [disabled].focus.btn-primary-prop, fieldset[disabled] .btn-primary:hover, fieldset[disabled] .ember-power-select-trigger:hover, fieldset[disabled] .btn-primary-prop:hover, fieldset[disabled] .btn-primary:focus, fieldset[disabled] .ember-power-select-trigger:focus, fieldset[disabled] .btn-primary-prop:focus, fieldset[disabled] .btn-primary.focus, fieldset[disabled] .focus.ember-power-select-trigger, fieldset[disabled] .focus.btn-primary-prop {
  background-color: #313b52;
  border-color: rgb(39.4618320611, 47.5152671756, 66.0381679389);
}
.btn-primary .badge, .ember-power-select-trigger .badge, .btn-primary-prop .badge {
  color: #313b52;
  background-color: #fff;
}

.btn-success {
  color: #fff;
  background-color: #00748d;
  border-color: rgb(0, 95.0212765957, 115.5);
}
.btn-success:focus, .btn-success.focus {
  color: #fff;
  background-color: rgb(0, 74.0425531915, 90);
  border-color: black;
}
.btn-success:hover {
  color: #fff;
  background-color: rgb(0, 74.0425531915, 90);
  border-color: rgb(0, 44.6723404255, 54.3);
}
.btn-success:active, .btn-success.active, .open > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: rgb(0, 74.0425531915, 90);
  background-image: none;
  border-color: rgb(0, 44.6723404255, 54.3);
}
.btn-success:active:hover, .btn-success:active:focus, .btn-success:active.focus, .btn-success.active:hover, .btn-success.active:focus, .btn-success.active.focus, .open > .btn-success.dropdown-toggle:hover, .open > .btn-success.dropdown-toggle:focus, .open > .btn-success.dropdown-toggle.focus {
  color: #fff;
  background-color: rgb(0, 44.6723404255, 54.3);
  border-color: black;
}
.btn-success.disabled:hover, li.rbContainerDisabled > label.btn-success.ember-radio-button:hover, .btn-success.disabled:focus, li.rbContainerDisabled > label.btn-success.ember-radio-button:focus, .btn-success.disabled.focus, li.rbContainerDisabled > label.btn-success.focus.ember-radio-button, .btn-success[disabled]:hover, .btn-success[disabled]:focus, .btn-success[disabled].focus, fieldset[disabled] .btn-success:hover, fieldset[disabled] .btn-success:focus, fieldset[disabled] .btn-success.focus {
  background-color: #00748d;
  border-color: rgb(0, 95.0212765957, 115.5);
}
.btn-success .badge {
  color: #00748d;
  background-color: #fff;
}

.btn-info {
  color: #fff;
  background-color: #b13900;
  border-color: rgb(151.5, 48.7881355932, 0);
}
.btn-info:focus, .btn-info.focus {
  color: #fff;
  background-color: rgb(126, 40.5762711864, 0);
  border-color: rgb(24, 7.7288135593, 0);
}
.btn-info:hover {
  color: #fff;
  background-color: rgb(126, 40.5762711864, 0);
  border-color: rgb(90.3, 29.0796610169, 0);
}
.btn-info:active, .btn-info.active, .open > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: rgb(126, 40.5762711864, 0);
  background-image: none;
  border-color: rgb(90.3, 29.0796610169, 0);
}
.btn-info:active:hover, .btn-info:active:focus, .btn-info:active.focus, .btn-info.active:hover, .btn-info.active:focus, .btn-info.active.focus, .open > .btn-info.dropdown-toggle:hover, .open > .btn-info.dropdown-toggle:focus, .open > .btn-info.dropdown-toggle.focus {
  color: #fff;
  background-color: rgb(90.3, 29.0796610169, 0);
  border-color: rgb(24, 7.7288135593, 0);
}
.btn-info.disabled:hover, li.rbContainerDisabled > label.btn-info.ember-radio-button:hover, .btn-info.disabled:focus, li.rbContainerDisabled > label.btn-info.ember-radio-button:focus, .btn-info.disabled.focus, li.rbContainerDisabled > label.btn-info.focus.ember-radio-button, .btn-info[disabled]:hover, .btn-info[disabled]:focus, .btn-info[disabled].focus, fieldset[disabled] .btn-info:hover, fieldset[disabled] .btn-info:focus, fieldset[disabled] .btn-info.focus {
  background-color: #b13900;
  border-color: rgb(151.5, 48.7881355932, 0);
}
.btn-info .badge {
  color: #b13900;
  background-color: #fff;
}

.btn-warning {
  color: #fff;
  background-color: #e67e22;
  border-color: rgb(214.262195122, 113.4329268293, 24.237804878);
}
.btn-warning:focus, .btn-warning.focus {
  color: #fff;
  background-color: rgb(191.3536585366, 101.3048780488, 21.6463414634);
  border-color: rgb(99.7195121951, 52.7926829268, 11.2804878049);
}
.btn-warning:hover {
  color: #fff;
  background-color: rgb(191.3536585366, 101.3048780488, 21.6463414634);
  border-color: rgb(159.2817073171, 84.3256097561, 18.0182926829);
}
.btn-warning:active, .btn-warning.active, .open > .btn-warning.dropdown-toggle {
  color: #fff;
  background-color: rgb(191.3536585366, 101.3048780488, 21.6463414634);
  background-image: none;
  border-color: rgb(159.2817073171, 84.3256097561, 18.0182926829);
}
.btn-warning:active:hover, .btn-warning:active:focus, .btn-warning:active.focus, .btn-warning.active:hover, .btn-warning.active:focus, .btn-warning.active.focus, .open > .btn-warning.dropdown-toggle:hover, .open > .btn-warning.dropdown-toggle:focus, .open > .btn-warning.dropdown-toggle.focus {
  color: #fff;
  background-color: rgb(159.2817073171, 84.3256097561, 18.0182926829);
  border-color: rgb(99.7195121951, 52.7926829268, 11.2804878049);
}
.btn-warning.disabled:hover, li.rbContainerDisabled > label.btn-warning.ember-radio-button:hover, .btn-warning.disabled:focus, li.rbContainerDisabled > label.btn-warning.ember-radio-button:focus, .btn-warning.disabled.focus, li.rbContainerDisabled > label.btn-warning.focus.ember-radio-button, .btn-warning[disabled]:hover, .btn-warning[disabled]:focus, .btn-warning[disabled].focus, fieldset[disabled] .btn-warning:hover, fieldset[disabled] .btn-warning:focus, fieldset[disabled] .btn-warning.focus {
  background-color: #e67e22;
  border-color: rgb(214.262195122, 113.4329268293, 24.237804878);
}
.btn-warning .badge {
  color: #e67e22;
  background-color: #fff;
}

.btn-danger {
  color: #fff;
  background-color: #c0392b;
  border-color: rgb(171.1659574468, 50.814893617, 38.3340425532);
}
.btn-danger:focus, .btn-danger.focus {
  color: #fff;
  background-color: rgb(150.3319148936, 44.629787234, 33.6680851064);
  border-color: rgb(66.9957446809, 19.8893617021, 15.0042553191);
}
.btn-danger:hover {
  color: #fff;
  background-color: rgb(150.3319148936, 44.629787234, 33.6680851064);
  border-color: rgb(121.1642553191, 35.9706382979, 27.1357446809);
}
.btn-danger:active, .btn-danger.active, .open > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: rgb(150.3319148936, 44.629787234, 33.6680851064);
  background-image: none;
  border-color: rgb(121.1642553191, 35.9706382979, 27.1357446809);
}
.btn-danger:active:hover, .btn-danger:active:focus, .btn-danger:active.focus, .btn-danger.active:hover, .btn-danger.active:focus, .btn-danger.active.focus, .open > .btn-danger.dropdown-toggle:hover, .open > .btn-danger.dropdown-toggle:focus, .open > .btn-danger.dropdown-toggle.focus {
  color: #fff;
  background-color: rgb(121.1642553191, 35.9706382979, 27.1357446809);
  border-color: rgb(66.9957446809, 19.8893617021, 15.0042553191);
}
.btn-danger.disabled:hover, li.rbContainerDisabled > label.btn-danger.ember-radio-button:hover, .btn-danger.disabled:focus, li.rbContainerDisabled > label.btn-danger.ember-radio-button:focus, .btn-danger.disabled.focus, li.rbContainerDisabled > label.btn-danger.focus.ember-radio-button, .btn-danger[disabled]:hover, .btn-danger[disabled]:focus, .btn-danger[disabled].focus, fieldset[disabled] .btn-danger:hover, fieldset[disabled] .btn-danger:focus, fieldset[disabled] .btn-danger.focus {
  background-color: #c0392b;
  border-color: rgb(171.1659574468, 50.814893617, 38.3340425532);
}
.btn-danger .badge {
  color: #c0392b;
  background-color: #fff;
}

.btn-link {
  font-weight: 400;
  color: #00748d;
  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: #b13900;
  text-decoration: underline;
  background-color: transparent;
}
.btn-link[disabled]:hover, .btn-link[disabled]:focus, fieldset[disabled] .btn-link:hover, fieldset[disabled] .btn-link:focus {
  color: #666666;
  text-decoration: none;
}

.btn-lg, .btn-group-lg > .btn {
  padding: 7px 36px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 0px;
}

.btn-sm, .btn-group-sm > .btn {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 0px;
}

.btn-xs, .btn-group-xs > .btn {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 0px;
}

.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;
  transition-property: height, visibility;
  -webkit-transition-duration: 0.35s;
  transition-duration: 0.35s;
  -webkit-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: 2px;
  -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.428571429;
  color: #1f1f1f;
  white-space: nowrap;
}
.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
  color: rgb(18.25, 18.25, 18.25);
  text-decoration: none;
  background-color: #f5f5f5;
}

.dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus {
  color: #00748d;
  text-decoration: none;
  background-color: #313b52;
  outline: 0;
}

.dropdown-menu > .disabled > a, li.rbContainerDisabled.dropdown-menu > label.ember-radio-button > a, .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
  color: #ced6da;
}
.dropdown-menu > .disabled > a:hover, li.rbContainerDisabled.dropdown-menu > label.ember-radio-button > a:hover, .dropdown-menu > .disabled > a:focus, li.rbContainerDisabled.dropdown-menu > label.ember-radio-button > 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.428571429;
  color: #ced6da;
  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: 940px) {
  .navbar-right .dropdown-menu {
    right: 0;
    left: auto;
  }
  .navbar-right .dropdown-menu-left {
    left: 0;
    right: auto;
  }
}
.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 > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,
.btn-group-vertical > .btn:hover,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
  z-index: 2;
}

.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:before, .btn-toolbar:after {
  display: table;
  content: " ";
}
.btn-toolbar:after {
  clear: both;
}
.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, .btn-group-lg.btn-group > .btn + .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, .btn-group-lg > .btn .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0;
}

.dropup .btn-lg .caret, .dropup .btn-group-lg > .btn .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:before, .btn-group-vertical > .btn-group:after {
  display: table;
  content: " ";
}
.btn-group-vertical > .btn-group:after {
  clear: both;
}
.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: 0px;
  border-top-right-radius: 0px;
  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: 0px;
  border-bottom-left-radius: 0px;
}

.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 input[type=checkbox],
[data-toggle=buttons] > .btn-group > .btn input[type=radio],
[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-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: rgb(85.425, 85.425, 85.425);
  text-align: center;
  background-color: #f5f7f8;
  border: 1px solid #ccc;
  border-radius: 0px;
}
.input-group-addon.input-sm,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .input-group-addon.btn {
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 0px;
}
.input-group-addon.input-lg,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .input-group-addon.btn {
  padding: 7px 36px;
  font-size: 18px;
  border-radius: 0px;
}
.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:before, .nav:after {
  display: table;
  content: " ";
}
.nav:after {
  clear: both;
}
.nav > li {
  position: relative;
  display: block;
}
.nav > li > a {
  position: relative;
  display: block;
  padding: 13px 36px 15px;
}
.nav > li > a:hover, .nav > li > a:focus {
  text-decoration: none;
  background-color: #f5f7f8;
}
.nav > li.disabled > a {
  color: #ced6da;
}
.nav > li.disabled > a:hover, .nav > li.disabled > a:focus {
  color: #ced6da;
  text-decoration: none;
  cursor: not-allowed;
  background-color: transparent;
}
.nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
  background-color: #f5f7f8;
  border-color: #00748d;
}
.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 #979797;
}
.nav-tabs > li {
  float: left;
  margin-bottom: -1px;
}
.nav-tabs > li > a {
  margin-right: 2px;
  line-height: 1.428571429;
  border: 1px solid transparent;
  border-radius: 2px 2px 0 0;
}
.nav-tabs > li > a:hover {
  border-color: #ced6da #ced6da #979797;
}
.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
  color: #1f1f1f;
  cursor: default;
  background-color: #fff;
  border: 1px solid #979797;
  border-bottom-color: transparent;
}
.nav-pills > li {
  float: left;
}
.nav-pills > li > a {
  border-radius: 2px;
}
.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: #00748d;
  background-color: #313b52;
}

.nav-stacked > li {
  float: none;
}
.nav-stacked > li + li {
  margin-top: 2px;
  margin-left: 0;
}

.nav-justified, .nav-tabs.nav-justified {
  width: 100%;
}
.nav-justified > li, .nav-tabs.nav-justified > li {
  float: none;
}
.nav-justified > li > a, .nav-tabs.nav-justified > li > a {
  margin-bottom: 5px;
  text-align: center;
}
.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
@media (min-width: 940px) {
  .nav-justified > li, .nav-tabs.nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  .nav-justified > li > a, .nav-tabs.nav-justified > li > a {
    margin-bottom: 0;
  }
}

.nav-tabs-justified, .nav-tabs.nav-justified {
  border-bottom: 0;
}
.nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
  margin-right: 0;
  border-radius: 2px;
}
.nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus {
  border: 1px solid #ddd;
}
@media (min-width: 940px) {
  .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
    border-bottom: 1px solid #ddd;
    border-radius: 2px 2px 0 0;
  }
  .nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
  .nav-tabs-justified > .active > a:hover,
  .nav-tabs-justified > .active > a:focus {
    border-bottom-color: #c8d7e0;
  }
}

.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: 53px;
  margin-bottom: 20px;
  border: 1px solid transparent;
}
.navbar:before, .navbar:after {
  display: table;
  content: " ";
}
.navbar:after {
  clear: both;
}
@media (min-width: 940px) {
  .navbar {
    border-radius: 2px;
  }
}

.navbar-header:before, .navbar-header:after {
  display: table;
  content: " ";
}
.navbar-header:after {
  clear: both;
}
@media (min-width: 940px) {
  .navbar-header {
    float: left;
  }
}

.navbar-collapse {
  padding-right: 15px;
  padding-left: 15px;
  overflow-x: visible;
  border-top: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  -webkit-overflow-scrolling: touch;
}
.navbar-collapse:before, .navbar-collapse:after {
  display: table;
  content: " ";
}
.navbar-collapse:after {
  clear: both;
}
.navbar-collapse.in {
  overflow-y: auto;
}
@media (min-width: 940px) {
  .navbar-collapse {
    width: auto;
    border-top: 0;
    box-shadow: none;
  }
  .navbar-collapse.collapse {
    display: block !important;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important;
  }
  .navbar-collapse.in {
    overflow-y: visible;
  }
  .navbar-fixed-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: 940px) and (orientation: landscape) {
  .navbar-fixed-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    max-height: 200px;
  }
}
@media (min-width: 940px) {
  .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, .psm-container > .navbar-header,
.container > .navbar-collapse,
.psm-container > .navbar-collapse,
.container-fluid > .navbar-header,
.container-fluid > .navbar-collapse {
  margin-right: -15px;
  margin-left: -15px;
}
@media (min-width: 940px) {
  .container > .navbar-header, .psm-container > .navbar-header,
  .container > .navbar-collapse,
  .psm-container > .navbar-collapse,
  .container-fluid > .navbar-header,
  .container-fluid > .navbar-collapse {
    margin-right: 0;
    margin-left: 0;
  }
}

.navbar-static-top {
  z-index: 1000;
  border-width: 0 0 1px;
}
@media (min-width: 940px) {
  .navbar-static-top {
    border-radius: 0;
  }
}

.navbar-brand {
  float: left;
  height: 53px;
  padding: 16.5px 15px;
  font-size: 18px;
  line-height: 20px;
}
.navbar-brand:hover, .navbar-brand:focus {
  text-decoration: none;
}
.navbar-brand > img {
  display: block;
}
@media (min-width: 940px) {
  .navbar > .container .navbar-brand, .navbar > .psm-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: 9.5px;
  margin-bottom: 9.5px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 2px;
}
.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: 940px) {
  .navbar-toggle {
    display: none;
  }
}

.navbar-nav {
  margin: 8.25px -15px;
}
.navbar-nav > li > a {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 20px;
}
@media (max-width: 939px) {
  .navbar-nav .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    box-shadow: none;
  }
  .navbar-nav .open .dropdown-menu > 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: 940px) {
  .navbar-nav {
    float: left;
    margin: 0;
  }
  .navbar-nav > li {
    float: left;
  }
  .navbar-nav > li > a {
    padding-top: 16.5px;
    padding-bottom: 16.5px;
  }
}

.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: 9.5px;
  margin-bottom: 9.5px;
}
@media (min-width: 940px) {
  .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: 939px) {
  .navbar-form .form-group {
    margin-bottom: 5px;
  }
  .navbar-form .form-group:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 940px) {
  .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: 2px;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.navbar-btn {
  margin-top: 9.5px;
  margin-bottom: 9.5px;
}
.navbar-btn.btn-sm, .btn-group-sm > .navbar-btn.btn {
  margin-top: 11.5px;
  margin-bottom: 11.5px;
}
.navbar-btn.btn-xs, .btn-group-xs > .navbar-btn.btn {
  margin-top: 15.5px;
  margin-bottom: 15.5px;
}

.navbar-text {
  margin-top: 16.5px;
  margin-bottom: 16.5px;
}
@media (min-width: 940px) {
  .navbar-text {
    float: left;
    margin-right: 15px;
    margin-left: 15px;
  }
}

@media (min-width: 940px) {
  .navbar-left {
    float: left !important;
  }
  .navbar-right {
    float: right !important;
    margin-right: -15px;
  }
  .navbar-right ~ .navbar-right {
    margin-right: 0;
  }
}
.navbar-default {
  background-color: #303b53;
  border-color: #616b85;
}
.navbar-default .navbar-brand {
  color: #fff;
}
.navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus {
  color: #fff;
  background-color: #00748d;
}
.navbar-default .navbar-text {
  color: #303b53;
}
.navbar-default .navbar-nav > li > a {
  color: #fff;
}
.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
  color: #fff;
  background-color: #00748d;
}
.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
  color: #fff;
  background-color: #010202;
}
.navbar-default .navbar-nav > .disabled > a, .navbar-default li.rbContainerDisabled.navbar-nav > label.ember-radio-button > 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: #fff;
  background-color: #010202;
}
@media (max-width: 939px) {
  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #fff;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #fff;
    background-color: #00748d;
  }
  .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: #fff;
    background-color: #010202;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-default .navbar-nav .open li.rbContainerDisabled.dropdown-menu > label.ember-radio-button > 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: #616b85;
}
.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
  background-color: #303b53;
}
.navbar-default .navbar-toggle .icon-bar {
  background-color: #fff;
}
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
  border-color: #616b85;
}
.navbar-default .navbar-link {
  color: #fff;
}
.navbar-default .navbar-link:hover {
  color: #fff;
}
.navbar-default .btn-link {
  color: #fff;
}
.navbar-default .btn-link:hover, .navbar-default .btn-link:focus {
  color: #fff;
}
.navbar-default .btn-link[disabled]:hover, .navbar-default .btn-link[disabled]:focus, fieldset[disabled] .navbar-default .btn-link:hover, fieldset[disabled] .navbar-default .btn-link:focus {
  color: #ccc;
}

.navbar-inverse {
  background-color: #303b53;
  border-color: #616b85;
}
.navbar-inverse .navbar-brand {
  color: #fff;
}
.navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus {
  color: #fff;
  background-color: #00748d;
}
.navbar-inverse .navbar-text {
  color: #303b53;
}
.navbar-inverse .navbar-nav > li > a {
  color: #fff;
}
.navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus {
  color: #fff;
  background-color: #00748d;
}
.navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus {
  color: #fff;
  background-color: #273043;
}
.navbar-inverse .navbar-nav > .disabled > a, .navbar-inverse li.rbContainerDisabled.navbar-nav > label.ember-radio-button > a, .navbar-inverse .navbar-nav > .disabled > a:hover, .navbar-inverse .navbar-nav > .disabled > a:focus {
  color: #ccc;
  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: #273043;
}
@media (max-width: 939px) {
  .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
    border-color: #616b85;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
    background-color: #616b85;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
    color: #fff;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #fff;
    background-color: #00748d;
  }
  .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: #273043;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-inverse .navbar-nav .open li.rbContainerDisabled.dropdown-menu > label.ember-radio-button > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #ccc;
    background-color: transparent;
  }
}
.navbar-inverse .navbar-toggle {
  border-color: #616b85;
}
.navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus {
  background-color: #303b53;
}
.navbar-inverse .navbar-toggle .icon-bar {
  background-color: #303b53;
}
.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
  border-color: rgb(34.9190839695, 42.9213740458, 60.3809160305);
}
.navbar-inverse .navbar-link {
  color: #fff;
}
.navbar-inverse .navbar-link:hover {
  color: #fff;
}
.navbar-inverse .btn-link {
  color: #fff;
}
.navbar-inverse .btn-link:hover, .navbar-inverse .btn-link:focus {
  color: #fff;
}
.navbar-inverse .btn-link[disabled]:hover, .navbar-inverse .btn-link[disabled]:focus, fieldset[disabled] .navbar-inverse .btn-link:hover, fieldset[disabled] .navbar-inverse .btn-link:focus {
  color: #ccc;
}

.breadcrumb, .breadcrumb-progress, .breadcrumb-psm-nav {
  padding: 8px 15px;
  margin-bottom: 20px;
  list-style: none;
  background-color: #e9e9e9;
  border-radius: 2px;
}
.breadcrumb > li, .breadcrumb-progress > li, .breadcrumb-psm-nav > li {
  display: inline-block;
}
.breadcrumb > li + li:before, .breadcrumb-progress > li + li:before, .breadcrumb-psm-nav > li + li:before {
  padding: 0 5px;
  color: #666666;
  content: " ";
}
.breadcrumb > .active, .breadcrumb-progress > .active, .breadcrumb-psm-nav > .active {
  color: white;
}

.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 2px;
}
.pagination > li {
  display: inline;
}
.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  margin-left: -1px;
  line-height: 1.428571429;
  color: #00748d;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd;
}
.pagination > li > a:hover, .pagination > li > a:focus,
.pagination > li > span:hover,
.pagination > li > span:focus {
  z-index: 2;
  color: #b13900;
  background-color: #f5f7f8;
  border-color: #ddd;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
}
.pagination > .active > a, .pagination > .active > a:hover, .pagination > .active > a:focus,
.pagination > .active > span,
.pagination > .active > span:hover,
.pagination > .active > span:focus {
  z-index: 3;
  color: #fff;
  cursor: default;
  background-color: #b13900;
  border-color: #b13900;
}
.pagination > .disabled > span, li.rbContainerDisabled.pagination > label.ember-radio-button > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
li.rbContainerDisabled.pagination > label.ember-radio-button > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: #666666;
  cursor: not-allowed;
  background-color: #fff;
  border-color: #ddd;
}

.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 7px 36px;
  font-size: 18px;
  line-height: 1.3333333;
}
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}

.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: 0px;
  border-bottom-left-radius: 0px;
}
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}

.pager {
  padding-left: 0;
  margin: 20px 0;
  text-align: center;
  list-style: none;
}
.pager:before, .pager:after {
  display: table;
  content: " ";
}
.pager:after {
  clear: both;
}
.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: #f5f7f8;
}
.pager .next > a,
.pager .next > span {
  float: right;
}
.pager .previous > a,
.pager .previous > span {
  float: left;
}
.pager .disabled > a, .pager li.rbContainerDisabled > label.ember-radio-button > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span,
.pager li.rbContainerDisabled > label.ember-radio-button > span {
  color: #666666;
  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;
}
.label:empty {
  display: none;
}
.btn .label {
  position: relative;
  top: -1px;
}

a.label:hover, a.label:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

.label-default {
  background-color: #ced6da;
}
.label-default[href]:hover, .label-default[href]:focus {
  background-color: rgb(176.9418604651, 189.6860465116, 196.0581395349);
}

.label-primary {
  background-color: #313b52;
}
.label-primary[href]:hover, .label-primary[href]:focus {
  background-color: rgb(29.9236641221, 36.0305343511, 50.0763358779);
}

.label-success {
  background-color: #00748d;
}
.label-success[href]:hover, .label-success[href]:focus {
  background-color: rgb(0, 74.0425531915, 90);
}

.label-info {
  background-color: #b13900;
}
.label-info[href]:hover, .label-info[href]:focus {
  background-color: rgb(126, 40.5762711864, 0);
}

.label-warning {
  background-color: #e67e22;
}
.label-warning[href]:hover, .label-warning[href]:focus {
  background-color: rgb(191.3536585366, 101.3048780488, 21.6463414634);
}

.label-danger {
  background-color: #c0392b;
}
.label-danger[href]:hover, .label-danger[href]:focus {
  background-color: rgb(150.3319148936, 44.629787234, 33.6680851064);
}

.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: #ced6da;
  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;
}
.list-group-item.active > .badge, .nav-pills > .active > a > .badge {
  color: #00748d;
  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;
}

a.badge:hover, a.badge:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

.jumbotron {
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  color: inherit;
  background-color: #f5f7f8;
}
.jumbotron h1,
.jumbotron .h1 {
  color: inherit;
}
.jumbotron p {
  margin-bottom: 15px;
  font-size: 21px;
  font-weight: 200;
}
.jumbotron > hr {
  border-top-color: #d7dfe3;
}
.container .jumbotron, .psm-container .jumbotron, .container-fluid .jumbotron {
  padding-right: 15px;
  padding-left: 15px;
  border-radius: 0px;
}
.jumbotron .container, .jumbotron .psm-container {
  max-width: 100%;
}
@media screen and (min-width: 940px) {
  .jumbotron {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .container .jumbotron, .psm-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.428571429;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 0px;
  -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 {
  display: block;
  max-width: 100%;
  height: auto;
  margin-right: auto;
  margin-left: auto;
}
.thumbnail .caption {
  padding: 9px;
  color: #1f1f1f;
}

a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
  border-color: #00748d;
}

.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 0px;
}
.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: #14635e;
  background-color: #edfbfa;
  border-color: rgb(216.1363636364, 246.3636363636, 239.1666666667);
}
.alert-success hr {
  border-top-color: rgb(195.2727272727, 241.7272727273, 230.6666666667);
}
.alert-success .alert-link {
  color: rgb(11.4285714286, 56.5714285714, 53.7142857143);
}

.alert-info {
  color: #00748d;
  background-color: #eefbff;
  border-color: rgb(202.3, 251.3833333333, 255);
}
.alert-info hr {
  border-top-color: rgb(176.8, 249.6333333333, 255);
}
.alert-info .alert-link {
  color: rgb(0, 74.0425531915, 90);
}

.alert-warning {
  color: #8e5300;
  background-color: #fcecd2;
  border-color: rgb(250.40625, 215.1875, 186.09375);
}
.alert-warning hr {
  border-top-color: rgb(248.8125, 201.375, 162.1875);
}
.alert-warning .alert-link {
  color: rgb(91, 53.1901408451, 0);
}

.alert-danger {
  color: #b12a1f;
  background-color: #f5dcd9;
  border-color: rgb(239.6875, 196.8125, 199.3645833333);
}
.alert-danger hr {
  border-top-color: rgb(234.375, 176.625, 180.0625);
}
.alert-danger .alert-link {
  color: rgb(133.6009615385, 31.7019230769, 23.3990384615);
}

@-webkit-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: 2px;
  -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: #313b52;
  -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);
  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: #00748d;
}
.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: #b13900;
}
.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: #e67e22;
}
.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: #c0392b;
}
.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: 2px;
  border-top-right-radius: 2px;
}
.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
}
.list-group-item.disabled, li.rbContainerDisabled > label.list-group-item.ember-radio-button, .list-group-item.disabled:hover, .list-group-item.disabled:focus {
  color: #ced6da;
  cursor: not-allowed;
  background-color: #f5f7f8;
}
.list-group-item.disabled .list-group-item-heading, li.rbContainerDisabled > label.list-group-item.ember-radio-button .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, li.rbContainerDisabled > label.list-group-item.ember-radio-button .list-group-item-text, .list-group-item.disabled:hover .list-group-item-text, .list-group-item.disabled:focus .list-group-item-text {
  color: #ced6da;
}
.list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus {
  z-index: 2;
  color: #00748d;
  background-color: #313b52;
  border-color: #313b52;
}
.list-group-item.active .list-group-item-heading,
.list-group-item.active .list-group-item-heading > small,
.list-group-item.active .list-group-item-heading > .small, .list-group-item.active:hover .list-group-item-heading,
.list-group-item.active:hover .list-group-item-heading > small,
.list-group-item.active:hover .list-group-item-heading > .small, .list-group-item.active:focus .list-group-item-heading,
.list-group-item.active:focus .list-group-item-heading > small,
.list-group-item.active:focus .list-group-item-heading > .small {
  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: rgb(145.4580152672, 158.8167938931, 189.5419847328);
}

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: #1f1f1f;
}
a.list-group-item:hover, a.list-group-item:focus,
button.list-group-item:hover,
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: #14635e;
  background-color: #edfbfa;
}

a.list-group-item-success,
button.list-group-item-success {
  color: #14635e;
}
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, a.list-group-item-success:focus,
button.list-group-item-success:hover,
button.list-group-item-success:focus {
  color: #14635e;
  background-color: rgb(216.1363636364, 246.3636363636, 244.2045454545);
}
a.list-group-item-success.active, a.list-group-item-success.active:hover, a.list-group-item-success.active:focus,
button.list-group-item-success.active,
button.list-group-item-success.active:hover,
button.list-group-item-success.active:focus {
  color: #fff;
  background-color: #14635e;
  border-color: #14635e;
}

.list-group-item-info {
  color: #00748d;
  background-color: #eefbff;
}

a.list-group-item-info,
button.list-group-item-info {
  color: #00748d;
}
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, a.list-group-item-info:focus,
button.list-group-item-info:hover,
button.list-group-item-info:focus {
  color: #00748d;
  background-color: rgb(212.5, 245, 255);
}
a.list-group-item-info.active, a.list-group-item-info.active:hover, a.list-group-item-info.active:focus,
button.list-group-item-info.active,
button.list-group-item-info.active:hover,
button.list-group-item-info.active:focus {
  color: #fff;
  background-color: #00748d;
  border-color: #00748d;
}

.list-group-item-warning {
  color: #8e5300;
  background-color: #fcecd2;
}

a.list-group-item-warning,
button.list-group-item-warning {
  color: #8e5300;
}
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, a.list-group-item-warning:focus,
button.list-group-item-warning:hover,
button.list-group-item-warning:focus {
  color: #8e5300;
  background-color: rgb(250.40625, 225.90625, 186.09375);
}
a.list-group-item-warning.active, a.list-group-item-warning.active:hover, a.list-group-item-warning.active:focus,
button.list-group-item-warning.active,
button.list-group-item-warning.active:hover,
button.list-group-item-warning.active:focus {
  color: #fff;
  background-color: #8e5300;
  border-color: #8e5300;
}

.list-group-item-danger {
  color: #b12a1f;
  background-color: #f5dcd9;
}

a.list-group-item-danger,
button.list-group-item-danger {
  color: #b12a1f;
}
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, a.list-group-item-danger:focus,
button.list-group-item-danger:hover,
button.list-group-item-danger:focus {
  color: #b12a1f;
  background-color: rgb(239.6875, 201.40625, 196.8125);
}
a.list-group-item-danger.active, a.list-group-item-danger.active:hover, a.list-group-item-danger.active:focus,
button.list-group-item-danger.active,
button.list-group-item-danger.active:hover,
button.list-group-item-danger.active:focus {
  color: #fff;
  background-color: #b12a1f;
  border-color: #b12a1f;
}

.list-group-item-heading {
  margin-top: 0;
  margin-bottom: 5px;
}

.list-group-item-text {
  margin-bottom: 0;
  line-height: 1.3;
}

.panel, .panel-prop {
  margin-bottom: 20px;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 0px;
  -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: 10px;
}
.panel-body:before, .panel-body:after {
  display: table;
  content: " ";
}
.panel-body:after {
  clear: both;
}

.panel-heading {
  padding: 10px;
  border-bottom: 1px solid transparent;
  border-top-left-radius: -1px;
  border-top-right-radius: -1px;
}
.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;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  border-bottom-right-radius: -1px;
  border-bottom-left-radius: -1px;
}

.panel > .list-group, .panel-prop > .list-group,
.panel > .panel-collapse > .list-group,
.panel-prop > .panel-collapse > .list-group {
  margin-bottom: 0;
}
.panel > .list-group .list-group-item, .panel-prop > .list-group .list-group-item,
.panel > .panel-collapse > .list-group .list-group-item,
.panel-prop > .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-prop > .list-group:first-child .list-group-item:first-child,
.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child,
.panel-prop > .panel-collapse > .list-group:first-child .list-group-item:first-child {
  border-top: 0;
  border-top-left-radius: -1px;
  border-top-right-radius: -1px;
}
.panel > .list-group:last-child .list-group-item:last-child, .panel-prop > .list-group:last-child .list-group-item:last-child,
.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child,
.panel-prop > .panel-collapse > .list-group:last-child .list-group-item:last-child {
  border-bottom: 0;
  border-bottom-right-radius: -1px;
  border-bottom-left-radius: -1px;
}
.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child, .panel-prop > .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-prop > .table,
.panel > .table-responsive > .table,
.panel-prop > .table-responsive > .table,
.panel > .panel-collapse > .table,
.panel-prop > .panel-collapse > .table {
  margin-bottom: 0;
}
.panel > .table caption, .panel-prop > .table caption,
.panel > .table-responsive > .table caption,
.panel-prop > .table-responsive > .table caption,
.panel > .panel-collapse > .table caption,
.panel-prop > .panel-collapse > .table caption {
  padding-right: 10px;
  padding-left: 10px;
}
.panel > .table:first-child, .panel-prop > .table:first-child,
.panel > .table-responsive:first-child > .table:first-child,
.panel-prop > .table-responsive:first-child > .table:first-child {
  border-top-left-radius: -1px;
  border-top-right-radius: -1px;
}
.panel > .table:first-child > thead:first-child > tr:first-child, .panel-prop > .table:first-child > thead:first-child > tr:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child,
.panel-prop > .table:first-child > tbody:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
.panel-prop > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child,
.panel-prop > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
  border-top-left-radius: -1px;
  border-top-right-radius: -1px;
}
.panel > .table:first-child > thead:first-child > tr:first-child td:first-child, .panel-prop > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel-prop > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel-prop > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
.panel-prop > .table:first-child > tbody:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel-prop > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel-prop > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel-prop > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child,
.panel-prop > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
  border-top-left-radius: -1px;
}
.panel > .table:first-child > thead:first-child > tr:first-child td:last-child, .panel-prop > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel-prop > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel-prop > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
.panel-prop > .table:first-child > tbody:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel-prop > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel-prop > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel-prop > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child,
.panel-prop > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
  border-top-right-radius: -1px;
}
.panel > .table:last-child, .panel-prop > .table:last-child,
.panel > .table-responsive:last-child > .table:last-child,
.panel-prop > .table-responsive:last-child > .table:last-child {
  border-bottom-right-radius: -1px;
  border-bottom-left-radius: -1px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child, .panel-prop > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child,
.panel-prop > .table:last-child > tfoot:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
.panel-prop > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child,
.panel-prop > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
  border-bottom-right-radius: -1px;
  border-bottom-left-radius: -1px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child, .panel-prop > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel-prop > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel-prop > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
.panel-prop > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel-prop > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel-prop > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel-prop > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
.panel-prop > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
  border-bottom-left-radius: -1px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child, .panel-prop > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel-prop > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel-prop > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
.panel-prop > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel-prop > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel-prop > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel-prop > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
.panel-prop > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
  border-bottom-right-radius: -1px;
}
.panel > .panel-body + .table, .panel-prop > .panel-body + .table,
.panel > .panel-body + .table-responsive,
.panel-prop > .panel-body + .table-responsive,
.panel > .table + .panel-body,
.panel-prop > .table + .panel-body,
.panel > .table-responsive + .panel-body,
.panel-prop > .table-responsive + .panel-body {
  border-top: 1px solid #ced6da;
}
.panel > .table > tbody:first-child > tr:first-child th, .panel-prop > .table > tbody:first-child > tr:first-child th,
.panel > .table > tbody:first-child > tr:first-child td,
.panel-prop > .table > tbody:first-child > tr:first-child td {
  border-top: 0;
}
.panel > .table-bordered, .panel-prop > .table-bordered,
.panel > .table-responsive > .table-bordered,
.panel-prop > .table-responsive > .table-bordered {
  border: 0;
}
.panel > .table-bordered > thead > tr > th:first-child, .panel-prop > .table-bordered > thead > tr > th:first-child,
.panel > .table-bordered > thead > tr > td:first-child,
.panel-prop > .table-bordered > thead > tr > td:first-child,
.panel > .table-bordered > tbody > tr > th:first-child,
.panel-prop > .table-bordered > tbody > tr > th:first-child,
.panel > .table-bordered > tbody > tr > td:first-child,
.panel-prop > .table-bordered > tbody > tr > td:first-child,
.panel > .table-bordered > tfoot > tr > th:first-child,
.panel-prop > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-bordered > tfoot > tr > td:first-child,
.panel-prop > .table-bordered > tfoot > tr > td:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
.panel-prop > .table-responsive > .table-bordered > thead > tr > th:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.panel-prop > .table-responsive > .table-bordered > thead > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.panel-prop > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.panel-prop > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.panel-prop > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child,
.panel-prop > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  border-left: 0;
}
.panel > .table-bordered > thead > tr > th:last-child, .panel-prop > .table-bordered > thead > tr > th:last-child,
.panel > .table-bordered > thead > tr > td:last-child,
.panel-prop > .table-bordered > thead > tr > td:last-child,
.panel > .table-bordered > tbody > tr > th:last-child,
.panel-prop > .table-bordered > tbody > tr > th:last-child,
.panel > .table-bordered > tbody > tr > td:last-child,
.panel-prop > .table-bordered > tbody > tr > td:last-child,
.panel > .table-bordered > tfoot > tr > th:last-child,
.panel-prop > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-bordered > tfoot > tr > td:last-child,
.panel-prop > .table-bordered > tfoot > tr > td:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
.panel-prop > .table-responsive > .table-bordered > thead > tr > th:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.panel-prop > .table-responsive > .table-bordered > thead > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.panel-prop > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.panel-prop > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.panel-prop > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child,
.panel-prop > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  border-right: 0;
}
.panel > .table-bordered > thead > tr:first-child > td, .panel-prop > .table-bordered > thead > tr:first-child > td,
.panel > .table-bordered > thead > tr:first-child > th,
.panel-prop > .table-bordered > thead > tr:first-child > th,
.panel > .table-bordered > tbody > tr:first-child > td,
.panel-prop > .table-bordered > tbody > tr:first-child > td,
.panel > .table-bordered > tbody > tr:first-child > th,
.panel-prop > .table-bordered > tbody > tr:first-child > th,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
.panel-prop > .table-responsive > .table-bordered > thead > tr:first-child > td,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
.panel-prop > .table-responsive > .table-bordered > thead > tr:first-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
.panel-prop > .table-responsive > .table-bordered > tbody > tr:first-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th,
.panel-prop > .table-responsive > .table-bordered > tbody > tr:first-child > th {
  border-bottom: 0;
}
.panel > .table-bordered > tbody > tr:last-child > td, .panel-prop > .table-bordered > tbody > tr:last-child > td,
.panel > .table-bordered > tbody > tr:last-child > th,
.panel-prop > .table-bordered > tbody > tr:last-child > th,
.panel > .table-bordered > tfoot > tr:last-child > td,
.panel-prop > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-bordered > tfoot > tr:last-child > th,
.panel-prop > .table-bordered > tfoot > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.panel-prop > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.panel-prop > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
.panel-prop > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th,
.panel-prop > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
  border-bottom: 0;
}
.panel > .table-responsive, .panel-prop > .table-responsive {
  margin-bottom: 0;
  border: 0;
}

.panel-group {
  margin-bottom: 20px;
}
.panel-group .panel, .panel-group .panel-prop {
  margin-bottom: 0;
  border-radius: 0px;
}
.panel-group .panel + .panel, .panel-group .panel-prop + .panel, .panel-group .panel + .panel-prop, .panel-group .panel-prop + .panel-prop {
  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: #b8b893;
}
.panel-default > .panel-heading {
  color: #1f1f1f;
  background-color: #557488;
  border-color: #b8b893;
}
.panel-default > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #b8b893;
}
.panel-default > .panel-heading .badge {
  color: #557488;
  background-color: #1f1f1f;
}
.panel-default > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #b8b893;
}

.panel-primary {
  border-color: #00748d;
}
.panel-primary > .panel-heading {
  color: #fff;
  background-color: #00748d;
  border-color: #00748d;
}
.panel-primary > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #00748d;
}
.panel-primary > .panel-heading .badge {
  color: #00748d;
  background-color: #fff;
}
.panel-primary > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #00748d;
}

.panel-success {
  border-color: rgb(216.1363636364, 246.3636363636, 239.1666666667);
}
.panel-success > .panel-heading {
  color: #14635e;
  background-color: #edfbfa;
  border-color: rgb(216.1363636364, 246.3636363636, 239.1666666667);
}
.panel-success > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: rgb(216.1363636364, 246.3636363636, 239.1666666667);
}
.panel-success > .panel-heading .badge {
  color: #edfbfa;
  background-color: #14635e;
}
.panel-success > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: rgb(216.1363636364, 246.3636363636, 239.1666666667);
}

.panel-info {
  border-color: rgb(202.3, 251.3833333333, 255);
}
.panel-info > .panel-heading {
  color: #00748d;
  background-color: #eefbff;
  border-color: rgb(202.3, 251.3833333333, 255);
}
.panel-info > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: rgb(202.3, 251.3833333333, 255);
}
.panel-info > .panel-heading .badge {
  color: #eefbff;
  background-color: #00748d;
}
.panel-info > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: rgb(202.3, 251.3833333333, 255);
}

.panel-warning {
  border-color: rgb(250.40625, 215.1875, 186.09375);
}
.panel-warning > .panel-heading {
  color: #8e5300;
  background-color: #fcecd2;
  border-color: rgb(250.40625, 215.1875, 186.09375);
}
.panel-warning > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: rgb(250.40625, 215.1875, 186.09375);
}
.panel-warning > .panel-heading .badge {
  color: #fcecd2;
  background-color: #8e5300;
}
.panel-warning > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: rgb(250.40625, 215.1875, 186.09375);
}

.panel-danger {
  border-color: rgb(239.6875, 196.8125, 199.3645833333);
}
.panel-danger > .panel-heading {
  color: #b12a1f;
  background-color: #f5dcd9;
  border-color: rgb(239.6875, 196.8125, 199.3645833333);
}
.panel-danger > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: rgb(239.6875, 196.8125, 199.3645833333);
}
.panel-danger > .panel-heading .badge {
  color: #f5dcd9;
  background-color: #b12a1f;
}
.panel-danger > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: rgb(239.6875, 196.8125, 199.3645833333);
}

.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 rgb(227.15, 227.15, 227.15);
  border-radius: 2px;
  -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: 0px;
}

.well-sm {
  padding: 9px;
  border-radius: 0px;
}

.close {
  float: right;
  font-size: 21px;
  font-weight: bold;
  line-height: 1;
  color: #00748d;
  text-shadow: 0 1px 0 #fff;
  filter: alpha(opacity=20);
  opacity: 0.2;
}
.close:hover, .close:focus {
  color: #00748d;
  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;
  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, .modal.fade .modal-dialog-sm {
  -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;
  -moz-transition: -moz-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}
.modal.in .modal-dialog, .modal.in .modal-dialog-sm {
  -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, .modal-dialog-sm {
  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: 0px;
  -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: #333;
}
.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:before, .modal-header:after {
  display: table;
  content: " ";
}
.modal-header:after {
  clear: both;
}

.modal-header .close {
  margin-top: -2px;
}

.modal-title {
  margin: 0;
  line-height: 1.428571429;
}

.modal-body {
  position: relative;
  padding: 15px;
}

.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}
.modal-footer:before, .modal-footer:after {
  display: table;
  content: " ";
}
.modal-footer:after {
  clear: both;
}
.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: 940px) {
  .modal-dialog, .modal-dialog-sm {
    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: 450px;
  }
}
@media (min-width: 940px) {
  .modal-lg {
    width: 900px;
  }
}
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-family: Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.428571429;
  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: 2px;
}

.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: 400px;
  padding: 1px;
  font-family: Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.428571429;
  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: 0px;
  -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: rgb(247.35, 247.35, 247.35);
  border-bottom: 1px solid rgb(234.6, 234.6, 234.6);
  border-radius: -1px -1px 0 0;
}

.popover-content {
  padding: 9px 14px;
}

.clearfix:before, .clearfix:after {
  display: table;
  content: " ";
}
.clearfix: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 {
  display: none !important;
}

.visible-sm {
  display: none !important;
}

.visible-md {
  display: none !important;
}

.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: 939px) {
  .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: 939px) {
  .visible-xs-block {
    display: block !important;
  }
}

@media (max-width: 939px) {
  .visible-xs-inline {
    display: inline !important;
  }
}

@media (max-width: 939px) {
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 940px) and (max-width: 939px) {
  .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: 940px) and (max-width: 939px) {
  .visible-sm-block {
    display: block !important;
  }
}

@media (min-width: 940px) and (max-width: 939px) {
  .visible-sm-inline {
    display: inline !important;
  }
}

@media (min-width: 940px) and (max-width: 939px) {
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 940px) 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: 940px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important;
  }
}

@media (min-width: 940px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important;
  }
}

@media (min-width: 940px) 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: 939px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 940px) and (max-width: 939px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 940px) 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;
  }
}
.close {
  font-size: 18px;
}
.close:hover, .close:focus {
  filter: alpha(opacity=100);
  opacity: 1;
}

.alert-dismissable .close,
.alert-dismissible .close {
  position: static;
  top: 0px;
}

.modal-backdrop {
  z-index: 1070;
}

.modal {
  z-index: 1080;
}
.modal .popover {
  z-index: 1090;
}
.modal .tooltip {
  z-index: 1100;
}

.popover {
  border-radius: 4px;
}
.popover .close {
  margin-top: -3px;
}

.popover-content {
  min-width: 346px;
  min-height: 37px;
}

.popover-title {
  font-family: Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.428571429;
  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-weight: bold;
  padding: 10px 10px 6px 10px;
}

.popover-content {
  padding: 8px 10px 10px 10px;
}

.ember-basic-dropdown {
  position: relative;
}

.ember-basic-dropdown,
.ember-basic-dropdown-content,
.ember-basic-dropdown-content * {
  box-sizing: border-box;
}

.ember-basic-dropdown-content {
  position: absolute;
  width: auto;
  z-index: 1000;
  background-color: #ffffff;
}

.ember-basic-dropdown-content--left {
  left: 0;
}

.ember-basic-dropdown-content--right {
  right: 0;
}

.ember-basic-dropdown-overlay {
  position: fixed;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  z-index: 10;
  top: 0;
  left: 0;
  pointer-events: none;
}

.ember-basic-dropdown-content-wormhole-origin {
  display: inline;
}

.ember-power-select-dropdown * {
  box-sizing: border-box;
}

.ember-power-select-trigger {
  position: relative;
  border-top: 1px solid #aaaaaa;
  border-bottom: 1px solid #aaaaaa;
  border-right: 1px solid #aaaaaa;
  border-left: 1px solid #aaaaaa;
  border-radius: 4px;
  background-color: #ffffff;
  line-height: 1.75;
  overflow-x: hidden;
  text-overflow: ellipsis;
  min-height: 1.75em;
  user-select: none;
  -webkit-user-select: none;
  color: inherit;
  /* Minimum clearfix for modern browsers */
}
.ember-power-select-trigger:after {
  content: "";
  display: table;
  clear: both;
}

.ember-power-select-trigger:focus,
.ember-power-select-trigger--active {
  border-top: 1px solid #aaaaaa;
  border-bottom: 1px solid #aaaaaa;
  border-right: 1px solid #aaaaaa;
  border-left: 1px solid #aaaaaa;
  box-shadow: none;
}

.ember-basic-dropdown-trigger--below.ember-power-select-trigger[aria-expanded=true],
.ember-basic-dropdown-trigger--in-place.ember-power-select-trigger[aria-expanded=true] {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.ember-basic-dropdown-trigger--above.ember-power-select-trigger[aria-expanded=true] {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.ember-power-select-placeholder {
  color: #999999;
  display: block;
  overflow-x: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.ember-power-select-status-icon {
  position: absolute;
  display: inline-block;
  width: 0;
  height: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border-style: solid;
  border-width: 7px 4px 0 4px;
  border-color: #aaaaaa transparent transparent transparent;
}
.ember-basic-dropdown-trigger[aria-expanded=true] .ember-power-select-status-icon {
  transform: rotate(180deg);
}

.ember-power-select-clear-btn {
  position: absolute;
  cursor: pointer;
}

.ember-power-select-multiple-options {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
}

.ember-power-select-trigger-multiple-input {
  font-family: inherit;
  font-size: inherit;
  border: none;
  line-height: inherit;
  -webkit-appearance: none;
  outline: none;
  padding: 0;
  background-color: transparent;
  text-indent: 2px;
  /* There's a browser bug where this selectos cannot be chained with commas */
}
.ember-power-select-trigger-multiple-input:disabled {
  background-color: #eeeeee;
}
.ember-power-select-trigger-multiple-input::placeholder {
  opacity: 1;
  color: #999999;
}
.ember-power-select-trigger-multiple-input::-webkit-input-placeholder {
  opacity: 1;
  color: #999999;
}
.ember-power-select-trigger-multiple-input::-moz-placeholder {
  opacity: 1;
  color: #999999;
}
.ember-power-select-trigger-multiple-input::-ms-input-placeholder {
  opacity: 1;
  color: #999999;
}

.ember-power-select-multiple-option {
  border: 1px solid gray;
  border-radius: 4px;
  color: #333333;
  background-color: #e4e4e4;
  padding: 0 4px;
  line-height: 1.45;
  margin: 2px 0 2px 3px;
}

.ember-power-select-multiple-remove-btn {
  cursor: pointer;
}
.ember-power-select-multiple-remove-btn:not(:hover) {
  opacity: 0.5;
}

.ember-power-select-search {
  padding: 4px;
}

.ember-power-select-search-input {
  border: 1px solid #aaaaaa;
  border-radius: 0;
  width: 100%;
  font-size: inherit;
  line-height: inherit;
  padding: 0 5px;
}
.ember-power-select-search-input:focus {
  border: 1px solid #aaaaaa;
  box-shadow: none;
}

.ember-power-select-dropdown {
  border-left: 1px solid #aaaaaa;
  border-right: 1px solid #aaaaaa;
  line-height: 1.75;
  border-radius: 4px;
  box-shadow: none;
  overflow: hidden;
  color: inherit;
}

.ember-power-select-dropdown.ember-basic-dropdown-content--above {
  border-top: 1px solid #aaaaaa;
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.ember-power-select-dropdown.ember-basic-dropdown-content--below, .ember-power-select-dropdown.ember-basic-dropdown-content--in-place {
  border-top: none;
  border-bottom: 1px solid #aaaaaa;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.ember-power-select-dropdown.ember-basic-dropdown-content--in-place {
  width: 100%;
}

.ember-power-select-options {
  list-style: none;
  margin: 0;
  padding: 0;
  user-select: none;
  -webkit-user-select: none;
}
.ember-power-select-options[role=listbox] {
  overflow-y: auto; /* in firefox in windows this can cause a word-break issue. Try `overflow-y: scroll` if that happens */
  -webkit-overflow-scrolling: touch;
  max-height: 12.25em;
}

.ember-power-select-option {
  cursor: pointer;
  padding: 0 8px;
}

.ember-power-select-group[aria-disabled=true] {
  color: #999999;
  cursor: not-allowed;
}

.ember-power-select-group[aria-disabled=true] .ember-power-select-option,
.ember-power-select-option[aria-disabled=true] {
  color: #999999;
  pointer-events: none;
  cursor: not-allowed;
}

.ember-power-select-option[aria-selected=true] {
  background-color: #ffffff;
}

.ember-power-select-option[aria-current=true] {
  background-color: #00748d;
  color: #ffffff;
}

.ember-power-select-group-name {
  cursor: default;
  font-weight: bold;
}

.ember-power-select-trigger[aria-disabled=true] {
  background-color: #eeeeee;
}

.ember-power-select-trigger {
  padding: 0 16px 0 0;
}

.ember-power-select-selected-item, .ember-power-select-placeholder {
  margin-left: 8px;
}

.ember-power-select-status-icon {
  right: 5px;
}

.ember-power-select-clear-btn {
  right: 25px;
}

.ember-power-select-group .ember-power-select-group .ember-power-select-group-name {
  padding-left: 24px;
}
.ember-power-select-group .ember-power-select-group .ember-power-select-option {
  padding-left: 40px;
}
.ember-power-select-group .ember-power-select-option {
  padding-left: 24px;
}
.ember-power-select-group .ember-power-select-group-name {
  padding-left: 8px;
}

.ember-power-select-trigger[dir=rtl] {
  padding: 0 0 0 16px;
}
.ember-power-select-trigger[dir=rtl] .ember-power-select-selected-item, .ember-power-select-trigger[dir=rtl] .ember-power-select-placeholder {
  margin-right: 8px;
}
.ember-power-select-trigger[dir=rtl] .ember-power-select-multiple-option {
  float: right;
}
.ember-power-select-trigger[dir=rtl] .ember-power-select-trigger-multiple-input {
  float: right;
}
.ember-power-select-trigger[dir=rtl] .ember-power-select-status-icon {
  left: 5px;
  right: initial;
}
.ember-power-select-trigger[dir=rtl] .ember-power-select-clear-btn {
  left: 25px;
  right: initial;
}

.ember-power-select-dropdown[dir=rtl] .ember-power-select-group .ember-power-select-group .ember-power-select-group-name {
  padding-right: 24px;
}
.ember-power-select-dropdown[dir=rtl] .ember-power-select-group .ember-power-select-group .ember-power-select-option {
  padding-right: 40px;
}
.ember-power-select-dropdown[dir=rtl] .ember-power-select-group .ember-power-select-option {
  padding-right: 24px;
}
.ember-power-select-dropdown[dir=rtl] .ember-power-select-group .ember-power-select-group-name {
  padding-right: 8px;
}

h1,
.h1 {
  font-size: 28px !important;
  font-family: Georgia, serif !important;
  color: #34495e !important;
}

h2,
.h2 {
  font-size: 22px !important;
  font-family: Georgia, serif !important;
  color: #34495e !important;
}

h5,
.h5 {
  text-transform: uppercase;
  font-weight: bold !important;
}

h6,
.h6 {
  font-weight: bold !important;
}

/* Header styles -------------------------------------- */
/* .theme-header{margin: 0 auto;width: 940px;} */
.theme-header {
  margin: 0 auto;
}
@media (min-width: 940px) {
  .theme-header {
    width: 940px;
  }
}
@media (min-width: 1200px) {
  .theme-header {
    width: 1200px;
  }
}

#masthead {
  position: relative;
  top: 0;
  left: 0;
  margin-right: -28px;
}
#masthead .logo {
  background: url("../images/logo-7833e70f30b291c19c32ba268a7f3621.png") 0 0 no-repeat;
  height: 83px;
  width: 308px;
  margin: 33px 0 10px;
  display: block;
  float: left;
}
#masthead .portlet {
  border: 0;
  margin: 0;
}
#masthead .portlet .content {
  padding: 0;
}

/* #globalNavWelcomeContainer {position: relative;z-index: 100;width: 940px;right: 0px;top: 43px;margin: 0 auto;display: block;} */
#globalNavWelcomeContainer,
#demoGlobalNavWelcomeContainer {
  position: relative;
  z-index: 100;
  right: 0px;
  top: 43px;
  margin: 0 auto;
  display: block;
}
#globalNavWelcomeContainer #globalNav ul,
#demoGlobalNavWelcomeContainer #globalNav ul {
  list-style: none;
  margin: 5px 0 0 0px;
  width: 100%;
  text-align: right;
}
#globalNavWelcomeContainer #globalNav ul li,
#demoGlobalNavWelcomeContainer #globalNav ul li {
  display: inline;
  margin: 0;
  padding: 0 0 0 2px;
  border-left: solid 1px #1f1f1f;
  font-weight: bold;
}
#globalNavWelcomeContainer #globalNav ul li:first-child,
#demoGlobalNavWelcomeContainer #globalNav ul li:first-child {
  border: 0;
}
#globalNavWelcomeContainer #globalNav ul li a,
#globalNavWelcomeContainer #globalNav ul li span,
#demoGlobalNavWelcomeContainer #globalNav ul li a,
#demoGlobalNavWelcomeContainer #globalNav ul li span {
  padding: 4px;
}
#globalNavWelcomeContainer #globalNav ul li .demo-pi-creds,
#demoGlobalNavWelcomeContainer #globalNav ul li .demo-pi-creds {
  font-weight: normal;
}
#globalNavWelcomeContainer .header-col-right,
#demoGlobalNavWelcomeContainer .header-col-right {
  padding-top: 18px;
  float: right;
}
#globalNavWelcomeContainer .header-col-right a.primarybtn,
#demoGlobalNavWelcomeContainer .header-col-right a.primarybtn {
  padding: 11px;
  border-radius: 20px;
  background-color: #cb4c15;
  color: #fff;
  font: bold 13px Arial, sans-serif;
}
#globalNavWelcomeContainer .header-col-right a.primarybtn:hover,
#demoGlobalNavWelcomeContainer .header-col-right a.primarybtn:hover {
  background-color: #c34b19;
  color: #fff;
}

#demoGlobalNavWelcomeContainer {
  position: absolute;
}
#demoGlobalNavWelcomeContainer a {
  color: #00556f;
}

.demo-banner-ribbon {
  background-color: #c84f0d;
}
.demo-banner-ribbon .demo-banner-ribbon-text {
  padding-top: 7px;
  padding-bottom: 7px;
  text-align: center;
  font-weight: 600;
  color: white;
}

.demo-banner-text {
  position: relative;
  margin-top: 38px;
  left: 40px;
  color: #fff;
  font-size: xxx-large;
  font-family: Georgia;
  display: inline-block;
  transform: rotate(342deg);
}

.searchContainer {
  width: 400px;
  position: absolute;
  top: 80px;
  right: 0px;
  text-align: right;
}
.searchContainer input {
  vertical-align: middle;
}
.searchContainer .searchField {
  width: 242px;
  padding: 4px;
}

#masthead .searchContainer form {
  display: inline;
}
#masthead .searchContainer span {
  *position: relative;
  *top: 9px;
  /* modified - need to be tested */
  /* IE Fix */
}

/* Primary Navigation styles -------------------------------------- */
/* #primary_nav_wrap{margin:0 auto;position: relative;display: block;width: 940px;} */
#primary_nav_wrap {
  margin: 0 auto;
  position: relative;
  display: block;
}
@media (min-width: 940px) {
  #primary_nav_wrap {
    width: 940px;
  }
}
@media (min-width: 1200px) {
  #primary_nav_wrap {
    width: 1200px;
  }
}
#primary_nav_wrap ul {
  list-style: none;
  position: relative;
  float: left;
  padding: 0;
  background-color: #303b53 !important;
  margin: 0 auto 20px auto;
  width: 100%;
}
#primary_nav_wrap ul a {
  display: table-cell;
  vertical-align: middle;
  color: #fff;
  text-decoration: none !important;
  font-weight: normal;
  text-align: center;
  font-size: 17px;
  height: 53px;
  width: 16.667%;
  font-family: Georgia, serif;
}
#primary_nav_wrap ul li {
  position: relative;
  float: left;
  margin: 0;
  padding: 0;
  top: 0;
  left: 0;
  border-right: 1px solid #616b85;
  width: 16.667%;
}
#primary_nav_wrap ul li.current-menu-item {
  background: #ddd;
}
#primary_nav_wrap ul li:hover {
  background: #00748d;
}
#primary_nav_wrap ul ul {
  display: none;
  position: absolute;
  top: 53px;
  left: 0;
  padding: 0;
  width: 100%;
  z-index: 9999 !important;
  background-color: #00748d !important;
}
#primary_nav_wrap ul ul li {
  float: none;
  border-top: 1px solid #2e92ab;
  border-right: 0px solid #616b85;
  width: 100%;
}
#primary_nav_wrap ul ul a {
  font-family: Arial, sans-serif !important;
  font-size: 14px;
  text-align: left;
  padding: 11px 14px;
  height: auto;
  text-transform: none !important;
}
#primary_nav_wrap ul ul a:hover {
  background-color: #b13900;
}
#primary_nav_wrap ul ul ul {
  top: 0;
  left: 100%;
}
#primary_nav_wrap ul li:hover > ul {
  display: block;
  z-index: 10;
}
#primary_nav_wrap a.fl {
  background: url("../images/icon_listFastlane-277481815567d2b74cd543aa39a2ee1e.png") 14px 13px no-repeat;
  padding-left: 34px;
}

/* #primary_nav_wrap ul{list-style:none;position:relative;float:left;padding:0;background-color: #303b53 !important;margin:0 auto 20px auto;width:940px;} */
#headerPorletDiv.content {
  padding: 0;
}

#mainSearchBtn {
  position: absolute;
  top: 2px;
  right: 0px;
  padding: 7px;
}

/* ---------- FOOTER ---------- */
#footer {
  background: url("../images/footerbg-d1d6004c7faf55c43740ca2cae10bc22.png") repeat;
  width: 100% !important;
  color: #1f1f1f;
  margin-top: 0px;
  padding: 30px 0 44px 0;
  margin: 0 auto;
  clear: both;
  font-size: 12px;
}
#footer .portlet {
  margin: 0;
  border: none;
}
#footer .content {
  padding: 0px;
  min-width: 940px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 940px) {
  #footer .content {
    width: 940px !important;
  }
}
@media (min-width: 1200px) {
  #footer .content {
    width: 1200px !important;
  }
}
#footer .content .col-sm-2 {
  width: 16.66667%;
  float: left;
}
#footer .content .col-sm-4 {
  width: 33.33333%;
  float: left;
}
#footer .content .col-sm-8 {
  width: 66.66667%;
  float: left;
}
#footer ul#footerLinks {
  border-bottom: 1px solid #666;
  list-style: none;
  margin: 0 0 8px 0;
  padding: 8px 0;
}
#footer .collinks ul {
  list-style: none;
  margin: 0 0 6px 0;
  padding: 0px 30px 0px 0;
}
#footer .collinks ul li {
  padding: 6px 0 0 0 !important;
}
#footer h3 {
  font-family: "georgia", Serif;
  font-size: 18px !important;
  color: #303b53;
  font-weight: normal;
  background: none;
  padding: 8px 30px 0 0;
  margin: 0;
}
#footer .row.footerbuttons, #footer .row.anchoredfooter {
  padding-top: 30px !important;
}
#footer ul#footerLinks .externalLink {
  display: inline;
  padding: 0 0 0 0 !important;
  padding-right: 1px;
  /* IE fix */
}
#footer ul#footerLinks li {
  border-right: 1px solid #999;
  display: inline;
  margin-right: 3px;
  padding: 0 3px 0 0;
}
#footer ul#footerLinks li.last {
  border: 0 !important;
}
#footer .col-sm-12 {
  padding-left: 0;
}
#footer .col-sm-12 ul {
  padding-left: 0;
}

/* #footer .content {padding: 0px;margin: 0 auto;} */
.last {
  border: 0 !important;
}

#footer ul#footerLinks li a {
  color: #1f1f1f;
  text-decoration: none;
}
#footer ul#footerLinks li a:hover {
  text-decoration: underline;
}

/* SOCIAL ICONS */
ul.socialicons {
  list-style: none;
  overflow: auto;
  margin: 0;
  float: left;
}
ul.socialicons li {
  width: 40px;
  height: 40px;
  padding: 0 5px 0 0;
  float: left;
}
ul.socialicons li a {
  width: 40px;
  height: 40px;
  display: block;
  background: url("../images/sprite-dbe17fda3f3fb45363645e042393e7cf.png") no-repeat;
  text-indent: -9999px;
}
ul.socialicons li a.facebook {
  background-position: 0 -50px;
}
ul.socialicons li a.facebook:hover {
  background-position: 0px -100px;
}
ul.socialicons li a.twitter {
  background-position: -50px -50px;
}
ul.socialicons li a.twitter:hover {
  background-position: -50px -100px;
}
ul.socialicons li a.linkedin {
  background-position: -100px -50px;
}
ul.socialicons li a.linkedin:hover {
  background-position: -100px -100px;
}
ul.socialicons li a.youtube {
  background-position: -150px -50px;
}
ul.socialicons li a.youtube:hover {
  background-position: -150px -100px;
}

#footer a.primarybtn {
  float: left;
  padding: 11px;
  border-radius: 20px;
  background-color: #cb4c15;
  color: #fff;
  font: bold 13px Arial, sans-serif;
}
#footer a.primarybtn:hover {
  background-color: #c34b19;
  color: #fff;
}
#footer a.secondarybtn {
  float: left;
  padding: 11px;
  border-radius: 20px;
  background-color: #e0e0e0;
  color: #34495e;
  font: bold 13px Arial, sans-serif;
}
#footer a.secondarybtn:hover {
  background-color: #d1d1d1;
  color: #34495e;
}
#footer a.seeall {
  position: relative;
  top: 12px;
  left: 0;
}
#footer .anchoredfooter {
  line-height: 175%;
}
#footer .anchoredfooter ul {
  list-style: none;
  margin: 0;
}
#footer .anchoredfooter ul li {
  display: inline;
  margin: 0;
  padding: 0px 4px 0 6px;
  border-left: solid 1px #1f1f1f;
}
#footer .anchoredfooter ul li:first-child {
  border: 0;
  padding: 0 4px 0 0;
}
#footer .logo.research, #footer .logo.nsf {
  height: 50px;
  display: block;
  background: url("../images/sprite-dbe17fda3f3fb45363645e042393e7cf.png") no-repeat;
  text-indent: -9999px;
}
#footer .logo.research {
  background-position: 0px 0px;
  width: 200px;
}
#footer .logo.nsf {
  background-position: -200px 0px;
  width: 350px;
}

#footer .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 {
  padding: 0px !important;
}

.rgov-left-nav li.hidden {
  display: none;
}
.rgov-left-nav > li:first-child {
  background-color: #00566e;
}
.rgov-left-nav > li:first-child.header > button {
  width: 100%;
  font-size: 12px;
  border-bottom: 3px solid #3597b0;
  padding: 6px 15px;
}
.rgov-left-nav > li:first-child.header > button:hover, .rgov-left-nav > li:first-child.header > button:focus {
  background-color: transparent;
  text-decoration: none !important;
}
.rgov-left-nav > li:first-child.header > button.collapsed {
  border-bottom: none;
}
.rgov-left-nav > li > ul:last-child.collapse.in {
  margin-bottom: 10px;
}
.rgov-left-nav > li:first-child > ul > li:first-child {
  font-weight: bold;
}
.rgov-left-nav li.header {
  border-bottom: none;
}
.rgov-left-nav li.header > a {
  padding: 10px 15px;
  border-bottom: 1px solid #3597b0;
}
.rgov-left-nav li.header > a span {
  pointer-events: none;
}
.rgov-left-nav li.header ul#allItems > li > a,
.rgov-left-nav li.header ul#allItems > li button {
  padding: 10px 15px;
  text-decoration: none !important;
}
.rgov-left-nav li.header ul#allItems > li > a:hover,
.rgov-left-nav li.header ul#allItems > li button:hover {
  text-decoration: none !important;
}
.rgov-left-nav li.header ul {
  padding-left: 0;
}
.rgov-left-nav li.header ul li a,
.rgov-left-nav li.header ul li button {
  padding: 10px 15px 10px 30px;
  display: block;
}
.rgov-left-nav li {
  background-color: #00748d;
  border-bottom: 1px solid #3597b0;
  padding: 0;
  list-style: none;
}
.rgov-left-nav li a,
.rgov-left-nav li button {
  font-family: Arial;
  font-size: 14px;
  color: #ffffff;
  padding: 10px 30px;
}
.rgov-left-nav li #optionalItems li:last-child {
  border-bottom: none;
}
.rgov-left-nav li:not(.header) a:hover, .rgov-left-nav li:not(.header) a:focus, .rgov-left-nav li:not(.header) a.activated,
.rgov-left-nav li:not(.header) button:hover,
.rgov-left-nav li:not(.header) button:focus,
.rgov-left-nav li:not(.header) button.activated {
  background-color: #1b728a;
  background-color: #00566e;
  text-decoration: none !important;
}
.rgov-left-nav li:not(.header).activated a,
.rgov-left-nav li:not(.header).activated button {
  background-color: #1b728a;
  background-color: #00566e;
}
.rgov-left-nav .fa-angle-right,
.rgov-left-nav .fa-angle-down {
  float: right;
  font-size: 18px;
  pointer-events: none;
}

.nav-tabs > li.active > a {
  font-weight: bold;
}
.nav-tabs > li.active > a:hover {
  text-decoration: none;
}
.nav-tabs > li > a {
  border-color: #ced6da #ced6da #979797;
  background-color: #f5f7f8;
  line-height: normal;
  margin-right: 1px;
}
.nav-tabs > li > a:hover {
  text-decoration: underline;
}

.nav-pills li a {
  background-color: transparent;
  color: #00748d;
  font-weight: bold;
  border-bottom: 1px solid #ced6da;
}
.nav-pills li a:hover {
  color: #b13900;
}
.nav-pills li:last-child a {
  border-bottom: 1px solid #ced6da;
}

.nav-stacked {
  width: 200px;
  background: white;
  border: 1px solid #ced6da;
  border-top: 2px solid #b13900;
  margin-bottom: 20px;
}
.nav-stacked .header {
  padding: 8px 14px !important;
  font: 22px Georgia, serif !important;
  background: #f5f7f8;
  color: #34495e;
}

.side-nav__toggle-container {
  display: flex;
}

.side-nav__toggle {
  border: 0;
  border-bottom: 3px solid #3597b0;
  display: flex;
  background-color: #00566e;
  text-align: left;
  padding: 6px 15px 6px 15px;
  color: #ffffff;
  font-size: 12px;
  width: 212.5px;
  margin-right: 15px;
  margin-bottom: 3px;
}
.side-nav__toggle:hover {
  color: #ffffff;
  text-decoration: none !important;
}
.side-nav__toggle i,
.side-nav__toggle i:hover {
  color: #ffffff;
  font-size: 14px;
  pointer-events: none;
  padding-right: 3px;
}

.side-nav__toggle--toggled {
  margin-bottom: 0;
}

@media (min-width: 1200px) {
  .side-nav__toggle {
    width: 277.5px;
  }
}
.navbar {
  font-family: Georgia;
  font-size: 17px !important;
  text-align: center;
  border: 1px solid blue;
}
.navbar .dropdown-menu {
  font-family: Arial;
  padding: 0 !important;
}
.navbar .dropdown-menu ul {
  margin: 0 !important;
}
.navbar .dropdown-menu li a {
  background-color: #00748d;
  padding: 10px 14px 8px 14px !important;
  color: #fff !important;
}
.navbar .dropdown-menu li a:hover {
  background-color: #34495e !important;
}
.navbar .container, .navbar .psm-container {
  margin: 0 !important;
  padding: 0 !important;
}

.navbar-default .navbar-nav li {
  padding: 0;
}

.navbar-collapse {
  margin: 0 !important;
  padding: 0 !important;
}

/*Advisory*/
.advisory {
  border: solid 1px #c84f0d;
  background-color: #ffffff;
  margin-bottom: 10px;
  position: relative;
}
.advisory:first-of-type {
  margin-top: -9px;
}
.advisory .advisory-title-background {
  position: absolute;
  background-color: #c84f0d;
  padding-left: 20px;
  padding-right: 20px;
  float: left;
  height: 100%;
  width: 10%;
}
.advisory .advisory-title-background:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translate(0%, -50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #c84f0d;
}
.advisory .advisory-title {
  position: absolute;
  color: #ffffff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.advisory .advisory-content {
  background-color: #ffffff;
  padding: 10px 20px 10px 20px;
  width: 90%;
  margin-left: 10%;
}

/* Alerts */
.alert {
  padding: 11px !important;
  font-size: 14px !important;
}
.alert a,
.alert .btn-link {
  text-decoration: underline !important;
}
.alert p {
  margin: 0 !important;
  padding: 0 !important;
}
.alert .fa-stack {
  width: auto;
  height: auto;
  line-height: normal;
}
.alert.alert-info {
  background-color: #eefbff !important;
  border-color: #008ba9 !important;
  color: #007a95 !important;
}
.alert.alert-info:before {
  font-family: FontAwesome;
  content: "\f05a";
  display: block;
  float: left;
  font-size: 14px !important;
  height: 50px;
  margin-right: 6px;
}
.alert.alert-info.alert-info-demo {
  background-color: #ffffff !important;
  border-color: #c84f0d !important;
  color: #c84f0d !important;
}
.alert.alert-info.alert-info-demo:before {
  height: 64px;
}

.alert-info a {
  color: #007a95;
}

.alert-info-demo a {
  color: #c84f0d;
}

.alert--flex {
  display: flex;
}
.alert--flex.alert-info:before {
  height: auto;
}

.alert.alert-success {
  background-color: #e5f4ef !important;
  border-color: #006149 !important;
  color: #006149 !important;
}
.alert.alert-success:before {
  font-family: FontAwesome;
  content: "\f058";
  display: block;
  float: left;
  font-size: 14px !important;
  margin-right: 6px;
}
.alert.alert-success a {
  color: #006149;
}
.alert.alert-warning {
  background-color: #fff9e3;
  border-color: #8e5300 !important;
  color: #8e5300 !important;
}
.alert.alert-warning.modal-alert:before {
  height: 0px;
}
.alert.alert-warning:before {
  font-family: FontAwesome;
  content: "\f071";
  display: block;
  float: left;
  font-size: 14px !important;
  margin-right: 6px;
  height: 50px;
}
.alert.alert-warning a {
  color: #8e5300;
}
.alert.alert-danger {
  background-color: #fff0f0;
  border-color: #e74c3c;
  color: #b12a1f;
}
.alert.alert-danger.hard-stop {
  background-color: #ffffff !important;
}
.alert.alert-danger.soft-stop {
  background-color: #ffffff !important;
}
.alert.alert-danger div {
  color: #b12a1f;
}
.alert.alert-danger:before {
  font-family: FontAwesome;
  content: "\f06a";
  display: block;
  float: left;
  font-size: 14px !important;
  height: 42px;
  margin-right: 6px;
}
.alert.alert-danger a {
  color: #b12a1f;
}
.alert ul.alert-section {
  margin-top: 6px;
  list-style-type: disc;
}
.alert ul.alert-section ul {
  list-style-type: disc;
}

.close--flex {
  height: 20px;
  margin-left: auto;
}

.alert-dismissible .close {
  right: 0px !important;
  padding-left: 3px;
}

#anchor {
  color: #1f1f1f !important;
  margin-bottom: 10px;
}
#anchor a {
  color: #00748d;
  font-weight: normal !important;
  text-decoration: none;
}
#anchor a:hover {
  color: #b13900;
}
#anchor .muted-text {
  color: #1f1f1f;
}

.alert-iam {
  margin-bottom: 10px !important;
}
.alert-iam .icon {
  display: none;
}
.alert-iam .content {
  padding-left: 0px !important;
}
.alert-iam .content p {
  color: #8e5300 !important;
}
.alert-iam .content a {
  color: #8e5300;
  text-decoration: underline !important;
}

/** For screen-messages-service component */
.screen-messages__container a > .fa.fa-external-link {
  padding-left: 4px;
}
.screen-messages__container ul.noBullet {
  overflow: auto; /* using this because display: flow-root; isn't apparently supported by IE
  Reference: https://developer.mozilla.org/en-US/docs/Web/CSS/display#Inside
  and the Browser compatibility section
*/
}

.breadcrumb-psm-nav {
  background-color: transparent;
  margin-top: -20px;
  margin-bottom: 0px;
  padding: 25px 0px 12px 0px;
  font-size: 13px;
}
.breadcrumb-psm-nav a {
  color: #00566e;
}
.breadcrumb-psm-nav a:hover {
  color: #b13900;
}
.breadcrumb-psm-nav li.active {
  color: #1f1f1f;
}
.breadcrumb-psm-nav > li + li:before {
  content: " ";
  padding: 0;
}

.breadcrumb-progress {
  overflow: hidden;
  background-color: transparent;
  padding-left: 0px;
  padding-right: 0px;
  height: 50px;
  list-style-type: decimal;
  list-style-position: inside;
  width: 100%;
}
.breadcrumb-progress .active {
  color: white;
  background: #303b53;
}
.breadcrumb-progress .active:not(:last-child):after {
  border-left: 14px solid #303b53;
}
.breadcrumb-progress li {
  color: #666666;
  text-decoration: none;
  padding: 17px 0px 10px 42px;
  text-indent: -20px;
  background: #e9e9e9;
  border: 1px solid #d7d7d7;
  position: relative;
  display: block;
  float: left;
  width: 20%;
  height: 62px;
  display: list-item;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .breadcrumb-progress li > span {
    /* IE10+ CSS styles go here */
    position: relative;
    left: -10px;
  }
}
@supports (-ms-accelerator: true) {
  .breadcrumb-progress li > span {
    /* IE Edge 12+ CSS styles go here */
    position: relative;
    left: -10px;
  }
}
.breadcrumb-progress li .fa.fa-check {
  text-indent: -1px;
}
.breadcrumb-progress li:not(:last-child):after {
  content: " ";
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 26px solid transparent;
  border-bottom: 26px solid transparent;
  border-left: 14px solid #e9e9e9;
  position: absolute;
  top: 50%;
  margin-top: -30px;
  left: 100%;
  z-index: 2;
}
.breadcrumb-progress li:not(:last-child):before {
  content: " ";
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 26px solid transparent;
  border-bottom: 26px solid transparent;
  border-left: 16px solid #d7d7d7;
  position: absolute;
  top: 50%;
  margin-top: -30px;
  left: 100%;
  z-index: 1;
}
.breadcrumb-progress li:last-child:before {
  display: none;
}
.breadcrumb-progress li:first-child {
  padding-left: 26px;
}
.breadcrumb-progress li {
  height: auto;
  padding-top: 10px;
  text-indent: -17px;
}
.breadcrumb-progress li.breadcrumb-progress-long {
  padding-top: 10px;
}
@media (min-width: 940px) {
  .breadcrumb-progress li.long-content {
    letter-spacing: -0.3px;
  }
}
.breadcrumb-progress li .fa.fa-check {
  text-indent: 0;
}
.breadcrumb-progress li:not(:last-child):after {
  content: " ";
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 14px solid #e9e9e9;
  position: absolute;
  top: 50%;
  margin-top: -20px;
  left: 100%;
  z-index: 2;
}
.breadcrumb-progress li:not(:last-child):before {
  content: " ";
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
  border-left: 16px solid #d7d7d7;
  position: absolute;
  top: 50%;
  margin-top: -22px;
  left: 100%;
  z-index: 1;
}
.breadcrumb-progress li:first-child {
  padding-left: 32px;
}
.breadcrumb-progress a:hover {
  background: transparent;
}
.breadcrumb-progress a:hover:after {
  border-left-color: hsl(190, 99%, 20%) !important;
}

button:hover {
  text-decoration: none;
}

.btn-info {
  font-family: "Georgia", serif;
  font-style: italic;
  font-size: 16px;
}

.btn-two-lines {
  white-space: normal;
  height: auto;
  max-width: 230px;
}

.cancel-btn {
  width: 116px;
}

.btn {
  padding: 7px 36px !important;
  margin: 6px 0;
  display: inline-block;
}

.btn-link {
  padding: 0 0 !important;
  margin: 0 0;
}
.btn-link[disabled] {
  color: #666666;
  filter: alpha(opacity=100);
  opacity: 1;
}

.btn-primary, .ember-power-select-trigger,
.ember-power-select-trigger:focus, .btn-primary-prop {
  padding: 7px 36px;
  margin: 6px 0;
  display: inline-block;
  text-decoration: none !important;
}
.btn-primary:hover, .ember-power-select-trigger:hover, .btn-primary-prop:hover {
  text-decoration: none !important;
}

.btn-default {
  background-color: #e4e4e4 !important;
  border: 1px solid #c9c9c9;
}
.btn-default:hover {
  background-color: #dddddd !important;
  text-decoration: none !important;
}
.btn-default.disabled, li.rbContainerDisabled > label.btn-default.ember-radio-button, .btn-default.btn[disabled] {
  opacity: 1 !important;
  color: #666666;
}
.btn-default.disabled:hover, li.rbContainerDisabled > label.btn-default.ember-radio-button:hover, .btn-default.btn[disabled]:hover {
  background-color: #e4e4e4 !important;
}

.btn-sm, .btn-group-sm > .btn {
  padding: 2px 12px !important;
  font-size: 14px;
}

.btn-icon {
  padding: 5px 5px;
  font-size: 18px;
  line-height: 1.5;
  border-radius: 0px;
  margin-right: 3px;
}

.btn-info-icon {
  padding: 1px 6px 0px 6px !important;
  font-size: 16px;
  background-color: #c9c9c9 !important;
  margin-top: 0 !important;
}
.btn-info-icon i:hover {
  color: #b13900 !important;
}
.btn-info-icon:hover {
  background-color: #c9c9c9 !important;
  border-color: #c9c9c9 !important;
}

.btn-print-info-icon {
  padding: 3px 9px 4px 9px !important;
  font-size: 18px;
  background-color: #c9c9c9 !important;
  border: 1px solid #c9c9c9;
  margin-top: 6px !important;
  margin-left: -5px !important;
}
.btn-print-info-icon i:hover {
  color: #b13900 !important;
}
.btn-print-info-icon:hover {
  background-color: #c9c9c9 !important;
  border-color: #c9c9c9 !important;
}

/* buttons that are inline with .form-control inputs */
.btn-inline-inputs {
  padding-top: 6px !important;
  padding-bottom: 6px !important;
  margin-top: 2px !important;
}

.input-group.disabled, li.rbContainerDisabled > label.input-group.ember-radio-button {
  cursor: not-allowed;
}
.input-group.disabled .input-group-addon, li.rbContainerDisabled > label.input-group.ember-radio-button .input-group-addon {
  cursor: not-allowed;
}

.helpful-links__link--disabled,
a:not(.btn).disabled.helpful-links__link--disabled,
a:not(.btn):disabled.helpful-links__link--disabled {
  color: #666666;
}

.overlay {
  height: 100%;
  width: 100%;
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  background-color: rgb(0, 0, 0); /* Black fallback color */
  background-color: rgba(0, 0, 0, 0.5); /* Modal background w/opacity */
  overflow-x: hidden; /* Disable horizontal scroll */
}

.overlay-content {
  color: #fff;
  position: relative;
  top: 50%; /* 25% from the top */
  width: 100%; /* 100% width */
  text-align: center; /* Centered text/links */
}

.modal-content {
  right: 8px;
}

.modal-dialog-sm {
  min-width: 450px;
  width: 450px;
}

.modal-header {
  border-bottom: none;
  padding-bottom: 0;
}
.modal-header button.close[disabled] {
  cursor: not-allowed;
}

.modal-title {
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 8px;
  font-size: 18px;
}

.modal-divider {
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 15px;
  margin-bottom: 10px;
}

.modal-body-scroll-350 {
  height: 350px;
  overflow: auto;
}

.modal-body-scroll-450 {
  height: 450px;
  overflow: auto;
}

.modal-footer {
  padding: 9px 0;
  margin: 0 15px;
}
.modal-footer .btn.btn {
  margin-bottom: 0;
}

.modal-body {
  padding-bottom: 9px;
}
.modal-body .modal-footer {
  margin: 15px 0 0 0;
  padding-bottom: 0;
}

.modal-content .modal-body {
  display: grid;
}

.modal label {
  font-weight: normal;
}

.modal-center {
  text-align: center;
}

label.disabled, li.rbContainerDisabled > label.ember-radio-button,
span.disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.proposalInfoModal {
  width: 600px;
}

.alternative-modal-placement {
  margin-top: 250px;
}

.iam-modal .iam-modal-backdrop {
  background: url("../images/bodybg-15a2ef40acf7ac07c375189a1f39008b.png") 0 0 repeat-x !important;
}
.iam-modal .iam-modal-wrapper {
  background-color: rgba(0, 0, 0, 0.3);
}
.iam-modal .iam-modal-dialog {
  background-color: #ffffff !important;
}
.iam-modal .iam-modal-content hr {
  margin-top: 10px;
}

.proposal-duration-modal th,
.proposal-duration-modal td {
  text-align: center;
}

.non-lead-link-request-modal__modal-body {
  max-height: 350px;
  overflow: auto;
}

.navigation-tabs + .panel-body {
  border: 1px solid #979797;
  padding: 20px;
  border-top-width: 0;
}

.pagination .btn {
  padding: 8px !important;
}
.pagination .btn.table-header-button {
  color: #1f1f1f;
  padding: 2px 12px !important;
}

div.pagination {
  display: block !important;
  padding: 4px 0 0 0;
  margin: 0px 0 20px 0;
}
div.pagination .dropdown {
  display: inline;
  float: left;
  margin: 3px 0 0 0;
  width: 115px;
  background: url(data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0Ljk1IDEwIj48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6I2ZmZjt9LmNscy0ye2ZpbGw6IzQ0NDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFycm93czwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB3aWR0aD0iNC45NSIgaGVpZ2h0PSIxMCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxLjQxIDQuNjcgMi40OCAzLjE4IDMuNTQgNC42NyAxLjQxIDQuNjciLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMy41NCA1LjMzIDIuNDggNi44MiAxLjQxIDUuMzMgMy41NCA1LjMzIi8+PC9zdmc+) no-repeat 99%;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}
div.pagination nav {
  display: inline;
}
div.pagination p {
  display: inline;
}
div.pagination div.btn-group {
  margin: 0px 6px 0 0;
}
div.pagination div.dropdown {
  margin: 0px 10px 0 0;
}

span.pagination {
  margin: 0;
  padding: 6px 10px 4px;
}
span.pagination.new-pagination-control {
  margin: 5px 0 0;
}

ul.pagination {
  margin: 0;
  float: right;
  padding: 0;
}
ul.pagination.new-pagination-control {
  margin: 5px 0 0;
}
ul.pagination li.first a {
  border-left: 1px solid #ccc !important;
}
ul.pagination li a:hover {
  text-decoration: underline;
}
ul.pagination li a:hover i.fa {
  text-decoration: underline;
}
ul.pagination .fa.fa-angle-double-left:hover,
ul.pagination .fa.fa-angle-left:hover,
ul.pagination .fa.fa-angle-right:hover,
ul.pagination .fa.fa-angle-double-right:hover {
  color: inherit;
}
ul.pagination li.disabled a:hover {
  text-decoration: none !important;
}
ul.pagination li.disabled .fa.fa-angle-double-left:hover,
ul.pagination li.disabled .fa.fa-angle-double-right:hover {
  text-decoration: none !important;
}

.pagination-sm > li > a,
.pagination-sm > li > span {
  font-size: 14px;
  padding: 5px 13px;
  border: 1px solid #cccccc;
}

.pagination > .active > a {
  font-weight: bold;
  background-color: #c64b00;
}
.pagination > .active > a:hover {
  background-color: #c64b00;
}

.panel, .panel-prop {
  border-top: 3px solid #75c5be;
  padding: 30px 20px;
  box-shadow: 2px 2px 0px 0px rgba(0, 0, 0, 0.17);
}
.panel.disabled, li.rbContainerDisabled > label.panel.ember-radio-button, .disabled.panel-prop, li.rbContainerDisabled > label.panel-prop.ember-radio-button {
  opacity: 0.4;
}

.panel--no-gutter {
  margin-left: -15px;
  margin-right: -15px;
}

.panel-yellow {
  background-color: #ffe2a5;
  border-bottom: 2px solid #e2c686;
  border-right: 2px solid #e2c686;
  padding: 12px 10px 12px 10px;
  height: 100%;
  font-family: Arial, sans-serif;
}
.panel-yellow > .panel-body {
  text-align: center;
}
.panel-yellow > .panel-body > .number {
  font-size: 26px;
}

.panel-blue {
  background-color: #e9ecee;
  box-shadow: 1px 1px 0 0 rgba(0, 0, 0, 0.17), inset 0 3px 0 0 #008ba9;
  border: none;
  margin: 0 !important;
}
.panel-blue.panel-warning {
  background-color: #fff9e3;
  box-shadow: 1px 1px 0 0 rgba(0, 0, 0, 0.17), inset 0 3px 0 0 #8e5300;
  box-shadow: 1px 1px 0 0 rgba(0, 0, 0, 0.17), inset 0 3px 0 0 #8e5300;
}
.panel-blue.panel-error {
  background-color: #fff0f0;
  box-shadow: 1px 1px 0 0 rgba(0, 0, 0, 0.17), inset 0 3px 0 0 #e74c3c;
  box-shadow: 1px 1px 0 0 rgba(0, 0, 0, 0.17), inset 0 3px 0 0 #e74c3c;
}
.panel-blue.panel-fixed-263 {
  padding-top: 12px;
  padding-right: 5px;
  padding-left: 5px;
  padding-bottom: 5px;
  width: 263px;
  min-height: 80px;
}
.panel-blue.panel-fixed-360 {
  padding-top: 12px;
  padding-bottom: 15px;
  width: 345px;
}
.panel-blue > .panel-body {
  line-height: 0.5;
  padding: 0;
  margin: 0;
  text-align: center;
}
.panel-blue > .panel-body > h4 {
  font-size: 14px;
  margin-bottom: 6px;
}
.panel-blue > .panel-body > select {
  margin-bottom: 5px;
}
.panel-blue > .panel-body .date {
  font-size: 18px;
  padding-top: 5px;
}
.panel-blue > .panel-body .fa-asterisk {
  padding-right: 0;
}
.panel-blue > .panel-body .btn-sm, .panel-blue > .panel-body .btn-group-sm > .btn {
  padding: 5px 9px !important;
  margin: 0 !important;
}

.panel-cool-blue {
  padding-bottom: 20px;
}
.panel-cool-blue .panel-header {
  background-color: #3c97aa;
  border: solid 1px #3c97aa;
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
  text-align: left;
  padding: 10px;
}
.panel-cool-blue .panel-header > a {
  color: #ffffff;
}
.panel-cool-blue .panel-body {
  background-color: #ffffff;
  padding: 20px;
  border: solid 1px #ced6da;
}
.panel-cool-blue .checkbox-input {
  margin-top: 3px;
  border: none;
}

.panel-teal {
  padding-bottom: 20px;
}
.panel-teal .panel-header {
  background-color: #00748d;
  border: solid 1px #3da4b6;
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
  text-align: left;
  padding: 10px;
}
.panel-teal .panel-body {
  background-color: #ffffff;
  padding: 20px;
  padding-bottom: 0;
  border: solid 1px #ced6da;
}
.panel-teal .panel-body > ul {
  padding-left: 0;
  margin-left: 0;
}

.panel-body .list {
  padding-left: 0;
  margin-left: 0;
}

.panel-teal-header {
  border: 1px solid #d4d4d4;
  margin-bottom: 30px;
}
.panel-teal-header button.btn-align-left,
.panel-teal-header a.btn-align-left {
  padding-left: 10px !important;
}
.panel-teal-header button.btn-align-left.btn-icon-wrap,
.panel-teal-header a.btn-align-left.btn-icon-wrap {
  white-space: normal;
  height: auto;
  padding-left: 25px !important;
  padding-right: 10px !important;
}
.panel-teal-header button.btn-align-left.btn-icon-wrap i,
.panel-teal-header a.btn-align-left.btn-icon-wrap i {
  position: absolute;
  margin-left: -18px;
  margin-top: 2px;
}
.panel-teal-header button.btn-align-left.btn-icon-wrap i.icon-pad-right,
.panel-teal-header a.btn-align-left.btn-icon-wrap i.icon-pad-right {
  margin-left: -20px;
}
.panel-teal-header button.btn-align-left.btn-icon-wrap i.fa-file.file-arrow-overlap,
.panel-teal-header a.btn-align-left.btn-icon-wrap i.fa-file.file-arrow-overlap {
  margin-left: -20px;
  font-size: 12px;
}
.panel-teal-header button.btn-align-left.btn-icon-wrap i.fa-arrow-right.file-arrow-overlap,
.panel-teal-header a.btn-align-left.btn-icon-wrap i.fa-arrow-right.file-arrow-overlap {
  margin-left: -11px;
  margin-top: 3px;
  font-size: 11px;
  text-shadow: -1px 0 #313b52, 0 1px #313b52, 1px 0 #313b52, 0 -1px #313b52;
}
.panel-teal-header button.btn-align-left.btn-icon-wrap i.fa-file-o.file-arrow-overlap,
.panel-teal-header a.btn-align-left.btn-icon-wrap i.fa-file-o.file-arrow-overlap {
  margin-left: -13px;
  margin-top: 3px;
  font-size: 11px;
}
.panel-teal-header button.btn-align-left.btn-icon-wrap i.fa-arrow-left.file-arrow-overlap,
.panel-teal-header a.btn-align-left.btn-icon-wrap i.fa-arrow-left.file-arrow-overlap {
  margin-left: -20px;
  margin-top: 3px;
  font-size: 11px;
}
.panel-teal-header > .panel-header {
  background: #00748d;
  color: #ffffff;
  height: 40px;
  font-size: 14px;
  padding-left: 15px;
  padding-top: 10px;
  vertical-align: middle;
}
.panel-teal-header > .panel-header a {
  color: #fff;
  text-decoration: underline;
}
.panel-teal-header > .panel-body {
  padding: 10px 15px;
}
.panel-teal-header > .panel-body.big-button-body {
  padding: 10px 10px;
}

.panel-gray, .panel-gray-prop {
  padding-bottom: 20px;
  background-color: #e9ecee;
}
.panel-gray > .panel-title, .panel-gray-prop > .panel-title {
  color: #313b52;
  text-align: center;
}
.panel-gray > .panel-body, .panel-gray-prop > .panel-body {
  font-family: "Arial";
  font-size: 14px;
  color: #1f1f1f;
  text-align: center;
}

.panel-ocean-two.panel-ocean-two.panel-ocean-two.panel-ocean-two.panel-ocean-two {
  border: solid 1px #ced6da;
  border-top: none;
  background-color: #ffffff;
  margin-bottom: 20px;
}
.panel-ocean-two.panel-ocean-two.panel-ocean-two.panel-ocean-two.panel-ocean-two > .panel-header,
.panel-ocean-two.panel-ocean-two.panel-ocean-two.panel-ocean-two.panel-ocean-two .panel-heading:first-child {
  background-color: #00748d;
  border: solid 1px #00748d;
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
  text-align: left;
  padding: 10px;
}
.panel-ocean-two.panel-ocean-two.panel-ocean-two.panel-ocean-two.panel-ocean-two > .panel-heading,
.panel-ocean-two.panel-ocean-two.panel-ocean-two.panel-ocean-two.panel-ocean-two .panel-heading:nth-of-type(2) {
  background-color: #3c97aa;
  border: solid 1px #3da4b6;
  border-top: 0;
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
  text-align: left;
  padding: 10px;
}
.panel-ocean-two.panel-ocean-two.panel-ocean-two.panel-ocean-two.panel-ocean-two > .panel-body {
  padding: 20px;
}

.panel-steel-blue.panel-steel-blue.panel-steel-blue.panel-steel-blue.panel-steel-blue.panel-steel-blue {
  border: solid 1px #ced6da;
  border-top: none;
  background-color: #ffffff;
}
.panel-steel-blue.panel-steel-blue.panel-steel-blue.panel-steel-blue.panel-steel-blue.panel-steel-blue > .panel-header,
.panel-steel-blue.panel-steel-blue.panel-steel-blue.panel-steel-blue.panel-steel-blue.panel-steel-blue .panel-heading {
  background-color: #3c97aa;
  border: solid 1px #3c97aa;
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
  text-align: left;
  padding: 10px;
}
.panel-steel-blue.panel-steel-blue.panel-steel-blue.panel-steel-blue.panel-steel-blue.panel-steel-blue > .panel-body {
  padding: 20px !important;
}

.pappg-panel, .plan-list-panels .plan-list-panels__pappg-link {
  width: 274px;
  margin-right: inherit;
  margin-bottom: 15px;
  margin-left: 15px;
  padding-top: 5px;
  padding-bottom: 5px;
}
@media (min-width: 1200px) {
  .pappg-panel, .plan-list-panels .plan-list-panels__pappg-link {
    width: 270px;
  }
}
.pappg-panel > .panel-body, .plan-list-panels .plan-list-panels__pappg-link > .panel-body {
  text-align: left;
}

.panel-title {
  color: #34495e;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #ced6da;
}
.panel-title.no-padding {
  padding: 0px 0px;
}

.no-border {
  border: none;
}

.panel-subtitle {
  font-family: "Arial";
  font-weight: bold;
  color: #34495e;
}
.panel-subtitle h3 {
  font-size: 18px;
}

.panel-title i.sub-title {
  display: block;
  font-size: 16px;
  font-family: "Georgia";
  color: #666666;
  margin-top: 12px;
}

.panel-body {
  padding: 10px 0px;
}

.panel .panel-inline-link, .panel-prop .panel-inline-link {
  margin-top: -4px !important;
  margin-bottom: 0;
}
.panel .panel-inline-link > button, .panel-prop .panel-inline-link > button {
  margin: 0 !important;
}
.panel .panel-inline-link > button.btn-sm, .panel-prop .panel-inline-link > button.btn-sm, .panel .btn-group-sm.panel-inline-link > button.btn, .panel-prop .btn-group-sm.panel-inline-link > button.btn {
  width: 96px;
}

.col-xs-3-amt {
  min-width: 0px;
  margin-bottom: 0px;
  margin-right: 20px;
  margin-left: auto;
  float: right;
  margin-left: -20px;
  position: absolute;
  top: 20px;
  right: 0px;
}

.panel-body-amt {
  padding: 0px 0px 0px 0px;
  height: 50%;
  text-align: center;
  font-size: 14px;
}
.panel-body-amt .number {
  font-size: 26px;
}

.panel-footer {
  padding-left: 0;
  border-top: 1px solid #ced6da;
  background-color: transparent;
  margin-top: 20px;
}

.ember-panel-component.ember-panel-component.ember-panel-component.ember-panel-component {
  padding: 0 0;
  margin: 0 0;
  border: 1px solid #d4d4d4;
  box-shadow: none;
}
.ember-panel-component.ember-panel-component.ember-panel-component.ember-panel-component.panel-primary .panel-heading > p, .ember-panel-component.ember-panel-component.ember-panel-component.ember-panel-component.panel-primary .panel-heading > div {
  color: white;
}
.ember-panel-component.ember-panel-component.ember-panel-component.ember-panel-component.panel-primary .panel-heading a:not(.popover a) {
  color: white;
  text-decoration: underline;
}
.ember-panel-component.ember-panel-component.ember-panel-component.ember-panel-component .panel-body {
  padding: 10px 10px;
}
.ember-panel-component.ember-panel-component.ember-panel-component.ember-panel-component.panel-steel-blue {
  margin-bottom: 20px;
}

.ember-panel-component__heading--is-bold {
  font-weight: bold;
}

/* For <ProposalSubmissionWizard::PlaceInformationPanel /> ember component */
.proposal-submit-wizard-place-information__address {
  white-space: pre;
}

.proposal-submit-wizard-proposal-certifications__certification-text {
  overflow-y: scroll;
  border: solid 1px #cccccc;
  height: 330px;
  padding-bottom: 10px;
}

.proposal-submit-wizard-proposal-certifications__disclaimer {
  font-size: 15px;
  margin-top: 35px;
}

.click-popover {
  font-size: 14px;
}

h3 .click-popover {
  margin-left: 10px;
}

.panel-header .click-popover > span > a {
  color: #fff;
  text-decoration: underline;
}

.power-select-custom.power-select-custom,
.power-select-custom.power-select-custom:hover,
.power-select-custom.power-select-custom:active,
.power-select-custom.power-select-custom:focus {
  line-height: 1.428571429;
  border: 1px solid #999999;
  color: black;
  padding: 6px 45px 6px 12px;
  padding-right: 45px;
  text-overflow: ellipsis;
}
.power-select-custom.power-select-custom[aria-disabled=true] .ember-power-select-placeholder,
.power-select-custom.power-select-custom:hover[aria-disabled=true] .ember-power-select-placeholder,
.power-select-custom.power-select-custom:active[aria-disabled=true] .ember-power-select-placeholder,
.power-select-custom.power-select-custom:focus[aria-disabled=true] .ember-power-select-placeholder {
  color: #666666;
}
.power-select-custom.power-select-custom .ember-power-select-placeholder,
.power-select-custom.power-select-custom:hover .ember-power-select-placeholder,
.power-select-custom.power-select-custom:active .ember-power-select-placeholder,
.power-select-custom.power-select-custom:focus .ember-power-select-placeholder {
  color: black;
}
.power-select-custom.power-select-custom.power-select-custom--error,
.power-select-custom.power-select-custom:hover.power-select-custom--error,
.power-select-custom.power-select-custom:active.power-select-custom--error,
.power-select-custom.power-select-custom:focus.power-select-custom--error {
  border: solid 1px #e74c3c;
}

.power-select-custom-dropdown.power-select-custom-dropdown {
  background-color: #ffffff;
  border: 1px solid #ced6da;
}
.power-select-custom-dropdown.power-select-custom-dropdown .ember-power-select-dropdown {
  background-color: #ffffff;
}
.power-select-custom-dropdown.power-select-custom-dropdown .ember-power-select-options {
  background-color: #ffffff;
  color: black;
  border: 0;
  max-height: 331px;
}
.power-select-custom-dropdown.power-select-custom-dropdown .ember-power-select-option {
  color: black;
  border-top: 1px solid #ced6da;
  border-bottom: 0;
  line-height: 1.428571429;
  padding: 6px 8px;
}
.power-select-custom-dropdown.power-select-custom-dropdown .ember-power-select-option[aria-current=true] {
  background-color: #d4ecf1;
}

.power-select-custom-before-options.power-select-custom-before-options {
  border-width: 0;
  padding: 1px 0;
  border-color: #ced6da;
}
.power-select-custom-before-options.power-select-custom-before-options .input-group,
.power-select-custom-before-options.power-select-custom-before-options .input-group-addon,
.power-select-custom-before-options.power-select-custom-before-options i.fa,
.power-select-custom-before-options.power-select-custom-before-options button,
.power-select-custom-before-options.power-select-custom-before-options input {
  border-width: 0;
}

.power-select-custom-before-options__input-group {
  background-color: transparent;
  width: 100%;
  display: grid;
  align-items: center;
}

.power-select-custom-before-options__input {
  padding-left: 25px;
  padding-right: 20px;
  background-color: transparent;
  grid-column: 1/3;
  grid-row: 1;
  height: 34px;
  color: #666666;
}

.power-select-custom-before-options__search-addon {
  background-color: transparent;
  grid-column: 1;
  grid-row: 1;
  width: 30px;
  padding: 0 0;
}

.power-select-custom-before-options__close-addon {
  background-color: transparent;
  width: 25px;
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
}
.power-select-custom-before-options__close-addon.input-group-addon {
  padding: 0 0;
}
.power-select-custom-before-options__close-addon button {
  padding: 6px 6px;
  background-color: transparent;
}

.power-select-custom-no-matches {
  background-color: #e4e4e4;
}

.record-list div.pagination {
  margin: 5px 0;
  padding: 0 0;
  overflow: auto;
}
.record-list div.pagination > .no-label-label {
  margin: 0 0;
}
.record-list div.pagination > .no-label-label > .page-size-dropdown {
  margin: 0 0;
}
.record-list .record-list__main-table {
  margin-bottom: 0;
}
.record-list .record-list__no-results {
  text-align: center;
}
.record-list .searchBar {
  margin: 0 0;
  padding-top: 0;
}
.record-list .searchBar > .inline-edit {
  margin-bottom: 0;
}
.record-list .searchBar-container {
  display: inline-flex;
}
.record-list .record-list__radio-selection {
  text-align: center;
}
.record-list ~ .record-list {
  margin-top: 30px;
  border-top: 2px solid #e2e2e2;
  padding-top: 30px;
}

.response-radio label {
  font-weight: normal;
}
.response-radio li.proposal-type {
  float: left;
  clear: left;
}
.response-radio .radio-button {
  margin-right: 7px;
}

.section-instructions .section-instructions__link-box-container {
  margin-top: 5px;
}
.section-instructions .section-instructions__link-box-container:first-child {
  margin-top: 0;
}

.section-instructions__link-box--more-width {
  padding: 5px 10px;
}

.section-instructions__link-box--less-width.section-instructions__link-box--less-width.section-instructions__link-box--less-width.section-instructions__link-box--less-width {
  width: 200px;
  margin: 0;
}

.table {
  border-collapse: collapse;
  border: 1px solid #ced6da;
}
.table thead {
  color: #fff;
  background: #00748d;
  background: -moz-linear-gradient(top, #00748d 0%, #01697f 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #00748d), color-stop(100%, #01697f));
  background: -webkit-linear-gradient(top, #00748d 0%, #01697f 100%);
  background: -o-linear-gradient(top, #00748d 0%, #01697f 100%);
  background: -ms-linear-gradient(top, #00748d 0%, #01697f 100%);
  background: linear-gradient(to bottom, #00748d 0%, #01697f 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00748d", endColorstr="#01697f",GradientType=0 );
  border-color: #01697f;
}
.table thead > tr {
  border: 1px solid #01697f;
}
.table thead > tr > th {
  border-color: #01697f;
  border: 1px solid #01697f;
}
.table thead th > a > i {
  color: #fff;
}
.table thead th > a > i:visited {
  color: #fff;
}
.table thead th > a > i:hover {
  color: #fff;
}
.table thead th > a > i:active {
  color: #fff;
}
.table thead th > a > i:link {
  color: #fff;
}
.table thead .fa-external-link {
  color: inherit;
}
.table thead .sub-header {
  border: 1px solid #3c97aa;
}
.table thead .sub-header > header {
  border-color: #3c97aa;
}
.table thead th > a:not(.btn),
.table thead th > span > a:not(.btn),
.table thead th span > a:not(.btn) {
  color: #fff;
}
.table thead .underline-link {
  text-decoration: none;
  font-weight: normal;
  border-bottom: 1px solid #ffffff;
}
.table thead .underline-link a:hover {
  text-decoration: none !important;
}
.table thead .underline-link-icon-table {
  text-decoration: underline;
}
.table .no-results {
  text-align: center;
}
.table .row-expanded {
  font-weight: bold;
}
.table td {
  border: 1px solid #ced6da;
  height: 100%;
}
.table label {
  width: 100%;
  height: 100%;
  font-weight: normal;
  margin-bottom: 0px;
}
.table th.mid-table {
  color: #fff;
  background-color: #3c97aa;
  border: none;
}
.table th.mid-table > span > a {
  color: #ffffff;
  text-decoration: underline;
}
.table tr.sub-header > th {
  background-color: #3c97aa;
  border: 1px solid #3da4b6;
  vertical-align: top;
}
.table tr.table-display__title-row > th {
  vertical-align: top;
}
.table tr.rotated-sub-header {
  background-color: #3c97aa;
  border: none !important;
  border: solid 1px #3da4b6;
  color: #ffffff;
}
.table tr.rotated-sub-header.taller {
  height: 85px;
}
.table tr.rotated-sub-header.rotated-sub-header-border th {
  border-right: solid 1px #3da4b6 !important;
}
.table tr.rotated-sub-header.rotated-sub-header-border th:last-child {
  border-right: none !important;
}
.table tr.rotated-sub-header th.col-slider {
  border-left: solid 1px #3da4b6 !important;
  border-right: solid 1px #3da4b6 !important;
}
.table tr.rotated-sub-header > th {
  vertical-align: top;
  border: none;
}
.table tr.rotated-sub-header > th.totals, .table tr.rotated-sub-header > th.slider {
  border-left: solid 1px #3da4b6 !important;
}
.table tr.rotated-sub-header > th.year {
  padding: 0px;
}
.table tr.rotated-sub-header > th.year > div {
  padding: 10px;
  color: #ffffff;
  border: solid 1px #3da4b6 !important;
  border-top: none !important;
  border-right: none !important;
  margin-left: 84px;
  margin-right: -84px;
}
.table tr.rotated-sub-header > th.year.multiyear-2-1 > div, .table tr.rotated-sub-header > th.year.multiyear-3-2 > div, .table tr.rotated-sub-header > th.year.multiyear-1- > div {
  margin-right: 0;
}
.table th.rotate-45 {
  vertical-align: bottom !important;
  white-space: nowrap;
  background-color: transparent;
  border-right: none !important;
  border-left: none !important;
  padding: 0px;
}
.table th.rotate-45 > div {
  color: #fff;
  padding: 5px 10px;
}
.table th.rotate-45 > div.divider {
  padding: 0px;
  border-top: solid 1px #3da4b6 !important;
  width: 120px;
  transform: translate(-18px, -13px) rotate(315deg); /* 45 is really 360 - 45 */
}
.table tr.subtotal {
  font-weight: bold;
  background-color: #fff0cf !important;
  border: 2px solid #ffe2a1 !important;
  border-left: none !important;
  border-right: none !important;
}
.table tr.subtotal td {
  border-right: 1px solid #ffe2a1 !important;
}
.table tr.subtotal td:last-child {
  border-right: none !important;
}
.table tr.total {
  font-weight: bold;
  background-color: #ffe2a1 !important;
  border: 2px solid #e2c686 !important;
  border-left: none !important;
  border-right: none !important;
}
.table tr.total td {
  border-right: 1px solid #e2c686 !important;
}
.table tr.total td:last-child {
  border-right: none !important;
}
.table th.col-width-30 {
  width: 30%;
}
.table th.col-width-25 {
  width: 25%;
}
.table th.col-width-20 {
  width: 20%;
}
.table th.col-width-15 {
  width: 15%;
}
.table th.col-width-10 {
  width: 10%;
}

.border-collapse-separate {
  border-collapse: separate;
}

.table-manage-personnel-modal {
  border-style: none;
  font-weight: bold;
  background-color: #ffffff;
}

.table-bordered {
  border-top: none;
}

table.table > tbody > tr > td.no-border {
  border: none;
}
table.table > tbody > tr.contains-table {
  border-right: 1px solid #ced6da;
}
table.table > tbody > tr.contains-table > td {
  border: none;
  padding-top: 0;
}
table.table > tbody > tr > td.contains-table {
  border: none;
}
table.table > tbody > tr.primary-row.row-odd {
  background-color: #f5f7f8;
}
table.table > tbody > tr.secondary-row.row-odd {
  background-color: #f5f5f5;
}
table.table > tbody > tr.accent-row {
  background-color: #fff;
}
table.table > tbody > tr.default-row {
  background-color: #f5f7f8;
}

table.table-no-border {
  border: none;
}
table.table-no-border > tbody,
table.table-no-border tr,
table.table-no-border td {
  border: none;
}
table.table-no-border td.no-border {
  border-right: none !important;
}
table.table-no-border td.cost-sharing-total {
  width: 20px;
}
table.table-no-border td.dividing-character {
  text-align: center;
  padding-top: 12px;
  padding-left: 0;
  padding-right: 0;
}
table.table-no-border td.col-budget-amounts, table.table-no-border td.col-budget-total {
  border-right: 1px solid #ced6da !important;
}
table.table-no-border td:first-child {
  border-right: 1px solid #ced6da !important;
}
table.table-no-border td:last-child {
  border-right: none !important;
}
table.table-no-border td.slider-col {
  border-right: 1px solid #ced6da;
  border-left: 1px solid #ced6da;
}

.table-fixed {
  table-layout: fixed;
}

.td-button {
  padding: 2px !important;
  vertical-align: inherit !important;
}

td .table-lettering {
  display: inline-block;
  min-width: 16px;
  vertical-align: top;
}

td .table-lettering-text {
  display: inline-block;
  width: 85%;
}

.collapsed {
  border-collapse: collapse;
}

.table-grouped td {
  border-top: none !important;
  border-bottom: none !important;
}
.table-grouped > tbody + tbody {
  border-top: none;
}

.tbody-accent {
  background-color: #fff;
}

.budget .budget__subsection {
  border-bottom: 2px solid #ccc;
}

.table .vertical-top {
  vertical-align: top;
}

tbody.bordered-tr tr {
  border-bottom: 1px solid #ced6da;
}
tbody.bordered-tr tr:last-child {
  border-bottom: none;
}

.table-display__header-cell-container.flex {
  align-items: flex-start;
}

.video-tutorial {
  border-style: none;
  overflow: hidden;
}

.live-search-typeahead {
  position: relative;
}

.live-search-typeahead--has-input-label .help-block {
  margin-left: 25px;
}

.live-search-typeahead__label-and-input-container {
  display: flex;
  align-items: baseline;
}
.live-search-typeahead__label-and-input-container .input-group {
  flex-grow: 1;
}

.live-search-typeahead__input-label {
  width: 25px;
  flex-shrink: 0;
}

.live-search-typeahead__input-container {
  display: flex;
  flex-grow: 1;
  align-items: baseline;
}

.live-search-typeahead__loading-spinner {
  padding-left: 5px;
  width: 100px;
  display: flex;
  align-items: center;
  height: 100%;
  position: absolute;
  left: 100%;
}

.live-search-typeahead__input-addon {
  padding: 5px 3px 5px 5px;
}

.live-search-typeahead__search-result-records {
  position: absolute;
  border: 0.5px solid gray;
  width: 100%;
  top: 100%;
  z-index: 3;
  padding: 0;
  background-color: #ffffff;
  margin: 0px 0px 5px 0px;
}
.live-search-typeahead__search-result-records li {
  list-style-type: none;
  border-width: 0;
  padding: 5px 5px;
  text-align: left;
  width: 100%;
}

.live-search-typeahead__search-result-record {
  background-color: #ffffff;
}
.live-search-typeahead__search-result-record:hover {
  background-color: #f5f5f5;
}

.live-search-typeahead__search-result-record--focused {
  background-color: #f5f5f5;
}

.sticky-bottom-border {
  border-bottom: 1px solid #ced6da;
  margin-left: 0px;
  margin-right: 0px;
}

div .sticky {
  position: -webkit-sticky;
  position: sticky;
  top: -1px;
}
div .sticky-edge {
  margin: 0px;
  background-color: #ffffff;
  z-index: 201;
}
div .sticky-background {
  overflow: visible;
  margin: 0px -20px;
  padding: 10px 0px;
  border: 1px solid #ced6da;
  background-color: #ffffff;
  box-sizing: border-box;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.5);
  z-index: 201;
}

.psm-container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 0px;
  padding-right: 0px;
}

.textarea-scroll {
  background: #ffffff !important;
  overflow-x: hidden;
  overflow-y: auto;
}

.alert.alert-danger {
  --before-height: 42px;
}
.alert.alert-danger:before {
  height: var(--before-height);
}

.prefix-proposal-title::before,
.prefix-proposal-title > .prefix-proposal-title__prefix-box {
  content: attr(data-proposal-prefix);
  color: #666666;
  position: absolute;
  left: 8px;
  bottom: 7px;
  font-weight: normal;
  white-space: pre;
}
.prefix-proposal-title > .prefix-proposal-title__prefix-box {
  bottom: 0;
  padding: 8px 0 7px 0;
  height: 34px;
  margin-bottom: 2px;
}
.prefix-proposal-title--flushed::before,
.prefix-proposal-title--flushed > .prefix-proposal-title__prefix-box {
  left: 4px;
}
.prefix-proposal-title--larger > input,
.prefix-proposal-title--larger > .prefix-proposal-title__prefix-box {
  height: 35px;
  margin-bottom: 1px;
}
.prefix-proposal-title--larger > .prefix-proposal-title__title-box {
  padding-left: 6px;
}

.prefix-proposal-title__prefix-box {
  white-space: pre;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .prefix-proposal-title:before {
    top: 10px;
  }
}
.error {
  border: solid 1px #e74c3c;
}

.error-text {
  color: #b12a1f;
  font-size: 13px;
}
.error-text:empty:before {
  content: "​";
}

.display-block {
  display: block;
}

.display-none {
  display: none;
}

.display-inline {
  display: inline;
}

.display-inline-block {
  display: inline-block;
}
.display-inline-block.vertical-top {
  vertical-align: top;
}
.display-inline-block.button-inline-block {
  padding-top: 23px;
}

.error-tooltip + .tooltip {
  z-index: 1040;
  opacity: 1;
  margin-top: 0;
}
.error-tooltip + .tooltip > .tooltip-inner {
  background-color: #b33127;
  border-radius: 2px;
  max-width: 280px;
  width: 280px;
  font-size: 14px;
  display: flex;
  padding-right: 25px !important;
}
.error-tooltip + .tooltip > .tooltip-inner > div {
  color: inherit;
  word-wrap: normal;
  text-align: left;
}
.error-tooltip + .tooltip > .tooltip-inner > button.close-tooltip,
.error-tooltip + .tooltip > .tooltip-inner a.close-tooltip {
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  font-weight: normal !important;
  font-size: 13px;
  position: absolute;
  top: 0;
  right: 0;
  color: #fff !important;
  margin-top: 5px !important;
  padding: 2px 6px !important;
}
.error-tooltip + .tooltip > .tooltip-arrow {
  border-top-color: #b33127;
  padding-top: 1px;
}

.error-icon {
  font-family: FontAwesome;
  font-size: 13px !important;
  color: #b33127;
  position: absolute;
  top: -7px;
  right: -7px;
}
.error-icon:hover {
  color: #b33127 !important;
  cursor: pointer;
}

.validation-error-text {
  color: #b12a1f;
  font-size: 13px;
  vertical-align: top;
}
.validation-error-text span {
  display: inline-block;
  width: 90%;
}

.position-relative {
  position: relative;
}

.searchBar {
  padding: 8px 10px;
  margin-top: -25px;
}
.searchBar label {
  width: 100%;
}

.staticFormsPageImg {
  max-width: 100%;
  max-height: 100%;
  border: 1px solid black;
}

.sortable-header {
  color: white;
  padding-top: 4px;
  float: right;
}

.width-perc-100 {
  width: 100%;
}

.input-width-540 {
  width: 540px;
}

.input-width-327 {
  width: 327px;
}

.input-width-discipline {
  width: 255px;
}

.input-width-phone {
  width: 184px;
}

.input-width-name {
  width: 226px;
}

.input-width-middle-initial {
  width: 90px;
}

.input-width-company {
  width: 534px;
}

.input-width-award-number {
  width: 257px;
}

.input-width-short-number {
  width: 80px;
}

.middle-initial-grid {
  padding-left: 0 !important;
}

@media (min-width: 1200px) {
  .input-width-discipline {
    width: 350px;
  }
  .input-width-name {
    width: 326px;
  }
  .input-width-middle-initial {
    width: 113px;
  }
  .input-width-company {
    width: 734px;
  }
  .middle-initial-grid {
    padding-left: 15px !important;
  }
}
section.inline-edit {
  margin-left: -3px;
}
section.inline-edit .inline-edit-readonly {
  margin-top: 4px;
  margin-left: 3px;
}

.padding-top-5 {
  padding-top: 5px !important;
}

.padding-top-7 {
  padding-top: 7px !important;
}

.padding-top-10 {
  padding-top: 10px !important;
}

.padding-top-15 {
  padding-top: 15px !important;
}

.padding-top-20 {
  padding-top: 20px !important;
}

.padding-btm-0 {
  padding-bottom: 0px !important;
}

.padding-btm-5 {
  padding-bottom: 5px !important;
}

.padding-btm-10 {
  padding-bottom: 10px !important;
}

.padding-btm-15 {
  padding-bottom: 15px !important;
}

.padding-right-0 {
  padding-right: 0px !important;
}

.padding-right-5 {
  padding-right: 5px !important;
}

.padding-right-10 {
  padding-right: 10px;
}

.padding-right-30 {
  padding-right: 30px !important;
}

.padding-left-0 {
  padding-left: 0px !important;
}

.padding-left-10 {
  padding-left: 10px !important;
}

.padding-left-15 {
  padding-left: 15px !important;
}

.padding-left-20 {
  padding-left: 20px !important;
}

.padding-left-25 {
  padding-left: 25px !important;
}

.padding-left-30 {
  padding-left: 30px !important;
}

.padding-left-50 {
  padding-left: 50px !important;
}

.padding-left-60 {
  padding-left: 60px !important;
}

.font-size-13 {
  font-size: 13px;
}

.font-size-16 {
  font-size: 16px !important;
}

.no-label-label {
  font-weight: normal;
  display: inherit;
}

.sbir-sttr-form {
  width: 45%;
}

.display-input-inline-block > input[type=text] {
  font-weight: normal;
  display: inline-block !important;
}

label > select,
label input[type=text] {
  font-weight: normal;
  display: block;
}

.checkbox-label-text {
  display: inline-block;
  vertical-align: text-top;
}

/* checkbox properties to allow multi line text to align to the right of a checkbox consistently */
div.checkbox-wrap label.checkbox {
  padding-left: 0 !important;
}
div.checkbox-wrap label.checkbox input[type=checkbox] {
  margin-left: 0 !important;
}
div.checkbox-wrap label.checkbox span.checkbox-label-text {
  padding-left: 20px !important;
}
div.checkbox-wrap span.checkbox-additional-text i.fa-info-circle {
  padding-left: 20px !important;
}
@media (min-width: 1200px) {
  div.checkbox-wrap span.checkbox-additional-text i.fa-info-circle {
    padding-left: 0 !important;
  }
}

.vert-aligned-numbered-label {
  text-align: left;
  width: 25px;
  display: inline-block;
}

.not-bold {
  font-weight: normal;
}

.bold-underline {
  text-decoration: underline;
  font-weight: bold;
}

.inheritedText {
  font-size: 18px;
}

.collabNonlead {
  margin: 10px 20px;
}

.margin-top-204 {
  margin-top: 204px;
}

.margin-top-50 {
  margin-top: 50px;
}

.margin-top-45 {
  margin-top: 45px;
}

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

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

.margin-top-5 {
  margin-top: 5px;
}

.margin-top-2 {
  margin-top: 2px;
}

.margin-top-minus-5 {
  margin-top: -5px;
}

.margin-btm-0 {
  margin-bottom: 0;
}

.margin-btm-5 {
  margin-bottom: 5px !important;
}

.margin-btm-7 {
  margin-bottom: 7px !important;
}

.margin-btm-10 {
  margin-bottom: 10px !important;
}

.margin-btm-20 {
  margin-bottom: 20px !important;
}

.margin-btm-30 {
  margin-bottom: 30px !important;
}

.margin-btm-45 {
  margin-bottom: 45px !important;
}

.margin-btm-minus-5 {
  margin-bottom: -5px;
}

.margin-btm-minus-15 {
  margin-bottom: -15px;
}

.margin-btm-minus-20 {
  margin-bottom: -20px;
}

.margin-btm-minus-30 {
  margin-bottom: -30px;
}

.margin-right-0 {
  margin-right: 0;
}

.margin-right-4 {
  margin-right: 4px;
}

.margin-right-11 {
  margin-right: 11px !important;
}

.margin-right-30 {
  margin-right: 30px !important;
}

.margin-left-0 {
  margin-left: 0;
}

.margin-left-4 {
  margin-left: 4px;
}

.margin-left-10 {
  margin-left: 10px !important;
}

.margin-left-11 {
  margin-left: 11px !important;
}

.margin-left-14 {
  margin-left: 14px !important;
}

.margin-left-20 {
  margin-left: 20px !important;
}

.margin-left-22 {
  margin-left: 22px;
}

.margin-left-25 {
  margin-left: 25px;
}

.margin-left-30 {
  margin-left: 30px !important;
}

.margin-left-minus-3 {
  margin-left: -3px;
}

.margin-left-minus-11 {
  margin-left: -11px !important;
}

.margin-left-minus-20 {
  margin-left: -20px;
}

.margin-left-minus-30 {
  margin-left: -30px;
}

.margin-top-line {
  margin-top: -15px;
}

a:hover {
  cursor: pointer;
}
a:hover .fa-file-excel-o {
  color: inherit;
}

a.fa:focus {
  text-decoration: none;
}

a.fa:hover {
  text-decoration: none;
}

a.fa.fa-sort,
a.fa.fa-sort-asc,
a.fa.fa-sort-desc {
  color: #fff;
  text-decoration: none;
}

@media (prefers-reduced-motion) {
  .fa-spin,
  .fa-pulse {
    animation-duration: 5s;
  }
}
.close {
  opacity: inherit;
}
.close:hover {
  color: #b13900;
}

.popover-content > button.close {
  margin-left: 10px;
  margin-top: -1px;
}

.icon-pad-right {
  padding-right: 4px;
}

.icon-pad-left {
  padding-left: 4px;
}

.icon-float-left {
  float: left;
  height: 40px;
  padding-top: 2px;
}

.icon-link-flex {
  display: flex;
}
.icon-link-flex:hover, .icon-link-flex:focus {
  text-decoration: none !important;
}
.icon-link-flex:hover .icon-link-flex__text, .icon-link-flex:focus .icon-link-flex__text {
  text-decoration: underline !important;
}
.icon-link-flex .icon-link-flex__icon {
  padding-top: 2px;
}

.text-align-left {
  text-align: left;
}

.text-align-right {
  text-align: right;
}

.questionText {
  padding-right: 5px;
}

p.side-paragraph {
  margin-right: 15px;
  margin-left: 15px;
}

dd {
  padding-bottom: 5px;
}

dt {
  padding-top: 5px;
}

@media (min-width: 1200px) {
  .descending-row-margins .col-lg-4:nth-of-type(2) dt,
  .descending-row-margins .col-lg-4:nth-of-type(3) dt {
    width: 100px;
  }
  .descending-row-margins .col-lg-4:nth-of-type(2) dd,
  .descending-row-margins .col-lg-4:nth-of-type(3) dd {
    margin-left: 100px;
  }
  .descending-row-margins .col-lg-3:nth-of-type(2) dt,
  .descending-row-margins .col-lg-3:nth-of-type(3) dt {
    width: 80px;
  }
  .descending-row-margins .col-lg-3:nth-of-type(2) dd,
  .descending-row-margins .col-lg-3:nth-of-type(3) dd {
    margin-left: 80px;
  }
  .row .col-md-6:nth-of-type(2) dt {
    width: 240px;
  }
}
.withdrawn-proposal-details .dl-horizontal {
  margin-bottom: 0px;
}
.withdrawn-proposal-details .dl-horizontal dt,
.withdrawn-proposal-details .dl-horizontal dd {
  text-align: left;
  margin: 0px;
  padding-bottom: 5px;
  padding-top: 0px;
  min-height: 20px;
}
.withdrawn-proposal-details .dl-horizontal dt {
  width: 178px;
  margin-right: 10px;
  padding-right: 0px;
}
.withdrawn-proposal-details .row:last-child dt,
.withdrawn-proposal-details .row:last-child dd {
  padding-bottom: 0px;
}

.dl-horizontal dt,
dd {
  text-align: left;
  padding-bottom: 5px;
  padding-top: 0px;
  min-height: 20px;
}

.dl-horizontal-width-168 dt {
  width: 168px;
}

.dl-horizontal-width-226 dt {
  width: 226px;
}

@media (min-width: 940px) {
  .dl-horizontal--wider dt {
    width: 190px;
  }
  .dl-horizontal--wider dd {
    margin-left: 210px;
  }
}

.dl-horizontal-width-250 dt {
  width: 250px;
}
@media (min-width: 940px) {
  .dl-horizontal-width-250 dd {
    margin-left: 250px;
  }
}

.dl-horizontal-width-300 dt {
  width: 300px;
}

.link-modal {
  margin-right: 70px;
}

.title {
  position: relative;
  top: 5px;
}

.uoc {
  border-left: none !important;
  border-right: none !important;
}

.col-select {
  width: 7%;
}

.td-select {
  text-align: center;
}

.col-fon {
  width: 30%;
}

.col-fot {
  width: 63%;
}

.col-prop-sec {
  width: 30%;
}

.col-loidd {
  width: 25%;
}

.col-prop-sec-status {
  width: 20%;
}

.col-date {
  width: 15%;
}

.col-prop-number {
  width: 15%;
}

.default-cursor {
  cursor: default;
  text-decoration: none;
}

.hand-cursor {
  cursor: pointer;
  text-decoration: none;
}

/* absolute position expand/collapse icon on submitted proposals page and adjust position - this is so we can wrap text for the adjacent title */
.submitted-table tbody th {
  padding-right: 15px !important;
}
.submitted-table tbody tr.multi-rows-spacing td {
  padding-top: 6px;
}

.vertical-align-text {
  line-height: 60px;
}

.not-active {
  box-shadow: none !important;
}

.btn-default.not-active {
  border-color: #ccc !important;
}
.btn-default.not-active:hover {
  border-color: #adadad !important;
}

.award-number__container.award-number__container--primary {
  display: flex;
}
.award-number__container .award-number-input_container {
  width: 205px;
}
.award-number__container .award-number-input {
  width: 205px;
  height: 34px;
}
.award-number__container .award-circle::before {
  top: 0px;
  margin-left: -20px;
  color: #6a6a6a;
}
.award-number__container .award-button {
  margin-top: -6px;
}
.award-number__container .find-button {
  font-weight: bold;
  height: 34px;
}

.button-tooltip__container.button-tooltip__container.button-tooltip__container.button-tooltip__container {
  display: flex;
}
.button-tooltip__container.button-tooltip__container.button-tooltip__container.button-tooltip__container .button-tooltip__tooltip {
  margin-top: 6px;
  margin-bottom: 6px;
  width: 37px;
  height: auto;
  justify-content: center;
  padding: 4px 4px 3px 5px;
  display: flex;
  border: solid 1px #c9c9c9;
  background-color: #c9c9c9;
}
.button-tooltip__container.button-tooltip__container.button-tooltip__container.button-tooltip__container .button-tooltip__tooltip.button-tooltip__tooltip--smallWidth {
  width: 28px;
}
.button-tooltip__container.button-tooltip__container.button-tooltip__container.button-tooltip__container .button-tooltip__tooltip.button-tooltip__tooltip--demo i {
  color: #b13900;
}
.button-tooltip__container.button-tooltip__container.button-tooltip__container.button-tooltip__container.button-tooltip__container--primary .button-tooltip__tooltip {
  border: solid 1px #242e45;
  background-color: #242e45;
  margin-top: 6px;
  margin-bottom: 6px;
  width: 37px;
  height: auto;
  justify-content: center;
  padding-top: 7px;
  display: flex;
}
.button-tooltip__container.button-tooltip__container.button-tooltip__container.button-tooltip__container.button-tooltip__container--primary .button-tooltip__tooltip i {
  color: #fff;
}
.button-tooltip__container.button-tooltip__container.button-tooltip__container.button-tooltip__container.button-tooltip__container--primary .button-tooltip__tooltip i:hover {
  color: #fff;
}
.button-tooltip__container.button-tooltip__container.button-tooltip__container.button-tooltip__container.button-tooltip__container--disabled .btn {
  border: 1px solid #747985;
  background-color: #7a7f8e;
}

a.fa-plus-circle.icon-warning-outline {
  outline: 2px solid #8e5300;
  outline-offset: 10px;
  width: 11px;
  height: 15px;
  margin-right: 14px;
  margin-left: 1px;
}
a.fa-plus-circle.icon-warning-outline:after {
  content: "\f071";
  color: #8e5300;
  width: 16px;
  height: 16px;
  position: relative;
  top: -17px;
  right: -6px;
}
.menu-fixed {
  display: inline-block;
}

.wrapper {
  float: left;
  margin-left: auto;
  margin-right: auto;
}

.panel-prop {
  width-min: 940px;
}

/* styles to get links on proposal prep first panel to display correctly on smaller sizes */
.panel-gray-prop {
  height: 307px;
  width-min: 293px;
  width: auto;
}

.proposal-prep-panel-link1 {
  padding-top: 5px;
  margin-bottom: 5px;
}

@media (min-width: 1200px) {
  .panel-gray-prop {
    height: 287px;
  }
  .proposal-prep-panel-link1 {
    padding-top: 20px !important;
    margin-bottom: 10px;
  }
}
.btn-primary-prop {
  width: 239px;
  text-align: center;
  vertical-align: middle;
  border-color: #242e45;
  padding: 0 !important;
  line-height: 38px;
}

.ember-power-select-dropdown {
  background-color: #313b52;
  color: white;
  border-radius: 0px;
  border-color: #222f3d;
  line-height: 32px;
}

.ember-power-select-status-icon {
  display: none;
}

.ember-power-select-placeholder {
  color: white;
  text-align: center;
}

.ember-power-select-selected-item,
.ember-power-select-placeholder {
  margin-right: 14px !important;
  margin-left: 0px !important;
}

.ember-power-select-trigger[aria-disabled=true],
.ember-power-select-trigger[aria-disabled=true]:hover {
  border-color: #747985;
  background-color: #7a7f8e;
  opacity: inherit !important;
  background-image: linear-gradient(45deg, transparent 50%, white 50%), linear-gradient(135deg, white 50%, transparent 50%), linear-gradient(to right, #7a7f8e, #7a7f8e);
  background-position: calc(100% - 20px) calc(1em + 2px), calc(100% - 15px) calc(1em + 2px), 100% 0;
  background-size: 5px 5px, 5px 5px, 3em 3.5em;
  background-repeat: no-repeat;
}

.ember-power-select-trigger,
.ember-power-select-trigger:focus {
  width: 239px;
  text-align: center;
  vertical-align: middle;
  border-color: #222f3d;
  border-radius: 0px;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, white 50%), linear-gradient(135deg, white 50%, transparent 50%), linear-gradient(to right, #222f3d, #222f3d);
  background-position: calc(100% - 20px) calc(1em + 2px), calc(100% - 15px) calc(1em + 2px), 100% 0;
  background-size: 5px 5px, 5px 5px, 3em 3.5em;
  background-repeat: no-repeat;
}

.ember-power-select-trigger:active {
  background-image: none;
}

.btn-primary,
.btn-primary-prop, .ember-power-select-trigger,
.ember-power-select-trigger:focus {
  color: #fff;
  background-color: #313b52;
  border-color: #222f3d;
}

.btn-primary:hover, .ember-power-select-trigger:hover,
.btn-primary-prop:hover {
  color: #fff;
  background-color: #313b52;
  border-color: #222f3d;
}

.btn-primary-prop.disabled, li.rbContainerDisabled > label.btn-primary-prop.ember-radio-button {
  border-color: #747985;
  background-color: #7a7f8e;
  opacity: inherit;
}

.word-wrap, .col-budget-amounts {
  word-wrap: break-word;
}

.word-break-all {
  word-break: break-all;
  word-wrap: break-word;
  -ms-word-break: break-all;
  -ms-word-wrap: break-word;
  display: inline-block;
}

.no-wrap {
  white-space: nowrap;
}

@media (min-width: 1200px) {
  .no-wrap-large {
    white-space: nowrap;
  }
}

.psm-pd-including-results {
  width: 315px;
  height: 19px;
  font-family: Georgia;
  font-size: 16px;
  font-style: italic;
  color: #535353;
}

.psm-proposal-container > .col-sm-3,
.col-sm-9 {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.select-org {
  background: url(data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0Ljk1IDEwIj48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6I2ZmZjt9LmNscy0ye2ZpbGw6IzQ0NDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFycm93czwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB3aWR0aD0iNC45NSIgaGVpZ2h0PSIxMCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxLjQxIDQuNjcgMi40OCAzLjE4IDMuNTQgNC42NyAxLjQxIDQuNjciLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMy41NCA1LjMzIDIuNDggNi44MiAxLjQxIDUuMzMgMy41NCA1LjMzIi8+PC9zdmc+) no-repeat 99%;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

.psm-submitted-proposals-disabled {
  position: absolute;
  bottom: 40px;
  text-align: center;
  width: 100%;
  font-weight: bold;
  font-size: 16px;
  margin-left: -15px;
}

.input-group-addon.no-background-border {
  background-color: transparent;
  border-width: 0px;
}

.select-divisions__spinner {
  position: absolute;
  bottom: 7px;
  left: 10px;
  color: #6a6a6a;
  font-weight: normal;
}

.select-divisions__label {
  position: relative;
}

#qunit-header {
  background-color: #303b53 !important;
}
#qunit-header a {
  color: #fff !important;
}

#qunit-banner {
  height: 10px !important;
}

#qunit-banner.qunit-pass {
  background-color: green !important;
}

#qunit-testresult {
  background: transparent !important;
}

#qunit-tests li.pass {
  background: transparent;
}

#qunit-testrunner-toolbar {
  color: #34495e !important;
  background: url("../images/bodybg-15a2ef40acf7ac07c375189a1f39008b.png");
}
#qunit-testrunner-toolbar input[type=checkbox] {
  vertical-align: 0 !important;
}

#qunit-userAgent {
  background-color: #303b53 !important;
  text-shadow: none !important;
  color: #fff !important;
}

#qunit-tests .pass {
  color: green !important;
}
#qunit-tests .pass .test-name {
  color: green !important;
}

.fa-times-circle::before {
  position: relative;
  top: 5px;
}

.inline {
  display: inline;
}

label input.inline {
  display: inline;
}

.find-award-number-container {
  display: flex;
  margin-bottom: 5px;
}

.disabled-demo-infotip {
  color: #c84f0d;
}
.disabled-demo-infotip .fa-info-circle {
  color: #c84f0d;
}

.button-tooltip-center__container {
  display: flex;
  justify-content: center;
}

.btn-submitted-props-disabled {
  padding-top: 9px !important;
  padding-bottom: 8px !important;
  padding-left: 12px !important;
  padding-right: 12px !important;
  background-color: #ffffff !important;
  border: 1px solid #747985;
  margin-left: -5px !important;
}
.btn-submitted-props-disabled:hover {
  background-color: #ffffff !important;
  border-color: #747985 !important;
}
.btn-submitted-props-disabled a:hover {
  color: #c84f0d !important;
}

.div-demo-feedback {
  margin-left: auto;
  width: 180px;
}

.btn-demo-feedback {
  background-color: #c84f0d;
  color: white;
  margin: unset !important;
  font-family: Arial, sans-serif;
}

.btn-demo-feedback:hover,
.btn-demo-feedback:focus,
.btn-demo-feedback:active {
  background-color: #a94109;
  color: white;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  select.select-org.external-dropdown {
    background-position-x: 265px;
  }
  select.page-size-dropdown.external-dropdown {
    background-position-x: 40px;
  }
}
select.external-dropdown::-ms-expand {
  display: none;
}

input.hide-disabled-placeholder:not([disabled])::-webkit-input-placeholder {
  color: transparent;
}
input.hide-disabled-placeholder:not([disabled]):-moz-placeholder {
  /* Firefox 18- */
  color: transparent;
}
input.hide-disabled-placeholder:not([disabled])::-moz-placeholder {
  /* Firefox 19+ */
  color: transparent;
}
input.hide-disabled-placeholder:not([disabled]):-ms-input-placeholder {
  color: transparent;
}

.sbirsttrSubtopic-input {
  max-width: 85px;
}

.authorized-officer-middlename-container {
  margin-left: 20px;
}

.authorized-officer-firstname-input {
  width: 265px;
}

.authorized-officer-middlename-input {
  width: 85px;
}

.authorized-officer-lastname-input {
  width: 360px;
}

.authorized-officer-jobtitle-input {
  width: 390px;
}

.authorized-officer-email-input {
  width: 390px;
}

.authorized-officer-number-input {
  width: 200px;
  padding-left: 80px !important;
}

.sbirsttr-questionnaire__number-input-container {
  display: flex;
  min-width: 400px;
}
.sbirsttr-questionnaire__number-input-container .questionnaire-employees-section {
  margin-top: 12px;
  margin-left: 12px;
}

@media (min-width: 1200px) {
  .authorized-officer-number-input {
    padding-left: 0 !important;
  }
}
.sbirsttr-questionnaire__number-input {
  width: 112px;
}

.sbirsttr-questionnaire__number-input input {
  text-align: right;
}

.proposing-small-website-input {
  width: 630px;
}

p.approval-details {
  margin: 0 0;
}

/**
* qunit block element's position, `position: relative` on #qunit
* causes ember-testing-container to block the testing taskbar
* more info here: https://github.com/emberjs/ember-qunit/pull/817
*/
#qunit {
  position: static;
}

.deviationAuthorizationInstructions li {
  list-style-type: disc;
}

.ordered-roman-list ul {
  counter-reset: roman;
  list-style-type: none; /* Remove default list style */
}

.ordered-roman-list ul li {
  counter-increment: roman;
}

.ordered-roman-list ul li:before {
  content: "(" counter(roman, lower-roman) ") "; /* Use 'lower-roman' for lowercase Roman numerals */
}

.ember-power-select-option.ember-power-select-option {
  pointer-events: auto;
}

.uoc-checkbox {
  margin-left: 20px;
  margin-top: 5px;
  margin-bottom: 20px;
  display: inline-block;
}

.uoc-save-button {
  padding: 7px 36px !important;
  width: 250px !important;
}

.full-screen-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5); /* Dark with 60% opacity */
  backdrop-filter: blur(5px); /* Adjust blur intensity as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1050; /* High enough to overlay other content */
}

.centered-loader {
  display: flex;
  align-items: center;
  justify-content: center;
}
.centered-loader p,
.centered-loader div {
  color: #ffffff;
}

.project-data-form-input-500 {
  width: 500px;
}

[list]::-webkit-calendar-picker-indicator {
  display: none !important;
}

.uoc-disabled-button {
  color: #666666;
}
.uoc-disabled-button:hover {
  color: #666666;
}

.required-legend {
  bottom: 0;
  position: absolute;
  margin-bottom: 15px;
}

.required-legend--static {
  position: static;
}

.steel-blue-background {
  background-color: #3c97aa !important;
}

.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: #b12a1f;
}
.has-error .form-control {
  border-color: #e74c3c;
  -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: rgb(213.698630137, 43.8356164384, 26.301369863);
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px rgb(242.1780821918, 159.3698630137, 150.8219178082);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px rgb(242.1780821918, 159.3698630137, 150.8219178082);
}
.has-error .input-group-addon {
  color: #b12a1f;
  background-color: #f5dcd9;
  border-color: #e74c3c;
}
.has-error .form-control-feedback {
  color: #b12a1f;
}
.has-error .input-group-addon {
  background-color: #f5f7f8;
  border: 1px solid #ccc;
  border-radius: 0px;
  color: rgb(85.425, 85.425, 85.425);
}

.help-desk-phone {
  white-space: nowrap;
}

.disabled-link {
  color: #666666 !important;
}

.external-link__link:hover, .external-link__link:focus {
  text-decoration: none;
}
.external-link__link .fa {
  display: inline;
  line-height: 1.428571429;
}
.external-link__link span:last-of-type {
  margin-left: 4px;
}

a:hover .external-link__link-text, a:focus .external-link__link-text {
  text-decoration: underline;
}

.forms-page__plan-details {
  text-wrap: pretty;
}

.budget-total-amount__container {
  width: 205px;
  min-width: 205px;
  height: 80px;
  margin-left: auto;
}

.budget-total-amount__number-display {
  font-size: 26px;
  font-weight: 400;
  margin: 0px 0px 5px 0px;
}

.budget-total-amount__tall-display {
  height: 100px;
}
.budget-total-amount__tall-display.container-width-263 .panel-yellow {
  padding: 6px 10px 6px 10px;
}

.budget-total-amount__info-tip .popover-content {
  white-space: pre-line;
  text-align: center;
}

.budget-total-amount__error-message {
  font-size: 14px;
  font-family: Arial, sans-serif;
  margin-top: 5px;
}

.container-width-263 {
  width: 263px;
}

.plans-page .panel-title {
  margin-bottom: 32px;
}

.searchBar {
  padding-bottom: 0;
}

.or_image {
  width: 110%;
  margin-left: -30px;
  padding-bottom: 5px;
}

.plan-list-panels {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 30px;
}
.plan-list-panels .panel.panel, .plan-list-panels .panel-prop {
  margin: 0 0 !important;
}
.plan-list-panels .plan-list-panels__search-container {
  width: 66.66667%;
  margin: 20px;
}
.plan-list-panels .plan-list-panels__search-container.panel, .plan-list-panels .plan-list-panels__search-container.panel-prop {
  padding: 20px 20px 15px 20px;
  margin-bottom: 20px;
}
.plan-list-panels .plan-list-panels__search-container.larger-flex-box {
  flex-grow: 0.75;
}
.plan-list-panels .plan-list-panels__search-container .find-button {
  margin-left: -33px;
}
.plan-list-panels .plan-list-panels__search-container .date-input-spacer {
  vertical-align: -webkit-baseline-middle;
  margin-left: 5px;
  margin-right: 5px;
}
@media (min-width: 1200px) {
  .plan-list-panels .plan-list-panels__search-container .org-search-margin {
    margin-left: -25px;
  }
}
.plan-list-panels .plan-list-panels__search-container .plan-list-panels__id-number-input,
.plan-list-panels .plan-list-panels__search-container .plan-list-panels__last-name-input,
.plan-list-panels .plan-list-panels__search-container .plan-list-panels__org-select {
  border: 1px solid #666666;
}
@media (max-width: 1199px) {
  .plan-list-panels .plan-list-panels__search-container .plan-list-panels__date-input {
    width: 149px;
  }
}
@media (min-width: 1200px) {
  .plan-list-panels .plan-list-panels__search-container .plan-list-panels__date-input {
    width: 149px;
  }
}
.plan-list-panels .plan-list-panels__search-container .plan-list-panels__date-input > div {
  border: 1px solid #666666;
}
@media (max-width: 1199px) {
  .plan-list-panels .plan-list-panels__search-container .plan-list-panels__form-input {
    margin-right: 10px;
  }
}
@media (min-width: 1200px) {
  .plan-list-panels .plan-list-panels__search-container .plan-list-panels__form-input {
    margin-right: 30px;
  }
}
.plan-list-panels .plan-list-panels__search-container .plan-list-panels__form-input .plan-list-panels__name-input,
.plan-list-panels .plan-list-panels__search-container .plan-list-panels__form-input .plan-list-panels__proposal-id-input,
.plan-list-panels .plan-list-panels__search-container .plan-list-panels__form-input .plan-list-panels__proposal-title-input {
  border-color: #666666;
  padding-right: 22px;
}
@media (max-width: 1199px) {
  .plan-list-panels .plan-list-panels__search-container .plan-list-panels__form-input .plan-list-panels__proposal-id-input,
  .plan-list-panels .plan-list-panels__search-container .plan-list-panels__form-input .plan-list-panels__proposal-id-input-error-text {
    width: 149px;
  }
}
@media (min-width: 1200px) {
  .plan-list-panels .plan-list-panels__search-container .plan-list-panels__form-input .plan-list-panels__proposal-id-input,
  .plan-list-panels .plan-list-panels__search-container .plan-list-panels__form-input .plan-list-panels__proposal-id-input-error-text {
    width: 350px;
  }
}
.plan-list-panels .plan-list-panels__search-container .plan-list-panels__form-input .plan-list-panels__proposal-id-input-clear-x {
  color: #6a6a6a;
  background-color: transparent;
  border: none;
  font-size: 16px;
  position: absolute;
  z-index: 200;
  margin-top: -30px;
}
.plan-list-panels .plan-list-panels__search-container .plan-list-panels__form-input .plan-list-panels__proposal-id-input-clear-x:hover, .plan-list-panels .plan-list-panels__search-container .plan-list-panels__form-input .plan-list-panels__proposal-id-input-clear-x:focus {
  text-decoration: none !important;
  color: #b13900;
}
@media (max-width: 1199px) {
  .plan-list-panels .plan-list-panels__search-container .plan-list-panels__form-input .plan-list-panels__proposal-id-input-clear-x {
    margin-left: 124px;
  }
}
@media (min-width: 1200px) {
  .plan-list-panels .plan-list-panels__search-container .plan-list-panels__form-input .plan-list-panels__proposal-id-input-clear-x {
    margin-left: 325px;
  }
}
@media (max-width: 1199px) {
  .plan-list-panels .plan-list-panels__search-container .plan-list-panels__form-input .plan-list-panels__proposal-title-input,
  .plan-list-panels .plan-list-panels__search-container .plan-list-panels__form-input .plan-list-panels__proposal-title-input-error-text {
    width: 170px;
  }
}
@media (min-width: 1200px) {
  .plan-list-panels .plan-list-panels__search-container .plan-list-panels__form-input .plan-list-panels__proposal-title-input,
  .plan-list-panels .plan-list-panels__search-container .plan-list-panels__form-input .plan-list-panels__proposal-title-input-error-text {
    width: 257px;
  }
}
.plan-list-panels .plan-list-panels__search-container .plan-list-panels__form-input .plan-list-panels__proposal-title-input-clear-x {
  color: #6a6a6a;
  background-color: transparent;
  border: none;
  font-size: 16px;
  position: absolute;
  z-index: 200;
  margin-top: -30px;
}
.plan-list-panels .plan-list-panels__search-container .plan-list-panels__form-input .plan-list-panels__proposal-title-input-clear-x:hover, .plan-list-panels .plan-list-panels__search-container .plan-list-panels__form-input .plan-list-panels__proposal-title-input-clear-x:focus {
  text-decoration: none !important;
  color: #b13900;
}
@media (max-width: 1199px) {
  .plan-list-panels .plan-list-panels__search-container .plan-list-panels__form-input .plan-list-panels__proposal-title-input-clear-x {
    margin-left: 145px;
  }
}
@media (min-width: 1200px) {
  .plan-list-panels .plan-list-panels__search-container .plan-list-panels__form-input .plan-list-panels__proposal-title-input-clear-x {
    margin-left: 232px;
  }
}
@media (max-width: 1199px) {
  .plan-list-panels .plan-list-panels__search-container .plan-list-panels__form-input .plan-list-panels__name-input,
  .plan-list-panels .plan-list-panels__search-container .plan-list-panels__form-input .plan-list-panels__name-input-error-text {
    width: 170px;
  }
}
@media (min-width: 1200px) {
  .plan-list-panels .plan-list-panels__search-container .plan-list-panels__form-input .plan-list-panels__name-input,
  .plan-list-panels .plan-list-panels__search-container .plan-list-panels__form-input .plan-list-panels__name-input-error-text {
    width: 149px;
  }
}
.plan-list-panels .plan-list-panels__search-container .plan-list-panels__form-input .plan-list-panels__name-input-clear-x {
  color: #6a6a6a;
  background-color: transparent;
  border: none;
  font-size: 16px;
  position: absolute;
  z-index: 200;
  margin-top: -30px;
}
.plan-list-panels .plan-list-panels__search-container .plan-list-panels__form-input .plan-list-panels__name-input-clear-x:hover, .plan-list-panels .plan-list-panels__search-container .plan-list-panels__form-input .plan-list-panels__name-input-clear-x:focus {
  text-decoration: none !important;
  color: #b13900;
}
@media (max-width: 1199px) {
  .plan-list-panels .plan-list-panels__search-container .plan-list-panels__form-input .plan-list-panels__name-input-clear-x {
    margin-left: 124px;
  }
}
@media (min-width: 1200px) {
  .plan-list-panels .plan-list-panels__search-container .plan-list-panels__form-input .plan-list-panels__name-input-clear-x {
    margin-left: 124px;
  }
}
@media (max-width: 1199px) {
  .plan-list-panels .plan-list-panels__search-container .plan-list-panels__id-number-input {
    width: 149px;
  }
}
@media (min-width: 1200px) {
  .plan-list-panels .plan-list-panels__search-container .plan-list-panels__id-number-input {
    width: 257px;
  }
}
@media (max-width: 1199px) {
  .plan-list-panels .plan-list-panels__search-container .plan-list-panels__last-name-input {
    width: 170px;
  }
}
@media (min-width: 1200px) {
  .plan-list-panels .plan-list-panels__search-container .plan-list-panels__last-name-input {
    width: 257px;
  }
}
.plan-list-panels .plan-list-panels__pappg-link.panel, .plan-list-panels .plan-list-panels__pappg-link.panel-prop {
  padding: 5px 20px;
}

.submitted-revision-table tbody th {
  font-weight: normal;
}
.submitted-revision-table tbody .submitted-revision-table__revision-table th {
  font-weight: bold;
}
.submitted-revision-table .submitted-revision-table__revision-table {
  background: transparent !important;
  margin-bottom: 0;
}
.submitted-revision-table .table-no-border td:first-child {
  border-right: none !important;
}
.submitted-revision-table .table-no-border td {
  border-top: none;
  padding: 0;
}
.submitted-revision-table .submitted-revision-table__revision-container-cell {
  padding: 0 0 10px 32px;
}
.submitted-revision-table .submitted-revision-table__proposal-title-cell {
  display: flex;
}
.submitted-revision-table .submitted-revision-table__expand-icon-adjust-pfu {
  width: 22px;
}

.add-subaward__panel-footer {
  padding-right: 0;
}

.add-subaward__uei-search-button-container {
  display: flex;
  min-width: 494px;
}

.add-subaward__panel-buttons {
  display: flex;
  justify-content: flex-end;
}

.add-subaward-two-input-table {
  margin-top: 30px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.add-subaward-two-input-table .modal-search-button .btn {
  width: 116px;
}
.add-subaward-two-input-table .or-text {
  width: 30px !important;
  text-align: center;
}
.add-subaward-two-input-table input {
  width: 100%;
  padding-left: 6px;
}
.add-subaward-two-input-table .org-name-input {
  width: 300px;
  min-width: 150px;
}
.add-subaward-two-input-table .digit-input {
  width: 300px;
  min-width: 206px;
}
.add-subaward-two-input-table .table-middle-initial {
  width: 100px;
}
.add-subaward-two-input-table .modal-inline-button {
  width: 120px;
  padding-right: 0;
}

.add-subaward__or-text {
  min-width: 49px;
  height: 34px;
  text-align: center;
  margin-top: 24.2px;
  padding: 7.4px 0;
}

.add-subaward__uei-label-tooltip {
  display: flex;
  width: 400px;
}

.add-subaward__uei-tooltip {
  margin-left: 10px;
}

.add-subaward__cancel-button {
  margin-left: 10px !important; /*TODO: remove usage of !important here and in the rule button{...} for margins in _rgov_buttons.scss*/
}

.add-subaward {
  /* Based on comps the button height needs to be 34px ($btn-height set in _rgov_buttons.scss)
    TODO: use $btn-height globally in button{ ... } rule for height
  */
}
.add-subaward label {
  margin-bottom: 5px;
  margin-right: 10px;
  height: auto;
}
.add-subaward .btn {
  height: 34px;
}

.add-subaward__search-button-container {
  margin-top: 24.2px;
  margin-left: 10px;
}
.add-subaward__search-button-container .btn {
  /* Using !important for margins, to override the usage of !important in _rgov_buttons.scss for buttons
  TODO: remove usage of !important here and in the rule button{...} for margins in _rgov_buttons.scss*/
  margin: 0 0 !important;
}

.add-subaward-results-table .ember-radio-button {
  text-align: center;
}
.add-subaward-results-table th.radio-select {
  width: 5%;
}
.add-subaward-results-table th.org-name {
  width: 35%;
}
.add-subaward-results-table th.uei-no {
  width: 25%;
}

table.subawards-table th.uei-no {
  width: 22%;
}
table.subawards-table th.address {
  width: 22%;
}
table.subawards-table th.actions {
  width: 22%;
}

/* style logic for different header angles */
th.rotate-45 > div.personnel, th.rotate-45 > div.months {
  width: 100px;
}
th.rotate-45 > div.funds, th.rotate-45 > div.funds-long {
  width: 85px;
}

@media (min-width: 940px) {
  .table.year-count-1 th.rotate-45 > div.personnel {
    transform: translate(10px, -22px) rotate(315deg);
  }
  .table.year-count-1 th.rotate-45 > div.months {
    transform: translate(13px, -22px) rotate(315deg);
  }
  .table.year-count-1 th.rotate-45 > div.funds {
    transform: translate(14px, -17px) rotate(315deg);
  }
  .table.year-count-1 th.rotate-45 > div.funds-long {
    transform: translate(17px, -17px) rotate(315deg);
  }
}
@media (min-width: 1200px) {
  .table.year-count-1 th.rotate-45 > div.personnel {
    transform: translate(20px, -22px) rotate(315deg);
  }
  .table.year-count-1 th.rotate-45 > div.months {
    transform: translate(13px, -22px) rotate(315deg);
  }
  .table.year-count-1 th.rotate-45 > div.funds {
    transform: translate(14px, -17px) rotate(315deg);
  }
  .table.year-count-1 th.rotate-45 > div.funds-long {
    transform: translate(17px, -17px) rotate(315deg);
  }
}

.table.year-count-2 th.rotate-45 > div.personnel {
  transform: translate(10px, -22px) rotate(315deg);
}
.table.year-count-2 th.rotate-45 > div.months {
  transform: translate(13px, -22px) rotate(315deg);
}
.table.year-count-2 th.rotate-45 > div.funds {
  transform: translate(14px, -17px) rotate(315deg);
}
.table.year-count-2 th.rotate-45 > div.funds-long {
  transform: translate(17px, -17px) rotate(315deg);
}
.table.year-count-2.sliders-visible th.rotate-45 > div.personnel {
  transform: translate(4px, -22px) rotate(315deg);
}
.table.year-count-2.sliders-visible th.rotate-45 > div.funds {
  transform: translate(14px, -17px) rotate(315deg);
}
.table.year-count-2.sliders-visible th.rotate-45 > div.funds-long {
  transform: translate(17px, -17px) rotate(315deg);
}

@media (min-width: 940px) {
  .proposal-menu-hidden th.rotate-45 > div.personnel, .proposal-menu-hidden th.rotate-45 > div.months {
    transform: translate(14px, -22px) rotate(315deg);
  }
  .proposal-menu-hidden th.rotate-45 > div.funds {
    transform: translate(14px, -17px) rotate(315deg);
  }
  .proposal-menu-hidden th.rotate-45 > div.funds-long {
    transform: translate(17px, -17px) rotate(315deg);
  }
}
@media (min-width: 1200px) {
  .proposal-menu-hidden th.rotate-45 > div.personnel, .proposal-menu-hidden th.rotate-45 > div.months {
    transform: translate(14px, -22px) rotate(315deg);
  }
  .proposal-menu-hidden th.rotate-45 > div.funds {
    transform: translate(14px, -17px) rotate(315deg);
  }
  .proposal-menu-hidden th.rotate-45 > div.funds-long {
    transform: translate(17px, -17px) rotate(315deg);
  }
}
@media (min-width: 940px) {
  .proposal-menu-hidden .table.year-count-2 th.rotate-45 > div.personnel, .proposal-menu-hidden .table.year-count-2 th.rotate-45 > div.months {
    transform: translate(10px, -22px) rotate(315deg);
  }
  .proposal-menu-hidden .table.year-count-2 th.rotate-45 > div.funds {
    transform: translate(14px, -17px) rotate(315deg);
  }
  .proposal-menu-hidden .table.year-count-2 th.rotate-45 > div.funds-long {
    transform: translate(17px, -17px) rotate(315deg);
  }
  .proposal-menu-hidden .table.year-count-2.sliders-visible th.rotate-45 > div.personnel {
    transform: translate(6px, -22px) rotate(315deg);
  }
  .proposal-menu-hidden .table.year-count-2.sliders-visible th.rotate-45 > div.funds, .proposal-menu-hidden .table.year-count-2.sliders-visible th.rotate-45 > div.funds-long {
    transform: translate(14px, -17px) rotate(315deg);
  }
}
@media (min-width: 1200px) {
  .proposal-menu-hidden .table.year-count-2 th.rotate-45 > div.personnel {
    transform: translate(13px, -22px) rotate(315deg);
  }
  .proposal-menu-hidden .table.year-count-2 th.rotate-45 > div.months {
    transform: translate(14px, -22px) rotate(315deg);
  }
  .proposal-menu-hidden .table.year-count-2 th.rotate-45 > div.funds {
    transform: translate(14px, -17px) rotate(315deg);
  }
  .proposal-menu-hidden .table.year-count-2 th.rotate-45 > div.funds-long {
    transform: translate(17px, -17px) rotate(315deg);
  }
  .proposal-menu-hidden .table.year-count-2.sliders-visible th.rotate-45 > div.personnel {
    transform: translate(10px, -22px) rotate(315deg);
  }
  .proposal-menu-hidden .table.year-count-2.sliders-visible th.rotate-45 > div.funds {
    transform: translate(14px, -17px) rotate(315deg);
  }
  .proposal-menu-hidden .table.year-count-2.sliders-visible th.rotate-45 > div.funds-long {
    transform: translate(17px, -17px) rotate(315deg);
  }
}

.budget-text-box-entry .error-icon {
  right: 0;
}

#indirectCosts .budget-text-box-entry .error-icon {
  right: 2px;
}

#equipment .position-relative,
#indirectCosts .position-relative {
  width: 80%;
  white-space: nowrap;
}

.sliders-visible #equipment .position-relative,
.sliders-visible #indirectCosts .position-relative {
  width: 75%;
  white-space: nowrap;
}

.input-symbol {
  position: relative;
}

.input-symbol.symbol-left input {
  padding-left: 13px;
}

.input-symbol.symbol-right input {
  padding-right: 15px;
  padding-right: 20px;
  text-align: right;
  float: right;
}

.input-symbol.dollar input {
  float: right;
  text-align: right;
}

.input-symbol.dollar:before {
  position: absolute;
  content: "$";
}

.input-symbol.percent:before {
  position: absolute;
  top: 0;
  top: 3px;
  content: "%";
}

.input-symbol.symbol-left:before {
  left: 8px;
  top: 3px;
}

.input-symbol.symbol-right:before {
  right: 3px;
  right: 6px;
}

.year-count-1 .input-symbol.symbol-left:before {
  left: 11px;
}

.input-subaward-hidden {
  height: 23px;
}

.budget-table {
  width: 100%;
}
.budget-table tr:not(.bold) th:first-child {
  padding-left: 10px;
}
.budget-table tr:not(.bold) td:first-child {
  padding-left: 45px;
}
.budget-table tr.rotated-sub-header.taller th:first-child {
  padding-left: 0;
}
.budget-table tr.rotated-sub-header.taller th.col-budget-funds {
  width: 100px;
}
.budget-table tr.subtotal td:first-child,
.budget-table tr.total td:first-child {
  padding-left: 16px;
}
.budget-table tr.subtotal.no-lettering td:first-child {
  padding-left: 10px;
}
.budget-table .panel-title h1 {
  margin-top: 0;
}
.budget-table td input {
  max-width: 50px;
}
.budget-table td input.width-100 {
  max-width: 100%;
}

.budget-table tbody tr:last-child td {
  padding-bottom: 10px;
}
.budget-table tbody:not(.collapse) tr:first-child td {
  padding-top: 14px;
}
.budget-table tbody.collapsing tr:first-child td {
  padding-top: 5px;
}
.budget-table tr.total td,
.budget-table tr.subtotal td {
  padding-top: 14px;
  padding-bottom: 10px;
}
.budget-table a.fa-minus-circle,
.budget-table a.fa-plus-circle {
  padding-left: 8px;
  text-decoration: none !important;
}
.budget-table a.fa-minus-circle:hover,
.budget-table a.fa-plus-circle:hover {
  text-decoration: none !important;
}

.budget-table > thead > tr > td,
.budget-table > tbody > tr > th,
.budget-table > tbody > tr > td,
.table > tfoot > tr > th,
.budget-table > tfoot > tr > td {
  min-width: 50px;
  padding: 5px 5px 2px 2px;
}
.budget-table > thead > tr > td.col-slider, .budget-table > thead > tr > td.slider-col,
.budget-table > tbody > tr > th.col-slider,
.budget-table > tbody > tr > th.slider-col,
.budget-table > tbody > tr > td.col-slider,
.budget-table > tbody > tr > td.slider-col,
.table > tfoot > tr > th.col-slider,
.table > tfoot > tr > th.slider-col,
.budget-table > tfoot > tr > td.col-slider,
.budget-table > tfoot > tr > td.slider-col {
  min-width: 20px;
}
.budget-table > thead > tr > td > label > input,
.budget-table > thead > tr > td > ul > label > input,
.budget-table > tbody > tr > th > label > input,
.budget-table > tbody > tr > th > ul > label > input,
.budget-table > tbody > tr > td > label > input,
.budget-table > tbody > tr > td > ul > label > input,
.table > tfoot > tr > th > label > input,
.table > tfoot > tr > th > ul > label > input,
.budget-table > tfoot > tr > td > label > input,
.budget-table > tfoot > tr > td > ul > label > input {
  width: 90%;
  min-width: 50px;
}
.budget-table > thead > tr > td > label > input.budget-indirect-cost-no-sliders,
.budget-table > thead > tr > td > label > input .budget-indirect-cost-rate,
.budget-table > thead > tr > td > label > input .budget-indirect-cost-sliders,
.budget-table > thead > tr > td > ul > label > input.budget-indirect-cost-no-sliders,
.budget-table > thead > tr > td > ul > label > input .budget-indirect-cost-rate,
.budget-table > thead > tr > td > ul > label > input .budget-indirect-cost-sliders,
.budget-table > tbody > tr > th > label > input.budget-indirect-cost-no-sliders,
.budget-table > tbody > tr > th > label > input .budget-indirect-cost-rate,
.budget-table > tbody > tr > th > label > input .budget-indirect-cost-sliders,
.budget-table > tbody > tr > th > ul > label > input.budget-indirect-cost-no-sliders,
.budget-table > tbody > tr > th > ul > label > input .budget-indirect-cost-rate,
.budget-table > tbody > tr > th > ul > label > input .budget-indirect-cost-sliders,
.budget-table > tbody > tr > td > label > input.budget-indirect-cost-no-sliders,
.budget-table > tbody > tr > td > label > input .budget-indirect-cost-rate,
.budget-table > tbody > tr > td > label > input .budget-indirect-cost-sliders,
.budget-table > tbody > tr > td > ul > label > input.budget-indirect-cost-no-sliders,
.budget-table > tbody > tr > td > ul > label > input .budget-indirect-cost-rate,
.budget-table > tbody > tr > td > ul > label > input .budget-indirect-cost-sliders,
.table > tfoot > tr > th > label > input.budget-indirect-cost-no-sliders,
.table > tfoot > tr > th > label > input .budget-indirect-cost-rate,
.table > tfoot > tr > th > label > input .budget-indirect-cost-sliders,
.table > tfoot > tr > th > ul > label > input.budget-indirect-cost-no-sliders,
.table > tfoot > tr > th > ul > label > input .budget-indirect-cost-rate,
.table > tfoot > tr > th > ul > label > input .budget-indirect-cost-sliders,
.budget-table > tfoot > tr > td > label > input.budget-indirect-cost-no-sliders,
.budget-table > tfoot > tr > td > label > input .budget-indirect-cost-rate,
.budget-table > tfoot > tr > td > label > input .budget-indirect-cost-sliders,
.budget-table > tfoot > tr > td > ul > label > input.budget-indirect-cost-no-sliders,
.budget-table > tfoot > tr > td > ul > label > input .budget-indirect-cost-rate,
.budget-table > tfoot > tr > td > ul > label > input .budget-indirect-cost-sliders {
  width: 95%;
  max-width: 95%;
  min-width: 70px;
  margin-left: 5px;
}
.budget-table > thead > tr > td > label > input.budget-indirect-cost-no-sliders, .budget-table > thead > tr > td > label > input.budget-indirect-cost-sliders,
.budget-table > thead > tr > td > ul > label > input.budget-indirect-cost-no-sliders,
.budget-table > thead > tr > td > ul > label > input.budget-indirect-cost-sliders,
.budget-table > tbody > tr > th > label > input.budget-indirect-cost-no-sliders,
.budget-table > tbody > tr > th > label > input.budget-indirect-cost-sliders,
.budget-table > tbody > tr > th > ul > label > input.budget-indirect-cost-no-sliders,
.budget-table > tbody > tr > th > ul > label > input.budget-indirect-cost-sliders,
.budget-table > tbody > tr > td > label > input.budget-indirect-cost-no-sliders,
.budget-table > tbody > tr > td > label > input.budget-indirect-cost-sliders,
.budget-table > tbody > tr > td > ul > label > input.budget-indirect-cost-no-sliders,
.budget-table > tbody > tr > td > ul > label > input.budget-indirect-cost-sliders,
.table > tfoot > tr > th > label > input.budget-indirect-cost-no-sliders,
.table > tfoot > tr > th > label > input.budget-indirect-cost-sliders,
.table > tfoot > tr > th > ul > label > input.budget-indirect-cost-no-sliders,
.table > tfoot > tr > th > ul > label > input.budget-indirect-cost-sliders,
.budget-table > tfoot > tr > td > label > input.budget-indirect-cost-no-sliders,
.budget-table > tfoot > tr > td > label > input.budget-indirect-cost-sliders,
.budget-table > tfoot > tr > td > ul > label > input.budget-indirect-cost-no-sliders,
.budget-table > tfoot > tr > td > ul > label > input.budget-indirect-cost-sliders {
  min-width: 110px;
}
.budget-table > thead > tr > td > label > input.budget-indirect-cost-rate,
.budget-table > thead > tr > td > ul > label > input.budget-indirect-cost-rate,
.budget-table > tbody > tr > th > label > input.budget-indirect-cost-rate,
.budget-table > tbody > tr > th > ul > label > input.budget-indirect-cost-rate,
.budget-table > tbody > tr > td > label > input.budget-indirect-cost-rate,
.budget-table > tbody > tr > td > ul > label > input.budget-indirect-cost-rate,
.table > tfoot > tr > th > label > input.budget-indirect-cost-rate,
.table > tfoot > tr > th > ul > label > input.budget-indirect-cost-rate,
.budget-table > tfoot > tr > td > label > input.budget-indirect-cost-rate,
.budget-table > tfoot > tr > td > ul > label > input.budget-indirect-cost-rate {
  width: 70px;
  max-width: 70px;
}
.budget-table > thead > tr > td.td-budget-indirect-cost-rate,
.budget-table > tbody > tr > th.td-budget-indirect-cost-rate,
.budget-table > tbody > tr > td.td-budget-indirect-cost-rate,
.table > tfoot > tr > th.td-budget-indirect-cost-rate,
.budget-table > tfoot > tr > td.td-budget-indirect-cost-rate {
  width: 80px;
}
.budget-table > thead > tr > td.td-budget-indirect-cost-base,
.budget-table > tbody > tr > th.td-budget-indirect-cost-base,
.budget-table > tbody > tr > td.td-budget-indirect-cost-base,
.table > tfoot > tr > th.td-budget-indirect-cost-base,
.budget-table > tfoot > tr > td.td-budget-indirect-cost-base {
  width: 120px;
}
.budget-table > thead > tr > td.td-budget-cost-sharing,
.budget-table > tbody > tr > th.td-budget-cost-sharing,
.budget-table > tbody > tr > td.td-budget-cost-sharing,
.table > tfoot > tr > th.td-budget-cost-sharing,
.budget-table > tfoot > tr > td.td-budget-cost-sharing {
  width: 150px;
}
.budget-table > thead > tr > td.td-sbirsttr-fee,
.budget-table > tbody > tr > th.td-sbirsttr-fee,
.budget-table > tbody > tr > td.td-sbirsttr-fee,
.table > tfoot > tr > th.td-sbirsttr-fee,
.budget-table > tfoot > tr > td.td-sbirsttr-fee {
  width: 120px;
}
.budget-table > thead > tr > td.other-personnel-months input,
.budget-table > tbody > tr > th.other-personnel-months input,
.budget-table > tbody > tr > td.other-personnel-months input,
.table > tfoot > tr > th.other-personnel-months input,
.budget-table > tfoot > tr > td.other-personnel-months input {
  min-width: 65px;
}
.budget-table > thead > tr > td.dividing-character,
.budget-table > tbody > tr > th.dividing-character,
.budget-table > tbody > tr > td.dividing-character,
.table > tfoot > tr > th.dividing-character,
.budget-table > tfoot > tr > td.dividing-character {
  min-width: 30px;
  max-width: 30px;
}
.budget-table > thead > tr > td.budget-indirect-cost-spacer,
.budget-table > tbody > tr > th.budget-indirect-cost-spacer,
.budget-table > tbody > tr > td.budget-indirect-cost-spacer,
.table > tfoot > tr > th.budget-indirect-cost-spacer,
.budget-table > tfoot > tr > td.budget-indirect-cost-spacer {
  min-width: 90px;
}
.budget-table > thead > tr > td:last-child,
.budget-table > tbody > tr > th:last-child,
.budget-table > tbody > tr > td:last-child,
.table > tfoot > tr > th:last-child,
.budget-table > tfoot > tr > td:last-child {
  width: 12%;
}

.budget-indirect-cost-sliders {
  width: 95%;
  max-width: 95%;
}

.budget-indirect-cost-no-sliders {
  width: 95%;
  max-width: 95%;
}

.budget-section-header {
  max-width: 25px;
}

.budget-cost-sharing-header {
  min-width: 195px;
}

.col-budget-amounts {
  min-width: 15%;
}
.col-budget-amounts .sliders {
  max-width: 150px;
  width: 95%;
}
.col-budget-amounts .no-sliders {
  width: 95%;
  max-width: 95%;
}
.col-budget-amounts.ensure-input-width {
  width: 120px;
}

.col-slider {
  width: 7px;
  height: 18px;
  font-family: FontAwesome;
  font-size: 18px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  vertical-align: middle !important;
}

#table-no-lettering-subtotal td.table-no-lettering-subtotal-td {
  border-right: 1px solid #ffe2a1 !important;
}

#table-no-lettering-subtotal-bold td.table-no-lettering-subtotal-bold-td {
  border-right: 1px solid #ffe2a1 !important;
}

#table-lettering-total td.table-lettering-total-td {
  border-right: 1px solid #e2c686 !important;
}

th[class*=rectangle-slider][style*="cursor: pointer"]:hover {
  background-color: #49a4b7;
}
th[class*=rectangle-slider][style*="cursor: pointer"]:hover > a[class*=enabled-slide] > i {
  color: #ffffff;
}

td[class*=rectangle-slider-adjusted][style*="cursor: pointer"]:hover {
  background-color: #ebddbf;
}
td[class*=rectangle-slider-adjusted][style*="cursor: pointer"]:hover > a[class*=enabled-slide-adjusted] > i {
  color: #1f1f1f;
}

td[class*=rectangle-slider-adjusted-total][style*="cursor: pointer"]:hover {
  background-color: #ebd094;
}
td[class*=rectangle-slider-adjusted-total][style*="cursor: pointer"]:hover > a[class*=enabled-slide-adjusted-total] > i {
  color: #1f1f1f;
}

.rectangle-slider {
  width: 28px;
  height: 38px;
  background-color: #4ba9bc;
}

.rectangle-slider-adjusted {
  width: 28px;
  height: 38px;
  background-color: #f2e3c4;
}

.rectangle-slider-adjusted-total {
  width: 28px;
  height: 38px;
  background-color: #f3d799;
}

.rectangle-cell {
  width: 28px;
  height: 38px;
  background-color: #f2f2f2;
}

.rectangle-cell-adjusted {
  width: 28px;
  height: 38px;
  background-color: #e8eaeb;
}

.disabled-slide {
  color: #9cd0db;
  opacity: 0.6;
  pointer-events: none;
}

.disabled-slide-adjusted {
  color: #989180;
  opacity: 0.6;
  pointer-events: none;
}

.disabled-slide-adjusted-total {
  color: #989180;
  opacity: 0.6;
  pointer-events: none;
}

.slider-adjustment {
  padding-left: 8px;
}

.enabled-slide {
  color: white;
}

.enabled-slide-adjusted {
  color: #1f1f1f;
}

.enabled-slide-adjusted-total {
  color: #1f1f1f;
}

.budget__manage-personnel-modal table {
  width: 100%;
}
.budget__manage-personnel-modal td.multi-select-buttons {
  width: 104px;
  text-align: center;
}
.budget__manage-personnel-modal select {
  width: 380px;
  height: 150px;
  padding-top: 3px;
}
.budget__manage-personnel-modal select option {
  padding-left: 10px;
  padding-top: 3px;
  padding-bottom: 3px;
}
.budget__manage-personnel-modal .fa.fa-angle-double-left,
.budget__manage-personnel-modal .fa.fa-angle-double-right {
  font-size: 18px;
}

.col-budget-months {
  width: 8%;
  max-width: 25px;
}

.col-budget-personnel {
  max-width: 25px;
}
.col-budget-personnel > td {
  display: inline-block;
}

.budget-add-year__modal-body {
  margin-bottom: 80px;
}

.cover-sheet-form__requested-start-date label {
  white-space: nowrap;
}

.cover-sheet-form__start-date-info {
  font-size: 13px;
  font-weight: normal;
}

.cover-sheet-form__duration-range {
  font-weight: normal;
}

.cover-sheet-form__duration-input-group {
  max-width: 380px;
}
.cover-sheet-form__duration-input-group .input-group-addon {
  background-color: transparent;
  padding-bottom: 0;
  border-width: 0;
  vertical-align: middle;
}
.cover-sheet-form__duration-input-group a {
  margin-left: 20px;
}
.cover-sheet-form__duration-input-group--no-range-text {
  max-width: 150px;
}

.psm-cv-proposal-duration {
  width: 65% !important;
}

.ppop-input .form-control {
  padding-left: 8px;
}

.select-country,
.select-state {
  background: url(data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0Ljk1IDEwIj48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6I2ZmZjt9LmNscy0ye2ZpbGw6IzQ0NDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFycm93czwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB3aWR0aD0iNC45NSIgaGVpZ2h0PSIxMCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxLjQxIDQuNjcgMi40OCAzLjE4IDMuNTQgNC42NyAxLjQxIDQuNjciLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMy41NCA1LjMzIDIuNDggNi44MiAxLjQxIDUuMzMgMy41NCA1LjMzIi8+PC9zdmc+) no-repeat 99%;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

.cover-sheet-540 {
  width: 540px;
}

.cover-sheet-327 {
  width: 327px;
}

.cover-sheet-184 {
  width: 184px;
}

.cover-sheet-edit-field .input-clear-x {
  color: #6a6a6a;
  font-size: 16px;
  position: absolute;
  left: 280px;
  z-index: 200;
  margin-top: -25px;
}
.cover-sheet-edit-field .input-clear-x:hover, .cover-sheet-edit-field .input-clear-x:focus {
  text-decoration: none !important;
}
.cover-sheet-edit-field.padding-left-25 .input-clear-x {
  left: 305px;
}
.cover-sheet-edit-field .fa-times-circle::before {
  top: 0;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  select.select-country.external-dropdown {
    background-position-x: 250px;
  }
  select.select-state.external-dropdown {
    background-position-x: 150px;
  }
}
.duration-of-proposed-support-form__requested-start-date label {
  white-space: nowrap;
}

.duration-of-proposed-support-form__start-date-info {
  font-size: 13px;
  font-weight: normal;
}

.duration-of-proposed-support-form__duration-range {
  font-weight: normal;
}

.duration-of-proposed-support-form__duration-input-group {
  max-width: 380px;
}
.duration-of-proposed-support-form__duration-input-group .input-group-addon {
  background-color: transparent;
  padding-bottom: 0;
  border-width: 0;
  vertical-align: middle;
}
.duration-of-proposed-support-form__duration-input-group a {
  margin-left: 20px;
}
.duration-of-proposed-support-form__duration-input-group--no-range-text {
  max-width: 150px;
}

.psm-cv-proposal-duration {
  width: 65% !important;
}

.ppop-input .form-control {
  padding-left: 8px;
}

.select-country,
.select-state {
  background: url(data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0Ljk1IDEwIj48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6I2ZmZjt9LmNscy0ye2ZpbGw6IzQ0NDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFycm93czwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB3aWR0aD0iNC45NSIgaGVpZ2h0PSIxMCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxLjQxIDQuNjcgMi40OCAzLjE4IDMuNTQgNC42NyAxLjQxIDQuNjciLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMy41NCA1LjMzIDIuNDggNi44MiAxLjQxIDUuMzMgMy41NCA1LjMzIi8+PC9zdmc+) no-repeat 99%;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

.duration-of-proposed-support-540 {
  width: 540px;
}

.duration-of-proposed-support-327 {
  width: 327px;
}

.duration-of-proposed-support-184 {
  width: 184px;
}

.duration-of-proposed-support-edit-field .input-clear-x {
  color: #6a6a6a;
  font-size: 16px;
  position: absolute;
  left: 280px;
  z-index: 200;
  margin-top: -25px;
}
.duration-of-proposed-support-edit-field .input-clear-x:hover, .duration-of-proposed-support-edit-field .input-clear-x:focus {
  text-decoration: none !important;
}
.duration-of-proposed-support-edit-field.padding-left-25 .input-clear-x {
  left: 305px;
}
.duration-of-proposed-support-edit-field .fa-times-circle::before {
  top: 0;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  select.select-country.external-dropdown {
    background-position-x: 250px;
  }
  select.select-state.external-dropdown {
    background-position-x: 150px;
  }
}
.temp-prop-id-input {
  width: 257px;
}

.pm-table-link {
  color: #ffffff !important;
  text-decoration: underline !important;
}

.modal-input-table {
  width: 100%;
  background-color: transparent;
}
.modal-input-table button.modal-search-button {
  margin-left: 3px !important;
}
.modal-input-table td.or-text {
  width: 30px !important;
  text-align: center;
}
.modal-input-table td input {
  height: 35px;
  width: 100%;
  padding-left: 6px;
}
.modal-input-table td.nsf-id-input {
  width: 217px;
}
.modal-input-table .table-middle-initial {
  width: 100px;
}
.modal-input-table td {
  padding-right: 10px;
}
.modal-input-table td.modal-inline-button {
  width: 120px;
  padding-right: 0;
}

.modal.psm-manage-personnel table:not(.modal-input-table) {
  margin-top: 20px;
}
.modal.psm-manage-personnel .table th {
  border-right: 1px solid #00637b;
}

.psm-manage-personnel a .fa {
  margin-right: 4px;
}

.pm-table-col {
  display: inline-block;
  height: 100%;
}

.pm-section-header {
  display: inline-block;
  height: 100%;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-right: 0px;
  padding-left: 0px;
}

.pm-section-header-btn {
  display: inline-block;
  height: 100%;
  padding-right: 5px;
  padding-top: 8px;
  padding-bottom: 8px;
  float: right;
}

.pm-sortable-header {
  padding-top: 8px;
}

.panel-body button.btn-primary.form-control.btn-icon-wrap:disabled, .panel-body button.form-control.btn-icon-wrap.btn-primary-prop:disabled, .panel-body button.form-control.btn-icon-wrap.ember-power-select-trigger:disabled {
  background-color: #6f7686;
  cursor: not-allowed;
  border: rgb(39.4618320611, 47.5152671756, 66.0381679389);
  opacity: 1;
}

.coa-section__video-modal-button {
  margin-top: 10px;
}

.psm-sr-personnel-documents {
  padding-top: 0;
}
.psm-sr-personnel-documents .table th,
.psm-sr-personnel-documents td {
  padding: 10px 10px;
}
.psm-sr-personnel-documents .table thead th:last-child {
  border-right-width: 1px;
  border-right-style: solid;
}
.psm-sr-personnel-documents .psm-sr-personnel-documents__video-manage-personnel-documents {
  margin-bottom: 15px;
  text-align: right;
}
.psm-sr-personnel-documents .psm-sr-personnel-documents__top-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  column-gap: 20px;
}
.psm-sr-personnel-documents .psm-sr-personnel-documents__top-section .btn {
  display: block;
  margin: 0;
}
.psm-sr-personnel-documents .psm-sr-personnel-documents__expand-collapse {
  flex-shrink: 0;
}
.psm-sr-personnel-documents .psm-sr-personnel-documents__add-personnel-buttons {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  row-gap: 5px;
  column-gap: 5px;
}
.psm-sr-personnel-documents .psm-sr-personnel-documents__personnel-table {
  margin-top: 7px;
}
.psm-sr-personnel-documents .psm-sr-personnel-documents__toggle-cell {
  padding: 0 0;
}
.psm-sr-personnel-documents .psm-sr-personnel-documents__toggle-content {
  width: 100%;
  table-layout: fixed;
  background-color: initial;
}
.psm-sr-personnel-documents .btn-two-lines {
  margin-top: -12px !important;
}
.psm-sr-personnel-documents .btn-long-text {
  padding: 7px 26px !important;
}
.psm-sr-personnel-documents .table .secondary-row > td {
  padding-left: 30px;
}
.psm-sr-personnel-documents .table .secondary-row > td.no-border {
  border: none !important;
}
.psm-sr-personnel-documents .table .primary-row {
  background-color: #fff;
}
.psm-sr-personnel-documents .table .primary-row:nth-child(4n+3), .psm-sr-personnel-documents .table .primary-row:nth-child(4n+4),
.psm-sr-personnel-documents .table .secondary-row:nth-child(4n+3),
.psm-sr-personnel-documents .table .secondary-row:nth-child(4n+4) {
  background-color: #f5f7f8;
}
.psm-sr-personnel-documents .table .primary-row {
  border-top: 1px solid #ced6da;
}
.psm-sr-personnel-documents .table a.sortable-header.fa:hover,
.psm-sr-personnel-documents .table a.sortable-header.fa:focus {
  color: #ffffff;
}
.psm-sr-personnel-documents .table .doc-table {
  padding: 10px 14px;
}
.psm-sr-personnel-documents .table .doc-table .fa.red {
  color: #b12a1f;
}
.psm-sr-personnel-documents .table .doc-table .fa.green {
  color: #006149;
}
.psm-sr-personnel-documents .table .doc-table .nested-data-table {
  border: 1px solid #ced6da;
  margin-bottom: 5px;
}
.psm-sr-personnel-documents .table .doc-table .nested-data-table thead {
  background: #3c97aa;
  border: 1px solid #3c97aa;
}
.psm-sr-personnel-documents .table .doc-table .nested-data-table thead tr th {
  padding: 10px 10px;
  font-weight: bold;
  border-color: #3c97aa;
}
.psm-sr-personnel-documents .table .doc-table .nested-data-table td {
  padding: 10px 10px;
  border: none;
}

.psm-sr-personnel-documents__organization-form-select {
  margin: 0;
  flex-grow: 1;
}
.psm-sr-personnel-documents__organization-form-select select {
  appearance: none;
  background: url(data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0Ljk1IDEwIj48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6I2ZmZjt9LmNscy0ye2ZpbGw6IzQ0NDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFycm93czwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB3aWR0aD0iNC45NSIgaGVpZ2h0PSIxMCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxLjQxIDQuNjcgMi40OCAzLjE4IDMuNTQgNC42NyAxLjQxIDQuNjciLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMy41NCA1LjMzIDIuNDggNi44MiAxLjQxIDUuMzMgMy41NCA1LjMzIi8+PC9zdmc+) no-repeat 99%;
}

@media (max-width: 1199px) {
  .psm-sr-personnel-documents__organization-form-select {
    margin-left: 14px;
  }
}
.psm-sr-personnel-documents .table td {
  border: none;
}

.psm-sr-personnel-documents__row th {
  font-weight: bold;
}
.psm-sr-personnel-documents__row td {
  font-weight: normal;
}

.psm-sr-personnel-documents__row--collapsed th,
.psm-sr-personnel-documents__row--collapsed td {
  font-weight: normal;
}

[data-test-other-information] section-table table {
  margin-left: 20px;
  width: calc(100% - 20px);
}
[data-test-other-information] section-table table [data-test-section-title] .section-title {
  color: #666666;
}

.manage-personnel .table .btn {
  float: none;
}

.manage-personnel__top-links {
  display: flex;
  justify-content: flex-end;
}

.manage-personnel__add-personnel-form-row {
  display: flex;
}

.manage-personnel__nsf-id-input {
  max-width: 245px;
  flex-grow: 1;
}

.manage-personnel__email-input {
  flex-grow: 1;
}

.manage-personnel__search-personnel-button {
  margin: 24px 0px 0px 10px;
  align-self: start;
}

.manage-personnel__form-or-divider {
  margin: 32px 10px 0px 10px;
  font-weight: bold;
}

.manage-personnel__first-name-input {
  flex-grow: 1;
  max-width: 384px;
  margin-right: 10px;
}

.manage-personnel__middle-name-input {
  margin-right: 10px;
}

.manage-personnel__last-name-input {
  flex-grow: 1;
  max-width: 374px;
}

.manage-personnel__organization-input {
  flex-grow: 1;
  max-width: 424px;
  margin-right: 20px;
}

.manage-personnel__department-input {
  flex-grow: 1;
  max-width: 424px;
}

.manage-personnel__email-input {
  flex-grow: 1;
  max-width: 424px;
}

.share-plan__current-access-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.share-plan__current-access-header.panel-header {
  padding-top: 6px;
  padding-bottom: 6px;
}

.share-plan__current-access-header-buttons .btn {
  margin: 0 0;
}
.share-plan__current-access-header-buttons .btn:disabled {
  margin: 6px 0;
}

.share-plan__content {
  display: flex;
  justify-content: space-between;
}

.share-plan__content--no-side-links {
  justify-content: flex-start;
}
.share-plan__content--no-side-links .share-plan__content-box {
  width: 50%;
}

.application-form__description-container {
  display: flex;
}

.application-form__radio {
  margin-left: 10px;
}
.application-form__radio label {
  font-weight: normal;
}

.application-form__radio-sub-form {
  margin-left: 17px;
}

.application-form__radio--flex {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.research-classifications .ember-power-select-trigger > .ember-power-select-placeholder {
  text-align: left;
}

.ember-basic-dropdown-content * {
  border-bottom: 1px solid #222f3d;
}

.research-classifications .ember-basic-dropdown-content * {
  border-bottom: none;
}

.research-classifications .ember-power-select-trigger,
.research-classifications .ember-power-select-trigger:hover {
  background-color: white;
  text-align: left;
  margin-bottom: 0;
}

.research-classifications .ember-power-select-trigger[aria-disabled=true],
.research-classifications .ember-power-select-trigger[aria-disabled=true]:hover {
  background-color: #e4e4e4;
  opacity: inherit !important;
  background-image: linear-gradient(45deg, transparent 50%, black 50%), linear-gradient(135deg, black 50%, transparent 50%), linear-gradient(to right, #e4e4e4, #e4e4e4);
  background-position: calc(100% - 20px) calc(1em + 2px), calc(100% - 15px) calc(1em + 2px), 100% 0;
  background-size: 5px 5px, 5px 5px, 3em 3.5em;
  background-repeat: no-repeat;
}

.research-classifications .ember-power-select-trigger,
.research-classifications .ember-power-select-trigger:focus {
  text-align: left;
  font-weight: normal;
  background-color: white;
  border: 1px solid #999999;
  vertical-align: middle;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, black 50%), linear-gradient(135deg, black 50%, transparent 50%), linear-gradient(to right, #eceeef, #eceeef);
  background-position: calc(100% - 20px) calc(1em + 2px), calc(100% - 15px) calc(1em + 2px), 100% 0;
  background-size: 5px 5px, 5px 5px, 3em auto;
  background-repeat: no-repeat;
}

.research-classifications__label-container {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.research-classifications__classification-select-container {
  flex-grow: 1;
  overflow: auto;
}
.research-classifications__classification-select-container .power-select-custom {
  width: 100%;
}

.research-classifications__delete-classification-container {
  width: 20px;
  flex-shrink: 0;
}

.research-classifications .form-group {
  margin-bottom: 0;
}

.response-radio {
  padding-top: 5px;
}
.response-radio label {
  margin-bottom: 0px;
}

fieldset.cert-question ~ fieldset.cert-question {
  margin-top: 10px;
}

fieldset.cert-question:last-of-type {
  margin-bottom: -10px;
}

legend.cert-question {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 0;
  font-size: inherit;
  line-height: inherit;
  border: 0;
}

.table-display__container {
  display: flex;
}

.table-display__sub-header-toggle {
  margin-left: auto;
  padding-left: 2px;
}

.table-display__header {
  height: 100%;
  padding: 0 0;
  align-self: center;
}

.table-display__header-buttons {
  margin-left: auto;
  margin-right: 0;
  align-self: center;
  flex-grow: 1;
  text-align: right;
  display: flex;
  justify-content: flex-end;
}
.table-display__header-buttons > *:not(:last-child) {
  margin-right: 10px;
}
.table-display__header-buttons .btn {
  display: block;
}

.single-file-upload {
  margin-bottom: 40px;
}
.single-file-upload.adjusted-btm-margin-20 {
  margin-bottom: 20px;
}
.single-file-upload .a-security-container {
  display: flex;
}
.single-file-upload .file-preview {
  background-color: ghostwhite !important;
  border: 1px solid #ddd;
}
.single-file-upload .file-drop-zone {
  background-color: white !important;
}
.single-file-upload .form-control.file-caption.kv-fileinput-caption {
  margin-top: 7px;
}
.single-file-upload .btn.btn-xs, .single-file-upload .btn-group-xs > .btn {
  padding: 1px 5px !important;
}
.single-file-upload .inputfile-row {
  height: 50px;
  margin-top: 15px;
  padding-left: 20px;
  background: linear-gradient(to bottom, #00748d 0%, #01697f 100%);
  border-color: #01697f;
  color: #ffffff;
}
.single-file-upload .inputfile-row label {
  display: inline-block;
  margin-bottom: 0;
  margin-top: 14px;
}
.single-file-upload .inputfile {
  width: 0.1px;
  height: 0.1px;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}
.single-file-upload .btn {
  margin-left: 15px !important;
}
.single-file-upload .inputfile-saved {
  margin-left: 5px;
  margin-top: 15px;
}
.single-file-upload .inputfile-saved .filename-saved-delete {
  margin-left: 0;
}
.single-file-upload .a-security__link,
.single-file-upload .single-file-upload__pending-file-message {
  display: flex;
}
.single-file-upload .single-file-upload__link-icon {
  padding-top: 2px;
  margin-right: 5px;
}

.uploaded-file {
  display: flex;
}
.uploaded-file > a,
.uploaded-file span {
  word-break: break-all;
  word-wrap: break-word;
}
.uploaded-file > span:first-child {
  min-width: 154px;
}

.file-delete {
  vertical-align: top;
  width: 300px;
  margin-left: 20px;
}
.file-delete a.fa:hover,
.file-delete a > i:hover {
  color: #b13900;
}

section.inline-edit input.inline-input {
  width: 100%;
  height: 34px;
}

.inline-edit-readonly {
  margin-top: 4px;
  margin-left: 3px;
}

.inline-edit {
  position: relative;
}
.inline-edit .inline-btn {
  padding: 2px 7px !important;
  font-size: 14px;
  height: 34px;
  width: 34px;
}
.inline-edit div.inline-input {
  display: inline-block;
}
.inline-edit div.editing {
  padding-right: 65px;
  width: 100%;
}
.inline-edit div.inline-btns {
  position: absolute;
  right: -12px;
  top: 0;
  margin-top: -6px;
}
.inline-edit div.readonly {
  position: relative;
}
.inline-edit div.readonly > div {
  padding: 5px 3px 2px 2px;
  border: solid 1px transparent;
  word-wrap: break-word;
}
.inline-edit div.readonly:hover div {
  border-color: #cccccc;
}
.inline-edit div.readonly > a {
  padding: 4px 0 0 0;
  font-size: 16px;
}
.inline-edit input.inline-input {
  padding-right: 24px;
}
.inline-edit input.inline-input .error {
  border: #b12a1f;
}
.inline-edit .edit-clear-x {
  font-size: 16px;
  position: absolute;
  top: 10%;
  right: 70px;
  z-index: 2;
}
.inline-edit .edit-clear-x.right-5 {
  right: 5px;
  top: 4px;
}
.inline-edit .edit-clear-x.top-9 {
  right: 5px;
  top: 9px;
}
.inline-edit .edit-clear-x.top-4 {
  right: 5px;
  top: 4px;
  z-index: 100;
}
.inline-edit .edit-clear-x:hover {
  text-decoration: none !important;
}
.inline-edit .edit-clear-x:not(:focus):not(:hover) {
  color: #6a6a6a;
}
.inline-edit .edit-icon {
  position: absolute;
  right: 0;
  top: 0;
}
.inline-edit .edit-icon-inline {
  display: inline-block;
  margin-left: 5px;
}
.inline-edit div.readonly {
  padding-right: 20px;
}
.inline-edit .contentError,
.inline-edit .characterError {
  font-size: 13px;
  font-weight: normal;
}

.editable {
  padding-top: 4px;
  padding-bottom: 4px;
  margin-bottom: -4px;
  border: solid 1px transparent;
}
.editable:hover {
  border-color: #cccccc;
  cursor: pointer;
  color: #b13900;
}
.editable:hover a {
  color: #b13900;
}

.text-input-wrapper {
  display: inline-block;
  position: relative;
  width: 100%;
}

.contentError,
.characterError {
  font-size: 13px;
  font-weight: normal;
}

.text-input-wrapper input {
  width: 100%;
  padding: 9px 24px 9px 9px;
  padding: 5px 24px 5px 9px;
  padding: 4px 24px 5px 9px;
  margin: 0 0;
  height: 35px;
  font: inherit;
}
.text-input-wrapper--flushed input {
  padding-left: 2px;
}

.text-input-wrapper a {
  font-size: 16px;
  position: absolute;
  right: 6px;
  top: 4px;
}
.text-input-wrapper a:not(:focus):not(:hover) {
  color: #6a6a6a;
}

.text-input textarea.text-input {
  width: 100%;
  height: auto;
  min-height: auto;
}
.text-input textarea.text-input .error {
  border: #b12a1f;
}

textarea.text-input--large.text-input--large {
  height: 500px;
}

.alert-iam .icon {
  float: left;
}
.alert-iam .icon .fa {
  font-size: 2em;
  line-height: 1.5em;
}
.alert-iam .content {
  padding-left: 3em;
}
.alert-iam .content *:last-child {
  margin-bottom: 0;
}

body.iam-modal-open {
  overflow: hidden;
}

div.iam-modal .iam-modal-wrapper, div.iam-modal .iam-modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  outline: 0;
}
div.iam-modal .iam-modal-backdrop {
  z-index: 10490;
  background: #fff;
}
div.iam-modal .iam-modal-wrapper {
  z-index: 10500;
}
div.iam-modal .iam-modal-dialog {
  padding: 15px;
  margin: 30px 0;
  border: solid 1px rgba(0, 0, 0, 0.2);
  background-clip: padding-box;
  box-shadow: 0 0 9px rgba(0, 0, 0, 0.5);
}
div.iam-modal .iam-modal-header h4 {
  margin-bottom: 0;
  margin-top: 0;
}
@media (min-width: 420px) {
  div.iam-modal .iam-modal-dialog {
    width: 600px;
    margin: 30px auto;
  }
}