.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  float: left;
}
.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover,
.btn-group > .btn:focus,
.btn-group-vertical > .btn:focus,
.btn-group > .btn:active,
.btn-group-vertical > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn.active {
  z-index: 2;
}
.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group {
  margin-left: -1px;
}
.btn-toolbar {
  margin-left: -5px;
}
.btn-toolbar .btn,
.btn-toolbar .btn-group,
.btn-toolbar .input-group {
  float: left;
}
.btn-toolbar > .btn,
.btn-toolbar > .btn-group,
.btn-toolbar > .input-group {
  margin-left: 5px;
}
.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0;
}
.btn-group > .btn:first-child {
  margin-left: 0;
}
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-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-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0;
}
.btn-group > .btn + .dropdown-toggle {
  padding-left: 8px;
  padding-right: 8px;
}
.btn-group > .btn-lg + .dropdown-toggle {
  padding-left: 12px;
  padding-right: 12px;
}
.btn-group.open .dropdown-toggle {
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn-group.open .dropdown-toggle.btn-link {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.btn .caret {
  margin-left: 0;
}
.btn-lg .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0;
}
.dropup .btn-lg .caret {
  border-width: 0 5px 5px;
}
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
}
.btn-group-vertical > .btn-group > .btn {
  float: none;
}
.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0;
}
.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.btn-group-vertical > .btn:first-child:not(:last-child) {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn:last-child:not(:first-child) {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
}
.btn-group-justified > .btn,
.btn-group-justified > .btn-group {
  float: none;
  display: table-cell;
  width: 1%;
}
.btn-group-justified > .btn-group .btn {
  width: 100%;
}
.btn-group-justified > .btn-group .dropdown-menu {
  left: auto;
}
[data-toggle="buttons"] > .btn input[type="radio"],
[data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
[data-toggle="buttons"] > .btn input[type="checkbox"],
[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
/*.input-group {
  position: relative; // For dropdowns
  display: table;
  border-collapse: separate; // prevent input groups from inheriting border styles from table cells when placed within a table

  // Undo padding and float of grid classes
  &[class*="col-"] {
    float: none;
    padding-left: 0;
    padding-right: 0;
  }

  .form-control {
    // Ensure that the input is always above the *appended* addon button for
    // proper border colors.
    position: relative;
    z-index: 2;

    // IE9 fubars the placeholder attribute in text inputs and the arrows on
    // select elements in input groups. To fix it, we float the input. Details:
    // https://github.com/twbs/bootstrap/issues/11561#issuecomment-28936855
    float: left;

    width: 100%;
    margin-bottom: 0;
    
    &:focus {
      z-index: 3;
    }
  }
}*/
/*.input-group-addon,
.input-group-btn,
.input-group .form-control {
  display: table-cell;

  &: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: normal;
  line-height: 1;
  color: #555555;
  text-align: center;
  background-color: #eeeeee;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.input-group-addon.input-sm {
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 3px;
}
.input-group-addon.input-lg {
  padding: 10px 16px;
  font-size: 18px;
  border-radius: 6px;
}
.input-group-addon input[type="radio"],
.input-group-addon input[type="checkbox"] {
  margin-top: 0;
}
.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group > .btn,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-top-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-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.input-group-addon:last-child {
  border-left: 0;
}
.input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap;
  /*font-size 0 makes the buttons in Distributions too small*/
}
.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;
}
.input-group-btn .font-size-show {
  font-size: 12px !important;
}
.input-group-btn.vertical-align-middle {
  vertical-align: middle;
}
.clearfix,
.btn-toolbar,
.btn-group-vertical > .btn-group,
.modal-header,
.modal-footer {
  clear: both;
}
/*! normalize.css v3.0.1 | MIT License | git.io/normalize */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],
template {
  display: none;
}
a {
  background: transparent;
}
a:active,
a:hover {
  outline: 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
mark {
  background: #ff0;
  color: #000;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 1em 40px;
}
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}
pre {
  overflow: auto;
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}
button {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
input {
  line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
}
optgroup {
  font-weight: bold;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
input[type=checkbox] {
  vertical-align: middle;
  line-height: 1em;
  height: 18px;
  width: 18px;
  margin-top: 2px;
}
.row {
  clear: both;
  margin: 0px 0px;
}
.row:before,
.row:after {
  content: " ";
  display: table;
}
.row:after {
  clear: both;
}
.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;
}
.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;
  padding-right: 5px;
}
.col-md-12 {
  width: 100%;
}
.col-md-11 {
  width: 91.66666667%;
}
.col-md-10 {
  width: 83.33333333%;
}
.col-md-9 {
  width: 75%;
}
.col-md-8 {
  width: 66.66666667%;
}
.col-md-7 {
  width: 58.33333333%;
}
.col-md-6 {
  width: 50%;
}
.col-md-5 {
  width: 41.66666667%;
}
.col-md-4 {
  width: 33.33333333%;
}
.col-md-3 {
  width: 25%;
}
.col-md-2 {
  width: 16.66666667%;
}
.col-md-1 {
  width: 8.33333333%;
}
.col-md-pull-12 {
  right: 100%;
}
.col-md-pull-11 {
  right: 91.66666667%;
}
.col-md-pull-10 {
  right: 83.33333333%;
}
.col-md-pull-9 {
  right: 75%;
}
.col-md-pull-8 {
  right: 66.66666667%;
}
.col-md-pull-7 {
  right: 58.33333333%;
}
.col-md-pull-6 {
  right: 50%;
}
.col-md-pull-5 {
  right: 41.66666667%;
}
.col-md-pull-4 {
  right: 33.33333333%;
}
.col-md-pull-3 {
  right: 25%;
}
.col-md-pull-2 {
  right: 16.66666667%;
}
.col-md-pull-1 {
  right: 8.33333333%;
}
.col-md-pull-0 {
  right: 0%;
}
.col-md-push-12 {
  left: 100%;
}
.col-md-push-11 {
  left: 91.66666667%;
}
.col-md-push-10 {
  left: 83.33333333%;
}
.col-md-push-9 {
  left: 75%;
}
.col-md-push-8 {
  left: 66.66666667%;
}
.col-md-push-7 {
  left: 58.33333333%;
}
.col-md-push-6 {
  left: 50%;
}
.col-md-push-5 {
  left: 41.66666667%;
}
.col-md-push-4 {
  left: 33.33333333%;
}
.col-md-push-3 {
  left: 25%;
}
.col-md-push-2 {
  left: 16.66666667%;
}
.col-md-push-1 {
  left: 8.33333333%;
}
.col-md-push-0 {
  left: 0%;
}
.col-md-offset-12 {
  margin-left: 100%;
}
.col-md-offset-11 {
  margin-left: 91.66666667%;
}
.col-md-offset-10 {
  margin-left: 83.33333333%;
}
.col-md-offset-9 {
  margin-left: 75%;
}
.col-md-offset-8 {
  margin-left: 66.66666667%;
}
.col-md-offset-7 {
  margin-left: 58.33333333%;
}
.col-md-offset-6 {
  margin-left: 50%;
}
.col-md-offset-5 {
  margin-left: 41.66666667%;
}
.col-md-offset-4 {
  margin-left: 33.33333333%;
}
.col-md-offset-3 {
  margin-left: 25%;
}
.col-md-offset-2 {
  margin-left: 16.66666667%;
}
.col-md-offset-1 {
  margin-left: 8.33333333%;
}
.col-md-offset-0 {
  margin-left: 0%;
}
.btn {
  display: inline-block;
  margin-bottom: 0;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  text-decoration: none;
  font-weight: normal;
  padding: 3px 10px;
  border-radius: 5px;
  margin: 0px 2px;
}
.btn.btn-sm {
  padding: 0px 2px;
}
.btn.btn-wizard {
  width: 110px;
}
.btn.btn-wizard-large {
  width: 150px;
}
.btn.btn-std {
  color: #fff;
  background-image: -webkit-linear-gradient(top, #aec732 0%, #819c35 100%);
  background-image: -o-linear-gradient(top, #aec732 0%, #819c35 100%);
  background-image: linear-gradient(to bottom, #aec732 0%, #819c35 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffaec732', endColorstr='#ff819c35', GradientType=0);
  border-color: #c6c6c6;
}
.btn.btn-std:hover,
.btn.btn-std:focus,
.btn.btn-std:active,
.btn.btn-std.active,
.open > .dropdown-toggle.btn.btn-std {
  color: #fff;
  background-image: -webkit-linear-gradient(top, #9cb32d 0%, #71892f 100%);
  background-image: -o-linear-gradient(top, #9cb32d 0%, #71892f 100%);
  background-image: linear-gradient(to bottom, #9cb32d 0%, #71892f 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff9cb32d', endColorstr='#ff71892f', GradientType=0);
  border-color: #a7a7a7;
}
.btn.btn-std:active,
.btn.btn-std.active,
.open > .dropdown-toggle.btn.btn-std {
  background-image: none;
}
.btn.btn-std.disabled,
.btn.btn-std[disabled],
fieldset[disabled] .btn.btn-std,
.btn.btn-std.disabled:hover,
.btn.btn-std[disabled]:hover,
fieldset[disabled] .btn.btn-std:hover,
.btn.btn-std.disabled:focus,
.btn.btn-std[disabled]:focus,
fieldset[disabled] .btn.btn-std:focus,
.btn.btn-std.disabled:active,
.btn.btn-std[disabled]:active,
fieldset[disabled] .btn.btn-std:active,
.btn.btn-std.disabled.active,
.btn.btn-std[disabled].active,
fieldset[disabled] .btn.btn-std.active {
  cursor: not-allowed;
  background-image: -webkit-linear-gradient(top, #9da08c 0%, #828282 100%);
  background-image: -o-linear-gradient(top, #9da08c 0%, #828282 100%);
  background-image: linear-gradient(to bottom, #9da08c 0%, #828282 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff9da08c', endColorstr='#ff828282', GradientType=0);
  border-color: #c6c6c6;
}
.btn.btn-std .badge {
  color: #aec732;
  background-color: #fff;
}
.btn.btn-action {
  color: #fff;
  background-image: -webkit-linear-gradient(top, #aec732 0%, #819c35 100%);
  background-image: -o-linear-gradient(top, #aec732 0%, #819c35 100%);
  background-image: linear-gradient(to bottom, #aec732 0%, #819c35 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffaec732', endColorstr='#ff819c35', GradientType=0);
  border-color: #c6c6c6;
}
.btn.btn-action:hover,
.btn.btn-action:focus,
.btn.btn-action:active,
.btn.btn-action.active,
.open > .dropdown-toggle.btn.btn-action {
  color: #fff;
  background-image: -webkit-linear-gradient(top, #9cb32d 0%, #71892f 100%);
  background-image: -o-linear-gradient(top, #9cb32d 0%, #71892f 100%);
  background-image: linear-gradient(to bottom, #9cb32d 0%, #71892f 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff9cb32d', endColorstr='#ff71892f', GradientType=0);
  border-color: #a7a7a7;
}
.btn.btn-action:active,
.btn.btn-action.active,
.open > .dropdown-toggle.btn.btn-action {
  background-image: none;
}
.btn.btn-action.disabled,
.btn.btn-action[disabled],
fieldset[disabled] .btn.btn-action,
.btn.btn-action.disabled:hover,
.btn.btn-action[disabled]:hover,
fieldset[disabled] .btn.btn-action:hover,
.btn.btn-action.disabled:focus,
.btn.btn-action[disabled]:focus,
fieldset[disabled] .btn.btn-action:focus,
.btn.btn-action.disabled:active,
.btn.btn-action[disabled]:active,
fieldset[disabled] .btn.btn-action:active,
.btn.btn-action.disabled.active,
.btn.btn-action[disabled].active,
fieldset[disabled] .btn.btn-action.active {
  cursor: not-allowed;
  background-image: -webkit-linear-gradient(top, #9da08c 0%, #828282 100%);
  background-image: -o-linear-gradient(top, #9da08c 0%, #828282 100%);
  background-image: linear-gradient(to bottom, #9da08c 0%, #828282 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff9da08c', endColorstr='#ff828282', GradientType=0);
  border-color: #c6c6c6;
}
.btn.btn-action .badge {
  color: #aec732;
  background-color: #fff;
}
.btn.btn-link {
  color: #0d0d0d;
  background-image: -webkit-linear-gradient(top, #d7dec3 0%, #d7dec3 100%);
  background-image: -o-linear-gradient(top, #d7dec3 0%, #d7dec3 100%);
  background-image: linear-gradient(to bottom, #d7dec3 0%, #d7dec3 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd7dec3', endColorstr='#ffd7dec3', GradientType=0);
  border-color: transparent;
}
.btn.btn-link:hover,
.btn.btn-link:focus,
.btn.btn-link:active,
.btn.btn-link.active,
.open > .dropdown-toggle.btn.btn-link {
  color: #0d0d0d;
  background-image: -webkit-linear-gradient(top, #ccd5b3 0%, #ccd5b3 100%);
  background-image: -o-linear-gradient(top, #ccd5b3 0%, #ccd5b3 100%);
  background-image: linear-gradient(to bottom, #ccd5b3 0%, #ccd5b3 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffccd5b3', endColorstr='#ffccd5b3', GradientType=0);
  border-color: rgba(0, 0, 0, 0);
}
.btn.btn-link:active,
.btn.btn-link.active,
.open > .dropdown-toggle.btn.btn-link {
  background-image: none;
}
.btn.btn-link.disabled,
.btn.btn-link[disabled],
fieldset[disabled] .btn.btn-link,
.btn.btn-link.disabled:hover,
.btn.btn-link[disabled]:hover,
fieldset[disabled] .btn.btn-link:hover,
.btn.btn-link.disabled:focus,
.btn.btn-link[disabled]:focus,
fieldset[disabled] .btn.btn-link:focus,
.btn.btn-link.disabled:active,
.btn.btn-link[disabled]:active,
fieldset[disabled] .btn.btn-link:active,
.btn.btn-link.disabled.active,
.btn.btn-link[disabled].active,
fieldset[disabled] .btn.btn-link.active {
  cursor: not-allowed;
  background-image: -webkit-linear-gradient(top, #eaeaea 0%, #eaeaea 100%);
  background-image: -o-linear-gradient(top, #eaeaea 0%, #eaeaea 100%);
  background-image: linear-gradient(to bottom, #eaeaea 0%, #eaeaea 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffeaeaea', endColorstr='#ffeaeaea', GradientType=0);
  border-color: transparent;
}
.btn.btn-link .badge {
  color: #d7dec3;
  background-color: #0d0d0d;
}
.btn.btn-flat {
  color: #fff;
  background-image: -webkit-linear-gradient(top, #aec732 0%, #aec732 100%);
  background-image: -o-linear-gradient(top, #aec732 0%, #aec732 100%);
  background-image: linear-gradient(to bottom, #aec732 0%, #aec732 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffaec732', endColorstr='#ffaec732', GradientType=0);
  border-color: #c6c6c6;
}
.btn.btn-flat:hover,
.btn.btn-flat:focus,
.btn.btn-flat:active,
.btn.btn-flat.active,
.open > .dropdown-toggle.btn.btn-flat {
  color: #fff;
  background-image: -webkit-linear-gradient(top, #9cb32d 0%, #9cb32d 100%);
  background-image: -o-linear-gradient(top, #9cb32d 0%, #9cb32d 100%);
  background-image: linear-gradient(to bottom, #9cb32d 0%, #9cb32d 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff9cb32d', endColorstr='#ff9cb32d', GradientType=0);
  border-color: #a7a7a7;
}
.btn.btn-flat:active,
.btn.btn-flat.active,
.open > .dropdown-toggle.btn.btn-flat {
  background-image: none;
}
.btn.btn-flat.disabled,
.btn.btn-flat[disabled],
fieldset[disabled] .btn.btn-flat,
.btn.btn-flat.disabled:hover,
.btn.btn-flat[disabled]:hover,
fieldset[disabled] .btn.btn-flat:hover,
.btn.btn-flat.disabled:focus,
.btn.btn-flat[disabled]:focus,
fieldset[disabled] .btn.btn-flat:focus,
.btn.btn-flat.disabled:active,
.btn.btn-flat[disabled]:active,
fieldset[disabled] .btn.btn-flat:active,
.btn.btn-flat.disabled.active,
.btn.btn-flat[disabled].active,
fieldset[disabled] .btn.btn-flat.active {
  cursor: not-allowed;
  background-image: -webkit-linear-gradient(top, #9da08c 0%, #9da08c 100%);
  background-image: -o-linear-gradient(top, #9da08c 0%, #9da08c 100%);
  background-image: linear-gradient(to bottom, #9da08c 0%, #9da08c 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff9da08c', endColorstr='#ff9da08c', GradientType=0);
  border-color: #c6c6c6;
}
.btn.btn-flat .badge {
  color: #aec732;
  background-color: #fff;
}
.btn.btn-slt {
  color: #0d0d0d;
  background-image: -webkit-linear-gradient(top, #c6c6c6 0%, #c6c6c6 100%);
  background-image: -o-linear-gradient(top, #c6c6c6 0%, #c6c6c6 100%);
  background-image: linear-gradient(to bottom, #c6c6c6 0%, #c6c6c6 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffc6c6c6', endColorstr='#ffc6c6c6', GradientType=0);
  border-color: #c6c6c6;
}
.btn.btn-slt:hover,
.btn.btn-slt:focus,
.btn.btn-slt:active,
.btn.btn-slt.active,
.open > .dropdown-toggle.btn.btn-slt {
  color: #0d0d0d;
  background-image: -webkit-linear-gradient(top, #b9b9b9 0%, #b9b9b9 100%);
  background-image: -o-linear-gradient(top, #b9b9b9 0%, #b9b9b9 100%);
  background-image: linear-gradient(to bottom, #b9b9b9 0%, #b9b9b9 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffb9b9b9', endColorstr='#ffb9b9b9', GradientType=0);
  border-color: #a7a7a7;
}
.btn.btn-slt:active,
.btn.btn-slt.active,
.open > .dropdown-toggle.btn.btn-slt {
  background-image: none;
}
.btn.btn-slt.disabled,
.btn.btn-slt[disabled],
fieldset[disabled] .btn.btn-slt,
.btn.btn-slt.disabled:hover,
.btn.btn-slt[disabled]:hover,
fieldset[disabled] .btn.btn-slt:hover,
.btn.btn-slt.disabled:focus,
.btn.btn-slt[disabled]:focus,
fieldset[disabled] .btn.btn-slt:focus,
.btn.btn-slt.disabled:active,
.btn.btn-slt[disabled]:active,
fieldset[disabled] .btn.btn-slt:active,
.btn.btn-slt.disabled.active,
.btn.btn-slt[disabled].active,
fieldset[disabled] .btn.btn-slt.active {
  cursor: not-allowed;
  background-image: -webkit-linear-gradient(top, #e0e0e0 0%, #e0e0e0 100%);
  background-image: -o-linear-gradient(top, #e0e0e0 0%, #e0e0e0 100%);
  background-image: linear-gradient(to bottom, #e0e0e0 0%, #e0e0e0 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe0e0e0', endColorstr='#ffe0e0e0', GradientType=0);
  border-color: #c6c6c6;
}
.btn.btn-slt .badge {
  color: #c6c6c6;
  background-color: #0d0d0d;
}
.btn.btn-org {
  color: #0d0d0d;
  background-image: -webkit-linear-gradient(top, #ffc00f 0%, #ffc00f 100%);
  background-image: -o-linear-gradient(top, #ffc00f 0%, #ffc00f 100%);
  background-image: linear-gradient(to bottom, #ffc00f 0%, #ffc00f 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffc00f', endColorstr='#ffffc00f', GradientType=0);
  border-color: #ffc00f;
}
.btn.btn-org:hover,
.btn.btn-org:focus,
.btn.btn-org:active,
.btn.btn-org.active,
.open > .dropdown-toggle.btn.btn-org {
  color: #0d0d0d;
  background-image: -webkit-linear-gradient(top, #f5b400 0%, #f5b400 100%);
  background-image: -o-linear-gradient(top, #f5b400 0%, #f5b400 100%);
  background-image: linear-gradient(to bottom, #f5b400 0%, #f5b400 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5b400', endColorstr='#fff5b400', GradientType=0);
  border-color: #d19a00;
}
.btn.btn-org:active,
.btn.btn-org.active,
.open > .dropdown-toggle.btn.btn-org {
  background-image: none;
}
.btn.btn-org.disabled,
.btn.btn-org[disabled],
fieldset[disabled] .btn.btn-org,
.btn.btn-org.disabled:hover,
.btn.btn-org[disabled]:hover,
fieldset[disabled] .btn.btn-org:hover,
.btn.btn-org.disabled:focus,
.btn.btn-org[disabled]:focus,
fieldset[disabled] .btn.btn-org:focus,
.btn.btn-org.disabled:active,
.btn.btn-org[disabled]:active,
fieldset[disabled] .btn.btn-org:active,
.btn.btn-org.disabled.active,
.btn.btn-org[disabled].active,
fieldset[disabled] .btn.btn-org.active {
  cursor: not-allowed;
  background-image: -webkit-linear-gradient(top, #d0b771 0%, #d0b771 100%);
  background-image: -o-linear-gradient(top, #d0b771 0%, #d0b771 100%);
  background-image: linear-gradient(to bottom, #d0b771 0%, #d0b771 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd0b771', endColorstr='#ffd0b771', GradientType=0);
  border-color: #ffc00f;
}
.btn.btn-org .badge {
  color: #ffc00f;
  background-color: #0d0d0d;
}
.btn.btn-save {
  color: #fff;
  background-image: -webkit-linear-gradient(top, #ffc00f 0%, #ffc00f 100%);
  background-image: -o-linear-gradient(top, #ffc00f 0%, #ffc00f 100%);
  background-image: linear-gradient(to bottom, #ffc00f 0%, #ffc00f 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffc00f', endColorstr='#ffffc00f', GradientType=0);
  border-color: #ffc00f;
}
.btn.btn-save:hover,
.btn.btn-save:focus,
.btn.btn-save:active,
.btn.btn-save.active,
.open > .dropdown-toggle.btn.btn-save {
  color: #fff;
  background-image: -webkit-linear-gradient(top, #f5b400 0%, #f5b400 100%);
  background-image: -o-linear-gradient(top, #f5b400 0%, #f5b400 100%);
  background-image: linear-gradient(to bottom, #f5b400 0%, #f5b400 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5b400', endColorstr='#fff5b400', GradientType=0);
  border-color: #d19a00;
}
.btn.btn-save:active,
.btn.btn-save.active,
.open > .dropdown-toggle.btn.btn-save {
  background-image: none;
}
.btn.btn-save.disabled,
.btn.btn-save[disabled],
fieldset[disabled] .btn.btn-save,
.btn.btn-save.disabled:hover,
.btn.btn-save[disabled]:hover,
fieldset[disabled] .btn.btn-save:hover,
.btn.btn-save.disabled:focus,
.btn.btn-save[disabled]:focus,
fieldset[disabled] .btn.btn-save:focus,
.btn.btn-save.disabled:active,
.btn.btn-save[disabled]:active,
fieldset[disabled] .btn.btn-save:active,
.btn.btn-save.disabled.active,
.btn.btn-save[disabled].active,
fieldset[disabled] .btn.btn-save.active {
  cursor: not-allowed;
  background-image: -webkit-linear-gradient(top, #d0b771 0%, #d0b771 100%);
  background-image: -o-linear-gradient(top, #d0b771 0%, #d0b771 100%);
  background-image: linear-gradient(to bottom, #d0b771 0%, #d0b771 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd0b771', endColorstr='#ffd0b771', GradientType=0);
  border-color: #ffc00f;
}
.btn.btn-save .badge {
  color: #ffc00f;
  background-color: #fff;
}
.input-group-btn {
  position: relative;
  white-space: nowrap;
  display: table-cell;
}
.input-group-btn .btn {
  padding: 3px 5px;
}
.input-group-btn .fa {
  font-size: 14px;
}
.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}
.nav-buttons .active .btn.btn-slt {
  color: #0d0d0d;
  background-image: -webkit-linear-gradient(top, #ffc00f 0%, #ffc00f 100%);
  background-image: -o-linear-gradient(top, #ffc00f 0%, #ffc00f 100%);
  background-image: linear-gradient(to bottom, #ffc00f 0%, #ffc00f 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffc00f', endColorstr='#ffffc00f', GradientType=0);
  border-color: #c6c6c6;
}
.nav-buttons .active .btn.btn-slt:hover,
.nav-buttons .active .btn.btn-slt:focus,
.nav-buttons .active .btn.btn-slt:active,
.nav-buttons .active .btn.btn-slt.active,
.open > .dropdown-toggle.nav-buttons .active .btn.btn-slt {
  color: #0d0d0d;
  background-image: -webkit-linear-gradient(top, #f5b400 0%, #f5b400 100%);
  background-image: -o-linear-gradient(top, #f5b400 0%, #f5b400 100%);
  background-image: linear-gradient(to bottom, #f5b400 0%, #f5b400 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5b400', endColorstr='#fff5b400', GradientType=0);
  border-color: #a7a7a7;
}
.nav-buttons .active .btn.btn-slt:active,
.nav-buttons .active .btn.btn-slt.active,
.open > .dropdown-toggle.nav-buttons .active .btn.btn-slt {
  background-image: none;
}
.nav-buttons .active .btn.btn-slt.disabled,
.nav-buttons .active .btn.btn-slt[disabled],
fieldset[disabled] .nav-buttons .active .btn.btn-slt,
.nav-buttons .active .btn.btn-slt.disabled:hover,
.nav-buttons .active .btn.btn-slt[disabled]:hover,
fieldset[disabled] .nav-buttons .active .btn.btn-slt:hover,
.nav-buttons .active .btn.btn-slt.disabled:focus,
.nav-buttons .active .btn.btn-slt[disabled]:focus,
fieldset[disabled] .nav-buttons .active .btn.btn-slt:focus,
.nav-buttons .active .btn.btn-slt.disabled:active,
.nav-buttons .active .btn.btn-slt[disabled]:active,
fieldset[disabled] .nav-buttons .active .btn.btn-slt:active,
.nav-buttons .active .btn.btn-slt.disabled.active,
.nav-buttons .active .btn.btn-slt[disabled].active,
fieldset[disabled] .nav-buttons .active .btn.btn-slt.active {
  cursor: not-allowed;
  background-image: -webkit-linear-gradient(top, #d0b771 0%, #d0b771 100%);
  background-image: -o-linear-gradient(top, #d0b771 0%, #d0b771 100%);
  background-image: linear-gradient(to bottom, #d0b771 0%, #d0b771 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd0b771', endColorstr='#ffd0b771', GradientType=0);
  border-color: #c6c6c6;
}
.nav-buttons .active .btn.btn-slt .badge {
  color: #ffc00f;
  background-color: #0d0d0d;
}
.vertical-radio {
  clear: both;
  padding: 2px;
}
.link-button {
  background: none!important;
  border: none;
  text-decoration: underline;
}
.wizard-body {
  width: 100%;
  padding: 0px 5px;
}
.wizard-content-header {
  color: #819c35;
  font-weight: bold;
}
.wizard-content-header h1 {
  width: 260px;
  margin-left: 12px;
  float: left;
  font-size: 1em;
}
.wizard-steps {
  list-style: none;
  font-size: 1.5em;
  color: #FFF;
  display: inline-block;
  position: relative;
  padding: 0px;
  margin: 5px;
  font-weight: bold;
}
.wizard-steps li {
  display: inline-block;
  border-radius: 50%;
  background: #CCC;
  text-align: center;
  vertical-align: middle;
  width: 25px;
  line-height: 25px;
  margin: 0px 2px;
  z-index: 2;
  position: relative;
}
.wizard-steps li:first-child {
  margin-left: 0px;
}
.wizard-steps li:last-child {
  margin-right: 0px;
}
.wizard-steps li.active {
  background: green;
  width: 30px;
  line-height: 30px;
  font-size: 1.2em;
}
.wizard-steps:after {
  content: " ";
  display: block;
  width: 100%;
  border: 1px solid #CCC;
  top: 50%;
  left: 0px;
  position: absolute;
}
table.wizard tr {
  background-color: transparent;
}
table.wizard td {
  vertical-align: top;
  padding: 0px 2px;
}
table.wizard > table {
  margin: 0;
}
table.wizard td.wizard-sidebar {
  width: 260px;
  padding-top: 5px;
}
table.wizard td.wizard-sidebar > a {
  display: none;
}
table.wizard td.wizard-sidebar .box-content a {
  text-decoration: none;
  color: #ffc00f;
}
table.wizard td.wizard-sidebar .box-content a.disabled {
  color: #0d0d0d;
}
table.wizard td.wizard-sidebar .box-content a::before {
  font-family: FontAwesome;
  content: "\f105";
  color: #c1d72e;
  font-size: 1.5em;
  padding-right: 3px;
}
table.wizard td.wizardHeader {
  height: 0;
  padding: 0;
}
table.wizard td.wizard-step {
  padding-right: 10px;
}
table.wizard td.wizard-step .box-content {
  background: #edf0e4;
}
table.wizard td.wizard-step td {
  padding: 2px 2px;
}
table.wizard td.wizard-step select {
  width: auto;
}
#entity-AddressPanel label {
  width: 50px;
}
#entity-summary label {
  width: 65px;
}
#entity-summary label {
  width: 80px;
}
#entity-summary label.long-label {
  width: 130px;
}
table {
  width: 100%;
  margin: 5px 0px;
  border-collapse: collapse;
  border: 0px;
  border-spacing: 0;
  color: #0d0d0d;
}
table.table-clean {
  margin: 0px;
}
table.table-clean,
table.table-clean > tbody > tr {
  background: transparent !important;
}
table a {
  color: #0d0d0d;
}
table.table-striped > tr:nth-child(odd),
table.table-striped > tbody > tr:nth-child(odd) {
  background: #fff;
}
table.table-striped > tr:nth-child(odd).active,
table.table-striped > tbody > tr:nth-child(odd).active {
  background: #ffc00f;
}
table.table-bordered {
  border: 1px solid #555555;
}
table.table-bordered > thead > tr > th,
table.table-bordered > tbody > tr > th,
table.table-bordered > tfoot > tr > th {
  border: 1px solid #999999;
}
table.table-bordered > thead > tr > td,
table.table-bordered > tbody > tr > td,
table.table-bordered > tfoot > tr > td {
  border: 1px solid #999999;
}
table.table-bordered > thead > tr > th,
table.table-bordered > thead > tr > td {
  border-bottom-width: 2px;
}
table tr {
  background: #eeeeee;
}
table tr.text-active {
  color: #819c35;
}
table tr.text-danger {
  color: red;
}
table tr.active {
  background: #ffc00f;
}
table tr.danger {
  background: red;
}
table th,
table td {
  padding: 2px 2px;
  border: none;
  text-align: left;
}
table.text-left th,
table.text-left td {
  text-align: left;
}
table.text-right th,
table.text-right td {
  text-align: right;
}
table.text-center th,
table.text-center td {
  text-align: center;
}
table th {
  background: #819c35;
  color: #fff;
  font-weight: normal;
}
table th a {
  color: #fff;
  text-decoration: none;
}
table th a:before {
  margin-right: 2px;
  font-family: FontAwesome;
  content: "\f0dc";
}
table input[type="checkbox"] {
  width: 12px;
  height: 12px;
  margin: 1px 2px;
}
.table-scroller {
  height: 250px;
  width: 100%;
  overflow-y: auto;
  overflow-x: auto;
  position: relative;
}
.table-scroller table {
  width: 99%;
  position: absolute;
}
.table-full-width td,
.table-full-width th {
  white-space: nowrap;
}
.ellipse-overflow {
  overflow: hidden;
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 500px;
  display: inline-block;
}
.ellipse-overflow-block {
  overflow: hidden;
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 500px;
  display: block;
}
.ellipse-overflow-documents {
  overflow: hidden;
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100px;
  display: inline-block;
}
.word-wrap-all {
  -ms-word-break: break-all;
  word-break: break-all;
}
.no-wrap {
  white-space: nowrap;
}
.modal {
  overflow: hidden;
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 1050;
  padding: 10px;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.modal.fade .modal-dialog {
  z-index: 1050;
  -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 .modal-content {
  z-index: 1050;
}
.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}
.modal-open {
  overflow: hidden;
}
.bs-modal {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.bs-modal.fade .modal-dialog {
  z-index: 1050;
  -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;
}
.bs-modal .modal-content {
  z-index: 1050;
}
.bs-modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}
.modal-content {
  position: relative;
  background-color: #fff;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: 0;
}
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0);
}
.modal-backdrop.in {
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.modal-header {
  background-image: -webkit-linear-gradient(top, #aec732 0%, #819c35 100%);
  background-image: -o-linear-gradient(top, #aec732 0%, #819c35 100%);
  background-image: linear-gradient(to bottom, #aec732 0%, #819c35 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffaec732', endColorstr='#ff819c35', GradientType=0);
  color: #fff;
  padding: 5px;
  border-bottom: 1px solid #e5e5e5;
  border-top-right-radius: 7px;
  border-top-left-radius: 7px;
  font-weight: bold;
}
.modal-header .close {
  margin-top: -2px;
}
.modal-title {
  margin: 0;
  line-height: 1.42857143;
}
.modal-body {
  position: relative;
  padding: 15px;
}
.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}
.modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0;
}
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}
.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }
  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }
  .modal-sm {
    width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg {
    width: 900px;
  }
}
.typeahead {
  list-style: none;
  padding: 0px;
  margin: 0px;
  max-height: 300px;
  overflow-y: scroll;
  z-index: 1000;
}
.typeahead li {
  width: 100%;
  display: block;
  padding: 5px 1px;
  border-bottom: 1px solid #c6c6c6;
  background: #fff;
}
.typeahead li.active {
  background: #ffc00f;
  color: #fff;
}
.twitter-typeahead {
  background-color: #fff;
  width: 100%;
}
.tt-hint {
  color: #999;
}
.tt-dropdown-menu {
  width: 300px;
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  max-height: 150px;
  overflow-y: auto;
}
.tt-dropdown-menu h4 {
  margin-top: 1px;
}
.tt-suggestion {
  border-bottom: 1px solid #AAA;
}
.tt-suggestion.tt-cursor {
  background-color: #ffc00f;
}
.tt-suggestion p {
  margin: 0;
}
/*!
 *  Font Awesome 4.0.3 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url('/App_Themes/fonts/fontawesome-webfont.eot?v=4.0.3');
  src: url('/App_Themes/fonts/fontawesome-webfont.eot?#iefix&v=4.0.3') format('embedded-opentype'), url('/App_Themes/fonts/fontawesome-webfont.woff?v=4.0.3') format('woff'), url('/fonts/fontawesome-webfont.ttf?v=4.0.3') format('truetype'), url('/App_Themes/fonts/fontawesome-webfont.svg?v=4.0.3#fontawesomeregular') format('svg');
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}
.fa-2x {
  font-size: 2em;
}
.fa-3x {
  font-size: 3em;
}
.fa-4x {
  font-size: 4em;
}
.fa-5x {
  font-size: 5em;
}
.fa-fw {
  width: 1.28571429em;
  text-align: center;
}
.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}
.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.85714286em;
}
.fa-border {
  padding: 0.2em 0.25em 0.15em;
  border: solid 0.08em #eeeeee;
  border-radius: 0.1em;
}
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.fa.pull-left {
  margin-right: 0.3em;
}
.fa.pull-right {
  margin-left: 0.3em;
}
.fa-spin {
  -webkit-animation: spin 2s infinite linear;
  -moz-animation: spin 2s infinite linear;
  -o-animation: spin 2s infinite linear;
  animation: spin 2s infinite linear;
}
@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(359deg);
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
  }
}
@-o-keyframes spin {
  0% {
    -o-transform: rotate(0deg);
  }
  100% {
    -o-transform: rotate(359deg);
  }
}
@-ms-keyframes spin {
  0% {
    -ms-transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(359deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.fa-rotate-180 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.fa-rotate-270 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  -webkit-transform: rotate(270deg);
  -moz-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  -o-transform: rotate(270deg);
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
  -webkit-transform: scale(-1, 1);
  -moz-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  -o-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.fa-flip-vertical {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
  -webkit-transform: scale(1, -1);
  -moz-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  -o-transform: scale(1, -1);
  transform: scale(1, -1);
}
.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}
.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
.fa-stack-1x {
  line-height: inherit;
}
.fa-stack-2x {
  font-size: 2em;
}
.fa-inverse {
  color: #ffffff;
}
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "\f000";
}
.fa-music:before {
  content: "\f001";
}
.fa-search:before {
  content: "\f002";
}
.fa-envelope-o:before {
  content: "\f003";
}
.fa-heart:before {
  content: "\f004";
}
.fa-star:before {
  content: "\f005";
}
.fa-star-o:before {
  content: "\f006";
}
.fa-user:before {
  content: "\f007";
}
.fa-film:before {
  content: "\f008";
}
.fa-th-large:before {
  content: "\f009";
}
.fa-th:before {
  content: "\f00a";
}
.fa-th-list:before {
  content: "\f00b";
}
.fa-check:before {
  content: "\f00c";
}
.fa-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-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 {
  content: "\f080";
}
.fa-twitter-square:before {
  content: "\f081";
}
.fa-facebook-square:before {
  content: "\f082";
}
.fa-camera-retro:before {
  content: "\f083";
}
.fa-key:before {
  content: "\f084";
}
.fa-gears:before,
.fa-cogs:before {
  content: "\f085";
}
.fa-comments:before {
  content: "\f086";
}
.fa-thumbs-o-up:before {
  content: "\f087";
}
.fa-thumbs-o-down:before {
  content: "\f088";
}
.fa-star-half:before {
  content: "\f089";
}
.fa-heart-o:before {
  content: "\f08a";
}
.fa-sign-out:before {
  content: "\f08b";
}
.fa-linkedin-square:before {
  content: "\f08c";
}
.fa-thumb-tack:before {
  content: "\f08d";
}
.fa-external-link:before {
  content: "\f08e";
}
.fa-sign-in:before {
  content: "\f090";
}
.fa-trophy:before {
  content: "\f091";
}
.fa-github-square:before {
  content: "\f092";
}
.fa-upload:before {
  content: "\f093";
}
.fa-lemon-o:before {
  content: "\f094";
}
.fa-phone:before {
  content: "\f095";
}
.fa-square-o:before {
  content: "\f096";
}
.fa-bookmark-o:before {
  content: "\f097";
}
.fa-phone-square:before {
  content: "\f098";
}
.fa-twitter:before {
  content: "\f099";
}
.fa-facebook:before {
  content: "\f09a";
}
.fa-github:before {
  content: "\f09b";
}
.fa-unlock:before {
  content: "\f09c";
}
.fa-credit-card:before {
  content: "\f09d";
}
.fa-rss:before {
  content: "\f09e";
}
.fa-hdd-o:before {
  content: "\f0a0";
}
.fa-bullhorn:before {
  content: "\f0a1";
}
.fa-bell:before {
  content: "\f0f3";
}
.fa-certificate:before {
  content: "\f0a3";
}
.fa-hand-o-right:before {
  content: "\f0a4";
}
.fa-hand-o-left:before {
  content: "\f0a5";
}
.fa-hand-o-up:before {
  content: "\f0a6";
}
.fa-hand-o-down:before {
  content: "\f0a7";
}
.fa-arrow-circle-left:before {
  content: "\f0a8";
}
.fa-arrow-circle-right:before {
  content: "\f0a9";
}
.fa-arrow-circle-up:before {
  content: "\f0aa";
}
.fa-arrow-circle-down:before {
  content: "\f0ab";
}
.fa-globe:before {
  content: "\f0ac";
}
.fa-wrench:before {
  content: "\f0ad";
}
.fa-tasks:before {
  content: "\f0ae";
}
.fa-filter:before {
  content: "\f0b0";
}
.fa-briefcase:before {
  content: "\f0b1";
}
.fa-arrows-alt:before {
  content: "\f0b2";
}
.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}
.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}
.fa-cloud:before {
  content: "\f0c2";
}
.fa-flask:before {
  content: "\f0c3";
}
.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}
.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}
.fa-paperclip:before {
  content: "\f0c6";
}
.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7";
}
.fa-square:before {
  content: "\f0c8";
}
.fa-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-asc:before {
  content: "\f0dd";
}
.fa-sort-up:before,
.fa-sort-desc: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-reply-all:before {
  content: "\f122";
}
.fa-mail-reply-all:before {
  content: "\f122";
}
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}
.fa-location-arrow:before {
  content: "\f124";
}
.fa-crop:before {
  content: "\f125";
}
.fa-code-fork:before {
  content: "\f126";
}
.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127";
}
.fa-question:before {
  content: "\f128";
}
.fa-info:before {
  content: "\f129";
}
.fa-exclamation:before {
  content: "\f12a";
}
.fa-superscript:before {
  content: "\f12b";
}
.fa-subscript:before {
  content: "\f12c";
}
.fa-eraser:before {
  content: "\f12d";
}
.fa-puzzle-piece:before {
  content: "\f12e";
}
.fa-microphone:before {
  content: "\f130";
}
.fa-microphone-slash:before {
  content: "\f131";
}
.fa-shield:before {
  content: "\f132";
}
.fa-calendar-o:before {
  content: "\f133";
}
.fa-fire-extinguisher:before {
  content: "\f134";
}
.fa-rocket:before {
  content: "\f135";
}
.fa-maxcdn:before {
  content: "\f136";
}
.fa-chevron-circle-left:before {
  content: "\f137";
}
.fa-chevron-circle-right:before {
  content: "\f138";
}
.fa-chevron-circle-up:before {
  content: "\f139";
}
.fa-chevron-circle-down:before {
  content: "\f13a";
}
.fa-html5:before {
  content: "\f13b";
}
.fa-css3:before {
  content: "\f13c";
}
.fa-anchor:before {
  content: "\f13d";
}
.fa-unlock-alt:before {
  content: "\f13e";
}
.fa-bullseye:before {
  content: "\f140";
}
.fa-ellipsis-h:before {
  content: "\f141";
}
.fa-ellipsis-v:before {
  content: "\f142";
}
.fa-rss-square:before {
  content: "\f143";
}
.fa-play-circle:before {
  content: "\f144";
}
.fa-ticket:before {
  content: "\f145";
}
.fa-minus-square:before {
  content: "\f146";
}
.fa-minus-square-o:before {
  content: "\f147";
}
.fa-level-up:before {
  content: "\f148";
}
.fa-level-down:before {
  content: "\f149";
}
.fa-check-square:before {
  content: "\f14a";
}
.fa-pencil-square:before {
  content: "\f14b";
}
.fa-external-link-square:before {
  content: "\f14c";
}
.fa-share-square:before {
  content: "\f14d";
}
.fa-compass:before {
  content: "\f14e";
}
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150";
}
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151";
}
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152";
}
.fa-euro:before,
.fa-eur:before {
  content: "\f153";
}
.fa-gbp:before {
  content: "\f154";
}
.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}
.fa-rupee:before,
.fa-inr:before {
  content: "\f156";
}
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157";
}
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158";
}
.fa-won:before,
.fa-krw:before {
  content: "\f159";
}
.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}
.fa-file:before {
  content: "\f15b";
}
.fa-file-text:before {
  content: "\f15c";
}
.fa-sort-alpha-asc:before {
  content: "\f15d";
}
.fa-sort-alpha-desc:before {
  content: "\f15e";
}
.fa-sort-amount-asc:before {
  content: "\f160";
}
.fa-sort-amount-desc:before {
  content: "\f161";
}
.fa-sort-numeric-asc:before {
  content: "\f162";
}
.fa-sort-numeric-desc:before {
  content: "\f163";
}
.fa-thumbs-up:before {
  content: "\f164";
}
.fa-thumbs-down:before {
  content: "\f165";
}
.fa-youtube-square:before {
  content: "\f166";
}
.fa-youtube:before {
  content: "\f167";
}
.fa-xing:before {
  content: "\f168";
}
.fa-xing-square:before {
  content: "\f169";
}
.fa-youtube-play:before {
  content: "\f16a";
}
.fa-dropbox:before {
  content: "\f16b";
}
.fa-stack-overflow:before {
  content: "\f16c";
}
.fa-instagram:before {
  content: "\f16d";
}
.fa-flickr:before {
  content: "\f16e";
}
.fa-adn:before {
  content: "\f170";
}
.fa-bitbucket:before {
  content: "\f171";
}
.fa-bitbucket-square:before {
  content: "\f172";
}
.fa-tumblr:before {
  content: "\f173";
}
.fa-tumblr-square:before {
  content: "\f174";
}
.fa-long-arrow-down:before {
  content: "\f175";
}
.fa-long-arrow-up:before {
  content: "\f176";
}
.fa-long-arrow-left:before {
  content: "\f177";
}
.fa-long-arrow-right:before {
  content: "\f178";
}
.fa-apple:before {
  content: "\f179";
}
.fa-windows:before {
  content: "\f17a";
}
.fa-android:before {
  content: "\f17b";
}
.fa-linux:before {
  content: "\f17c";
}
.fa-dribbble:before {
  content: "\f17d";
}
.fa-skype:before {
  content: "\f17e";
}
.fa-foursquare:before {
  content: "\f180";
}
.fa-trello:before {
  content: "\f181";
}
.fa-female:before {
  content: "\f182";
}
.fa-male:before {
  content: "\f183";
}
.fa-gittip:before {
  content: "\f184";
}
.fa-sun-o:before {
  content: "\f185";
}
.fa-moon-o:before {
  content: "\f186";
}
.fa-archive:before {
  content: "\f187";
}
.fa-bug:before {
  content: "\f188";
}
.fa-vk:before {
  content: "\f189";
}
.fa-weibo:before {
  content: "\f18a";
}
.fa-renren:before {
  content: "\f18b";
}
.fa-pagelines:before {
  content: "\f18c";
}
.fa-stack-exchange:before {
  content: "\f18d";
}
.fa-arrow-circle-o-right:before {
  content: "\f18e";
}
.fa-arrow-circle-o-left:before {
  content: "\f190";
}
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191";
}
.fa-dot-circle-o:before {
  content: "\f192";
}
.fa-wheelchair:before {
  content: "\f193";
}
.fa-vimeo-square:before {
  content: "\f194";
}
.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195";
}
.fa-plus-square-o:before {
  content: "\f196";
}
.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
  border-left: none;
}
ul.nav {
  list-style: none;
  padding: 0px;
  margin: 0px;
}
ul.nav li {
  display: inline-block;
  padding: 0px;
  margin: 0px;
}
ul.nav-stacked {
  list-style: none;
  padding: 0px;
  margin: 0px;
}
ul.nav-stacked li {
  display: block;
  padding: 0px;
  margin: 0px;
}
ul.nav-tabs {
  border-bottom: 3px solid #ffc00f;
  position: relative;
}
ul.nav-tabs:hover .active.nav-sub > ul {
  display: none;
}
ul.nav-tabs:hover .nav-sub:hover > ul {
  display: block;
}
ul.nav-tabs > li {
  border-top-right-radius: 7px;
  border-top-left-radius: 7px;
  text-align: center;
  border: 1px solid #c6c6c6;
  border-bottom: 1px solid #ffc00f;
}
ul.nav-tabs > li > a {
  padding: 4px 10px;
}
ul.nav-tabs > li a {
  color: green;
  text-decoration: none;
  font-size: 1em;
  font-weight: bold;
  display: block;
}
ul.nav-tabs > li.active,
ul.nav-tabs > li:hover {
  background: #ffc00f;
}
ul.nav-tabs > li.active a,
ul.nav-tabs > li:hover a {
  color: #fff;
}
ul.nav-tabs > li.nav-sub > ul {
  display: none;
}
ul.nav-tabs > li.active.nav-sub > ul,
ul.nav-tabs > li.nav-sub:hover > ul {
  display: block;
}
ul.nav-tabs > li.active.nav-sub li.active,
ul.nav-tabs > li.nav-sub:hover li.active,
ul.nav-tabs > li.active.nav-sub li:hover,
ul.nav-tabs > li.nav-sub:hover li:hover {
  color: #fff;
}
ul.nav-tabs > li.active.nav-sub li.active a,
ul.nav-tabs > li.nav-sub:hover li.active a,
ul.nav-tabs > li.active.nav-sub li:hover a,
ul.nav-tabs > li.nav-sub:hover li:hover a {
  border-bottom: 2px solid #fff;
}
ul.nav-tabs > li ul {
  left: 0px;
  top: 24px;
  width: 100%;
  list-style: none;
  padding: 0px;
  position: absolute;
  z-index: 999;
  background: #ffc00f;
  text-align: left;
  border-left: 1px solid #c6c6c6;
}
ul.nav-tabs > li ul li {
  display: inline-block;
  padding: 4px 5px;
  margin: 0px;
  border-left: 1px solid #dba200;
}
ul.nav-links {
  list-style: none;
  padding: 0px;
}
ul.nav-links li {
  padding-bottom: 4px;
}
ul.nav-buttons li a {
  display: inline-block;
  margin-bottom: 0;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  text-decoration: none;
  font-weight: normal;
  padding: 3px 10px;
  border-radius: 5px;
  margin: 0px 2px;
}
.nav-horizontal {
  margin: 3px 0px;
}
.asp-nav {
  width: 100%;
  background: #ffc00f;
  font-weight: bold;
}
.asp-nav,
.asp-nav a {
  color: #fff;
}
.asp-nav table {
  margin: 0px;
  width: auto;
}
.asp-nav table tr {
  background: transparent;
}
.asp-nav table td {
  padding: 2px 3px;
}
.nav-links-div a,
.nav-links-div .links {
  padding: 4px;
}
ul.nav-blocks {
  position: relative;
}
ul.nav-blocks > li {
  background: #fff;
  text-align: center;
  border: 1px solid #c6c6c6;
  border-bottom: 1px solid #ffc00f;
  border-bottom-right-radius: 7px;
  border-bottom-left-radius: 7px;
  border-top-right-radius: 7px;
  border-top-left-radius: 7px;
}
ul.nav-blocks > li > a {
  padding: 15px 10px;
}
ul.nav-blocks > li a {
  color: green;
  text-decoration: none;
  font-size: 1em;
  font-weight: bold;
  display: block;
}
ul.nav-blocks > li.active,
ul.nav-blocks > li:hover {
  background: #ffc00f;
  border-right: none;
}
ul.nav-blocks > li.active a,
ul.nav-blocks > li:hover a {
  color: #fff;
}
ul.nav-blocks > li.active.nav-sub {
  margin-bottom: 20px;
}
ul.nav-blocks > li.active.nav-sub li.active {
  color: #fff;
}
ul.nav-blocks > li.active.nav-sub li.active a {
  border-bottom: 2px solid #fff;
}
ul.nav-blocks > li ul {
  left: 0px;
  top: 24px;
  width: 100%;
  list-style: none;
  padding: 0px;
  position: absolute;
  background: #ffc00f;
  text-align: left;
  border-left: 1px solid #c6c6c6;
}
ul.nav-blocks > li ul li {
  display: inline-block;
  padding: 4px 5px;
  margin: 0px;
  border-left: 1px solid #dba200;
}
input[type="text"],
input[type="password"],
input[type="email"],
select,
textarea {
  width: 100%;
  padding: 2px;
}
.input-sm[type="checkbox"] {
  height: 12px;
  width: 12px;
}
.dl-horizontal dt {
  float: left;
  width: 60px;
  clear: left;
  text-align: right;
  font-weight: bold;
  vertical-align: middle;
}
.dl-horizontal dd {
  clear: both;
  margin-left: 80px;
}
.dl-horizontal dd:before,
.dl-horizontal dd:after {
  content: " ";
  display: table;
}
.dl-horizontal dd:after {
  clear: both;
}
.form-group > .input-control,
.form-group > .input-group > .input-control {
  margin: 2px 0px;
}
.form .form-group > label {
  font-weight: bold;
  margin: 2px 2px;
  padding: 4px 0px;
}
.inline-form .form-group {
  display: table;
}
.inline-form .form-group > label {
  display: table-cell;
  vertical-align: top;
  font-weight: bold;
  margin: 2px 2px;
  padding: 4px;
  width: 45px;
  white-space: nowrap;
}
.inline-form .form-group > .input-control {
  display: table-cell;
  width: 100%;
}
.inline-form .form-group > .form-field {
  display: table-cell;
  margin: 2px 2px;
  padding: 4px 0px;
}
.input-control {
  margin: 2px 0px;
}
.inline-form-table {
  display: table;
  width: 100%;
}
.inline-form-table .row > div,
.inline-form-table .form-group {
  display: table;
}
.inline-form-table .row > div > label,
.inline-form-table .form-group > label {
  vertical-align: top;
  display: table-cell;
  font-weight: bold;
  margin: 2px 2px;
  padding: 4px;
  width: 40px;
  white-space: nowrap;
}
.inline-form-table .row > div > .input-control,
.inline-form-table .form-group > .input-control {
  display: table-cell;
  margin: 2px 0px;
  width: 100%;
}
.form-control[disabled],
.input-control[disabled],
.form-control[readonly],
.input-control[readonly],
.form-control.disabled,
.input-control.disabled,
fieldset[disabled] .form-control,
fieldset[disabled] .input-control {
  cursor: not-allowed;
  background-color: #eeeeee;
  opacity: 1;
}
.input-validation-error {
  border-color: #a94442;
}
.box {
  margin-bottom: 10px;
}
.box .box-header {
  background-image: -webkit-linear-gradient(top, #aec732 0%, #819c35 100%);
  background-image: -o-linear-gradient(top, #aec732 0%, #819c35 100%);
  background-image: linear-gradient(to bottom, #aec732 0%, #819c35 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffaec732', endColorstr='#ff819c35', GradientType=0);
  color: #fff;
  padding: 5px;
  border-top-right-radius: 7px;
  border-top-left-radius: 7px;
  font-weight: bold;
}
.box .box-header-active {
  background-image: -webkit-linear-gradient(top, #FFE59E 0%, #ffc00f 100%);
  background-image: -o-linear-gradient(top, #FFE59E 0%, #ffc00f 100%);
  background-image: linear-gradient(to bottom, #FFE59E 0%, #ffc00f 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffe59e', endColorstr='#ffffc00f', GradientType=0);
  color: #0d0d0d;
  padding: 5px;
  border-top-right-radius: 7px;
  border-top-left-radius: 7px;
  font-weight: bold;
}
.box .box-content {
  padding: 5px;
  min-height: 20px;
  width: 100%;
  border: 1px solid #c6c6c6;
}
.box .box-scroller {
  max-height: 100px;
  overflow-y: auto;
}
.box .box-static-scroller {
  height: 100px;
  overflow-y: auto;
}
.box.box-thin .box-header {
  background: #c6c6c6;
  color: black;
  border-radius: 0px;
  border: 1px solid #ffc00f;
  border-bottom: 0px;
}
.box.box-thin .box-content {
  border-color: #ffc00f;
}
.box.box-full {
  background-image: -webkit-linear-gradient(top, #aec732 0%, #819c35 100%);
  background-image: -o-linear-gradient(top, #aec732 0%, #819c35 100%);
  background-image: linear-gradient(to bottom, #aec732 0%, #819c35 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffaec732', endColorstr='#ff819c35', GradientType=0);
  border-top-right-radius: 7px;
  border-top-left-radius: 7px;
}
.box.box-full .box-header {
  background: transparent;
  filter: none;
}
.box.box-full .box-content {
  padding-top: 0px;
  border: 0px;
}
.box .box-nav-stacked a {
  display: block;
}
.treeview table tr {
  background: none;
}
.treeview table > tbody > tr > td {
  width: 20px;
  text-align: left;
}
.treeview table > tbody > tr > td:last-child {
  width: auto;
}
.ajax__calendar .ajax__calendar_container {
  width: 180px;
}
.ajax__calendar .ajax__calendar_body {
  height: 150px;
  width: 174px;
}
@media print {
  * {
    text-shadow: none !important;
    color: #000 !important;
    background: transparent !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    box-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  select {
    background: #fff !important;
  }
  .navbar {
    display: none;
  }
  .table td,
  .table th {
    font-weight: bold;
    background-color: #fff !important;
  }
  .btn > .caret,
  .dropup > .btn > .caret {
    border-top-color: #000 !important;
  }
  label {
    font-weight: bold;
  }
  table {
    border-collapse: collapse !important;
  }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #444 !important;
  }
  input[type=checkbox] {
    border: 1px solid #ddd;
  }
  .header {
    display: none;
  }
}
.visible-print {
  display: none !important;
}
@media print {
  .visible-print {
    display: block !important;
  }
  table.visible-print {
    display: table;
  }
  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;
  }
}
/*!
 * Datepicker for Bootstrap
 *
 * Copyright 2012 Stefan Petre
 * Improvements by Andrew Rowls
 * Licensed under the Apache License v2.0
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 */
.datepicker {
  padding: 4px;
  border-radius: 4px;
  direction: ltr;
}
.datepicker-inline {
  width: 220px;
}
.datepicker.datepicker-rtl {
  direction: rtl;
}
.datepicker.datepicker-rtl table tr td span {
  float: right;
}
.datepicker-dropdown {
  top: 0;
  left: 0;
}
.datepicker-dropdown:before {
  content: '';
  display: inline-block;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #ccc;
  border-top: 0;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  position: absolute;
}
.datepicker-dropdown:after {
  content: '';
  display: inline-block;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  border-top: 0;
  position: absolute;
}
.datepicker-dropdown.datepicker-orient-left:before {
  left: 6px;
}
.datepicker-dropdown.datepicker-orient-left:after {
  left: 7px;
}
.datepicker-dropdown.datepicker-orient-right:before {
  right: 6px;
}
.datepicker-dropdown.datepicker-orient-right:after {
  right: 7px;
}
.datepicker-dropdown.datepicker-orient-top:before {
  top: -7px;
}
.datepicker-dropdown.datepicker-orient-top:after {
  top: -6px;
}
.datepicker-dropdown.datepicker-orient-bottom:before {
  bottom: -7px;
  border-bottom: 0;
  border-top: 7px solid #999;
}
.datepicker-dropdown.datepicker-orient-bottom:after {
  bottom: -6px;
  border-bottom: 0;
  border-top: 6px solid #fff;
}
.datepicker > div {
  display: none;
}
.datepicker.days div.datepicker-days {
  display: block;
}
.datepicker.months div.datepicker-months {
  display: block;
}
.datepicker.years div.datepicker-years {
  display: block;
}
.datepicker table {
  margin: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.datepicker table tr td,
.datepicker table tr th {
  text-align: center;
  width: 30px;
  height: 30px;
  border-radius: 4px;
  border: none;
}
.table-striped .datepicker table tr td,
.table-striped .datepicker table tr th {
  background-color: transparent;
}
.datepicker table tr td.day:hover,
.datepicker table tr td.day.focused {
  background: #eeeeee;
  cursor: pointer;
}
.datepicker table tr td.old,
.datepicker table tr td.new {
  color: #999999;
}
.datepicker table tr td.disabled,
.datepicker table tr td.disabled:hover {
  background: none;
  color: #999999;
  cursor: default;
}
.datepicker table tr td.today,
.datepicker table tr td.today:hover,
.datepicker table tr td.today.disabled,
.datepicker table tr td.today.disabled:hover {
  color: #000000;
  background-color: #ffdb99;
  border-color: #ffb733;
}
.datepicker table tr td.today:hover,
.datepicker table tr td.today:hover:hover,
.datepicker table tr td.today.disabled:hover,
.datepicker table tr td.today.disabled:hover:hover,
.datepicker table tr td.today:focus,
.datepicker table tr td.today:hover:focus,
.datepicker table tr td.today.disabled:focus,
.datepicker table tr td.today.disabled:hover:focus,
.datepicker table tr td.today:active,
.datepicker table tr td.today:hover:active,
.datepicker table tr td.today.disabled:active,
.datepicker table tr td.today.disabled:hover:active,
.datepicker table tr td.today.active,
.datepicker table tr td.today:hover.active,
.datepicker table tr td.today.disabled.active,
.datepicker table tr td.today.disabled:hover.active,
.open .dropdown-toggle.datepicker table tr td.today,
.open .dropdown-toggle.datepicker table tr td.today:hover,
.open .dropdown-toggle.datepicker table tr td.today.disabled,
.open .dropdown-toggle.datepicker table tr td.today.disabled:hover {
  color: #000000;
  background-color: #ffcd70;
  border-color: #f59e00;
}
.datepicker table tr td.today:active,
.datepicker table tr td.today:hover:active,
.datepicker table tr td.today.disabled:active,
.datepicker table tr td.today.disabled:hover:active,
.datepicker table tr td.today.active,
.datepicker table tr td.today:hover.active,
.datepicker table tr td.today.disabled.active,
.datepicker table tr td.today.disabled:hover.active,
.open .dropdown-toggle.datepicker table tr td.today,
.open .dropdown-toggle.datepicker table tr td.today:hover,
.open .dropdown-toggle.datepicker table tr td.today.disabled,
.open .dropdown-toggle.datepicker table tr td.today.disabled:hover {
  background-image: none;
}
.datepicker table tr td.today.disabled,
.datepicker table tr td.today:hover.disabled,
.datepicker table tr td.today.disabled.disabled,
.datepicker table tr td.today.disabled:hover.disabled,
.datepicker table tr td.today[disabled],
.datepicker table tr td.today:hover[disabled],
.datepicker table tr td.today.disabled[disabled],
.datepicker table tr td.today.disabled:hover[disabled],
fieldset[disabled] .datepicker table tr td.today,
fieldset[disabled] .datepicker table tr td.today:hover,
fieldset[disabled] .datepicker table tr td.today.disabled,
fieldset[disabled] .datepicker table tr td.today.disabled:hover,
.datepicker table tr td.today.disabled:hover,
.datepicker table tr td.today:hover.disabled:hover,
.datepicker table tr td.today.disabled.disabled:hover,
.datepicker table tr td.today.disabled:hover.disabled:hover,
.datepicker table tr td.today[disabled]:hover,
.datepicker table tr td.today:hover[disabled]:hover,
.datepicker table tr td.today.disabled[disabled]:hover,
.datepicker table tr td.today.disabled:hover[disabled]:hover,
fieldset[disabled] .datepicker table tr td.today:hover,
fieldset[disabled] .datepicker table tr td.today:hover:hover,
fieldset[disabled] .datepicker table tr td.today.disabled:hover,
fieldset[disabled] .datepicker table tr td.today.disabled:hover:hover,
.datepicker table tr td.today.disabled:focus,
.datepicker table tr td.today:hover.disabled:focus,
.datepicker table tr td.today.disabled.disabled:focus,
.datepicker table tr td.today.disabled:hover.disabled:focus,
.datepicker table tr td.today[disabled]:focus,
.datepicker table tr td.today:hover[disabled]:focus,
.datepicker table tr td.today.disabled[disabled]:focus,
.datepicker table tr td.today.disabled:hover[disabled]:focus,
fieldset[disabled] .datepicker table tr td.today:focus,
fieldset[disabled] .datepicker table tr td.today:hover:focus,
fieldset[disabled] .datepicker table tr td.today.disabled:focus,
fieldset[disabled] .datepicker table tr td.today.disabled:hover:focus,
.datepicker table tr td.today.disabled:active,
.datepicker table tr td.today:hover.disabled:active,
.datepicker table tr td.today.disabled.disabled:active,
.datepicker table tr td.today.disabled:hover.disabled:active,
.datepicker table tr td.today[disabled]:active,
.datepicker table tr td.today:hover[disabled]:active,
.datepicker table tr td.today.disabled[disabled]:active,
.datepicker table tr td.today.disabled:hover[disabled]:active,
fieldset[disabled] .datepicker table tr td.today:active,
fieldset[disabled] .datepicker table tr td.today:hover:active,
fieldset[disabled] .datepicker table tr td.today.disabled:active,
fieldset[disabled] .datepicker table tr td.today.disabled:hover:active,
.datepicker table tr td.today.disabled.active,
.datepicker table tr td.today:hover.disabled.active,
.datepicker table tr td.today.disabled.disabled.active,
.datepicker table tr td.today.disabled:hover.disabled.active,
.datepicker table tr td.today[disabled].active,
.datepicker table tr td.today:hover[disabled].active,
.datepicker table tr td.today.disabled[disabled].active,
.datepicker table tr td.today.disabled:hover[disabled].active,
fieldset[disabled] .datepicker table tr td.today.active,
fieldset[disabled] .datepicker table tr td.today:hover.active,
fieldset[disabled] .datepicker table tr td.today.disabled.active,
fieldset[disabled] .datepicker table tr td.today.disabled:hover.active {
  background-color: #ffdb99;
  border-color: #ffb733;
}
.datepicker table tr td.today:hover:hover {
  color: #000;
}
.datepicker table tr td.today.active:hover {
  color: #fff;
}
.datepicker table tr td.range,
.datepicker table tr td.range:hover,
.datepicker table tr td.range.disabled,
.datepicker table tr td.range.disabled:hover {
  background: #eeeeee;
  border-radius: 0;
}
.datepicker table tr td.range.today,
.datepicker table tr td.range.today:hover,
.datepicker table tr td.range.today.disabled,
.datepicker table tr td.range.today.disabled:hover {
  color: #000000;
  background-color: #f7ca77;
  border-color: #f1a417;
  border-radius: 0;
}
.datepicker table tr td.range.today:hover,
.datepicker table tr td.range.today:hover:hover,
.datepicker table tr td.range.today.disabled:hover,
.datepicker table tr td.range.today.disabled:hover:hover,
.datepicker table tr td.range.today:focus,
.datepicker table tr td.range.today:hover:focus,
.datepicker table tr td.range.today.disabled:focus,
.datepicker table tr td.range.today.disabled:hover:focus,
.datepicker table tr td.range.today:active,
.datepicker table tr td.range.today:hover:active,
.datepicker table tr td.range.today.disabled:active,
.datepicker table tr td.range.today.disabled:hover:active,
.datepicker table tr td.range.today.active,
.datepicker table tr td.range.today:hover.active,
.datepicker table tr td.range.today.disabled.active,
.datepicker table tr td.range.today.disabled:hover.active,
.open .dropdown-toggle.datepicker table tr td.range.today,
.open .dropdown-toggle.datepicker table tr td.range.today:hover,
.open .dropdown-toggle.datepicker table tr td.range.today.disabled,
.open .dropdown-toggle.datepicker table tr td.range.today.disabled:hover {
  color: #000000;
  background-color: #f4bb51;
  border-color: #bf800c;
}
.datepicker table tr td.range.today:active,
.datepicker table tr td.range.today:hover:active,
.datepicker table tr td.range.today.disabled:active,
.datepicker table tr td.range.today.disabled:hover:active,
.datepicker table tr td.range.today.active,
.datepicker table tr td.range.today:hover.active,
.datepicker table tr td.range.today.disabled.active,
.datepicker table tr td.range.today.disabled:hover.active,
.open .dropdown-toggle.datepicker table tr td.range.today,
.open .dropdown-toggle.datepicker table tr td.range.today:hover,
.open .dropdown-toggle.datepicker table tr td.range.today.disabled,
.open .dropdown-toggle.datepicker table tr td.range.today.disabled:hover {
  background-image: none;
}
.datepicker table tr td.range.today.disabled,
.datepicker table tr td.range.today:hover.disabled,
.datepicker table tr td.range.today.disabled.disabled,
.datepicker table tr td.range.today.disabled:hover.disabled,
.datepicker table tr td.range.today[disabled],
.datepicker table tr td.range.today:hover[disabled],
.datepicker table tr td.range.today.disabled[disabled],
.datepicker table tr td.range.today.disabled:hover[disabled],
fieldset[disabled] .datepicker table tr td.range.today,
fieldset[disabled] .datepicker table tr td.range.today:hover,
fieldset[disabled] .datepicker table tr td.range.today.disabled,
fieldset[disabled] .datepicker table tr td.range.today.disabled:hover,
.datepicker table tr td.range.today.disabled:hover,
.datepicker table tr td.range.today:hover.disabled:hover,
.datepicker table tr td.range.today.disabled.disabled:hover,
.datepicker table tr td.range.today.disabled:hover.disabled:hover,
.datepicker table tr td.range.today[disabled]:hover,
.datepicker table tr td.range.today:hover[disabled]:hover,
.datepicker table tr td.range.today.disabled[disabled]:hover,
.datepicker table tr td.range.today.disabled:hover[disabled]:hover,
fieldset[disabled] .datepicker table tr td.range.today:hover,
fieldset[disabled] .datepicker table tr td.range.today:hover:hover,
fieldset[disabled] .datepicker table tr td.range.today.disabled:hover,
fieldset[disabled] .datepicker table tr td.range.today.disabled:hover:hover,
.datepicker table tr td.range.today.disabled:focus,
.datepicker table tr td.range.today:hover.disabled:focus,
.datepicker table tr td.range.today.disabled.disabled:focus,
.datepicker table tr td.range.today.disabled:hover.disabled:focus,
.datepicker table tr td.range.today[disabled]:focus,
.datepicker table tr td.range.today:hover[disabled]:focus,
.datepicker table tr td.range.today.disabled[disabled]:focus,
.datepicker table tr td.range.today.disabled:hover[disabled]:focus,
fieldset[disabled] .datepicker table tr td.range.today:focus,
fieldset[disabled] .datepicker table tr td.range.today:hover:focus,
fieldset[disabled] .datepicker table tr td.range.today.disabled:focus,
fieldset[disabled] .datepicker table tr td.range.today.disabled:hover:focus,
.datepicker table tr td.range.today.disabled:active,
.datepicker table tr td.range.today:hover.disabled:active,
.datepicker table tr td.range.today.disabled.disabled:active,
.datepicker table tr td.range.today.disabled:hover.disabled:active,
.datepicker table tr td.range.today[disabled]:active,
.datepicker table tr td.range.today:hover[disabled]:active,
.datepicker table tr td.range.today.disabled[disabled]:active,
.datepicker table tr td.range.today.disabled:hover[disabled]:active,
fieldset[disabled] .datepicker table tr td.range.today:active,
fieldset[disabled] .datepicker table tr td.range.today:hover:active,
fieldset[disabled] .datepicker table tr td.range.today.disabled:active,
fieldset[disabled] .datepicker table tr td.range.today.disabled:hover:active,
.datepicker table tr td.range.today.disabled.active,
.datepicker table tr td.range.today:hover.disabled.active,
.datepicker table tr td.range.today.disabled.disabled.active,
.datepicker table tr td.range.today.disabled:hover.disabled.active,
.datepicker table tr td.range.today[disabled].active,
.datepicker table tr td.range.today:hover[disabled].active,
.datepicker table tr td.range.today.disabled[disabled].active,
.datepicker table tr td.range.today.disabled:hover[disabled].active,
fieldset[disabled] .datepicker table tr td.range.today.active,
fieldset[disabled] .datepicker table tr td.range.today:hover.active,
fieldset[disabled] .datepicker table tr td.range.today.disabled.active,
fieldset[disabled] .datepicker table tr td.range.today.disabled:hover.active {
  background-color: #f7ca77;
  border-color: #f1a417;
}
.datepicker table tr td.selected,
.datepicker table tr td.selected:hover,
.datepicker table tr td.selected.disabled,
.datepicker table tr td.selected.disabled:hover {
  color: #ffffff;
  background-color: #999999;
  border-color: #555555;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.datepicker table tr td.selected:hover,
.datepicker table tr td.selected:hover:hover,
.datepicker table tr td.selected.disabled:hover,
.datepicker table tr td.selected.disabled:hover:hover,
.datepicker table tr td.selected:focus,
.datepicker table tr td.selected:hover:focus,
.datepicker table tr td.selected.disabled:focus,
.datepicker table tr td.selected.disabled:hover:focus,
.datepicker table tr td.selected:active,
.datepicker table tr td.selected:hover:active,
.datepicker table tr td.selected.disabled:active,
.datepicker table tr td.selected.disabled:hover:active,
.datepicker table tr td.selected.active,
.datepicker table tr td.selected:hover.active,
.datepicker table tr td.selected.disabled.active,
.datepicker table tr td.selected.disabled:hover.active,
.open .dropdown-toggle.datepicker table tr td.selected,
.open .dropdown-toggle.datepicker table tr td.selected:hover,
.open .dropdown-toggle.datepicker table tr td.selected.disabled,
.open .dropdown-toggle.datepicker table tr td.selected.disabled:hover {
  color: #ffffff;
  background-color: #858585;
  border-color: #373737;
}
.datepicker table tr td.selected:active,
.datepicker table tr td.selected:hover:active,
.datepicker table tr td.selected.disabled:active,
.datepicker table tr td.selected.disabled:hover:active,
.datepicker table tr td.selected.active,
.datepicker table tr td.selected:hover.active,
.datepicker table tr td.selected.disabled.active,
.datepicker table tr td.selected.disabled:hover.active,
.open .dropdown-toggle.datepicker table tr td.selected,
.open .dropdown-toggle.datepicker table tr td.selected:hover,
.open .dropdown-toggle.datepicker table tr td.selected.disabled,
.open .dropdown-toggle.datepicker table tr td.selected.disabled:hover {
  background-image: none;
}
.datepicker table tr td.selected.disabled,
.datepicker table tr td.selected:hover.disabled,
.datepicker table tr td.selected.disabled.disabled,
.datepicker table tr td.selected.disabled:hover.disabled,
.datepicker table tr td.selected[disabled],
.datepicker table tr td.selected:hover[disabled],
.datepicker table tr td.selected.disabled[disabled],
.datepicker table tr td.selected.disabled:hover[disabled],
fieldset[disabled] .datepicker table tr td.selected,
fieldset[disabled] .datepicker table tr td.selected:hover,
fieldset[disabled] .datepicker table tr td.selected.disabled,
fieldset[disabled] .datepicker table tr td.selected.disabled:hover,
.datepicker table tr td.selected.disabled:hover,
.datepicker table tr td.selected:hover.disabled:hover,
.datepicker table tr td.selected.disabled.disabled:hover,
.datepicker table tr td.selected.disabled:hover.disabled:hover,
.datepicker table tr td.selected[disabled]:hover,
.datepicker table tr td.selected:hover[disabled]:hover,
.datepicker table tr td.selected.disabled[disabled]:hover,
.datepicker table tr td.selected.disabled:hover[disabled]:hover,
fieldset[disabled] .datepicker table tr td.selected:hover,
fieldset[disabled] .datepicker table tr td.selected:hover:hover,
fieldset[disabled] .datepicker table tr td.selected.disabled:hover,
fieldset[disabled] .datepicker table tr td.selected.disabled:hover:hover,
.datepicker table tr td.selected.disabled:focus,
.datepicker table tr td.selected:hover.disabled:focus,
.datepicker table tr td.selected.disabled.disabled:focus,
.datepicker table tr td.selected.disabled:hover.disabled:focus,
.datepicker table tr td.selected[disabled]:focus,
.datepicker table tr td.selected:hover[disabled]:focus,
.datepicker table tr td.selected.disabled[disabled]:focus,
.datepicker table tr td.selected.disabled:hover[disabled]:focus,
fieldset[disabled] .datepicker table tr td.selected:focus,
fieldset[disabled] .datepicker table tr td.selected:hover:focus,
fieldset[disabled] .datepicker table tr td.selected.disabled:focus,
fieldset[disabled] .datepicker table tr td.selected.disabled:hover:focus,
.datepicker table tr td.selected.disabled:active,
.datepicker table tr td.selected:hover.disabled:active,
.datepicker table tr td.selected.disabled.disabled:active,
.datepicker table tr td.selected.disabled:hover.disabled:active,
.datepicker table tr td.selected[disabled]:active,
.datepicker table tr td.selected:hover[disabled]:active,
.datepicker table tr td.selected.disabled[disabled]:active,
.datepicker table tr td.selected.disabled:hover[disabled]:active,
fieldset[disabled] .datepicker table tr td.selected:active,
fieldset[disabled] .datepicker table tr td.selected:hover:active,
fieldset[disabled] .datepicker table tr td.selected.disabled:active,
fieldset[disabled] .datepicker table tr td.selected.disabled:hover:active,
.datepicker table tr td.selected.disabled.active,
.datepicker table tr td.selected:hover.disabled.active,
.datepicker table tr td.selected.disabled.disabled.active,
.datepicker table tr td.selected.disabled:hover.disabled.active,
.datepicker table tr td.selected[disabled].active,
.datepicker table tr td.selected:hover[disabled].active,
.datepicker table tr td.selected.disabled[disabled].active,
.datepicker table tr td.selected.disabled:hover[disabled].active,
fieldset[disabled] .datepicker table tr td.selected.active,
fieldset[disabled] .datepicker table tr td.selected:hover.active,
fieldset[disabled] .datepicker table tr td.selected.disabled.active,
fieldset[disabled] .datepicker table tr td.selected.disabled:hover.active {
  background-color: #999999;
  border-color: #555555;
}
.datepicker table tr td.active,
.datepicker table tr td.active:hover,
.datepicker table tr td.active.disabled,
.datepicker table tr td.active.disabled:hover {
  color: #ffffff;
  background-color: #428bca;
  border-color: #357ebd;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.datepicker table tr td.active:hover,
.datepicker table tr td.active:hover:hover,
.datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active.disabled:hover:hover,
.datepicker table tr td.active:focus,
.datepicker table tr td.active:hover:focus,
.datepicker table tr td.active.disabled:focus,
.datepicker table tr td.active.disabled:hover:focus,
.datepicker table tr td.active:active,
.datepicker table tr td.active:hover:active,
.datepicker table tr td.active.disabled:active,
.datepicker table tr td.active.disabled:hover:active,
.datepicker table tr td.active.active,
.datepicker table tr td.active:hover.active,
.datepicker table tr td.active.disabled.active,
.datepicker table tr td.active.disabled:hover.active,
.open .dropdown-toggle.datepicker table tr td.active,
.open .dropdown-toggle.datepicker table tr td.active:hover,
.open .dropdown-toggle.datepicker table tr td.active.disabled,
.open .dropdown-toggle.datepicker table tr td.active.disabled:hover {
  color: #ffffff;
  background-color: #3276b1;
  border-color: #285e8e;
}
.datepicker table tr td.active:active,
.datepicker table tr td.active:hover:active,
.datepicker table tr td.active.disabled:active,
.datepicker table tr td.active.disabled:hover:active,
.datepicker table tr td.active.active,
.datepicker table tr td.active:hover.active,
.datepicker table tr td.active.disabled.active,
.datepicker table tr td.active.disabled:hover.active,
.open .dropdown-toggle.datepicker table tr td.active,
.open .dropdown-toggle.datepicker table tr td.active:hover,
.open .dropdown-toggle.datepicker table tr td.active.disabled,
.open .dropdown-toggle.datepicker table tr td.active.disabled:hover {
  background-image: none;
}
.datepicker table tr td.active.disabled,
.datepicker table tr td.active:hover.disabled,
.datepicker table tr td.active.disabled.disabled,
.datepicker table tr td.active.disabled:hover.disabled,
.datepicker table tr td.active[disabled],
.datepicker table tr td.active:hover[disabled],
.datepicker table tr td.active.disabled[disabled],
.datepicker table tr td.active.disabled:hover[disabled],
fieldset[disabled] .datepicker table tr td.active,
fieldset[disabled] .datepicker table tr td.active:hover,
fieldset[disabled] .datepicker table tr td.active.disabled,
fieldset[disabled] .datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active:hover.disabled:hover,
.datepicker table tr td.active.disabled.disabled:hover,
.datepicker table tr td.active.disabled:hover.disabled:hover,
.datepicker table tr td.active[disabled]:hover,
.datepicker table tr td.active:hover[disabled]:hover,
.datepicker table tr td.active.disabled[disabled]:hover,
.datepicker table tr td.active.disabled:hover[disabled]:hover,
fieldset[disabled] .datepicker table tr td.active:hover,
fieldset[disabled] .datepicker table tr td.active:hover:hover,
fieldset[disabled] .datepicker table tr td.active.disabled:hover,
fieldset[disabled] .datepicker table tr td.active.disabled:hover:hover,
.datepicker table tr td.active.disabled:focus,
.datepicker table tr td.active:hover.disabled:focus,
.datepicker table tr td.active.disabled.disabled:focus,
.datepicker table tr td.active.disabled:hover.disabled:focus,
.datepicker table tr td.active[disabled]:focus,
.datepicker table tr td.active:hover[disabled]:focus,
.datepicker table tr td.active.disabled[disabled]:focus,
.datepicker table tr td.active.disabled:hover[disabled]:focus,
fieldset[disabled] .datepicker table tr td.active:focus,
fieldset[disabled] .datepicker table tr td.active:hover:focus,
fieldset[disabled] .datepicker table tr td.active.disabled:focus,
fieldset[disabled] .datepicker table tr td.active.disabled:hover:focus,
.datepicker table tr td.active.disabled:active,
.datepicker table tr td.active:hover.disabled:active,
.datepicker table tr td.active.disabled.disabled:active,
.datepicker table tr td.active.disabled:hover.disabled:active,
.datepicker table tr td.active[disabled]:active,
.datepicker table tr td.active:hover[disabled]:active,
.datepicker table tr td.active.disabled[disabled]:active,
.datepicker table tr td.active.disabled:hover[disabled]:active,
fieldset[disabled] .datepicker table tr td.active:active,
fieldset[disabled] .datepicker table tr td.active:hover:active,
fieldset[disabled] .datepicker table tr td.active.disabled:active,
fieldset[disabled] .datepicker table tr td.active.disabled:hover:active,
.datepicker table tr td.active.disabled.active,
.datepicker table tr td.active:hover.disabled.active,
.datepicker table tr td.active.disabled.disabled.active,
.datepicker table tr td.active.disabled:hover.disabled.active,
.datepicker table tr td.active[disabled].active,
.datepicker table tr td.active:hover[disabled].active,
.datepicker table tr td.active.disabled[disabled].active,
.datepicker table tr td.active.disabled:hover[disabled].active,
fieldset[disabled] .datepicker table tr td.active.active,
fieldset[disabled] .datepicker table tr td.active:hover.active,
fieldset[disabled] .datepicker table tr td.active.disabled.active,
fieldset[disabled] .datepicker table tr td.active.disabled:hover.active {
  background-color: #428bca;
  border-color: #357ebd;
}
.datepicker table tr td span {
  display: block;
  width: 23%;
  height: 54px;
  line-height: 54px;
  float: left;
  margin: 1%;
  cursor: pointer;
  border-radius: 4px;
}
.datepicker table tr td span:hover {
  background: #eeeeee;
}
.datepicker table tr td span.disabled,
.datepicker table tr td span.disabled:hover {
  background: none;
  color: #999999;
  cursor: default;
}
.datepicker table tr td span.active,
.datepicker table tr td span.active:hover,
.datepicker table tr td span.active.disabled,
.datepicker table tr td span.active.disabled:hover {
  color: #ffffff;
  background-color: #428bca;
  border-color: #357ebd;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.datepicker table tr td span.active:hover,
.datepicker table tr td span.active:hover:hover,
.datepicker table tr td span.active.disabled:hover,
.datepicker table tr td span.active.disabled:hover:hover,
.datepicker table tr td span.active:focus,
.datepicker table tr td span.active:hover:focus,
.datepicker table tr td span.active.disabled:focus,
.datepicker table tr td span.active.disabled:hover:focus,
.datepicker table tr td span.active:active,
.datepicker table tr td span.active:hover:active,
.datepicker table tr td span.active.disabled:active,
.datepicker table tr td span.active.disabled:hover:active,
.datepicker table tr td span.active.active,
.datepicker table tr td span.active:hover.active,
.datepicker table tr td span.active.disabled.active,
.datepicker table tr td span.active.disabled:hover.active,
.open .dropdown-toggle.datepicker table tr td span.active,
.open .dropdown-toggle.datepicker table tr td span.active:hover,
.open .dropdown-toggle.datepicker table tr td span.active.disabled,
.open .dropdown-toggle.datepicker table tr td span.active.disabled:hover {
  color: #ffffff;
  background-color: #3276b1;
  border-color: #285e8e;
}
.datepicker table tr td span.active:active,
.datepicker table tr td span.active:hover:active,
.datepicker table tr td span.active.disabled:active,
.datepicker table tr td span.active.disabled:hover:active,
.datepicker table tr td span.active.active,
.datepicker table tr td span.active:hover.active,
.datepicker table tr td span.active.disabled.active,
.datepicker table tr td span.active.disabled:hover.active,
.open .dropdown-toggle.datepicker table tr td span.active,
.open .dropdown-toggle.datepicker table tr td span.active:hover,
.open .dropdown-toggle.datepicker table tr td span.active.disabled,
.open .dropdown-toggle.datepicker table tr td span.active.disabled:hover {
  background-image: none;
}
.datepicker table tr td span.active.disabled,
.datepicker table tr td span.active:hover.disabled,
.datepicker table tr td span.active.disabled.disabled,
.datepicker table tr td span.active.disabled:hover.disabled,
.datepicker table tr td span.active[disabled],
.datepicker table tr td span.active:hover[disabled],
.datepicker table tr td span.active.disabled[disabled],
.datepicker table tr td span.active.disabled:hover[disabled],
fieldset[disabled] .datepicker table tr td span.active,
fieldset[disabled] .datepicker table tr td span.active:hover,
fieldset[disabled] .datepicker table tr td span.active.disabled,
fieldset[disabled] .datepicker table tr td span.active.disabled:hover,
.datepicker table tr td span.active.disabled:hover,
.datepicker table tr td span.active:hover.disabled:hover,
.datepicker table tr td span.active.disabled.disabled:hover,
.datepicker table tr td span.active.disabled:hover.disabled:hover,
.datepicker table tr td span.active[disabled]:hover,
.datepicker table tr td span.active:hover[disabled]:hover,
.datepicker table tr td span.active.disabled[disabled]:hover,
.datepicker table tr td span.active.disabled:hover[disabled]:hover,
fieldset[disabled] .datepicker table tr td span.active:hover,
fieldset[disabled] .datepicker table tr td span.active:hover:hover,
fieldset[disabled] .datepicker table tr td span.active.disabled:hover,
fieldset[disabled] .datepicker table tr td span.active.disabled:hover:hover,
.datepicker table tr td span.active.disabled:focus,
.datepicker table tr td span.active:hover.disabled:focus,
.datepicker table tr td span.active.disabled.disabled:focus,
.datepicker table tr td span.active.disabled:hover.disabled:focus,
.datepicker table tr td span.active[disabled]:focus,
.datepicker table tr td span.active:hover[disabled]:focus,
.datepicker table tr td span.active.disabled[disabled]:focus,
.datepicker table tr td span.active.disabled:hover[disabled]:focus,
fieldset[disabled] .datepicker table tr td span.active:focus,
fieldset[disabled] .datepicker table tr td span.active:hover:focus,
fieldset[disabled] .datepicker table tr td span.active.disabled:focus,
fieldset[disabled] .datepicker table tr td span.active.disabled:hover:focus,
.datepicker table tr td span.active.disabled:active,
.datepicker table tr td span.active:hover.disabled:active,
.datepicker table tr td span.active.disabled.disabled:active,
.datepicker table tr td span.active.disabled:hover.disabled:active,
.datepicker table tr td span.active[disabled]:active,
.datepicker table tr td span.active:hover[disabled]:active,
.datepicker table tr td span.active.disabled[disabled]:active,
.datepicker table tr td span.active.disabled:hover[disabled]:active,
fieldset[disabled] .datepicker table tr td span.active:active,
fieldset[disabled] .datepicker table tr td span.active:hover:active,
fieldset[disabled] .datepicker table tr td span.active.disabled:active,
fieldset[disabled] .datepicker table tr td span.active.disabled:hover:active,
.datepicker table tr td span.active.disabled.active,
.datepicker table tr td span.active:hover.disabled.active,
.datepicker table tr td span.active.disabled.disabled.active,
.datepicker table tr td span.active.disabled:hover.disabled.active,
.datepicker table tr td span.active[disabled].active,
.datepicker table tr td span.active:hover[disabled].active,
.datepicker table tr td span.active.disabled[disabled].active,
.datepicker table tr td span.active.disabled:hover[disabled].active,
fieldset[disabled] .datepicker table tr td span.active.active,
fieldset[disabled] .datepicker table tr td span.active:hover.active,
fieldset[disabled] .datepicker table tr td span.active.disabled.active,
fieldset[disabled] .datepicker table tr td span.active.disabled:hover.active {
  background-color: #428bca;
  border-color: #357ebd;
}
.datepicker table tr td span.old,
.datepicker table tr td span.new {
  color: #999999;
}
.datepicker th.datepicker-switch {
  width: 145px;
}
.datepicker thead tr:first-child th,
.datepicker tfoot tr th {
  cursor: pointer;
}
.datepicker thead tr:first-child th:hover,
.datepicker tfoot tr th:hover {
  background: #eeeeee;
}
.datepicker .cw {
  font-size: 10px;
  width: 12px;
  padding: 0 2px 0 5px;
  vertical-align: middle;
}
.datepicker thead tr:first-child th.cw {
  cursor: default;
  background-color: transparent;
}
.input-group.date .input-group-addon i {
  cursor: pointer;
}
.input-daterange input {
  text-align: center;
}
.input-daterange input:first-child {
  border-radius: 3px 0 0 3px;
}
.input-daterange input:last-child {
  border-radius: 0 3px 3px 0;
}
.input-daterange .input-group-addon {
  width: auto;
  min-width: 16px;
  padding: 4px 5px;
  font-weight: normal;
  line-height: 1.42857143;
  text-align: center;
  text-shadow: 0 1px 0 #fff;
  vertical-align: middle;
  background-color: #eeeeee;
  border: solid #cccccc;
  border-width: 1px 0;
  margin-left: -5px;
  margin-right: -5px;
}
.datepicker.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1100;
  float: left;
  display: none;
  min-width: 160px;
  list-style: none;
  background-color: #ffffff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  *border-right-width: 2px;
  *border-bottom-width: 2px;
  color: #333333;
  font-size: 13px;
  line-height: 1.42857143;
}
.datepicker.dropdown-menu th,
.datepicker.datepicker-inline th,
.datepicker.dropdown-menu td,
.datepicker.datepicker-inline td {
  padding: 0px 5px;
}
.datepicker table {
  margin: 0px;
}
.datepicker table th {
  color: black;
  background: #FFF !important;
}
.datepicker table,
.datepicker table > tbody > tr {
  background: transparent !important;
}
/*
IMPORTANT:
In order to preserve the uniform grid appearance, all cell styles need to have padding, margin and border sizes.
No built-in (selected, editable, highlight, flashing, invalid, loading, :focus) or user-specified CSS
classes should alter those!
*/
.slick-header.ui-state-default,
.slick-headerrow.ui-state-default,
.slick-footerrow.ui-state-default,
.slick-top-panel-scroller.ui-state-default,
.slick-group-header.ui-state-default {
  width: 100%;
  overflow: auto;
  position: relative;
  border-left: 0px !important;
}
.slick-header.ui-state-default {
  overflow: inherit;
}
.slick-header::-webkit-scrollbar,
.slick-headerrow::-webkit-scrollbar,
.slick-footerrow::-webkit-scrollbar {
  display: none;
}
.slick-header-columns,
.slick-headerrow-columns,
.slick-footerrow-columns,
.slick-group-header-columns {
  position: relative;
  white-space: nowrap;
  cursor: default;
  overflow: hidden;
}
.slick-header-column.ui-state-default,
.slick-group-header-column.ui-state-default {
  position: relative;
  display: inline-block;
  box-sizing: content-box !important;
  /* this here only for Firefox! */
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  height: 16px;
  line-height: 16px;
  margin: 0;
  padding: 4px;
  border-right: 1px solid silver;
  border-left: 0px !important;
  border-top: 0px !important;
  border-bottom: 0px !important;
  float: left;
}
.slick-footerrow-column.ui-state-default {
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  margin: 0;
  padding: 4px;
  border-right: 1px solid silver;
  border-left: 0px;
  border-top: 0px;
  border-bottom: 0px;
  float: left;
  line-height: 20px;
  vertical-align: middle;
}
.slick-headerrow-column.ui-state-default,
.slick-footerrow-column.ui-state-default {
  padding: 4px;
}
.slick-header-column-sorted {
  font-style: italic;
}
.slick-sort-indicator {
  display: inline-block;
  width: 8px;
  height: 5px;
  margin-left: 4px;
  margin-top: 6px;
  float: left;
}
.slick-sort-indicator-numbered {
  display: inline-block;
  width: 8px;
  height: 5px;
  margin-left: 4px;
  margin-top: 0;
  line-height: 20px;
  float: left;
  font-family: Arial;
  font-style: normal;
  font-weight: bold;
  color: #6190CD;
}
.slick-sort-indicator-desc {
  background: url(/App_Themes/images/sort-desc.gif);
}
.slick-sort-indicator-asc {
  background: url(/App_Themes/images/sort-asc.gif);
}
.slick-resizable-handle {
  position: absolute;
  font-size: 0.1px;
  display: block;
  cursor: col-resize;
  width: 9px;
  right: -5px;
  top: 0;
  height: 100%;
  z-index: 1;
}
.slick-sortable-placeholder {
  background: silver;
}
.grid-canvas {
  position: relative;
  outline: 0;
}
.slick-row.ui-widget-content,
.slick-row.ui-state-active {
  position: absolute;
  border: 0px;
  width: 100%;
}
.slick-cell,
.slick-headerrow-column,
.slick-footerrow-column {
  position: absolute;
  border: 1px solid transparent;
  border-right: 1px dotted silver;
  border-bottom-color: silver;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  vertical-align: middle;
  z-index: 1;
  padding: 1px 2px 2px 1px;
  margin: 0;
  white-space: nowrap;
  cursor: default;
}
.slick-cell,
.slick-headerrow-column {
  border-bottom-color: silver;
}
.slick-footerrow-column {
  border-top-color: silver;
}
.slick-group-toggle {
  display: inline-block;
}
.slick-cell.highlighted {
  background: lightskyblue;
  background: rgba(0, 0, 255, 0.2);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.slick-cell.flashing {
  border: 1px solid red !important;
}
.slick-cell.editable {
  z-index: 11;
  overflow: visible;
  background: white;
  border-color: black;
  border-style: solid;
}
.slick-cell:focus {
  outline: none;
}
.slick-reorder-proxy {
  display: inline-block;
  background: blue;
  opacity: 0.15;
  cursor: move;
}
.slick-reorder-guide {
  display: inline-block;
  height: 2px;
  background: blue;
  opacity: 0.7;
}
.slick-reorder-shadow-row {
  position: absolute;
  z-index: 999999;
  box-shadow: rgb(0 0 0%) 8px 2px 8px 4px, rgb(0 0 0%) 2px 2px 0px 0px;
}
.slick-selection {
  z-index: 10;
  position: absolute;
  border: 2px dashed black;
}
.slick-pane {
  position: absolute;
  outline: 0;
  overflow: hidden;
  width: 100%;
}
.slick-pane-header {
  display: block;
}
.slick-header {
  overflow: hidden;
  position: relative;
}
.slick-headerrow {
  overflow: hidden;
  position: relative;
}
.slick-top-panel-scroller {
  overflow: hidden;
  position: relative;
}
.slick-top-panel {
  width: 10000px;
}
.slick-viewport {
  position: relative;
  outline: 0;
  width: 100%;
}
.slick-columnpicker {
  border: 1px solid #718BB7;
  background: #f0f0f0;
  padding: 6px;
  -moz-box-shadow: 2px 2px 2px silver;
  -webkit-box-shadow: 2px 2px 2px silver;
  box-shadow: 2px 2px 2px silver;
  min-width: 150px;
  cursor: default;
  position: absolute;
  z-index: 20;
  overflow: auto;
  resize: both;
}
.slick-columnpicker > .close {
  float: right;
}
.slick-columnpicker .title {
  font-size: 16px;
  width: 60%;
  border-bottom: solid 1px #d6d6d6;
  margin-bottom: 10px;
}
.slick-columnpicker li {
  list-style: none;
  margin: 0;
  padding: 0;
  background: none;
}
.slick-columnpicker input {
  margin: 4px;
}
.slick-columnpicker li a {
  display: block;
  padding: 4px;
  font-weight: bold;
}
.slick-columnpicker li a:hover {
  background: white;
}
/* Excluded item from Column Picker will be hidden */
.slick-columnpicker-list li.hidden {
  display: none;
}
.slick-header .slick-header-column.ui-state-default {
  background: #819c35;
  color: #fff;
  font-weight: normal;
  height: 20px;
  line-height: 20px;
  padding: 0px;
}
.slick-row {
  background: #eeeeee;
}
.slick-row.even {
  background: #fff;
}
.slick-cell input[type="checkbox"],
.slick-header-column input[type="checkbox"] {
  width: 14px;
  height: 14px;
  margin: 1px 2px;
}
.slick-sort-indicator.slick-sort-indicator-asc {
  display: inline-block;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f0dc";
  width: 100px;
  color: white;
  height: 100px;
  background: none;
}
.multiselect-container .form-control,
.multiselect-listbox .form-control {
  position: relative;
  display: table-cell;
  border-collapse: separate;
  padding: 3px 5px;
}
.multiselect-container .form-control[class*="col-"],
.multiselect-listbox .form-control[class*="col-"] {
  float: none;
  padding-left: 0;
  padding-right: 0;
}
.multiselect.dropdown-toggle {
  width: 250px;
  padding: 5px;
  text-overflow: ellipsis;
  overflow: hidden;
}
.multiselect-dropdown {
  padding-bottom: 5px;
}
.multiselect-container li:hover,
.multiselect-container li.active {
  background-color: lightgray;
}
.multiselect-container li > a,
.multiselect-container li > a > label {
  display: inline-block;
  width: 100%;
}
.multiselect-container .btn,
.multiselect-listbox .btn {
  display: inline-block;
  padding: 3px 5px;
  margin-bottom: 0;
  font-size: 14px;
  color: #333;
  text-align: center;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  vertical-align: middle;
  cursor: pointer;
  border-radius: 4px;
}
.multiselect-container .input-group-addon,
.multiselect-listbox .input-group-addon {
  padding: 3px 5px;
  display: table-cell;
}
.multiselect-container.dropdown-menu {
  width: 300px;
  max-height: 200px;
  overflow-x: auto !important;
  white-space: nowrap;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  padding: 5px 0;
  margin: 2px 0 0;
  list-style: none;
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.btn-group.open .btn.dropdown-toggle {
  background-color: #e6e6e6;
}
.open {
  *z-index: 1000;
}
.open > .dropdown-menu {
  display: block;
}
.multiselect-listbox {
  width: 250px;
  overflow-x: auto !important;
  white-space: nowrap;
  z-index: 1000;
  padding: 5px;
  margin: 2px 0 0;
  list-style: none;
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  height: 150px;
  overflow-y: auto;
}
.multiselect-listbox li:hover,
.multiselect-listbox li.active {
  display: block;
  width: 100%;
  background-color: lightgray;
}
.alert {
  padding: 5px;
  margin-bottom: 5px;
  border: 1px solid transparent;
  border-radius: 5px;
}
.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: 25px;
}
.alert-dismissable .close,
.alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}
.alert-success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #3c763d;
}
.alert-success hr {
  border-top-color: #c9e2b3;
}
.alert-success .alert-link {
  color: #2b542c;
}
.alert-info {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #31708f;
}
.alert-info hr {
  border-top-color: #a6e1ec;
}
.alert-info .alert-link {
  color: #245269;
}
.alert-warning {
  background-color: #fcf8e3;
  border-color: #faebcc;
  color: #8a6d3b;
}
.alert-warning hr {
  border-top-color: #f7e1b5;
}
.alert-warning .alert-link {
  color: #66512c;
}
.alert-danger {
  background-color: #f2dede;
  border-color: #ebccd1;
  color: #a94442;
}
.alert-danger hr {
  border-top-color: #e4b9c0;
}
.alert-danger .alert-link {
  color: #843534;
}
.label {
  display: inline;
  padding: 0.2em 0.6em 0.3em;
  font-size: 75%;
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25em;
}
a.label:hover,
a.label:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
.label:empty {
  display: none;
}
.btn .label {
  position: relative;
  top: -1px;
}
.label-default {
  background-color: #999999;
}
.label-default[href]:hover,
.label-default[href]:focus {
  background-color: #808080;
}
.label-primary {
  background-color: #337ab7;
}
.label-primary[href]:hover,
.label-primary[href]:focus {
  background-color: #286090;
}
.label-success {
  background-color: #5cb85c;
}
.label-success[href]:hover,
.label-success[href]:focus {
  background-color: #449d44;
}
.label-info {
  background-color: #5bc0de;
}
.label-info[href]:hover,
.label-info[href]:focus {
  background-color: #31b0d5;
}
.label-warning {
  background-color: #f0ad4e;
}
.label-warning[href]:hover,
.label-warning[href]:focus {
  background-color: #ec971f;
}
.label-danger {
  background-color: #d9534f;
}
.label-danger[href]:hover,
.label-danger[href]:focus {
  background-color: #c9302c;
}
.progress {
  height: 20px;
  margin-bottom: 20px;
  padding: 0;
  overflow: hidden;
  background-color: #f5f5f5;
  border-radius: 4px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  background-image: -webkit-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%);
  background-image: -o-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ebebeb), to(#f5f5f5));
  background-image: linear-gradient(to bottom, #ebebeb 0%, #f5f5f5 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0);
  background-repeat: repeat-x;
}
.progress-bar {
  float: left;
  width: 0;
  height: 100%;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  text-align: center;
  background-color: #337ab7;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  transition: width 0.6s ease;
  background-image: -webkit-linear-gradient(top, #337ab7 0%, #286090 100%);
  background-image: -o-linear-gradient(top, #337ab7 0%, #286090 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#286090));
  background-image: linear-gradient(to bottom, #337ab7 0%, #286090 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff286090', GradientType=0);
  background-repeat: repeat-x;
}
.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 {
  animation: progress-bar-stripes 2s linear infinite;
}
.progress-bar-success {
  background-color: #5cb85c;
}
.progress-striped .progress-bar-success {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-bar-info {
  background-color: #5bc0de;
}
.progress-striped .progress-bar-info {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-bar-warning {
  background-color: #f0ad4e;
}
.progress-striped .progress-bar-warning {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-bar-danger {
  background-color: #d9534f;
}
.progress-striped .progress-bar-danger {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
html,
body {
  padding: 0px;
  margin: 0px;
  height: 100%;
}
.text-nowrap {
  white-space: nowrap;
}
body {
  font-family: 'Lato', arial;
  margin: 5px auto;
  font-size: 12px;
  max-width: 1200px;
  color: #222222;
}
body.popup {
  width: auto;
  padding: 0px 3px;
}
pre {
  font-family: 'Lato', arial;
}
a {
  color: #0d0d0d;
}
.pull-right {
  float: right;
}
.header {
  background-image: -webkit-linear-gradient(top, #9bc135 0%, #4f7c32 100%);
  background-image: -o-linear-gradient(top, #9bc135 0%, #4f7c32 100%);
  background-image: linear-gradient(to bottom, #9bc135 0%, #4f7c32 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff9bc135', endColorstr='#ff4f7c32', GradientType=0);
  border-top-right-radius: 15px;
  border-top-left-radius: 15px;
  padding: 0px 20px 0px 10px;
  line-height: 25px;
  color: #fff;
  vertical-align: bottom;
}
.header img {
  vertical-align: middle;
}
.header .logo {
  font-size: 1.1em;
  font-weight: bold;
  vertical-align: text-top;
}
.header .header-info {
  vertical-align: text-top;
}
.header .link-emphasize {
  text-transform: uppercase;
  color: #fff;
}
.wrapper {
  display: table;
  width: 100%;
  border-left: 1px solid #c6c6c6;
  border-right: 1px solid #c6c6c6;
  padding: 10px 5px;
}
.footer {
  clear: both;
  padding: 10px 10px 5px 10px;
  color: #fff;
  background: #789a3b;
}
.footer:before,
.footer:after {
  content: " ";
  display: table;
}
.footer:after {
  clear: both;
}
.footer .nav {
  display: inline-block;
  vertical-align: middle;
}
.footer .footnote {
  margin-left: 20px;
  display: inline-block;
  font-size: 0.8em;
  vertical-align: middle;
}
.sidebar {
  width: 220px;
  vertical-align: top;
  display: table-cell;
}
.content-wrapper {
  display: table-cell;
  min-height: 500px;
}
.content-wrapper > div {
  margin-left: 5px;
}
.content-wrapper .content {
  min-height: 750px;
  background: #edf0e4;
  border: 1px solid #c6c6c6;
  padding: 5px;
  padding-top: 10px;
}
.list-inline {
  margin: 0;
  padding: 0;
  list-style: none;
}
.list-inline > li {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
}
.list-block {
  margin: 5px;
  list-style: none;
}
.list-block > li {
  display: block;
  padding-left: 5px;
  padding-right: 5px;
}
.current-entity > label {
  float: left;
  width: 75px;
  clear: left;
  font-weight: bold;
  margin: 2px 0px;
}
.current-entity > .input-control {
  clear: both;
  margin: 2px 0px;
  margin-left: 80px;
}
.current-entity > .input-control:before,
.current-entity > .input-control:after {
  content: " ";
  display: table;
}
.current-entity > .input-control:after {
  clear: both;
}
.blood-quantum input,
.blood-quantum select {
  display: inline-block;
  width: 45%;
}
h3 {
  border-bottom: 2px solid #ffc00f;
}
h4 {
  border-bottom: 2px solid #ffc00f;
  margin-bottom: 2px;
}
hr {
  border: 0;
  height: 2px;
  background: #ffc00f;
}
.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;
  visibility: hidden !important;
}
.text-danger {
  color: red;
}
.text-warning {
  color: #8a6d3b;
}
.text-info {
  color: #31708f;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-alert {
  font-size: 14px;
  font-weight: bolder;
}
.bg-primary {
  color: #fff;
  background-color: #337ab7;
}
a.bg-primary:hover,
a.bg-primary:focus {
  background-color: #286090;
}
.bg-success {
  background-color: #dff0d8;
}
a.bg-success:hover,
a.bg-success:focus {
  background-color: #c1e2b3;
}
.bg-info {
  background-color: #d9edf7;
}
a.bg-info:hover,
a.bg-info:focus {
  background-color: #afd9ee;
}
.bg-warning {
  background-color: #fcf8e3;
}
a.bg-warning:hover,
a.bg-warning:focus {
  background-color: #f7ecb5;
}
.bg-danger {
  background-color: #f2dede;
}
a.bg-danger:hover,
a.bg-danger:focus {
  background-color: #e4b9b9;
}
.alerts-list {
  list-style: none;
  color: red;
  padding: 0px;
  margin: 0px;
  max-width: 210px;
}
.alerts-list li {
  word-wrap: break-word;
}
#BankInfoGrid {
  height: 300px;
  max-height: none;
}
#AccountInfoGrid {
  height: 200px;
  max-height: none;
}
#ShareholderCertificates {
  height: 200px;
}
#PaymentsGridView,
#TypeTableEditorGrid,
#RoleObjectGrid {
  height: 390px;
  max-height: none;
}
#PaymentTable {
  height: 320px;
  max-height: none;
}
#MasterDeductions > select,
#ExcludedDistributions > select {
  height: 350px;
}
#PaymentHistoryStatusGrid {
  height: 100px;
  max-height: none;
}
#LiabilityGrid,
#SystemsParamtersGrid {
  height: 500px;
  max-height: none;
}
#LiabilityGrid td,
#SystemsParamtersGrid td,
#LiabilityGrid th,
#SystemsParamtersGrid th {
  white-space: nowrap;
}
#NotesGroupBy {
  margin-top: 40px;
}
#NotesContainer .box .box-content {
  min-height: 450px;
}
#SettlementDatePanel,
#ReturnedMailGrid,
#NameChangeTable {
  height: 100px;
  max-height: none;
  background: #fff;
}
#DocumentsGrid {
  height: 170px;
  max-height: none;
  background: #fff;
}
#EstateCheckList {
  padding: 10px;
  margin: 0px;
}
#EstateCheckList td {
  vertical-align: top;
  padding: 10px;
  border: 1px solid #c6c6c6;
}
#IndividualCandidatesWriteIn,
#Candidates,
#otherProxies {
  height: 120px;
}
#resolutionsTable {
  height: 360px;
}
#ProxyManagementControls {
  margin-top: 50px;
}
#ProxyManagementControls .btn {
  display: block;
  margin: 20px auto;
}
#SecuirtyManagementOptions {
  margin-top: 100px;
}
#SecuirtyManagementOptions .btn {
  margin-top: 20px;
}
#AppliedShareholderDeductions > select {
  height: 150px;
}
#AppliedShareholderDeductionsApply > .btn {
  margin-top: 50px;
}
#AppliedShareholderDeductionsApply > .btn,
#AppliedShareholderDeductionsUnapply > .btn {
  width: 90%;
  margin-left: 5%;
}
#EntityEmailControl span {
  margin: 2px 0px;
}
#EntityAddresses label {
  width: 50px;
}
#EntityOther label {
  width: 80px;
}
#EntityInformation label {
  width: 70px;
}
#EntityShareholder label {
  width: 75px;
}
#am-admin-list {
  padding: 0px 20px;
  height: 550px;
  -webkit-column-count: 3;
  -moz-column-count: 3;
  column-count: 3;
  -webkit-column-gap: 40px;
  -moz-column-gap: 40px;
  column-gap: 40px;
}
#am-admin-list h3 {
  margin-top: 0px;
}
#am-admin-list input {
  margin-right: 3px;
}
#am-admin-list > li {
  -webkit-column-break-inside: avoid;
  -moz-column-break-inside: avoid;
  column-break-inside: avoid;
  margin-bottom: 10px;
}
#am-admin-list > li > ul {
  padding-left: 0px;
}
#am-admin-list a {
  color: #0d0d0d;
}
#am-admin-list,
#am-admin-list ul {
  list-style: none;
}
#loginForm table {
  font-size: 12px;
}
.box.box-sm {
  margin: 100px auto;
  width: 400px;
}
.box-grey .box-content {
  background: #edf0e4;
  text-align: center;
}
.box-grey .box-content .row {
  margin: 8px;
}
.box-grey .box-footer {
  border: 1px solid #c6c6c6;
  border-top: 0px;
  padding: 5px;
}
.version {
  margin-top: 5px;
  font-size: 0.9em;
  text-align: right;
  color: #555555;
}
.version:before {
  content: "Version ";
}
.ajax__calendar_container {
  z-index: 100;
}
.label8ptBold {
  font-size: 8pt;
  font-weight: bold;
}
.clear {
  clear: both;
}
.left {
  float: left;
}
.right {
  float: right;
}
.idLabel {
  margin-left: 120px;
}
.willPanel {
  height: 100px;
  overflow: auto;
  margin-bottom: 12px;
}
.input-group-btn {
  vertical-align: top;
}
.wizard1099 tr {
  background: none;
}
.rptrColumnsPanel_1099 {
  height: 375px;
  width: 350px;
  overflow: auto;
  background: #ffffff;
  border: 1px solid #a9a9a9;
}
.addBtn {
  width: 56px;
  margin-top: 150px;
}
.deleteBtn {
  width: 56px;
}
.liability-status .row,
.liability-split .row,
.approveShares .row {
  margin: 5px 0;
}
.paymentDetails .row,
.certificate .row {
  margin: 7px 0;
}
.completionList {
  list-style: none;
  padding: 0;
  margin: 0;
  overflow: auto;
  background-color: #ffffff;
  max-height: 100px;
}
.am-order {
  margin-top: 5px;
  padding-left: 25px;
}
.am-order:before {
  float: left;
  display: inline-block;
  border-radius: 50%;
  background: green;
  text-align: center;
  vertical-align: middle;
  width: 25px;
  line-height: 25px;
  margin: 0px 2px;
  z-index: 2;
  font-size: 1.2em;
  font-weight: bold;
  color: #FFF;
  margin-left: -25px;
}
.am-order.step-1:before {
  content: "1";
}
.am-order.step-2:before {
  content: "2";
}
.am-order.step-3:before {
  content: "3";
}
.am-order.step-4:before {
  content: "4";
}
.am-order.step-5:before {
  content: "5";
}
.am-order.step-6:before {
  content: "6";
}
.AddItem.btn {
  margin: 2px 3px;
  font-size: 11px;
  padding: 2px 8px;
}
.gvCertificatesToPrint {
  margin: auto;
}
.notesTreeview table {
  table-layout: fixed;
}
.notesTreeview table td {
  word-wrap: break-word;
}
.notesTreeview table td.active a {
  background: #ffc00f;
}
#entityPage_tinRadio {
  margin-left: 10px;
}
#tinRadio {
  margin-left: 5px;
}
input[type="radio"] {
  vertical-align: text-bottom;
  margin-right: 2px;
}
.column {
  display: inline-block;
  vertical-align: top;
  padding-right: 25px;
}
/*.box .box-content table th {
    background: @gray-lighter;
    color: @black;
    font-weight: bold;
}*/
.disabled-control,
.aspNetDisabled {
  background: #eeeeee;
  cursor: not-allowed;
}
#paymentActions {
  margin-top: 15px;
}
.vertical-radio-list .input-group {
  white-space: pre-line;
  margin-bottom: 4px;
}
.grid-text-active {
  color: black;
}
.certificate-status-active {
  background-color: green;
  color: white !important;
  text-align: center;
}
.width-100 {
  width: 100px;
}
.width-110 {
  width: 110px;
}
.white-background {
  background-color: white;
}
div[id$="ReportViewer"] td,
div[id$="ReportViewer"] th {
  padding: 0px 0px;
}
div[id$="ReportViewer"].border-separate td,
div[id$="ReportViewer"].border-separate th {
  border-collapse: separate;
}
div[id$="ReportViewer"].border-separate td:not(:first-child) {
  padding: 2px 2px;
}
.footer-logo {
  float: left;
  font-weight: bold;
  font-size: 1.1em;
}
.message {
  padding-bottom: 5px;
}
.trademark {
  font-weight: normal;
  font-size: 10pt;
}
.report-container {
  max-height: 1000px;
  overflow: auto;
  margin: 5px ;
}
.report-wrapper {
  display: inline-block;
  width: 100%;
  border-left: 1px solid #c6c6c6;
  border-right: 1px solid #c6c6c6;
  padding: 10px 5px;
}
.report-wrapper .row {
  margin-bottom: 5px;
}
.loadMessage {
  margin-left: 50%;
  clear: both;
}
.pad-top-15 {
  padding-top: 15px;
}
.pad-bottom-15 {
  padding-bottom: 15px;
}
.pad-top-10 {
  padding-top: 10px;
}
.pad-bottom-10 {
  padding-bottom: 10px;
}
.pad-top-5 {
  padding-top: 5px;
}
.pad-bottom-5 {
  padding-bottom: 5px;
}
table.table.table-granite th {
  background: #819c35 !important;
  color: #ffffff !important;
  font-weight: normal !important;
}
.alert-high {
  background-color: #ffe8a8;
  border-color: #f58c00;
  color: #cc6600;
}
.alert-high hr {
  border-top-color: #db7d00;
}
.alert-high .alert-link {
  color: #994d00;
}
.alert-medium {
  background-color: #ffffb3;
  border-color: #ffee9a;
  color: #997a00;
}
.alert-medium hr {
  border-top-color: #ffea80;
}
.alert-medium .alert-link {
  color: #665100;
}
.label-medium {
  background-color: yellow;
}
.label-medium[href]:hover,
.label-medium[href]:focus {
  background-color: #cccc00;
}
.note-list {
  list-style: none;
  padding: 0px;
  margin: 0px;
  max-width: 210px;
}
.note-list li {
  padding-bottom: 5px;
  word-wrap: break-word;
}
.note-list .label {
  font-size: 12px;
  font-weight: normal;
  padding: 1px;
}
.equal-width-labels {
  display: table;
}
.equal-width-labels .form-group {
  display: table-row;
}
.equal-width-labels .form-group .label-cell,
.equal-width-labels .form-group .input-control {
  display: table-cell;
}
.form-inline label {
  font-weight: bold;
  /*margin: 2px 2px;*/
  padding: 4px;
  vertical-align: top;
}
label.wrap-text {
  white-space: normal !important;
}
.alert-default {
  background-color: white;
  color: black;
}
.inline-form label.auto-width {
  width: auto;
}
input.twitter-typeahead[disabled] {
  cursor: not-allowed;
  background-color: #eeeeee !important;
  opacity: 1;
}
.fa.btn.fa-btn {
  padding: 5px 10px;
}
.margin-for-fit {
  margin-left: 2px !important;
}
.equal-height-elements .form-group input,
.equal-height-elements .form-group select {
  height: 22px;
  margin-top: 1px;
  margin-bottom: 1px;
}
.inset-border {
  border-style: inset;
  border-color: initial;
  border-width: 2px;
}
input.always-disabled {
  cursor: not-allowed;
  background-color: #eeeeee !important;
  opacity: 1;
}
.modal-window {
  height: 100%;
}
.label-standard {
  font-weight: bold;
}
.btn.btn-wide {
  width: 100px;
}
.nav.link-space > li {
  padding-right: 20px;
}
.nav.link-space > li:last-child {
  padding-right: inherit;
}
.slick-grid-hide-column {
  display: none !important;
}
.row-spacing-sm {
  margin: 2px 0px;
}
.font-weight-bold {
  font-weight: bold;
}
ul.nav.block-dropdown li:hover > ul {
  display: inherit;
}
ul.nav.block-dropdown ul {
  position: absolute;
  z-index: 1000;
  display: none;
  list-style: none;
  padding: 0px;
  background: #ffc00f;
  text-align: left;
}
ul.nav.block-dropdown ul li {
  display: inherit;
  width: 200px;
  padding: 0 5px;
  margin: 0px;
  border-left: 1px solid #dba200;
}
ul.nav.block-dropdown ul li a {
  text-decoration: none;
}
ul.nav.block-dropdown ul li a:hover {
  text-decoration: underline;
}
.required:after {
  content: " *";
  font-weight: bold;
  color: red;
}
.modal-center {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.overlay {
  position: fixed;
  /* Positioning and size */
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(128, 128, 128, 0.5);
  /* color */
  display: none;
  /* making it hidden by default */
}
.no-top-padding {
  padding-top: 0;
  margin-top: 0;
}
.no-bottom-padding {
  padding-bottom: 0;
  margin-bottom: 0;
}
pre {
  white-space: pre-wrap;
  /* css-3 */
  white-space: -moz-pre-wrap;
  /* Mozilla, since 1999 */
  white-space: -pre-wrap;
  /* Opera 4-6 */
  white-space: -o-pre-wrap;
  /* Opera 7 */
  word-wrap: break-word;
  /* Internet Explorer 5.5+ */
}
.text-bold {
  font-weight: bold;
}
.input-group-btn .btn.btn-narrow {
  padding: 6px 1px 4px;
}
.span-vertical-align-middle {
  line-height: 2em;
}
.table.table-header-padding-md th,
.table.table-header-padding-md td {
  padding-right: 10px;
}
.multiselect.dropdown-toggle {
  background-color: white;
  border: solid 1px black;
}
span.twitter-typeahead {
  background-color: transparent;
}

/**
 * Bootstrap Multiselect (https://github.com/davidstutz/bootstrap-multiselect)
 * 
 * Apache License, Version 2.0:
 * Copyright (c) 2012 - 2015 David Stutz
 * 
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
 * use this file except in compliance with the License. You may obtain a
 * copy of the License at http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 * License for the specific language governing permissions and limitations
 * under the License.
 * 
 * BSD 3-Clause License:
 * Copyright (c) 2012 - 2015 David Stutz
 * All rights reserved.
 * 
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *    - Redistributions of source code must retain the above copyright notice,
 *      this list of conditions and the following disclaimer.
 *    - Redistributions in binary form must reproduce the above copyright notice,
 *      this list of conditions and the following disclaimer in the documentation
 *      and/or other materials provided with the distribution.
 *    - Neither the name of David Stutz nor the names of its contributors may be
 *      used to endorse or promote products derived from this software without
 *      specific prior written permission.
 * 
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */
.multiselect-container {
  position: absolute;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.multiselect-container .input-group {
  margin: 5px;
}
.multiselect-container > li {
  padding: 0;
}
.multiselect-container > li > a.multiselect-all label {
  font-weight: bold;
}
.multiselect-container > li.multiselect-group label {
  margin: 0;
  padding: 3px 20px 3px 20px;
  height: 100%;
  font-weight: bold;
}
.multiselect-container > li.multiselect-group-clickable label {
  cursor: pointer;
}
.multiselect-container > li > a {
  padding: 0;
}
.multiselect-container > li > a > label {
  margin: 0;
  height: 100%;
  cursor: pointer;
  font-weight: normal;
  padding: 3px 20px 3px 40px;
}
.multiselect-container > li > a > label.radio,
.multiselect-container > li > a > label.checkbox {
  margin: 0;
}
.multiselect-container > li > a > label > input[type="checkbox"] {
  margin-bottom: 5px;
}
.btn-group > .btn-group:nth-child(2) > .multiselect.btn {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.form-inline .multiselect-container label.checkbox,
.form-inline .multiselect-container label.radio {
  padding: 3px 20px 3px 40px;
}
.form-inline .multiselect-container li a label.checkbox input[type="checkbox"],
.form-inline .multiselect-container li a label.radio input[type="radio"] {
  margin-left: -20px;
  margin-right: 0;
}
