@charset "UTF-8";
.colorpicker {
  width: 204px;
  background-color: white;
  position: absolute;
  padding: 5px;
  color: black;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
  z-index: 1; }
  .colorpicker .colorpicker-table {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
    .colorpicker .colorpicker-table > .colorpicker-separator {
      clear: left;
      float: none;
      width: 1px;
      height: 8px; }
    .colorpicker .colorpicker-table > .colorpicker-palette-end {
      clear: left;
      float: none;
      width: 1px;
      height: 1px; }
    .colorpicker .colorpicker-table > .colorpicker-color {
      width: 16px;
      height: 16px;
      float: left;
      margin-right: 1px;
      margin-bottom: 1px; }
    .colorpicker .colorpicker-table > .colorpicker-color:hover,
    .colorpicker .colorpicker-table > .colorpicker-color.colorpicker-selected {
      margin: -1px 0px 0px -1px;
      border: 1px solid black; }
  .colorpicker .colorpicker-adjustment {
    display: none;
    height: 230px; }
    .colorpicker .colorpicker-adjustment .colorpicker-input {
      clear: left;
      padding-top: 10px; }
      .colorpicker .colorpicker-adjustment .colorpicker-input > input {
        display: block;
        line-height: 18px;
        font-size: 120%;
        width: 95%;
        padding: 4px; }
    .colorpicker .colorpicker-adjustment .colorpicker-sl {
      -webkit-touch-callout: none;
      -webkit-user-select: none;
      -khtml-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
      height: 170px;
      border: 1px solid black;
      background: url("../img/colorpicker-overlay.png");
      overflow: hidden;
      position: relative;
      width: 170px;
      float: left; }
      .colorpicker .colorpicker-adjustment .colorpicker-sl .colorpicker-handle-sl {
        position: absolute;
        height: 16px;
        background: url("../img/colorpicker-controls.png");
        width: 16px;
        background-position: 0px 16px; }
    .colorpicker .colorpicker-adjustment .colorpicker-h {
      -webkit-touch-callout: none;
      -webkit-user-select: none;
      -khtml-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
      height: 170px;
      border: 1px solid black;
      background: url("../img/colorpicker-overlay.png");
      overflow: hidden;
      position: relative;
      background-position: -170px 0px;
      width: 25px;
      float: right; }
      .colorpicker .colorpicker-adjustment .colorpicker-h .colorpicker-handle-h {
        position: absolute;
        height: 16px;
        background: url("../img/colorpicker-controls.png");
        width: 32px; }
  .colorpicker .colorpicker-tabs {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 5px;
    padding-top: 7px; }
    .colorpicker .colorpicker-tabs .colorpicker-tab {
      display: block;
      border: 1px solid transparent;
      border-radius: 4px;
      width: 46%;
      text-align: center;
      padding: 5px 0px;
      float: left;
      text-decoration: none;
      font-weight: normal;
      cursor: pointer;
      color: black;
      margin: 0px 3px; }
      .colorpicker .colorpicker-tabs .colorpicker-tab:hover {
        color: black;
        border: 1px solid rgba(0, 0, 0, 0.4);
        box-shadow: 0 0 3px rgba(0, 0, 0, 0.3); }
      .colorpicker .colorpicker-tabs .colorpicker-tab.colorpicker-selected,
      .colorpicker .colorpicker-tabs .colorpicker-tab.colorpicker-selected:hover {
        border: 1px solid rgba(0, 0, 0, 0.4);
        box-shadow: 0 0 3px rgba(0, 0, 0, 0.3) inset;
        background-color: rgba(0, 0, 0, 0.1);
        cursor: default; }
  .colorpicker .colorpicker-end {
    clear: both; }

.colorpicker-dropdown {
  width: 43px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
  border-radius: 4px;
  position: relative;
  cursor: default;
  background-color: white; }
  .colorpicker-dropdown.colorpicker-wide {
    width: 193px; }
    .colorpicker-dropdown.colorpicker-wide .colorpicker-value {
      width: 178px; }
  .colorpicker-dropdown.colorpicker-selected {
    border: 1px solid rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.3) inset;
    background-color: rgba(0, 0, 0, 0.1); }
    .colorpicker-dropdown.colorpicker-selected .colorpicker-arrow {
      color: black; }
  .colorpicker-dropdown .colorpicker-arrow {
    width: 10px;
    height: 24px;
    position: absolute;
    top: 0px;
    right: 0px;
    color: rgba(0, 0, 0, 0.3);
    font-size: 10px;
    line-height: 24px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .colorpicker-dropdown:hover {
    border: 1px solid rgba(0, 0, 0, 0.6); }
    .colorpicker-dropdown:hover .colorpicker-arrow {
      color: black; }
  .colorpicker-dropdown .colorpicker-value {
    width: 28px;
    height: 18px;
    margin: 2px;
    margin-right: 0px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    overflow: hidden; }
    .colorpicker-dropdown .colorpicker-value span {
      font-size: 13px;
      font-family: Verdana, Arial, sans-serif;
      white-space: nowrap;
      overflow: hidden; }

.display-editor .display-editor-item {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 76px;
  height: 50px;
  float: left;
  text-align: center;
  margin-right: 2px;
  margin-bottom: 2px;
  background-color: white;
  line-height: 1em;
  padding: 1px;
  cursor: pointer; }
  .display-editor .display-editor-item.ui-selected {
    border: 1px solid black;
    padding: 0px; }
  .display-editor .display-editor-item .handle {
    max-height: 50%;
    overflow: hidden;
    font-weight: bold; }

.sequence-editor-items {
  display: inline-block;
  min-height: 16px;
  min-width: 50px; }

.sequence-editor ul {
  box-sizing: border-box;
  width: 98.7%;
  list-style: none;
  padding: 5px;
  border: 1px solid gray;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.5); }
  .sequence-editor ul li {
    margin-right: 3px;
    display: inline-block;
    cursor: grab; }

.sequence-editor-new-item {
  padding: 1px; }
  .sequence-editor-new-item > span {
    width: 28px;
    height: 28px;
    display: block;
    margin-left: auto;
    margin-right: auto; }
  .sequence-editor-new-item p {
    display: block;
    font-size: 80%;
    clear: left;
    text-align: center; }
  .sequence-editor-new-item span.image {
    background: url("../img/service_sequence_items.png") no-repeat; }
  .sequence-editor-new-item.sequence-editor-new-item-queue span.image {
    background-position: 0px 0px; }
  .sequence-editor-new-item.sequence-editor-new-item-operation span.image {
    background-position: -28px 0px; }
  .sequence-editor-new-item.sequence-editor-new-item-workplace span.image {
    background-position: -56px 0px; }
  .sequence-editor-new-item.sequence-editor-new-item-user span.image {
    background-position: -84px 0px; }
  .sequence-editor-new-item.sequence-editor-new-item-and span.image {
    background-position: -112px 0px; }
  .sequence-editor-new-item.sequence-editor-new-item-or span.image {
    background-position: -140px 0px; }
  .sequence-editor-new-item.sequence-editor-new-item-nand span.image {
    background-position: -168px 0px; }
  .sequence-editor-new-item.sequence-editor-new-item-nor span.image {
    background-position: -196px 0px; }
  .sequence-editor-new-item.sequence-editor-new-item-true span.image {
    background-position: -224px 0px; }
  .sequence-editor-new-item.sequence-editor-new-item-false span.image {
    background-position: -252px 0px; }
  .sequence-editor-new-item.sequence-editor-new-item-service_start span.image {
    background-position: -280px 0px; }
  .sequence-editor-new-item.sequence-editor-new-item-service_end span.image {
    background-position: -308px 0px; }
  .sequence-editor-new-item.sequence-editor-new-item-source_dispenser span.image {
    background-position: -336px 0px; }
  .sequence-editor-new-item.sequence-editor-new-item-source_workplace span.image {
    background-position: -364px 0px; }
  .sequence-editor-new-item.sequence-editor-new-item-source_reservation span.image {
    background-position: -392px 0px; }
  .sequence-editor-new-item.sequence-editor-new-item-has_user span.image {
    background-position: -420px 0px; }
  .sequence-editor-new-item.sequence-editor-new-item-has_workplace span.image {
    background-position: -448px 0px; }
  .sequence-editor-new-item.sequence-editor-new-item-assign_user span.image {
    background-position: -84px 0px; }
  .sequence-editor-new-item.sequence-editor-new-item-assign_workplace span.image {
    background-position: -56px 0px; }
  .sequence-editor-new-item:hover {
    border: 1px solid gray;
    padding: 0px; }

.sequence-editor-dragging {
  opacity: 0.33; }

.sequence-editor-item .ui-multiselect.ui-widget {
  width: auto; }

.sequence-editor {
  min-height: 300px;
  overflow: auto; }

.sequence-editor-item {
  display: inline-block;
  border: 1px solid #4c33a0;
  background-color: white;
  padding: 3px;
  margin: 3px;
  cursor: grab;
  vertical-align: top; }

.sequence-editor-item.ui-selected {
  background-color: #827eaa; }

.sequence-editor-item.ui-selected > p.title {
  background-color: #666194; }

.sequence-editor-item p.title {
  background-color: #514d75;
  color: white;
  display: block;
  margin-left: -3px;
  margin-right: -3px;
  margin-top: -3px;
  padding: 3px;
  margin-bottom: 3px;
  text-align: center; }

.sequence-editor-item p.value {
  margin: 0px 14px;
  line-height: 24px; }

/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url("../fonts/fontawesome-webfont.eot?v=4.7.0");
  src: url("../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format("embedded-opentype"), url("../fonts/fontawesome-webfont.woff2?v=4.7.0") format("woff2"), url("../fonts/fontawesome-webfont.woff?v=4.7.0") format("woff"), url("../fonts/fontawesome-webfont.ttf?v=4.7.0") format("truetype"), url("../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal; }

.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

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

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

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

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

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

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

.pull-left {
  float: left; }

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

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

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear; }

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8); }

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg); } }

@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg); } }

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

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

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

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1); }

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1); }

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none; }

.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle; }

.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center; }

.fa-stack-1x {
  line-height: inherit; }

.fa-stack-2x {
  font-size: 2em; }

.fa-inverse {
  color: #ffffff; }

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "\f000"; }

.fa-music:before {
  content: "\f001"; }

.fa-search:before {
  content: "\f002"; }

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

.fa-heart:before {
  content: "\f004"; }

.fa-star:before {
  content: "\f005"; }

.fa-star-o:before {
  content: "\f006"; }

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

.fa-film:before {
  content: "\f008"; }

.fa-th-large:before {
  content: "\f009"; }

.fa-th:before {
  content: "\f00a"; }

.fa-th-list:before {
  content: "\f00b"; }

.fa-check:before {
  content: "\f00c"; }

.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\f00d"; }

.fa-search-plus:before {
  content: "\f00e"; }

.fa-search-minus:before {
  content: "\f010"; }

.fa-power-off:before {
  content: "\f011"; }

.fa-signal:before {
  content: "\f012"; }

.fa-gear:before,
.fa-cog:before {
  content: "\f013"; }

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

.fa-home:before {
  content: "\f015"; }

.fa-file-o:before {
  content: "\f016"; }

.fa-clock-o:before {
  content: "\f017"; }

.fa-road:before {
  content: "\f018"; }

.fa-download:before {
  content: "\f019"; }

.fa-arrow-circle-o-down:before {
  content: "\f01a"; }

.fa-arrow-circle-o-up:before {
  content: "\f01b"; }

.fa-inbox:before {
  content: "\f01c"; }

.fa-play-circle-o:before {
  content: "\f01d"; }

.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e"; }

.fa-refresh:before {
  content: "\f021"; }

.fa-list-alt:before {
  content: "\f022"; }

.fa-lock:before {
  content: "\f023"; }

.fa-flag:before {
  content: "\f024"; }

.fa-headphones:before {
  content: "\f025"; }

.fa-volume-off:before {
  content: "\f026"; }

.fa-volume-down:before {
  content: "\f027"; }

.fa-volume-up:before {
  content: "\f028"; }

.fa-qrcode:before {
  content: "\f029"; }

.fa-barcode:before {
  content: "\f02a"; }

.fa-tag:before {
  content: "\f02b"; }

.fa-tags:before {
  content: "\f02c"; }

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

.fa-bookmark:before {
  content: "\f02e"; }

.fa-print:before {
  content: "\f02f"; }

.fa-camera:before {
  content: "\f030"; }

.fa-font:before {
  content: "\f031"; }

.fa-bold:before {
  content: "\f032"; }

.fa-italic:before {
  content: "\f033"; }

.fa-text-height:before {
  content: "\f034"; }

.fa-text-width:before {
  content: "\f035"; }

.fa-align-left:before {
  content: "\f036"; }

.fa-align-center:before {
  content: "\f037"; }

.fa-align-right:before {
  content: "\f038"; }

.fa-align-justify:before {
  content: "\f039"; }

.fa-list:before {
  content: "\f03a"; }

.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b"; }

.fa-indent:before {
  content: "\f03c"; }

.fa-video-camera:before {
  content: "\f03d"; }

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\f03e"; }

.fa-pencil:before {
  content: "\f040"; }

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

.fa-adjust:before {
  content: "\f042"; }

.fa-tint:before {
  content: "\f043"; }

.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044"; }

.fa-share-square-o:before {
  content: "\f045"; }

.fa-check-square-o:before {
  content: "\f046"; }

.fa-arrows:before {
  content: "\f047"; }

.fa-step-backward:before {
  content: "\f048"; }

.fa-fast-backward:before {
  content: "\f049"; }

.fa-backward:before {
  content: "\f04a"; }

.fa-play:before {
  content: "\f04b"; }

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

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

.fa-forward:before {
  content: "\f04e"; }

.fa-fast-forward:before {
  content: "\f050"; }

.fa-step-forward:before {
  content: "\f051"; }

.fa-eject:before {
  content: "\f052"; }

.fa-chevron-left:before {
  content: "\f053"; }

.fa-chevron-right:before {
  content: "\f054"; }

.fa-plus-circle:before {
  content: "\f055"; }

.fa-minus-circle:before {
  content: "\f056"; }

.fa-times-circle:before {
  content: "\f057"; }

.fa-check-circle:before {
  content: "\f058"; }

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

.fa-info-circle:before {
  content: "\f05a"; }

.fa-crosshairs:before {
  content: "\f05b"; }

.fa-times-circle-o:before {
  content: "\f05c"; }

.fa-check-circle-o:before {
  content: "\f05d"; }

.fa-ban:before {
  content: "\f05e"; }

.fa-arrow-left:before {
  content: "\f060"; }

.fa-arrow-right:before {
  content: "\f061"; }

.fa-arrow-up:before {
  content: "\f062"; }

.fa-arrow-down:before {
  content: "\f063"; }

.fa-mail-forward:before,
.fa-share:before {
  content: "\f064"; }

.fa-expand:before {
  content: "\f065"; }

.fa-compress:before {
  content: "\f066"; }

.fa-plus:before {
  content: "\f067"; }

.fa-minus:before {
  content: "\f068"; }

.fa-asterisk:before {
  content: "\f069"; }

.fa-exclamation-circle:before {
  content: "\f06a"; }

.fa-gift:before {
  content: "\f06b"; }

.fa-leaf:before {
  content: "\f06c"; }

.fa-fire:before {
  content: "\f06d"; }

.fa-eye:before {
  content: "\f06e"; }

.fa-eye-slash:before {
  content: "\f070"; }

.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071"; }

.fa-plane:before {
  content: "\f072"; }

.fa-calendar:before {
  content: "\f073"; }

.fa-random:before {
  content: "\f074"; }

.fa-comment:before {
  content: "\f075"; }

.fa-magnet:before {
  content: "\f076"; }

.fa-chevron-up:before {
  content: "\f077"; }

.fa-chevron-down:before {
  content: "\f078"; }

.fa-retweet:before {
  content: "\f079"; }

.fa-shopping-cart:before {
  content: "\f07a"; }

.fa-folder:before {
  content: "\f07b"; }

.fa-folder-open:before {
  content: "\f07c"; }

.fa-arrows-v:before {
  content: "\f07d"; }

.fa-arrows-h:before {
  content: "\f07e"; }

.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\f080"; }

.fa-twitter-square:before {
  content: "\f081"; }

.fa-facebook-square:before {
  content: "\f082"; }

.fa-camera-retro:before {
  content: "\f083"; }

.fa-key:before {
  content: "\f084"; }

.fa-gears:before,
.fa-cogs:before {
  content: "\f085"; }

.fa-comments:before {
  content: "\f086"; }

.fa-thumbs-o-up:before {
  content: "\f087"; }

.fa-thumbs-o-down:before {
  content: "\f088"; }

.fa-star-half:before {
  content: "\f089"; }

.fa-heart-o:before {
  content: "\f08a"; }

.fa-sign-out:before {
  content: "\f08b"; }

.fa-linkedin-square:before {
  content: "\f08c"; }

.fa-thumb-tack:before {
  content: "\f08d"; }

.fa-external-link:before {
  content: "\f08e"; }

.fa-sign-in:before {
  content: "\f090"; }

.fa-trophy:before {
  content: "\f091"; }

.fa-github-square:before {
  content: "\f092"; }

.fa-upload:before {
  content: "\f093"; }

.fa-lemon-o:before {
  content: "\f094"; }

.fa-phone:before {
  content: "\f095"; }

.fa-square-o:before {
  content: "\f096"; }

.fa-bookmark-o:before {
  content: "\f097"; }

.fa-phone-square:before {
  content: "\f098"; }

.fa-twitter:before {
  content: "\f099"; }

.fa-facebook-f:before,
.fa-facebook:before {
  content: "\f09a"; }

.fa-github:before {
  content: "\f09b"; }

.fa-unlock:before {
  content: "\f09c"; }

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

.fa-feed:before,
.fa-rss:before {
  content: "\f09e"; }

.fa-hdd-o:before {
  content: "\f0a0"; }

.fa-bullhorn:before {
  content: "\f0a1"; }

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

.fa-certificate:before {
  content: "\f0a3"; }

.fa-hand-o-right:before {
  content: "\f0a4"; }

.fa-hand-o-left:before {
  content: "\f0a5"; }

.fa-hand-o-up:before {
  content: "\f0a6"; }

.fa-hand-o-down:before {
  content: "\f0a7"; }

.fa-arrow-circle-left:before {
  content: "\f0a8"; }

.fa-arrow-circle-right:before {
  content: "\f0a9"; }

.fa-arrow-circle-up:before {
  content: "\f0aa"; }

.fa-arrow-circle-down:before {
  content: "\f0ab"; }

.fa-globe:before {
  content: "\f0ac"; }

.fa-wrench:before {
  content: "\f0ad"; }

.fa-tasks:before {
  content: "\f0ae"; }

.fa-filter:before {
  content: "\f0b0"; }

.fa-briefcase:before {
  content: "\f0b1"; }

.fa-arrows-alt:before {
  content: "\f0b2"; }

.fa-group:before,
.fa-users:before {
  content: "\f0c0"; }

.fa-chain:before,
.fa-link:before {
  content: "\f0c1"; }

.fa-cloud:before {
  content: "\f0c2"; }

.fa-flask:before {
  content: "\f0c3"; }

.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4"; }

.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5"; }

.fa-paperclip:before {
  content: "\f0c6"; }

.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7"; }

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

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\f0c9"; }

.fa-list-ul:before {
  content: "\f0ca"; }

.fa-list-ol:before {
  content: "\f0cb"; }

.fa-strikethrough:before {
  content: "\f0cc"; }

.fa-underline:before {
  content: "\f0cd"; }

.fa-table:before {
  content: "\f0ce"; }

.fa-magic:before {
  content: "\f0d0"; }

.fa-truck:before {
  content: "\f0d1"; }

.fa-pinterest:before {
  content: "\f0d2"; }

.fa-pinterest-square:before {
  content: "\f0d3"; }

.fa-google-plus-square:before {
  content: "\f0d4"; }

.fa-google-plus:before {
  content: "\f0d5"; }

.fa-money:before {
  content: "\f0d6"; }

.fa-caret-down:before {
  content: "\f0d7"; }

.fa-caret-up:before {
  content: "\f0d8"; }

.fa-caret-left:before {
  content: "\f0d9"; }

.fa-caret-right:before {
  content: "\f0da"; }

.fa-columns:before {
  content: "\f0db"; }

.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc"; }

.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\f0dd"; }

.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\f0de"; }

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

.fa-linkedin:before {
  content: "\f0e1"; }

.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2"; }

.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3"; }

.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4"; }

.fa-comment-o:before {
  content: "\f0e5"; }

.fa-comments-o:before {
  content: "\f0e6"; }

.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7"; }

.fa-sitemap:before {
  content: "\f0e8"; }

.fa-umbrella:before {
  content: "\f0e9"; }

.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea"; }

.fa-lightbulb-o:before {
  content: "\f0eb"; }

.fa-exchange:before {
  content: "\f0ec"; }

.fa-cloud-download:before {
  content: "\f0ed"; }

.fa-cloud-upload:before {
  content: "\f0ee"; }

.fa-user-md:before {
  content: "\f0f0"; }

.fa-stethoscope:before {
  content: "\f0f1"; }

.fa-suitcase:before {
  content: "\f0f2"; }

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

.fa-coffee:before {
  content: "\f0f4"; }

.fa-cutlery:before {
  content: "\f0f5"; }

.fa-file-text-o:before {
  content: "\f0f6"; }

.fa-building-o:before {
  content: "\f0f7"; }

.fa-hospital-o:before {
  content: "\f0f8"; }

.fa-ambulance:before {
  content: "\f0f9"; }

.fa-medkit:before {
  content: "\f0fa"; }

.fa-fighter-jet:before {
  content: "\f0fb"; }

.fa-beer:before {
  content: "\f0fc"; }

.fa-h-square:before {
  content: "\f0fd"; }

.fa-plus-square:before {
  content: "\f0fe"; }

.fa-angle-double-left:before {
  content: "\f100"; }

.fa-angle-double-right:before {
  content: "\f101"; }

.fa-angle-double-up:before {
  content: "\f102"; }

.fa-angle-double-down:before {
  content: "\f103"; }

.fa-angle-left:before {
  content: "\f104"; }

.fa-angle-right:before {
  content: "\f105"; }

.fa-angle-up:before {
  content: "\f106"; }

.fa-angle-down:before {
  content: "\f107"; }

.fa-desktop:before {
  content: "\f108"; }

.fa-laptop:before {
  content: "\f109"; }

.fa-tablet:before {
  content: "\f10a"; }

.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b"; }

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

.fa-quote-left:before {
  content: "\f10d"; }

.fa-quote-right:before {
  content: "\f10e"; }

.fa-spinner:before {
  content: "\f110"; }

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

.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112"; }

.fa-github-alt:before {
  content: "\f113"; }

.fa-folder-o:before {
  content: "\f114"; }

.fa-folder-open-o:before {
  content: "\f115"; }

.fa-smile-o:before {
  content: "\f118"; }

.fa-frown-o:before {
  content: "\f119"; }

.fa-meh-o:before {
  content: "\f11a"; }

.fa-gamepad:before {
  content: "\f11b"; }

.fa-keyboard-o:before {
  content: "\f11c"; }

.fa-flag-o:before {
  content: "\f11d"; }

.fa-flag-checkered:before {
  content: "\f11e"; }

.fa-terminal:before {
  content: "\f120"; }

.fa-code:before {
  content: "\f121"; }

.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\f122"; }

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123"; }

.fa-location-arrow:before {
  content: "\f124"; }

.fa-crop:before {
  content: "\f125"; }

.fa-code-fork:before {
  content: "\f126"; }

.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127"; }

.fa-question:before {
  content: "\f128"; }

.fa-info:before {
  content: "\f129"; }

.fa-exclamation:before {
  content: "\f12a"; }

.fa-superscript:before {
  content: "\f12b"; }

.fa-subscript:before {
  content: "\f12c"; }

.fa-eraser:before {
  content: "\f12d"; }

.fa-puzzle-piece:before {
  content: "\f12e"; }

.fa-microphone:before {
  content: "\f130"; }

.fa-microphone-slash:before {
  content: "\f131"; }

.fa-shield:before {
  content: "\f132"; }

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

.fa-fire-extinguisher:before {
  content: "\f134"; }

.fa-rocket:before {
  content: "\f135"; }

.fa-maxcdn:before {
  content: "\f136"; }

.fa-chevron-circle-left:before {
  content: "\f137"; }

.fa-chevron-circle-right:before {
  content: "\f138"; }

.fa-chevron-circle-up:before {
  content: "\f139"; }

.fa-chevron-circle-down:before {
  content: "\f13a"; }

.fa-html5:before {
  content: "\f13b"; }

.fa-css3:before {
  content: "\f13c"; }

.fa-anchor:before {
  content: "\f13d"; }

.fa-unlock-alt:before {
  content: "\f13e"; }

.fa-bullseye:before {
  content: "\f140"; }

.fa-ellipsis-h:before {
  content: "\f141"; }

.fa-ellipsis-v:before {
  content: "\f142"; }

.fa-rss-square:before {
  content: "\f143"; }

.fa-play-circle:before {
  content: "\f144"; }

.fa-ticket:before {
  content: "\f145"; }

.fa-minus-square:before {
  content: "\f146"; }

.fa-minus-square-o:before {
  content: "\f147"; }

.fa-level-up:before {
  content: "\f148"; }

.fa-level-down:before {
  content: "\f149"; }

.fa-check-square:before {
  content: "\f14a"; }

.fa-pencil-square:before {
  content: "\f14b"; }

.fa-external-link-square:before {
  content: "\f14c"; }

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

.fa-compass:before {
  content: "\f14e"; }

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150"; }

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151"; }

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152"; }

.fa-euro:before,
.fa-eur:before {
  content: "\f153"; }

.fa-gbp:before {
  content: "\f154"; }

.fa-dollar:before,
.fa-usd:before {
  content: "\f155"; }

.fa-rupee:before,
.fa-inr:before {
  content: "\f156"; }

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157"; }

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158"; }

.fa-won:before,
.fa-krw:before {
  content: "\f159"; }

.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a"; }

.fa-file:before {
  content: "\f15b"; }

.fa-file-text:before {
  content: "\f15c"; }

.fa-sort-alpha-asc:before {
  content: "\f15d"; }

.fa-sort-alpha-desc:before {
  content: "\f15e"; }

.fa-sort-amount-asc:before {
  content: "\f160"; }

.fa-sort-amount-desc:before {
  content: "\f161"; }

.fa-sort-numeric-asc:before {
  content: "\f162"; }

.fa-sort-numeric-desc:before {
  content: "\f163"; }

.fa-thumbs-up:before {
  content: "\f164"; }

.fa-thumbs-down:before {
  content: "\f165"; }

.fa-youtube-square:before {
  content: "\f166"; }

.fa-youtube:before {
  content: "\f167"; }

.fa-xing:before {
  content: "\f168"; }

.fa-xing-square:before {
  content: "\f169"; }

.fa-youtube-play:before {
  content: "\f16a"; }

.fa-dropbox:before {
  content: "\f16b"; }

.fa-stack-overflow:before {
  content: "\f16c"; }

.fa-instagram:before {
  content: "\f16d"; }

.fa-flickr:before {
  content: "\f16e"; }

.fa-adn:before {
  content: "\f170"; }

.fa-bitbucket:before {
  content: "\f171"; }

.fa-bitbucket-square:before {
  content: "\f172"; }

.fa-tumblr:before {
  content: "\f173"; }

.fa-tumblr-square:before {
  content: "\f174"; }

.fa-long-arrow-down:before {
  content: "\f175"; }

.fa-long-arrow-up:before {
  content: "\f176"; }

.fa-long-arrow-left:before {
  content: "\f177"; }

.fa-long-arrow-right:before {
  content: "\f178"; }

.fa-apple:before {
  content: "\f179"; }

.fa-windows:before {
  content: "\f17a"; }

.fa-android:before {
  content: "\f17b"; }

.fa-linux:before {
  content: "\f17c"; }

.fa-dribbble:before {
  content: "\f17d"; }

.fa-skype:before {
  content: "\f17e"; }

.fa-foursquare:before {
  content: "\f180"; }

.fa-trello:before {
  content: "\f181"; }

.fa-female:before {
  content: "\f182"; }

.fa-male:before {
  content: "\f183"; }

.fa-gittip:before,
.fa-gratipay:before {
  content: "\f184"; }

.fa-sun-o:before {
  content: "\f185"; }

.fa-moon-o:before {
  content: "\f186"; }

.fa-archive:before {
  content: "\f187"; }

.fa-bug:before {
  content: "\f188"; }

.fa-vk:before {
  content: "\f189"; }

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

.fa-renren:before {
  content: "\f18b"; }

.fa-pagelines:before {
  content: "\f18c"; }

.fa-stack-exchange:before {
  content: "\f18d"; }

.fa-arrow-circle-o-right:before {
  content: "\f18e"; }

.fa-arrow-circle-o-left:before {
  content: "\f190"; }

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191"; }

.fa-dot-circle-o:before {
  content: "\f192"; }

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

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

.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195"; }

.fa-plus-square-o:before {
  content: "\f196"; }

.fa-space-shuttle:before {
  content: "\f197"; }

.fa-slack:before {
  content: "\f198"; }

.fa-envelope-square:before {
  content: "\f199"; }

.fa-wordpress:before {
  content: "\f19a"; }

.fa-openid:before {
  content: "\f19b"; }

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\f19c"; }

.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\f19d"; }

.fa-yahoo:before {
  content: "\f19e"; }

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

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

.fa-reddit-square:before {
  content: "\f1a2"; }

.fa-stumbleupon-circle:before {
  content: "\f1a3"; }

.fa-stumbleupon:before {
  content: "\f1a4"; }

.fa-delicious:before {
  content: "\f1a5"; }

.fa-digg:before {
  content: "\f1a6"; }

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

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

.fa-drupal:before {
  content: "\f1a9"; }

.fa-joomla:before {
  content: "\f1aa"; }

.fa-language:before {
  content: "\f1ab"; }

.fa-fax:before {
  content: "\f1ac"; }

.fa-building:before {
  content: "\f1ad"; }

.fa-child:before {
  content: "\f1ae"; }

.fa-paw:before {
  content: "\f1b0"; }

.fa-spoon:before {
  content: "\f1b1"; }

.fa-cube:before {
  content: "\f1b2"; }

.fa-cubes:before {
  content: "\f1b3"; }

.fa-behance:before {
  content: "\f1b4"; }

.fa-behance-square:before {
  content: "\f1b5"; }

.fa-steam:before {
  content: "\f1b6"; }

.fa-steam-square:before {
  content: "\f1b7"; }

.fa-recycle:before {
  content: "\f1b8"; }

.fa-automobile:before,
.fa-car:before {
  content: "\f1b9"; }

.fa-cab:before,
.fa-taxi:before {
  content: "\f1ba"; }

.fa-tree:before {
  content: "\f1bb"; }

.fa-spotify:before {
  content: "\f1bc"; }

.fa-deviantart:before {
  content: "\f1bd"; }

.fa-soundcloud:before {
  content: "\f1be"; }

.fa-database:before {
  content: "\f1c0"; }

.fa-file-pdf-o:before {
  content: "\f1c1"; }

.fa-file-word-o:before {
  content: "\f1c2"; }

.fa-file-excel-o:before {
  content: "\f1c3"; }

.fa-file-powerpoint-o:before {
  content: "\f1c4"; }

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\f1c5"; }

.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\f1c6"; }

.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\f1c7"; }

.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\f1c8"; }

.fa-file-code-o:before {
  content: "\f1c9"; }

.fa-vine:before {
  content: "\f1ca"; }

.fa-codepen:before {
  content: "\f1cb"; }

.fa-jsfiddle:before {
  content: "\f1cc"; }

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\f1cd"; }

.fa-circle-o-notch:before {
  content: "\f1ce"; }

.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "\f1d0"; }

.fa-ge:before,
.fa-empire:before {
  content: "\f1d1"; }

.fa-git-square:before {
  content: "\f1d2"; }

.fa-git:before {
  content: "\f1d3"; }

.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "\f1d4"; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fa-buysellads:before {
  content: "\f20d"; }

.fa-connectdevelop:before {
  content: "\f20e"; }

.fa-dashcube:before {
  content: "\f210"; }

.fa-forumbee:before {
  content: "\f211"; }

.fa-leanpub:before {
  content: "\f212"; }

.fa-sellsy:before {
  content: "\f213"; }

.fa-shirtsinbulk:before {
  content: "\f214"; }

.fa-simplybuilt:before {
  content: "\f215"; }

.fa-skyatlas:before {
  content: "\f216"; }

.fa-cart-plus:before {
  content: "\f217"; }

.fa-cart-arrow-down:before {
  content: "\f218"; }

.fa-diamond:before {
  content: "\f219"; }

.fa-ship:before {
  content: "\f21a"; }

.fa-user-secret:before {
  content: "\f21b"; }

.fa-motorcycle:before {
  content: "\f21c"; }

.fa-street-view:before {
  content: "\f21d"; }

.fa-heartbeat:before {
  content: "\f21e"; }

.fa-venus:before {
  content: "\f221"; }

.fa-mars:before {
  content: "\f222"; }

.fa-mercury:before {
  content: "\f223"; }

.fa-intersex:before,
.fa-transgender:before {
  content: "\f224"; }

.fa-transgender-alt:before {
  content: "\f225"; }

.fa-venus-double:before {
  content: "\f226"; }

.fa-mars-double:before {
  content: "\f227"; }

.fa-venus-mars:before {
  content: "\f228"; }

.fa-mars-stroke:before {
  content: "\f229"; }

.fa-mars-stroke-v:before {
  content: "\f22a"; }

.fa-mars-stroke-h:before {
  content: "\f22b"; }

.fa-neuter:before {
  content: "\f22c"; }

.fa-genderless:before {
  content: "\f22d"; }

.fa-facebook-official:before {
  content: "\f230"; }

.fa-pinterest-p:before {
  content: "\f231"; }

.fa-whatsapp:before {
  content: "\f232"; }

.fa-server:before {
  content: "\f233"; }

.fa-user-plus:before {
  content: "\f234"; }

.fa-user-times:before {
  content: "\f235"; }

.fa-hotel:before,
.fa-bed:before {
  content: "\f236"; }

.fa-viacoin:before {
  content: "\f237"; }

.fa-train:before {
  content: "\f238"; }

.fa-subway:before {
  content: "\f239"; }

.fa-medium:before {
  content: "\f23a"; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto; }

* {
  padding: 0;
  margin: 0; }

p, a, td, li, th, span, caption {
  color: #000000; }

:focus {
  outline: 0; }

html {
  height: 100%; }

body {
  padding: 0;
  margin: 0;
  height: 100%;
  background: url("../img/background.jpg") no-repeat center center #ffffff;
  background-size: cover;
  font-family: "Liberation Sans", Arial, Helvetica, sans-serif;
  font-size: 13px;
  padding-left: 10px;
  padding-right: 10px; }
  body .ui-tooltip {
    position: absolute;
    z-index: 3000;
    border: 1px solid #888;
    background-color: #eee;
    padding: 5px;
    box-shadow: -1px 1px 3px rgba(0, 0, 0, 0.3); }

button {
  font-family: "Liberation Sans", Arial, Helvetica, sans-serif; }

a img {
  border: none; }

label {
  margin: 0;
  padding: 0; }

.hidden {
  display: none; }

.clearboth {
  clear: both; }

#container {
  min-width: 900px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  color: #000000;
  overflow: hidden;
  position: relative;
  min-height: 100%; }
  #container .container_padtop {
    padding-top: 10px; }
  #container .container_padbottom {
    padding-bottom: 20px; }

#content_wrapper {
  position: relative;
  z-index: 0;
  padding: 20px;
  color: #000000;
  padding-bottom: 40px;
  position: relative;
  background-color: white;
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid #323232;
  border: 1px solid rgba(50, 50, 50, 0.8);
  border-bottom: none;
  border-top: none; }

#content {
  float: left;
  width: 99.99%;
  background: none;
  clear: none;
  color: #000000;
  overflow: visible;
  padding: 0; }
  #content h1 {
    font-size: 1.5em;
    border-bottom: 1px dotted #4c33a0;
    margin-bottom: 0.5em;
    background: none; }

#header_wrapper {
  border: 1px solid #323232;
  border: 1px solid rgba(50, 50, 50, 0.8);
  border-radius: 16px 16px 0px 0px;
  border-bottom: none;
  background: url("../img/content_background.png") repeat-x;
  position: relative; }

#footer_wrapper {
  position: absolute;
  bottom: 10px;
  width: 100%; }

#header {
  height: 40px;
  position: relative;
  z-index: 0;
  padding: 0; }
  #header > div.header_logo:hover #logo {
    background: url("../img/logo_hover.png") no-repeat; }
    #header > div.header_logo:hover #logo:hover {
      background: url("../img/logo.png") no-repeat; }
  #header > div.header_highlight {
    height: 50px;
    width: 300px;
    right: 0px;
    position: absolute;
    background: url("../img/header_highlight.png") no-repeat;
    border-top-right-radius: 16px; }
  #header a#logout {
    position: absolute;
    right: 0px;
    top: 0px;
    display: block;
    width: 260px;
    padding-top: 3px;
    height: 17px;
    margin-top: 2px;
    margin-right: 10px;
    padding-right: 22px;
    background: url("../img/logout.png") no-repeat top right;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 85%;
    font-weight: bold; }
    #header a#logout span {
      display: none;
      width: 100%;
      text-align: right; }
    #header a#logout:hover {
      background: url("../img/logout.png") no-repeat top right;
      background-position: right -20px; }
      #header a#logout:hover span {
        display: block; }

#logo {
  position: relative;
  float: right;
  right: 32px;
  background: url("../img/logo.png") no-repeat;
  background-position: right top;
  top: 0px; }
  #logo p {
    display: block;
    width: 250px;
    height: 40px;
    margin: 0; }

#menu {
  display: block;
  position: relative;
  z-index: 1;
  text-shadow: #000000 1px 1px 3px;
  background: url("../img/menu_button.png") repeat left top;
  font-family: "Liberation Sans", Arial, Helvetica, sans-serif;
  padding-right: 110px; }
  #menu ul {
    display: block;
    list-style: none;
    margin: 0; }
  #menu li {
    float: left;
    position: relative;
    margin: 0; }
    #menu li:hover {
      background: url("../img/menu_button_hover.png") repeat-x; }
    #menu li span {
      margin-right: 4px; }
    #menu li span.main_button {
      cursor: default; }
    #menu li a:hover {
      color: #ffffff; }
    #menu li .main_button.expandable {
      background: url("../img/menu_exp.png") right center no-repeat;
      padding-right: 12px; }
    #menu li .main_button.selected {
      color: white; }
    #menu li .main_button .icon {
      display: block;
      background: url("../img/menu.png") no-repeat;
      width: 32px;
      height: 32px;
      padding: 0px;
      float: left;
      margin-right: 4px; }
    #menu li a, #menu li .main_button {
      display: block;
      padding-left: 15px;
      padding-right: 15px;
      text-transform: uppercase;
      line-height: 40px;
      text-align: center;
      font-weight: bold;
      text-decoration: none;
      color: #d0d0d0;
      height: 40px;
      z-index: 2;
      position: relative;
      outline: 0; }
    #menu li .main_button {
      font-size: 12px;
      padding-left: 4px;
      padding-right: 4px; }
    #menu li .main_button .icon0 {
      background-position: 0px 0px; }
    #menu li:hover .main_button .icon0 {
      background-position: 0px -32px; }
    #menu li .main_button .icon1 {
      background-position: -32px 0px; }
    #menu li:hover .main_button .icon1 {
      background-position: -32px -32px; }
    #menu li .main_button .icon2 {
      background-position: -64px 0px; }
    #menu li:hover .main_button .icon2 {
      background-position: -64px -32px; }
    #menu li .main_button .icon3 {
      background-position: -96px 0px; }
    #menu li:hover .main_button .icon3 {
      background-position: -96px -32px; }
    #menu li .main_button .icon4 {
      background-position: -128px 0px; }
    #menu li:hover .main_button .icon4 {
      background-position: -128px -32px; }
    #menu li .main_button .icon5 {
      background-position: -160px 0px; }
    #menu li:hover .main_button .icon5 {
      background-position: -160px -32px; }
    #menu li .main_button .icon6 {
      background-position: -192px 0px; }
    #menu li:hover .main_button .icon6 {
      background-position: -192px -32px; }
    #menu li .main_button .icon7 {
      background-position: -224px 0px; }
    #menu li:hover .main_button .icon7 {
      background-position: -224px -32px; }
    #menu li .main_button .icon8 {
      background-position: -256px 0px; }
    #menu li:hover .main_button .icon8 {
      background-position: -256px -32px; }
    #menu li .main_button .icon9 {
      background-position: -288px 0px; }
    #menu li:hover .main_button .icon9 {
      background-position: -288px -32px; }
    #menu li ul {
      display: none;
      position: absolute;
      z-index: 5;
      width: auto;
      margin-top: -6px;
      box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.5);
      background-color: #333;
      border: 4px solid #444; }
      #menu li ul li {
        float: none;
        position: static; }
        #menu li ul li.selected > a {
          background-image: url("../img/main_menu_pointer.png");
          background-repeat: no-repeat;
          color: white; }
      #menu li ul a {
        line-height: 2em;
        font-size: 1em;
        text-align: left;
        display: block;
        padding: 0em 1em;
        margin: 0;
        white-space: nowrap;
        height: auto;
        position: static; }
        #menu li ul a:hover {
          background-color: #000; }
    #menu li:hover ul {
      display: block;
      position: absolute;
      z-index: 5; }

.jstree-default li {
  overflow: hidden; }

.jstree li a {
  line-height: 1.5em; }

.jstree li span {
  line-height: 1.5em;
  font-size: 75%;
  vertical-align: top; }

#footer_decoration {
  background: url("../img/menu_button.png") repeat-x;
  height: 15px;
  border: 1px solid #323232;
  border: 1px solid rgba(50, 50, 50, 0.8);
  border-top: none;
  border-bottom: none; }

#footer_content {
  padding: 5px;
  padding-bottom: 10px;
  border: 1px solid #323232;
  border: 1px solid rgba(50, 50, 50, 0.8);
  border-top: none;
  background-color: #474848;
  border-radius: 0px 0px 13px 13px;
  color: #ffffff;
  font-size: 0.9em;
  text-align: center; }
  #footer_content a, #footer_content p {
    color: #ffffff;
    text-decoration: none; }
  #footer_content a:hover {
    background-color: #343434; }

table {
  border: 0;
  clear: both;
  color: #333;
  width: 100%; }
  table tr {
    font-size: 12px; }
    table tr td {
      padding: 6px;
      text-align: left;
      vertical-align: top;
      border-bottom: 1px solid #ddd; }
    table tr > td span {
      padding-left: 20px; }
    table tr.totals > td {
      border-top: 1px solid #68648D; }
  table th {
    border: 0;
    padding: 4px;
    text-align: left; }
    table th a {
      padding: 0px; }
      table th a.asc {
        padding-left: 12px;
        background-position: left 2px;
        background-repeat: no-repeat;
        background-image: url("../img/sort_asc.png"); }
      table th a.desc {
        padding-left: 12px;
        background-position: left 2px;
        background-repeat: no-repeat;
        background-image: url("../img/sort_desc.png"); }
    table th.center {
      text-align: center; }
  table th.offset, table td.offset {
    padding-left: 3em; }
  table.full_row_active, table.styled_table {
    border-top: 1px solid #68648D;
    border-left: 1px solid #68648D;
    border-bottom: 2px solid #353257;
    border-right: 1px solid #353257;
    border-collapse: collapse;
    padding: 1px;
    background-color: #e8e8e8; }
    table.full_row_active tr.header th, table.styled_table tr.header th {
      background-color: #3b385e;
      border: 1px solid #817db2; }
    table.full_row_active tr.header th[colspan], table.styled_table tr.header th[colspan] {
      background-color: #4f4b7e; }
    table.full_row_active tr.header a, table.full_row_active tr.header th, table.styled_table tr.header a, table.styled_table tr.header th {
      color: white; }
    table.full_row_active tr.totals > td, table.styled_table tr.totals > td {
      background-color: #e0e0e0;
      font-weight: bold; }
    table.full_row_active tr.selected td, table.styled_table tr.selected td {
      background-color: #ccf; }
    table.full_row_active tr.selected:hover td, table.styled_table tr.selected:hover td {
      background-color: #aaf; }

table.full_row_active, table.ticket_information {
  background-color: #e8e8e8; }
  table.full_row_active tr td > a, table.ticket_information tr td > a {
    padding-right: 18px;
    background: url("../img/edit.png") no-repeat;
    background-position: right top; }
  table.full_row_active tr td span.one_line, table.ticket_information tr td span.one_line {
    padding-left: 0px; }

table.full_row_active tr:not(.paging):hover td, table.full_row_active.no_alternation tr:not(.paging):hover td {
  background-color: #414057;
  color: white; }
  table.full_row_active tr:not(.paging):hover td a, table.full_row_active.no_alternation tr:not(.paging):hover td a {
    color: white; }

table.full_row_active div.paging {
  border-radius: 5px 5px 0 0;
  margin-left: auto;
  margin-right: auto; }

table.full_row_active tr.paging td, table.full_row_active tr.paging td > a {
  background: none;
  padding: 0;
  margin: 0;
  border: none; }

table.full_row_active tr td ul.buttons {
  margin-top: 0px;
  margin-bottom: 0px; }
  table.full_row_active tr td ul.buttons li a {
    background: none;
    padding: 5px; }

table.full_row_active tr.last div.paging {
  border-radius: 0 0 5px 5px; }

.data_report_table table {
  border-top: 1px solid #68648D;
  border-left: 1px solid #68648D;
  border-bottom: 2px solid #353257;
  border-right: 1px solid #353257;
  border-collapse: collapse;
  padding: 1px; }
  .data_report_table table tr.header th {
    background-color: #3b385e;
    border-bottom: 1px solid #393381; }
  .data_report_table table tr.header a, .data_report_table table tr.header th {
    color: white; }

div.paging {
  color: #aaa;
  line-height: 1.6em;
  text-align: center;
  background-color: #e8e8e8; }
  div.paging > span, div.paging > a {
    margin-left: 5px;
    margin-right: 5px;
    padding: 0px;
    color: #444; }
    div.paging > span.disabled, div.paging > a.disabled {
      color: #aaa;
      display: inline; }
  div.paging span.current {
    color: #f00; }
  div.paging div.popup > p {
    display: inline; }

div.checkbox_on, div.checkbox_off {
  background: url("../img/checkbox2.png") no-repeat;
  width: 16px;
  height: 16px; }

div.checkbox_on {
  background-position: -16px 0px; }

div.checkbox_off {
  background-position: 0px 0px; }

div.manipulation {
  position: relative;
  width: 100%;
  background: url("../img/manip.png") repeat; }
  div.manipulation > .img {
    float: left;
    margin-top: 8px;
    margin-bottom: 8px;
    width: 24px;
    height: 24px;
    display: block;
    background: url("../img/loading24.gif") no-repeat; }
  div.manipulation ul {
    position: relative;
    list-style: none;
    float: right;
    z-index: 3; }
  div.manipulation li {
    float: left;
    margin-left: 2px;
    margin-right: 2px;
    padding-top: 5px;
    padding-bottom: 5px; }
  div.manipulation div.message {
    position: absolute;
    width: 100%;
    margin: 0px;
    padding: 0px;
    z-index: 0; }
    div.manipulation div.message div {
      padding-top: 4px;
      padding-bottom: 4px; }
    div.manipulation div.message p {
      font-size: 12px;
      line-height: 32px;
      font-weight: bold; }
      div.manipulation div.message p span {
        display: block;
        float: left;
        width: 40px;
        height: 30px; }

div.manipulation li a, div.manipulation li button {
  display: block;
  height: 30px;
  line-height: 30px;
  font-weight: bold;
  text-decoration: none;
  width: 110px;
  color: #fff;
  text-align: center;
  border: none;
  background: url("../img/manip_h.png") no-repeat; }
  div.manipulation li a:hover, div.manipulation li button:hover {
    background: url("../img/manip_hh.png") no-repeat; }
  div.manipulation li a.disabled, div.manipulation li button.disabled {
    background: url("../img/manip_h_disabled.png") no-repeat;
    cursor: default;
    color: #ccc; }

div.manipulation li button {
  width: 110px;
  cursor: pointer; }

div.manipulation div.message {
  background: none; }
  div.manipulation div.message.success p {
    background-color: #e0e0ff; }
    div.manipulation div.message.success p span {
      background: url("../img/success.png") no-repeat;
      background-position: 2px -1px; }
  div.manipulation div.message.error p, div.manipulation div.message.auth p {
    background-color: #ffa0a0; }
    div.manipulation div.message.error p span, div.manipulation div.message.auth p span {
      background: url("../img/error.png") no-repeat;
      background-position: 2px 1px; }

th.narrow, td.narrow {
  width: 1em;
  padding-left: 6px;
  padding-right: 6px;
  white-space: nowrap; }

.frame_outer {
  margin-bottom: 1em;
  margin-right: 2em; }
  .frame_outer h2 {
    padding-left: 0.8em;
    font-weight: bold;
    line-height: 20px;
    height: 24px;
    font-size: 12px;
    width: 100%;
    background: url("../img/legend.png") no-repeat; }

.ui-widget-header:not(.ui-datepicker-header) {
  background: #3b385e;
  border: none;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px; }

.ui-tabs .ui-widget-header .ui-state-default {
  border: none;
  margin-left: 1px;
  background: linear-gradient(#68648D, #312f42); }

.ui-tabs .ui-widget-header .ui-state-active {
  border: none;
  margin-left: 1px;
  background: linear-gradient(white, #e8e8e8); }

.ui-tabs.ui-widget-content {
  border-radius: 5px;
  border: 1px solid #68648D;
  background: #e8e8e8; }

.ui-tabs .ui-tabs-nav {
  padding: 0px;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px; }

.ui-tabs .ui-tabs-nav li.ui-state-active a {
  color: black; }

.ui-tabs .ui-tabs-nav li a {
  padding: 0px 0.8em;
  font-weight: bold;
  line-height: 2em;
  color: #eee; }

.ui-dialog-title, .ui-dialog-title a, .ui-dialog-title a span {
  color: white; }

.ui-tabs {
  padding: 0px; }
  .ui-tabs .ui-tabs-panel {
    margin: 0px;
    padding: 0px; }

.ui-tabs-panel .frame_outer {
  margin: 1em; }
  .ui-tabs-panel .frame_outer h2 {
    background: none;
    padding-left: 0px;
    line-height: 1em; }

.ui-multiselect-header li a span {
  color: white; }

span.direction {
  display: block;
  background: url("../img/direction.png") no-repeat;
  width: 16px;
  height: 16px;
  padding: 0px; }

span.direction0 {
  background-position: 0px 0px; }

span.direction1 {
  background-position: 0px -16px; }

span.direction2 {
  background-position: -16px 0px; }

span.direction3 {
  background-position: -16px -16px; }

span.direction4 {
  background-position: -32px 0px; }

span.direction5 {
  background-position: -32px -16px; }

span.direction6 {
  background-position: -48px 0px; }

span.direction7 {
  background-position: -48px -16px; }

span.direction8 {
  background-position: -64px 0px; }

div.left_half, div.right_half {
  width: 50%;
  overflow: auto; }
  div.left_half > .tabs, div.right_half > .tabs {
    margin: 0.5em 0.5em 1em; }

div.left_half {
  float: left; }

div.right_half {
  float: right; }

div.col-1, div.col-2, div.col-3, div.col-4, div.col-5, div.col-6, div.col-7, div.col-8, div.col-9, div.col-10, div.col-11, div.col-12 {
  min-height: 1px;
  padding-left: 5px;
  padding-right: 5px;
  position: relative;
  box-sizing: border-box;
  float: left; }

div.col-1 {
  width: 8.33333%; }

div.col-2 {
  width: 16.66666%; }

div.col-3 {
  width: 25%; }

div.col-4 {
  width: 33.33333%; }

div.col-5 {
  width: 41.66666%; }

div.col-6 {
  width: 50%; }

div.col-7 {
  width: 58.33333%; }

div.col-8 {
  width: 66.66666%; }

div.col-9 {
  width: 75%; }

div.col-10 {
  width: 83.33333%; }

div.col-11 {
  width: 91.66666%; }

div.col-12 {
  width: 100%; }

form.styled_form .fieldset .fieldset, .dialog .fieldset .fieldset, form.styled_form.second_level_fieldset .ui-tabs-panel .fieldset {
  background: none;
  border: none;
  border-radius: 0px;
  margin: 1em -0.25em 0em -0.25em; }
  form.styled_form .fieldset .fieldset .group_end, .dialog .fieldset .fieldset .group_end, form.styled_form.second_level_fieldset .ui-tabs-panel .fieldset .group_end {
    display: none; }
  form.styled_form .fieldset .fieldset .legend, .dialog .fieldset .fieldset .legend, form.styled_form.second_level_fieldset .ui-tabs-panel .fieldset .legend {
    border-radius: 0px;
    background-color: #4F4B7F;
    line-height: 1.5em; }
  form.styled_form .fieldset .fieldset .spacing, .dialog .fieldset .fieldset .spacing, form.styled_form.second_level_fieldset .ui-tabs-panel .fieldset .spacing {
    height: 0.5em; }

form.styled_form.second_level_fieldset .ui-tabs-panel .fieldset {
  margin: 0.5em 0em 0.5em 0em; }

form.styled_form, .dialog {
  margin: 0;
  padding: 0; }
  form.styled_form.wide_table, .dialog.wide_table {
    overflow: auto; }
  form.styled_form.half_page, .dialog.half_page {
    width: 50%;
    margin: 0px auto; }
  form.styled_form .fieldset, .dialog .fieldset {
    border: none;
    padding: 0px;
    margin: 0.5em;
    margin-bottom: 1em;
    background-color: #e8e8e8;
    border: 1px solid #68648D;
    border-radius: 5px; }
    form.styled_form .fieldset .legend, .dialog .fieldset .legend {
      margin: 0;
      padding: 0;
      padding-left: 0.8em;
      font-weight: bold;
      background-color: #3b385e;
      line-height: 2em;
      border-radius: 3px 3px 0px 0px; }
      form.styled_form .fieldset .legend span, .dialog .fieldset .legend span {
        color: white; }
  form.styled_form .group .paging, .dialog .group .paging {
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    margin: 0; }
  form.styled_form .input_box input, .dialog .input_box input {
    font-size: 14px;
    padding: 2px;
    padding-right: 0px; }
    form.styled_form .input_box input.disabled, .dialog .input_box input.disabled {
      background: #e8e8e8;
      color: #606060; }
    form.styled_form .input_box input[disabled], .dialog .input_box input[disabled] {
      background: #e8e8e8;
      color: #606060; }
  form.styled_form .input, .dialog .input {
    padding-top: 2px;
    padding-bottom: 2px;
    margin-left: 0px;
    margin-right: 0px;
    clear: both;
    padding-left: 6px; }
    form.styled_form .input.checkbox, .dialog .input.checkbox {
      position: relative; }
      form.styled_form .input.checkbox label, .dialog .input.checkbox label {
        padding-left: 20px; }
      form.styled_form .input.checkbox .input_box, .dialog .input.checkbox .input_box {
        position: absolute;
        top: 3px; }
      form.styled_form .input.checkbox.inline, .dialog .input.checkbox.inline {
        float: left;
        clear: none; }
  form.styled_form .input:not(.big_list):hover, .dialog .input:not(.big_list):hover {
    background-color: rgba(0, 0, 0, 0.05); }
  form.styled_form .input:not(.big_list):not(.inline):hover, .dialog .input:not(.big_list):not(.inline):hover {
    border-left: 4px solid #414057;
    margin-left: -4px; }
  form.styled_form .checkbox .input_box input, .dialog .checkbox .input_box input {
    padding: 8px; }
  form.styled_form label, .dialog label {
    font-size: 13px;
    font-family: Verdana,Arial,sans-serif; }
  form.styled_form .input > span, .dialog .input > span {
    display: block;
    clear: both;
    width: 1px;
    height: 1px; }
  form.styled_form .radio input, .dialog .radio input {
    float: left;
    clear: left; }
  form.styled_form .radio .input_box label, .dialog .radio .input_box label {
    display: block;
    float: none;
    clear: none;
    margin-left: 20px;
    width: auto; }
  form.styled_form .radio fieldset, .dialog .radio fieldset {
    font-size: 13px;
    font-family: Verdana,Arial,sans-serif;
    border: 0; }
  form.styled_form .colorInput, .dialog .colorInput {
    display: block;
    width: 5em;
    height: 1.5em;
    border: 1px solid #aaa; }
  form.styled_form .mydatetime .date, .dialog .mydatetime .date {
    width: 10em;
    float: left;
    display: block; }
  form.styled_form .mydatetime .time, .dialog .mydatetime .time {
    width: 8em;
    float: left;
    display: block; }
  form.styled_form textarea, .dialog textarea {
    width: 98%;
    padding: 2px; }
  form.styled_form .fieldset.wide, .dialog .fieldset.wide {
    width: 98%;
    margin-right: 2%; }
  form.styled_form select, .dialog select {
    display: block;
    width: 100%; }
  form.styled_form .font p, .dialog .font p {
    clear: left; }
  form.styled_form .font .colorInput, .dialog .font .colorInput {
    float: left; }
  form.styled_form .font select, form.styled_form .font input, .dialog .font select, .dialog .font input {
    display: block;
    width: 55%;
    float: left; }
  form.styled_form div.input.select div.input_box, .dialog div.input.select div.input_box {
    position: relative; }
  form.styled_form div.input.select .ui-widget > span, .dialog div.input.select .ui-widget > span {
    display: block;
    height: 16px;
    overflow: hidden;
    margin-top: 0; }
  form.styled_form .fieldset .fieldset, .dialog .fieldset .fieldset {
    background: none; }
  form.styled_form .datetime select, .dialog .datetime select {
    display: inline;
    min-width: 4em;
    width: auto; }
  form.styled_form div.pre_manipulator, .dialog div.pre_manipulator {
    display: block;
    height: 16px;
    width: 100%; }
  form.styled_form .text input, form.styled_form .number input, form.styled_form .password input, form.styled_form .mydatetime input, .dialog .text input, .dialog .number input, .dialog .password input, .dialog .mydatetime input {
    width: 98%; }
  form.styled_form .text input, form.styled_form .font input, form.styled_form .password input, form.styled_form textarea, form.styled_form select, form.styled_form .mydatetime input, form.styled_form .number input, .dialog .text input, .dialog .font input, .dialog .password input, .dialog textarea, .dialog select, .dialog .mydatetime input, .dialog .number input {
    border: 1px solid #aaa;
    background: #fff;
    color: black; }

.group hr {
  margin-top: 0.3em;
  margin-bottom: 0.5em;
  height: 0px;
  border: none;
  border-bottom: 1px dotted #9C88C0; }

.group_end, .spacing {
  height: 0.5em;
  width: 100%; }

div.input.select div.input_box label, div.input.datetime div.input_box label, div.input.font div.input_box label {
  width: 95%;
  padding: 2px !important; }

div.popup {
  position: absolute;
  padding-left: 1em;
  padding-right: 1em;
  padding-top: 1.25em;
  padding-bottom: 0.25em;
  background-color: #ffffff;
  border: 1px solid #55f;
  box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.3);
  z-index: 100; }
  div.popup > .bottom {
    height: 10px;
    width: 100%; }
  div.popup.paging_popup {
    position: relative;
    padding: 0.5em;
    border: none;
    box-shadow: none; }
    div.popup.paging_popup > p, div.popup.paging_popup > a {
      margin: 0em 0.5em;
      text-height: 16px; }

div.ccEntry.popup > form ul {
  list-style: none; }

div.ccEntry.popup > form ul li {
  float: left;
  clear: left;
  display: block;
  margin-right: 1em;
  margin-left: 1em; }

div.ccEntry.popup > form .clearboth {
  height: 1em; }

div.ccEntry.popup li label {
  display: inline;
  float: none;
  width: auto;
  padding-right: 10px;
  padding-left: 2px; }

div.ccEntry.popup li input {
  width: auto; }

div.ccEntry.popup div.manipulation ul {
  position: relative; }

a.tab {
  position: relative;
  padding: 0.1em;
  padding-bottom: 0em;
  float: right; }

ul.statistics {
  display: block;
  list-style: none;
  margin-top: 1em;
  padding-bottom: 1em; }

div.middle a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-weight: bold; }

.one_line {
  display: block;
  height: 1em;
  width: 1px; }

.bigger {
  font-size: 2em;
  font-weight: bold; }

#redirect_to {
  display: none; }

#header_left {
  position: absolute;
  padding: 16px; }
  #header_left span {
    font-weight: bold; }

span.status_warn, span.status_warn_bad, span.status_ok {
  background: url("../img/status.png") no-repeat top left; }

span.status_warn {
  background-position: left -64px; }

span.status_warn_bad {
  background-position: left -80px; }

div.current_status_container {
  margin: 5px;
  width: 102px;
  margin-left: auto;
  margin-right: auto; }

div.current_status {
  margin-left: 1px;
  margin-right: 1px;
  background: url("../img/current_status.png") no-repeat;
  width: 32px;
  height: 32px;
  display: block;
  float: left; }
  div.current_status.icon1 {
    background-position: 0px 0px; }
  div.current_status.icon1.inactive {
    background-position: 0px -32px; }
  div.current_status.icon2 {
    background-position: -32px 0px; }
  div.current_status.icon2.inactive {
    background-position: -32px -32px; }
  div.current_status.icon3 {
    background-position: -64px 0px; }
  div.current_status.icon3.inactive {
    background-position: -64px -32px; }

ul.buttons {
  list-style: none;
  margin-top: 5px;
  margin-bottom: 5px; }
  ul.buttons li {
    display: inline;
    padding-top: 5px;
    padding-bottom: 5px;
    border: 1px solid #ddd; }
    ul.buttons li:hover {
      border: 1px solid #999; }
    ul.buttons li a {
      padding: 10px;
      font-weight: bold;
      text-decoration: none;
      color: #42397c;
      white-space: nowrap; }
      ul.buttons li a:hover {
        color: black;
        text-decoration: underline; }
    ul.buttons li.message span {
      padding: 10px;
      padding-right: 0px;
      font-weight: bold;
      color: black; }
    ul.buttons li.message.message-success {
      background-color: #e0e0ff; }
    ul.buttons li.message.message-error {
      background-color: #ffa0a0; }
  ul.buttons.columns li {
    float: left;
    clear: left; }

#map_reference {
  position: relative;
  margin-left: auto;
  margin-right: auto; }

#map_container {
  position: relative; }
  #map_container div.controls {
    position: absolute;
    top: 0px;
    left: 0px;
    padding: 5px;
    border: 1px solid black;
    background-color: white; }
  #map_container .map_marker {
    position: absolute;
    background: url("../img/pointer.png") no-repeat bottom left;
    padding-bottom: 10px;
    padding-left: 10px; }
    #map_container .map_marker a {
      background-color: white;
      padding: 3px;
      border: 1px solid gray;
      box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
      border-radius: 5px; }
      #map_container .map_marker a:hover {
        background-color: black;
        color: white; }
      #map_container .map_marker a span {
        padding-left: 16px;
        margin-left: 2px; }
    #map_container .map_marker.location_group a {
      font-weight: bold; }

#map_overflow {
  width: 100%;
  overflow: auto; }

.ui-multiselect.ui-widget {
  width: 99%; }

.ui-widget, .ui-multiselect-checkboxes li {
  font-size: 12px; }

.ui-multiselect-checkboxes label input {
  margin-right: 8px; }

.ui-dialog {
  box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.3); }

ul.status_box {
  list-style: none;
  clear: both; }
  ul.status_box li {
    width: 215px;
    float: left;
    padding: 10px;
    padding-top: 30px;
    margin: 5px;
    box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.2);
    border: 1px solid gray;
    position: relative;
    background: white; }
    ul.status_box li.small {
      width: 135px;
      float: left;
      padding: 10px;
      padding-top: 15px;
      margin: 2px;
      box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2); }
      ul.status_box li.small.critical {
        background-color: #F47552; }
    ul.status_box li > a.title, ul.status_box li > p.title {
      position: absolute;
      top: 0px;
      left: 0px;
      padding: 5px; }

div.status_box > div.vertical {
  width: 10%;
  height: 100%;
  float: left;
  text-align: center; }

div.status_box > div.horizontal {
  width: 80%;
  float: left;
  text-align: center; }

.status.horizontal {
  width: 160px;
  height: 16px;
  background: url("../img/status_horizontal.png") no-repeat 0px 0px;
  margin: 5px;
  margin-top: 0px; }
  .status.horizontal > div {
    width: 160px;
    height: 16px;
    background: url("../img/status_horizontal.png") no-repeat 0px -16px;
    width: 0%; }
  .status.horizontal.inactive {
    background: url("../img/status_horizontal.png") no-repeat 0px -32px; }
    .status.horizontal.inactive > div {
      width: 0%; }

.status.vertical {
  width: 16px;
  height: 112px;
  background: url("../img/status_vertical.png") no-repeat -16px 0px;
  margin: 5px;
  margin-top: 0px;
  margin-left: auto;
  margin-right: auto; }
  .status.vertical > div {
    width: 16px;
    height: 112px;
    background: url("../img/status_vertical.png") no-repeat 0px 0px;
    height: 100%; }
  .status.vertical.inactive {
    background: url("../img/status_vertical.png") no-repeat -32px 0px; }
    .status.vertical.inactive > div {
      height: 0%; }

ul.state_report_box {
  list-style: none;
  clear: both; }
  ul.state_report_box .preview-holder {
    background: rgba(0, 0, 0, 0.33); }
  ul.state_report_box li {
    box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.2);
    position: relative;
    background-color: white; }
    ul.state_report_box li > a.title, ul.state_report_box li > p.title {
      position: absolute;
      top: 0px;
      left: 0px;
      padding: 3px; }
    ul.state_report_box li > div {
      height: 100%;
      overflow: hidden;
      position: relative; }
    ul.state_report_box li div.graph {
      position: relative;
      width: 100%;
      height: 90%; }
      ul.state_report_box li div.graph table {
        width: auto; }
      ul.state_report_box li div.graph table tr {
        font-size: 100%; }
      ul.state_report_box li div.graph table tr td {
        padding: 0px; }
      ul.state_report_box li div.graph .legend {
        font-size: 90%; }

div.permissions {
  float: left;
  line-height: 20px; }
  div.permissions span {
    width: 16px;
    height: 16px;
    display: block;
    background: url("../img/permissions.png") no-repeat 0px 0px;
    margin: 2px;
    padding: 0px;
    float: left; }
    div.permissions span.permissions_none {
      background-position: 0px 0px; }
    div.permissions span.permissions_view {
      background-position: -16px 0px; }
    div.permissions span.permissions_view_and_edit {
      background-position: -32px 0px; }

ul.information {
  list-style: none;
  display: block;
  width: 100%; }
  ul.information li span {
    font-size: 1.1em;
    font-weight: bold;
    margin-left: 2em;
    clear: left;
    display: block;
    margin-bottom: 0.5em; }
  ul.information ul.license {
    list-style: none;
    display: block;
    width: 100%; }
    ul.information ul.license li {
      font-size: 0.9em;
      font-weight: normal;
      margin-left: 2em;
      clear: left;
      display: block; }

.fieldset p.note, .fieldset ul.note, .dialog p.note, .dialog ul.note, .styled_form p.note, .styled_form ul.note {
  color: #333;
  padding: 2px;
  padding-top: -2px;
  padding-bottom: 0px;
  font-size: 11px;
  list-style: none;
  width: 98%; }

.fieldset ul.note li, .dialog ul.note li, .styled_form ul.note li {
  color: #333; }

.fieldset .note.note-danger, .dialog .note.note-danger, .styled_form .note.note-danger {
  color: #800000;
  background-color: white;
  border: 2px solid red;
  padding: 3px;
  margin-top: 1px; }

.fieldset .group, .dialog .group {
  padding-left: 0.25em;
  padding-right: 0.25em; }

.fieldset table.full_row_active, .dialog table.full_row_active {
  border-radius: 0px;
  border: none;
  background-color: #e8e8e8; }
  .fieldset table.full_row_active tr.header th, .dialog table.full_row_active tr.header th {
    background-color: #514d75; }

.template.template-area {
  height: 200px;
  background-color: white;
  overflow: auto; }

.template.template-item {
  width: 110px;
  height: 114px;
  float: left; }
  .template.template-item img, .template.template-item .template-icon {
    margin-left: auto;
    margin-right: auto;
    display: block; }
  .template.template-item span {
    text-align: center;
    display: block; }
  .template.template-item.template-selected {
    background-color: #3b385e; }
    .template.template-item.template-selected span {
      color: white; }

.progressbar {
  position: relative; }

.progressbar_text {
  position: absolute;
  top: 0px;
  width: 100%;
  height: 100%;
  text-align: center;
  line-height: 2em; }

.qq-uploader {
  position: relative;
  width: 100%; }

.qq-upload-button {
  display: block;
  /* or inline-block */
  padding: 3px 0;
  text-align: center;
  background: #322E54;
  border-bottom: 1px solid #ddd;
  color: #fff;
  font-weight: bold; }

.qq-upload-button-hover {
  background: #594BBC; }

.qq-upload-button-focus {
  outline: 1px dotted black; }

.qq-upload-drop-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 70px;
  z-index: 2;
  background: #FF9797;
  text-align: center; }

.qq-upload-drop-area span {
  display: block;
  position: absolute;
  top: 50%;
  width: 100%;
  margin-top: -8px;
  font-size: 16px; }

.qq-upload-drop-area-active {
  background: #FF7171; }

.qq-upload-list {
  margin: 10px 25px;
  padding: 0;
  list-style: disc; }

.qq-upload-list li {
  margin: 0;
  padding: 0;
  line-height: 15px;
  font-size: 12px; }

.qq-upload-file, .qq-upload-spinner, .qq-upload-size, .qq-upload-cancel, .qq-upload-failed-text {
  margin-right: 7px; }

.qq-upload-spinner {
  display: inline-block;
  width: 15px;
  height: 15px;
  vertical-align: text-bottom; }

.qq-upload-size, .qq-upload-cancel {
  font-size: 11px; }

.qq-upload-failed-text {
  display: none; }

.qq-upload-fail .qq-upload-failed-text {
  display: inline; }

form > div {
  margin: 0;
  padding: 0;
  clear: none; }

form .required {
  font-weight: normal; }
  form .required label:after, form .required legend:after {
    color: #e32;
    content: ' *';
    display: inline;
    font-weight: normal; }
  form .required.radio label:after, form .required.check label:after {
    content: none; }

form .error-message {
  padding: 3px;
  width: 98%; }

ul.cake-stack-trace {
  padding: 0 12px;
  list-style: none; }

.sound_channels, .sound_channels span {
  padding: 0px;
  margin: 0px; }

.sound_channels span {
  width: 14px;
  height: 16px;
  display: block;
  float: left; }
  .sound_channels span[rel="1"] {
    background: url("../img/channel.png") no-repeat; }
  .sound_channels span[rel="0"] {
    background: url("../img/channel.png") no-repeat;
    background-position: 0px -16px; }

.flot_chart table {
  border: 0 none;
  clear: none;
  color: black;
  width: auto; }
  .flot_chart table tr {
    font-size: 1em; }
    .flot_chart table tr td {
      padding: 0px;
      border: none;
      background: none;
      vertical-align: middle; }

div.big_list {
  position: relative; }
  div.big_list .controls {
    position: absolute;
    top: 15px;
    right: -30px;
    width: 24px; }
    div.big_list .controls > a {
      display: block;
      width: 24px;
      height: 24px;
      background: url("../img/add_remove.png") no-repeat;
      float: right; }
    div.big_list .controls > a.add {
      background-position: 0px 0px; }
    div.big_list .controls > a.add:hover {
      background-position: -24px 0px; }
    div.big_list .controls > a.remove {
      background-position: 0px -24px; }
    div.big_list .controls > a.remove:hover {
      background-position: -24px -24px; }
    div.big_list .controls > a.refresh {
      background-position: 0px -48px; }
    div.big_list .controls > a.refresh:hover {
      background-position: -24px -48px; }
    div.big_list .controls > a.add_all {
      background-position: 0px -72px; }
    div.big_list .controls > a.add_all:hover {
      background-position: -24px -72px; }
    div.big_list .controls > a.clear {
      background-position: 0px -96px; }
    div.big_list .controls > a.clear:hover {
      background-position: -24px -96px; }
    div.big_list .controls > a.refresh_all {
      background-position: 0px -120px; }
    div.big_list .controls > a.refresh_all:hover {
      background-position: -24px -120px; }
  div.big_list.input {
    margin-right: 36px; }
  div.big_list .styled_form {
    margin-right: 24px;
    margin-bottom: 1em; }
  div.big_list .data {
    display: none; }
  div.big_list .view {
    height: 15em;
    overflow: auto;
    border: 1px solid #aaa;
    width: 99%;
    background-color: white; }
    div.big_list .view > ul {
      list-style: none; }
      div.big_list .view > ul li {
        display: block;
        height: 1em;
        background-color: white;
        border-bottom: 1px solid #ddd;
        padding: 2px; }
        div.big_list .view > ul li.ui-selected {
          background: #ccf; }
        div.big_list .view > ul li.ui-selected:hover, div.big_list .view > ul li.ui-selectee.ui-selecting {
          background: #aaf; }
        div.big_list .view > ul li:hover {
          background: #414057;
          color: white; }
          div.big_list .view > ul li:hover a {
            color: white; }
  div.big_list a.center, div.big_list p.center {
    display: block;
    text-align: center;
    width: 100%;
    height: 1em; }
  div.big_list a.center {
    font-weight: bold;
    text-decoration: none;
    color: #42397c; }
    div.big_list a.center:hover {
      text-decoration: underline; }

div#big_list_popup .controls {
  top: 1.8em;
  right: 1.3em;
  width: 24px;
  clear: right;
  float: right; }

div#big_list_popup .view {
  height: auto;
  max-height: 15em; }

div#big_list_popup > ul {
  border: 1px solid #ddd;
  margin-top: 1em; }

div.log_window {
  border-left: 5px solid black;
  border-right: 5px solid black; }
  div.log_window.log_error {
    border-color: #ff9999; }
  div.log_window.log_debug {
    border-color: #66b366; }
  div.log_window.log_server {
    border-color: #8080ff; }

div.exclude_rules {
  width: 100%;
  height: 300px;
  overflow: auto; }
  div.exclude_rules > div {
    border-bottom: 1px solid #999;
    padding-bottom: 2px;
    padding-top: 2px;
    position: relative; }
    div.exclude_rules > div:nth-child(2n+1) {
      background: #f5f5f5; }
    div.exclude_rules > div a.exclude_rules_add_row {
      width: 100%;
      height: 2em;
      line-height: 2em;
      display: block;
      text-align: center; }
  div.exclude_rules a.remove {
    position: absolute;
    right: 4px;
    top: 4px;
    width: 20px;
    height: 20px;
    background: url("../img/logout.png") no-repeat; }
  div.exclude_rules a.remove:hover {
    background-position: 0px -20px; }
  div.exclude_rules div.type_select {
    width: 50%; }

div.exclude_rule_definition, div.exclude_rules div.type_name {
  display: none; }

#choose_language {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: left; }
  #choose_language ul {
    list-style: none;
    display: block;
    width: 100%; }
    #choose_language ul li {
      float: left;
      padding: 1px;
      display: block;
      width: 60px;
      height: 50px; }
      #choose_language ul li a {
        display: block;
        text-decoration: none;
        display: block;
        width: 100%;
        height: 100%;
        padding: 1px; }
        #choose_language ul li a img {
          display: block;
          margin-left: auto;
          margin-right: auto;
          margin-top: 1px; }
        #choose_language ul li a:hover {
          color: black; }
      #choose_language ul li.selected a {
        background-color: #3b385e; }
      #choose_language ul li.selected a span {
        color: white; }
  #choose_language span {
    display: block;
    width: 100%;
    text-align: center; }

input.colorPicker {
  display: none; }

form.styled_form .font input.colorPicker {
  display: none; }

table.full_row_active, table.ticket_information {
  background-color: #e8e8e8; }
  table.full_row_active tr td > a, table.ticket_information tr td > a {
    padding-right: 18px;
    background: url("../img/edit.png") no-repeat;
    background-position: right top; }
  table.full_row_active tr td span.one_line, table.ticket_information tr td span.one_line {
    padding-left: 0px; }

ul.link_list {
  list-style: none; }
  ul.link_list li {
    padding: 2px;
    margin: 2px; }
    ul.link_list li a {
      font-weight: bold;
      text-decoration: none;
      color: #42397c; }
      ul.link_list li a:hover {
        text-decoration: underline; }

ul.graph_types {
  list-style: none; }
  ul.graph_types li {
    padding: 2px;
    margin: 2px; }
    ul.graph_types li a {
      font-weight: bold;
      text-decoration: none;
      color: #42397c; }
      ul.graph_types li a:hover {
        text-decoration: underline; }

.notification {
  display: block;
  width: 100%;
  background-color: white;
  padding: 0.5em 0.5em;
  border: 1px solid #4c33a0;
  box-sizing: border-box;
  margin-bottom: 0.5em; }
  .notification .icon {
    width: 24px;
    height: 24px;
    background: url("../img/notification.png") no-repeat;
    float: left;
    margin: -0.25em; }
  .notification strong {
    margin-left: 10px; }

ul.status_icons {
  display: block;
  list-style: none;
  margin: 0;
  margin-top: 2em; }
  ul.status_icons div.status_icon {
    position: relative;
    width: 48px;
    height: 48px;
    background: url("../img/status_icons.png") no-repeat;
    float: left;
    margin: 2px; }
    ul.status_icons div.status_icon div {
      position: absolute;
      background: url("../img/status.png") no-repeat;
      background-position: 0px -64px;
      width: 16px;
      height: 16px;
      right: 0px;
      bottom: 0px; }

.gridster > * {
  margin: 0px !important; }

div.player table {
  width: 100%; }
  div.player table tr {
    font-size: 20px; }
    div.player table tr td {
      text-align: center;
      border: none; }
      div.player table tr td.player-time {
        font-size: 12px; }
      div.player table tr td i {
        cursor: pointer; }

div.player .player-seekbar {
  width: 100%;
  height: 16px;
  border: 1px solid black; }
  div.player .player-seekbar .player-progress {
    background-color: black;
    height: 16px; }

/* jQuery UI overrides */
.input_box .ui-slider-handle {
  background-color: #6C44FF;
  background-image: none;
  border: 1px solid #000;
  height: 1em;
  margin-left: -2px;
  top: -1px;
  width: 4px; }

.input_box .ui-slider-horizontal {
  height: 1em;
  margin-left: 4em;
  margin-right: 4em;
  margin-top: 0.1em; }

.input_box .fill {
  width: 100%;
  height: 100%;
  background-color: #9086FF;
  background: url("../img/horizontal_slider.png") repeat-x left top; }

.input_box p.slider_element {
  display: block;
  float: left;
  width: 100%;
  position: relative; }

.input_box span.slider_element {
  position: absolute;
  display: block;
  width: 50%;
  right: 0px;
  top: 0px;
  text-align: right; }

.ui-multiselect-single .ui-multiselect-checkboxes label {
  padding: 2px 5px !important; }

@font-face {
  font-family: 'Icon';
  src: url("../fonts/icon.ttf?v4");
  src: url("../fonts/icon.ttf?v4") format("truetype");
  font-weight: normal;
  font-style: normal; }

div.ticket-editor-box {
  overflow-x: hidden;
  overflow-y: auto;
  background-color: white;
  line-height: 1em; }
  div.ticket-editor-box .language {
    background-color: #e1e1ff; }
  div.ticket-editor-box .placeholder {
    background-color: #eff1a0; }
    div.ticket-editor-box .placeholder.qrcode {
      margin: 5px;
      display: inline-block;
      width: 200px;
      height: 200px;
      background: url("../img/qrcode.png") no-repeat, #eff1a0; }
    div.ticket-editor-box .placeholder.barcode {
      margin: 5px;
      display: inline-block;
      width: 250px;
      height: 85px;
      background: url("../img/barcode.png") no-repeat, #eff1a0; }
  div.ticket-editor-box .language.placeholder {
    background-color: #e8e9d0; }
  div.ticket-editor-box p[dir="rtl"] {
    background: url("../img/rtl.png") repeat-y right top; }
  div.ticket-editor-box p span {
    line-height: 1em;
    font-size: 16px;
    font-family: 'times new roman'; }

div.ticket-editor-toolbar {
  background-color: white; }
  div.ticket-editor-toolbar > div.separator {
    width: 0px;
    height: 30px;
    display: inline-block;
    float: left;
    margin: 1px;
    border-left: 1px solid lightgray; }
  div.ticket-editor-toolbar > div.clear {
    clear: both; }
  div.ticket-editor-toolbar > button, div.ticket-editor-toolbar > div.button {
    background-color: white;
    color: black;
    border: none;
    padding: 5px;
    margin: 1px;
    float: left;
    position: relative; }
    div.ticket-editor-toolbar > button.active, div.ticket-editor-toolbar > button:hover, div.ticket-editor-toolbar > div.button.active, div.ticket-editor-toolbar > div.button:hover {
      background-color: #817db2; }
      div.ticket-editor-toolbar > button.active span, div.ticket-editor-toolbar > button:hover span, div.ticket-editor-toolbar > div.button.active span, div.ticket-editor-toolbar > div.button:hover span {
        color: white; }
    div.ticket-editor-toolbar > button span, div.ticket-editor-toolbar > div.button span {
      font-family: Icon;
      font-size: 18px;
      line-height: 20px;
      width: 20px;
      height: 20px;
      display: inline-block; }
    div.ticket-editor-toolbar > button.button-placeholder span, div.ticket-editor-toolbar > div.button.button-placeholder span {
      padding: 0px;
      background-image: url("../img/ticket_editor.png");
      width: 42px;
      height: 28px; }
    div.ticket-editor-toolbar > button .dropdown, div.ticket-editor-toolbar > div.button .dropdown {
      display: block;
      position: absolute;
      list-style: none;
      border: 1px solid #3b385e;
      background-color: white;
      z-index: 1;
      overflow: auto; }
      div.ticket-editor-toolbar > button .dropdown li button, div.ticket-editor-toolbar > div.button .dropdown li button {
        display: block;
        width: 100%;
        background-color: white;
        color: black;
        border: none;
        padding: 5px;
        cursor: default;
        text-align: left; }
        div.ticket-editor-toolbar > button .dropdown li button.active, div.ticket-editor-toolbar > button .dropdown li button:hover, div.ticket-editor-toolbar > div.button .dropdown li button.active, div.ticket-editor-toolbar > div.button .dropdown li button:hover {
          background-color: #817db2;
          color: white; }
      div.ticket-editor-toolbar > button .dropdown.dropdown-left, div.ticket-editor-toolbar > div.button .dropdown.dropdown-left {
        right: 0px; }
      div.ticket-editor-toolbar > button .dropdown:not(.dropdown-left), div.ticket-editor-toolbar > div.button .dropdown:not(.dropdown-left) {
        left: 0px; }
  div.ticket-editor-toolbar > select {
    width: 140px;
    float: left;
    height: 30px;
    margin-top: 1px;
    margin-left: 4px; }
  div.ticket-editor-toolbar > select:nth-child(2) {
    width: 50px; }
  div.ticket-editor-toolbar .icon-bold:before {
    content: ""; }
  div.ticket-editor-toolbar .icon-italic:before {
    content: ""; }
  div.ticket-editor-toolbar .icon-underline:before {
    content: ""; }
  div.ticket-editor-toolbar .icon-left:before {
    content: ""; }
  div.ticket-editor-toolbar .icon-right:before {
    content: ""; }
  div.ticket-editor-toolbar .icon-center:before {
    content: ""; }
  div.ticket-editor-toolbar .icon-fill:before {
    content: ""; }
  div.ticket-editor-toolbar .icon-line_10:before {
    content: ""; }
  div.ticket-editor-toolbar .icon-line_15:before {
    content: ""; }
  div.ticket-editor-toolbar .icon-line_20:before {
    content: ""; }
  div.ticket-editor-toolbar .icon-image:before {
    content: ""; }
  div.ticket-editor-toolbar .icon-language:before {
    content: ""; }
  div.ticket-editor-toolbar .icon-rtl:before {
    content: ""; }
  div.ticket-editor-toolbar .icon-placeholder_ticket {
    background-position: 0px 0px; }
  div.ticket-editor-toolbar .icon-placeholder_queue {
    background-position: -42px 0px; }
  div.ticket-editor-toolbar .icon-placeholder_operation {
    background-position: -84px 0px; }
  div.ticket-editor-toolbar .icon-placeholder_date {
    background-position: -126px 0px; }
  div.ticket-editor-toolbar .icon-placeholder_time {
    background-position: -168px 0px; }
  div.ticket-editor-toolbar .icon-placeholder_code {
    background-position: -210px 0px; }
  div.ticket-editor-toolbar .icon-placeholder_qrcode {
    background-position: -252px 0px; }
  div.ticket-editor-toolbar .icon-placeholder_barcode {
    background-position: -294px 0px; }
  div.ticket-editor-toolbar .icon-placeholder_other {
    background-position: -336px 0px; }

#dispenser_layouts_container #content > div {
  position: relative;
  overflow: auto; }

#dispenser_layouts_container .new_item {
  padding: 1px; }

#dispenser_layouts_container #new_layout_items .new_item:hover {
  border: 1px solid gray;
  padding: 0px; }

#dispenser_layouts_container .item_layer {
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: relative;
  top: 0px;
  left: 0px; }

#dispenser_layouts_container form.styled_form .fieldset {
  margin: 0;
  margin-right: 5px; }

#dispenser_layouts_container .new_item > span {
  width: 28px;
  height: 28px;
  display: block;
  margin-left: auto;
  margin-right: auto; }

#dispenser_layouts_container .new_item span.image {
  background: url("../img/dispenser_items.png") no-repeat; }

#dispenser_layouts_container .new_item.new_item_button span.image {
  background-position: 0px 0px; }

#dispenser_layouts_container .new_item.new_item_text span.image {
  background-position: -28px 0px; }

#dispenser_layouts_container .new_item.new_item_image span.image {
  background-position: -56px 0px; }

#dispenser_layouts_container .new_item.new_item_button_region span.image {
  background-position: -84px 0px; }

#dispenser_layouts_container .new_item.new_item_keyboard span.image {
  background-position: -112px 0px; }

#dispenser_layouts_container .new_item.new_item_input span.image {
  background-position: -140px 0px; }

#dispenser_layouts_container .new_item.new_item_js span.image {
  background-position: -168px 0px; }

#dispenser_layouts_container .new_item.new_item_js_snippet span.image {
  background-position: -196px 0px; }

#dispenser_layouts_container .new_item.new_item_iframe span.image {
  background-position: -224px 0px; }

#dispenser_layouts_container .new_item.new_item_exit_activator span.image {
  background-position: -252px 0px; }

#dispenser_layouts_container .new_item.new_item_rating_region span.image {
  background-position: -280px 0px; }

#dispenser_layouts_container .new_item.new_item_placeholder span.image {
  background-position: -308px 0px; }

#dispenser_layouts_container .new_item.new_item_css span.image {
  background-position: -336px 0px; }

#dispenser_layouts_container .new_item.new_item_checkbox span.image {
  background-position: -364px 0px; }

#dispenser_layouts_container .new_item p {
  display: block;
  font-size: 80%;
  clear: left;
  text-align: center; }

#dispenser_layouts_container .media ul {
  list-style: none; }

#dispenser_layouts_container .media ul li {
  margin-right: 3px;
  float: left; }

#dispenser_layouts_container #media_screen_container {
  margin-top: 0.5em; }

#dispenser_layouts_container .line {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 0px;
  height: 0px; }

#dispenser_layouts_container .line.line-vertical {
  border-right: 1px dashed blue; }

#dispenser_layouts_container .line.line-horizontal {
  border-top: 1px dashed blue; }
