/*
YUI 2: Reset CSS
Copyright (c) 2011, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://developer.yahoo.com/yui/license.html
version: 2.9.0
*/
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
button,
textarea,
select,
p,
blockquote,
th,
td,
figure,
menu {
  margin: 0;
  padding: 0;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
fieldset,
img {
  border: 0;
}
address,
button,
caption,
cite,
code,
dfn,
em,
input,
optgroup,
option,
select,
strong,
textarea,
th,
var {
  font: inherit;
}
del,
ins {
  text-decoration: none;
}
li {
  list-style: none;
}
caption,
th {
  text-align: left;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}
q:before,
q:after {
  content: '';
}
abbr,
acronym {
  border: 0;
  font-variant: normal;
}
sup {
  vertical-align: baseline;
}
sub {
  vertical-align: baseline;
}
legend {
  color: #000000;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
button::-moz-focus-inner,
input::-moz-focus-inner,
a::-moz-focus-inner {
  border: 0;
  padding: 0;
}
a:-moz-any-link:-moz-focusring {
  outline: none;
}
input:-moz-ui-invalid {
  box-shadow: none;
}
textarea:focus,
input:focus {
  outline: none;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}
input::-ms-clear {
  width: 0;
  height: 0;
}
/*
Version: 3.5.1 Timestamp: Tue Jul 22 18:58:56 EDT 2014
Modified by Ben to replace instances of url('select2*.png') with transparent because we don't use select2 sprites
*/
.select2-container {
    margin: 0;
    position: relative;
    display: inline-block;
    /* inline-block for ie7 */
    zoom: 1;
    *display: inline;
    vertical-align: middle;
}

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

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

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

    border-radius: 4px;

    background-clip: padding-box;

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

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

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

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

    border-radius: 0 0 4px 4px;

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

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

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

    white-space: nowrap;

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

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

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

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

    border: 0;
    background: transparent right top no-repeat;
    cursor: pointer;
    outline: 0;
}

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

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

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

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

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

    border-radius: 0 0 4px 4px;

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

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

    border-radius: 4px 4px 0 0;

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

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

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

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

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

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

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

    background-clip: padding-box;

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

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

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

.select2-container .select2-choice .select2-arrow b {
    display: block;
    width: 100%;
    height: 100%;
    background: transparent no-repeat 0 1px;
}

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

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

    position: relative;
    z-index: 10000;

    white-space: nowrap;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    min-height: 1em;

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

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

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

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

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

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

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

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

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

.select2-more-results.select2-active {
    background: #f4f4f4 transparent no-repeat 100%;
}

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

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

/* disabled styles */

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

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

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


/* multiselect */

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

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

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

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

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

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

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

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

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

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

.select2-container-multi .select2-choices .select2-search-field input.select2-active {
    background: #fff transparent no-repeat 100% !important;
}

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

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

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

    border-radius: 3px;

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

    background-clip: padding-box;

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

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

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

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

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

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

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

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

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

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


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

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

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

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

/* Retina-ize icons */

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

    .select2-search input {
        background-position: 100% -21px !important;
    }
}

/*
  backgrid
  http://github.com/wyuenho/backgrid

  Copyright (c) 2013 Jimmy Yuen Ho Wong and contributors
  Licensed under the MIT license.
*/

.backgrid-container {
  position: relative;
  display: block;
  width: 100%;
  height: 465px;
  padding: 0;
  overflow: auto;
  border: 0;
}

.backgrid {
  width: 100%;
  max-width: 100%;
  background-color: transparent;
  border-collapse: collapse;
  -webkit-border-radius: 4px;
     -moz-border-radius: 4px;
          border-radius: 4px;
}

.backgrid th,
.backgrid td {
  display: none;
  height: 20px;
  max-width: 250px;
  padding-left: 5px;
  overflow: hidden;
  line-height: 20px;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: middle;
  border-bottom: 1px solid #DDD;
}

.backgrid th.renderable,
.backgrid td.renderable {
  display: table-cell;
}

.backgrid th {
  font-weight: bold;
  text-align: center;
}

.backgrid th.sortable a {
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}

.backgrid thead th {
  vertical-align: bottom;
  background-color: #f9f9f9;
}

.backgrid thead th a {
  display: block;
}

.backgrid.backgrid-striped tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

.backgrid tbody tr.empty {
  font-style: italic;
  color: gray;
}

.backgrid tbody tr.empty td {
  display: table-cell;
  text-align: center;
}

.backgrid td.editor {
  padding: 0;
}

.backgrid td.editor,
.backgrid tbody tr:nth-child(odd) td.editor {
  background-color: rgba(82, 168, 236, 0.1);
  outline: 1px solid rgba(82, 168, 236, 0.8);
  outline-offset: -1px;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition-duration: 200ms;
     -moz-transition-duration: 200ms;
       -o-transition-duration: 200ms;
          transition-duration: 200ms;
  -webkit-transition-property: width, outline, background-color;
     -moz-transition-property: width, outline, background-color;
       -o-transition-property: width, outline, background-color;
          transition-property: width, outline, background-color;
  -webkit-transition-timing-function: ease-in-out;
     -moz-transition-timing-function: ease-in-out;
       -o-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
}

.backgrid td.editor input[type=text] {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0 5px;
  margin: 0;
  background-color: transparent;
  border: 0;
  outline: 0;
  -webkit-box-shadow: none;
     -moz-box-shadow: none;
          box-shadow: none;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-appearance: none;
     -moz-appearance: none;
}

.backgrid td.editor input[type=text]::-ms-clear {
  display: none;
}

.backgrid td.error,
.backgrid tbody tr:nth-child(odd) td.error {
  background-color: rgba(255, 210, 77, 0.1);
  outline: 1px solid #ffd24d;
}

.backgrid td.editor :focus,
.backgrid th.editor :focus {
  outline: 0;
}

.backgrid .sort-caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  border: 0;
  content: "";
}

.backgrid .ascending .sort-caret {
  vertical-align: baseline;
  border-top: none;
  border-right: 4px solid transparent;
  border-bottom: 4px solid #000000;
  border-left: 4px solid transparent;
}

.backgrid .descending .sort-caret {
  vertical-align: super;
  border-top: 4px solid #000000;
  border-right: 4px solid transparent;
  border-bottom: none;
  border-left: 4px solid transparent;
}

.backgrid .string-cell,
.backgrid .uri-cell,
.backgrid .email-cell,
.backgrid .string-cell.editor input[type=text],
.backgrid .uri-cell.editor input[type=text],
.backgrid .email-cell.editor input[type=text] {
  text-align: left;
}

.backgrid .date-cell,
.backgrid .time-cell,
.backgrid .datetime-cell,
.backgrid .number-cell,
.backgrid .integer-cell,
.backgrid .percent-cell,
.backgrid .date-cell.editor input[type=text],
.backgrid .time-cell.editor input[type=text],
.backgrid .datetime-cell.editor input[type=text],
.backgrid .number-cell.editor input[type=text],
.backgrid .integer-cell.editor input[type=text],
.backgrid .percent-cell.editor input[type=text] {
  text-align: right;
}

.backgrid .boolean-cell,
.backgrid .boolean-cell.editor input[type=checkbox] {
  text-align: center;
}

.backgrid .select-cell {
  text-align: center;
}

.backgrid .select-cell.editor {
  padding: 0;
}

.backgrid .select-cell.editor select {
  display: block;
  width: 100%;
  height: 28px;
  padding: 4px 5px;
  margin: 0;
  line-height: 28px;
  vertical-align: middle;
  background-color: white;
  border: 0;
  outline: 0;
  -webkit-box-shadow: none;
     -moz-box-shadow: none;
          box-shadow: none;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

.backgrid .select-cell.editor select[multiple] {
  height: auto;
}

.backgrid .select-cell.editor :focus {
  border: 0;
  outline: 0;
}

.backgrid .select-cell.editor select::-moz-focus-inner,
.backgrid .select-cell.editor optgroup::-moz-focus-inner,
.backgrid .select-cell.editor option::-moz-focus-inner,
.backgrid .select-cell.editor select::-o-focus-inner,
.backgrid .select-cell.editor optgroup::-o-focus-inner,
.backgrid .select-cell.editor option::-o-focus-inner {
  border: 0;
}
/*
  backgrid-paginator
  http://github.com/wyuenho/backgrid

  Copyright (c) 2013 Jimmy Yuen Ho Wong and contributors
  Licensed under the MIT license.
*/

.backgrid-paginator {
  /*text-align: center;*/
  border-top: none;
  -webkit-border-radius: 0 0 4px 4px;
     -moz-border-radius: 0 0 4px 4px;
          border-radius: 0 0 4px 4px;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

.backgrid-paginator ul {
  display: inline-block;
  *display: inline;
  margin: 15px 0;
  *zoom: 1;
}

.backgrid-paginator ul > li {
  display: inline;
  text-align: center;
}

.backgrid-paginator ul > li > a,
.backgrid-paginator ul > li > span {
  float: left;
  width: 30px;
  height: 30px;
  padding: 0;
  line-height: 30px;
  text-decoration: none;
}

.backgrid-paginator ul > li > a:hover,
.backgrid-paginator ul > .active > a,
.backgrid-paginator ul > .active > span {
  background-color: #f5f5f5;
}

.backgrid-paginator ul > .active > a,
.backgrid-paginator ul > .active > span {
  color: #999999;
  cursor: default;
}

.backgrid-paginator ul > .disabled > span,
.backgrid-paginator ul > .disabled > a,
.backgrid-paginator ul > .disabled > a:hover {
  color: #999999;
  cursor: default;
}
body {
  color: #545454;
  background-color: white;
  font-family: "ProximaNovaLight", "Helvetica", sans-serif;
}
a {
  color: #0099ff;
  text-decoration: none;
}
a.external {
  max-width: 128px;
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-top: 6px;
  height: 16px;
}
a.external::before {
  content: "";
  width: 8px;
  height: 8px;
  background-size: 600px 1163px;
  background-position: 0px 0px;
  background-image: url("admin.svg");
  background-repeat: no-repeat;
  display: inline-block;
  opacity: 0.3;
  margin-left: 2px;
  vertical-align: 1px;
  float: right;
}
a.external:hover::before {
  opacity: 0.8;
}
a:hover {
  /*opacity: 0.7;*/
}
h3 {
  font: italic 15px "ProximaNovaCondensedLight";
  color: #999999;
  margin-top: 20px;
  margin-bottom: 9px;
}
h3:first-child {
  margin-top: 0;
}
h3.divider {
  position: relative;
}
h3.divider::before {
  content: ' ';
  border-bottom: 1px solid #e5e5e5;
  height: 0px;
  display: block;
  position: absolute;
  top: 50%;
  width: 100%;
  z-index: -1;
}
h3.divider::first-line {
  background-color: white;
  box-shadow: 24px 0 0 white;
}
strong,
b {
  font-family: "ProximaNovaSemiBold";
}
input[type=text].styled-input,
input[type=number].styled-input,
input[type=password].styled-input,
textarea.styled-input {
  border-color: transparent transparent #ababab;
  border-style: solid;
  border-width: 1px;
  padding: 5px;
  font: 15px "ProximaNovaLight";
  min-height: 30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ie-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}
input[type=text].styled-input::-webkit-input-placeholder,
input[type=number].styled-input::-webkit-input-placeholder,
input[type=password].styled-input::-webkit-input-placeholder,
textarea.styled-input::-webkit-input-placeholder {
  font-style: italic;
  color: #b6b6b6;
}
input[type=text].styled-input:-moz-placeholder,
input[type=number].styled-input:-moz-placeholder,
input[type=password].styled-input:-moz-placeholder,
textarea.styled-input:-moz-placeholder {
  font-style: italic;
  color: #b6b6b6;
}
input[type=text].styled-input::-moz-placeholder,
input[type=number].styled-input::-moz-placeholder,
input[type=password].styled-input::-moz-placeholder,
textarea.styled-input::-moz-placeholder {
  font-style: italic;
  color: #b6b6b6;
}
input[type=text].styled-input:-ms-input-placeholder,
input[type=number].styled-input:-ms-input-placeholder,
input[type=password].styled-input:-ms-input-placeholder,
textarea.styled-input:-ms-input-placeholder {
  font-style: italic;
  color: #b6b6b6;
}
input[type=text].styled-input:focus,
input[type=number].styled-input:focus,
input[type=password].styled-input:focus,
textarea.styled-input:focus {
  border-bottom-color: #0099ff;
}
input[type=text].styled-input[readonly],
input[type=number].styled-input[readonly],
input[type=password].styled-input[readonly],
textarea.styled-input[readonly] {
  border-bottom-color: transparent;
  background-color: #e5e5e5;
}
input[type=text].styled-input[disabled],
input[type=number].styled-input[disabled],
input[type=password].styled-input[disabled],
textarea.styled-input[disabled] {
  background-color: transparent;
}
textarea.styled-input {
  border-color: #ababab;
}
textarea.styled-input:focus {
  border-color: #0099ff;
}
.select2-container[id] .select2-choice {
  border-color: transparent transparent #ababab;
  padding-left: 5px;
  border-radius: 0;
  background: none;
  font-size: 15px;
  height: 28px;
}
.select2-container[id] .select2-choice .select2-arrow {
  border-left: none;
  background: none;
  width: auto;
}
.select2-container[id] .select2-choice .select2-arrow b {
  /* fixes CAT-415: select2.css uses !important to override their arrow's standard style with retina style */
  width: 13px !important;
  height: 6px !important;
  background-size: 600px 1163px !important;
  background-position: 1px -32px !important;
  background-image: url("admin.svg") !important;
  background-repeat: no-repeat !important;
  margin: 0 3px 7px;
  padding: 1px;
  display: inline-block;
  vertical-align: bottom;
}
.select2-container[id] .select2-choice.select2-default {
  font-style: italic;
  color: #b6b6b6 !important;
}
.select2-container[id] .select2-choice .select2-search-choice-close {
  display: none;
}
.select2-container[id].select2-dropdown-open .select2-choice {
  border-color: #0099ff;
}
.select2-container[id].select2-container-active .select2-choice {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-bottom-color: #0099ff;
  background-image: none;
  border-radius: 0;
}
.select2-drop {
  border-color: #0099ff;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 0;
  font-size: 15px;
}
.select2-drop .select2-highlighted {
  background-color: #0099ff;
}
.select2-drop .select2-results {
  padding: 4px 0;
  margin: 0 4px;
  border-top: 1px solid #e5e5e5;
  max-height: 411px;
}
.select2-drop .select2-results .select2-result.placeholder {
  font-style: italic;
  color: #b6b6b6 !important;
}
.select2-drop.select2-drop-above {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 0;
  margin-top: 2px;
}
.select2-drop.select2-drop-above.select2-drop-active {
  border-top: 1px solid #0099ff;
}
.select2-drop.select2-drop-above .select2-results {
  border-top: none;
  border-bottom: 1px solid #e5e5e5;
}
.catalyst-admin {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  min-width: 948px;
  overflow-y: hidden;
}
.catalyst-admin header,
.catalyst-admin main {
  position: absolute;
  left: 203px;
}
.catalyst-admin header {
  top: 14px;
  right: 17px;
}
.catalyst-admin nav {
  position: absolute;
  width: 162px;
  left: 17px;
  top: 14px;
  bottom: 14px;
}
.catalyst-admin main {
  top: 61px;
  padding-left: 22px;
  padding-top: 22px;
  padding-right: 17px;
  right: 0;
  padding-bottom: 14px;
  bottom: 0;
  overflow-y: auto;
}
header {
  border-bottom: 2px solid #e5e5e5;
  position: relative;
  padding-left: 22px;
  height: 45px;
}
header .buttons {
  display: inline-block;
  line-height: 35px;
}
header .buttons a {
  display: inline-block;
  margin-right: 34px;
  vertical-align: middle;
}
header .buttons .save {
  width: 24px;
  height: 24px;
  background-size: 600px 1163px;
  background-position: 0px -327px;
  background-image: url("admin.svg");
  background-repeat: no-repeat;
  cursor: default;
}
header .buttons .save.dirty {
  width: 24px;
  height: 24px;
  background-size: 600px 1163px;
  background-position: 0px -113px;
  background-image: url("admin.svg");
  background-repeat: no-repeat;
  cursor: pointer;
  -webkit-animation-name: pulse;
  -moz-animation-name: pulse;
  -ie-animation-name: pulse;
  -o-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-duration: 1.3s;
  -moz-animation-duration: 1.3s;
  -ie-animation-duration: 1.3s;
  -o-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-timing-function: ease-in-out;
  -moz-animation-timing-function: ease-in-out;
  -ie-animation-timing-function: ease-in-out;
  -o-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-direction: alternate;
  -moz-animation-direction: alternate;
  -ie-animation-direction: alternate;
  -o-animation-direction: alternate;
  animation-direction: alternate;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -ie-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
@keyframes pulse {
  from {
    transform: scale(1, 1);
  }
  to {
    transform: scale(1.15, 1.15);
  }
}
@-webkit-keyframes pulse {
  from {
    transform: scale(1, 1);
  }
  to {
    transform: scale(1.15, 1.15);
  }
}
header .buttons .back {
  width: 24px;
  height: 24px;
  background-size: 600px 1163px;
  background-position: 0px -64px;
  background-image: url("admin.svg");
  background-repeat: no-repeat;
}
header .title {
  font-size: 26px;
  display: inline;
  line-height: 35px;
  vertical-align: bottom;
}
header .authInfo {
  font-size: 13px;
  position: absolute;
  right: 9px;
  top: 0;
  line-height: 30px;
}
header .authInfo .username.nonlink {
  cursor: default;
  color: inherit;
}
header .authInfo li {
  display: inline;
}
header .authInfo li + li:before {
  content: "\00B7  ";
}
.skin-commandcenter header .authInfo .logout {
  display: none;
}
header .messages {
  bottom: 0;
  height: 0;
  left: 17px;
  position: absolute;
  right: 17px;
}
header .messages > div {
  position: relative;
  text-align: center;
  top: 50%;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
}
header .messages .message {
  border: 2px solid #e5e5e5;
  background: white;
  display: inline-block;
  padding: 4px 8px;
  font-size: 13px;
  text-align: left;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transition: transform 0.17s;
  transition: transform 0.17s;
}
header .messages .message.animated-visible {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}
header .messages .message.error {
  color: #c74040;
}
header .messages .message.info {
  color: #999999;
}
nav {
  border-right: 2px solid #e5e5e5;
  padding-right: 11px;
}
nav .logo div {
  width: 107.14285714px;
  height: 25px;
  background-size: 107.14285714px 207.67857143px;
  background-position: 0px -28.92857143px;
  background-image: url("admin.svg");
  background-repeat: no-repeat;
  display: block;
  margin: 7px auto 12px;
  padding-bottom: 1px;
}
.skin-commandcenter nav .logo {
  display: none;
}
nav > ul {
  border-top: 2px solid #e5e5e5;
  padding-top: 3px;
  padding-left: 13px;
  font-size: 17px;
  line-height: 28px;
}
nav > ul a {
  color: #545454;
  display: block;
}
nav > ul a.current,
nav > ul a:hover {
  color: #0099ff;
}
nav > ul ul {
  margin-top: 14px;
}
nav > ul ul.advanced {
  display: none;
  margin-top: 0;
}
nav > ul ul.advanced a {
  padding-left: 20px;
}
nav > ul.showAdvanced ul.advanced {
  display: block;
}
.skin-commandcenter nav > ul {
  border-top: none;
  padding-top: 0;
}
nav .adminOnly {
  display: none;
}
nav .adminNever {
  display: block;
}
nav.isAdmin .adminOnly {
  display: block;
}
nav.isAdmin .adminNever {
  display: none;
}
.LoginView {
  width: 380px;
  height: 270px;
  position: fixed;
  left: 50%;
  top: 45%;
  margin-left: -190px;
  margin-top: -135px;
  text-align: center;
}
.LoginView .logo {
  width: 188px;
  height: 43.86666667px;
  background-size: 188px 364.40666667px;
  background-position: 0px -50.76px;
  background-image: url("admin.svg");
  background-repeat: no-repeat;
  margin: 0 auto 37px;
}
.LoginView .username,
.LoginView .password {
  width: 200px;
  font-size: 15px;
}
.LoginView .password {
  margin-top: 6px;
}
.LoginView .message {
  font-size: 12px;
  color: #c74040;
  height: 42px;
  line-height: 42px;
}
.LoginView input[type=submit],
.LoginView input[type=button] {
  width: 24px;
  height: 24px;
  background-size: 600px 1163px;
  background-position: 0px -376px;
  background-image: url("admin.svg");
  background-repeat: no-repeat;
  border: none;
  background-color: transparent;
  cursor: pointer;
}
.LoginView input[type=submit] {
  text-indent: -9999px;
}
.LoginView input[type=button] {
  text-indent: 0;
  padding-left: 41px;
  text-align: left;
  min-width: 216px;
  color: #0099ff;
  margin-bottom: 15px;
}
.LoginView.submitting input {
  opacity: 0.5;
  cursor: default;
}
.LoginView.submitting input[type=submit],
.LoginView.submitting input[type=button] {
  opacity: 0.25;
}
.LoginView .password,
.LoginView input[type=button],
.LoginView input[type=submit] {
  display: none;
}
.LoginView.usernameOnly input[type=submit],
.LoginView.passwordPrompt input[type=submit] {
  display: inline-block;
}
.LoginView.passwordPrompt .password {
  display: inline-block;
}
.LoginView.ssoPrompt input[type=button] {
  display: inline-block;
}
.LoginView .terms {
  margin: 40px 15px 0px 15px;
  font-size: 0.9em;
}
.FailureView dl.moreInfo {
  display: none;
  overflow-y: auto;
  margin: 20px 0 0;
  padding: 0 23px;
  text-align: left;
  font-size: 13px;
  line-height: 16px;
}
.FailureView dl.moreInfo dt {
  font-family: 'ProximaNovaSemiBold';
  float: left;
  clear: both;
}
.FailureView dl.moreInfo dd {
  font-family: monospace;
  margin-left: 159px;
  margin-bottom: 8px;
}
.FailureView.moreInfo dl.moreInfo {
  display: block;
}
.ModalDialog {
  position: fixed;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ie-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ie-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  border: 2px solid #d8d8d8;
  min-width: 419px;
  min-height: 140px;
  padding: 30px;
  background: white;
  max-width: 740px;
  max-height: 100%;
}
.ModalDialog .dismiss {
  width: 12px;
  height: 12px;
  background-size: 600px 1163px;
  background-position: 0px -425px;
  background-image: url("admin.svg");
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px;
  opacity: 0.2;
  background-origin: content-box;
}
.ModalDialog .dismiss:hover {
  opacity: 0.4;
}
.ModalDialog .bottomLink {
  position: absolute;
  right: 15px;
  bottom: 15px;
  font-size: 14px;
}
.ModalDialog h2 {
  font-family: 'ProximaNovaSemiBold';
  font-size: 18px;
  margin-bottom: 14px;
}
.ModalDialogMask {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: white;
  opacity: 0.80;
}
.ModalDialogContainer {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ie-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  position: fixed;
  top: 30px;
  right: 0;
  bottom: 30px;
  left: 0;
  z-index: 5;
}
.StepsDialog {
  display: flex;
  flex-direction: column;
  padding-bottom: 41px;
  padding-left: 0;
  padding-right: 0;
}
.StepsDialog > div,
.StepsDialog > form {
  flex: 0 1;
  -ms-flex: 0 1 500px;
  overflow-y: auto;
  padding: 0 30px;
}
.StepsDialog .in-progress,
.StepsDialog .success {
  margin-top: 30px;
}
.StepsDialog .failure {
  margin-top: 12px;
}
.StepsDialog .in-progress,
.StepsDialog .success,
.StepsDialog .failure {
  text-align: center;
}
.StepsDialog .failure .errorMessage {
  color: #c74040;
}
.StepsDialog .failure .bottomLink.copy {
  display: none;
}
.StepsDialog .failure.moreInfo .bottomLink.moreInfo {
  display: none;
}
.StepsDialog .failure.moreInfo .bottomLink.copy {
  display: inline;
}
.StepsDialog .intro,
.StepsDialog .in-progress,
.StepsDialog .success,
.StepsDialog .failure {
  display: none;
}
.StepsDialog.intro .intro {
  display: block;
}
.StepsDialog.in-progress .in-progress {
  display: block;
}
.StepsDialog.success .success {
  display: block;
}
.StepsDialog.failure .failure {
  display: block;
}
.StepsDialog .bottomLink.secondary {
  right: auto;
  left: 15px;
}
.EndpointBulkUploadDialog {
  max-width: 512px;
}
.EndpointBulkUploadDialog .intro {
  color: #b6b6b6;
  line-height: 27px;
  padding-left: 27px;
}
.EndpointBulkUploadDialog .intro li {
  list-style-type: decimal;
}
.EndpointBulkUploadDialog .intro li > span {
  color: #545454;
}
.EndpointBulkUploadDialog .intro .upload {
  position: relative;
  overflow: hidden;
  vertical-align: bottom;
  display: inline-block;
}
.EndpointBulkUploadDialog .intro .upload input {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
  font-size: 200px;
  cursor: pointer;
}
.JoinDialog .intro {
  margin-left: 17px;
}
.JoinDialog .intro fieldset > div {
  min-height: 28px;
  line-height: 28px;
}
.JoinDialog .intro fieldset > div label {
  min-width: 114px;
  display: inline-block;
  font-size: 15px;
}
.JoinDialog .intro fieldset > div label + div {
  display: inline-block;
}
.JoinDialog .intro fieldset > div input {
  width: 180px;
  border-color: transparent transparent #ababab;
  border-style: solid;
  border-width: 1px;
  padding: 5px;
  font: 15px "ProximaNovaLight";
  min-height: 30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ie-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}
.JoinDialog .intro fieldset > div input::-webkit-input-placeholder {
  font-style: italic;
  color: #b6b6b6;
}
.JoinDialog .intro fieldset > div input:-moz-placeholder {
  font-style: italic;
  color: #b6b6b6;
}
.JoinDialog .intro fieldset > div input::-moz-placeholder {
  font-style: italic;
  color: #b6b6b6;
}
.JoinDialog .intro fieldset > div input:-ms-input-placeholder {
  font-style: italic;
  color: #b6b6b6;
}
.JoinDialog .intro fieldset > div input:focus {
  border-bottom-color: #0099ff;
}
.JoinDialog .intro fieldset > div input[readonly] {
  border-bottom-color: transparent;
  background-color: #e5e5e5;
}
.JoinDialog .intro fieldset > div input[disabled] {
  background-color: transparent;
}
.JoinDialog .intro fieldset > div + div {
  margin-top: 5px;
}
.JoinDialog .success {
  margin-top: 12px;
}
.JoinDialog .success .launchSkinny {
  font-size: 14px;
  margin-top: 5px;
  display: block;
}
.PingDialog .failure {
  margin-top: 24px;
}
.InstallersDialog {
  max-width: 360px;
}
.InstallersDialog ul {
  margin: 20px 0;
}
.InstallersDialog li {
  display: inline-block;
  width: 25%;
  vertical-align: top;
}
.InstallersDialog li a {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ie-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  padding: 15px 0 10px;
  text-align: center;
  font: 14px 'ProximaNovaSemiBold';
  line-height: 18px;
  white-space: pre-line;
  min-height: 147px;
  border: 1px solid transparent;
}
.InstallersDialog li a:hover {
  background-color: rgba(229, 229, 229, 0.15);
  border-color: #e5e5e5;
}
.InstallersDialog li a .icon {
  width: 48px;
  height: 48px;
  display: block;
  margin: 0 auto 18px;
}
.InstallersDialog li.deb .icon {
  width: 48px;
  height: 48px;
  background-size: 600px 1163px;
  background-position: 0px -462px;
  background-image: url("admin.svg");
  background-repeat: no-repeat;
}
.InstallersDialog li.rpm .icon {
  width: 48px;
  height: 48px;
  background-size: 600px 1163px;
  background-position: 0px -535px;
  background-image: url("admin.svg");
  background-repeat: no-repeat;
}
.InstallersDialog li.exe .icon {
  width: 48px;
  height: 48px;
  background-size: 600px 1163px;
  background-position: 0px -608px;
  background-image: url("admin.svg");
  background-repeat: no-repeat;
}
.InstallersDialog li.jar .icon {
  width: 48px;
  height: 48px;
  background-size: 600px 1163px;
  background-position: 0px -681px;
  background-image: url("admin.svg");
  background-repeat: no-repeat;
}
.InstallersDialog p {
  font-size: 14px;
  line-height: 19px;
}
.AccessTokenCreationDialog .intro {
  margin-left: 8px;
  padding-bottom: 20px;
}
.AccessTokenCreationDialog .intro fieldset > div {
  min-height: 28px;
  line-height: 28px;
}
.AccessTokenCreationDialog .intro fieldset > div label {
  min-width: 153px;
  display: inline-block;
  font-size: 15px;
}
.AccessTokenCreationDialog .intro fieldset > div label + div {
  display: inline-block;
}
.AccessTokenCreationDialog .intro fieldset > div input {
  width: 180px;
  border-color: transparent transparent #ababab;
  border-style: solid;
  border-width: 1px;
  padding: 5px;
  font: 15px "ProximaNovaLight";
  min-height: 30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ie-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}
.AccessTokenCreationDialog .intro fieldset > div input::-webkit-input-placeholder {
  font-style: italic;
  color: #b6b6b6;
}
.AccessTokenCreationDialog .intro fieldset > div input:-moz-placeholder {
  font-style: italic;
  color: #b6b6b6;
}
.AccessTokenCreationDialog .intro fieldset > div input::-moz-placeholder {
  font-style: italic;
  color: #b6b6b6;
}
.AccessTokenCreationDialog .intro fieldset > div input:-ms-input-placeholder {
  font-style: italic;
  color: #b6b6b6;
}
.AccessTokenCreationDialog .intro fieldset > div input:focus {
  border-bottom-color: #0099ff;
}
.AccessTokenCreationDialog .intro fieldset > div input[readonly] {
  border-bottom-color: transparent;
  background-color: #e5e5e5;
}
.AccessTokenCreationDialog .intro fieldset > div input[disabled] {
  background-color: transparent;
}
.AccessTokenCreationDialog .intro fieldset > div .select2-container {
  min-width: 180px;
}
.AccessTokenCreationDialog .intro fieldset > div + div {
  margin-top: 8px;
}
.AccessTokenCreationDialog .success {
  margin-top: 0;
}
.AccessTokenCreationDialog .success code {
  font: 17px monospace;
  margin: 1em 0;
  background-color: rgba(0, 0, 0, 0.06);
  padding: 8px;
  color: #404040;
  display: block;
}
.FailuresDialog {
  max-width: none;
  display: flex;
  padding: 65px 38px 47px 38px;
}
.FailuresDialog h2 {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  position: absolute;
  top: 21px;
  left: 21px;
  right: 53px;
}
.FailuresDialog .failures,
.FailuresDialog .failure {
  overflow-y: auto;
}
.FailuresDialog .failures {
  font-size: 14px;
  width: 286px;
}
.FailuresDialog .failures ol {
  border-right: 2px solid #e5e5e5;
  margin-right: 5px;
  min-height: 100%;
}
.FailuresDialog .failures li a {
  display: flex;
  align-items: baseline;
  color: #545454;
  padding-bottom: 7px;
}
.FailuresDialog .failures li a .errorName {
  flex: 1 1;
  font-family: "ProximaNovaSemiBold";
}
.FailuresDialog .failures li a .errorDate {
  font-style: italic;
  font-size: 13px;
  color: #999999;
  text-align: right;
  padding-right: 33px;
  position: relative;
}
.FailuresDialog .failures li.activated a,
.FailuresDialog .failures li:hover a,
.FailuresDialog .failures li.activated a .errorDate,
.FailuresDialog .failures li:hover a .errorDate {
  color: #0099ff;
}
.FailuresDialog .failures li.activated .errorDate:after {
  content: "";
  width: 8px;
  height: 14px;
  background-size: 600px 1163px;
  background-position: 0px -754px;
  background-image: url("admin.svg");
  background-repeat: no-repeat;
  display: inline-block;
  position: absolute;
  right: -7px;
  top: -1px;
}
.FailuresDialog .failures li + li a {
  padding-top: 7px;
}
.FailuresDialog .failure {
  margin-left: 17px;
  min-height: 163px;
  flex: 1 1;
}
.FailuresDialog .failure .errorMessage {
  margin-left: 6px;
}
.FailuresDialog .bottomLink.clear {
  color: #c74040;
  left: 15px;
  right: auto;
}
.FailuresDialog .bottomLink.clear.one {
  left: 334px;
}
.AuthorizeCodeDialog {
  width: 460px;
}
.AuthorizeCodeDialog input.code {
  font-size: 88px;
  border: 2px solid #e5e5e5;
  font-family: monospace;
  text-align: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ie-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}
.AuthorizeCodeDialog .intro label {
  display: none;
}
.AuthorizeCodeDialog .intro fieldset {
  margin: 26px 0 18px;
  text-align: center;
}
.AuthorizeCodeDialog .intro div[data-error] {
  color: #c74040;
  font-size: 13px;
  margin-top: 14px;
}
.AuthorizeCodeDialog .success {
  margin: 8px 0 26px;
}
.AuthorizeCodeDialog .success.code-sent .code-unsent,
.AuthorizeCodeDialog .success .code-sent {
  display: none;
}
.AuthorizeCodeDialog .success.code-sent .code-sent {
  display: block;
}
.AuthorizeCodeDialog .success h4 {
  font-size: 19px;
  margin-bottom: 16px;
}
.AuthorizeCodeDialog .success .code-unsent p {
  font-size: 14px;
  text-align: left;
}
.AuthorizeCodeDialog .success .code-unsent > div {
  margin-top: 26px;
}
.AuthorizeCodeDialog .success .code-unsent .code {
  border-right: none;
  border-color: #0099ff;
}
.AuthorizeCodeDialog .success .code-unsent .copy {
  font-family: ProximaNovaSemiBold;
  color: white;
  background: #0099ff;
  line-height: 111px;
  width: 68px;
  display: inline-block;
  height: 107px;
  vertical-align: top;
}
.AuthorizeCodeDialog .success .code-unsent .copy:hover {
  opacity: 0.8;
}
.AuthorizeCodeDialog .success .code-unsent .copied .copy {
  background-color: #2ebc27;
  opacity: 1;
}
.AuthorizeCodeDialog .success .code-unsent .copied .code {
  border-color: #2ebc27;
}
.AuthorizeCodeDialog .success .code-unsent .bottomLink {
  font-size: 13px;
}
.O365AuthDialog .note {
  font-size: 14px;
  margin-top: 7px;
}
.ContactAddDialog .intro {
  margin-left: 17px;
}
.ContactAddDialog .intro fieldset > div {
  min-height: 28px;
  line-height: 28px;
}
.ContactAddDialog .intro fieldset > div label {
  min-width: 114px;
  display: inline-block;
  font-size: 15px;
}
.ContactAddDialog .intro fieldset > div label + div {
  display: inline-block;
}
.ContactAddDialog .intro fieldset > div input {
  width: 180px;
  border-color: transparent transparent #ababab;
  border-style: solid;
  border-width: 1px;
  padding: 5px;
  font: 15px "ProximaNovaLight";
  min-height: 30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ie-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}
.ContactAddDialog .intro fieldset > div input::-webkit-input-placeholder {
  font-style: italic;
  color: #b6b6b6;
}
.ContactAddDialog .intro fieldset > div input:-moz-placeholder {
  font-style: italic;
  color: #b6b6b6;
}
.ContactAddDialog .intro fieldset > div input::-moz-placeholder {
  font-style: italic;
  color: #b6b6b6;
}
.ContactAddDialog .intro fieldset > div input:-ms-input-placeholder {
  font-style: italic;
  color: #b6b6b6;
}
.ContactAddDialog .intro fieldset > div input:focus {
  border-bottom-color: #0099ff;
}
.ContactAddDialog .intro fieldset > div input[readonly] {
  border-bottom-color: transparent;
  background-color: #e5e5e5;
}
.ContactAddDialog .intro fieldset > div input[disabled] {
  background-color: transparent;
}
.ContactAddDialog .intro fieldset > div + div {
  margin-top: 5px;
}
.ContactBulkUploadDialog {
  max-width: 512px;
}
.ContactBulkUploadDialog .intro {
  color: #b6b6b6;
  line-height: 27px;
  padding-left: 27px;
}
.ContactBulkUploadDialog .intro li {
  list-style-type: decimal;
}
.ContactBulkUploadDialog .intro li > span {
  color: #545454;
}
.ContactBulkUploadDialog .intro .upload {
  position: relative;
  overflow: hidden;
  vertical-align: bottom;
  display: inline-block;
}
.ContactBulkUploadDialog .intro .upload input {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
  font-size: 200px;
  cursor: pointer;
}
.StepsDialog.AddContactList .in-progress-updating,
.StepsDialog.AddContactList .success-updating {
  display: none !important;
}
.StepsDialog.UpdateContactList .in-progress-adding,
.StepsDialog.UpdateContactList .success-adding {
  display: none !important;
}
.EditPage form {
  display: inline-block;
  vertical-align: top;
}
.EditPage.new .hideWhenNew {
  display: none;
}
.EditPage div[data-fields] {
  position: relative;
}
.EditPage div[data-fields] + div[data-fields] {
  margin-top: 17px;
}
.EditPage div[data-error] {
  background: white;
  border: 1px solid #c74040;
  cursor: default;
  font-size: 13px;
  left: 283px;
  line-height: 17px;
  padding: 8px;
  position: absolute;
  top: -1px;
  width: 300px;
  z-index: 2;
  white-space: pre-line;
  color: #c74040;
  display: none;
}
.EditPage div[data-error]::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ie-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  background: white;
  border-color: #c74040 transparent transparent #c74040;
  border-style: solid;
  border-width: 1px;
  content: ' ';
  display: block;
  height: 13px;
  left: -7px;
  position: absolute;
  top: 9.5px;
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  width: 13px;
}
.EditPage label {
  font: 15px "ProximaNovaSemiBold";
  color: #545454;
  display: inline-block;
  min-width: 230px;
  margin-left: 13px;
  vertical-align: top;
  line-height: 29px;
}
.EditPage label + div {
  display: inline-block;
  position: relative;
}
.EditPage .warning {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ie-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  /*background-color: rgba(0,0,0,0.06);*/
  border: 1px solid #c74040;
  display: none;
  padding: 8px;
  color: #c74040;
  font-size: 14px;
  margin: 5px 0 7px auto;
  width: 249px;
  white-space: pre-line;
}
.EditPage .warning.show {
  display: block;
}
.EditPage .error div[data-error] {
  display: inline-block;
}
.EditPage .error label {
  color: #c74040;
}
.EditPage .error input[type=text],
.EditPage .error input[type=number],
.EditPage .error input[type=password] {
  border-bottom-color: #c74040;
  color: #c74040;
}
.EditPage .error input[type=text]:focus,
.EditPage .error input[type=number]:focus,
.EditPage .error input[type=password]:focus {
  border-bottom-color: #c74040;
}
.EditPage .error .select2-container .select2-choice {
  border-bottom-color: #c74040;
}
.EditPage .helpIcon {
  width: 8px;
  height: 8px;
  background-size: 600px 1163px;
  background-position: 0px -793px;
  background-image: url("admin.svg");
  background-repeat: no-repeat;
  cursor: default;
  position: absolute;
  right: -16px;
  top: 12px;
  z-index: 1;
}
.EditPage .helpMessage {
  background: white;
  border: 1px solid #ababab;
  cursor: default;
  font-size: 13px;
  left: 283px;
  line-height: 17px;
  padding: 8px;
  position: absolute;
  top: -1px;
  width: 300px;
  z-index: 2;
  white-space: pre-line;
  display: none;
  z-index: 3;
}
.EditPage .helpMessage::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ie-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  background: white;
  border-color: #ababab transparent transparent #ababab;
  border-style: solid;
  border-width: 1px;
  content: ' ';
  display: block;
  height: 13px;
  left: -7px;
  position: absolute;
  top: 9.5px;
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  width: 13px;
}
.EditPage .helpMessageVisible div div[data-error] {
  display: none;
}
.EditPage .helpMessageVisible .helpMessage {
  display: inline-block;
}
.EditPage input[type=text],
.EditPage input[type=number],
.EditPage input[type=password],
.EditPage textarea {
  border-color: transparent transparent #ababab;
  border-style: solid;
  border-width: 1px;
  padding: 5px;
  font: 15px "ProximaNovaLight";
  min-height: 30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ie-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  min-width: 249px;
}
.EditPage input[type=text]::-webkit-input-placeholder,
.EditPage input[type=number]::-webkit-input-placeholder,
.EditPage input[type=password]::-webkit-input-placeholder,
.EditPage textarea::-webkit-input-placeholder {
  font-style: italic;
  color: #b6b6b6;
}
.EditPage input[type=text]:-moz-placeholder,
.EditPage input[type=number]:-moz-placeholder,
.EditPage input[type=password]:-moz-placeholder,
.EditPage textarea:-moz-placeholder {
  font-style: italic;
  color: #b6b6b6;
}
.EditPage input[type=text]::-moz-placeholder,
.EditPage input[type=number]::-moz-placeholder,
.EditPage input[type=password]::-moz-placeholder,
.EditPage textarea::-moz-placeholder {
  font-style: italic;
  color: #b6b6b6;
}
.EditPage input[type=text]:-ms-input-placeholder,
.EditPage input[type=number]:-ms-input-placeholder,
.EditPage input[type=password]:-ms-input-placeholder,
.EditPage textarea:-ms-input-placeholder {
  font-style: italic;
  color: #b6b6b6;
}
.EditPage input[type=text]:focus,
.EditPage input[type=number]:focus,
.EditPage input[type=password]:focus,
.EditPage textarea:focus {
  border-bottom-color: #0099ff;
}
.EditPage input[type=text][readonly],
.EditPage input[type=number][readonly],
.EditPage input[type=password][readonly],
.EditPage textarea[readonly] {
  border-bottom-color: transparent;
  background-color: #e5e5e5;
}
.EditPage input[type=text][disabled],
.EditPage input[type=number][disabled],
.EditPage input[type=password][disabled],
.EditPage textarea[disabled] {
  background-color: transparent;
}
.EditPage textarea {
  border-color: #ababab;
}
.EditPage textarea:focus {
  border-color: #0099ff;
}
.EditPage .select2-container {
  width: 249px;
}
.EditPage .delete {
  width: 32px;
  height: 32px;
  background-size: 600px 1163px;
  background-position: 0px -826px;
  background-image: url("admin.svg");
  background-repeat: no-repeat;
  position: fixed;
  right: 87px;
  bottom: 31px;
}
.EditPage .setupGuides {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ie-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  margin: 13px 0 0 13px;
  font-size: 13px;
}
.EditPage .autoFillDefeatDevice {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.EditPage .advanced > div[data-fields] {
  margin-top: 17px;
}
.EditPage .advanced div[data-fields] {
  display: none;
}
.EditPage .advanced .toggleAdvanced {
  margin: 13px 0 0 13px;
  display: inline-block;
  font-size: 13px;
}
.EditPage .advanced .toggleAdvanced .hide {
  display: none;
}
.EditPage .advanced.visible div[data-fields] {
  display: block;
}
.EditPage .advanced.visible .toggleAdvanced .show {
  display: none;
}
.EditPage .advanced.visible .toggleAdvanced .hide {
  display: inline;
}
.EditPage aside {
  display: inline-block;
  margin-left: 66px;
  max-width: 275px;
}
.EditPage aside .setupAdvice h3 {
  margin-top: 20px;
}
.EditPage aside .setupAdvice .content {
  margin-left: 12px;
  font-size: 13px;
  line-height: 17px;
}
.EditPage aside .setupAdvice code {
  white-space: pre-wrap;
  border: 1px solid #e5e5e5;
  padding: 0px 3px 1px;
  background: #ffffff;
  border-radius: 2px;
  font-family: monospace;
}
.EditPage aside .setupAdvice p {
  margin: 8px 0;
}
.EditPage aside .setupAdvice li {
  margin: 5px 0 5px 21px;
}
.EditPage aside .setupAdvice ol > li {
  list-style-type: decimal;
  margin-left: 21px;
  text-indent: initial;
}
.EditPage aside .setupAdvice ul > li {
  margin-left: 21px;
  text-indent: -13px;
}
.EditPage aside .setupAdvice ul > li::before {
  content: '\2013';
  padding-right: 5px;
}
.EndpointEditPage .externalLink {
  width: 8px;
  height: 8px;
  background-size: 600px 1163px;
  background-position: 0px 0px;
  background-image: url("admin.svg");
  background-repeat: no-repeat;
  background-origin: content-box;
  display: none;
  position: absolute;
  padding: 7px;
  right: 0px;
  bottom: 3px;
}
.EndpointEditPage .hasExternalLink input {
  padding-right: 18px;
}
.EndpointEditPage .hasExternalLink .externalLink {
  display: block;
}
.authorize {
  margin-top: 20px;
  padding: 5px 10px;
  background-color: #0099ff;
  font-weight: bold;
  text-align: center;
  color: #ffffff;
  cursor: pointer;
}
.SleeperCellEditPage .statusAndControls {
  display: inline-block;
  margin-left: 70px;
}
.DialStyleEditPage .preview {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ie-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  background-color: rgba(0, 0, 0, 0.06);
  padding: 8px;
  color: #404040;
  font: 14px monospace;
  margin: 5px 0 7px auto;
  width: 249px;
  overflow-wrap: break-word;
}
.DialStyleEditPage .previewNotes {
  max-width: 460px;
  margin: 35px 0 0 13px;
  font-size: 14px;
}
.DialStyleEditPage .previewNotes ul {
  font: 13px monospace;
  margin: 8px;
}
.EnterpriseEditPage div[data-fields=publicKey] textarea {
  resize: vertical;
  min-height: 100px;
}
.EnterpriseEditPage .gensslInstructionsShow {
  position: absolute;
  top: 31px;
  left: 25px;
  font-size: 12px;
}
.gensslInstructionsModalContents {
  display: none;
  font-size: 14px;
  line-height: 18px;
  max-width: 666px;
}
.gensslInstructionsModalContents code {
  font: 13px monospace;
  display: block;
  white-space: pre;
  padding: 8px;
  background-color: rgba(0, 0, 0, 0.06);
  color: #404040;
  margin: 13px 0;
}
.gensslInstructionsModalContents strong {
  font-family: 'ProximaNovaSemiBold';
}
.gensslInstructionsModalContents p + p {
  margin-top: 7px;
}
.ListPage menu a[type=command] {
  padding: 5px 7px 5px 17px;
  background-origin: content-box;
  display: inline-block;
  text-transform: lowercase;
}
.ListPage menu a[type=command][href] {
  width: auto;
  height: auto;
}
.ListPage menu a[type=command] + a {
  margin-left: 17px;
}
.ListPage menu .add {
  width: 12px;
  height: 12px;
  background-size: 600px 1163px;
  background-position: -17px -879px;
  background-image: url("admin.svg");
  background-repeat: no-repeat;
}
.ListPage menu .backgrid-filter {
  float: right;
  margin-right: 8px;
  width: 168px;
}
.ListPage menu .backgrid-filter input[type=search] {
  border-color: transparent transparent #ababab;
  border-style: solid;
  border-width: 1px;
  padding: 5px;
  font: 15px "ProximaNovaLight";
  min-height: 30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ie-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  width: 11px;
  height: 11px;
  background-size: 600px 1163px;
  background-position: -20px -916px;
  background-image: url("admin.svg");
  background-repeat: no-repeat;
  padding-left: 25px;
  background-origin: content-box;
  width: 100%;
  height: auto;
  border-bottom-color: #e5e5e5;
}
.ListPage menu .backgrid-filter input[type=search]::-webkit-input-placeholder {
  font-style: italic;
  color: #b6b6b6;
}
.ListPage menu .backgrid-filter input[type=search]:-moz-placeholder {
  font-style: italic;
  color: #b6b6b6;
}
.ListPage menu .backgrid-filter input[type=search]::-moz-placeholder {
  font-style: italic;
  color: #b6b6b6;
}
.ListPage menu .backgrid-filter input[type=search]:-ms-input-placeholder {
  font-style: italic;
  color: #b6b6b6;
}
.ListPage menu .backgrid-filter input[type=search]:focus {
  border-bottom-color: #0099ff;
}
.ListPage menu .backgrid-filter input[type=search][readonly] {
  border-bottom-color: transparent;
  background-color: #e5e5e5;
}
.ListPage menu .backgrid-filter input[type=search][disabled] {
  background-color: transparent;
}
.ListPage menu .backgrid-filter .search {
  display: none;
}
.ListPage menu .backgrid-filter .clear {
  display: none !important;
}
.ListPage table {
  border-radius: 0;
  border-color: transparent;
  border-collapse: separate;
}
.ListPage table th {
  background-color: white;
  font-family: 'ProximaNovaSemiBold';
  font-weight: normal;
  font-size: 16px;
  border-bottom: 1px solid #d9d9d9;
  height: 20px;
  line-height: 20px;
  padding-top: 9px;
  padding-bottom: 9px;
}
.ListPage table th a {
  color: #545454;
}
.ListPage table th a:hover {
  color: #0099ff;
}
.ListPage table th.sortable {
  overflow: visible;
  position: relative;
}
.ListPage table th.sortable .sort-caret {
  vertical-align: bottom;
  border: none;
  margin: 0;
  position: absolute;
  left: 11px;
}
.ListPage table th.sortable a:hover .sort-caret {
  width: 13px;
  height: 6px;
  background-size: 600px 1163px;
  background-position: 0px -956px;
  background-image: url("admin.svg");
  background-repeat: no-repeat;
  bottom: -1px;
}
.ListPage table th.sortable.ascending .sort-caret {
  width: 13px;
  height: 6px;
  background-size: 600px 1163px;
  background-position: 0px -987px;
  background-image: url("admin.svg");
  background-repeat: no-repeat;
  bottom: -1px;
}
.ListPage table th.sortable.descending .sort-caret {
  width: 13px;
  height: 6px;
  background-size: 600px 1163px;
  background-position: 0px -1018px;
  background-image: url("admin.svg");
  background-repeat: no-repeat;
  bottom: -6px;
}
.ListPage table th.sortable.ascending a:hover .sort-caret {
  width: 13px;
  height: 6px;
  background-size: 600px 1163px;
  background-position: 0px -956px;
  background-image: url("admin.svg");
  background-repeat: no-repeat;
  bottom: -1px;
}
.ListPage table th.sortable.descending a:hover .sort-caret {
  width: 13px;
  height: 6px;
  background-size: 600px 1163px;
  background-position: 0px -1049px;
  background-image: url("admin.svg");
  background-repeat: no-repeat;
  bottom: -6px;
}
.ListPage table td {
  height: 20px;
  line-height: 20px;
  border-width: 1px 0;
  border-style: solid;
  border-color: transparent;
}
.ListPage table tr:hover td {
  border-color: #ededed transparent;
  background-color: #fafafa;
}
.ListPage .status-cell .status {
  display: block;
  text-align: center;
}
.ListPage .status-cell .status::before {
  content: '\25CF';
  color: #e5e5e5;
  font-size: 11px;
  vertical-align: 2px;
}
.ListPage .status-cell .status.ok::before,
.ListPage .status-cell .status.inACallNow::before,
.ListPage .status-cell .status.reservedForAMeeting::before {
  color: #2ebc27;
}
.ListPage .status-cell .status.hosed::before {
  color: #c74040;
}
.ListPage .status-cell .label {
  display: none;
}
.ListPage .status-cell.withLabels .status {
  display: inline;
  margin-right: 5px;
}
.ListPage .status-cell.withLabels .label {
  display: inline;
}
.ListPage .scrollingTableContainer {
  position: absolute;
  top: 74px;
  left: 18px;
  bottom: 0;
  right: 0;
  overflow-y: auto;
}
.ListPage .scrollingTableContainer table {
  margin-top: 38px;
}
.ListPage .scrollingTableContainer table thead {
  position: fixed;
  margin-top: -46px;
  z-index: 1;
}
.ListPage .emptyHint {
  text-align: center;
  margin: 60px 29px 0 0;
  display: none;
}
.ListPage .emptyHint h2 {
  font-size: 22px;
}
.ListPage .emptyHint h2::after {
  content: '';
  border-bottom: 1px solid #e5e5e5;
  height: 0;
  width: 172px;
  display: block;
  margin: 28px auto;
}
.ListPage .emptyHint p {
  font-size: 16px;
  line-height: 20px;
}
.ListPage .emptyHint p + p {
  margin-top: 18px;
}
.backgrid {
  width: auto;
}
.backgrid td,
.backgrid th {
  max-width: none;
}
.backgrid th {
  text-align: left;
}
.SleeperCellListPage menu .installers {
  width: 12px;
  height: 12px;
  background-size: 600px 1163px;
  background-position: -17px -1076px;
  background-image: url("admin.svg");
  background-repeat: no-repeat;
}
.SleeperCellListPage table .name {
  width: 235px;
  max-width: 235px;
}
.SleeperCellListPage table .health {
  width: 100px;
  max-width: 100px;
}
.SleeperCellListPage table .version {
  width: 180px;
  max-width: 180px;
}
.SleeperCellListPage table .endpointCount {
  width: 108px;
  max-width: 108px;
}
.SleeperCellListPage table .instances {
  width: 140px;
  max-width: 140px;
}
.SleeperCellListPage table th {
  /*&.health {
                text-align: center;
            }*/
}
.SleeperCellListPage table td {
  padding-top: 6px;
}
.EndpointListPage menu .bulkUpload {
  width: 12px;
  height: 12px;
  background-size: 600px 1163px;
  background-position: -17px -1113px;
  background-image: url("admin.svg");
  background-repeat: no-repeat;
}
.EndpointListPage table .name {
  width: 210px;
  max-width: 210px;
}
.EndpointListPage table .listenerService {
  width: 117px;
  max-width: 117px;
}
.EndpointListPage table .ipAddress {
  width: 138px;
  max-width: 138px;
}
.EndpointListPage table .controlProtocol {
  width: 210px;
  max-width: 210px;
}
.EndpointListPage table .callActive {
  width: 65px;
  max-width: 65px;
}
.EndpointListPage table .reserved {
  width: 65px;
  max-width: 65px;
}
.EndpointListPage table .health {
  width: 65px;
  max-width: 65px;
}
.EndpointListPage table th.callActive,
.EndpointListPage table th.reserved,
.EndpointListPage table th.health {
  text-align: center;
}
.EndpointListPage table th.callActive.sortable .sort-caret,
.EndpointListPage table th.reserved.sortable .sort-caret,
.EndpointListPage table th.health.sortable .sort-caret {
  left: 50%;
  margin-left: -6px;
}
.EndpointListPage table th td {
  padding-top: 1px;
}
.DialStyleListPage table .name {
  width: 250px;
  max-width: 250px;
}
.DialStyleListPage table .formatWithPasscode {
  width: 400px;
  max-width: 400px;
}
.DialStyleListPage table .formatWithoutPasscode {
  width: 350px;
  max-width: 350px;
}
.EnterpriseListPage table .name {
  width: 235px;
  max-width: 235px;
}
.EnterpriseListPage table .label {
  width: 235px;
  max-width: 235px;
}
.EnterpriseListPage table .manage {
  width: 180px;
  max-width: 180px;
}
.EnterpriseListPage table td.manage,
.EnterpriseListPage table td.edit {
  text-transform: lowercase;
}
.AccessTokenListPage menu .authorizeCode {
  width: 12px;
  height: 12px;
  background-size: 600px 1163px;
  background-position: -17px -879px;
  background-image: url("admin.svg");
  background-repeat: no-repeat;
}
.AccessTokenListPage menu .deleteAll {
  width: 12px;
  height: 12px;
  background-size: 225px 436.125px;
  background-position: -17px -306.75px;
  background-image: url("admin.svg");
  background-repeat: no-repeat;
  color: #c74040;
}
.AccessTokenListPage table .accessToken {
  width: 390px;
  max-width: 390px;
}
.AccessTokenListPage table .creationDate,
.AccessTokenListPage table .expirationDate {
  width: 200px;
  max-width: 200px;
}
.AccessTokenListPage table .clientName {
  width: 200px;
  max-width: 200px;
}
.AccessTokenListPage table .roles {
  width: 100px;
  max-width: 100px;
}
.AccessTokenListPage table .revoke {
  width: 60px;
  max-width: 60px;
}
.AccessTokenListPage table td.revoke {
  text-transform: lowercase;
}
.AccessTokenListPage table td.revoke a {
  color: #c74040;
}
.AccessTokenListPage td.accessToken.self::after {
  font-family: 'ProximaNovaSemiBold';
  content: ' \2013 your browser';
}
.ContactListEditPage .addContactsMenu {
  margin-left: 13px;
  margin-top: 8px;
}
.ContactListEditPage .addContactButton,
.ContactListEditPage .bulkUploadButton {
  background-origin: content-box;
  padding: 5px 7px 5px 17px;
  cursor: pointer;
}
.ContactListEditPage .addContactButton {
  width: 12px;
  height: 12px;
  background-size: 600px 1163px;
  background-position: -17px -879px;
  background-image: url("admin.svg");
  background-repeat: no-repeat;
}
.ContactListEditPage .bulkUploadButton {
  width: 12px;
  height: 12px;
  background-size: 600px 1163px;
  background-position: -17px -1113px;
  background-image: url("admin.svg");
  background-repeat: no-repeat;
  margin-left: 17px;
}
.ContactListEditPage .contacts {
  padding-top: 10px;
  margin-left: 13px;
  margin-bottom: 15px;
}
.ContactListEditPage .contacts .contactOuter {
  width: 480px;
  padding: 10px 0;
  border-bottom: dashed 1px #ccc;
}
.ContactListEditPage .contacts .contactOuter:first-child {
  border-top: dashed 1px #ccc;
}
.ContactListEditPage .contactEdit,
.ContactListEditPage .contactDelete {
  float: right;
  font-weight: bold;
  color: #ffffff;
  padding: 0px 4px;
  border-radius: 4px;
  cursor: pointer;
}
.ContactListEditPage .contactEdit {
  background-color: #aaccff;
  margin-right: 5px;
}
.ContactListEditPage .contactDelete {
  background-color: #ffbbbb;
}
.ContactAddDialog input {
  margin-bottom: 5px;
  width: 300px !important;
}
.MeetingUiSettingEditPage .blueJeans input,
.MeetingUiSettingEditPage .teams input {
  margin-top: 7px;
}
.MeetingUiSettingListPage table th {
  width: 450px;
}
.StatusAndControlPanel .zero,
.StatusAndControlPanel .status,
.StatusAndControlPanel .controls,
.StatusAndControlPanel .system,
.StatusAndControlPanel .subscription {
  margin-left: 10px;
  font-size: 15px;
  line-height: 22px;
}
.StatusAndControlPanel .status > li::before {
  content: '\25CF';
  color: #e5e5e5;
  margin-right: 17px;
  font-size: 11px;
  vertical-align: 2px;
  display: inline-block;
  width: 0;
}
.StatusAndControlPanel .status > li.ok::before {
  color: #2ebc27;
}
.StatusAndControlPanel .status > li.hosed::before {
  color: #c74040;
}
.StatusAndControlPanel .status .failures.ok a {
  color: inherit;
}
.StatusAndControlPanel .links a::before {
  content: '\203A';
  margin-right: 10px;
  margin-left: 2px;
}
.StatusAndControlPanel #zeroTouch h3 {
  margin-top: 20px;
}
.StatusAndControlPanel #zeroTouchPaired {
  margin-top: 10px;
}
.StatusAndControlPanel #zeroTouchPaired h3 {
  margin-left: 10px;
  margin-bottom: 5px;
  font-size: 14px;
}
.StatusAndControlPanel #zeroTouchPaired ul {
  margin-left: 20px;
  padding-left: 10px;
  font-size: 14px;
  line-height: 18px;
}
.StatusAndControlPanel #zeroTouchPaired ul li {
  list-style-type: disc;
}
.StatusAndControlPanel #systemDetails h3,
.StatusAndControlPanel #subscriptionDetails h3 {
  margin-top: 20px;
}
.StatusAndControlPanel #systemDetails .system,
.StatusAndControlPanel #subscriptionDetails .system,
.StatusAndControlPanel #systemDetails .subscription,
.StatusAndControlPanel #subscriptionDetails .subscription {
  font-size: 12px;
  line-height: 17px;
}
.StatusAndControlPanel .status > li ol {
  margin-top: 2px;
}
.StatusAndControlPanel .status > li ol,
.StatusAndControlPanel .status > li .toggleExtra {
  margin-left: 28px;
  font-size: 12px;
  line-height: 19px;
}
.StatusAndControlPanel .status > li li {
  color: #737373;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  padding-left: 11px;
  text-indent: -11px;
}
.StatusAndControlPanel .status > li li::before {
  content: '\2013 ';
  padding-left: 1px;
  padding-right: 3px;
}
.StatusAndControlPanel .status > li li.extra {
  display: none;
}
.StatusAndControlPanel .mightHaveExtras .toggleExtra {
  display: inline-block;
  vertical-align: top;
}
.StatusAndControlPanel .mightHaveExtras .toggleExtra .showFewer {
  display: none;
  padding-left: 1px;
}
.StatusAndControlPanel .mightHaveExtras.extra li.extra {
  display: block;
}
.StatusAndControlPanel .mightHaveExtras.extra .toggleExtra .showFewer {
  display: inline;
}
.StatusAndControlPanel .mightHaveExtras.extra .toggleExtra .showMore {
  display: none;
}
.StatusAndControlPanel .multiline li + li {
  margin-top: 0.5em;
}
.StatusAndControlPanel a.refresh {
  width: 9px;
  height: 9px;
  background-size: 600px 1163px;
  background-position: 0px -1154px;
  background-image: url("admin.svg");
  background-repeat: no-repeat;
  opacity: 0.2;
  padding: 3px;
  vertical-align: -3px;
  background-origin: content-box;
  display: inline-block;
}
.StatusAndControlPanel a.refresh:hover {
  opacity: 0.4;
}
.EndpointStatusAndControlPanel .controls .dirtyWarning {
  display: none;
  font-style: italic;
  font-size: 13px;
  line-height: 17px;
  margin-left: 2px;
  margin-top: 5px;
  color: #999999;
}
.dirty.EndpointStatusAndControlPanel .controls .dirtyWarning {
  display: block;
}
.dirty.EndpointStatusAndControlPanel .controls a {
  color: #999999;
  cursor: default;
}
.StatusPage h3 a {
  color: inherit;
  max-width: none;
}
.StatusPage h3 a:hover {
  color: #0099ff;
}
.StatusPage li {
  line-height: 27px;
}
.StatusPage .statusList {
  margin-right: 88px;
}
.StatusPage .statusList li::before {
  content: '\25CF';
  color: #e5e5e5;
  margin-right: 17px;
  font-size: 11px;
  vertical-align: 2px;
  display: inline-block;
  width: 0;
}
.StatusPage .statusList li.ok::before {
  color: #2ebc27;
}
.StatusPage .statusList li.hosed::before {
  color: #c74040;
}
.StatusPage .showMore {
  display: none;
}
.StatusPage .versions li {
  margin-left: 17px;
}
.StatusPage .column {
  display: inline-block;
  vertical-align: top;
}
.StatusPage .systems {
  margin-bottom: 20px;
}
.StatusPage .clickable {
  cursor: pointer;
}
.StatusPage .integrationStatusOuter {
  display: none;
  margin-top: 20px;
}
.GuidesPage ul,
.GuidesPage p {
  margin-left: 17px;
  line-height: 24px;
}
.GuidesPage section + section {
  margin-top: 17px;
}
.AnalyticsPage {
  padding-top: 17px;
}
.AnalyticsPage .column.numbers,
.AnalyticsPage .column.lists {
  display: inline-block;
  vertical-align: top;
}
.AnalyticsPage .column.numbers {
  min-width: 286px;
  margin-left: 30px;
}
.AnalyticsPage .column.lists {
  min-width: 310px;
  margin-left: 50px;
}
.AnalyticsPage .column.graphs {
  margin-top: 54px;
}
.AnalyticsPage section {
  margin: 29px 0 36px;
}
.AnalyticsPage .metric.numeric {
  margin-top: 29px;
}
.AnalyticsPage .metric.numeric .value {
  min-width: 96px;
  font-size: 42px;
  display: inline-block;
  text-align: right;
}
.AnalyticsPage .metric.numeric .label {
  opacity: 0.85;
  color: #999999;
  font: 15px 'ProximaNovaSemiBold';
  margin-left: 17px;
  text-transform: lowercase;
}
.AnalyticsPage .metric.numeric .label .small {
  font: 12px 'ProximaNovaLight';
}
.AnalyticsPage .metric.numeric + .numeric {
  margin-top: 24px;
}
.AnalyticsPage .metric.list ol {
  margin-left: 67px;
  margin-top: 32px;
}
.AnalyticsPage .metric.list li {
  list-style: decimal outside;
  font-family: 'ProximaNovaSemiBold';
}
.AnalyticsPage .metric.list li > span {
  font-family: 'ProximaNovaLight';
  color: #999999;
}
.AnalyticsPage .join_week_report {
  height: 800px;
}
.AnalyticsPage .join_week_report iframe {
  width: 100%;
  height: 100%;
  border: none;
}
