/* BASICS */

.CodeMirror {
  /* Set height, width, borders, and global font properties here */
  font-family: monospace;
  height: 300px;
  color: black;
}

/* PADDING */

.CodeMirror-lines {
  padding: 4px 0; /* Vertical padding around content */
}
.CodeMirror pre {
  padding: 0 4px; /* Horizontal padding of content */
}

.CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
  background-color: white; /* The little square between H and V scrollbars */
}

/* GUTTER */

.CodeMirror-gutters {
  border-right: 1px solid #ddd;
  background-color: #f7f7f7;
  white-space: nowrap;
}
.CodeMirror-linenumbers {}
.CodeMirror-linenumber {
  padding: 0 3px 0 5px;
  min-width: 20px;
  text-align: right;
  color: #999;
  white-space: nowrap;
}

.CodeMirror-guttermarker { color: black; }
.CodeMirror-guttermarker-subtle { color: #999; }

/* CURSOR */

.CodeMirror-cursor {
  border-left: 1px solid black;
  border-right: none;
  width: 0;
}
/* Shown when moving in bi-directional text */
.CodeMirror div.CodeMirror-secondarycursor {
  border-left: 1px solid silver;
}
.cm-fat-cursor .CodeMirror-cursor {
  width: auto;
  border: 0 !important;
  background: #7e7;
}
.cm-fat-cursor div.CodeMirror-cursors {
  z-index: 1;
}

.cm-animate-fat-cursor {
  width: auto;
  border: 0;
  -webkit-animation: blink 1.06s steps(1) infinite;
  -moz-animation: blink 1.06s steps(1) infinite;
  animation: blink 1.06s steps(1) infinite;
  background-color: #7e7;
}
@-moz-keyframes blink {
  0% {}
  50% { background-color: transparent; }
  100% {}
}
@-webkit-keyframes blink {
  0% {}
  50% { background-color: transparent; }
  100% {}
}
@keyframes blink {
  0% {}
  50% { background-color: transparent; }
  100% {}
}

/* Can style cursor different in overwrite (non-insert) mode */
.CodeMirror-overwrite .CodeMirror-cursor {}

.cm-tab { display: inline-block; text-decoration: inherit; }

.CodeMirror-rulers {
  position: absolute;
  left: 0; right: 0; top: -50px; bottom: -20px;
  overflow: hidden;
}
.CodeMirror-ruler {
  border-left: 1px solid #ccc;
  top: 0; bottom: 0;
  position: absolute;
}

/* DEFAULT THEME */

.cm-s-default .cm-header {color: blue;}
.cm-s-default .cm-quote {color: #090;}
.cm-negative {color: #d44;}
.cm-positive {color: #292;}
.cm-header, .cm-strong {font-weight: bold;}
.cm-em {font-style: italic;}
.cm-link {text-decoration: underline;}
.cm-strikethrough {text-decoration: line-through;}

.cm-s-default .cm-keyword {color: #708;}
.cm-s-default .cm-atom {color: #219;}
.cm-s-default .cm-number {color: #164;}
.cm-s-default .cm-def {color: #00f;}
.cm-s-default .cm-variable,
.cm-s-default .cm-punctuation,
.cm-s-default .cm-property,
.cm-s-default .cm-operator {}
.cm-s-default .cm-variable-2 {color: #05a;}
.cm-s-default .cm-variable-3, .cm-s-default .cm-type {color: #085;}
.cm-s-default .cm-comment {color: #a50;}
.cm-s-default .cm-string {color: #a11;}
.cm-s-default .cm-string-2 {color: #f50;}
.cm-s-default .cm-meta {color: #555;}
.cm-s-default .cm-qualifier {color: #555;}
.cm-s-default .cm-builtin {color: #30a;}
.cm-s-default .cm-bracket {color: #997;}
.cm-s-default .cm-tag {color: #170;}
.cm-s-default .cm-attribute {color: #00c;}
.cm-s-default .cm-hr {color: #999;}
.cm-s-default .cm-link {color: #00c;}

.cm-s-default .cm-error {color: #f00;}
.cm-invalidchar {color: #f00;}

.CodeMirror-composing { border-bottom: 2px solid; }

/* Default styles for common addons */

div.CodeMirror span.CodeMirror-matchingbracket {color: #0f0;}
div.CodeMirror span.CodeMirror-nonmatchingbracket {color: #f22;}
.CodeMirror-matchingtag { background: rgba(255, 150, 0, .3); }
.CodeMirror-activeline-background {background: #e8f2ff;}

/* STOP */

/* The rest of this file contains styles related to the mechanics of
   the editor. You probably shouldn't touch them. */

.CodeMirror {
  position: relative;
  overflow: hidden;
  background: white;
}

.CodeMirror-scroll {
  overflow: scroll !important; /* Things will break if this is overridden */
  /* 30px is the magic margin used to hide the element's real scrollbars */
  /* See overflow: hidden in .CodeMirror */
  margin-bottom: -30px; margin-right: -30px;
  padding-bottom: 30px;
  height: 100%;
  outline: none; /* Prevent dragging from highlighting the element */
  position: relative;
}
.CodeMirror-sizer {
  position: relative;
  border-right: 30px solid transparent;
}

/* The fake, visible scrollbars. Used to force redraw during scrolling
   before actual scrolling happens, thus preventing shaking and
   flickering artifacts. */
.CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
  position: absolute;
  z-index: 6;
  display: none;
}
.CodeMirror-vscrollbar {
  right: 0; top: 0;
  overflow-x: hidden;
  overflow-y: scroll;
}
.CodeMirror-hscrollbar {
  bottom: 0; left: 0;
  overflow-y: hidden;
  overflow-x: scroll;
}
.CodeMirror-scrollbar-filler {
  right: 0; bottom: 0;
}
.CodeMirror-gutter-filler {
  left: 0; bottom: 0;
}

.CodeMirror-gutters {
  position: absolute; left: 0; top: 0;
  min-height: 100%;
  z-index: 3;
}
.CodeMirror-gutter {
  white-space: normal;
  height: 100%;
  display: inline-block;
  vertical-align: top;
  margin-bottom: -30px;
}
.CodeMirror-gutter-wrapper {
  position: absolute;
  z-index: 4;
  background: none !important;
  border: none !important;
}
.CodeMirror-gutter-background {
  position: absolute;
  top: 0; bottom: 0;
  z-index: 4;
}
.CodeMirror-gutter-elt {
  position: absolute;
  cursor: default;
  z-index: 4;
}
.CodeMirror-gutter-wrapper ::selection { background-color: transparent }
.CodeMirror-gutter-wrapper ::-moz-selection { background-color: transparent }

.CodeMirror-lines {
  cursor: text;
  min-height: 1px; /* prevents collapsing before first draw */
}
.CodeMirror pre {
  /* Reset some styles that the rest of the page might have set */
  -moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0;
  border-width: 0;
  background: transparent;
  font-family: inherit;
  font-size: inherit;
  margin: 0;
  white-space: pre;
  word-wrap: normal;
  line-height: inherit;
  color: inherit;
  z-index: 2;
  position: relative;
  overflow: visible;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-variant-ligatures: contextual;
  font-variant-ligatures: contextual;
}
.CodeMirror-wrap pre {
  word-wrap: break-word;
  white-space: pre-wrap;
  word-break: normal;
}

.CodeMirror-linebackground {
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 0;
}

.CodeMirror-linewidget {
  position: relative;
  z-index: 2;
  overflow: auto;
}

.CodeMirror-widget {}

.CodeMirror-rtl pre { direction: rtl; }

.CodeMirror-code {
  outline: none;
}

/* Force content-box sizing for the elements where we expect it */
.CodeMirror-scroll,
.CodeMirror-sizer,
.CodeMirror-gutter,
.CodeMirror-gutters,
.CodeMirror-linenumber {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

.CodeMirror-measure {
  position: absolute;
  width: 100%;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}

.CodeMirror-cursor {
  position: absolute;
  pointer-events: none;
}
.CodeMirror-measure pre { position: static; }

div.CodeMirror-cursors {
  visibility: hidden;
  position: relative;
  z-index: 3;
}
div.CodeMirror-dragcursors {
  visibility: visible;
}

.CodeMirror-focused div.CodeMirror-cursors {
  visibility: visible;
}

.CodeMirror-selected { background: #d9d9d9; }
.CodeMirror-focused .CodeMirror-selected { background: #d7d4f0; }
.CodeMirror-crosshair { cursor: crosshair; }
.CodeMirror-line::selection, .CodeMirror-line > span::selection, .CodeMirror-line > span > span::selection { background: #d7d4f0; }
.CodeMirror-line::-moz-selection, .CodeMirror-line > span::-moz-selection, .CodeMirror-line > span > span::-moz-selection { background: #d7d4f0; }

.cm-searching {
  background: #ffa;
  background: rgba(255, 255, 0, .4);
}

/* Used to force a border model for a node */
.cm-force-border { padding-right: .1px; }

@media print {
  /* Hide the cursor when printing */
  .CodeMirror div.CodeMirror-cursors {
    visibility: hidden;
  }
}

/* See issue #2901 */
.cm-tab-wrap-hack:after { content: ''; }

/* Help users use markselection to safely style text background */
span.CodeMirror-selectedtext { background: none; }
.CodeMirror-hints {
  position: absolute;
  z-index: 10;
  overflow: hidden;
  list-style: none;

  margin: 0;
  padding: 2px;

  -webkit-box-shadow: 2px 3px 5px rgba(0,0,0,.2);
  -moz-box-shadow: 2px 3px 5px rgba(0,0,0,.2);
  box-shadow: 2px 3px 5px rgba(0,0,0,.2);
  border-radius: 3px;
  border: 1px solid silver;

  background: white;
  font-size: 90%;
  font-family: monospace;

  max-height: 20em;
  overflow-y: auto;
}

.CodeMirror-hint {
  margin: 0;
  padding: 0 4px;
  border-radius: 2px;
  white-space: pre;
  color: black;
  cursor: pointer;
}

li.CodeMirror-hint-active {
  background: #08f;
  color: white;
}
.CodeMirror-foldmarker {
  color: blue;
  text-shadow: #b9f 1px 1px 2px, #b9f -1px -1px 2px, #b9f 1px -1px 2px, #b9f -1px 1px 2px;
  font-family: arial;
  line-height: .3;
  cursor: pointer;
}
.CodeMirror-foldgutter {
  width: .7em;
}
.CodeMirror-foldgutter-open,
.CodeMirror-foldgutter-folded {
  cursor: pointer;
}
.CodeMirror-foldgutter-open:after {
  content: "\25BE";
}
.CodeMirror-foldgutter-folded:after {
  content: "\25B8";
}
.CodeMirror-fullscreen {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  height: auto;
  z-index: 9;
}
@font-face{font-family:'Glyphicons Halflings';src:url('../fonts/glyphicons-halflings-regular.eot');src:url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'),url('../fonts/glyphicons-halflings-regular.woff') format('woff'),url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'),url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:normal;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\2a"}.glyphicon-plus:before{content:"\2b"}.glyphicon-euro:before,.glyphicon-eur:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px solid;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;font-size:14px;text-align:left;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.175);-moz-box-shadow:0 6px 12px rgba(0,0,0,0.175);box-shadow:0 6px 12px rgba(0,0,0,0.175);background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{text-decoration:none;color:#262626;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;outline:0;background-color:#337ab7}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#777}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);cursor:not-allowed}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{left:auto;right:0}.dropdown-menu-left{left:0;right:auto}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px solid;content:""}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:1px}@media (min-width:768px){.navbar-right .dropdown-menu{right:0;left:auto}.navbar-right .dropdown-menu-left{right:auto;left:0}}.btn{display:inline-block;margin-bottom:0;font-weight:normal;text-align:center;vertical-align:middle;touch-action:manipulation;cursor:pointer;background-image:none;border:1px solid transparent;white-space:nowrap;padding:6px 12px;font-size:14px;line-height:1.42857143;border-radius:4px;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.btn:focus,.btn:active:focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn.active.focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn:hover,.btn:focus,.btn.focus{color:#333;text-decoration:none}.btn:active,.btn.active{outline:0;background-image:none;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);-moz-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;pointer-events:none;filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=0.65, enabled=1)";opacity:.65;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default:hover,.btn-default:focus,.btn-default.focus,.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled,.btn-default[disabled],fieldset[disabled] .btn-default,.btn-default.disabled:hover,.btn-default[disabled]:hover,fieldset[disabled] .btn-default:hover,.btn-default.disabled:focus,.btn-default[disabled]:focus,fieldset[disabled] .btn-default:focus,.btn-default.disabled.focus,.btn-default[disabled].focus,fieldset[disabled] .btn-default.focus,.btn-default.disabled:active,.btn-default[disabled]:active,fieldset[disabled] .btn-default:active,.btn-default.disabled.active,.btn-default[disabled].active,fieldset[disabled] .btn-default.active{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.btn-primary:hover,.btn-primary:focus,.btn-primary.focus,.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled,.btn-primary[disabled],fieldset[disabled] .btn-primary,.btn-primary.disabled:hover,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary:hover,.btn-primary.disabled:focus,.btn-primary[disabled]:focus,fieldset[disabled] .btn-primary:focus,.btn-primary.disabled.focus,.btn-primary[disabled].focus,fieldset[disabled] .btn-primary.focus,.btn-primary.disabled:active,.btn-primary[disabled]:active,fieldset[disabled] .btn-primary:active,.btn-primary.disabled.active,.btn-primary[disabled].active,fieldset[disabled] .btn-primary.active{background-color:#337ab7;border-color:#2e6da4}.btn-primary .badge{color:#337ab7;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success:hover,.btn-success:focus,.btn-success.focus,.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled,.btn-success[disabled],fieldset[disabled] .btn-success,.btn-success.disabled:hover,.btn-success[disabled]:hover,fieldset[disabled] .btn-success:hover,.btn-success.disabled:focus,.btn-success[disabled]:focus,fieldset[disabled] .btn-success:focus,.btn-success.disabled.focus,.btn-success[disabled].focus,fieldset[disabled] .btn-success.focus,.btn-success.disabled:active,.btn-success[disabled]:active,fieldset[disabled] .btn-success:active,.btn-success.disabled.active,.btn-success[disabled].active,fieldset[disabled] .btn-success.active{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info:hover,.btn-info:focus,.btn-info.focus,.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled,.btn-info[disabled],fieldset[disabled] .btn-info,.btn-info.disabled:hover,.btn-info[disabled]:hover,fieldset[disabled] .btn-info:hover,.btn-info.disabled:focus,.btn-info[disabled]:focus,fieldset[disabled] .btn-info:focus,.btn-info.disabled.focus,.btn-info[disabled].focus,fieldset[disabled] .btn-info.focus,.btn-info.disabled:active,.btn-info[disabled]:active,fieldset[disabled] .btn-info:active,.btn-info.disabled.active,.btn-info[disabled].active,fieldset[disabled] .btn-info.active{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning:hover,.btn-warning:focus,.btn-warning.focus,.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled,.btn-warning[disabled],fieldset[disabled] .btn-warning,.btn-warning.disabled:hover,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning:hover,.btn-warning.disabled:focus,.btn-warning[disabled]:focus,fieldset[disabled] .btn-warning:focus,.btn-warning.disabled.focus,.btn-warning[disabled].focus,fieldset[disabled] .btn-warning.focus,.btn-warning.disabled:active,.btn-warning[disabled]:active,fieldset[disabled] .btn-warning:active,.btn-warning.disabled.active,.btn-warning[disabled].active,fieldset[disabled] .btn-warning.active{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger:hover,.btn-danger:focus,.btn-danger.focus,.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled,.btn-danger[disabled],fieldset[disabled] .btn-danger,.btn-danger.disabled:hover,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger:hover,.btn-danger.disabled:focus,.btn-danger[disabled]:focus,fieldset[disabled] .btn-danger:focus,.btn-danger.disabled.focus,.btn-danger[disabled].focus,fieldset[disabled] .btn-danger.focus,.btn-danger.disabled:active,.btn-danger[disabled]:active,fieldset[disabled] .btn-danger:active,.btn-danger.disabled.active,.btn-danger[disabled].active,fieldset[disabled] .btn-danger.active{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{color:#337ab7;font-weight:normal;border-radius:0}.btn-link,.btn-link:active,.btn-link.active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.btn-link,.btn-link:hover,.btn-link:focus,.btn-link:active{border-color:transparent}.btn-link:hover,.btn-link:focus{color:#23527c;text-decoration:underline;background-color:transparent}.btn-link[disabled]:hover,fieldset[disabled] .btn-link:hover,.btn-link[disabled]:focus,fieldset[disabled] .btn-link:focus{color:#777;text-decoration:none}.btn-lg{padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.05);-moz-box-shadow:0 1px 1px rgba(0,0,0,0.05);box-shadow:0 1px 1px rgba(0,0,0,0.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-right-radius:3px;border-top-left-radius:3px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.panel-title>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.list-group,.panel>.panel-collapse>.list-group{margin-bottom:0}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-right-radius:3px;border-top-left-radius:3px}.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.list-group+.panel-footer{border-top-width:0}.panel>.table,.panel>.table-responsive>.table,.panel>.panel-collapse>.table{margin-bottom:0}.panel>.table caption,.panel>.table-responsive>.table caption,.panel>.panel-collapse>.table caption{padding-left:15px;padding-right:15px}.panel>.table:first-child,.panel>.table-responsive:first-child>.table:first-child{border-top-right-radius:3px;border-top-left-radius:3px}.panel>.table:first-child>thead:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.panel>.table:last-child,.panel>.table-responsive:last-child>.table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-left-radius:3px;border-bottom-right-radius:3px}.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child th,.panel>.table>tbody:first-child>tr:first-child td{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{border:0;margin-bottom:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:4px}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.panel-body,.panel-group .panel-heading+.panel-collapse>.list-group{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#333}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#337ab7}.panel-primary>.panel-heading{color:#fff;background-color:#337ab7;border-color:#337ab7}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#337ab7}.panel-primary>.panel-heading .badge{color:#337ab7;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#337ab7}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.clearfix:before,.clearfix:after,.panel-body:before,.panel-body:after{content:" ";display:table}.clearfix:after,.panel-body:after{clear:both}.center-block{display:block;margin-left:auto;margin-right:auto}.pull-right{float:right !important}.pull-left{float:left !important}.hide{display:none !important}.show{display:block !important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none !important;visibility:hidden !important}.affix{position:fixed}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear;-moz-transition:opacity .15s linear 1s ease-in-out;-webkit-transition:opacity .15s linear 1s ease-in-out;-ms-transition:opacity .15s linear 1s ease-in-out;-o-transition:opacity .15s linear 1s ease-in-out;transition:opacity .15s linear 1s ease-in-out}.fade.in{opacity:1}.collapse{display:none;visibility:hidden}.collapse.in{display:block;visibility:visible}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-property:height, visibility;transition-property:height, visibility;-webkit-transition-duration:.35s;-moz-transition-duration:.35s;transition-duration:.35s;-webkit-transition-timing-function:ease;transition-timing-function:ease}table{background-color:transparent}caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table>thead>tr>th,.table>tbody>tr>th,.table>tfoot>tr>th,.table>thead>tr>td,.table>tbody>tr>td,.table>tfoot>tr>td{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>th,.table>caption+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>td,.table>thead:first-child>tr:first-child>td{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>thead>tr>th,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>tbody>tr>td,.table-condensed>tfoot>tr>td{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>tbody>tr>td,.table-bordered>tfoot>tr>td{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>thead>tr>td{border-bottom-width:2px}.table-striped>tbody>tr:nth-child(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover{background-color:#f5f5f5}table col[class*="col-"]{position:static;float:none;display:table-column}table td[class*="col-"],table th[class*="col-"]{position:static;float:none;display:table-cell}.table>thead>tr>td.active,.table>tbody>tr>td.active,.table>tfoot>tr>td.active,.table>thead>tr>th.active,.table>tbody>tr>th.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>tbody>tr.active>td,.table>tfoot>tr.active>td,.table>thead>tr.active>th,.table>tbody>tr.active>th,.table>tfoot>tr.active>th{background-color:#f5f5f5}.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover,.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr.active:hover>th{background-color:#e8e8e8}.table>thead>tr>td.success,.table>tbody>tr>td.success,.table>tfoot>tr>td.success,.table>thead>tr>th.success,.table>tbody>tr>th.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>tbody>tr.success>td,.table>tfoot>tr.success>td,.table>thead>tr.success>th,.table>tbody>tr.success>th,.table>tfoot>tr.success>th{background-color:#dff0d8}.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover,.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr.success:hover>th{background-color:#d0e9c6}.table>thead>tr>td.info,.table>tbody>tr>td.info,.table>tfoot>tr>td.info,.table>thead>tr>th.info,.table>tbody>tr>th.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>tbody>tr.info>td,.table>tfoot>tr.info>td,.table>thead>tr.info>th,.table>tbody>tr.info>th,.table>tfoot>tr.info>th{background-color:#d9edf7}.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover,.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr.info:hover>th{background-color:#c4e3f3}.table>thead>tr>td.warning,.table>tbody>tr>td.warning,.table>tfoot>tr>td.warning,.table>thead>tr>th.warning,.table>tbody>tr>th.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>tbody>tr.warning>td,.table>tfoot>tr.warning>td,.table>thead>tr.warning>th,.table>tbody>tr.warning>th,.table>tfoot>tr.warning>th{background-color:#fcf8e3}.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover,.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr.warning:hover>th{background-color:#faf2cc}.table>thead>tr>td.danger,.table>tbody>tr>td.danger,.table>tfoot>tr>td.danger,.table>thead>tr>th.danger,.table>tbody>tr>th.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>tbody>tr.danger>td,.table>tfoot>tr.danger>td,.table>thead>tr.danger>th,.table>tbody>tr.danger>th,.table>tfoot>tr.danger>th{background-color:#f2dede}.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover,.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr.danger:hover>th{background-color:#ebcccc}.table-responsive{overflow-x:auto;min-height:0.01%}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>thead>tr>th,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tfoot>tr>td{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>thead>tr>th:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.table-responsive>.table-bordered>thead>tr>th:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>th,.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>td{border-bottom:0}}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:'Source Sans Pro',sans-serif;font-size:14px;font-weight:normal;line-height:1.42857143;text-align:left;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);-moz-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2);white-space:normal}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{margin:0;padding:8px 14px;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow{border-width:11px}.popover>.arrow:after{border-width:10px;content:""}.popover.top>.arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0,0,0,0.25);bottom:-11px}.popover.top>.arrow:after{content:" ";bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#fff}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999;border-right-color:rgba(0,0,0,0.25)}.popover.right>.arrow:after{content:" ";left:1px;bottom:-10px;border-left-width:0;border-right-color:#fff}.popover.bottom>.arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,0.25);top:-11px}.popover.bottom>.arrow:after{content:" ";top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,0.25)}.popover.left>.arrow:after{content:" ";right:1px;border-right-width:0;border-left-color:#fff;bottom:-10px}.tooltip{position:absolute;z-index:1070;display:block;visibility:visible;font-family:'Source Sans Pro',sans-serif;font-size:12px;font-weight:normal;line-height:1.4;filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=0, enabled=1)";opacity:0}.tooltip.in{filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=0.9, enabled=1)";opacity:.9}.tooltip.top{margin-top:-3px;padding:5px 0}.tooltip.right{margin-left:3px;padding:0 5px}.tooltip.bottom{margin-top:3px;padding:5px 0}.tooltip.left{margin-left:-3px;padding:0 5px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;text-decoration:none;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{bottom:0;right:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;line-height:1.42857143;text-decoration:none;color:#337ab7;background-color:#fff;border:1px solid #ddd;margin-left:-1px}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-bottom-left-radius:4px;border-top-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-bottom-right-radius:4px;border-top-right-radius:4px}.pagination>li>a:hover,.pagination>li>span:hover,.pagination>li>a:focus,.pagination>li>span:focus{color:#23527c;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>span,.pagination>.active>a:hover,.pagination>.active>span:hover,.pagination>.active>a:focus,.pagination>.active>span:focus{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7;cursor:default}.pagination>.disabled>span,.pagination>.disabled>span:hover,.pagination>.disabled>span:focus,.pagination>.disabled>a,.pagination>.disabled>a:hover,.pagination>.disabled>a:focus{color:#777;background-color:#fff;border-color:#ddd;cursor:not-allowed}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-bottom-left-radius:6px;border-top-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-bottom-right-radius:6px;border-top-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-bottom-left-radius:3px;border-top-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-bottom-right-radius:3px;border-top-right-radius:3px}.dijitReset{margin:0;border:0;padding:0;font:inherit;line-height:normal;color:inherit}.dj_a11y .dijitReset{-moz-appearance:none}.dijitInline{display:inline-block;border:0;padding:0;vertical-align:middle}table.dijitInline{display:inline-table;box-sizing:content-box;-moz-box-sizing:content-box}.dijitHidden{display:none !important}.dijitVisible{display:block !important;position:relative}.dj_ie6 .dijitComboBox .dijitInputContainer,.dijitInputContainer{overflow:hidden;float:none !important;position:relative}.dj_ie7 .dijitInputContainer{float:left !important;clear:left;display:inline-block !important}.dj_ie .dijitSelect input,.dj_ie input.dijitTextBox,.dj_ie .dijitTextBox input{font-size:100%}.dijitSelect .dijitButtonText{float:left;vertical-align:top}TABLE.dijitSelect{padding:0 !important;border-collapse:separate}.dijitTextBox .dijitSpinnerButtonContainer,.dijitTextBox .dijitArrowButtonContainer,.dijitValidationTextBox .dijitValidationContainer{float:right;text-align:center}.dijitSelect input.dijitInputField,.dijitTextBox input.dijitInputField{padding-left:0 !important;padding-right:0 !important}.dijitValidationTextBox .dijitValidationContainer{display:none}.dijitTeeny{font-size:1px;line-height:1px}.dijitOffScreen{position:absolute !important;left:-10000px !important;top:-10000px !important}.dijitPopup{position:absolute;background-color:transparent;margin:0;border:0;padding:0;-webkit-overflow-scrolling:touch}.dijitPositionOnly{padding:0 !important;border:0 !important;background-color:transparent !important;background-image:none !important;height:auto !important;width:auto !important}.dijitNonPositionOnly{float:none !important;position:static !important;margin:0 0 0 0 !important;vertical-align:middle !important}.dijitBackgroundIframe{position:absolute;left:0;top:0;width:100%;height:100%;z-index:-1;border:0;padding:0;margin:0}.dijitDisplayNone{display:none !important}.dijitContainer{overflow:hidden}.dj_a11y .dijitIcon,.dj_a11y div.dijitArrowButtonInner,.dj_a11y span.dijitArrowButtonInner,.dj_a11y img.dijitArrowButtonInner,.dj_a11y .dijitCalendarIncrementControl,.dj_a11y .dijitTreeExpando{display:none}.dijitSpinner div.dijitArrowButtonInner{display:block}.dj_a11y .dijitA11ySideArrow{display:inline !important;cursor:pointer}.dj_a11y .dijitCalendarDateLabel{padding:1px;border:0px !important}.dj_a11y .dijitCalendarSelectedDate .dijitCalendarDateLabel{border-style:solid !important;border-width:1px !important;padding:0}.dj_a11y .dijitCalendarDateTemplate{padding-bottom:0.1em !important;border:0px !important}.dj_a11y .dijitButtonNode{border:black outset medium !important;padding:0 !important}.dj_a11y .dijitArrowButton{padding:0 !important}.dj_a11y .dijitButtonContents{margin:0.15em}.dj_a11y .dijitTextBoxReadOnly .dijitInputField,.dj_a11y .dijitTextBoxReadOnly .dijitButtonNode{border-style:outset!important;border-width:medium!important;border-color:#999 !important;color:#999 !important}.dijitButtonNode *{vertical-align:middle}.dijitSelect .dijitArrowButtonInner,.dijitButtonNode .dijitArrowButtonInner{background:no-repeat center;width:12px;height:12px;direction:ltr}.dijitLeft{background-position:left top;background-repeat:no-repeat}.dijitStretch{white-space:nowrap;background-repeat:repeat-x}.dijitRight{background-position:right top;background-repeat:no-repeat}.dj_gecko .dj_a11y .dijitButtonDisabled .dijitButtonNode{opacity:0.5}.dijitToggleButton,.dijitButton,.dijitDropDownButton,.dijitComboButton{margin:0.2em;vertical-align:middle}.dijitButtonContents{display:block}td.dijitButtonContents{display:table-cell}.dijitButtonNode img{vertical-align:middle}.dijitToolbar .dijitComboButton{border-collapse:separate}.dijitToolbar .dijitToggleButton,.dijitToolbar .dijitButton,.dijitToolbar .dijitDropDownButton,.dijitToolbar .dijitComboButton{margin:0}.dijitToolbar .dijitButtonContents{padding:1px 2px}.dj_webkit .dijitToolbar .dijitDropDownButton{padding-left:0.3em}.dj_gecko .dijitToolbar .dijitButtonNode::-moz-focus-inner{padding:0}.dijitSelect{border:1px solid gray}.dijitButtonNode{border:1px solid gray;margin:0;line-height:normal;vertical-align:middle;text-align:center;white-space:nowrap}.dj_webkit .dijitSpinner .dijitSpinnerButtonContainer{line-height:inherit}.dijitTextBox .dijitButtonNode{border-width:0}.dijitSelect,.dijitSelect *,.dijitButtonNode,.dijitButtonNode *{cursor:pointer;-webkit-tap-highlight-color:transparent}.dj_ie .dijitButtonNode{zoom:1}.dj_ie .dijitButtonNode button{overflow:visible}div.dijitArrowButton{float:right}.dijitTextBox{border:solid black 1px;width:15em;vertical-align:middle}.dijitTextBoxReadOnly,.dijitTextBoxDisabled{color:gray}.dj_safari .dijitTextBoxDisabled input{color:#B0B0B0}.dj_safari textarea.dijitTextAreaDisabled{color:#333}.dj_gecko .dijitTextBoxReadOnly input.dijitInputField,.dj_gecko .dijitTextBoxDisabled input{-moz-user-input:none}.dijitPlaceHolder{color:#AAAAAA;font-style:italic;position:absolute;top:0;left:0}.dijitTimeTextBox{width:8em}.dijitTextBox input:focus{outline:none}.dijitTextBoxFocused{outline:5px -webkit-focus-ring-color}.dijitSelect input,.dijitTextBox input{float:left}.dj_ie6 input.dijitTextBox,.dj_ie6 .dijitTextBox input{float:none}.dijitInputInner{border:0 !important;background-color:transparent !important;width:100% !important;padding-left:0 !important;padding-right:0 !important;margin-left:0 !important;margin-right:0 !important}.dj_a11y .dijitTextBox input{margin:0 !important}.dijitValidationTextBoxError input.dijitValidationInner,.dijitSelect input,.dijitTextBox input.dijitArrowButtonInner{text-indent:-2em !important;direction:ltr !important;text-align:left !important;height:auto !important}.dj_ie .dijitSelect input,.dj_ie .dijitTextBox input,.dj_ie input.dijitTextBox{overflow-y:visible;line-height:normal}.dijitSelect .dijitSelectLabel span{line-height:100%}.dj_ie .dijitSelect .dijitSelectLabel{line-height:normal}.dj_ie6 .dijitSelect .dijitSelectLabel,.dj_ie7 .dijitSelect .dijitSelectLabel,.dj_ie8 .dijitSelect .dijitSelectLabel,.dj_iequirks .dijitSelect .dijitSelectLabel,.dijitSelect td,.dj_ie6 .dijitSelect input,.dj_iequirks .dijitSelect input,.dj_ie6 .dijitSelect .dijitValidationContainer,.dj_ie6 .dijitTextBox input,.dj_ie6 input.dijitTextBox,.dj_iequirks .dijitTextBox input.dijitValidationInner,.dj_iequirks .dijitTextBox input.dijitArrowButtonInner,.dj_iequirks .dijitTextBox input.dijitSpinnerButtonInner,.dj_iequirks .dijitTextBox input.dijitInputInner,.dj_iequirks input.dijitTextBox{line-height:100%}.dj_a11y input.dijitValidationInner,.dj_a11y input.dijitArrowButtonInner{text-indent:0 !important;width:1em !important;color:black !important}.dijitValidationTextBoxError .dijitValidationContainer{display:inline;cursor:default}.dijitSpinner .dijitSpinnerButtonContainer,.dijitComboBox .dijitArrowButtonContainer{border-width:0 0 0 1px !important}.dj_a11y .dijitSelect .dijitArrowButtonContainer,.dijitToolbar .dijitComboBox .dijitArrowButtonContainer{border-width:0 !important}.dijitComboBoxMenu{list-style-type:none}.dijitSpinner .dijitSpinnerButtonContainer .dijitButtonNode{border-width:0}.dj_ie .dj_a11y .dijitSpinner .dijitSpinnerButtonContainer .dijitButtonNode{clear:both}.dj_ie .dijitToolbar .dijitComboBox{vertical-align:middle}.dijitTextBox .dijitSpinnerButtonContainer{width:1em;position:relative !important;overflow:hidden}.dijitSpinner .dijitSpinnerButtonInner{width:1em;visibility:hidden !important;overflow-x:hidden}.dijitComboBox .dijitButtonNode,.dijitSpinnerButtonContainer .dijitButtonNode{border-width:0}.dj_a11y .dijitSpinnerButtonContainer .dijitButtonNode{border-width:0px !important;border-style:solid !important}.dj_a11y .dijitTextBox .dijitSpinnerButtonContainer,.dj_a11y .dijitSpinner .dijitArrowButtonInner,.dj_a11y .dijitSpinnerButtonContainer input{width:1em !important}.dj_a11y .dijitSpinner .dijitArrowButtonInner{margin:0 auto !important}.dj_ie .dj_a11y .dijitSpinner .dijitArrowButtonInner .dijitInputField{padding-left:0.3em !important;padding-right:0.3em !important;margin-left:0.3em !important;margin-right:0.3em !important;width:1.4em !important}.dj_ie7 .dj_a11y .dijitSpinner .dijitArrowButtonInner .dijitInputField{padding-left:0 !important;padding-right:0 !important;width:1em !important}.dj_ie6 .dj_a11y .dijitSpinner .dijitArrowButtonInner .dijitInputField{margin-left:0.1em !important;margin-right:0.1em !important;width:1em !important}.dj_iequirks .dj_a11y .dijitSpinner .dijitArrowButtonInner .dijitInputField{margin-left:0 !important;margin-right:0 !important;width:2em !important}.dijitSpinner .dijitSpinnerButtonContainer .dijitArrowButton{padding:0;position:absolute !important;right:0;float:none;height:50%;width:100%;bottom:auto;left:0;right:auto}.dj_iequirks .dijitSpinner .dijitSpinnerButtonContainer .dijitArrowButton{width:auto}.dj_a11y .dijitSpinnerButtonContainer .dijitArrowButton{overflow:visible !important}.dijitSpinner .dijitSpinnerButtonContainer .dijitDownArrowButton{top:50%;border-top-width:1px !important}.dijitSpinner .dijitSpinnerButtonContainer .dijitUpArrowButton{top:0}.dijitSpinner .dijitArrowButtonInner{margin:auto;overflow-x:hidden;height:100% !important}.dj_iequirks .dijitSpinner .dijitArrowButtonInner{height:auto !important}.dijitSpinner .dijitArrowButtonInner .dijitInputField{-moz-transform:scale(.5);-moz-transform-origin:center top;-webkit-transform:scale(.5);-webkit-transform-origin:center top;-o-transform:scale(.5);-o-transform-origin:center top;transform:scale(.5);transform-origin:left top;padding-top:0;padding-bottom:0;padding-left:0 !important;padding-right:0 !important;width:100%;visibility:hidden}.dj_ie .dijitSpinner .dijitArrowButtonInner .dijitInputField{zoom:50%}.dijitSpinner .dijitSpinnerButtonContainer .dijitArrowButtonInner{overflow:hidden}.dj_a11y .dijitSpinner .dijitSpinnerButtonContainer .dijitArrowButton{width:100%}.dj_iequirks .dj_a11y .dijitSpinner .dijitSpinnerButtonContainer .dijitArrowButton{width:1em}.dj_a11y .dijitSpinner .dijitArrowButtonInner .dijitInputField{vertical-align:top;visibility:visible}.dj_a11y .dijitSpinnerButtonContainer{width:1em}.dijitCheckBox,.dijitRadio,.dijitCheckBoxInput{padding:0;border:0;width:16px;height:16px;background-position:center center;background-repeat:no-repeat;overflow:hidden}.dijitCheckBox input,.dijitRadio input{margin:0;padding:0;display:block}.dijitCheckBoxInput{opacity:0.01}.dj_ie .dijitCheckBoxInput{filter:alpha(opacity=0)}.dj_a11y .dijitCheckBox,.dj_a11y .dijitRadio{width:auto !important;height:auto !important}.dj_a11y .dijitCheckBoxInput{opacity:1;filter:none;width:auto;height:auto}.dj_a11y .dijitFocusedLabel{border:1px dotted;outline:0px !important}.dijitProgressBar{z-index:0}.dijitProgressBarEmpty{position:relative;overflow:hidden;border:1px solid black;z-index:0}.dijitProgressBarFull{position:absolute;overflow:hidden;z-index:-1;top:0;width:100%}.dj_ie6 .dijitProgressBarFull{height:1.6em}.dijitProgressBarTile{position:absolute;overflow:hidden;top:0;left:0;bottom:0;right:0;margin:0;padding:0;width:100%;height:auto;background-color:#aaa;background-attachment:fixed}.dj_a11y .dijitProgressBarTile{border-width:2px;border-style:solid;background-color:transparent !important}.dj_ie6 .dijitProgressBarTile{position:static;height:1.6em}.dijitProgressBarIndeterminateHighContrastImage{display:none}.dj_a11y .dijitProgressBarIndeterminate .dijitProgressBarIndeterminateHighContrastImage{display:block;position:absolute;top:0;bottom:0;margin:0;padding:0;width:100%;height:auto}.dijitProgressBarLabel{display:block;position:static;width:100%;text-align:center;background-color:transparent !important}.dijitTooltip{position:absolute;z-index:2000;display:block;left:0;top:-10000px;overflow:visible}.dijitTooltipContainer{border:solid black 2px;background:#b8b5b5;color:black;font-size:small}.dijitTooltipFocusNode{padding:2px 2px 2px 2px}.dijitTooltipConnector{position:absolute}.dj_a11y .dijitTooltipConnector{display:none}.dijitTooltipData{display:none}.dijitLayoutContainer{position:relative;display:block;overflow:hidden}.dijitAlignTop,.dijitAlignBottom,.dijitAlignLeft,.dijitAlignRight{position:absolute;overflow:hidden}body .dijitAlignClient{position:absolute}.dijitBorderContainer,.dijitBorderContainerNoGutter{position:relative;overflow:hidden;z-index:0}.dijitBorderContainerPane,.dijitBorderContainerNoGutterPane{position:absolute !important;z-index:2}.dijitBorderContainer>.dijitTextArea{resize:none}.dijitGutter{position:absolute;font-size:1px}.dijitSplitter{position:absolute;overflow:hidden;z-index:10;background-color:#fff;border-color:gray;border-style:solid;border-width:0}.dj_ie .dijitSplitter{z-index:1}.dijitSplitterActive{z-index:11 !important}.dijitSplitterCover{position:absolute;z-index:-1;top:0;left:0;width:100%;height:100%}.dijitSplitterCoverActive{z-index:3 !important}.dj_ie .dijitSplitterCover{background:white;opacity:0}.dj_ie6 .dijitSplitterCover,.dj_ie7 .dijitSplitterCover,.dj_ie8 .dijitSplitterCover{filter:alpha(opacity=0)}.dijitSplitterH{height:7px;border-top:1px;border-bottom:1px;cursor:row-resize;-webkit-tap-highlight-color:transparent}.dijitSplitterV{width:7px;border-left:1px;border-right:1px;cursor:col-resize;-webkit-tap-highlight-color:transparent}.dijitSplitContainer{position:relative;overflow:hidden;display:block}.dijitSplitPane{position:absolute}.dijitSplitContainerSizerH,.dijitSplitContainerSizerV{position:absolute;font-size:1px;background-color:ThreeDFace;border:1px solid;border-color:ThreeDHighlight ThreeDShadow ThreeDShadow ThreeDHighlight;margin:0}.dijitSplitContainerSizerH .thumb,.dijitSplitterV .dijitSplitterThumb{overflow:hidden;position:absolute;top:49%}.dijitSplitContainerSizerV .thumb,.dijitSplitterH .dijitSplitterThumb{position:absolute;left:49%}.dijitSplitterShadow,.dijitSplitContainerVirtualSizerH,.dijitSplitContainerVirtualSizerV{font-size:1px;background-color:ThreeDShadow;-moz-opacity:0.5;opacity:0.5;filter:alpha(opacity=50);margin:0}.dijitSplitContainerSizerH,.dijitSplitContainerVirtualSizerH{cursor:col-resize}.dijitSplitContainerSizerV,.dijitSplitContainerVirtualSizerV{cursor:row-resize}.dj_a11y .dijitSplitterH{border-top:1px solid #d3d3d3 !important;border-bottom:1px solid #d3d3d3 !important}.dj_a11y .dijitSplitterV{border-left:1px solid #d3d3d3 !important;border-right:1px solid #d3d3d3 !important}.dijitContentPane{display:block;overflow:auto;-webkit-overflow-scrolling:touch}.dijitContentPaneSingleChild{overflow:hidden}.dijitContentPaneLoading .dijitIconLoading,.dijitContentPaneError .dijitIconError{margin-right:9px}.dijitTitlePane{display:block;overflow:hidden}.dijitFieldset{border:1px solid gray}.dijitTitlePaneTitle,.dijitFieldset legend{cursor:pointer;-webkit-tap-highlight-color:transparent}.dijitFixedOpen,.dijitFixedClosed{cursor:default}.dijitFixedOpen .dijitArrowNode,.dijitFixedOpen .dijitArrowNodeInner,.dijitFixedClosed .dijitArrowNode,.dijitFixedClosed .dijitArrowNodeInner{display:none}.dijitTitlePaneTitle *{vertical-align:middle}.dijitTitlePane .dijitArrowNodeInner,.dijitFieldset .dijitArrowNodeInner{display:none}.dj_a11y .dijitTitlePane .dijitArrowNodeInner,.dj_a11y .dijitFieldset .dijitArrowNodeInner{display:inline !important;font-family:monospace}.dj_a11y .dijitTitlePane .dijitArrowNode,.dj_a11y .dijitFieldset .dijitArrowNode{display:none}.dj_ie6 .dijitTitlePaneContentOuter,.dj_ie6 .dijitTitlePane .dijitTitlePaneTitle{zoom:1}.dijitColorPalette{border:1px solid #999;background:#fff;position:relative}.dijitColorPalette .dijitPaletteTable{padding:2px 3px 3px 3px;position:relative;overflow:hidden;outline:0;border-collapse:separate}.dj_ie6 .dijitColorPalette .dijitPaletteTable,.dj_ie7 .dijitColorPalette .dijitPaletteTable,.dj_iequirks .dijitColorPalette .dijitPaletteTable{padding:0;margin:2px 3px 3px 3px}.dijitColorPalette .dijitPaletteCell{font-size:1px;vertical-align:middle;text-align:center;background:none}.dijitColorPalette .dijitPaletteImg{padding:1px;border:1px solid #999;margin:2px 1px;cursor:default;font-size:1px}.dj_gecko .dijitColorPalette .dijitPaletteImg{padding-bottom:0}.dijitColorPalette .dijitColorPaletteSwatch{width:14px;height:12px}.dijitPaletteTable td{padding:0}.dijitColorPalette .dijitPaletteCell:hover .dijitPaletteImg{border:1px solid #000}.dijitColorPalette .dijitPaletteCell:active .dijitPaletteImg,.dijitColorPalette .dijitPaletteTable .dijitPaletteCellSelected .dijitPaletteImg{border:2px solid #000;margin:1px 0}.dj_a11y .dijitColorPalette .dijitPaletteTable,.dj_a11y .dijitColorPalette .dijitPaletteTable *{background-color:transparent !important}.dijitAccordionContainer{border:1px solid #b7b7b7;border-top:0 !important}.dijitAccordionTitle{cursor:pointer;-webkit-tap-highlight-color:transparent}.dijitAccordionTitleSelected{cursor:default}.dijitAccordionTitle .arrowTextUp,.dijitAccordionTitle .arrowTextDown{display:none;font-size:0.65em;font-weight:normal !important}.dj_a11y .dijitAccordionTitle .arrowTextUp,.dj_a11y .dijitAccordionTitleSelected .arrowTextDown{display:inline}.dj_a11y .dijitAccordionTitleSelected .arrowTextUp{display:none}.dijitAccordionChildWrapper{overflow:hidden}.dijitCalendarContainer{width:auto}.dijitCalendarContainer th,.dijitCalendarContainer td{padding:0;vertical-align:middle}.dijitCalendarYearLabel{white-space:nowrap}.dijitCalendarNextYear{margin:0 0 0 0.55em}.dijitCalendarPreviousYear{margin:0 0.55em 0 0}.dijitCalendarIncrementControl{vertical-align:middle}.dijitCalendarIncrementControl,.dijitCalendarDateTemplate,.dijitCalendarMonthLabel,.dijitCalendarPreviousYear,.dijitCalendarNextYear{cursor:pointer;-webkit-tap-highlight-color:transparent}.dijitCalendarDisabledDate{color:gray;text-decoration:line-through;cursor:default}.dijitSpacer{position:relative;height:1px;overflow:hidden;visibility:hidden}.dijitCalendarMonthMenu .dijitCalendarMonthLabel{text-align:center}.dijitMenu{border:1px solid black;background-color:white}.dijitMenuTable{border-collapse:collapse;border-width:0;background-color:white}.dj_webkit .dijitMenuTable td[colspan="2"]{border-right:hidden}.dijitMenuItem{text-align:left;white-space:nowrap;padding:.1em .2em;cursor:pointer;-webkit-tap-highlight-color:transparent}.dijitMenuItem:focus{outline:none}.dijitMenuPassive .dijitMenuItemHover,.dijitMenuItemSelected{background-color:black;color:white}.dijitMenuItemIcon,.dijitMenuExpand{background-repeat:no-repeat}.dijitMenuItemDisabled *{opacity:0.5;cursor:default}.dj_ie .dj_a11y .dijitMenuItemDisabled,.dj_ie .dj_a11y .dijitMenuItemDisabled *,.dj_ie .dijitMenuItemDisabled *{color:gray;filter:alpha(opacity=35)}.dijitMenuItemLabel{position:relative;vertical-align:middle}.dj_a11y .dijitMenuItemSelected{border:1px dotted black !important}.dj_a11y .dijitMenuItemSelected .dijitMenuItemLabel{border-width:1px;border-style:solid}.dj_ie8 .dj_a11y .dijitMenuItemLabel{position:static}.dijitMenuExpandA11y{display:none}.dj_a11y .dijitMenuExpandA11y{display:inline}.dijitMenuSeparator td{border:0;padding:0}.dijitMenuSeparatorTop{height:50%;margin:0;margin-top:3px;font-size:1px}.dijitMenuSeparatorBottom{height:50%;margin:0;margin-bottom:3px;font-size:1px}.dijitMenuItemIconChar{display:none;visibility:hidden}.dj_a11y .dijitMenuItemIconChar{display:inline}.dijitCheckedMenuItemChecked .dijitMenuItemIconChar,.dijitRadioMenuItemChecked .dijitMenuItemIconChar{visibility:visible}.dj_ie .dj_a11y .dijitMenuBar .dijitMenuItem{margin:0}.dijitStackController .dijitToggleButtonChecked *{cursor:default}.dijitTabContainer{z-index:0;overflow:visible}.dj_ie6 .dijitTabContainer{overflow:hidden}.dijitTabContainerNoLayout{width:100%}.dijitTabContainerBottom-tabs,.dijitTabContainerTop-tabs,.dijitTabContainerLeft-tabs,.dijitTabContainerRight-tabs{z-index:1;overflow:visible !important}.dijitTabController{z-index:1}.dijitTabContainerBottom-container,.dijitTabContainerTop-container,.dijitTabContainerLeft-container,.dijitTabContainerRight-container{z-index:0;overflow:hidden;border:1px solid black}.nowrapTabStrip{width:50000px;display:block;position:relative;text-align:left;z-index:1}.dijitTabListWrapper{overflow:hidden;z-index:1}.dj_a11y .tabStripButton img{display:none}.dijitTabContainerTop-tabs{border-bottom:1px solid black}.dijitTabContainerTop-container{border-top:0}.dijitTabContainerLeft-tabs{border-right:1px solid black;float:left}.dijitTabContainerLeft-container{border-left:0}.dijitTabContainerBottom-tabs{border-top:1px solid black}.dijitTabContainerBottom-container{border-bottom:0}.dijitTabContainerRight-tabs{border-left:1px solid black;float:left}.dijitTabContainerRight-container{border-right:0}div.dijitTabDisabled,.dj_ie div.dijitTabDisabled{cursor:auto}.dijitTab{position:relative;cursor:pointer;-webkit-tap-highlight-color:transparent;white-space:nowrap;z-index:3}.dijitTab *{vertical-align:middle}.dijitTabChecked{cursor:default}.dijitTabContainerTop-tabs .dijitTab{top:1px}.dijitTabContainerBottom-tabs .dijitTab{top:-1px}.dijitTabContainerLeft-tabs .dijitTab{left:1px}.dijitTabContainerRight-tabs .dijitTab{left:-1px}.dijitTabContainerTop-tabs .dijitTab,.dijitTabContainerBottom-tabs .dijitTab{display:inline-block}.tabStripButton{z-index:12}.dijitTabButtonDisabled .tabStripButton{display:none}.dijitTabCloseButton{margin-left:1em}.dijitTabCloseText{display:none}.dijitTab .tabLabel{min-height:15px;display:inline-block}.dijitNoIcon{display:none}.dj_ie6 .dijitTab .dijitNoIcon{display:inline;height:15px;width:1px}.dj_a11y .dijitTabCloseButton{background-image:none !important;width:auto !important;height:auto !important}.dj_a11y .dijitTabCloseText{display:inline}.dijitTabPane,.dijitStackContainer-child,.dijitAccordionContainer-child{border:none !important}.dijitInlineEditBoxDisplayMode{border:1px solid transparent;cursor:text}.dj_a11y .dijitInlineEditBoxDisplayMode,.dj_ie6 .dijitInlineEditBoxDisplayMode{border:none}.dijitInlineEditBoxDisplayModeHover,.dj_a11y .dijitInlineEditBoxDisplayModeHover,.dj_ie6 .dijitInlineEditBoxDisplayModeHover{background-color:#e2ebf2;border:solid 1px black}.dijitInlineEditBoxDisplayModeDisabled{cursor:default}.dijitTree{overflow:auto;-webkit-tap-highlight-color:transparent}.dijitTreeContainer{float:left}.dijitTreeIndent{width:19px}.dijitTreeRow,.dijitTreeContent{white-space:nowrap}.dj_ie .dijitTreeLabel:focus{outline:1px dotted black}.dijitTreeRow img{vertical-align:middle}.dijitTreeContent{cursor:default}.dijitExpandoText{display:none}.dj_a11y .dijitExpandoText{display:inline;padding-left:10px;padding-right:10px;font-family:monospace;border-style:solid;border-width:thin;cursor:pointer}.dijitTreeLabel{margin:0 4px}.dijitDialog{position:absolute;z-index:999;overflow:hidden}.dijitDialogTitleBar{cursor:move}.dijitDialogFixed .dijitDialogTitleBar{cursor:default}.dijitDialogCloseIcon{cursor:pointer;-webkit-tap-highlight-color:transparent}.dijitDialogPaneContent{-webkit-overflow-scrolling:touch}.dijitDialogUnderlayWrapper{position:absolute;left:0;top:0;z-index:998;display:none;background:transparent !important}.dijitDialogUnderlay{background:#eee;opacity:0.5}.dj_ie .dijitDialogUnderlay{filter:alpha(opacity=50)}.dj_a11y .dijitSpinnerButtonContainer,.dj_a11y .dijitDialog{opacity:1 !important;background-color:white !important}.dijitDialog .closeText{display:none;position:absolute}.dj_a11y .dijitDialog .closeText{display:inline}.dijitSliderMoveable{z-index:99;position:absolute !important;display:block;vertical-align:middle}.dijitSliderMoveableH{right:0}.dijitSliderMoveableV{right:50%}.dj_a11y div.dijitSliderImageHandle,.dijitSliderImageHandle{margin:0;padding:0;position:relative !important;border:8px solid gray;width:0;height:0;cursor:pointer;-webkit-tap-highlight-color:transparent}.dj_iequirks .dj_a11y .dijitSliderImageHandle{font-size:0}.dj_ie7 .dijitSliderImageHandle{overflow:hidden}.dj_ie7 .dj_a11y .dijitSliderImageHandle{overflow:visible}.dj_a11y .dijitSliderFocused .dijitSliderImageHandle{border:4px solid #000;height:8px;width:8px}.dijitSliderImageHandleV{top:-8px;right:-50%}.dijitSliderImageHandleH{left:50%;top:-5px;vertical-align:top}.dijitSliderBar{border-style:solid;border-color:black;cursor:pointer;-webkit-tap-highlight-color:transparent}.dijitSliderBarContainerV{position:relative;height:100%;z-index:1}.dijitSliderBarContainerH{position:relative;z-index:1}.dijitSliderBarH{height:4px;border-width:1px 0}.dijitSliderBarV{width:4px;border-width:0 1px}.dijitSliderProgressBar{background-color:red;z-index:1}.dijitSliderProgressBarV{position:static !important;height:0;vertical-align:top;text-align:left}.dijitSliderProgressBarH{position:absolute !important;width:0;vertical-align:middle;overflow:visible}.dijitSliderRemainingBar{overflow:hidden;background-color:transparent;z-index:1}.dijitSliderRemainingBarV{height:100%;text-align:left}.dijitSliderRemainingBarH{width:100% !important}.dijitSliderBumper{overflow:hidden;z-index:1}.dijitSliderBumperV{width:4px;height:8px;border-width:0 1px}.dijitSliderBumperH{width:8px;height:4px;border-width:1px 0}.dijitSliderBottomBumper,.dijitSliderLeftBumper{background-color:red}.dijitSliderTopBumper,.dijitSliderRightBumper{background-color:transparent}.dijitSliderDecoration{text-align:center}.dijitSliderDecorationC,.dijitSliderDecorationV{position:relative}.dijitSliderDecorationH{width:100%}.dijitSliderDecorationV{height:100%;white-space:nowrap}.dijitSliderButton{font-family:monospace;margin:0;padding:0;display:block}.dj_a11y .dijitSliderButtonInner{visibility:visible !important}.dijitSliderButtonContainer{text-align:center;height:0}.dijitSliderButtonContainer *{cursor:pointer;-webkit-tap-highlight-color:transparent}.dijitSlider .dijitButtonNode{padding:0;display:block}.dijitRuleContainer{position:relative;overflow:visible}.dijitRuleContainerV{height:100%;line-height:0;float:left;text-align:left}.dj_opera .dijitRuleContainerV{line-height:2%}.dj_ie .dijitRuleContainerV{line-height:normal}.dj_gecko .dijitRuleContainerV{margin:0 0 1px 0}.dijitRuleMark{position:absolute;border:1px solid black;line-height:0;height:100%}.dijitRuleMarkH{width:0;border-top-width:0 !important;border-bottom-width:0 !important;border-left-width:0 !important}.dijitRuleLabelContainer{position:absolute}.dijitRuleLabelContainerH{text-align:center;display:inline-block}.dijitRuleLabelH{position:relative;left:-50%}.dijitRuleLabelV{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.dijitRuleMarkV{height:0;border-right-width:0 !important;border-bottom-width:0 !important;border-left-width:0 !important;width:100%;left:0}.dj_ie .dijitRuleLabelContainerV{margin-top:-0.55em}.dj_a11y .dijitSliderReadOnly,.dj_a11y .dijitSliderDisabled{opacity:0.6}.dj_ie .dj_a11y .dijitSliderReadOnly .dijitSliderBar,.dj_ie .dj_a11y .dijitSliderDisabled .dijitSliderBar{filter:alpha(opacity=40)}.dj_a11y .dijitSlider .dijitSliderButtonContainer div{font-family:monospace;font-size:1em;line-height:1em;height:auto;width:auto;margin:0 4px}.dj_a11y .dijitButtonContents .dijitButtonText,.dj_a11y .dijitTab .tabLabel{display:inline !important}.dj_a11y .dijitSelect .dijitButtonText{display:inline-block !important}.dijitTextArea{width:100%;overflow-y:auto}.dijitTextArea[cols]{width:auto}.dj_ie .dijitTextAreaCols{width:auto}.dijitExpandingTextArea{resize:none}.dijitToolbarSeparator{height:18px;width:5px;padding:0 1px;margin:0}.dijitIEFixedToolbar{position:absolute}.dijitEditor{display:block}.dijitEditorDisabled,.dijitEditorReadOnly{color:gray}.dijitTimePicker{background-color:white;border:1px solid lightgray !important;border-collapse:separate !important}.dijitTimePickerItem{cursor:pointer;-webkit-tap-highlight-color:transparent;background-color:white !important;vertical-align:middle !important}.dijitTimePickerItemHover{background-color:#eeeeee !important;color:black !important}.dijitTimePickerItemSelected{font-weight:bold !important;color:black !important;background-color:#eeeeee !important}.dijitTimePickerItemDisabled{color:gray;text-decoration:line-through}.dijitTimePickerItemInner{text-align:left !important;border:0 !important;padding:5px 10px 5px 10px !important}.dijitTimePickerTick,.dijitTimePickerMarker{border:0 !important}.dijitTimePickerTick{color:#CCC}.dijitTimePickerMarker{color:black;background-color:#CCC}.dj_a11y .dijitTimePickerItemSelected .dijitTimePickerItemInner{border:solid 4px black}.dj_a11y .dijitTimePickerItemHover .dijitTimePickerItemInner{border:dashed 4px black}.dijitToggleButtonIconChar{display:none !important}.dj_a11y .dijitToggleButton .dijitToggleButtonIconChar{display:inline !important;visibility:hidden}.dj_ie6 .dijitToggleButtonIconChar,.dj_ie6 .tabStripButton .dijitButtonText{font-family:"Arial Unicode MS"}.dj_a11y .dijitToggleButtonChecked .dijitToggleButtonIconChar{display:inline !important;visibility:visible !important}.dijitArrowButtonChar{display:none !important}.dj_a11y .dijitArrowButtonChar{display:inline !important}.dj_a11y .dijitDropDownButton .dijitArrowButtonInner,.dj_a11y .dijitComboButton .dijitArrowButtonInner{display:none !important}.dj_a11y .dijitSelect{border-collapse:separate !important;border-width:1px;border-style:solid}.dj_ie .dijitSelect{vertical-align:middle}.dj_ie6 .dijitSelect .dijitValidationContainer,.dj_ie8 .dijitSelect .dijitButtonText{vertical-align:top}.dj_ie6 .dijitTextBox .dijitInputContainer,.dj_iequirks .dijitTextBox .dijitInputContainer,.dj_ie6 .dijitTextBox .dijitArrowButtonInner,.dj_ie6 .dijitSpinner .dijitSpinnerButtonInner,.dijitSelect .dijitSelectLabel{vertical-align:baseline}.dijitNumberTextBox{text-align:left;direction:ltr}.dijitNumberTextBox .dijitInputInner{text-align:inherit}.dijitToolbar .dijitSelect{margin:0}.dj_webkit .dijitToolbar .dijitSelect{padding-left:0.3em}.dijitSelect .dijitButtonContents{padding:0;white-space:nowrap;text-align:left;border-style:none solid none none;border-width:1px}.dijitSelectFixedWidth .dijitButtonContents{width:100%}.dijitSelectMenu .dijitMenuItemIcon{display:none}.dj_ie6 .dijitSelectMenu .dijitMenuItemLabel,.dj_ie7 .dijitSelectMenu .dijitMenuItemLabel{position:static}.dijitSelectLabel *{vertical-align:baseline}.dijitSelectSelectedOption *{font-weight:bold}.dijitSelectMenu{border-width:1px}.dijitForceStatic{position:static !important}.dijitReadOnly *,.dijitDisabled *,.dijitReadOnly,.dijitDisabled{cursor:default}.dojoDndItem{padding:2px;-webkit-touch-callout:none;-webkit-user-select:none}.dojoDndHorizontal .dojoDndItem{display:inline-block}.dojoDndItemBefore,.dojoDndItemAfter{border:0px solid #369}.dojoDndItemBefore{border-width:2px 0 0 0;padding:0 2px 2px 2px}.dojoDndItemAfter{border-width:0 0 2px 0;padding:2px 2px 0 2px}.dojoDndHorizontal .dojoDndItemBefore{border-width:0 0 0 2px;padding:2px 2px 2px 0}.dojoDndHorizontal .dojoDndItemAfter{border-width:0 2px 0 0;padding:2px 0 2px 2px}.dojoDndItemOver{cursor:pointer}.dj_gecko .dijitArrowButtonInner INPUT,.dj_gecko INPUT.dijitArrowButtonInner{-moz-user-focus:ignore}.dijitFocused .dijitMenuItemShortcutKey{text-decoration:underline}.dijitCalendar{border:solid 1px #c0c0c0;background-color:#eee;background-image:url("/5.16.2.5993/frontend/images/calendar/calendarContainerImages.png");background-position:0 -448px;background-repeat:repeat-x;text-align:center;padding:6px 5px 3px 5px;-moz-border-radius:4px;border-radius:4px}.dj_ie6 .dijitCalendar{background-image:none}.dijitCalendar img{border:none}.dijitCalendarHover,.dijitCalendarActive{background-color:#ddd;border:solid 1px #999}.dijitCalendarMonthContainer th{text-align:center;padding-bottom:4px;vertical-align:middle}.dijitCalendarMonthLabel{color:#000000;font-size:1.091em;padding:0 4px}.dijitCalendarIncrementControl{width:18px;height:16px;background-image:url("/5.16.2.5993/frontend/images/calendar/calendarArrows.png");background-repeat:no-repeat}.dj_ie6 .dijitCalendarIncrementControl{background-image:url("/5.16.2.5993/frontend/images/calendar/calendarArrows8bit.png")}.dijitCalendarIncrease{background-position:-18px 0}.dijitCalendarArrowHover .dijitCalendarDecrease{background-position:-36px 0}.dijitCalendarArrowHover .dijitCalendarIncrease{background-position:-55px 0}.dijitCalendarArrowActive .dijitCalendarDecrease{background-position:-72px 0}.dijitCalendarArrowActive .dijitCalendarIncrease{background-position:-91px 0}.dijitA11ySideArrow{display:none}.dijitDayLabels th{padding:0 4px 0 4px;font-weight:bold;text-align:center}.dijitCalendarDayLabelTemplate{padding-bottom:0;text-align:center;border-bottom:1px solid #c0c0c0;font-size:0.909em;padding:0 3px 2px}.dijitCalendarDateTemplate{background-color:#ffffff;background-image:url("/5.16.2.5993/frontend/images/calendar/calendarContainerImages.png");background-position:0 0;background-repeat:repeat-x;border-bottom:1px solid #d3d3d3;padding-top:0;font-size:0.909em;font-family:Arial;font-weight:bold;letter-spacing:.05em;text-align:center}.dj_ie6 .dijitCalendarDateTemplate{background-image:none}.dijitCalendarPreviousMonth,.dijitCalendarNextMonth{background-color:#fafafa;background-image:none;border-bottom:solid 1px #d3d3d3}.dijitCalendarDateTemplate .dijitCalendarDateLabel{text-decoration:none;display:block;padding:3px 5px 3px 4px;border:solid 1px #ffffff;background-color:rgba(171,212,251,0);-webkit-transition-property:background-color,border;-moz-transition-property:background-color,border;transition-property:background-color,border;-webkit-transition-duration:0.35s;-moz-transition-duration:0.35s;transition-duration:0.35s}.dijitCalendarPreviousMonth .dijitCalendarDateLabel,.dijitCalendarNextMonth .dijitCalendarDateLabel{color:#999;border-color:#fafafa}.dijitCalendarYearContainer{vertical-align:middle}.dijitCalendarYearControl{padding:1px 2px 2px 2px}.dijitCalendarYearLabel{padding:2px 0 0 0;margin:0}.dijitCalendarYearLabel span{vertical-align:middle}.dijitCalendarSelectedYear{padding:0 3px}.dijitCalendarNextYear,.dijitCalendarPreviousYear{padding:1px 6px 1px 6px;font-size:0.909em}.dijitCalendarSelectedYear{font-size:1.091em;color:#000000}.dijitCalendarHoveredDate .dijitCalendarDateLabel{background-color:#ddd;border:solid 1px #999;color:#000000;-webkit-transition-duration:0.2s;-moz-transition-duration:0.2s;transition-duration:0.2s}.dijitCalendarNextYearHover,.dijitCalendarPreviousYearHover{color:#000000;border:solid 1px #ffffff;padding:0 5px 0 5px;background-color:#fafafa}.dijitCalendarNextYearActive,.dijitCalendarPreviousYearActive{border:solid 1px #999;padding:0 5px 0 5px;background-color:#eee}.dijitCalendarActiveDate .dijitCalendarDateLabel{background-image:url("/5.16.2.5993/frontend/images/calendar/calendarContainerImages.png");background-position:0 -300px;background-color:#bbb;border:solid 1px #ffffff;-webkit-transition-duration:0.1s;-moz-transition-duration:0.1s;transition-duration:0.1s}.dj_ie6 .dijitCalendarActiveDate .dijitCalendarDateLabel{background-image:none}.dijitCalendarSelectedDate .dijitCalendarDateLabel{color:#000000;background-color:#ddd;border-color:#999}.dijitCalendarDisabledDate .dijitCalendarDateLabel{text-decoration:line-through;background-color:transparent;border-width:0;padding:4px 6px 4px 5px;color:#818181}.dijitCalendar .dijitDropDownButton{margin:0}.dijitCalendar .dijitButtonText{padding:1px 0 3px;margin-right:-4px}.dijitCalendar .dijitDropDownButton .dijitButtonNode{background-color:transparent;background-image:none;margin:5px 0px 0 0px;-webkit-box-shadow:0 0 0 rgba(0,0,0,0);-moz-box-shadow:0 0 0 rgba(0,0,0,0);box-shadow:0 0 0 rgba(0,0,0,0)}.dijitCalendar .dijitDropDownButtonHover .dijitButtonNode{background-color:#fafafa}.dijitCalendarMonthMenu{border-color:#999;background-color:#ffffff;text-align:center;background-image:none}.dijitCalendarMonthMenu .dijitCalendarMonthLabel{border-top:solid 1px #ffffff;border-bottom:solid 1px #ffffff;padding:2px 0}.dijitCalendar .dijitInline{display:inline-block;border:0;padding:0;vertical-align:middle}.dijitCalendar .dijitHidden{display:none !important}.dijitCalendar .dijitVisible{display:block !important;position:relative}.dijitCalendar .dijitButton .dijitButtonNode,.dijitCalendar .dijitDropDownButton .dijitButtonNode,.dijitCalendar .dijitComboButton .dijitButtonNode,.dijitCalendar .dijitToggleButton .dijitButtonNode{border:1px solid #769dc0;padding:2px 4px 2px 4px;background-image:url("/5.16.2.5993/frontend/images/calendar/button.png");background-position:center top;background-repeat:repeat-x;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.15);-moz-box-shadow:0 1px 1px rgba(0,0,0,0.15);box-shadow:0 1px 1px rgba(0,0,0,0.15)}.dijitCalendar .dijitComboButton .dijitArrowButton{border-left-width:0;padding:4px 2px 4px 2px}.dijitCalendar .dijitArrowButtonInner{width:15px;height:15px;margin:0 auto;background-image:url("/5.16.2.5993/frontend/images/calendar/buttonArrows.png");background-repeat:no-repeat;background-position:-51px 53%}html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video,button{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent}body{line-height:1}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after{content:"";content:none}q:before,q:after{content:"";content:none}a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}ins{background-color:#ffff99;color:black;text-decoration:none}mark{background-color:#ffff99;color:black;font-style:italic;font-weight:bold}del{text-decoration:line-through}abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}table{border-collapse:collapse;border-spacing:0}hr{display:block;height:1px;border:0;border-top:1px solid #cccccc;margin:1em 0;padding:0}body{font:12px/1.231 'Source Sans Pro',sans-serif}select,input,button,textarea{font:99% 'Source Sans Pro',sans-serif;margin:0;padding:0}table{font-size:inherit;font:100%}pre,code,kbd,samp,tt{font-family:'Source Sans Pro',sans-serif;line-height:100%}@font-face{font-family:'Source Sans Pro';font-style:normal;font-weight:400;src:url('/5.16.2.5993/frontend/fonts/Source_Sans_Pro/SourceSansPro-Regular.ttf');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2212,U+2215,U+E0FF,U+EFFD,U+F000}@font-face{font-family:'Source Sans Pro';font-style:normal;font-weight:700;src:url('/5.16.2.5993/frontend/fonts/Source_Sans_Pro/SourceSansPro-Bold.ttf');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2212,U+2215,U+E0FF,U+EFFD,U+F000}@font-face{font-family:'Source Sans Pro';font-style:italic;font-weight:400;src:url('/5.16.2.5993/frontend/fonts/Source_Sans_Pro/SourceSansPro-Italic.ttf');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2212,U+2215,U+E0FF,U+EFFD,U+F000}@font-face{font-family:'Source Sans Pro';font-style:italic;font-weight:700;src:url('/5.16.2.5993/frontend/fonts/Source_Sans_Pro/SourceSansPro-BoldItalic.ttf');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2212,U+2215,U+E0FF,U+EFFD,U+F000}.transform-none{transform:none;-ms-transform:none;-moz-transform:none;-webkit-transform:none;-o-transform:none}@media screen and (max-width:319px){.unit{float:none !important;width:auto !important}}.clearfix:after,.lastUnit:after,.panel-body:after{clear:both;display:block;visibility:hidden;overflow:hidden;height:0 !important;line-height:0;font-size:xx-large;content:" x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x "}.relative{position:relative}.absolute{position:absolute}.center{margin:0px auto}.text-center{text-align:center}.text-left{text-align:left}.text-right{text-align:right}.valign-top{vertical-align:top}.valign-bottom{vertical-align:bottom}.valign-middle{vertical-align:middle}.valign-text-top{vertical-align:text-top}.valign-super{vertical-align:super}.unit{float:left}.unit-right{float:right}.unit-clear{clear:both}.lastUnit{display:table-cell;float:none;width:auto}.col-common{width:160px}.size1of1{width:100%}.size1of2{width:50%}.size1of3{width:33.333%}.size2of3{width:66.667%}.size1of4{width:25%}.size1of7{width:13%}.size3of7{width:43.5%}.size4of7{width:61%}.size2of7{width:27%}.size6of7{width:87%}.size3of4{width:75%}.size1of5{width:20%}.size1of10{width:10%}.size2of10{width:20%}.size1of11{width:9%}.size1of12{width:8.3333%}.size2of12{width:16.6666%}.size3of12{width:25%}.size4of12{width:33.3333%}.size5of12{width:41.6666%}.size6of12{width:50%}.size7of12{width:58.3333%}.size8of12{width:66.6666%}.size9of12{width:75%}.size10of12{width:83.3333%}.size11of12{width:91.6666%}.size12of12{width:100%}.size1of15{width:6.66%}.size4of15{width:26.667%}.size1of25{width:4%}.size1of33{width:3%}.size1of50{width:2%}.size7of100{width:7%}.size4of14{width:29%}.size2of5{width:40%}.size3of5{width:60%}.size4of5{width:80%}.size1of6{width:16.667%}.size3of6{width:45%}.size47of100{width:47%}.size52of100{width:52%}.size5of6{width:83.333%}.size1of8{width:12.5%}.size15of100{width:15%}.size2of9{width:22%}.size7of20{width:35%}.size3of8{width:37.5%}.size37of100{width:37%}.size5of8{width:62.5%}.size6of8{width:82.5%}.size7of8{width:87.5%}.size1of10{width:10%}.size2of10{width:20%}.size3of10{width:30%}.size4of10{width:40%}.size5of10{width:50%}.size6of10{width:60%}.size7of10{width:70%}.size8of10{width:80%}.size9of10{width:90%}.size7of15{width:46.5%}.size8of15{width:53.5%}.wide{width:100%}.size95of100{width:95%}.two-columns{-moz-column-count:2;-webkit-column-count:2;column-count:2}.three-columns{-moz-column-count:3;-webkit-column-count:3;column-count:3}img{display:block}em,.italic{font-style:italic}strong,.bold{font-weight:bold}.normal{font-weight:normal !important}code{color:#0b8c8f}.fancy-highlight{font-weight:bold;background-color:#eeec16}h1,h2,h3,h4,h5,h6,img{padding-bottom:0px}pre{margin:10px}table h1,table h2,table h3,table h4,table h5,table h6,table p,table ul,table ol,table dl{padding:0}.pl4{padding-left:4px}.pl3{padding-left:3px}.pr3{padding-right:3px}.pt3{padding-top:3px}.pb3{padding-bottom:3px}.mt3{margin-top:3px}.ml3{margin-left:3px}.pt2{padding-top:2px}.mt1{margin-top:1px}.mt2{margin-top:2px}.mr2{margin-right:2px}.pb2{padding-bottom:2px}.mb2{margin-bottom:2px}.mt1{margin-top:1px}.mrxxs{margin-right:0px !important}.pt30{padding-top:30px !important}.pl60{padding-left:60px}.pr80{padding-right:80px}.ml100{margin-left:100px}.ptn,.pvn,.pan{padding-top:0}.ptxs,.pvxs,.paxs{padding-top:5px}.pts,.pvs,.pas{padding-top:10px}.ptm,.pvm,.pam{padding-top:20px}.ptl,.pvl,.pal{padding-top:40px}.prn,.phn,.pan{padding-right:0}.prxs,.phxs,.paxs{padding-right:5px}.prs,.phs,.pas{padding-right:10px}.prm,.phm,.pam{padding-right:20px}.prl,.phl,.pal{padding-right:40px}.pbn,.pvn,.pan{padding-bottom:0}.pbxs,.pvxs,.paxs{padding-bottom:5px}.pbs,.pvs,.pas{padding-bottom:10px}.pbm,.pvm,.pam{padding-bottom:20px}.pbl,.pvl,.pal{padding-bottom:40px}.pln,.phn,.pan{padding-left:0}.plxs,.phxs,.paxs{padding-left:5px}.pls,.phs,.pas{padding-left:10px}.plm,.phm,.pam{padding-left:20px}.pll,.phl,.pal{padding-left:40px}.mtn,.mvn,.man{margin-top:0}.mtxs,.mvxs,.maxs{margin-top:5px}.mts,.mvs,.mas{margin-top:10px}.mtm,.mvm,.mam{margin-top:20px}.mtl,.mvl,.mal{margin-top:40px}.mrn,.mhn,.man{margin-right:0}.mrxs,.mhxs,.maxs{margin-right:5px}.mrs,.mhs,.mas{margin-right:10px}.mrm,.mhm,.mam{margin-right:20px}.mrl,.mhl,.mal{margin-right:40px}.mbn,.mvn,.man{margin-bottom:0}.mbxs,.mvxs,.maxs{margin-bottom:5px}.mbs,.mvs,.mas{margin-bottom:10px}.mbm,.mvm,.mam{margin-bottom:20px}.mbl,.mvl,.mal{margin-bottom:40px}.mln,.mhn,.man{margin-left:0}.mlxs,.mhxs,.maxs{margin-left:5px}.mls,.mhs,.mas{margin-left:10px}.mlm,.mhm,.mam{margin-left:20px}.mll,.mhl,.mal{margin-left:40px}.noplm .plm{padding-left:0}.nombm .mbm{margin-bottom:0}.nmlm{margin-left:-20px}.color-middlegrey{color:#999}.black{color:black}.green{color:#4f9735}.red{color:#f32837}.dark-red{color:#9a1e08}.blue{color:#0082dc}.dirtyblue{color:#5188ac}.lightred{color:#f16561}.darkgreen{color:#00a55b}.msgrey{color:#b7b6b6}.lightgreen{color:#00b74f}.white{color:#FFF}.seablue-bg{background-color:#d8e8fc}.snowblue-bg{background-color:#eef3f6}.white-bg{background-color:#FFF}.dirtygrey-bg{background-color:#3e4244}.msblue-bg{background-color:#0085bc}.msred-bg{background-color:#e63329}.msgreen-bg{background-color:#6ebd8f}.msgrey-bg{background-color:#b7b6b6}.lightgrey-bg{background-color:#ccc}body.library{padding:0;overflow-anchor:none}.library{padding:40px}.library>li{position:relative;padding:40px 0 40px 300px;border-bottom:1px dotted #ccc}.library>li>div:first-child{position:absolute;left:0;width:300px;font:16px 'Source Sans Pro',sans-serif;color:#26abdc}.library .dijitTooltip{background:none;border:none;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.adbank .dijitTooltip{background:none;border:none;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}body.overflowHide{overflow:hidden}body.dojoDndMove{overflow-x:hidden}h1,.h1,h2,.h2,h3,.h3,h4,.h4{font-weight:bold;font-style:normal}h1,.h1{font-size:30px}h2,.h2{font-size:24px}h3,.h3,.n3{font-size:18px}h3 .tiny-text,.h3 .tiny-text,.n3 .tiny-text{font-size:70%}h4,.h4,.n4{font-size:15px}h5,.h5{font-size:13px}h6,.h6{font-size:13px}.n3{font-style:normal;font-size:18px}.small_text{font-size:11px}.break-words{word-wrap:break-word}.break-all{word-break:break-all}.aux{display:inline;margin-left:-4px}.p{font-size:13px;font-weight:normal;font-style:normal}.tiny{color:#666}.backgroundtiny{background-color:#eee}.tiny-text{font-size:11px}.small-text{font-size:10px}.capitalize{text-transform:capitalize}.error,.custom_field_error{color:#ff4f4b}.white{color:#f1f1f1}.no-padding{padding:0px !important}.zIndex{z-index:999999}.none-display{display:none !important}.box-sized{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.transparent{background:none !important}.block-display{display:block}.display-table{display:table}.display-flex{display:flex}.display-table-row{display:table-row}.display-table-cell{display:table-cell}.inline-display{display:inline-block;zoom:1}.pointer{cursor:pointer}.none-border{border:0px !important}.none-shadow{border-radius:0px !important;box-shadow:none !important}.overflow-hidden{overflow:hidden}.overflow-hidden.ellipsis{white-space:nowrap;text-overflow:ellipsis}.centered-block{margin:0 auto}.absolute-top-left{position:absolute;top:0px;left:0px}.absolute-top-right{position:absolute;top:0px;right:0px}#uploader+.message-box{right:100px}.message-box{position:fixed;z-index:1000;top:40px;right:324px;width:33.333%}.message-box .message-wrapper{opacity:0;height:0;position:relative;margin-bottom:10px;float:right;clear:both;width:100%}.message-box .message{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;position:absolute;padding:10px;bottom:0;right:0;min-width:300px;width:100%;background-color:rgba(215,215,215,0.7);border-width:1px;border-style:solid}.message-box .message.error{background-color:rgba(245,214,204,0.7);border-color:#f5d6cc}.message-box .message.warning{background-color:rgba(78,161,51,0.7);border-color:#4ea133}.message-box .message.exclamation{background-color:rgba(255,246,106,0.7);border-color:#f5ec60}.message-box .icon-close{position:absolute;right:5px;top:5px}.message-box .icon-close:hover{cursor:pointer}.ui-error{border-color:red}.ui-error:focus,.ui-error.dijitTextBoxFocused{outline:none;-webkit-box-shadow:inset 0 1px 3px @black-01, 0 0 5px rgba(255, 167, 4, 0.7);-moz-box-shadow:inset 0 1px 3px @black-01, 0 0 5px rgba(255, 167, 4, 0.7);box-shadow:inset 0 1px 3px @black-01, 0 0 5px rgba(255, 167, 4, 0.7);border-color:red}.success{color:#a6ce39}.hidden{visibility:hidden;height:0px;width:0px}.none{display:none !important}.center{text-align:center}.text-right{text-align:right}.nowrapped{white-space:nowrap}.box-sized{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}a,.link{color:#0082dc;text-decoration:underline}a.no-decoration,.link.no-decoration{text-decoration:none}a.hardgrey,.link.hardgrey{color:#333}a.grey,.link.grey{color:grey}.crop-words{overflow-x:hidden}.dojoDndItem .link{white-space:nowrap;word-wrap:normal}a:hover,.link:hover{color:#dd6565;text-decoration:underline;cursor:pointer}.actionLink{color:#333;font-style:italic;text-decoration:none;border-bottom:1px dotted #333}.actionLink:hover{color:#dd6565;text-decoration:none;border-color:#dd6565;cursor:pointer}.nondecorLink:hover{text-decoration:none}.defaultLink{color:white;text-decoration:underline}label{color:#333;line-height:25px;font-weight:bold}label.easyshare{font-weight:normal;color:#0082dc}label.normal{font-weight:normal;line-height:15px}.icon-traditional{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat;background-position:0 0}.icon-fr{display:inline-block;width:16px;height:11px;background:url('/5.16.2.5993/frontend/images/fr.png') no-repeat}.icon-en{display:inline-block;width:16px;height:11px;background:url('/5.16.2.5993/frontend/images/en.png') no-repeat}.icon-close{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat;background-position:0 0;background-position:0 -80px}.icon-remove{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -1248px transparent;filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=0.8, enabled=1)";opacity:.8;text-decoration:none}.icon-remove:hover{cursor:pointer;filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=1, enabled=1)";opacity:1}.icon-notification{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") 0 -1072px no-repeat}.selected .icon-notification{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") -32px -96px no-repeat}.minw{min-width:244px}.bc{background-color:#D8E8FC}.icon-message{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") 0 -128px no-repeat}.icon-dropdown-hint{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -16px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-add{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -192px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-fav{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -64px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-fav-nact{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -48px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-edit{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -208px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-comment,.icon-commented,.icon-created-comment{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -224px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-created{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -1552px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-created.new.revision.for{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -256px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-copied{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -16px -1008px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-copied-new{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -32px -1008px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-pig{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -16px -1024px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-money{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -32px -1024px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-played{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -2032px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-deleted{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -1248px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-updated{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -48px -448px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-brand{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -48px -608px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-moved{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -1200px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-delete-grey-small{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -864px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-approve-small-gray{background:url("/5.16.2.5993/frontend/images/approval-icons/ico_approval_approve_grey_small.png") no-repeat scroll transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-approve-small-green{background:url("/5.16.2.5993/frontend/images/approval-icons/ico_approval_approve_green_small.png") no-repeat scroll transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-reject-small-gray{background:url("/5.16.2.5993/frontend/images/approval-icons/ico_approval_reject_grey_small.png") no-repeat scroll transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-reject-small-red{background:url("/5.16.2.5993/frontend/images/approval-icons/ico_approval_rejected_red_small.png") no-repeat scroll transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-reject{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -240px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-uploaded,.icon-upload{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -256px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-downloaded{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -272px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-left.slider-c{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -336px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-right.slider-c{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -352px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-info{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -368px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-arrow-left-grey{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -48px -369px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-arrow-right-grey{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -48px -385px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-roles_active{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -384px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-switcher-blocks{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -400px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-switcher-lines{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -416px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-switcher-blocks.active{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -432px transparent}.icon-switcher-lines.active{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -448px transparent}.icon-alert{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -464px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-success{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -480px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-error{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -496px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-alert-color{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -512px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-fixed-color{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -16px -512px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-fault-color{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -32px -512px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-success-color{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -528px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-error-color{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -544px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-add-new-folder{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -560px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-tree{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -576px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-new-folder{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -592px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-right-arrow{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat;background-position:0 0;background-position:0 -608px;margin-right:-16px}.icon-left-arrow{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat;background-position:0 0;background-position:0 -2048px}.icon-dropdown-arrow{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat;background-position:0 0;background-position:0 -624px;margin-right:-16px}.icon-trash{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -640px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-whitetrash{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat;background-position:0 0;background-position:0 -976px}.icon-search{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -656px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-search-plus{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -16px -656px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-search-minus{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -32px -656px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-download{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -1376px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-download-blue{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -1392px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-shared{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -1232px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-private-message{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -16px -128px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-shared_with_invite{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -1232px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-locked{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -768px transparent;display:inline-block;height:16px;width:16px;line-height:16px;filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=0.7, enabled=1)";opacity:.7}.icon-pending{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -784px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-accept-white{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -800px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-reject-white{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -816px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-accept-gray{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -672px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-reject-gray{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -688px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-folder-arrow{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -704px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-file-download{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -720px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-file-nvergedownload{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -32px -128px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-bailer{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -32px -240px transparent;display:inline-block;height:16px;width:16px;line-height:16px;margin-top:-3px}.icon-settings-new{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -32px -224px transparent;display:inline-block;height:16px;width:16px;line-height:16px;margin-top:-3px}.icon-upload-white{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -32px -256px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-adbank-gray{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -32px -272px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-close-gray{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -32px -304px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-revert{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -32px -449px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-order-summary{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -48px -368px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-file{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -912px transparent;display:inline-block;height:16px;width:16px;line-height:16px;vertical-align:middle}.icon-viewed{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -16px -912px transparent;display:inline-block;height:16px;width:16px;line-height:16px;vertical-align:middle}.icon-folder{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -928px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-left{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -944px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-right{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -960px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-element{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -912px transparent;display:inline-block;height:16px;width:16px;line-height:16px;vertical-align:middle}.icon-info-blue{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -1088px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-accept-green{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -1104px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-attach{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -1120px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-asset{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -1136px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-adbank{background:url("/5.16.2.5993/frontend/images/icons32x32.png") no-repeat scroll 0 -96px transparent;display:inline-block;height:32px;width:32px;line-height:32px}.icon-adpath{background:url("/5.16.2.5993/frontend/images/icons32x32.png") no-repeat scroll 0 -128px transparent;display:inline-block;height:32px;width:32px;line-height:32px}.icon-byblos{background:url("/5.16.2.5993/frontend/images/icons32x32.png") no-repeat scroll 0 -160px transparent;display:inline-block;height:32px;width:32px;line-height:32px}.icon-quickprint{background:url("/5.16.2.5993/frontend/images/icons32x32.png") no-repeat scroll 0 -192px transparent;display:inline-block;height:32px;width:32px;line-height:32px}.icon-nverge{background:url("/5.16.2.5993/frontend/images/icons32x32.png") no-repeat scroll 0 -224px transparent;display:inline-block;height:32px;width:32px;line-height:32px}.icon-lbb{background:url("/5.16.2.5993/frontend/images/icons32x32.png") no-repeat scroll 0 -256px transparent;display:inline-block;height:32px;width:32px;line-height:32px}.icon-left-white{background:url("/5.16.2.5993/frontend/images/icons32x32.png") no-repeat scroll 0 -320px transparent;display:inline-block;height:32px;width:32px;line-height:32px}.icon-right-white{background:url("/5.16.2.5993/frontend/images/icons32x32.png") no-repeat scroll 0 -288px transparent;display:inline-block;height:32px;width:32px;line-height:32px}.icon-key{background:url("/5.16.2.5993/frontend/images/icons32x32.png") no-repeat scroll 0 -355px transparent;display:inline-block;height:32px;width:32px;line-height:32px}.icon-folder-share{background:url("/5.16.2.5993/frontend/images/icons32x32.png") no-repeat scroll 0 -387px transparent;display:inline-block;height:32px;width:32px;line-height:32px}.icon-new-folder32{background:url("/5.16.2.5993/frontend/images/icons32x32.png") no-repeat scroll 0 -416px transparent;display:inline-block;height:32px;width:32px;line-height:32px}.icon-file-expired{background:url("/5.16.2.5993/frontend/images/icons32x32.png") no-repeat scroll -7px -672px transparent;height:20px;width:20px;display:inline-block;z-index:1}.icon-file-available{background:url("/5.16.2.5993/frontend/images/icons32x32.png") no-repeat scroll -7px -652px transparent;height:20px;width:20px;display:inline-block;z-index:1}.icon-alert-white{background:url("/5.16.2.5993/frontend/images/icons32x32.png") no-repeat scroll -6px -730px transparent;height:20px;width:20px;display:inline-block}.icon-alert-red{background:url("/5.16.2.5993/frontend/images/icons32x32.png") no-repeat scroll -6px -762px transparent;height:20px;width:20px;display:inline-block}.icon-folder-lib{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -1008px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-upload-lib{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -1024px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-collection-lib{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -1056px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-presentation-lib{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -1040px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-asset-grey{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -1152px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-favorites{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -16px -1152px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-make-tmpl{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -16px -36px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-edit-folder{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -1168px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-share-folder{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -1184px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-move-folder{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -1200px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-remove-folder{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -1216px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-share,.icon-shared{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -1232px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-cross{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -1248px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-plus{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -1264px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-accept-green-lib{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -1280px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-clock{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -832px transparent}.icon-planet{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -1296px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-open-file,.icon-unshared{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -1312px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-file-activity{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -1328px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-arrow-right-blue{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -1344px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-corner-left-blue{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -1584px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-photo{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -1360px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-user{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -1408px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-user-blue{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -16px -1408px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-people{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -1424px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-category{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -1440px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-arrow-down{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -1472px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-folder-tree{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -1520px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-new-project{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -1552px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-add-folder{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -1616px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-add-file{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -1648px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-add-folder-plus{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -1664px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-folder-tree-arrow{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -1680px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-asset-type-t{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -1696px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-asset-type-g{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -1712px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-asset-type-v{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -1728px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-reels{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -1744px transparent}.icon-reels-big{background:url("/5.16.2.5993/frontend/images/icons32x32.png") no-repeat scroll 0 -692px transparent;height:32px}.icon-presentation{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -1744px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.icon-send{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -1760px transparent}.icon-order{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -1776px transparent}.icon-portfolio{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -1792px transparent}.icon-send-message{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -1808px transparent}.icon-add-user{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -1824px transparent}.icon-remove-user{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -1840px transparent}.icon-activity-header{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -1856px transparent}.icon-small-grey-triangle-closed{display:inline-block;width:9px;height:9px;margin-right:6px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -3px -1878px transparent}.icon-small-grey-triangle-opened{display:inline-block;width:9px;height:9px;margin-right:6px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -3px -1892px transparent}.icon-adressbook{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -2000px transparent}.icon-transaction{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -16px -2000px transparent}.icon-logoff{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -2096px transparent}.icon-default{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -32px -48px transparent}.icon-settings{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -32px -64px transparent}.icon-upload-image{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -32px -80px transparent}.icon-admin{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -32px -16px transparent}.icon-public-profile{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -32px -32px transparent}.icon-binoculars{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -16px -64px transparent}.icon-notifications-settings{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -48px -48px transparent}.icon-edit-role,.icon-published{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -48px -64px transparent}.icon-details-info{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -48px -80px transparent}.icon-help{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -32px -112px transparent}.icon-fullscreen{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -32px -288px transparent}.icon-scraper{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -32px -208px transparent}.icon-table-options{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -32px -224px transparent}.icon-arrow-up{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -32px -320px transparent}.icon-white-add{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -48px -885px transparent}.icon-white-delete{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -48px -901px transparent;height:14px}.icon-project-root{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -16px -80px transparent}.icon-non-broadcastable{display:inline-block;height:16px;width:16px;line-height:16px;color:white;background-color:red;vertical-align:top;font-size:0.8em;text-align:center}.icon-non-broadcastable::before{content:"NB"}.file-type-icon{background:url('/5.16.2.5993/frontend/images/file-types.png') no-repeat 0 16px;display:inline-block;height:16px;width:16px;line-height:16px}.file-type-icon.video{background-position:0 2px}.file-type-icon.audio{background-position:0 -30px}.file-type-icon.image{background-position:0 -14px}.file-type-icon.document{background-position:0 -78px}.file-type-icon.adbanked{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -1488px transparent}.file-type-icon.print{background-position:0 -46px}.file-type-icon.application{background-position:0 -46px}.file-type-icon.digital{background-position:0 -62px}.file-type-icon.unknown-file-type,.file-type-icon.undefined,.file-type-icon.other{background-image:none}.icon-clip-55x55{display:inline-block;height:55px;width:55px;line-height:55px;background:url('/5.16.2.5993/frontend/images/clip55x55.png') center center no-repeat transparent}.metadata-date-type{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -16px -688px transparent}.metadata-date-type.active{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -32px -688px transparent}.metadata-sectionbreak-type{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -16px -800px transparent}.metadata-sectionbreak-type.active{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -32px -800px transparent}.metadata-string-type,.metadata-clocknumber-type{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -16px -720px transparent}.metadata-string-type.active,.metadata-clocknumber-type.active{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -32px -720px transparent}.metadata-text-type{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -16px -736px transparent}.metadata-text-type.active{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -32px -736px transparent}.metadata-array_dictionary-type,.metadata-dictionary-type{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -16px -704px transparent}.metadata-array_dictionary-type.active,.metadata-dictionary-type.active{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -32px -704px transparent}.metadata-hyperlink-type,.icon-link{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -16px -752px transparent}.metadata-hyperlink-type.active,.icon-link.active{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -32px -848px transparent}.metadata-email-type{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -16px -768px transparent}.metadata-email-type.active{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -32px -768px transparent}.metadata-address-type{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -16px -768px transparent}.metadata-address-type.active{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -32px -768px transparent}.metadata-textarea-type{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -16px -736px transparent}.metadata-textarea-type.active{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -32px -736px transparent}.metadata-phone-type{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -16px -784px transparent}.metadata-phone-type.active{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -32px -784px transparent}.metadata-image-type{display:inline-block;height:16px;width:16px;line-height:16px;background:url('/5.16.2.5993/frontend/images/file-types.png') no-repeat 0 -14px}.metadata-image-type.active{background:url('/5.16.2.5993/frontend/images/file-types.png') no-repeat 0 -110px}.metadata-number-type{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -16px -816px transparent}.metadata-number-type.active{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -32px -816px transparent}.metadata-structure-type{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -16px -832px transparent}.metadata-structure-type.active{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -32px -832px transparent}.metadata-radio-type{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -16px -864px transparent}.metadata-radio-type.active{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -32px -864px transparent}.icon-qc-file{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -48px -944px transparent}.reels-sidebar{display:table-cell}.reels_list{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;display:table-cell}div.reel-item .title{cursor:pointer;width:auto}div.reel-empty-icon,div.reel-icon{width:32px;height:32px;text-align:center;vertical-align:middle;display:inline-block;line-height:32px}div.reel-empty-icon img,div.reel-icon img{-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}div.reel-empty-icon .icon,div.reel-icon .icon{width:32px;height:32px;vertical-align:middle;display:inline-block;background-image:url("/5.16.2.5993/frontend/images/icons32x32.png");background-position:0 -693px;font-size:1px}.assetDate .dijitTextBox{width:auto}.dijitSelect{background-color:#fff;width:100%;empty-cells:show;border:1px solid #ccc;color:#3c3c3c}.dijitSelect.dijitSelectFocused{outline:none;-webkit-box-shadow:inset 0 1px 3px @black-01, 0 0 5px  @blue-06;-moz-box-shadow:inset 0 1px 3px @black-01, 0 0 5px  @blue-06;box-shadow:inset 0 1px 3px @black-01, 0 0 5px  @blue-06;border-color:#0082dc;border-color:rgba(0,130,220,0.6)}.dijitSelect .dijitArrowButton{width:30px;background-color:#f6f6f6;background:-moz-linear-gradient(top, #f6f6f6, #e0e0e0);background:-webkit-linear-gradient(top, #f6f6f6, #e0e0e0);background:-o-linear-gradient(top, #f6f6f6, #e0e0e0);background:-ms-linear-gradient(top, #f6f6f6, #e0e0e0);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #f6f6f6, #e0e0e0, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #f6f6f6, #e0e0e0);border-left:1px solid #ccc !important}.dijitSelect .dijitArrowButton .dijitArrowButtonInner{margin:6px 7px 6px 7px;height:16px;width:16px;font-size:12px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") 0 -1472px no-repeat}.dijitSelect .dijitButtonNode{border:1px solid #ccc}.dijitSelect.actionBar{border:0;font-weight:bold;color:#0082dc}.dijitSelect.actionBar.dijitSelectFocused{box-shadow:none}.dijitSelect.actionBar .dijitArrowButton{background-color:#fff;background:-moz-linear-gradient(top, #fff, #fff);background:-webkit-linear-gradient(top, #fff, #fff);background:-o-linear-gradient(top, #fff, #fff);background:-ms-linear-gradient(top, #fff, #fff);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #fff, #fff, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #fff, #fff);border:none !important}.dijitSelect .dijitSelectLabel{padding-left:5px}.dijitSelect.dijitSelectDisabled{background:#f6f6f6}.dijitTextBoxDisabled{background:#eee !important}.dijitTextBoxDisabled input{color:#6E6E6E!important}.date .dijitArrowButton{background-color:#f6f6f6;background:-moz-linear-gradient(top, #f6f6f6, #e0e0e0);background:-webkit-linear-gradient(top, #f6f6f6, #e0e0e0);background:-o-linear-gradient(top, #f6f6f6, #e0e0e0);background:-ms-linear-gradient(top, #f6f6f6, #e0e0e0);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #f6f6f6, #e0e0e0, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #f6f6f6, #e0e0e0);border-left:1px solid #ccc !important}.date.dijitTextBox{position:relative}.date.dijitTextBox .dijitArrowButtonContainer{height:28px;width:30px;position:relative;color:#F6F6F6 !important}.date.dijitTextBox .dijitArrowButtonContainer:after{background:url("/5.16.2.5993/frontend/images/icons16x16.png") 0 -1456px no-repeat !important;margin-left:7px;height:0px;width:0px}.date.dijitTextBox input.dijitArrowButtonInner{width:24px;height:24px !important;background:url("/5.16.2.5993/frontend/images/icons16x16.png") 0 -1456px no-repeat;background-clip:content-box;background-origin:content-box;margin-top:6px;padding-left:6px !important}.date.dijitTextBoxDisabled{background:#f6f6f6}.date.dijitTextBox INPUT{font-size:13px;line-height:16px;padding-left:10px !important}.dj_ie .dijitTextBox.date .dijitArrowButtonInner{font-size:0px !important}.dijitSelectMenu{border:1px solid #ccc}.dijitMenu{border:1px solid #ccc;border-collapse:separate !important;color:#333}.dijitMenu .dijitMenuItem{color:#333}.dijitMenu .dijitMenuSeparatorLabelCell{border-top:1px solid #0082dc}.dijitMenu .dijitMenuItemSelected{background-color:#eee}.dijitMenu.app-swither-menu{border:none;min-width:150px;-webkit-box-shadow:0 0 1px 0 #ccc inset;-moz-box-shadow:0 0 1px 0 #ccc inset;box-shadow:0 0 1px 0 #ccc inset}.dijitMenu.app-swither-menu .dijitMenuItemSelected{background-color:transparent}.dijitMenu.app-swither-menu a{width:auto !important}.dijitMenuTable{color:#333}.dijitMenuTable .dijitMenuItemLabel{padding:5px 10px 5px}.dijitMenuTable .user-menu-item .dijitMenuItemLabel{padding:0}.dijitMenuTable .user-menu-item .dijitMenuItemIconCell{display:none}.dijitMenuTable .user-menu-item .dijitMenuArrowCell{display:none}.dijitMenuTable .dijitMenuItemFocused{background-color:#eee;color:#333}.dijitMenuTable .ButtonMenuItem{padding:0 10px;margin:2px}.dijitMenuTable .ButtonMenuItem a{line-height:20px;color:#333;text-decoration:none}.dijitMenuTable .ButtonMenuItem a.folder{padding-left:30px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") 0 -160px no-repeat}.dijitMenuTable .ButtonMenuItem:hover{background-color:#d8e8fc}.dijitMenuTable .ButtonMenuItem:hover a.folder{background:url("/5.16.2.5993/frontend/images/icons16x16.png") 0 -176px no-repeat}.dijitTextBox{height:30px;width:100%;outline:none;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-box-shadow:0 1px 3px rgba(0,0,0,0.1);-moz-box-shadow:0 1px 3px rgba(0,0,0,0.1);box-shadow:0 1px 3px rgba(0,0,0,0.1);border:1px solid #ccc;background-color:white;-webkit-transition:border linear .2s,box-shadow linear .2s}.dijitTextBox.dijitTextBoxFocused{outline:none;-webkit-box-shadow:inset 0 1px 3px @black-01, 0 0 5px  @blue-06;-moz-box-shadow:inset 0 1px 3px @black-01, 0 0 5px  @blue-06;box-shadow:inset 0 1px 3px @black-01, 0 0 5px  @blue-06;border-color:#0082dc;border-color:rgba(0,130,220,0.6)}.dijitTextBox.dijitTextBoxFocused .dijitButtonNode{border-color:#0082dc;border-color:rgba(0,130,220,0.6)}.dijitTextBox.dijitTextBoxError,.dijitTextBox.dijitComboBoxErrorg{border-color:red}.dijitTextBox.dijitTextBoxError:focus,.dijitTextBox.dijitComboBoxErrorg:focus,.dijitTextBox.dijitTextBoxError.dijitTextBoxFocused,.dijitTextBox.dijitComboBoxErrorg.dijitTextBoxFocused{outline:none;-webkit-box-shadow:inset 0 1px 3px @black-01, 0 0 5px rgba(255, 167, 4, 0.7);-moz-box-shadow:inset 0 1px 3px @black-01, 0 0 5px rgba(255, 167, 4, 0.7);box-shadow:inset 0 1px 3px @black-01, 0 0 5px rgba(255, 167, 4, 0.7);border-color:red}.dijitTextBox .dijitInputContainer{padding-top:5px;padding-left:5px;font-size:13px;font-weight:normal;font-style:normal}.dijitTextBox .dijitInputInner{color:#3c3c3c}.dijitTextBox .dijitArrowButtonContainer{border:0;border-color:#ccc;width:25px;height:100%;position:relative;overflow:hidden}.dijitTextBox .dijitArrowButtonContainer .dijitArrowButtonInner{display:inline-block;width:100% !important;height:100% ! important;position:relative;z-index:1}.dijitTextBox .dijitArrowButtonContainer:after{content:'';position:absolute;z-index:0;top:50%;left:50%;margin:-8px 0 0 -8px;height:16px;width:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") 0 0 no-repeat}.dijitTextBox.dijitDisabled .dijitArrowButtonContainer:after{content:'';position:absolute;z-index:0;top:50%;left:50%;margin:-8px 0 0 -8px;height:16px;width:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") -32px 0 no-repeat}.dijitTextBox .dijitValidationContainer{width:0px;height:0px;overflow:hidden;background-color:transparent}.dijitTextBox .dijitPlaceHolder{top:5px;left:5px}.dijitComboBoxMenu .dijitMenuItem{padding:5px 10px}.dijitComboBoxMenu .dijitMenuItemHover{background-color:#eee}.ui-dropdown{position:relative;display:inline-block;cursor:pointer}.ui-dropdown .mark{display:inline-block;width:12px;height:12px;background:url('/5.16.2.5993/frontend/images/dropdown.png') no-repeat}.ui-dropdown ul,.ui-dropdown .wrapper{position:absolute;display:none;top:100%;left:0;z-index:9999;width:150px;border:1px solid #e5e5e5;-webkit-box-shadow:0 0 2px #ccc;-moz-box-shadow:0 0 2px #ccc;box-shadow:0 0 2px #ccc;background-color:white;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px}.ui-dropdown ul li{padding:0 10px;height:23px;line-height:23px;background-color:white}.ui-dropdown ul li a{color:#333;text-decoration:none;display:inline-block;width:100%}.ui-dropdown ul li:hover{cursor:pointer;background-color:#eee}.ui-dropdown ul li.splitter{border-top:1px solid #e5e5e5}.ui-dropdown ul li.hidden{display:none}.ui-dropdown ul.list{position:relative;display:block;border:0;-webkit-box-shadow:0 0 0;-moz-box-shadow:0 0 0;box-shadow:0 0 0;background-color:white;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px}.ui-dropdown ul li input.searcher{padding-right:22px;background:#fff url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat 100% -656px;border:1px solid #cdcdcd;border-radius:3px}.ui-dropdown.visible ul,.ui-dropdown.visible .wrapper{display:block}.dropdown{position:relative}.dropdown .icon{margin:4px;position:static !important}.dropdown .dropdown-popup{right:0}.dropdown-popup{position:absolute;background-color:white;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;border:1px solid #cdcdcd}input.ui-lookup,input.ui-lookup[type="text"],input.ui-lookup[type="search"]{height:24px;padding:2px 10px;outline:none;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-box-shadow:0 1px 3px rgba(0,0,0,0.1) inset;-moz-box-shadow:0 1px 3px rgba(0,0,0,0.1) inset;box-shadow:0 1px 3px rgba(0,0,0,0.1) inset;border:1px solid #ddd;-webkit-border-radius:10px;-moz-border-radius:10px;border-radius:10px;-webkit-transition:border linear .2s,box-shadow linear .2s}input.ui-lookup:hover,input.ui-lookup[type="text"]:hover,input.ui-lookup[type="search"]:hover{border-color:#999;-webkit-transition-duration:.25s;-moz-transition-duration:.25s;transition-duration:.25s}input.ui-lookup:focus,input.ui-lookup[type="text"]:focus,input.ui-lookup[type="search"]:focus{-webkit-box-shadow:inset 0 1px 3px @black-01, 0 0 5px rgba(0, 0, 0, 0.9);-moz-box-shadow:inset 0 1px 3px @black-01, 0 0 5px rgba(0, 0, 0, 0.9);box-shadow:inset 0 1px 3px @black-01, 0 0 5px rgba(0, 0, 0, 0.9);border-color:#999}.box{width:auto;border:1px solid #cdcdcd;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px;background:#f6f6f6}.box.transparent{background:transparent}.box.light{border-color:#d8e5ef;background-color:#eef3f6}.bordered{border:1px solid #cdcdcd}.brightBox{width:auto;background:#99ccff}.logo{height:50px;width:150px}.buttonBig{display:inline-block;min-width:60px;height:auto;padding:0 12px;color:#333;text-decoration:none;text-align:center;font-size:18px;outline:none;position:absolute}.buttonBig .dijitButtonNode{border:none}.buttonBig .dijitButtonContents{padding:10px 5px 10px 14px !important}.buttonBig.dijitOpened{margin-top:2px;background:#fff;border:1px solid #ccc}.buttonBig.dijitOpened .dijitButtonContents{padding:7px 3px 10px 14px !important}.buttonBig.n4{font-size:15px}.button{-moz-box-sizing:content-box;box-sizing:content-box;display:inline-block;min-width:60px;height:auto;line-height:28px;height:29px;padding:0 12px;color:#333;text-decoration:none;text-align:center;font-size:13px;background-color:#f6f6f6;background:-moz-linear-gradient(top, #f6f6f6, #e0e0e0);background:-webkit-linear-gradient(top, #f6f6f6, #e0e0e0);background:-o-linear-gradient(top, #f6f6f6, #e0e0e0);background:-ms-linear-gradient(top, #f6f6f6, #e0e0e0);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #f6f6f6, #e0e0e0, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #f6f6f6, #e0e0e0);border:1px solid #cdcdcd;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;outline:none}.button.dynamic{height:auto;line-height:23px;overflow:hidden;text-overflow:ellipsis}.button.mws{min-width:10px}.button.brn{border-radius:0;border-left:0;border-right:0}.button.brl{border-radius:3px 0 0 3px;padding:0 6px;min-width:10px}.button.brr{border-radius:0 3px 3px 0;padding:0 6px;min-width:10px}.button.small{min-width:50px;height:23px;line-height:23px;padding:0 5px;font-size:11px;font-weight:normal}.button.huge{min-width:100px;height:40px;line-height:40px;font-size:15px}.button.orange{color:white;background-color:#d94a38;background:-moz-linear-gradient(top, #d94a38, #cd4111);background:-webkit-linear-gradient(top, #d94a38, #cd4111);background:-o-linear-gradient(top, #d94a38, #cd4111);background:-ms-linear-gradient(top, #d94a38, #cd4111);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #d94a38, #cd4111, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #d94a38, #cd4111);border-color:#d74401}.button.orange:not(.disabled):hover{background-color:#ce4514;background:-moz-linear-gradient(top, #ce4514, #ce4514);background:-webkit-linear-gradient(top, #ce4514, #ce4514);background:-o-linear-gradient(top, #ce4514, #ce4514);background:-ms-linear-gradient(top, #ce4514, #ce4514);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #ce4514, #ce4514, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #ce4514, #ce4514);border-color:#be3c01;color:white}.button.green{color:white;background-color:#6cba4a;background:-moz-linear-gradient(top, #6cba4a, #4da133);background:-webkit-linear-gradient(top, #6cba4a, #4da133);background:-o-linear-gradient(top, #6cba4a, #4da133);background:-ms-linear-gradient(top, #6cba4a, #4da133);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #6cba4a, #4da133, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #6cba4a, #4da133);border-color:#4f9735}.button.green:not(.disabled):hover{background-color:#4da133;background:-moz-linear-gradient(top, #4da133, #4da133);background:-webkit-linear-gradient(top, #4da133, #4da133);background:-o-linear-gradient(top, #4da133, #4da133);background:-ms-linear-gradient(top, #4da133, #4da133);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #4da133, #4da133, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #4da133, #4da133);border-color:#45842e;color:white}.button.gray{color:white;background-color:#3f4041;background:-moz-linear-gradient(top, #3f4041, #333);background:-webkit-linear-gradient(top, #3f4041, #333);background:-o-linear-gradient(top, #3f4041, #333);background:-ms-linear-gradient(top, #3f4041, #333);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #3f4041, #333, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #3f4041, #333);border-color:#363636}.button.gray:hover{background-color:#333;background:-moz-linear-gradient(top, #333, #333);background:-webkit-linear-gradient(top, #333, #333);background:-o-linear-gradient(top, #333, #333);background:-ms-linear-gradient(top, #333, #333);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #333, #333, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #333, #333);border-color:#292929;color:white}.button:hover{background-color:#e2e2e2;background:-moz-linear-gradient(top, #e2e2e2, #e2e2e2);background:-webkit-linear-gradient(top, #e2e2e2, #e2e2e2);background:-o-linear-gradient(top, #e2e2e2, #e2e2e2);background:-ms-linear-gradient(top, #e2e2e2, #e2e2e2);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #e2e2e2, #e2e2e2, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #e2e2e2, #e2e2e2);cursor:pointer;color:#333;text-decoration:none;border-color:#c0c0c0}.button.disabled,.button:disabled,.button.secondary:disabled,.button.secondary.disabled,.button.secondary:hover.disabled,.button.secondary:hover:disabled{background-color:#e0e0e0;background:-moz-linear-gradient(top, #e0e0e0, #d8d8d8);background:-webkit-linear-gradient(top, #e0e0e0, #d8d8d8);background:-o-linear-gradient(top, #e0e0e0, #d8d8d8);background:-ms-linear-gradient(top, #e0e0e0, #d8d8d8);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #e0e0e0, #d8d8d8, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #e0e0e0, #d8d8d8);cursor:auto;color:#a6a6a6;border-color:#cdcdcd}.button.disabled span,.button:disabled span,.button.secondary:disabled span,.button.secondary.disabled span,.button.secondary:hover.disabled span,.button.secondary:hover:disabled span{filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=0.6, enabled=1)";opacity:.6}.button.secondary,.button:disabled.progressTimeout{color:white;background-color:#00aae9;background:-moz-linear-gradient(top, #00aae9, #007dd9);background:-webkit-linear-gradient(top, #00aae9, #007dd9);background:-o-linear-gradient(top, #00aae9, #007dd9);background:-ms-linear-gradient(top, #00aae9, #007dd9);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #00aae9, #007dd9, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #00aae9, #007dd9);border-color:#096bce}.button.secondary:active,.button:disabled.progressTimeout:active{background-color:#0082dc;background:-moz-linear-gradient(top, #0082dc, #0082dc);background:-webkit-linear-gradient(top, #0082dc, #0082dc);background:-o-linear-gradient(top, #0082dc, #0082dc);background:-ms-linear-gradient(top, #0082dc, #0082dc);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #0082dc, #0082dc, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #0082dc, #0082dc)}.button.secondary:hover,.button:disabled.progressTimeout:hover{background-color:#0082dc;background:-moz-linear-gradient(top, #0082dc, #0082dc);background:-webkit-linear-gradient(top, #0082dc, #0082dc);background:-o-linear-gradient(top, #0082dc, #0082dc);background:-ms-linear-gradient(top, #0082dc, #0082dc);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #0082dc, #0082dc, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #0082dc, #0082dc);color:white;border-color:#2a51a3}.button.secondary.progress,.button:disabled.progressTimeout.progress{background-image:url('/5.16.2.5993/frontend/images/button-progress.gif');background-color:#007dd9;cursor:default;color:#fff}.button.secondary.red,.button:disabled.progressTimeout.red{background-color:#ff3019 !important;background:-moz-linear-gradient(top, #ff3019, #cf0404) !important;background:-webkit-linear-gradient(top, #ff3019, #cf0404) !important;background:-o-linear-gradient(top, #ff3019, #cf0404) !important;background:-ms-linear-gradient(top, #ff3019, #cf0404) !important;-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #ff3019, #cf0404, '"') !important;filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #ff3019, #cf0404) !important;border-color:#cf0404 !important}.button.progress{background-image:url('/5.16.2.5993/frontend/images/button-progress.gif');background-color:#007dd9;cursor:default;color:#fff}.button:active,.button.active{background-color:#e1e1e1;background:-moz-linear-gradient(top, #e1e1e1, #e1e1e1);background:-webkit-linear-gradient(top, #e1e1e1, #e1e1e1);background:-o-linear-gradient(top, #e1e1e1, #e1e1e1);background:-ms-linear-gradient(top, #e1e1e1, #e1e1e1);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #e1e1e1, #e1e1e1, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #e1e1e1, #e1e1e1);-webkit-box-shadow:1px 2px 3px rgba(0,0,0,0.2) inset;-moz-box-shadow:1px 2px 3px rgba(0,0,0,0.2) inset;box-shadow:1px 2px 3px rgba(0,0,0,0.2) inset}.button:active.disabled,.button.active.disabled{box-shadow:none}.button.no-padding{padding:0px}.button.no-min{min-width:0px}.button .icon{display:inline-block;height:16px;width:16px;line-height:16px}.button.dropdown{padding-right:30px;position:relative}.button.dropdown:after{content:'';position:absolute;top:0px;right:0px;margin:0 0 0 0px;height:28px;width:24px;-webkit-box-shadow:1px 0 0 0 #cdcdcd inset;-moz-box-shadow:1px 0 0 0 #cdcdcd inset;box-shadow:1px 0 0 0 #cdcdcd inset;border-left:1px solid white}.button.dropdown .icon{position:absolute;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 0 transparent;top:6px;right:5px}.button.dropdown .icon.clock{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -832px transparent}.button.dropdown .icon.calendar{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -848px transparent}.button.dropdown.small:after{height:22px}.button.dropdown.small .icon{top:4px}.button .right-icon{position:absolute;right:5px;top:5px}.button .dijitButtonNode{border:none;line-height:30px}.button.size1of2{min-width:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.button.wider{padding:0 24px}.dropdown-container{display:inline-block;position:relative}.dropdown-container .button{padding-right:34px;padding-left:9px}.dropdown-container .button .dropdown-icon{margin-top:6px}.dropdown-container .icon-container{cursor:pointer;content:'';position:absolute;top:1px;right:0px;margin:0 0 0 0px;height:28px;width:26px;-webkit-box-shadow:1px 0 0 0 #cdcdcd inset;-moz-box-shadow:1px 0 0 0 #cdcdcd inset;box-shadow:1px 0 0 0 #cdcdcd inset;border-left:1px solid white}.dropdown-container .icon-container.no-border{-webkit-box-shadow:0 0 0 0 #cdcdcd inset;-moz-box-shadow:0 0 0 0 #cdcdcd inset;box-shadow:0 0 0 0 #cdcdcd inset;border-left:none}.dropdown-container.small .icon-container{height:22px}.dropdown-container.small .icon{top:4px}.dropdown-container.error{border:solid 1px #f32837}.dropdown-container.error .ui-input,.dropdown-container.error .dropdown-button{border:none!important}.dropdown-container .icon{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -1472px transparent;display:inline-block;height:16px;width:16px;line-height:16px;position:absolute;top:6px;right:5px}.dropdown-container .icon.clock{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -832px transparent}.dropdown-container .icon.calendar{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -848px transparent}.dropdown-container .icon.none-background{background:none}.dropdown-container .dijitButtonContents{height:28px;margin-top:-8px;width:24px}.dropdown-container .dijitButtonNode{border:none}.dropdown-container.disabled .button{filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=0.8, enabled=1)";opacity:.8}.dropdown-container.disabled .icon-container{z-index:-1}.dropdown-container.lib .button{min-width:0px}.dropdown-container:hover .button{background-color:#e2e2e2;background:-moz-linear-gradient(top, #e2e2e2, #e2e2e2);background:-webkit-linear-gradient(top, #e2e2e2, #e2e2e2);background:-o-linear-gradient(top, #e2e2e2, #e2e2e2);background:-ms-linear-gradient(top, #e2e2e2, #e2e2e2);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #e2e2e2, #e2e2e2, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #e2e2e2, #e2e2e2);cursor:pointer;color:#333;text-decoration:none;border-color:#c0c0c0}.dropdown{height:100%;width:100%}.dropdown-popup{postion:absolute}.ui-thumb-helper{position:relative;float:left;height:64px;width:180px;padding:10px;background:white;border:2px solid #e5e5e5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;color:#333;-webkit-transition:box-shadow linear .2s}.ui-thumb{position:relative;float:left;height:64px;width:180px;padding:10px;background:white;border:2px solid #e5e5e5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;color:#333;-webkit-transition:box-shadow linear .2s}.ui-thumb:before,.ui-thumb::before{content:'';position:absolute;z-index:-2;top:50%;bottom:0;left:10px;right:10px;-webkit-border-radius:100px / 10px;-moz-border-radius:100px / 10px;border-radius:100px / 10px;-webkit-box-shadow:0 0 15px rgba(0,0,0,0.8);-moz-box-shadow:0 0 15px rgba(0,0,0,0.8);box-shadow:0 0 15px rgba(0,0,0,0.8)}.ui-thumb:hover{-webkit-box-shadow:0 0 5px rgba(204,204,204,0.6);-moz-box-shadow:0 0 5px rgba(204,204,204,0.6);box-shadow:0 0 5px rgba(204,204,204,0.6);cursor:pointer;border-color:#ccc}.ui-thumb.selected{border-color:#0082dc}.ui-thumb.selected:hover{-webkit-box-shadow:0 0 5px rgba(0,130,220,0.6);-moz-box-shadow:0 0 5px rgba(0,130,220,0.6);box-shadow:0 0 5px rgba(0,130,220,0.6)}.ui-thumb .info-cell{max-width:90px}.ui-thumb .info-cell p{overflow:hidden;height:40px;word-wrap:break-word}.ui-thumb .info-cell span.tiny{display:inline-block;overflow:hidden;width:70px}.ui-thumb .icon-remove{position:absolute;right:-8px;top:-8px;display:none}.ui-thumb:hover .icon-remove{display:inline-block}.ui-thumb.disabled{background:#eee}.avatar{display:inline-block;background:white;background:rgba(255,255,255,0.6);border:1px solid #e0e0e0;padding:2px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 0 6px #d9d9d9;-moz-box-shadow:0 0 6px #d9d9d9;box-shadow:0 0 6px #d9d9d9}.avatar img{width:60px;height:60px}.avatar.center{width:160px;height:160px;display:table-cell;vertical-align:middle;text-align:center}.avatar.project img{width:150px;height:150px}.avatar.huge img{width:auto;height:auto;margin:0 auto}.avatar.small img{width:30px;height:30px}.avatar.tiny img{width:16px;height:16px}.avatar.no-padding{border:none;padding:0px}.avatar.no-border{border:none;-webkit-box-shadow:0 0 0 #d9d9d9;-moz-box-shadow:0 0 0 #d9d9d9;box-shadow:0 0 0 #d9d9d9}.avatar.user-settings{padding:4px;border:4px solid #cecece;-webkit-box-shadow:0 0 0 #cecece;-moz-box-shadow:0 0 0 #cecece;box-shadow:0 0 0 #cecece;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.avatar.user-settings img{width:114px;height:114px}.avatar.template-settings{padding:4px;border:4px solid #cecece;-webkit-box-shadow:0 0 0 #cecece;-moz-box-shadow:0 0 0 #cecece;box-shadow:0 0 0 #cecece;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.applicationsList li{float:left;margin-right:10px}.applicationsList li:last-child{margin-right:0}.applicationsList li a{width:32px;height:32px;display:inline-block;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;-webkit-box-shadow:0 1px 5px #666;-moz-box-shadow:0 1px 5px #666;box-shadow:0 1px 5px #666;background:url('/5.16.2.5993/frontend/images/apps.png') no-repeat #fff}.applicationsList li a.folders{background-position:0 0}.applicationsList li a.home{background-position:0 -32px}.applicationsList li a.schedule{background-position:0 -64px}.applicationsList li a.wheel{background-position:0 -96px}.applicationsList li a:hover{background-color:#ececec}.applicationsList li a.active,.applicationsList li a.active:hover{background-color:transparent;-webkit-box-shadow:0 0 10px #45a5aa;-moz-box-shadow:0 0 10px #45a5aa;box-shadow:0 0 10px #45a5aa;border-color:#45a5aa}.nav-tabs{overflow:hidden;padding-top:7px;margin-bottom:-1px;background:#eee;width:800px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.nav-tabs.wide{width:100%}.nav-tabs.ptxm{padding-top:15px}.nav-tabs a{position:relative;display:inline-block;outline:none;padding:5px 0px 5px 0px;color:#333;text-decoration:none;border:1px solid transparent;border-bottom:none}.nav-tabs a span{display:inline-block;margin:5px 0;padding:0 20px 0 20px;border-right:1px solid #ccc;-webkit-box-shadow:-1px 0 #fff inset;-moz-box-shadow:-1px 0 #fff inset;box-shadow:-1px 0 #fff inset}.nav-tabs a:hover{background:#e0e0e0}.nav-tabs a.active,.nav-tabs a.active:hover,.nav-tabs a:active{z-index:2;background:white;-webkit-box-shadow:0 0 10px #d6d6d6;-moz-box-shadow:0 0 10px #d6d6d6;box-shadow:0 0 10px #d6d6d6;border-color:#ccc}.nav-tabs a.active span,.nav-tabs a.active:hover span,.nav-tabs a:active span{border-right:none;-webkit-box-shadow:0 0 #fff;-moz-box-shadow:0 0 #fff;box-shadow:0 0 #fff}.nav-tabs>a:last-child span,.nav-tabs>.tab:last-child a span{border-right:none;-webkit-box-shadow:0 0 #fff;-moz-box-shadow:0 0 #fff;box-shadow:0 0 #fff}.nav-tabs div.p a{padding:0;display:inline;color:#0082dc;text-decoration:underline;border:none}.nav-tabs div.p a:hover{background:transparent}.nav-tabs.tab-panel a span{padding-right:20px;padding-left:20px}.nav-tabs.no-delimeters a span{border-right:0 solid #ccc;-webkit-box-shadow:0 0 #fff inset;-moz-box-shadow:0 0 #fff inset;box-shadow:0 0 #fff inset}.nav-tabs.flexible{width:auto}.breadcrumb{color:#302e2d;font-size:15px}.breadcrumb li{float:left;margin-right:6px;line-height:25px}.breadcrumb li::after{margin-left:6px;content:'//'}.breadcrumb li:last-child{margin-right:0;font-weight:bold}.breadcrumb li:last-child::after{content:none}.breadcrumb li:first-child .none-display{display:inline-block !important}.breadcrumb.icon-reels{width:auto;padding-left:20px}.stackedList.huge li{padding:0 0 0 40px}.listSpecial li{line-height:25px;font-size:15px;border-left:3px solid transparent;position:relative}.listSpecial li:hover{background:#eee;cursor:pointer}.listSpecial li.active,.listSpecial li.active:hover{background-color:#d8e8fc}.listSpecial li .remove{position:absolute;display:none;padding:4px;color:#b8b8b8;font:normal 14px Verdana;right:0}.listSpecial li .remove:hover{color:#666;font-weight:bold}.listSpecial li:hover .remove{display:inline-block}.listSeparated li{float:left;padding:0 10px;border-right:1px solid #999}.listSeparated li:last-child{border:none}.listSeparated li a{color:#333;text-decoration:none}.listSeparated li a:hover{color:#dd6565;text-decoration:underline}.listSeparated.special a{text-decoration:underline}.ui-counter{display:inline-block;min-width:16px;text-align:center;line-height:16px;height:16px;font-size:11px;font-weight:bold;color:white;cursor:pointer;-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px;background-color:#c33}.ui-counter>span{margin-right:5px}.ui-counter.special{background-color:#f6b44c}.ui-counter.dimblue{background-color:#0082dc;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px;padding-top:3px}.ui-counter.dimgray{-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px;background-color:#939598;padding-top:3px}.ui-content-pane{overflow:hidden;padding:20px 40px}.ui-content-pane.small{padding:0}.ui-content-pane.top{border-top:1px solid #e8e8e8}.ui-content-pane.bottom{border-bottom:1px solid #e8e8e8}.ui-content-pane.updated{padding:20px 0px 15px 0px}.savePanel{border-top:1px solid #e8e8e8;padding:20px 40px;margin-top:10px}.savePanel a{color:#333;text-decoration:none}.savePanel a:hover{text-decoration:underline}.folderIcon{position:relative;width:32px;height:32px;background:url("/5.16.2.5993/frontend/images/icons32x32.png") 0 0 no-repeat}.folderIcon:before{position:absolute;margin:12px 0 0 3px;color:white;font-weight:bold}.folderIcon.template:before{content:'T'}.folderIcon.project:before{content:'P'}.actionListBar{color:#333;font-size:11px}.actionListBar .selectAll{line-height:16px}.actionListBar .vmiddle{display:table-cell;vertical-align:middle;height:25px}.itemsList{font-size:13px}.itemsList .headers{border:1px solid #ccc;border-left:none;border-right:none;background-color:#f0f0f0;background:-moz-linear-gradient(top, #f0f0f0, #f0f0f0);background:-webkit-linear-gradient(top, #f0f0f0, #f0f0f0);background:-o-linear-gradient(top, #f0f0f0, #f0f0f0);background:-ms-linear-gradient(top, #f0f0f0, #f0f0f0);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #f0f0f0, #f0f0f0, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #f0f0f0, #f0f0f0);min-height:30px;max-height:30px;-webkit-box-shadow:0 1px 0 0 #F9F9F9 inset;-moz-box-shadow:0 1px 0 0 #F9F9F9 inset;box-shadow:0 1px 0 0 #F9F9F9 inset}.itemsList .headers .ptxxs{padding-top:3px}.itemsList .headers .sort{color:#333;display:inline-block;position:relative;cursor:pointer}.itemsList .headers .sort:after{content:'';position:absolute;top:8px;right:5px;margin:0 0 0 4px;height:16px;width:16px}.itemsList .headers .sort.asc,.itemsList .headers .sort.desc{-webkit-box-shadow:-1px 0 0px 0px #cecece inset, 1px 0 0 0 #f9f9f9 inset, 0px 2px 0px 0px #eaeaea inset;-moz-box-shadow:-1px 0 0px 0px #cecece inset, 1px 0 0 0 #f9f9f9 inset, 0px 2px 0px 0px #eaeaea inset;box-shadow:-1px 0 0px 0px #cecece inset, 1px 0 0 0 #f9f9f9 inset, 0px 2px 0px 0px #eaeaea inset;background-color:#fafafa;background:-moz-linear-gradient(top, #fafafa, #fafafa);background:-webkit-linear-gradient(top, #fafafa, #fafafa);background:-o-linear-gradient(top, #fafafa, #fafafa);background:-ms-linear-gradient(top, #fafafa, #fafafa);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #fafafa, #fafafa, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #fafafa, #fafafa)}.itemsList .headers .sort.asc:after{background:url("/5.16.2.5993/frontend/images/icons16x16.png") 0 -1536px no-repeat}.itemsList .headers .sort.desc:after{background:url("/5.16.2.5993/frontend/images/icons16x16.png") 0 -1472px no-repeat}.itemsList .headers .sort.filter:after{background:url("/5.16.2.5993/frontend/images/icons16x16.png") -32px -240px no-repeat}.itemsList .headers .cell{-webkit-box-shadow:-1px 0 0px 0px #cecece inset, 1px 0 0 0 #f9f9f9 inset;-moz-box-shadow:-1px 0 0px 0px #cecece inset, 1px 0 0 0 #f9f9f9 inset;box-shadow:-1px 0 0px 0px #cecece inset, 1px 0 0 0 #f9f9f9 inset}.itemsList .headers .cell:last-child{-webkit-box-shadow:-1px 0 0 0 #F9F9F9 inset, -2px 0 0 0 #CECECe inset, 1px 0 0 0 #F9F9F9 inset;-moz-box-shadow:-1px 0 0 0 #F9F9F9 inset, -2px 0 0 0 #CECECe inset, 1px 0 0 0 #F9F9F9 inset;box-shadow:-1px 0 0 0 #F9F9F9 inset, -2px 0 0 0 #CECECe inset, 1px 0 0 0 #F9F9F9 inset}.itemsList .headers .cell.preview_block{-webkit-box-shadow:1px 0 0 0 #CECECE inset, 2px 0 0 0 #F9F9F9 inset, -1px 0 0 0 #CECECE inset;-moz-box-shadow:1px 0 0 0 #CECECE inset, 2px 0 0 0 #F9F9F9 inset, -1px 0 0 0 #CECECE inset;box-shadow:1px 0 0 0 #CECECE inset, 2px 0 0 0 #F9F9F9 inset, -1px 0 0 0 #CECECE inset;height:30px}.itemsList .headers .cell.preview_block input{margin-top:8px}.itemsList .headers .vmiddle{display:table-cell;vertical-align:middle;height:30px}.itemsList .headers.no-round{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.itemsList .headers.no-border-top{border-top:none}.itemsList .row{min-height:50px;max-height:50px;-webkit-box-shadow:0 0 0 1px #fff inset;-moz-box-shadow:0 0 0 1px #fff inset;box-shadow:0 0 0 1px #fff inset}.itemsList .row:nth-child(even){background-color:#f1f1f1}.itemsList .row.darker{background-color:#f1f1f1}.itemsList .row:hover{background-color:#fafae3}.itemsList .row.headers:hover{background-color:#e6e6e6;background:-moz-linear-gradient(top, #e6e6e6, #e6e6e6);background:-webkit-linear-gradient(top, #e6e6e6, #e6e6e6);background:-o-linear-gradient(top, #e6e6e6, #e6e6e6);background:-ms-linear-gradient(top, #e6e6e6, #e6e6e6);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #e6e6e6, #e6e6e6, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #e6e6e6, #e6e6e6)}.itemsList .row.selected,.itemsList .row.checked{background-color:#d8e8fc}.itemsList .row.no-border-left{border-left:none}.itemsList .row.no-border-right{border-right:none}.itemsList .row.dndDragOver{padding:0;min-height:58px;max-height:58px}.itemsList .row.dndDragOver .vmiddle{height:58px}.itemsList .row .cell{position:relative;overflow:hidden;float:left}.itemsList .row .cell .user-inactive{color:red}.itemsList .row .cell .user-active{color:#5ea87e}.itemsList .row .cell .bold{font-weight:bold}.itemsList .row .cell .grey{color:#666;font-size:0.8em}.itemsList .row .cell .icons{position:absolute;top:0;left:0;width:120px}.itemsList .row .cell .icons input{margin-top:16px}.itemsList .row .cell .icons .folderIcon{margin-top:4px}.itemsList .row .cell .icons .starred{margin-top:12px;width:16px;height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") 0 -48px no-repeat}.itemsList .row .cell button{float:right}.itemsList .row .cell:last-child{box-shadow:0px 0px 0px 0px #5d5c5c}.itemsList .row .cell.preview_block{height:50px}.itemsList .row .cell.preview_block input{margin-top:8px}.itemsList .row .cell.preview_block img{max-height:33px;max-width:33px;min-height:33px;margin-top:9px;display:inline-block}.itemsList .row.subhead{min-height:40px;max-height:40px;background-color:white;border-top:1px solid #ccc;-webkit-box-shadow:0 0 1px 2px #8ad3ed;-moz-box-shadow:0 0 1px 2px #8ad3ed;box-shadow:0 0 1px 2px #8ad3ed;position:relative;z-index:1;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.itemsList .row.subhead .vmiddle{height:40px}.itemsList .row.abitem{position:relative;background-color:#fff;background:-moz-linear-gradient(top, #fff, #f6f6f6);background:-webkit-linear-gradient(top, #fff, #f6f6f6);background:-o-linear-gradient(top, #fff, #f6f6f6);background:-ms-linear-gradient(top, #fff, #f6f6f6);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #fff, #f6f6f6, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #fff, #f6f6f6)}.itemsList .row.abitem:hover{background-color:#fafae3;background:-moz-linear-gradient(top, #fafae3, #fafae3);background:-webkit-linear-gradient(top, #fafae3, #fafae3);background:-o-linear-gradient(top, #fafae3, #fafae3);background:-ms-linear-gradient(top, #fafae3, #fafae3);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #fafae3, #fafae3, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #fafae3, #fafae3)}.itemsList .row.abitem.checked{background-color:#d8e8fc;background:-moz-linear-gradient(top, #d8e8fc, #d8e8fc);background:-webkit-linear-gradient(top, #d8e8fc, #d8e8fc);background:-o-linear-gradient(top, #d8e8fc, #d8e8fc);background:-ms-linear-gradient(top, #d8e8fc, #d8e8fc);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #d8e8fc, #d8e8fc, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #d8e8fc, #d8e8fc)}.itemsList .row.abitem .accept-block{position:absolute;right:-40px;top:10px}.itemsList .row.abitem-nohover{position:relative;background-color:#fff;background:-moz-linear-gradient(top, #fff, #f6f6f6);background:-webkit-linear-gradient(top, #fff, #f6f6f6);background:-o-linear-gradient(top, #fff, #f6f6f6);background:-ms-linear-gradient(top, #fff, #f6f6f6);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #fff, #f6f6f6, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #fff, #f6f6f6)}.itemsList .row.abitem-nohover.checked{background-color:#d8e8fc;background:-moz-linear-gradient(top, #d8e8fc, #d8e8fc);background:-webkit-linear-gradient(top, #d8e8fc, #d8e8fc);background:-o-linear-gradient(top, #d8e8fc, #d8e8fc);background:-ms-linear-gradient(top, #d8e8fc, #d8e8fc);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #d8e8fc, #d8e8fc, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #d8e8fc, #d8e8fc)}.itemsList .row.abitem-nohover .accept-block{position:absolute;right:-40px;top:10px}.itemsList .row-order{min-height:50px;-webkit-box-shadow:0 0 0 1px #fff inset;-moz-box-shadow:0 0 0 1px #fff inset;box-shadow:0 0 0 1px #fff inset}.itemsList .row-order:nth-child(even){background-color:#f1f1f1}.itemsList .row-order.darker{background-color:#f1f1f1}.itemsList .row-order.headers:hover{background-color:#e6e6e6;background:-moz-linear-gradient(top, #e6e6e6, #e6e6e6);background:-webkit-linear-gradient(top, #e6e6e6, #e6e6e6);background:-o-linear-gradient(top, #e6e6e6, #e6e6e6);background:-ms-linear-gradient(top, #e6e6e6, #e6e6e6);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #e6e6e6, #e6e6e6, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #e6e6e6, #e6e6e6)}.itemsList .row-order.abitem{position:relative;background-color:#fff;background:-moz-linear-gradient(top, #fff, #f6f6f6);background:-webkit-linear-gradient(top, #fff, #f6f6f6);background:-o-linear-gradient(top, #fff, #f6f6f6);background:-ms-linear-gradient(top, #fff, #f6f6f6);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #fff, #f6f6f6, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #fff, #f6f6f6)}.itemsList .row-order.abitem:hover{background-color:#fafae3;background:-moz-linear-gradient(top, #fafae3, #fafae3);background:-webkit-linear-gradient(top, #fafae3, #fafae3);background:-o-linear-gradient(top, #fafae3, #fafae3);background:-ms-linear-gradient(top, #fafae3, #fafae3);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #fafae3, #fafae3, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #fafae3, #fafae3)}.itemsList .row-order.abitem.checked{background-color:#d8e8fc;background:-moz-linear-gradient(top, #d8e8fc, #d8e8fc);background:-webkit-linear-gradient(top, #d8e8fc, #d8e8fc);background:-o-linear-gradient(top, #d8e8fc, #d8e8fc);background:-ms-linear-gradient(top, #d8e8fc, #d8e8fc);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #d8e8fc, #d8e8fc, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #d8e8fc, #d8e8fc)}.itemsList .row-order.abitem .accept-block{position:absolute;right:-40px;top:10px}.itemsList .row-order.abitem-nohover{position:relative;background-color:#fff;background:-moz-linear-gradient(top, #fff, #f6f6f6);background:-webkit-linear-gradient(top, #fff, #f6f6f6);background:-o-linear-gradient(top, #fff, #f6f6f6);background:-ms-linear-gradient(top, #fff, #f6f6f6);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #fff, #f6f6f6, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #fff, #f6f6f6)}.itemsList .row-order.abitem-nohover.checked{background-color:#d8e8fc;background:-moz-linear-gradient(top, #d8e8fc, #d8e8fc);background:-webkit-linear-gradient(top, #d8e8fc, #d8e8fc);background:-o-linear-gradient(top, #d8e8fc, #d8e8fc);background:-ms-linear-gradient(top, #d8e8fc, #d8e8fc);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #d8e8fc, #d8e8fc, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #d8e8fc, #d8e8fc)}.itemsList .row-order.abitem-nohover .accept-block{position:absolute;right:-40px;top:10px}.itemsList .row-order.selected-row{background:#d8e8fc}.itemsList .row-order.selected,.itemsList .row-order.checked{background-color:#d8e8fc}.itemsList .row-order.no-border-left{border-left:none}.itemsList .row-order.no-border-right{border-right:none}.itemsList .row-order.no-max-height{max-height:999px}.itemsList .row-order .vmiddle{display:table-cell;height:60px;vertical-align:middle}.itemsList .row-order .cell{position:relative;overflow:hidden}.itemsList .row-order .cell .bold{font-weight:bold}.itemsList .row-order .cell .grey{color:#666;font-size:0.8em}.itemsList .row-order .cell .icons{position:absolute;top:0;left:0;width:120px}.itemsList .row-order .cell .icons input{margin-top:16px}.itemsList .row-order .cell .icons .folderIcon{margin-top:4px}.itemsList .row-order .cell .icons .starred{margin-top:12px;width:16px;height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") 0 -48px no-repeat}.itemsList .row-order .cell button{float:right}.itemsList .row-order .cell:last-child{box-shadow:0px 0px 0px 0px #5d5c5c}.itemsList .row-order .cell.preview_block{height:50px}.itemsList .row-order .cell.preview_block input{margin-top:8px}.itemsList .row-order .cell.preview_block img{max-height:33px;max-width:33px;min-height:33px;margin-top:9px;display:inline-block}.itemsList .row-order .preview_block{height:50px}.itemsList .row-order .preview_block input{margin-top:8px}.itemsList .row-order .preview_block img{display:inline-block;margin-top:9px;max-height:33px;max-width:33px;min-height:33px}.itemsList .row-order.subhead{min-height:40px;max-height:40px;background-color:white;border-top:1px solid #ccc;-webkit-box-shadow:0 0 1px 2px #8ad3ed;-moz-box-shadow:0 0 1px 2px #8ad3ed;box-shadow:0 0 1px 2px #8ad3ed;position:relative;z-index:1;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.itemsList .row-order.subhead .vmiddle{height:40px}.itemsList .row-order .circle{-webkit-border-radius:7px;-moz-border-radius:7px;border-radius:7px;width:16px}.itemsList .row-order .circle.blue{background:#0886ff}.itemsList .row-order .circle.red{background:#cc2c00}.itemsList .row-order .circle.yellow{background:#f2b100}.itemsList .row-order .circle.green{background:#2aa000}.itemsList .auto-container{max-height:200px;overflow-y:auto;border-bottom:1px solid #ccc}.itemsList .auto-container .row:last-child{border-bottom:none}.itemsList .vmiddle{display:table-cell;vertical-align:middle;height:50px}.itemsList.text-only .row{min-height:30px;max-height:30px}.itemsList.text-only .vmiddle{height:30px}.itemsList.usage-rights-list{border:1px solid #ccc;border-top:0 none}.itemsList.usage-rights-list .row{overflow:hidden;min-height:30px;max-height:30px}.itemsList.usage-rights-list .row .vmiddle{height:30px}.getting_start{border:1px #d4d4d4 solid;background-color:#f4f4f4;font-size:13px}.getting_start .inside{background-color:white;border:1px #ededed solid;border-right:1px #d4d4d4 solid;border-left:none}.getting_start .inside .left li{float:left;width:180px;text-align:justify}.getting_start .inside .left li a{font-size:19px;font-weight:bold}.getting_start .inside .right{float:right }.getting_start .inside .right li .icon{width:32px;height:32px;background:url("/5.16.2.5993/frontend/images/icons32x32.png") top center no-repeat transparent}.getting_start .inside .right li .icon.man{background-position:0 -32px}.getting_start .inside .right li .icon.pencil{background-position:0 -64px}.getting_start .inside .right li .text{text-align:justify;width:200px}.getting_start .inside .right li .text a{font-size:15px}.getting_start.transparent{background:none}.sidebar{border-right:1px solid #ccc;margin-left:0px}.sidebar .sidebar-container{width:250px;border-right:1px solid #ccc;background-color:white}.sidebar .sidebar-container .border{border-bottom:1px solid #ccc}.sidebar .sidebar-container .sidebar-item{height:32px;border-top:1px solid white;padding-left:-8px}.sidebar .sidebar-container .sidebar-item .sidebar-item-title{margin-left:-8px}.sidebar .sidebar-container .sidebar-item .vmiddle{font-size:11px;display:table-cell;height:32px;vertical-align:middle}.sidebar .sidebar-container .sidebar-item .trash-unit{width:100%;margin-left:0;margin-right:-20px;padding:3px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.sidebar .sidebar-container .sidebar-item .trash-unit.dndDragOver{padding:0}.sidebar .sidebar-container .sidebar-item .trash-unit .vmiddle{height:26px;width:100%;display:block;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.sidebar .sidebar-container .sidebar-item .trash-unit .trash-wrapper{padding:7px 0}.sidebar .sidebar-container .sidebar-item .trash-unit .trash-wrapper.selected{color:white;background-color:#d8e8fc}.sidebar .sidebar-container .sidebar-item .trash-unit .trash-wrapper a{text-decoration:none;color:#333}.sidebar .sidebar-container.border-bottom{border-bottom:1px solid #ccc}.sidebar .sidebar-container.border-top{border-top:1px solid #ccc}.sidebar .sidebar-switcher{width:9px;height:100%;border-left:1px solid #ccc;cursor:pointer}.sidebar .sidebar-switcher .controller{position:absolute;top:240px;height:16px;width:9px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -3px -288px transparent}.projects_overview .details .logo_block img{max-height:110px;max-width:150px}.projects_overview .details ul li{min-height:15px}.projects_overview .loading-mask.loading .spinner{position:fixed;top:0;bottom:0;right:0;left:0;margin:auto}.spinner2{width:16px;height:16px;background:url("/5.16.2.5993/frontend/images/spinner2.gif") no-repeat scroll transparent}.your_activities_list .projects_value{color:#00ade3}.activities-list .row,.approvals_list .row,.result-item .row{font-size:13px;min-height:37px;border-bottom:1px solid #e8e8e8;overflow:hidden}.activities-list .row .vmiddle,.approvals_list .row .vmiddle,.result-item .row .vmiddle{display:table-cell;height:34px;vertical-align:middle}.activities-list .row.darker,.approvals_list .row.darker,.result-item .row.darker{background-color:#f5f6f7}.activities-list .row.no-borders,.approvals_list .row.no-borders,.result-item .row.no-borders{border:none}.activities-list .preview_block,.approvals_list .preview_block,.result-item .preview_block{width:34px;height:34px;overflow:hidden}.activities-list .preview_block.video,.approvals_list .preview_block.video,.result-item .preview_block.video{position:relative}.activities-list .preview_block.video:after,.approvals_list .preview_block.video:after,.result-item .preview_block.video:after{content:'';position:absolute;top:8px;right:8px;margin:0 0 0 4px;height:16px;width:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -1632px transparent}.tree-block{white-space:nowrap}.dndDragOver{border:3px solid #0082dc;border-radius:4px}.tree-item{cursor:pointer;position:relative}.tree-item a{text-decoration:none;color:#333}.tree-item a:hover{color:#333}.tree-item a.blue{text-decoration:underline;color:#0082dc}.tree-item .tree-container{display:none}.tree-item .collection{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -1008px transparent;padding-bottom:1px}.tree-item>.title{white-space:nowrap;padding:3px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.tree-item>.title .text{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.tree-item>.title.dndDragOver{padding:0}.tree-item>.title *[title]{display:inline-block;max-width:400px;overflow-x:hidden;text-overflow:ellipsis}.tree-item>.title .roles-list{font-size:10px;font-weight:normal}.tree-item>.title-root:hover{background-color:#eef3f6}.tree-item>.title:hover{background-color:#eef3f6}.tree-item>.title:hover .tree-item-dropdown{display:inline-block}.tree-item.section-break>.title{border-bottom:1px solid #939598;background-color:#e8e8e8}.tree-item.current>.title,.tree-item.selected>.title,.tree-item.current>.title-root,.tree-item.selected>.title-root{background-color:#d8e8fc}.tree-item.current>.title a,.tree-item.selected>.title a,.tree-item.current>.title-root a,.tree-item.selected>.title-root a{color:black !important}.tree-item.current.freezed>.title,.tree-item.selected.freezed>.title{background-color:#bfd0df}.tree-item.current.freezed>.title a,.tree-item.selected.freezed>.title a{color:#3e4244 !important}.tree-item .info{width:16px;height:16px;position:absolute;left:2px;top:4px}.tree-item.checked>.info{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -528px transparent}.tree-item .freezed>.title{background-color:#eee}.tree-item .freezed>.title a{color:#a6a6a6 !important}.tree-item .arrow{height:16px;position:absolute;left:3px;top:4px;width:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -1872px transparent;cursor:pointer;display:none;z-index:1}.tree-item .arrow.centered{top:4px;left:23px}.tree-item.custom .arrow{position:initial;height:auto;width:auto;display:initial;background:transparent}.tree-item.hasItems>.arrow,.tree-item.hasItems>.tree-node-head .arrow{display:block}.tree-item.hasItems .spinner2{position:absolute;top:5px;margin-left:-20px;z-index:1}.tree-item.active>.tree-container{display:block}.tree-item.active.hasItems>.arrow,.tree-item.active.hasItems>.tree-node-head .arrow{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -1888px transparent}.tree-item .tree-node-head{padding-left:40px}.tree-item .tree-item-dropdown{display:none}.tree-item .tree-item-dropdown.forceShow{display:inline-block !important}.tree-item.tree-head>.arrow{left:20px}.unfolding-list .arrow{top:0;left:16px}.unfolding-list .reel-item .text{padding-left:40px;padding-top:5px;padding-bottom:5px;vertical-align:baseline}.unfolding-list .icon-reels{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;display:inline-block;height:16px;width:100%;padding-left:20px;vertical-align:middle}.folders_tree .tree_element li .vmiddle{display:table-cell;height:28px;vertical-align:middle}.folders_tree .tree_element li.section-break>.title{height:18px}.folders_tree .tree_element li.section-break>.title:before{display:none}.folders_tree .tree_element li .title{font-size:11px;height:28px}.folders_tree .tree_element li .title.plm{padding-left:20px}.folders_tree .tree_element li .title .text{overflow:hidden;padding-top:3px;height:25px;line-height:17px;padding-right:20px}.folders_tree .tree_element li .title .text input{margin:0px;height:14px;width:14px}.folders_tree .tree_element li .title.check{padding-left:16px}.folders_tree .tree_element li .title.check:before{left:33px}.folders_tree .tree_element li .title.check.pl22{padding-left:5px !important}.folders_tree .tree_element li .title.check.pl22:before{left:22px}.folders_tree .tree_element li .title.lib:before{top:8px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -1008px transparent}.folders_tree .tree_element li .title.lib.blue:before{top:8px;background-position:-48px -1008px}.folders_tree .tree_element li .title.agency:before{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -48px -608px transparent}.folders_tree .tree_element li .title.none-icon:before{background:none}.folders_tree .tree_element li .title:before{content:"";height:16px;position:absolute;left:20px;top:5px;width:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -1520px transparent}.folders_tree .tree_element li .title.category-icon:before{filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=0.7, enabled=1)";opacity:.7;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -1440px transparent}.folders_tree .tree_element li .title.agency-icon:before{filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=0.7, enabled=1)";opacity:.7;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -48px -608px transparent}.folders_tree .tree_element li .title.root:before{background:none}.folders_tree .tree_element li .title:hover .text a{color:black !important}.folders_tree .tree_element li .title:hover .tree-item-dropdown{display:inline-block}.folders_tree .tree_element li .title .tree-item-dropdown{display:none}.folders_tree .tree_element li .title .tree-item-dropdown.forceShow{display:inline-block !important}.folders_tree .tree_element li.selected>.title .text{background-color:#0082dc}.folders_tree .tree_element li.selected>.title a{color:#ffffff}.tree-item-dropdown{display:inline-block}.tree-item-dropdown .dropdown-hint{background:url("/5.16.2.5993/frontend/images/dropdown.png") no-repeat scroll 0 0 transparent;display:inline-block;height:16px;width:16px;line-height:16px;top:6px;margin:0px 0px 0px 5px !important}.tree-item-dropdown .dijitButtonNode{border:none}.slider{height:280px}.slider .controller{width:22px;z-index:2;background-color:#f1f1f1;height:100%}.slider .controller .controller_round{cursor:pointer;position:absolute;z-index:1;top:135px}.slider .controller .controller_round .icon-controller{display:inline-block;height:16px;width:16px;line-height:16px}.slider .controller.left{-webkit-box-shadow:8px 0 5px -3px #999;-moz-box-shadow:8px 0 5px -3px #999;box-shadow:8px 0 5px -3px #999;margin-right:-22px}.slider .controller.left .controller_round{left:2px}.slider .controller.left .controller_round .icon-controller{margin-left:2px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -336px transparent}.slider .controller.left:hover .controller_round .icon-controller{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -1584px transparent}.slider .controller.right{-webkit-box-shadow:-3px 0 5px -3px #999;-moz-box-shadow:-3px 0 5px -3px #999;box-shadow:-3px 0 5px -3px #999;margin-left:-22px}.slider .controller.right .controller_round{right:-1px}.slider .controller.right .controller_round .icon-controller{margin-left:-7px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -352px transparent}.slider .controller.right:hover .controller_round .icon-controller{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -1568px transparent}.slider .slider_container{height:100%;position:relative;z-index:0;overflow:hidden;padding:0 22px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.slider .slider_container .slider_line{height:100%;overflow:hidden;z-index:2}.slider .slider_container .slider_line .slideinner{position:absolute;left:0;z-index:1;white-space:nowrap}.user_roles li>a{font-size:13px;cursor:pointer;color:#333;text-decoration:none}.user_roles li>a.active{font-weight:bold;color:#0082dc}.user_roles li>a.active .icon-roles_active{display:inline-block}.user_roles li>a:hover{font-weight:bold;color:#0082dc}.user_roles li>a .icon-roles_active{display:none;margin-left:-16px}div.roles{height:100%;overflow:hidden}div.roles .bottom{border-bottom:1px solid #ccc}div.roles .roles_right{padding-bottom:20000px;margin-bottom:-20000px}div.roles .roles_left{background-color:#f5f5f5;padding-bottom:20000px;margin-bottom:-20000px}div.roles .roles_center{background-color:white;padding-bottom:20000px;margin-bottom:-20000px}div.roles .roles_center>.roles_center_container{min-height:500px;border-left:1px solid #ccc}.users_roles_list li{height:30px}.users_roles_list li .users_list_name{vertical-align:middle;height:30px}.permissions_list{border-bottom:1px solid #e8e8e8}.permissions_list .permissions_list_head{height:32px;background-color:#f1f1f1;background:-moz-linear-gradient(top, #f1f1f1, #ccc);background:-webkit-linear-gradient(top, #f1f1f1, #ccc);background:-o-linear-gradient(top, #f1f1f1, #ccc);background:-ms-linear-gradient(top, #f1f1f1, #ccc);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #f1f1f1, #ccc, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #f1f1f1, #ccc);border:1px solid #ccc;-webkit-border-radius:3px 3px 0 0;-moz-border-radius:3px 3px 0 0;border-radius:3px 3px 0 0}.permissions_list .permissions_list_head .vmiddle{font-size:13px;display:table-cell;height:32px;vertical-align:middle}.permissions_list .permissions_list_row{font-size:13px;min-height:40px;max-height:40px;border-bottom:1px solid #e8e8e8;border-left:1px #ccc solid;border-right:1px #ccc solid;overflow:hidden}.permissions_list .permissions_list_row .vmiddle{display:table-cell;height:40px;vertical-align:middle}.permissions_list .permissions_list_row .vmiddle .checkbox{-webkit-box-shadow:0 1px 2px #b1b1b2;-moz-box-shadow:0 1px 2px #b1b1b2;box-shadow:0 1px 2px #b1b1b2}.permissions_list .permissions_list_row.darker{background-color:#f5f6f7}.permissions_list .permissions_list_row:nth-child(even){background-color:#f5f6f7}.block_title{border-bottom:1px solid #e8e8e8;word-wrap:break-word;min-width:170px}.block_title .selected_gray{color:#939598}.block_title .selected_red{color:#cc3333}.block_title .button{margin-top:-10px}.list{font-size:13px}.list ul{list-style-type:disc;padding-left:45px;margin-top:10px}.list li{padding-left:25px}.list.ordered ol{margin-top:10px;padding-left:40px;font-weight:bold}.list.ordered ol span{font-weight:normal}.list.ordered ol li{padding-left:0px}.switcher span{cursor:pointer}.switcher .border-right{border-right:1px solid #ccc}.switcher .active .icon-switcher-blocks{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -432px transparent}.switcher .active .icon-switcher-lines{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -448px transparent}.message{min-height:22px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;color:#333;font-size:13px;padding:8px 10px 0px 10px}.message.alert{border:1px solid #fafc7d;background-color:#feffda}.message.error{border:1px solid #ebbdae;background-color:#f5d6cc;padding:10px}.message.success{border:1px solid #c5debd;background-color:#dcecd6}.message.help{border:1px solid #e8eff4;background-color:#eef3f6}.message.info{border:1px solid #e8eff4 !important;background-color:#eef3f6 !important}.message.information{color:white;background-color:#333;filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=0.8, enabled=1)";opacity:.8}.inline-display .message.clearfix:after,.inline-display .message.lastUnit:after,.inline-display .message.panel-body:after{content:""}.role_type .dijitButtonNode{height:30px !important;padding-left:5px}.popupWindow{width:auto;border:1px solid #cbcbcb;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;background:white;-webkit-box-shadow:0 0 10px #919191;-moz-box-shadow:0 0 10px #919191;box-shadow:0 0 10px #919191;display:inline-block;margin-bottom:80px}.popupWindow .windowHead{border-bottom:1px solid #cecece;background-color:#f6f6f6;min-height:50px}.popupWindow .windowHead .middle .minimize{position:absolute;top:0px;right:25px}.popupWindow .windowHead .middle span{font-size:15px;color:#333;font-weight:bold}.popupWindow .windowHead .middle span.addHeader{font-size:12px;color:#11c2fe}.popupWindow .windowHead .middle .vmiddle{display:table-cell;vertical-align:middle;height:50px}.popupWindow .windowBody{background:#fff repeat-x top left;position:relative;overflow-x:hidden !important;clear:both}.popupWindow .position_left{float:left}.popupWindow .position_right{float:right}.popupWindow .position_center{text-align:center;margin:0 auto;display:table}.popupWindow.files-add-usage-rights{max-width:830px}.popupWindow.files-add-usage-rights .windowHead .middle span{display:block;max-width:530px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.popupWindow.files-add-usage-rights .usage-right-item-title,.popupWindow.files-add-usage-rights .save-pannel{padding-left:0px}.popupWindow .add-usage-rights .usage_rights_item{margin-left:0px}.popupWindow.add-single-usage-right .add-usage-rights{width:550px}.popupWindow.add-single-usage-right .add-usage-rights .usage-item{padding-left:0px}.popupWindow.add-multiple-usage-rights .add-usage-rights{width:100%}.popupWindowFullScreen{top:0 !important;height:100%}.popupWindowlayerWrap{overflow-x:hidden;overflow-y:auto;top:0;left:0;width:100%;height:100%;z-index:999;display:block}.popup-content{width:590px;min-height:20px;padding:10px 20px 0 20px}.search-container{position:relative;width:200px}.search-container:after{content:"";height:16px;position:absolute;right:10px;top:3px;width:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -656px transparent;filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=0.6, enabled=1)";opacity:.6}.search-container .ui-input.filter,.search-container .ui-input.folder-search{color:#a6a6a6;position:relative;width:200px;height:22px;border:1px solid #dbdbdb;border-radius:0px !important;box-shadow:none !important}.search-container .ui-input.filter.dijitTextBox .dijitPlaceHolder,.search-container .ui-input.folder-search.dijitTextBox .dijitPlaceHolder{left:5px;top:3px}.search-container .ui-input.filter.dijitTextBox .dijitInputInner,.search-container .ui-input.folder-search.dijitTextBox .dijitInputInner{padding-left:5px !important}.search-container-big{position:relative;width:200px}.search-container-big:after{content:"";height:16px;position:absolute;right:-10px;top:8px;width:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -656px transparent;filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=0.6, enabled=1)";opacity:.6}.search-container-big .ui-input.filter,.search-container-big .ui-input.folder-search{color:#a6a6a6;position:relative;width:200px;height:22px;border:1px solid #dbdbdb;border-radius:0px !important;box-shadow:none !important}.search-container-big .ui-input.filter.dijitTextBox .dijitPlaceHolder,.search-container-big .ui-input.folder-search.dijitTextBox .dijitPlaceHolder{left:5px;top:3px}.search-container-big .ui-input.filter.dijitTextBox .dijitInputInner,.search-container-big .ui-input.folder-search.dijitTextBox .dijitInputInner{padding-left:5px !important}.file-list-item .preview,.slider_element .preview{height:90px;width:100%;background-color:#000;background-position:center center;background-repeat:no-repeat}.file-list-item{float:left;zoom:1}.file-list-item.adbanked .file-parameters{color:#9d9999}.file-list-item.adbanked .wrapper{border:2px solid #cdcdcd;box-shadow:0 0 0 rgba(0,0,0,0.3)}.file-list-item.adbanked .file-link{color:#9d9999}.file-list-item.adbanked .file-type-icon{filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=0.6, enabled=1)";opacity:.6}.file-list-item.selected{border:2px solid #0082dc;border-radius:4px}.file-list-item.selected .wrapper{margin:0;border-radius:2px}.file-list-item .wrapper{height:230px;width:180px;padding:10px;border:1px solid #cdcdcd;position:relative;padding-bottom:85px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;box-shadow:0 0 1px rgba(0,0,0,0.3);margin:2px}.file-list-item .clickable{cursor:pointer}.file-list-item .file-title{color:#9d9999;font-size:11px}.file-list-item .ui-dropdown{background:url('/5.16.2.5993/frontend/images/dropdown.png') no-repeat;width:12px;height:12px;display:inline-block;vertical-align:middle;cursor:pointer}.file-list-item .file-info{height:80px;width:100%;position:absolute;bottom:0;left:0;background-color:#f5f6f7}.file-list-item .file-info .file-parameters{width:100%;height:50%;padding:5px 10px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;border-bottom:1px solid #cdcdcd;border-right:1px solid white}.file-list-item .file-info .file-parameters .file-type-icon{height:16px;width:100%;padding-left:16px;display:inline-block;background:url('/5.16.2.5993/frontend/images/file-types.png') no-repeat;background-position:0 -64px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;white-space:nowrap}.file-list-item .file-info .file-parameters .file-detail{display:inline-block;width:50%;padding-left:10px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.file-list-item .file-info .file-ratings{width:100%;height:50%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0 10px;border-top:1px solid white;border-right:1px solid white;position:relative}.file-list-item .file-info .file-ratings .aux{height:100%;width:0px;vertical-align:middle;display:inline-block}.file-list-item .file-info .file-ratings .left-buttons{vertical-align:middle;position:relative;display:inline-block}.file-list-item .file-info .file-ratings .right-buttons{position:absolute;height:100%;right:0;top:0}.file-list-item .file-info .file-ratings .app-icon{display:inline-block;vertical-align:middle;width:16px;height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat 0 -1488px}.file-list-item .file-info .file-ratings .like-button{display:inline-block;vertical-align:middle;height:16px;width:16px;background:url('/5.16.2.5993/frontend/images/like-button.png') no-repeat 0 0}.file-list-item .file-info .file-ratings .icon-rating{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -48px transparent;display:inline-block;height:16px;width:16px;line-height:16px;vertical-align:middle}.file-list-item.easyshare .wrapper{height:190px;padding-bottom:40px;position:relative}.file-list-item.easyshare .wrapper .dropdown-container{display:none;position:absolute;right:10px}.file-list-item.easyshare .wrapper:hover .dropdown-container{display:block}.file-list-item.easyshare .file-name{display:inline-block}.file-list-item.easyshare .file-info{height:40px;border-top:1px solid #cdcdcd}.file-list-item.easyshare .file-info .file-parameters{border-bottom:none}.file_container .files_info_title{min-height:25px;line-height:25px;border-bottom:1px solid #ccc}.file_container .files_info_edit{color:#939598;height:25px;line-height:25px;border-bottom:1px solid #939598;cursor:pointer}.file_container .file-download{text-align:left}.file_container .file-nvergedownload{min-width:205px;text-align:left}.file_container .file-nav-block{width:646px;overflow:show;margin:0 auto}.file_submenu_wrapper{z-index:1;min-height:300px;background-color:#fff}.file_submenu_wrapper .file_submenu_container{text-align:left;width:760px;margin:0 auto}.file_submenu_wrapper .file_submenu_container.attachments_form{width:960px}.tab-content,.file_submenu_wrapper{position:relative;-webkit-box-shadow:0 0 10px #d6d6d6;-moz-box-shadow:0 0 10px #d6d6d6;box-shadow:0 0 10px #d6d6d6;border:1px #ccc solid}.tab-content.without-bottom-border,.file_submenu_wrapper.without-bottom-border{border-bottom:none;border-left:none;border-right:none}.tab-content .tab-top,.file_submenu_wrapper .tab-top{position:relative}.tab-content .tab-overlayer,.file_submenu_wrapper .tab-overlayer{position:absolute;background:white;padding-bottom:20px;width:100%;height:100%;left:0;top:0}.file-info-download{width:225px;position:absolute;right:20px;top:50px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.file-info-download .file-approvals-layout{display:inline-block}.download-box{-webkit-border-radius:10px;-moz-border-radius:10px;border-radius:10px;border:1px solid #999;display:inline-block;text-align:center;padding:10px}.files_activities_item{border-bottom:1px #ccc solid;height:50px;word-break:break-all}.files_activities_item:hover{background-color:#fafae3}.files_activities_item:first-child{border-top:none}.files_activities_item:last-child{border-bottom:none}.files_activities_item .vmiddle{height:50px;vertical-align:middle;display:table-cell}.comment_form{background-color:#f5f6f7;border:1px solid #ccc}.comment_form textarea{min-height:40px;padding:0;border:1px solid #ccc}.comment_form .vmiddle{height:15px;vertical-align:middle;display:table-cell}.comment_form label{font-weight:normal;margin:0px}.comment_form label input{margin:0px}.comment_form:hover{background-color:#eef3f6}.comment_form.reply_form{display:none}.comment_form.reply_form.active{display:block}.comment_text .private-message{color:#d01920}.comment_text span{float:left;margin-right:2px;display:block}.comment_text span:first-child{margin-left:-4px}.comment_block{border-bottom:1px solid #ccc}.comment_block:last-child{border-bottom:none}.submenu_pane .gray{color:#939598}.submenu_pane a{text-decoration:none}.slate-container{background:#eee}.slate-container img{width:100%}.storyboard-container{-webkit-box-shadow:0 0 8px #999;-moz-box-shadow:0 0 8px #999;box-shadow:0 0 8px #999;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;width:740px}.storyboard-container .storyboard-block{width:179px;height:140px;float:left;border:1px solid #e5e5e5;border-left:none;border-top:none}.storyboard-container .storyboard-block .storyboard-block-content{margin-left:10px;width:160px;cursor:pointer}.storyboard-container .storyboard-block .storyboard-block-content .img_container{height:90px;width:160px;overflow:hidden}.storyboard-container .storyboard-block .storyboard-block-content .img_container img{max-width:160px;min-height:90px}.storyboard-container .storyboard-block .storyboard-block-content .storyboard-block-menu{position:absolute;min-width:140px;border:1px solid #ccc;left:100px;top:50px;display:none;background:#ffffff;z-index:2}.storyboard-container .storyboard-block .storyboard-block-content .storyboard-block-menu li{font-size:11px;line-height:17px}.storyboard-container .storyboard-block .storyboard-block-content .storyboard-block-menu li:hover{background:#d8e8fc}.storyboard-container .storyboard-block .storyboard-block-content.selected .storyboard-block-menu{display:block}.storyboard-container .storyboard-block:first-child{width:189px}.storyboard-container .storyboard-block:first-child .storyboard-block-content{margin-left:20px}.storyboard-container .storyboard-block:last-child{width:189px}.storyboard-container .storyboard-line:nth-child(even){background:#f1f1f1}.storyboard-container .storyboard-line:last-child .storyboard-block{height:160px}.file-panel-buttons{margin-top:-10px}.file_approvals .green{color:#5fac41}.file_approvals .status{color:#939598}.file_approvals .approvals_stage{border:1px solid #ccc}.file_approvals .approvals_stage.whitesteel{background-color:#f5f6f7}.file_approvals .approvals_stage .approvals_stage_head{height:40px;border-bottom:1px solid #ccc}.file_approvals .approvals_stage .approvals_stage_head.add_stage{height:60px}.file_approvals .approvals_stage .approvals_stage_head.add_stage .vmiddle{height:60px}.file_approvals .approvals_stage .approvals_stage_subhead{border-top:1px solid white;border-bottom:1px solid #ccc}.file_approvals .approvals_stage .approvals_stage_subhead:last-child{border-bottom:none}.file_approvals .approvals_stage .approvals_stage_subhead.add_stage .vmiddle{height:50px}.file_approvals .approvals_stage .approvals_stage_options{border-top:1px solid white;border-bottom:1px solid #ccc;height:50px;background-color:#f1f1f1}.file_approvals .approvals_stage .approvals_stage_approver{border-top:1px solid white;height:50px;border-bottom:1px solid #ccc}.file_approvals .approvals_stage .approvals_stage_approver:last-child{border-bottom:none}.file_approvals .approvals_stage .approvals_stage_approver:hover{background-color:#eef3f6}.file_approvals .approvals_stage .approvals_stage_approver .vmiddle{height:50px;vertical-align:middle;display:table-cell}.file_approvals .approvals_stage .approvals_stage_approver .ap-option{width:100px;text-align:center}.file_approvals .approvals_stage .approvals_stage_approver .ap-block{-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;width:30px;height:30px}.file_approvals .approvals_stage .approvals_stage_approver .ap-block .ap-icon{display:inline-block;height:16px;width:16px;line-height:16px;margin:7px 0 0 7px}.file_approvals .approvals_stage .approvals_stage_approver.pending .date{display:none}.file_approvals .approvals_stage .approvals_stage_approver.pending .ap-block{background-color:#f6f6f6;background:-moz-linear-gradient(top, #f6f6f6, #e0e0e0);background:-webkit-linear-gradient(top, #f6f6f6, #e0e0e0);background:-o-linear-gradient(top, #f6f6f6, #e0e0e0);background:-ms-linear-gradient(top, #f6f6f6, #e0e0e0);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #f6f6f6, #e0e0e0, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #f6f6f6, #e0e0e0);border:1px solid #cdcdcd}.file_approvals .approvals_stage .approvals_stage_approver.pending .ap-block .ap-icon{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -784px transparent}.file_approvals .approvals_stage .approvals_stage_approver.rejected .reminder{display:none}.file_approvals .approvals_stage .approvals_stage_approver.rejected .ap-block{background-color:#d94a38;background:-moz-linear-gradient(top, #d94a38, #cd4111);background:-webkit-linear-gradient(top, #d94a38, #cd4111);background:-o-linear-gradient(top, #d94a38, #cd4111);background:-ms-linear-gradient(top, #d94a38, #cd4111);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #d94a38, #cd4111, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #d94a38, #cd4111);border-color:#d74401}.file_approvals .approvals_stage .approvals_stage_approver.rejected .ap-block .ap-icon{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -816px transparent}.file_approvals .approvals_stage .approvals_stage_approver.approved .reminder{display:none}.file_approvals .approvals_stage .approvals_stage_approver.approved .ap-block{background-color:#6cba4a;background:-moz-linear-gradient(top, #6cba4a, #4da133);background:-webkit-linear-gradient(top, #6cba4a, #4da133);background:-o-linear-gradient(top, #6cba4a, #4da133);background:-ms-linear-gradient(top, #6cba4a, #4da133);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #6cba4a, #4da133, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #6cba4a, #4da133);border-color:#4f9735}.file_approvals .approvals_stage .approvals_stage_approver.approved .ap-block .ap-icon{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -800px transparent}.file_approvals .vmiddle{height:30px;vertical-align:middle;display:table-cell}.history_version{position:relative;z-index:2;background-color:white;width:180px;height:200px;-webkit-box-shadow:0 0 3px #ccc;-moz-box-shadow:0 0 3px #ccc;box-shadow:0 0 3px #ccc}.history_version .img_cont{overflow:hidden;width:180px;height:137px;background-color:black}.file-history-item{min-height:215px}.file-history-item:first-child{padding-bottom:10px;background-color:#eef3f6;border:1px solid #e6eef2;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px}.file-history-item:first-child .round{top:75px;left:85px}.file-history-item:first-child .arrow{display:none !important}.file-history-item:first-child .left-block{-webkit-box-shadow:0 0 0 0 #ccc inset;-moz-box-shadow:0 0 0 0 #ccc inset;box-shadow:0 0 0 0 #ccc inset}.file-history-item:first-child .current-version{display:inline-block}.file-history-item:first-child .vmiddle{display:block}.file-history-item:first-child .img_cont{margin-left:-185px}.file-history-item:first-child .user-block{margin-top:20px;margin-left:-173px}.file-history-item.current .arrow{display:block}.file-history-item .current-version{display:none}.file-history-item .img_cont{height:160px;width:160px;background:#fff;background:-moz-radial-gradient(center, #fff, #e8e8e8);background:-webkit-radial-gradient(center, #fff, #e8e8e8);background:-o-radial-gradient(center, #fff, #e8e8e8);background:-ms-radial-gradient(center, #fff, #e8e8e8);background:radial-gradient(center, #fff, #e8e8e8);overflow:hidden;text-align:center}.file-history-item .img_cont .preview-type{width:160px;height:160px}.file-history-item .img_cont .vmiddle{display:table-cell;height:160px;vertical-align:middle}.file-history-item .img_cont img{max-width:160px;max-height:160px}.file-history-item .img_cont .element_preview{margin:35px auto;width:90px}.file-history-item .vmiddle{height:160px;display:table-cell;vertical-align:middle}.file-history-item .left-block{-webkit-box-shadow:-7px 0 5px -5px #ccc inset;-moz-box-shadow:-7px 0 5px -5px #ccc inset;box-shadow:-7px 0 5px -5px #ccc inset;height:200px}.file-history-item .arrow{top:37%;position:absolute;right:0;margin-left:20px;width:40px;height:40px;overflow:hidden;transform:rotate(-90deg);-ms-transform:rotate(-90deg);-moz-transform:rotate(-90deg);-webkit-transform:rotate(-90deg);-o-transform:rotate(-90deg);display:none}.file-history-item .arrow:after{content:"";position:absolute;width:20px;height:20px;background:#ffffff;transform:rotate(45deg);-ms-transform:rotate(45deg);-moz-transform:rotate(45deg);-webkit-transform:rotate(45deg);-o-transform:rotate(45deg);top:30px;left:10px;-webkit-box-shadow:0 0 5px 1px #ccc;-moz-box-shadow:0 0 5px 1px #ccc;box-shadow:0 0 5px 1px #ccc}.file-history-item .round{width:32px;height:32px;-webkit-border-radius:16px;-moz-border-radius:16px;border-radius:16px;background-color:#f6f6f6;background:-moz-linear-gradient(top, #f6f6f6, #e0e0e0);background:-webkit-linear-gradient(top, #f6f6f6, #e0e0e0);background:-o-linear-gradient(top, #f6f6f6, #e0e0e0);background:-ms-linear-gradient(top, #f6f6f6, #e0e0e0);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #f6f6f6, #e0e0e0, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #f6f6f6, #e0e0e0);border:1px solid #9d9999;position:absolute;-webkit-box-shadow:0 0 0 4px #eee;-moz-box-shadow:0 0 0 4px #eee;box-shadow:0 0 0 4px #eee;text-align:center;overflow:hidden;top:75px;right:25px}.file-history-item .round:hover{background-color:#a2a3a4;background:-moz-linear-gradient(top, #a2a3a4, #c3c4c6);background:-webkit-linear-gradient(top, #a2a3a4, #c3c4c6);background:-o-linear-gradient(top, #a2a3a4, #c3c4c6);background:-ms-linear-gradient(top, #a2a3a4, #c3c4c6);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #a2a3a4, #c3c4c6, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #a2a3a4, #c3c4c6);-webkit-box-shadow:0 0 0 4px #00ADE3, 1px 1px 3px #666666 inset;-moz-box-shadow:0 0 0 4px #00ADE3, 1px 1px 3px #666666 inset;box-shadow:0 0 0 4px #00ADE3, 1px 1px 3px #666666 inset;border:1px solid #00ADE3;color:#ffffff}.file-history-item .round .version-number{padding-top:8px}.file-history-item.active .arrow{display:block}.file-history-item.active .round{background-color:#a2a3a4;background:-moz-linear-gradient(top, #a2a3a4, #c3c4c6);background:-webkit-linear-gradient(top, #a2a3a4, #c3c4c6);background:-o-linear-gradient(top, #a2a3a4, #c3c4c6);background:-ms-linear-gradient(top, #a2a3a4, #c3c4c6);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #a2a3a4, #c3c4c6, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #a2a3a4, #c3c4c6);-webkit-box-shadow:0 0 0 4px #00ADE3, 1px 1px 3px #666666 inset;-moz-box-shadow:0 0 0 4px #00ADE3, 1px 1px 3px #666666 inset;box-shadow:0 0 0 4px #00ADE3, 1px 1px 3px #666666 inset;border:1px solid #00ADE3;color:#ffffff}.space-line{display:none}.space-line:last-child{display:block}.space-line:last-child .left-block{height:0px !important}.space-line:last-child .ground_round{width:12px;height:12px;border:1px solid;background-color:#eef3f6;border:1px solid #e6eef2;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;position:absolute;top:-6px;right:-6px}.file-history-item:first-child+.space-line,.space-line:nth-child(2){display:block}.file-history-item:first-child+.space-line .left-block,.space-line:nth-child(2) .left-block{-webkit-box-shadow:-7px 0 5px -5px #ccc inset;-moz-box-shadow:-7px 0 5px -5px #ccc inset;box-shadow:-7px 0 5px -5px #ccc inset;height:40px}.file-history-item:first-child+.space-line .ground_round,.space-line:nth-child(2) .ground_round{display:none !important}.file-view{position:relative}.file-view .left-side{position:absolute;left:0px;height:100%;background-color:#666;background:-moz-linear-gradient(left, #666, #000);background:-webkit-linear-gradient(left, #666, #000);background:-o-linear-gradient(left, #666, #000);background:-ms-linear-gradient(left, #666, #000);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #666, #000, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(left, #666, #000)}.file-view .right-side{position:absolute;right:0px;height:100%;background-color:#000;background:-moz-linear-gradient(left, #000, #636363);background:-webkit-linear-gradient(left, #000, #636363);background:-o-linear-gradient(left, #000, #636363);background:-ms-linear-gradient(left, #000, #636363);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #000, #636363, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(left, #000, #636363);background-color:#666}.file-view .alert-block .alert{box-shadow:none;margin:50px auto 50px}.file-view .file-block{background-color:#000;background-position:center center;background-repeat:no-repeat;margin:0px auto;z-index:2;overflow:hidden}.file-view .file-arrow{top:50%;margin-top:-16px;position:absolute;cursor:pointer}.file-view .file-arrow.left{left:20px}.file-view .file-arrow.right{right:20px}.file-view.image-type{background-color:#e0e0e0}.file-view.image-type .file-block{max-width:800px;max-height:600px;background-color:#e0e0e0;padding:3px 3px}.file-view.image-type .file-block img{-webkit-box-shadow:0 0 3px #333;-moz-box-shadow:0 0 3px #333;box-shadow:0 0 3px #333;max-width:800px;max-height:600px}.file-view.image-type .file-block .info-title{padding-left:32%}.file-view.image-type object{-webkit-box-shadow:0 0 3px #333;-moz-box-shadow:0 0 3px #333;box-shadow:0 0 3px #333}.file-view.image-type .swf-blocker{position:absolute;top:0px;left:0px;width:100%;height:100%;background:transparent}.file-view.standart .file-block{width:646px;height:360px}.file-view.standart .file-block .halfHeight{height:50%}.file-view.standart .file-block .halfHeight .lib-tooltip{top:80px;left:20px;display:block;min-width:125px}.file-view.standart .file-block .halfHeight:hover .lib-tooltip{filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=0.7, enabled=1)";opacity:.7;-moz-transition:opacity .2s ease-in-out;-webkit-transition:opacity .2s ease-in-out;-ms-transition:opacity .2s ease-in-out;-o-transition:opacity .2s ease-in-out;transition:opacity .2s ease-in-out;visibility:visible}.file-view.standart .file-block .flex-column{display:inline-flex;display:-ms-inline-flexbox;-webkit-flex-direction:column;-moz-flex-direction:column;-ms-flex-direction:column;flex-direction:column;justify-content:center}.file-view.standart .swf-blocker{position:absolute;top:0px;left:0px;width:100%;height:100%;background:transparent}.file-view video.hide-controls::-webkit-media-controls{display:none}.file-view video.hide-controls{cursor:none}.add_user_block{height:20px;min-width:80px;cursor:pointer}.add_user_block.selected{border:1px solid #00adea}.add_user_block.selected .delete{display:inline-block}.add_user_block:hover .delete{display:inline-block}.add_user_block .delete{display:inline-block;height:16px;width:16px;line-height:16px;width:10px;height:10px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -864px transparent;display:none;cursor:pointer}.upload-file-container{position:relative;cursor:pointer}.upload-file-container span{position:absolute;top:0px;left:21px}.upload-file-container input{filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=0, enabled=1)";opacity:0;width:100%}.team_sidebar .gray{color:#a5a5a5}.team_add_user .icon-user,.team_add_template .icon-user,.team_add_user .icon-people,.team_add_template .icon-people{vertical-align:top;margin-top:-2px}.group_item{height:16px;line-height:17px;cursor:pointer;overflow:hidden;min-width:100px}.group_item.group{padding:0px 0px 0px 35px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 10px -880px transparent}.group_item.group.all{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 10px -896px transparent}.group_item:hover{font-weight:bold}.group_item.active{box-shadow:5px 0 0 0 #0983D5 inset;font-weight:bold}.group_item .avatar{border:none;padding:0px;-webkit-box-shadow:0;-moz-box-shadow:0;box-shadow:0}.team{height:100%}.team .bottom{border-bottom:1px solid #ccc}.team .activities-list{background-color:white}.team .team-container .team-users-list{-webkit-box-shadow:1px 0 #cccccc, -1px 0 #cccccc;-moz-box-shadow:1px 0 #cccccc, -1px 0 #cccccc;box-shadow:1px 0 #cccccc, -1px 0 #cccccc;border-right:1px solid #CCC}.team .team_user{background-color:#EEE;-webkit-box-shadow:1px 0 #ccc;-moz-box-shadow:1px 0 #ccc;box-shadow:1px 0 #ccc}.team .team_left{border-top:1px solid #ccc;background-color:#f5f5f5;-webkit-box-shadow:1px 0 #ccc;-moz-box-shadow:1px 0 #ccc;box-shadow:1px 0 #ccc}.team .team_center{background-color:white;margin-bottom:-1px;-webkit-box-shadow:-1px 0 0 0 #ccc;-moz-box-shadow:-1px 0 0 0 #ccc;box-shadow:-1px 0 0 0 #ccc}.team .team_center>.team_center_container{border-right:1px solid #ccc;border-bottom:1px solid #ccc}.team .team_center .itemsList .row:last-child{border-bottom:0px}.team .team_center .itemsList .row{border-right:none;border-left:none}.team .team_center .itemsList .user{cursor:pointer}.team .time{font-size:10px;font-weight:bold;color:#95979a}.team .team-users-list{background-color:#EEE}.team .team-users-list .itemsList .row{border-right:none;border-left:none;border-bottom:1px solid #CCC;max-height:none;background-color:#fff;background:-moz-linear-gradient(top, #fff, #f6f6f6);background:-webkit-linear-gradient(top, #fff, #f6f6f6);background:-o-linear-gradient(top, #fff, #f6f6f6);background:-ms-linear-gradient(top, #fff, #f6f6f6);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #fff, #f6f6f6, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #fff, #f6f6f6)}.team .team-users-list .itemsList .row:hover{background-color:#fafae3;background:-moz-linear-gradient(top, #fafae3, #fafae3);background:-webkit-linear-gradient(top, #fafae3, #fafae3);background:-o-linear-gradient(top, #fafae3, #fafae3);background:-ms-linear-gradient(top, #fafae3, #fafae3);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #fafae3, #fafae3, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #fafae3, #fafae3)}.team .team-users-list .itemsList .row.selected{background-color:#d8e8fc;background:-moz-linear-gradient(top, #d8e8fc, #d8e8fc);background:-webkit-linear-gradient(top, #d8e8fc, #d8e8fc);background:-o-linear-gradient(top, #d8e8fc, #d8e8fc);background:-ms-linear-gradient(top, #d8e8fc, #d8e8fc);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #d8e8fc, #d8e8fc, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #d8e8fc, #d8e8fc)}.team .team-users-list .itemsList .row.disabled{background-color:#f1f1f1;background:-moz-linear-gradient(top, #f1f1f1, #ddd);background:-webkit-linear-gradient(top, #f1f1f1, #ddd);background:-o-linear-gradient(top, #f1f1f1, #ddd);background:-ms-linear-gradient(top, #f1f1f1, #ddd);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #f1f1f1, #ddd, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #f1f1f1, #ddd)}.team .team-users-list .itemsList .row .clear_lage_font:after{font-size:0}.team .team-info{-webkit-box-shadow:10px 10px 0 0 #EEEEEE inset, -10px -10px 0 0 #EEEEEE inset, 11px 11px 0 0 #cccccc inset, -11px -11px 0 0 #cccccc inset;-moz-box-shadow:10px 10px 0 0 #EEEEEE inset, -10px -10px 0 0 #EEEEEE inset, 11px 11px 0 0 #cccccc inset, -11px -11px 0 0 #cccccc inset;box-shadow:10px 10px 0 0 #EEEEEE inset, -10px -10px 0 0 #EEEEEE inset, 11px 11px 0 0 #cccccc inset, -11px -11px 0 0 #cccccc inset}.team .team-users{-webkit-box-shadow:-1px 0 0 0 #ccc inset;-moz-box-shadow:-1px 0 0 0 #ccc inset;box-shadow:-1px 0 0 0 #ccc inset;padding-right:1px}.team_users_permissions{-webkit-box-shadow:0 2px 3px 0 #999;-moz-box-shadow:0 2px 3px 0 #999;box-shadow:0 2px 3px 0 #999;min-height:61px;border-bottom:1px solid #ccc;border-top:1px solid #ccc;background-color:white}.team_users_permissions .right-bottom{position:absolute;right:15px;top:15px}.team_users_permissions .roles{padding-top:2px ;padding-right:160px }.gray{color:#939598}.hardgray{color:#333}.team_tree_container{-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;border:1px solid #efefef;border-top:2px solid #b3b4b4;border-left:2px solid #b3b4b4;height:300px;overflow:auto}.loupe:after{content:"";height:16px;position:absolute;right:10px;top:3px;width:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -656px transparent;filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=0.6, enabled=1)";opacity:.6}.dijitComboBoxHighlightMatch{background-color:#ABD6FF}.folder_share,.shortTable{font-size:13px}.folder_share .headers,.shortTable .headers{font-weight:bold;border:none !important}.folder_share .headers.row,.shortTable .headers.row{min-height:30px;max-height:30px;border-top:none}.folder_share .headers .vmiddle,.shortTable .headers .vmiddle{display:table-cell;vertical-align:middle;height:30px}.folder_share .row,.shortTable .row{min-height:50px;border-top:1px solid #CCC}.folder_share .row:last-child,.shortTable .row:last-child{border-bottom:1px solid #CCC}.folder_share .row>.group-container>:last-child,.shortTable .row>.group-container>:last-child{border-bottom:none}.folder_share .row>.group-container .user_col,.shortTable .row>.group-container .user_col{width:175px}.folder_share .row.none-border,.shortTable .row.none-border{border:none}.folder_share .vmiddle,.shortTable .vmiddle{display:table-cell;vertical-align:middle;height:50px}.folder_share .vmiddle-small,.shortTable .vmiddle-small{display:table-cell;vertical-align:middle;height:40px}.folder_share .user_name_col,.shortTable .user_name_col{width:165px}.folder_share .user_name_col_files,.shortTable .user_name_col_files{width:195px}.folder_share .role_col,.shortTable .role_col{width:150px}.folder_share .date_col,.shortTable .date_col{width:120px}.folder_share .access_col,.shortTable .access_col{width:85px}.folder_share .spinner,.shortTable .spinner{position:absolute;top:40%;left:50%;transform:translateX(-40px)}.simple_pager{clear:left;font-size:13px}.simple_pager>div{cursor:pointer;float:left;padding:0 5px;height:30px;display:inline-block;line-height:30px;border-bottom:3px solid #cdcdcd;color:#303030}.simple_pager>div.inactive{color:#cdcdcd;cursor:auto}.simple_pager>div.inactive:hover{border-bottom:3px solid #cdcdcd;color:#cdcdcd}.simple_pager>div.current{padding:0 10px;color:#0082dc;border-bottom:3px #0082dc solid}.simple_pager>div.current a{color:#0082dc}.simple_pager>div:hover{color:#0082dc}.simple_pager>div:hover a{color:#0082dc}.simple_pager>div.current{cursor:auto}.simple_pager>div.pager-item{font-size:14px}.simple_pager>div.pager-item a{color:#303030}.simple_pager>div:first-child{padding-left:0}.simple_pager>div:last-child{padding-right:0}.tabContainer ul.tabs{list-style:none;height:25px}.tabContainer ul.tabs li{float:left;height:15px;padding:5px;margin:0px 10px 0 0;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px;background-color:#e4e4e4;border:1px solid #d1d1d1}.tabContainer ul.tabs li:hover,.tabContainer ul.tabs li:hover a{cursor:pointer}.tabContainer ul.tabs li a{text-decoration:none;color:#333333}.tabContainer ul.tabs li.selected{background-color:#535455;border-color:#474747;color:white;font-weight:bold;cursor:auto}.tabContainer>.content>div{display:none}.tabContainer>.content>div.visible{display:block}.tabContainer>.content.visible>div{display:block}.path:after{content:" / "}.dropdown-tree-container{position:absolute;min-width:220px;max-width:400px;background-color:#ffffff;border:1px solid #CCCCCC;-webkit-box-shadow:0 0 2px 0 #ccc;-moz-box-shadow:0 0 2px 0 #ccc;box-shadow:0 0 2px 0 #ccc;z-index:3;left:-8px;top:25px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px}.dropdown-tree-container .tree-item .arrow{left:3px}.dropdown-tree-container .arrow-element{top:-20px;position:absolute;left:5px;width:20px;height:20px;overflow:hidden}.dropdown-tree-container .arrow-element:after{content:"";position:absolute;width:10px;height:10px;background:#ffffff;transform:rotate(45deg);-ms-transform:rotate(45deg);-moz-transform:rotate(45deg);-webkit-transform:rotate(45deg);-o-transform:rotate(45deg);top:15px;left:5px;border:1px solid #CCCCCC}.collectionTree .tree-item .arrow{width:36px}.collectionTree .tree-item .arrow.agencyArrow{width:100%}.top_paging{height:0px}.top_paging .container{display:inline-block;min-width:200px;position:relative;top:20px}.p-body ul.notifications{border-top:1px solid #ccc}.p-body .notifications,.items-list ul.list-body{border:1ps solid red;position:relative}.p-body .notifications.selected,.items-list ul.list-body.selected{color:black}.p-body .notifications.selected .vmiddle,.items-list ul.list-body.selected .vmiddle{z-index:101;position:relative;background-color:white;border-left:1px solid #ccc;border-right:1px solid #ccc;text-shadow:0 0 #fff}.p-body .notifications.selected .dropdown,.items-list ul.list-body.selected .dropdown{display:block;height:auto;z-index:103}.p-body .notifications .vmiddle,.items-list ul.list-body .vmiddle{padding-left:10px;padding-right:10px;vertical-align:middle;cursor:pointer}.p-body .notifications .remove,.items-list ul.list-body .remove{display:none}.p-body .notifications .dropdown,.items-list ul.list-body .dropdown{background:white;position:absolute;z-index:102;text-shadow:0 0 #fff;-webkit-box-shadow:0 0 6px #d6d6d6;-moz-box-shadow:0 0 6px #d6d6d6;box-shadow:0 0 6px #d6d6d6;border-left:1px solid #ccc;border-bottom:1px solid #ccc;border-right:1px solid #ccc;display:none;width:325px}.p-body .notifications .notifications_list_item,.items-list ul.list-body .notifications_list_item{border-bottom:1px solid #ccc}.p-body .notifications .notifications_list_item .info-cell,.items-list ul.list-body .notifications_list_item .info-cell{display:inline-block}.p-body .notifications .notifications_list_item:hover,.items-list ul.list-body .notifications_list_item:hover{background-color:#eef4f6}.p-body .notifications .notifications_list_item .avatar,.items-list ul.list-body .notifications_list_item .avatar{float:none;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;border:0;padding:0;margin-right:10px}.p-body .notifications .notifications_list_item .avatar img,.items-list ul.list-body .notifications_list_item .avatar img{width:32px;height:32px;border:0}.p-body .notifications .notifications_list_item .right-info,.items-list ul.list-body .notifications_list_item .right-info{float:right;display:inline-block;height:32px}.p-body .notifications .notifications_list_item.unreaded,.items-list ul.list-body .notifications_list_item.unreaded{font-weight:bold}.p-body .notifications .notifications_list_item.checked,.items-list ul.list-body .notifications_list_item.checked,.p-body .notifications .notifications_list_item.checked:hover,.items-list ul.list-body .notifications_list_item.checked:hover{background-color:#0082dc;color:white}.p-body .notifications .notifications_list_item.checked a,.items-list ul.list-body .notifications_list_item.checked a,.p-body .notifications .notifications_list_item.checked:hover a,.items-list ul.list-body .notifications_list_item.checked:hover a{color:white}.p-body .notifications .notifications_list_item.checked .remove,.items-list ul.list-body .notifications_list_item.checked .remove,.p-body .notifications .notifications_list_item.checked:hover .remove,.items-list ul.list-body .notifications_list_item.checked:hover .remove{display:inline}.p-body .notifications .notifications_list_item .lastUnit,.items-list ul.list-body .notifications_list_item .lastUnit{width:266px;display:block;margin-left:55px}.as-selections.schema_theme{min-height:30px}.as-selections.schema_theme .as-selection-item{font-size:12px;padding:5px 15px 4px 8px;margin:5px 0 4px 9px;position:relative;line-height:10px;color:#fffdf8;cursor:default;background-color:#0080e1;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0}.as-selections.schema_theme .as-selection-item .as-close{padding:0;margin:0;font-size:12px;line-height:10px;color:black;text-shadow:none;position:absolute;right:2px}.as-selections.schema_theme .dijitArrowButtonContainer{padding-top:13px}.as-selections.schema_theme .autocomplete{height:27px}.as-selections.schema_theme li.as-original{margin-left:0}.as-selections.schema_theme li.as-original input{padding-top:0}.as-selections.default_theme{border-top:1px solid #888;border-bottom:1px solid #b6b6b6;border-left:1px solid #aaa;border-right:1px solid #aaa;box-shadow:inset 0 1px 2px #888;-webkit-box-shadow:inset 0 1px 2px #888;-moz-box-shadow:inset 0 1px 2px #888;padding:4px 0 4px 4px}.autosuggestDisabled{background:#eeeeee !important}.as-selections{list-style-type:none;margin:0;overflow:auto;background-color:#fff;height:auto;cursor:text}.as-selections .loading{background-color:#eee}.as-selections li{float:left;margin:2px 4px 1px 2px}.as-selections li.as-selection-item{color:white;font-size:13px;background-color:#0082dc;padding:5px 7px 5px 10px;border-radius:12px;-webkit-border-radius:12px;-moz-border-radius:12px}.as-selections li.as-selection-item:last-child{margin-left:30px}.as-selections li.as-selection-item.as-error{background-color:red}.as-selections li.as-selection-item a.as-close{float:right;margin:-2px 0 0 7px;padding:0 2px;cursor:pointer;color:#5491be;font-family:'Source Sans Pro',sans-serif;font-size:14px;font-weight:bold;text-shadow:0 1px 1px #fff;-webkit-transition:color .1s ease-in;text-decoration:none}.as-selections li.as-selection-item.blur{color:#666666;background-color:#f4f4f4}.as-selections li.as-selection-item.blur a.as-close{color:#999}.as-selections li:hover.as-selection-item{color:#2b3840;background-color:#bbd4f1}.as-selections li:hover.as-selection-item a.as-close{color:#4d70b0}.as-selections li.as-selection-item.selected{border-color:#1f30e4}.as-selections li.as-selection-item a:hover.as-close{color:#1b3c65}.as-selections li.as-selection-item a:active.as-close{color:#4d70b0}.as-selections li.as-original{margin-left:0;overflow:hidden}.as-selections li.as-original .dijitTextBox{height:26px}.as-selections li.as-original .autocomplete .dijitTextBox{box-shadow:none}.as-selections li.as-original .autocomplete .dijitTextBox input{border:none;outline:none;font-size:13px;width:120px;height:18px;padding-top:3px}.teamSelector input.dijitInputInner,.as-selections li.as-original .autocomplete.wide input{width:210px !important}.search_link:before{content:"\\";color:#333}.item_link{color:#333;text-decoration:none}.item_link:hover{color:#333}.item_link:visited{color:#333}.highlight_select{background-color:yellow}.easyshare-logo-container{display:table-cell;height:85px;vertical-align:middle}.easyshare-logo-container img{max-width:230px;max-hight:85px}.bottom{border-bottom:1px solid #ccc}.border-top{border-top:1px solid #ccc}.border-bottom{border-bottom:1px solid #ccc}.border-bottom.shadow{-webkit-box-shadow:0 1px 0 0 #fff;-moz-box-shadow:0 1px 0 0 #fff;box-shadow:0 1px 0 0 #fff}.border-right{border-right:1px solid #ccc;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.border-left{border-left:1px solid #ccc}.easyshare-breadcumb .path:last-child:after{content:"";background:none}.easyshare-breadcumb .path:after{content:"";display:inline-block;height:16px;width:16px;line-height:16px;margin-right:5px;margin-left:5px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -1872px transparent;vertical-align:top}.text-darkgrey{color:#666}.column{display:table-cell;float:none;vertical-align:top}.common-content,.library-content,.content-container{background-color:#eee}.common-content{min-height:200px}.blue{color:#0082dc}.dirtyblue{color:#5188ac}.lightred{color:#f16561}.darkgreen{color:#00a55b}.list-header{background-color:#e0e0e0;min-height:30px;border:1px solid #ccc;-webkit-border-radius:5px 5px 0 0;-moz-border-radius:5px 5px 0 0;border-radius:5px 5px 0 0;text-shadow:0 1px #FFFFFF}.list-header .vmiddle{display:table-cell;height:30px;vertical-align:middle}.list-header .sidebar-part{min-width:240px}.list-header .right-border{-webkit-box-shadow:-1px 0 0px 0px #cecece inset, -2px 0 0 0 #f9f9f9 inset;-moz-box-shadow:-1px 0 0px 0px #cecece inset, -2px 0 0 0 #f9f9f9 inset;box-shadow:-1px 0 0px 0px #cecece inset, -2px 0 0 0 #f9f9f9 inset}.shadow-none{text-shadow:none !important}.lib-background{background-color:#EEEEEE}.order-background{background-color:#d9d9d9}.list-controls .prev_next_page .button{min-width:40px}.list-controls .vmiddle{display:table-cell;height:70px;vertical-align:middle}.list-controls .vmiddle .inline-block{vertical-align:top}.list-controls .text{padding-top:7px}.list-controls .border-left{border-left:1px solid #ccc;-webkit-box-shadow:1px 0 0 0 #fff inset;-moz-box-shadow:1px 0 0 0 #fff inset;box-shadow:1px 0 0 0 #fff inset}.list-controls .actionBar .dijitReset{color:#333;font-weight:normal;font-size:13px}.list-controls .actionBar.dijitSelect.actionBar .dijitArrowButton{background:none}.list-controls.border-shadow{border-bottom:1px solid #ddd;-webkit-box-shadow:0 1px 1px -1px #e0e0e0;-moz-box-shadow:0 1px 1px -1px #e0e0e0;box-shadow:0 1px 1px -1px #e0e0e0}.list-controls .expiration{min-width:200px}.lib-sidebar-width{width:240px}.lib-sidebar-height{min-height:650px}.lib-sidebar{background-color:#fff;background:-moz-linear-gradient(top, #fff, #eee);background:-webkit-linear-gradient(top, #fff, #eee);background:-o-linear-gradient(top, #fff, #eee);background:-ms-linear-gradient(top, #fff, #eee);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #fff, #eee, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #fff, #eee);border-right:1px solid #ccc;border-left:1px solid #ccc;overflow:hidden;display:table-cell}.lib-sidebar .sidebar-border-bottom{border-bottom:1px solid #ccc;-webkit-box-shadow:0 1px 0 0 #fff;-moz-box-shadow:0 1px 0 0 #fff;box-shadow:0 1px 0 0 #fff}.lib-sidebar .sidebar-item{height:32px;border-top:1px solid white;padding-left:-8px}.lib-sidebar .sidebar-item .sidebar-item-title{margin-left:-8px}.lib-sidebar .sidebar-item .vmiddle{font-size:11px;display:table-cell;height:32px;vertical-align:middle}.lib-sidebar .sidebar-item .trash-unit{width:100%;margin-left:0;margin-right:-20px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:3px}.lib-sidebar .sidebar-item .trash-unit.dndDragOver{padding:0}.lib-sidebar .sidebar-item .trash-unit .vmiddle{height:26px;width:100%;display:block;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.lib-sidebar .sidebar-item .trash-unit .trash-wrapper{padding:7px 0}.lib-sidebar .sidebar-item .trash-unit .trash-wrapper.selected{color:white;background-color:#d8e8fc}.lib-sidebar .sidebar-item .trash-unit .trash-wrapper a{text-decoration:none;color:#333}.lib-sidebar .sidebar-list li .vmiddle{height:20px;display:table-cell;vertical-align:middle}.lib-sidebar .sidebar-list li:hover,.lib-sidebar .sidebar-list li.active{background-color:#d8e8fc}.content-block{-webkit-box-shadow:2px 2px 3px 0 #999;-moz-box-shadow:2px 2px 3px 0 #999;box-shadow:2px 2px 3px 0 #999;-webkit-border-radius:5px 5px 0 0;-moz-border-radius:5px 5px 0 0;border-radius:5px 5px 0 0;background:#ffffff;border-left:1px solid #ccc;display:inline-block}.files-field{background-color:#ffffff}.lib-select{min-width:120px;font-size:13px;border-collapse:separate !important}.lib-select.filter{width:180px}.lib-select.bigfilter{width:220px}.lib-select.dijitSelect .dijitButtonContents{background:#ffffff;vertical-align:middle;border-width:0px}.lib-select.dijitSelect.dijitSelectDisabled .dijitButtonContents{background:#eeeeee}.lib-select .dijitSelectLabel{padding:0px 5px}.lib-select .dijitMenuItem{font-size:13px}.lib-select.dijitTextBox .dijitArrowButton{width:30px;background-color:#f6f6f6;background:-moz-linear-gradient(top, #f6f6f6, #e0e0e0);background:-webkit-linear-gradient(top, #f6f6f6, #e0e0e0);background:-o-linear-gradient(top, #f6f6f6, #e0e0e0);background:-ms-linear-gradient(top, #f6f6f6, #e0e0e0);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #f6f6f6, #e0e0e0, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #f6f6f6, #e0e0e0);border-left:1px solid #ccc !important}.lib-select.dijitTextBox .dijitButtonNode{height:28px;border:0px}.lib-select .dijitButtonNode{height:28px;border:0px}.lib-select.small{font-size:11px;min-width:70px}.lib-select.small .dijitArrowButton{width:14px}.lib-select.small .dijitArrowButton .dijitArrowButtonInner{margin:0px}.lib-select.small .dijitButtonNode,.lib-select.small .dijitButtonContents{height:14px !important}.filter-line .vmiddle{display:table-cell;height:50px;vertical-align:middle}.filter-line .size1of20{width:5%}.filter-line .plus-margin .button{margin-right:32px}.advancedSearchCollector .filter-line{height:auto}.advancedSearchCollector input[type="text"].value{width:180px}.dojoDndSourceMoved .selected{filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=0.3, enabled=1)";opacity:.3}.dojoDndSourceMoved .selected .dnd-corners{display:none}.dojoDndAvatar{white-space:nowrap}.dojoDndAvatar .dojoDndAvatarItem{display:inline-block;filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=0.7, enabled=1)";opacity:.7}.dojoDndAvatar .dojoDndAvatarItem.row{display:block}.dojoDndAvatar .dojoDndAvatarItem .asset_order{display:none}.dojoDndAvatar .dojoDndAvatarItem .row{display:block}.dojoDndAvatar .dojoDndAvatarItem .unit{display:inline-block;float:none}.dojoDndAvatar .dojoDndAvatarItem .cell-content{display:initial}.dojoDndAvatar .dojoDndAvatarItem .lastUnit{width:initial;display:block}.dojoDndAvatar .dojoDndAvatarItem .lastUnit:after{content:""}.dojoDndAvatar .dojoDndAvatarItem .clearfix:after,.dojoDndAvatar .dojoDndAvatarItem .panel-body:after{content:""}.dojoDndAvatar .asset_list_item{background-color:white;border:3px solid #0082dc}.dojoDndAvatar .asset_list_item .wrapper{margin:0}.lib-file-list-item,.file-item,.asset_list_item{zoom:1;white-space:normal;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;border-radius:4px;padding:3px;position:relative;-webkit-box-shadow:0 0 0 3px #fff;-moz-box-shadow:0 0 0 3px #fff;box-shadow:0 0 0 3px #fff;-moz-transition:box-shadow .15s ease-in-out;-webkit-transition:box-shadow .15s ease-in-out;-ms-transition:box-shadow .15s ease-in-out;-o-transition:box-shadow .15s ease-in-out;transition:box-shadow .15s ease-in-out}.lib-file-list-item:hover,.file-item:hover,.asset_list_item:hover{-webkit-box-shadow:0 0 0 3px #d8e8fc;-moz-box-shadow:0 0 0 3px #d8e8fc;box-shadow:0 0 0 3px #d8e8fc;background-color:#fff;-moz-transition:box-shadow .15s ease-in-out;-webkit-transition:box-shadow .15s ease-in-out;-ms-transition:box-shadow .15s ease-in-out;-o-transition:box-shadow .15s ease-in-out;transition:box-shadow .15s ease-in-out}.lib-file-list-item.dndDragOver,.file-item.dndDragOver,.asset_list_item.dndDragOver{padding:0}.lib-file-list-item.selected,.file-item.selected,.asset_list_item.selected{-webkit-box-shadow:0 0 0 3px #0082dc;-moz-box-shadow:0 0 0 3px #0082dc;box-shadow:0 0 0 3px #0082dc;background-color:#fff;-moz-transition:box-shadow .15s ease-in-out;-webkit-transition:box-shadow .15s ease-in-out;-ms-transition:box-shadow .15s ease-in-out;-o-transition:box-shadow .15s ease-in-out;transition:box-shadow .15s ease-in-out}.lib-file-list-item.dojoDndItemBefore .dnd-corners,.file-item.dojoDndItemBefore .dnd-corners,.asset_list_item.dojoDndItemBefore .dnd-corners{display:block}.lib-file-list-item .i16x16_pin,.file-item .i16x16_pin,.asset_list_item .i16x16_pin{position:absolute;right:5px;top:5px;z-index:1}.lib-file-list-item .dnd-corners,.file-item .dnd-corners,.asset_list_item .dnd-corners{position:absolute;width:100%;height:100%;display:none}.lib-file-list-item .dnd-corners .left,.file-item .dnd-corners .left,.asset_list_item .dnd-corners .left,.lib-file-list-item .dnd-corners .right,.file-item .dnd-corners .right,.asset_list_item .dnd-corners .right{position:absolute;width:10px;height:100%;border-top:1px solid #e5e5e5;border-bottom:1px solid #e5e5e5;overflow:hidden}.lib-file-list-item .dnd-corners .left .shadow,.file-item .dnd-corners .left .shadow,.asset_list_item .dnd-corners .left .shadow,.lib-file-list-item .dnd-corners .right .shadow,.file-item .dnd-corners .right .shadow,.asset_list_item .dnd-corners .right .shadow{position:absolute;width:180px;height:100%;-webkit-border-radius:10px / 40px;-moz-border-radius:10px / 40px;border-radius:10px / 40px;-webkit-box-shadow:0 0 10px rgba(0,0,0,0.3);-moz-box-shadow:0 0 10px rgba(0,0,0,0.3);box-shadow:0 0 10px rgba(0,0,0,0.3)}.lib-file-list-item .dnd-corners .left,.file-item .dnd-corners .left,.asset_list_item .dnd-corners .left{border-right:1px solid #e5e5e5;left:-10px}.lib-file-list-item .dnd-corners .left .shadow,.file-item .dnd-corners .left .shadow,.asset_list_item .dnd-corners .left .shadow{left:10px}.lib-file-list-item .dnd-corners .right,.file-item .dnd-corners .right,.asset_list_item .dnd-corners .right{right:-10px;border-left:1px solid #e5e5e5}.lib-file-list-item .dnd-corners .right .shadow,.file-item .dnd-corners .right .shadow,.asset_list_item .dnd-corners .right .shadow{right:10px}.lib-file-list-item .wrapper,.file-item .wrapper,.asset_list_item .wrapper{width:180px;padding:10px;position:relative;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;margin:3px}.lib-file-list-item .preview,.file-item .preview,.asset_list_item .preview{height:160px;width:160px;background:#fff;background:-moz-radial-gradient(center, #fff, #e8e8e8);background:-webkit-radial-gradient(center, #fff, #e8e8e8);background:-o-radial-gradient(center, #fff, #e8e8e8);background:-ms-radial-gradient(center, #fff, #e8e8e8);background:radial-gradient(center, #fff, #e8e8e8);overflow:hidden;text-align:center}.lib-file-list-item .preview .preview-type,.file-item .preview .preview-type,.asset_list_item .preview .preview-type{width:160px;height:160px}.lib-file-list-item .preview .vmiddle,.file-item .preview .vmiddle,.asset_list_item .preview .vmiddle{display:table-cell;height:160px;vertical-align:middle}.lib-file-list-item .preview img,.file-item .preview img,.asset_list_item .preview img{max-width:160px;max-height:160px}.lib-file-list-item .preview .lib-tooltip,.file-item .preview .lib-tooltip,.asset_list_item .preview .lib-tooltip{top:80px;left:25px;display:block}.lib-file-list-item .preview:hover .lib-tooltip,.file-item .preview:hover .lib-tooltip,.asset_list_item .preview:hover .lib-tooltip{filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=0.7, enabled=1)";opacity:.7;-moz-transition:opacity .2s ease-in-out;-webkit-transition:opacity .2s ease-in-out;-ms-transition:opacity .2s ease-in-out;-o-transition:opacity .2s ease-in-out;transition:opacity .2s ease-in-out;visibility:visible}.lib-file-list-item .preview .element_preview,.file-item .preview .element_preview,.asset_list_item .preview .element_preview{margin:35px auto;width:90px}.lib-file-list-item .clickable,.file-item .clickable,.asset_list_item .clickable{cursor:pointer}.lib-file-list-item .ui-dropdown,.file-item .ui-dropdown,.asset_list_item .ui-dropdown{background:url('/5.16.2.5993/frontend/images/dropdown.png') no-repeat;width:12px;height:12px;display:inline-block;vertical-align:middle;cursor:pointer}.lib-file-list-item .file-info,.file-item .file-info,.asset_list_item .file-info{width:100%;bottom:0;left:0}.lib-file-list-item .file-info .file-parameters,.file-item .file-info .file-parameters,.asset_list_item .file-info .file-parameters{width:100%;height:50px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;white-space:nowrap}.lib-file-list-item .file-info .file-parameters .file-detail,.file-item .file-info .file-parameters .file-detail,.asset_list_item .file-info .file-parameters .file-detail{display:inline-block;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.lib-file-list-item .file-info .file-parameters .file-detail div,.file-item .file-info .file-parameters .file-detail div,.asset_list_item .file-info .file-parameters .file-detail div{overflow:hidden}.lib-file-list-item .file-info .file-ratings,.file-item .file-info .file-ratings,.asset_list_item .file-info .file-ratings{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;position:relative;height:30px}.lib-file-list-item .file-expired,.file-item .file-expired,.asset_list_item .file-expired,.lib-file-list-item .file-available,.file-item .file-available,.asset_list_item .file-available{position:absolute;top:0;left:0}.lib-file-list-item .file-expired .lib-tooltip,.file-item .file-expired .lib-tooltip,.asset_list_item .file-expired .lib-tooltip,.lib-file-list-item .file-available .lib-tooltip,.file-item .file-available .lib-tooltip,.asset_list_item .file-available .lib-tooltip{bottom:20px !important;left:-15px !important;min-width:0;min-height:15px}.lib-file-list-item .file-expired+.file-expired,.file-item .file-expired+.file-expired,.asset_list_item .file-expired+.file-expired,.lib-file-list-item .file-available+.file-expired,.file-item .file-available+.file-expired,.asset_list_item .file-available+.file-expired{left:20px}.lib-file-list-item .info-tool .icon-info-blue:hover+.lib-tooltip,.file-item .info-tool .icon-info-blue:hover+.lib-tooltip,.asset_list_item .info-tool .icon-info-blue:hover+.lib-tooltip{left:120px}.file-item .file-approvals-layout{position:absolute;top:-2px;left:0;right:0}.icon-file-expired+.icon-file-expired{margin-left:-10px}.lib-tooltip{min-width:130px;max-width:130px;word-wrap:break-word;background-color:#000000;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;position:absolute;color:#ffffff;filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=0, enabled=1)";opacity:0;transition:left 0s linear 0.7s, visibility 0s linear 0.7s, opacity 0.7s linear;visibility:hidden;-webkit-box-shadow:1px 1px 2px 0 rgba(0,0,0,0.7);-moz-box-shadow:1px 1px 2px 0 rgba(0,0,0,0.7);box-shadow:1px 1px 2px 0 rgba(0,0,0,0.7)}.lib-tooltip p{line-height:17px}.lib-tooltip .border-top{border-color:rgba(255,255,255,0.3)}.lib-tooltip a{color:#ffffff;text-decoration:none}.info-tool .icon-info-blue:hover+.lib-tooltip,.info-tool .lib-tooltip-trigger:hover+.lib-tooltip{visibility:visible;transition-delay:0s;filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=0.7, enabled=1)";opacity:.7}.info-tool .lib-tooltip{bottom:18px;left:0px;z-index:2}.file-tooltip{z-index:1070;display:block;visibility:visible;font-family:'Source Sans Pro',sans-serif;font-size:12px;font-weight:normal;line-height:1.4;filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=0, enabled=1)";opacity:0;z-index:200;max-width:260px;background-color:#000000;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;position:absolute;color:#ffffff;filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=0.8, enabled=1)";opacity:.8;-webkit-box-shadow:0 0 5px 0 rgba(0,0,0,0.7);-moz-box-shadow:0 0 5px 0 rgba(0,0,0,0.7);box-shadow:0 0 5px 0 rgba(0,0,0,0.7);padding-top:10px;padding-right:10px;padding-bottom:10px;padding-left:10px;min-width:130px;max-width:130px;word-wrap:break-word;filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=0.7, enabled=1)";opacity:.7;bottom:17px;left:-17px}.file-tooltip.in{filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=0.9, enabled=1)";opacity:.9}.file-tooltip.top{margin-top:-3px;padding:5px 0}.file-tooltip.right{margin-left:3px;padding:0 5px}.file-tooltip.bottom{margin-top:3px;padding:5px 0}.file-tooltip.left{margin-left:-3px;padding:0 5px}.file-tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.file-tooltip.top-left .tooltip-arrow{bottom:0;right:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.file-tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.file-tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.file-tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.file-tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.file-tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.file-tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.file-tooltip .border-top{border-color:rgba(255,255,255,0.3)}.file-tooltip a{color:#ffffff;text-decoration:none}.file-tooltip.with-arrow .arrow{bottom:-10px;position:absolute;right:45%;margin-left:20px;width:20px;height:20px;overflow:hidden}.file-tooltip.with-arrow .arrow:after{content:"";position:absolute;width:10px;height:10px;background-color:#000000;transform:rotate(45deg);-ms-transform:rotate(45deg);-moz-transform:rotate(45deg);-webkit-transform:rotate(45deg);-o-transform:rotate(45deg);bottom:5px;left:5px}.asset_list_item .preview .lib-tooltip{left:15px;top:67px}.asset_order{position:absolute;top:-30px;left:50%;margin-left:-20px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;border:1px solid #d6d6d6;color:#939598;width:40px;text-align:center}.asset_list_item{vertical-align:top}.lib-switcher{background-color:#ddd;width:70px;height:28px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;-webkit-box-shadow:0 2px 1px 0 rgba(0,0,0,0.3) inset, 0 1px 2px 0 #FFFFFF;-moz-box-shadow:0 2px 1px 0 rgba(0,0,0,0.3) inset, 0 1px 2px 0 #FFFFFF;box-shadow:0 2px 1px 0 rgba(0,0,0,0.3) inset, 0 1px 2px 0 #FFFFFF;position:relative;color:#666;display:inline-block}.lib-switcher .controller{position:absolute;z-index:1;margin-left:1px;width:35px;height:26px;border:1px solid #ccc;background-color:#fff;background:-moz-linear-gradient(top, #fff, #ddd);background:-webkit-linear-gradient(top, #fff, #ddd);background:-o-linear-gradient(top, #fff, #ddd);background:-ms-linear-gradient(top, #fff, #ddd);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #fff, #ddd, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #fff, #ddd);-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;-webkit-box-shadow:1px 1px 2px 0 rgba(0,0,0,0.7);-moz-box-shadow:1px 1px 2px 0 rgba(0,0,0,0.7);box-shadow:1px 1px 2px 0 rgba(0,0,0,0.7);right:0;cursor:pointer}.lib-switcher .controller.on{left:0}.lib-switcher .controll-text{overflow:hidden;padding-top:7px;text-shadow:0 1px #ffffff}.lib-switcher .controll-text .blue{text-shadow:1px -4px 3px #fff,0 1px #fff}.lib-switcher.disabled{filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=0.6, enabled=1)";opacity:.6}.file-type{display:inline-block;height:16px;width:16px;line-height:16px}.video-type .file-type{background:url('/5.16.2.5993/frontend/images/file-types.png') no-repeat scroll 0 2px transparent}.video-type.on .file-type{background:url('/5.16.2.5993/frontend/images/file-types.png') no-repeat scroll 0 -94px transparent}.image-type .file-type{background:url('/5.16.2.5993/frontend/images/file-types.png') no-repeat scroll 0 -14px transparent}.image-type.on .file-type{background:url('/5.16.2.5993/frontend/images/file-types.png') no-repeat scroll 0 -110px transparent}.audio-type .file-type{background:url('/5.16.2.5993/frontend/images/file-types.png') no-repeat scroll 0 -29px transparent}.audio-type.on .file-type{background:url('/5.16.2.5993/frontend/images/file-types.png') no-repeat scroll 0 -126px transparent}.audio-type .preview-type{background:url("/5.16.2.5993/frontend/images/wav-file.png") no-repeat scroll center center transparent}.file-type .file-type{background:url('/5.16.2.5993/frontend/images/file-types.png') no-repeat scroll 0 -46px transparent}.file-type.on .file-type{background:url('/5.16.2.5993/frontend/images/file-types.png') no-repeat scroll 0 -142px transparent}.all-type .file-type{background:url('/5.16.2.5993/frontend/images/file-types.png') no-repeat scroll 0 -62px transparent}.all-type.on .file-type{background:url('/5.16.2.5993/frontend/images/file-types.png') no-repeat scroll 0 -158px transparent}.document-type .file-type{background:url('/5.16.2.5993/frontend/images/file-types.png') no-repeat scroll 0 -78px transparent}.document-type.on .file-type{background:url('/5.16.2.5993/frontend/images/file-types.png') no-repeat scroll 0 -174px transparent}.other-type .file-type{background:url('/5.16.2.5993/frontend/images/file-types.png') no-repeat scroll 0 -190px transparent}.other-type.on .file-type{background:url('/5.16.2.5993/frontend/images/file-types.png') no-repeat scroll 0 -206px transparent}.usage_term,.virus_found{color:#ffffff;text-transform:uppercase;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;text-shadow:0 1px 1px rgba(0,0,0,0.5)}.usage_term.danger,.virus_found.danger{background:#d85050}.usage_term.available,.virus_found.available{background:#00b74f}.usage_term .icon-alert-white,.virus_found .icon-alert-white{vertical-align:text-bottom;margin-right:5px}.simple_asset_form{background:#efefef;width:580px;height:820px;border:1px solid #999;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;-webkit-box-shadow:2px 2px 2px 0 #999;-moz-box-shadow:2px 2px 2px 0 #999;box-shadow:2px 2px 2px 0 #999}.simple_asset_form .left{width:210px}.simple_asset_form .right{width:310px}.simple_asset_form .name{border-bottom:1px solid #cccccc;-webkit-box-shadow:1px 0 #ccc inset;-moz-box-shadow:1px 0 #ccc inset;box-shadow:1px 0 #ccc inset;color:#666666}.simple_asset_form .fileimg{width:150px;background-color:#fff;border:1px solid #cdcdcd}.simple_asset_form .fileimg img{max-width:150px;height:100px}.gradient-left-side{background-color:#fff;background:-moz-linear-gradient(top, #fff, #eee);background:-webkit-linear-gradient(top, #fff, #eee);background:-o-linear-gradient(top, #fff, #eee);background:-ms-linear-gradient(top, #fff, #eee);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #fff, #eee, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #fff, #eee);-webkit-box-shadow:-1px 0 #ccc inset;-moz-box-shadow:-1px 0 #ccc inset;box-shadow:-1px 0 #ccc inset}.right-bordered{border-right:1px solid #ccc}.left-bordered{border-left:1px solid #ccc}.category-list{background-color:#fff;background:-moz-linear-gradient(top, #fff, #eee);background:-webkit-linear-gradient(top, #fff, #eee);background:-o-linear-gradient(top, #fff, #eee);background:-ms-linear-gradient(top, #fff, #eee);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #fff, #eee, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #fff, #eee);-webkit-box-shadow:-1px 0 #ccc inset;-moz-box-shadow:-1px 0 #ccc inset;box-shadow:-1px 0 #ccc inset}.category-list li{cursor:pointer;height:32px;overflow:hidden}.category-list li .vmiddle{display:table-cell;height:32px;vertical-align:middle}.category-list li:hover{background:#d8e8fc}.category-list li.active{background:#d8e8fc}.category-list li .icon-category{filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=0.7, enabled=1)";opacity:.7}.users-list{-webkit-box-shadow:1px 0 #ccc inset;-moz-box-shadow:1px 0 #ccc inset;box-shadow:1px 0 #ccc inset}.users-list li{height:32px;overflow:hidden}.users-list li .vmiddle{display:table-cell;height:32px;vertical-align:middle}.multiple_asset_form .fileimg{width:190px;background-color:#fff;border:2px solid #cdcdcd;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px}.multiple_asset_form .fileimg img{max-width:190px;height:130px}.cancel{color:#333;text-decoration:none}.cancel:hover{text-decoration:underline}.prev_next_page{min-height:30px}.prev_next_page .page-display{border:1px solid #ccc;height:28px;display:inline-block;line-height:28px;text-align:center;min-width:60px;-webkit-box-shadow:0 1px 0 0 #fff;-moz-box-shadow:0 1px 0 0 #fff;box-shadow:0 1px 0 0 #fff}.prev_next_page .button .arrows{filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=0.6, enabled=1)";opacity:.6}.prev_next_page .button.disabled .arrows{filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=0.2, enabled=1)";opacity:.2}.inline-block{display:inline-block}.brick{display:inline-block;height:30px;line-height:30px}.brick *{vertical-align:middle}.new_project{padding-left:30px;position:relative;margin:0px}.new_project:before{content:"";height:16px;position:absolute;left:8px;top:6px;width:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -1552px transparent}.new_project .dijitButtonContents{margin-top:3px}.vline{position:absolute;height:28px;width:2px;right:26px;margin-top:1px;box-shadow:-1px 0 0 0 #cecece inset,1px 0 0 0 #f9f9f9 inset;z-index:9}.vline.rMore{right:55px}.more_click{margin:0px;padding:0px}.more_click .dijitButtonContents{padding:0px 5px 0px 15px}.more_click.none-padding .dijitButtonContents{padding:0}.more_click.none-padding .dijitArrowButtonInner{margin-left:15px !important}.more_click .dijitButtonNode .dijitArrowButtonInner{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -1472px transparent;height:16px;width:16px;display:inline-block;margin-left:10px;margin-top:-3px}.more_click.mrs{margin-right:10px}.more_click.more_click_border .dijitButtonContents{position:relative;text-align:left;margin-left:5px}.more_click.more_click_border .dijitArrowButtonInner{position:absolute;top:6px;right:5px;margin:0 !important}.button.more_click_border .dijitButtonText{height:28px;display:inline-block;padding-right:10px;border-right:1px solid white;-webkit-box-shadow:1px 0 #ccc;-moz-box-shadow:1px 0 #ccc;box-shadow:1px 0 #ccc}.button.add{white-space:nowrap}.dijitPopup{font-size:13px}.multiselect .list-item.selected{background-color:#d8e8fc}.vertical-delimeter:after{background-color:#fff;content:"";height:75%;position:absolute;right:17px;top:13%;width:1px;-webkit-box-shadow:1px 0 #ccc;-moz-box-shadow:1px 0 #ccc;box-shadow:1px 0 #ccc}.files-info-rows{line-height:20px}.files-info-rows input.ui-input[type="text"]{width:150px;height:18px;border-radius:0px !important;box-shadow:none !important}.files-info-rows .dijitSelect{width:150px;vertical-align:middle}.files-info-rows .dijitSelect .dijitButtonNode{height:16px}.files-info-rows .dijitSelect .dijitArrowButton{width:16px}.files-info-rows .dijitSelect .dijitArrowButton .dijitArrowButtonInner{margin:0px 0px 0px 0px}.files-info-rows .dijitTextBox{width:150px;height:16px}.files-info-rows .dijitTextBox .dijitInputContainer{padding-top:0px}.infLable{display:none}.hideForm .blank{display:none}.hideForm .formElement{display:none}.hideForm .infLable{display:inline-block}.dijitCalendarCurrentDate{border-color:#F1CA7F !important;border-style:solid !important;border-width:2px !important}.list_of_roles>li{float:left;padding:0 7px;color:white;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;background-color:blue;line-height:14px}.list_of_roles .role-agency-user{background-color:#0082dc}.list_of_roles .role-agency-admin{background-color:#00a1e2}.sidebar-control{width:3px;height:3000px;position:absolute;right:0px;top:0px}.sidebar-control:hover{cursor:e-resize !important}.sidebar-control.drag-start{background-color:#d8e8fc;filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=0.5, enabled=1)";opacity:.5;width:10px}.resizebleBlock{-moz-transition:width .5s linear;-webkit-transition:width .5s linear;-ms-transition:width .5s linear;-o-transition:width .5s linear;transition:width .5s linear}.collapseButton{width:16px;height:16px;position:absolute;top:27px;right:3px;cursor:pointer;-moz-transition:transform .5s ease-in-out;-webkit-transition:transform .5s ease-in-out;-ms-transition:transform .5s ease-in-out;-o-transition:transform .5s ease-in-out;transition:transform .5s ease-in-out}.collapseButton.collapsed{transform:rotate(180deg);-ms-transform:rotate(180deg);-moz-transform:rotate(180deg);-webkit-transform:rotate(180deg);-o-transform:rotate(180deg);-moz-transition:transform .5s ease-in-out;-webkit-transition:transform .5s ease-in-out;-ms-transition:transform .5s ease-in-out;-o-transition:transform .5s ease-in-out;transition:transform .5s ease-in-out}body.presentation{overflow-x:hidden}body.presentation.fullscreen .center .inline-display,body.presentation.fullscreen .center .reel-head{display:none}body.presentation.fullscreen .footer{display:none}body.presentation div#app-main{min-height:100%;min-width:100%;width:100%;position:relative;background-repeat:no-repeat;background-size:cover;background-position:50% 50%;background-attachment:scroll}body.presentation div#app-main.scale-tile{background-size:auto;background-repeat:repeat}body.presentation #app-view{height:100%;width:100%;min-height:100%;display:block;position:relative}body.presentation .reel-container{text-align:center;height:100%;padding-top:40px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}body.presentation .reel-container .main-info{height:70%;display:inline-block;vertical-align:middle;position:relative;width:646px;text-align:left;background-attachment:scroll;padding-bottom:130px}body.presentation .reel-container .main-info.grid{width:950px;padding-bottom:70px}body.presentation .reel-container .main-info.grid .player-box{display:inline-block;line-height:1;min-height:300px;min-width:600px}body.presentation .reel-container .main-info.grid .info-block{clear:both}body.presentation .reel-container .main-info.grid.wide-block{width:1164px}body.presentation .reel-container .main-info.h-wide{padding-bottom:40px}body.presentation .reel-container .main-info .reel-head{font-size:1.25em}body.presentation .reel-container .main-info .reel-head .link{font-size:0.8em;text-decoration:none;margin-top:3px}body.presentation .reel-container .main-info .info-block{border-bottom:1px solid;border-radius:5px 5px 0 0;padding:5px 20px}body.presentation .reel-container .main-info .info-block .viewmore{clear:both}body.presentation .reel-container .thumbnails-grid{display:inline-block;float:right;width:292px}body.presentation .reel-container .thumbnails-grid .icons{height:300px}body.presentation .reel-container .thumbnails-grid .icons .item{margin-left:8px;margin-bottom:8px;cursor:pointer}body.presentation .reel-container .thumbnails-grid .icons .item.selected{cursor:default}body.presentation .reel-container .thumbnails-grid .icons .item.firstline{margin-left:0}body.presentation .reel-container .thumbnails-grid.metadataGrid .icons{height:360px}body.presentation .reel-container .thumbnails-grid.metadataGrid .icons .item{margin:0px}body.presentation .reel-container .thumbnails-grid .pager{text-align:center}body.presentation .reel-container .thumbnails-grid .pager .page-selector{width:16px;height:16px;display:inline-block;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat -16px 0;margin-right:5px;cursor:pointer}body.presentation .reel-container .thumbnails-grid .pager .page-selector.selected{background-position:-16px -16px;pointer-events:none;cursor:default}body.presentation .reel-container .player-box{position:relative}body.presentation .reel-container .player{width:100%;height:360px;position:relative}body.presentation .reel-container .player .image-frame{position:absolute;width:100%;height:100%;top:0;background-position:50% 50%;background-size:contain;background-repeat:no-repeat}body.presentation .reel-container .player.toBottom .flp{margin-top:300px}body.presentation .footer{margin-top:-30px;height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;position:relative}body.presentation .footer .back-line{height:1px;position:absolute;width:100%}body.presentation .footer .drop-down{position:absolute;z-index:2;border:1px solid;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;padding-bottom:20px;padding:10px 1px 20px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-box-shadow:0 0 4px #000;-moz-box-shadow:0 0 4px #000;box-shadow:0 0 4px #000;bottom:15px;left:10px;min-width:200px}body.presentation .footer .drop-down a{text-decoration:none;color:inherit}body.presentation .footer .drop-down .list-item{padding:5px 10px}body.presentation .footer .drop-down .list-item:hover{background-color:rgba(255,255,255,0.4)}body.presentation .footer .panel{-webkit-box-shadow:0 0 5px #000;-moz-box-shadow:0 0 5px #000;box-shadow:0 0 5px #000;position:relative;z-index:2;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}body.presentation .footer .button{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;height:100%;display:inline-block;background:transparent;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;min-width:30px;padding:0;border:1px solid;border-bottom:none;border-right:none;position:relative;z-index:1;vertical-align:top}body.presentation .footer .button .icon{width:16px;height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat;position:relative;top:6px}body.presentation .footer .button.play-button .icon{background-position:0 -2016px}body.presentation .footer .button.stop-button .icon{background-position:0 -1952px}body.presentation .footer .button.pause-button .icon{background-position:0 -1936px}body.presentation .footer .button:last-child{border-right:1px solid}body.presentation .footer .reels-list{min-width:200px;border-right:1px solid}body.presentation .footer .trackline{position:absolute;bottom:29px;width:100%;overflow:hidden}body.presentation .footer .trackline .container{text-align:center;width:100%;position:relative}body.presentation .footer .trackline .container .toggle-item{border:1px solid;height:20px;width:92px;border-radius:5px 5px 0 0;display:inline-block;border-bottom:none}body.presentation .footer .trackline .container .toggle-item .inner-layout{border-radius:5px 5px 0 0;border-top:1px solid #333;padding-top:2px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}body.presentation .footer .trackline .container .toggle-item .toggle-icon{line-height:20px;width:16px;height:16px;display:inline-block;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat 0 -1904px}body.presentation .footer .trackline .container .toggle-item.showed .toggle-icon{background-position:0 -1920px}body.presentation .footer .trackline .container .rollup{position:relative;width:100%;overflow:visible}body.presentation .footer .trackline .container .rollup .control{position:absolute;height:100%;width:30px;background-color:rgba(255,255,255,0.5);z-index:2;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}body.presentation .footer .trackline .container .rollup .control.roll-left{left:0}body.presentation .footer .trackline .container .rollup .control.roll-right{right:0;top:0}body.presentation .footer .trackline .container .rollup .line{-moz-transition:height .5s ease-in-out;-webkit-transition:height .5s ease-in-out;-ms-transition:height .5s ease-in-out;-o-transition:height .5s ease-in-out;transition:height .5s ease-in-out;height:91px;white-space:nowrap}body.presentation .footer .trackline .container .rollup .line .item{border-right:none;border-bottom:none}body.presentation .footer .trackline .container .rollup .line .item:last-child{border-right:1px solid}body.presentation .footer .trackline .container .rollup .line.hides{height:0}body.presentation .footer .trackline .container.hides .item.selected .selector{display:none}body.presentation .line,body.presentation .thumbnails-grid{position:relative;display:inline-block}body.presentation .line .item,body.presentation .thumbnails-grid .item{width:90px;height:auto;min-height:90px;display:inline-block;border:1px solid;position:relative}body.presentation .line .item .selector,body.presentation .thumbnails-grid .item .selector{position:absolute;left:-3px;top:-3px;width:100%;height:100%;border:3px solid rgba(200,200,200,0.7);border-radius:5px;z-index:1;display:none}body.presentation .line .item .preview,body.presentation .thumbnails-grid .item .preview{height:auto;min-height:90px;background-size:contain;background-repeat:no-repeat;background-position:50% 50%;opacity:0.4}body.presentation .line .item.selected,body.presentation .thumbnails-grid .item.selected{font-weight:bold}body.presentation .line .item.selected .preview,body.presentation .thumbnails-grid .item.selected .preview{opacity:1}body.presentation .metadataGrid{float:right;width:292px}body.presentation .metadataGrid .icons{overflow-y:auto;height:360px}body.presentation .metadataGrid .icons .item{width:90px;height:auto;min-height:90px;display:inline-block;border:1px solid;position:relative;box-sizing:border-box;width:100%}body.presentation .metadataGrid .icons .item .selector{position:absolute;left:-3px;top:-3px;width:100%;height:100%;border:3px solid rgba(200,200,200,0.7);border-radius:5px;z-index:1;display:none}body.presentation .metadataGrid .icons .item .preview{height:auto;min-height:90px;background-size:contain;background-repeat:no-repeat;background-position:50% 50%;opacity:0.4}body.presentation .metadataGrid .icons .item.selected{font-weight:bold}body.presentation .metadataGrid .icons .item.selected .preview{opacity:1}body.presentation .metadataGrid .icons .item .preview{width:90px;float:right;cursor:pointer}body.presentation .metadataGrid.audio .icons .item{background-color:#252525 !important;border:none;margin-bottom:10px !important}body.presentation .metadataGrid.audio .icons .item .track-title{font-size:15px}body.presentation .metadataGrid.audio .icons .item.selected .track-title{font-weight:bold;font-style:normal;font-size:15px}body.presentation .next-item,body.presentation .prev-item{position:absolute;width:90px;height:360px;cursor:pointer;overflow:hidden}body.presentation .next-item .context,body.presentation .prev-item .context{background-color:black;background-size:contain;background-repeat:no-repeat;width:640px;height:360px;position:absolute}body.presentation .next-item .blackpoint,body.presentation .prev-item .blackpoint{position:absolute;top:164px;border:1px solid #3c3c3c;background-color:#666;padding:8px}body.presentation .next-item .blackpoint .icon,body.presentation .prev-item .blackpoint .icon{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll}body.presentation .next-item{right:0px}body.presentation .next-item .context{background-position:0 50%}body.presentation .next-item .blackpoint{left:42px}body.presentation .next-item .blackpoint .icon{background-position:0 -2064px}body.presentation .prev-item{left:0px}body.presentation .prev-item .context{background-position:100% 50%;right:0}body.presentation .prev-item .blackpoint{right:42px}body.presentation .prev-item .blackpoint .icon{background-position:0 -2080px}body.presentation.dark{background-color:black}body.presentation.dark .main-info .info-block{background-color:rgba(25,25,25,0.7);border-bottom-color:#ccc;color:white;vertical-align:middle}body.presentation.dark .main-info .info-block .link{color:white}body.presentation.dark .drop-down{background-color:#333;border:1px solid #3c3c3c;color:white}body.presentation.dark .drop-down .list-item.active{background-color:#ccc}body.presentation.dark .drop-down .list-item:hover{background-color:rgba(204,204,204,0.5)}body.presentation.dark .footer .panel{background-color:#333;border-top:1px solid black}body.presentation.dark .footer .back-line{background-color:#3c3c3c}body.presentation.dark .footer .button{border-color:black;color:white;border-top:1px solid #333;background-color:#252525}body.presentation.dark .trackline .container .toggle-item{background-color:#252525;border-color:black}body.presentation.dark .rollup .item,body.presentation.dark .thumbnails-grid .item{background-color:#252525;border-color:black;color:#f6f6f6}body.presentation.dark .rollup .item.selected,body.presentation.dark .thumbnails-grid .item.selected{background-color:rgba(200,200,200,0.5)}body.presentation.dark .rollup .item.selected .selector,body.presentation.dark .thumbnails-grid .item.selected .selector{display:block;border-color:rgba(55,55,49,0.7)}body.presentation.dark .rollup .item.next .selector,body.presentation.dark .thumbnails-grid .item.next .selector{display:block}body.presentation.light .panel{background-color:white}body.presentation.light .main-info .info-block{background-color:rgba(246,246,246,0.7);border-bottom-color:#ccc;color:#333;vertical-align:middle}body.presentation.light .main-info .info-block .link{color:#333}body.presentation.light .drop-down{background-color:#e8e8e8;border:1px solid #d6d6d6;color:#333;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.5);-moz-box-shadow:0 0 5px rgba(0,0,0,0.5);box-shadow:0 0 5px rgba(0,0,0,0.5)}body.presentation.light .drop-down .list-item.active{background-color:#ccc}body.presentation.light .drop-down .list-item:hover{background-color:rgba(204,204,204,0.5)}body.presentation.light .footer{background-color:#f6f6f6;background:-moz-linear-gradient(top, #f6f6f6, #e0e0e0);background:-webkit-linear-gradient(top, #f6f6f6, #e0e0e0);background:-o-linear-gradient(top, #f6f6f6, #e0e0e0);background:-ms-linear-gradient(top, #f6f6f6, #e0e0e0);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #f6f6f6, #e0e0e0, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #f6f6f6, #e0e0e0);border:1px solid #ccc}body.presentation.light .footer .back-line{background-color:white}body.presentation.light .footer .button{color:#3c3c3c;background-color:#e0e0e0;border-color:#ccc;border-top:1px solid white}body.presentation.light .footer .button.play-button .icon{background-position:0 -2032px}body.presentation.light .footer .button.stop-button .icon{background-position:0 -1984px}body.presentation.light .footer .button.pause-button .icon{background-position:0 -1968px}body.presentation.light .trackline .container .toggle-item{background-color:#fff;background:-moz-linear-gradient(top, #fff, #ddd);background:-webkit-linear-gradient(top, #fff, #ddd);background:-o-linear-gradient(top, #fff, #ddd);background:-ms-linear-gradient(top, #fff, #ddd);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #fff, #ddd, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #fff, #ddd);border-color:#cecece}body.presentation.light .trackline .container .toggle-item .inner-layout{border-color:white}body.presentation.light .rollup .item,body.presentation.light .thumbnails-grid .item{background:#fff;background:-moz-radial-gradient(center, #fff, #e8e8e8);background:-webkit-radial-gradient(center, #fff, #e8e8e8);background:-o-radial-gradient(center, #fff, #e8e8e8);background:-ms-radial-gradient(center, #fff, #e8e8e8);background:radial-gradient(center, #fff, #e8e8e8);border-color:#cecece;color:#000}body.presentation.light .rollup .item.selected,body.presentation.light .thumbnails-grid .item.selected{background:none;background:-moz-radial-gradient(center, none, #eee);background:-webkit-radial-gradient(center, none, #eee);background:-o-radial-gradient(center, none, #eee);background:-ms-radial-gradient(center, none, #eee);background:radial-gradient(center, none, #eee);background-color:rgba(35,35,35,0.5)}body.presentation.light .rollup .item.selected .selector,body.presentation.light .thumbnails-grid .item.selected .selector{display:block;border-color:rgba(55,55,49,0.7)}body.presentation.light .rollup .item.next .selector,body.presentation.light .thumbnails-grid .item.next .selector{display:block}body.presentation.light .metadataGrid .item{border:none;background:#fff;background:-moz-radial-gradient(center, #fff, #fff);background:-webkit-radial-gradient(center, #fff, #fff);background:-o-radial-gradient(center, #fff, #fff);background:-ms-radial-gradient(center, #fff, #fff);background:radial-gradient(center, #fff, #fff)}body.presentation.light .metadataGrid .item.selected{background:#fff;background:-moz-radial-gradient(center, #fff, #fff);background:-webkit-radial-gradient(center, #fff, #fff);background:-o-radial-gradient(center, #fff, #fff);background:-ms-radial-gradient(center, #fff, #fff);background:radial-gradient(center, #fff, #fff)}body.presentation .player-unplayablefile{position:absolute;width:100%;height:100%;overflow:auto;max-height:500px;z-index:-1;opacity:0;pointer-events:none}body.presentation .is-preview-showing .player-unplayablefile{transition-delay:500ms;z-index:1;opacity:1;pointer-events:initial}body.presentation .is-preview-showing .player{transition:none;opacity:0 !important;pointer-events:none !important;z-index:-1 !important}.popupWindow .new-reel-form{width:430px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.easy-control-block{background-color:#eee;height:36px}.easy-control-block .vmiddle{height:36px;display:table-cell;vertical-align:middle}.easy-control-block .actionBar{background-color:#eee}.easy-control-block .actionBar .dijitArrowButton{background-color:#eee;background:-moz-linear-gradient(top, #eee, #eee);background:-webkit-linear-gradient(top, #eee, #eee);background:-o-linear-gradient(top, #eee, #eee);background:-ms-linear-gradient(top, #eee, #eee);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #eee, #eee, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #eee, #eee);border:none !important}.easy-control-block .actionBar .dijitArrowButton .dijitArrowButtonInner{margin:-3px 0 0 7px}.easy-control-block.shadow{-webkit-box-shadow:0 2px 4px -2px #999;-moz-box-shadow:0 2px 4px -2px #999;box-shadow:0 2px 4px -2px #999}.white-background{background-color:white}.sidebar-head .dijitSelect .dijitButtonNode{height:24px}.sidebar-head .dijitSelect .dijitArrowButton{width:24px}.sidebar-head .dijitSelect .dijitArrowButton .dijitArrowButtonInner{margin:0px 0px 0px 4px}.delivery-settings .ui-input{line-height:normal}.delivery-settings .row{font-size:16px;color:#999;width:300px}.itemsList.small .notification-item.row{max-height:none}.notification-item{padding:14px 0px 7px 0px}.notification-item:hover{background-color:#fafae3;background:-moz-linear-gradient(top, #fafae3, #fafae3);background:-webkit-linear-gradient(top, #fafae3, #fafae3);background:-o-linear-gradient(top, #fafae3, #fafae3);background:-ms-linear-gradient(top, #fafae3, #fafae3);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #fafae3, #fafae3, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #fafae3, #fafae3)}.notification-item.selected{background-color:#d8e8fc;background:-moz-linear-gradient(top, #d8e8fc, #d8e8fc);background:-webkit-linear-gradient(top, #d8e8fc, #d8e8fc);background:-o-linear-gradient(top, #d8e8fc, #d8e8fc);background:-ms-linear-gradient(top, #d8e8fc, #d8e8fc);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #d8e8fc, #d8e8fc, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #d8e8fc, #d8e8fc)}.notification-item.unreaded{font-weight:bold}.profile-edit-block{min-height:45px}.profile-edit-block .text-info{position:absolute;bottom:0px}.display-table-cell{display:table-cell}.manage_permissions_dialog{padding:20px 67px 23px 40px}.manage_permissions_dialog .roles-content{position:relative}.manage_permissions_dialog .roles-content .role-item .remover{position:absolute;width:16px;height:16px;left:-18px;cursor:pointer}.manage_permissions_dialog .roles-content .role-item .small{font-size:10px;font-style:italic;color:#a6a6a6}.projects_action_form_popup{width:824px;padding-right:33px;padding-bottom:32px}.projects_action_form_popup .savePanel{border-top:1px solid #e8e8e8}.projects_action_form_popup .vmiddle{height:30px;vertical-align:middle;display:table-cell}.locked-input{display:inline-block;position:relative;width:100%}.locked-input:after{content:"";position:absolute;right:8px;top:7px;display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -32px 0 transparent}.locked-input:before{content:"";height:28px;position:absolute;right:1px;top:1px;width:30px;border-left:1px solid #ccc;background-color:#f6f6f6;background:-moz-linear-gradient(top, #f6f6f6, #e0e0e0);background:-webkit-linear-gradient(top, #f6f6f6, #e0e0e0);background:-o-linear-gradient(top, #f6f6f6, #e0e0e0);background:-ms-linear-gradient(top, #f6f6f6, #e0e0e0);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #f6f6f6, #e0e0e0, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #f6f6f6, #e0e0e0)}.presentations-list{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.reel-card{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;display:table-cell;width:100%}.reel-card .branding .titlePreview{width:264px;height:50px}.reel-card .branding .titlePreview .image{width:264px;height:50px;background-size:contain;background-repeat:no-repeat;background-position:center}.reel-card .branding .backgroundPreview{width:260px;height:120px;text-align:center}.reel-card .branding .backgroundPreview .image{width:100%;height:100%;background-size:cover;background-repeat:no-repeat;background-position:center;display:inline-block}.reel-card .branding .backgroundPreview .image.tile{background-size:18%;background-repeat:repeat}.reel-card .branding .imageHolder{background-image:url("/5.16.2.5993/frontend/images/transparent_background.gif")}.reel-card .branding .presentationColorThemes .theme{width:110px;display:inline-block}.reel-card .branding .presentationColorThemes .theme.light .icon{background-position:0 0}.reel-card .branding .presentationColorThemes .theme.dark .icon{background-position:0 -84px}.reel-card .branding .presentationColorThemes .theme .icon{background-image:url("/5.16.2.5993/frontend/images/presentation-theme-icons.png");height:84px}.reel-card .branding .presentationColorThemes .theme .icon .checkMark{width:32px;height:32px;top:26px;left:38px;background-image:url("/5.16.2.5993/frontend/images/icons32x32.png");background-position:0 -448px;position:relative;visibility:hidden}.reel-card .branding .presentationColorThemes .theme.checked .checkMark{visibility:visible}.reel-card .layout .stype{width:135px;margin-right:100px}.reel-card .layout label{line-height:normal;font-weight:normal;color:black}.reel-card .layout input:checked+div.screen{border-color:#0085bc;border-radius:3px}.reel-card .layout .screen{padding:10px;width:111px;margin-bottom:10px;border:3px solid #eee}.reel-card .layout .screen .icon{background:url("/5.16.2.5993/frontend/images/presentation-layout.png") 0 0 no-repeat;height:80px;width:111px;display:inline-block}.reel-card .layout .screen.second .icon{background-position:0 -80px}.reel-card .layout .screen.metadata-grid .icon{background-position:0 -248px}.reel-card .layout .screen.audio .icon{background-position:0 -328px}.reel-card .layout .presentationThumbview .thumb{display:inline-block;vertical-align:top}.reel-card .layout .presentationThumbview .thumb .wrapper{padding:10px;width:140px;border:3px solid #eee;margin-bottom:10px}.reel-card .layout .presentationThumbview .thumb.roller .wrapper .icon{width:140px;height:37px;background-position:0 -160px}.reel-card .layout .presentationThumbview .thumb.grid{width:115px}.reel-card .layout .presentationThumbview .thumb.grid .wrapper{width:64px}.reel-card .layout .presentationThumbview .thumb.grid .wrapper .icon{width:64px;height:50px;background-position:0 -197px}.reel-card .layout .presentationThumbview .thumb .icon{background-image:url("/5.16.2.5993/frontend/images/presentation-layout.png");background-repeat:no-repeat}.reel-card .layout .presentationThumbview .thumb.checked .wrapper{border-color:#0085bc;border-radius:3px}.reel-card .layout .presentationThumbview.disabled{filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=0.3, enabled=1)";opacity:.3}.reel-card .layout .presentationThumbview.disabled .thumb .icon .checkMark{background-position:0 -480px}.reel-card .settings .shortInput{width:50px;text-align:right}.reel-card .settings .download label{display:block;height:32px}.reel-card .settings .download .podcast{background-image:url("/5.16.2.5993/frontend/images/icons32x32.png");background-position:0 -512px;background-repeat:no-repeat;height:32px;line-height:32px}.reel-card .activity .titleInfo{border-bottom:1px solid #ccc}.reel-card .activity .titleInfo .info{-webkit-box-sizing:padding-box;-moz-box-sizing:padding-box;box-sizing:padding-box;margin-left:-120px;margin-right:-175px;padding-left:140px;padding-right:175px;width:100%}.reel-card .activity .titleInfo .info p.greed{overflow:hidden;position:relative;float:left;margin-top:20px;width:33.333%}.reel-card .activity .titleInfo .presentationLogo{width:110px;height:110px;background-position:center;background-repeat:no-repeat;background-size:contain}.reel-card .activity .titleInfo .download{width:140px;height:32px;padding-left:42px;background-image:url("/5.16.2.5993/frontend/images/thumbnails/ficon-xls.png");background-size:32px 32px;background-position:left center;background-repeat:no-repeat;line-height:32px}.adbankToolTipRelative{position:relative}.adbankToolTipRelative .adbankToolTip{position:absolute;z-index:20}.adbankToolTip,.adbankToolTipDialog{background:transparent}.adbankToolTipBelow{padding-top:13px;padding-left:3px;padding-right:3px}.adbankToolTipAbove{padding-left:3px;padding-right:3px}.adbankToolTipContainer{background-color:#ffffff;background-image:url("/5.16.2.5993/frontend/images/tooltipGradient.png");background-repeat:repeat-x;background-position:bottom;border:1px solid #769dc0;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 3px rgba(0,0,0,0.25);-moz-box-shadow:0 1px 3px rgba(0,0,0,0.25);box-shadow:0 1px 3px rgba(0,0,0,0.25);font-size:1em}.dj_ie6 .adbankToolTipContainer{background-image:none}.adbankToolTipConnector{position:relative;border:0;z-index:2;background-image:url("/5.16.2.5993/frontend/images/tooltip.png");background-repeat:no-repeat;width:16px;height:14px}.dj_ie6 .adbankToolTipConnector{background-image:url("/5.16.2.5993/frontend/images/tooltip8bit.png")}.adbankToolTipABRight .adbankToolTipConnector{left:auto !important;right:3px}.adbankToolTipBelow .adbankToolTipConnector{top:0;left:3px;background-position:-31px 0;width:16px;height:14px}.adbankToolTipAbove .adbankToolTipConnector{bottom:1px;left:3px;background-position:-15px 0;width:16px;height:10px}.dj_ie7 .adbankToolTipAbove .adbankToolTipConnector,.dj_ie6 .adbankToolTipAbove .adbankToolTipConnector{bottom:-1px}.adbankToolTipLeft{padding-right:14px}.adbankToolTipLeft .adbankToolTipConnector{right:0;background-position:0 0;width:16px;height:14px}.adbankToolTipRight{padding-left:14px}.adbankToolTipRight .adbankToolTipConnector{left:0;background-position:-48px 0;width:16px;height:14px}.dijitPlaceHolder{font-style:normal}.central-block{margin:0px 240px 0px 240px}.new-event-block{border:1px solid #ccc;-webkit-box-shadow:0 1px 1px #ccc inset;-moz-box-shadow:0 1px 1px #ccc inset;box-shadow:0 1px 1px #ccc inset;padding:7px 0px}.add-usage-rights{width:100%}.add-usage-rights .ui-input{border-radius:0px !important;box-shadow:none !important}.add-usage-rights .ui-input[type="text"].notify-days{width:30px;margin-top:-7px}.add-usage-rights .expire-cycle{padding-top:7px}.add-usage-rights .removeUsage{position:absolute;top:3px;right:5px}.add-usage-rights .usage-item textarea.more-info{min-height:150px}.dirty-red{color:#d85050}.usage-rights-list .expand-indicator{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") 0 -1872px no-repeat;margin-top:7px;margin-left:3px}.usage-rights-list .expanded-item{background:#eef3f6}.usage-rights-list .expanded{background:#d5e3f4 !important}.usage-rights-list .expanded .expand-indicator{background:url("/5.16.2.5993/frontend/images/icons16x16.png") 0 -1887px no-repeat}.usage-container.disabled{color:#a6a6a6}.dojoxColorPicker{padding:0 !important;position:absolute;z-index:99;margin:-120px 0 0 220px !important;border-collapse:separate !important;border-spacing:10px !important;background:#ececec;border-radius:5px}.dojoxColorPicker TABLE{border-collapse:separate !important}.dojoxColorPicker TD{vertical-align:top !important}.dojoxColorPicker TD IMG{display:inline !important}.logoPreview .titlePreview{width:171px}.logoPreview .titlePreview{width:171px}.logoPreview .imageHolder{background-image:url("/5.16.2.5993/frontend/images/transparent_background.gif")}.faviconPreview .titlePreview{width:16px;height:16px}.backgroundPreview{background-image:url("/5.16.2.5993/frontend/images/transparent_background.gif");text-align:center}.faviconPreview .titlePreview{width:16px;height:16px}:-webkit-full-screen .pdf-preview,:-moz-full-screen .pdf-preview{background-color:red;width:100%;height:100%}.pdf-preview{background-color:#ffffff;padding:20px 70px;min-height:600px;position:relative}.pdf-preview>.relative{min-height:560px;padding-left:200px}.pdf-preview:-webkit-full-screen{width:100%;height:100%}.pdf-preview .page-block{-webkit-box-shadow:0 0 3px #999;-moz-box-shadow:0 0 3px #999;box-shadow:0 0 3px #999}.pdf-preview .pdf-controller{width:82px;min-height:150px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;border:1px solid #ccc;position:absolute;top:200px;right:100px}.pdf-preview .pdf-controller .contr-body{background-color:#303030;min-height:146px;margin:2px;width:78px;padding:15px 0px;text-align:center}.pdf-preview .pdf-controller .contr-body .pdf-controller-handler{width:100%;height:20px;position:absolute;top:0px;cursor:move}.pdf-preview .pdf-controller .contr-body .contr-button{width:48px;height:28px;background-color:#343434;background:-moz-linear-gradient(top, #343434, #242424);background:-webkit-linear-gradient(top, #343434, #242424);background:-o-linear-gradient(top, #343434, #242424);background:-ms-linear-gradient(top, #343434, #242424);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #343434, #242424, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #343434, #242424);border:2px solid #191919;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px;-webkit-box-shadow:0 1px 0 #666 inset;-moz-box-shadow:0 1px 0 #666 inset;box-shadow:0 1px 0 #666 inset;display:inline-block;cursor:pointer}.pdf-preview .pdf-controller .contr-body .contr-button:hover{background-color:#242424;background:-moz-linear-gradient(top, #242424, #242424);background:-webkit-linear-gradient(top, #242424, #242424);background:-o-linear-gradient(top, #242424, #242424);background:-ms-linear-gradient(top, #242424, #242424);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #242424, #242424, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #242424, #242424);-webkit-box-shadow:0 1px 0 #333 inset;-moz-box-shadow:0 1px 0 #333 inset;box-shadow:0 1px 0 #333 inset}.pdf-preview .pdf-controller .contr-body .contr-button:active,.pdf-preview .pdf-controller .contr-body .contr-button.active{-webkit-box-shadow:1px 2px 3px rgba(0,0,0,0.2) inset;-moz-box-shadow:1px 2px 3px rgba(0,0,0,0.2) inset;box-shadow:1px 2px 3px rgba(0,0,0,0.2) inset;background-color:#242424;background:-moz-linear-gradient(top, #242424, #242424);background:-webkit-linear-gradient(top, #242424, #242424);background:-o-linear-gradient(top, #242424, #242424);background:-ms-linear-gradient(top, #242424, #242424);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #242424, #242424, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #242424, #242424)}.pdf-preview .pdf-controller .contr-body .contr-button:active.disabled,.pdf-preview .pdf-controller .contr-body .contr-button.active.disabled{box-shadow:none}.pdf-preview .pdf-controller .contr-body .contr-button .icon-prev{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -32px -144px transparent}.pdf-preview .pdf-controller .contr-body .contr-button .icon-next{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -32px -160px transparent}.pdf-preview .pdf-controller .contr-body .contr-field{width:48px;height:28px;background-color:#ffffff;border:2px solid #191919;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px;display:inline-block;-webkit-box-shadow:1px 2px 3px rgba(0,0,0,0.7) inset;-moz-box-shadow:1px 2px 3px rgba(0,0,0,0.7) inset;box-shadow:1px 2px 3px rgba(0,0,0,0.7) inset;position:relative}.pdf-preview .pdf-controller .contr-body .contr-field .pages{margin-top:8px}.pdf-preview .pdf-controller .contr-body .contr-field .page-num{text-align:right;border:none;position:absolute;top:8px;left:3px;width:20px;color:#333}.pdf-preview .pdf-controller .contr-body .contr-field .page-num:after{content:"/ yu";position:absolute;top:0px;right:0px}.pdf-preview .pdf-controller .contr-body .contr-field .page-count{position:absolute;top:9px;left:23px}.pdf-preview .pdf-controller .contr-body .contr-field .page-count:before{content:"/"}.pdf-preview .pdf-zoom-controller{width:204px;height:54px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;border:1px solid #ccc;position:absolute;top:400px;right:200px}.pdf-preview .pdf-zoom-controller .contr-body{background-color:#303030;height:50px;margin:2px;width:200px}.pdf-preview .pdf-zoom-controller .contr-body .zoom-handler{width:100%;height:20px;position:absolute;top:0px;cursor:move}.pdf-preview .pdf-zoom-controller .contr-body .zoom-value{position:absolute;top:12px;left:100px;color:#ffffff}.pdf-preview .pdf-zoom-controller .contr-body .dijitSlider{left:14px;position:absolute;top:28px}.pdf-preview .pdf-zoom-controller .contr-body .dijitSlider .dijit_a11y DIV.dijitSliderImageHandle,.pdf-preview .pdf-zoom-controller .contr-body .dijitSlider .dijitSliderImageHandle{border:6px solid #ffffff;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 0 2px #fff;-moz-box-shadow:0 0 2px #fff;box-shadow:0 0 2px #fff;margin-top:1px}.pdf-preview .pdf-zoom-controller .contr-body .dijitSlider .dijitSliderProgressBar,.pdf-preview .pdf-zoom-controller .contr-body .dijitSlider .dijitSliderBottomBumper,.pdf-preview .pdf-zoom-controller .contr-body .dijitSlider .dijitSliderLeftBumper{background:none !important}.pdf-preview .pdf-zoom-controller .contr-body .dijitSlider .dijitSliderBar{border-color:#cecece}.pdf-preview .pdf-zoom-controller .contr-body .dijitSlider .dijitSliderDecrementIconH{display:inline-block;height:16px;width:16px;line-height:16px;margin-right:-3px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -32px -176px transparent}.pdf-preview .pdf-zoom-controller .contr-body .dijitSlider .dijitSliderIncrementIconH{display:inline-block;height:16px;width:16px;line-height:16px;margin-left:-3px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -32px -192px transparent}.pdf-preview .pages-shower{border:1px solid #ccc;height:100%;width:200px;left:0px;overflow-y:auto;position:absolute;text-align:text-center}.pdf-preview .pages-shower .pdf-file-preview{position:relative;display:inline-block;cursor:pointer;width:160px}.pdf-preview .pages-shower .pdf-file-preview .file-counter{width:30px;text-align:text-center;height:150px;float:right}.pdf-preview .pages-shower .pdf-file-preview .file-counter .counter{display:inline-block;margin-top:70px}.pdf-preview .pages-shower .pdf-file-preview .preview-container{text-align:text-center;width:130px;float:right}.pdf-preview .pages-shower .pdf-file-preview .preview-container canvas{display:inline-block;max-height:160px;max-width:130px;-webkit-box-shadow:0 0 0 1px #ccc;-moz-box-shadow:0 0 0 1px #ccc;box-shadow:0 0 0 1px #ccc}.pdf-preview .pages-shower .pdf-file-preview.horizontal .preview-container{text-align:text-center;width:160px;margin-left:0px;clear:right}.pdf-preview .pages-shower .pdf-file-preview.horizontal .preview-container canvas{max-height:130px;max-width:160px}.pdf-preview .pages-shower .pdf-file-preview.horizontal .file-counter{width:160px;text-align:center;height:20px;clear:right}.pdf-preview .pages-shower .pdf-file-preview.horizontal .file-counter .counter{display:inline-block;margin-top:10px}.pdf-preview .pages-shower .pdf-file-preview.selected .preview-container canvas{-webkit-box-shadow:0 0 1px 2px #0082dc;-moz-box-shadow:0 0 1px 2px #0082dc;box-shadow:0 0 1px 2px #0082dc;-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px}.pdf-preview .pages-shower .pdf-file-preview:last-child{margin-bottom:20px}.pdf-preview .page-viewer{height:850px;position:relative;text-align:center}.pdf-preview .page-viewer .page-block{height:100%;min-width:400px;display:inline-block;-webkit-box-shadow:0 0 3px #999;-moz-box-shadow:0 0 3px #999;box-shadow:0 0 3px #999}.pdf-preview .page-viewer .navigation-block{background-color:#303030;position:absolute;width:80px;min-height:250px;top:0px;right:100px}.bgPreview{width:31px;height:30px;cursor:pointer;background-color:#d94a38;box-shadow:0 1px 3px 3px rgba(0,0,0,0.1) inset;border-radius:3px}.fontsm{font-size:14px}.uploadFilePreview{background-image:url("/5.16.2.5993/frontend/images/transparent_background.gif")}.uploadFilePreview.logoPreviewBig{width:121px;height:100px}.uploadFilePreview .imageHolder{width:100%;height:100%;background-repeat:no-repeat;background-size:contain}.uploadFilePreview .imageHolder.repeat{background-repeat:repeat}.uploadFilePreview .imageHolder.cover{background-size:cover}.backgroundPreview{height:170px;width:360px}.backgroundPreview .imageHolder{height:100%;width:100%}.loginPageAdmin .backgroundPositionSelector .option{padding:8px;border:3px solid rgba(0,0,0,0)}.loginPageAdmin .backgroundPositionSelector .option.selected{border-color:#0082dc}.loginPageAdmin .backgroundPositionSelector .icon{background:url('/5.16.2.5993/frontend/images/admin-logo-position.gif') no-repeat 0 0;width:110px;height:84px}.loginPageAdmin .backgroundPositionSelector .full .icon{background-position:-110px}.loginPageAdmin .backgroundPreview .imageHolder{background-position:0% 0%}.loginPageAdmin .backgroundPreview .imageHolder.center{background-position:50% 0%}.headerLogo{max-height:60px}.list-none{list-style:none}.dojoDndAvatarHeader TD span{display:none}.roles-list .role-item{vertical-align:middle;margin-bottom:30px;font-weight:bold;font-size:14px}.roles-list .role-item .first-letter{display:inline-block;width:60px;height:60px;text-align:center;vertical-align:middle;font-size:26px;line-height:60px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.roles-list .role-item.selected{background-color:#d8e8fc}.roles-list .role-item .first-letter,.roles-list .color{color:white}.roles-list .role-item .first-letter.red,.roles-list .color.red{background-color:#f32837}.roles-list .role-item .first-letter.dark-red,.roles-list .color.dark-red{background-color:#9a1e08}.roles-list .role-item .first-letter.orange,.roles-list .color.orange{background-color:#d94a38}.roles-list .role-item .first-letter.brown,.roles-list .color.brown{background-color:#6e0602}.roles-list .role-item .first-letter.yellow,.roles-list .color.yellow{background-color:#eaea00}.roles-list .role-item .first-letter.green,.roles-list .color.green{background-color:#4f9735}.roles-list .role-item .first-letter.ice-green,.roles-list .color.ice-green{background-color:#4da133}.roles-list .role-item .first-letter.cold-green,.roles-list .color.cold-green{background-color:#6cba4a}.roles-list .role-item .first-letter.blue,.roles-list .color.blue{background-color:#0082dc}.roles-list .role-item .first-letter.light-blue,.roles-list .color.light-blue{background-color:#00ade3}.roles-list .role-item .first-letter.grey,.roles-list .color.grey{background-color:#999}.roles-list .role-item .first-letter.black,.roles-list .color.black{background-color:#000}.roles-list .role-label{display:inline-block;padding:5px;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px}.dijitValidationTextBox .dijitButtonContents{vertical-align:middle}.dijitSelect .dijitButtonContents{border-width:0px}.dijitTooltipDialog{width:310px !important;overflow:visible !important}table.managecategory{text-align:left}table.managecategory tr{border-bottom:1px solid #ccc}table.managecategory td{padding:10px}table.managecategory th{padding:10px 0 20px 0}table.managecategory .category-name{width:1px;overflow:visible;vertical-align:top;text-align:left}table.managecategory .category-name>div{display:block;width:130px}table.managecategory .category-roles-list .category-role{width:100px}.cell-blue{background:#0088de}.cell-blue.bl{-webkit-border-top-left-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-topleft:4px;-moz-border-radius-bottomleft:4px;border-top-left-radius:4px;border-bottom-left-radius:4px}.cell-blue.br{-webkit-border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;-moz-border-radius-topright:4px;-moz-border-radius-bottomright:4px;border-top-right-radius:4px;border-bottom-right-radius:4px}.cell-gray{background:#e1e1e1}.cell-gray.bl{-webkit-border-top-left-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-topleft:4px;-moz-border-radius-bottomleft:4px;border-top-left-radius:4px;border-bottom-left-radius:4px}.cell-gray.br{-webkit-border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;-moz-border-radius-topright:4px;-moz-border-radius-bottomright:4px;border-top-right-radius:4px;border-bottom-right-radius:4px}.txtShad{text-shadow:0 1px #FFFFFF}.border-right-color{border-right:1px solid #9a9a9a}.inputAssign{width:180px;height:32px}.transShadow{box-shadow:-1px 0 0 0 #cecece inset,0 0 0 0 #f9f9f9 inset}.dark_button{background-color:#4d4d4e;border:1px solid #414141;border-radius:2px;color:#fff;display:inline-block;padding:3px 5px 3px 5px}.darknone{background-color:#e4e4e4;border:1px solid #d3d3d3;color:#000;padding:4px 5px 4px 5px}.only-bold{font-weight:bold !important}.scroll-container{overflow-x:hidden;overflow-y:auto;height:300px}.row-bottom{border-bottom:1px solid #CCCCCC;background:-moz-linear-gradient(center top, #fff, #f6f6f6) repeat scroll 0 0 transparent;min-height:50px}.row-bottom.smheight{min-height:40px !important}.row-bottom.selected{background:#d8e8fc}.row-top{border-top:1px solid #CCCCCC}.row-left{border-left:4px solid #79a77b}.message-box-inline .message-wrapper{margin-bottom:10px;position:absolute}.message-box-inline .message{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:10px;min-width:300px;min-height:0;width:100%;background-color:#f5d6cc;border-width:1px;border-style:solid}.message-box-inline .message.error{background-color:rgba(245,214,204,0.7);border-color:#f5d6cc}.message-box-inline .message.warning{background-color:rgba(78,161,51,0.7);border-color:#4ea133}.message-box-inline .message.exclamation{background-color:rgba(255,246,106,0.7);border-color:#f5ec60}.message-box-inline .icon-close:hover{cursor:pointer}.preview_buttons{opacity:0.5;background-color:#fff;width:100%;height:35px;margin-top:-30px}.preview_buttons_controls{margin-top:-30px;position:absolute;z-index:11;right:25px}.blue-bord{border-left:3px solid #0083e0}.borderRadius4{-webkit-border-top-left-radius:4px !important;-webkit-border-top-right-radius:4px !important;-moz-border-radius-topleft:4px !important;-moz-border-radius-topright:4px !important;border-top-left-radius:4px !important;border-top-right-radius:4px !important}.borderShadow{box-shadow:1px 0 0 0 #CECECE inset, 2px 0 0 0 #F9F9F9 inset !important}.order-status{font-size:13px;color:#fff;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;-webkit-box-shadow:0 0 1px #000 inset;-moz-box-shadow:0 0 1px #000 inset;box-shadow:0 0 1px #000 inset;width:90px;padding:3px 0;text-align:center}.order-status.hold{background:#d6d6d6;color:#000}.order-status.sentemail{background:#054476}.order-status.er{background:#ff4000}.order-status.sent{background:#3b6b91}.order-status.tr{background:#e1b803}.order-status.production{background:#439fe7}.order-status.returned{background:#98cabd}.order-status.quared{background:#902956}.order-status.canceled{background:#9b302a}.order-status.assigned{background:#435762}.order-status.assignedqp{background:#524758}.copy-available{font-size:11px;color:#fff;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;width:90px;text-align:center;padding:2px;background:#2a8d0f}.dropDownEdit.dijitSelect .dijitButtonContents{border:none;background-color:#f6f6f6;background:-moz-linear-gradient(top, #f6f6f6, #e0e0e0);background:-webkit-linear-gradient(top, #f6f6f6, #e0e0e0);background:-o-linear-gradient(top, #f6f6f6, #e0e0e0);background:-ms-linear-gradient(top, #f6f6f6, #e0e0e0);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #f6f6f6, #e0e0e0, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #f6f6f6, #e0e0e0);-webkit-box-shadow:-1px 0 #fff inset;-moz-box-shadow:-1px 0 #fff inset;box-shadow:-1px 0 #fff inset}.dropDownEdit.dijitSelect .dijitSelectLabel{padding:0 10px}.dropDownEdit.dijitSelect .dijitArrowButton{width:26px}.dropDownEdit.dijitSelect .dijitArrowButton .dijitArrowButtonInner{margin:6px 0 7px 5px}.dropDownEdit.dijitSelect.dijitSelectFocused{border:1px solid #ccc}.dropDownEdit.dijitSelect:hover .dijitButtonContents{background-color:#e2e2e2;background:-moz-linear-gradient(top, #e2e2e2, #e2e2e2);background:-webkit-linear-gradient(top, #e2e2e2, #e2e2e2);background:-o-linear-gradient(top, #e2e2e2, #e2e2e2);background:-ms-linear-gradient(top, #e2e2e2, #e2e2e2);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #e2e2e2, #e2e2e2, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #e2e2e2, #e2e2e2)}.dropDownEdit.dijitSelect:hover .dijitArrowButton{background-color:#e2e2e2;background:-moz-linear-gradient(top, #e2e2e2, #e2e2e2);background:-webkit-linear-gradient(top, #e2e2e2, #e2e2e2);background:-o-linear-gradient(top, #e2e2e2, #e2e2e2);background:-ms-linear-gradient(top, #e2e2e2, #e2e2e2);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #e2e2e2, #e2e2e2, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #e2e2e2, #e2e2e2)}.dijitTooltip .dijitTooltipContainer{border:0;background:#fff;padding-left:5px;color:#333}.dijitTooltipDialogPopup .dijitTooltipContents.dijitTooltipFocusNode{padding:4px}.dijitTooltipDialogPopup .dijitTooltipContainer{border:1px solid #ccc;background:#fff}.dijitTooltipDialogPopup .dijitTooltipContainer .dijitTooltipContents TD{padding:0 10px 10px 0}.dijitTooltipDialogPopup .dijitTooltipContainer .dijitTooltipContents TD .dijitSelect{margin:0}.dijitTooltipDialogPopup .dijitTooltipContainer .dijitTooltipContents TD .dijitSelect .dijitButtonContents{border:0}.dijitTooltipDialogPopup .dijitTooltipContainer .dijitTooltipContents TD.dijitReset{padding:0}.dijitTooltipDialogPopup .dijitButton .dijitButtonNode{background-color:#f6f6f6;background:-moz-linear-gradient(top, #f6f6f6, #e0e0e0);background:-webkit-linear-gradient(top, #f6f6f6, #e0e0e0);background:-o-linear-gradient(top, #f6f6f6, #e0e0e0);background:-ms-linear-gradient(top, #f6f6f6, #e0e0e0);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #f6f6f6, #e0e0e0, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #f6f6f6, #e0e0e0);border:1px solid #cdcdcd;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;min-width:60px;padding:3px 0}.dijitCalendarIncrementControl{display:inline !important}.dijitCalendarMonthMenu .dijitCalendarMonthLabel:hover{background:#ececec}.scrollableHorizontal{overflow-x:auto !important;overflow-y:hidden}.smwdt{width:100px}.hilite{background:#b2b2b2;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px;color:#fff}.fileinputPdf{-moz-box-sizing:content-box;display:inline-block;height:auto;line-height:28px;height:28px;padding:0 10px;color:#333;text-decoration:none;text-align:left;font-size:13px;background-color:#f6f6f6;background:-moz-linear-gradient(top, #f6f6f6, #e0e0e0);background:-webkit-linear-gradient(top, #f6f6f6, #e0e0e0);background:-o-linear-gradient(top, #f6f6f6, #e0e0e0);background:-ms-linear-gradient(top, #f6f6f6, #e0e0e0);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #f6f6f6, #e0e0e0, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #f6f6f6, #e0e0e0);border:1px solid #cdcdcd;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;outline:none;overflow:hidden;cursor:pointer;white-space:nowrap}.fileinputPdf .file_browse{width:60px;position:absolute;z-index:10;margin-left:-58px;opacity:0.0;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";cursor:pointer}.fileinputPdf.secondary{color:white;background-color:#00aae9;background:-moz-linear-gradient(top, #00aae9, #007dd9);background:-webkit-linear-gradient(top, #00aae9, #007dd9);background:-o-linear-gradient(top, #00aae9, #007dd9);background:-ms-linear-gradient(top, #00aae9, #007dd9);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #00aae9, #007dd9, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #00aae9, #007dd9);border-color:#096bce;cursor:pointer}.fileinputPdf.secondary.red{background-color:#ff3019 !important;background:-moz-linear-gradient(top, #ff3019, #cf0404) !important;background:-webkit-linear-gradient(top, #ff3019, #cf0404) !important;background:-o-linear-gradient(top, #ff3019, #cf0404) !important;background:-ms-linear-gradient(top, #ff3019, #cf0404) !important;-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #ff3019, #cf0404, '"') !important;filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #ff3019, #cf0404) !important;border-color:#ff3019 !important}.variableTable .minmax,.variableTable .ui_select{min-width:220px;max-width:300px}.variableTable SELECT{min-width:220px;max-width:300px}.variableTable .variableWidth{min-width:80px;max-width:120px}.variableTable .dijitInputContainer.green-label{border-bottom:2px solid #679968;padding-bottom:6px}.variableTable .green-label{border-bottom:2px solid #679968;padding-bottom:6px}.variableTable .error{border:1px solid #ff0000;padding-bottom:6px}.slide_control{cursor:pointer;margin:0 auto;text-align:center;width:42px;height:18px;border:1px solid #ccc;border-top:0;background:#eee}.slide_control .hide_icon{display:block;background:url("/5.16.2.5993/frontend/images/icons16x16.png") 0 -1536px no-repeat}.abbFromProjButton{position:absolute;z-index:20;margin-left:95px}.countiesSelector .dijitButtonText{width:250px;overflow:hidden;text-overflow:ellipsis}.movable{cursor:move}.clickable{cursor:pointer}.fieldsList{display:block}.fieldsList .button{min-width:60px;margin-right:40px;padding-left:12px;padding-right:45px;position:relative}.fieldsList .button .button-icon{position:absolute;right:10px;top:5px}.fieldsList .button:last-child{margin-right:0px}.setupForm{display:none}.editMode .fieldsList{display:none}.editMode .setupForm{display:block}.preview-form .schemaDataField,.projects_action_form_popup .schemaDataField,.preview-form .dojoDndItem,.projects_action_form_popup .dojoDndItem,.preview-form.dojoDndItem,.projects_action_form_popup.dojoDndItem{cursor:pointer;position:relative}.preview-form .schemaDataField .icon-remove-field,.projects_action_form_popup .schemaDataField .icon-remove-field,.preview-form .dojoDndItem .icon-remove-field,.projects_action_form_popup .dojoDndItem .icon-remove-field,.preview-form.dojoDndItem .icon-remove-field,.projects_action_form_popup.dojoDndItem .icon-remove-field{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -544px transparent;display:inline-block;height:16px;width:16px;line-height:16px;position:absolute;right:-5px;top:-6px;display:none;cursor:pointer}.preview-form .schemaDataField.selected,.projects_action_form_popup .schemaDataField.selected,.preview-form .dojoDndItem.selected,.projects_action_form_popup .dojoDndItem.selected,.preview-form.dojoDndItem.selected,.projects_action_form_popup.dojoDndItem.selected{background-color:#d8e8fc}.preview-form .schemaDataField.selected .icon-remove-field,.projects_action_form_popup .schemaDataField.selected .icon-remove-field,.preview-form .dojoDndItem.selected .icon-remove-field,.projects_action_form_popup .dojoDndItem.selected .icon-remove-field,.preview-form.dojoDndItem.selected .icon-remove-field,.projects_action_form_popup.dojoDndItem.selected .icon-remove-field{display:block}.preview-form .size1of2 .schemaDataField .schema_field,.projects_action_form_popup .size1of2 .schemaDataField .schema_field{padding-right:10px}.preview-form .size1of2.schemaDataField .schema_field,.projects_action_form_popup .size1of2.schemaDataField .schema_field{padding-right:10px}.preview-form .dojoDndItem,.projects_action_form_popup .dojoDndItem{padding:0px}.preview-form .none-display,.projects_action_form_popup .none-display{display:none;filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=0.7, enabled=1)";opacity:.7}.preview-form .none-display input,.projects_action_form_popup .none-display input{background-color:#eee !important}.preview-form .add-usage-rights,.projects_action_form_popup .add-usage-rights{padding-left:0;width:calc(100% - 20px)}.preview-form .add-usage-rights .usage-right-item-title,.projects_action_form_popup .add-usage-rights .usage-right-item-title,.preview-form .add-usage-rights .usage-item,.projects_action_form_popup .add-usage-rights .usage-item{padding-left:0px}.catStructure{height:41px;color:#333;text-decoration:none;text-align:left;font-size:13px;background-color:#f6f6f6;background:-moz-linear-gradient(top, #f6f6f6, #e0e0e0);background:-webkit-linear-gradient(top, #f6f6f6, #e0e0e0);background:-o-linear-gradient(top, #f6f6f6, #e0e0e0);background:-ms-linear-gradient(top, #f6f6f6, #e0e0e0);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #f6f6f6, #e0e0e0, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #f6f6f6, #e0e0e0);border:1px solid #cdcdcd;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;outline:none}.catStructure .fieldItem{line-height:41px;min-width:60px;cursor:pointer;text-align:center;padding:0px 5px 0 30px;position:relative}.catStructure .fieldItem:hover,.catStructure .fieldItem.selected{background-color:#d8e8fc;background:-moz-linear-gradient(top, #d8e8fc, #d8e8fc);background:-webkit-linear-gradient(top, #d8e8fc, #d8e8fc);background:-o-linear-gradient(top, #d8e8fc, #d8e8fc);background:-ms-linear-gradient(top, #d8e8fc, #d8e8fc);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #d8e8fc, #d8e8fc, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #d8e8fc, #d8e8fc)}.catStructure .fieldItem:hover .arrow-element:after,.catStructure .fieldItem.selected .arrow-element:after{background-color:#d8e8fc;background:-moz-linear-gradient(top, #d8e8fc, #d8e8fc);background:-webkit-linear-gradient(top, #d8e8fc, #d8e8fc);background:-o-linear-gradient(top, #d8e8fc, #d8e8fc);background:-ms-linear-gradient(top, #d8e8fc, #d8e8fc);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #d8e8fc, #d8e8fc, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #d8e8fc, #d8e8fc)}.catStructure .fieldItem:hover:first-child .arrow-element-first:after,.catStructure .fieldItem.selected:first-child .arrow-element-first:after{background-color:#d8e8fc;background:-moz-linear-gradient(top, #d8e8fc, #d8e8fc);background:-webkit-linear-gradient(top, #d8e8fc, #d8e8fc);background:-o-linear-gradient(top, #d8e8fc, #d8e8fc);background:-ms-linear-gradient(top, #d8e8fc, #d8e8fc);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #d8e8fc, #d8e8fc, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #d8e8fc, #d8e8fc);border:none;-webkit-box-shadow:0px 0px 0px #FFFFFF ;-moz-box-shadow:0px 0px 0px #FFFFFF ;box-shadow:0px 0px 0px #FFFFFF }.catStructure .fieldItem .inner{max-width:60px;min-width:60px;height:40px}.catStructure .fieldItem .arrow-element{height:40px;overflow:hidden;position:absolute;right:-40px;top:0;width:40px}.catStructure .fieldItem .arrow-element:after{content:"";height:40px;left:-28px;position:absolute;z-index:1;transform:rotate(45deg);-ms-transform:rotate(45deg);-moz-transform:rotate(45deg);-webkit-transform:rotate(45deg);-o-transform:rotate(45deg);width:40px;border:1px solid #cdcdcd;-webkit-box-shadow:-1px 1px 0px #FFFFFF inset;-moz-box-shadow:-1px 1px 0px #FFFFFF inset;box-shadow:-1px 1px 0px #FFFFFF inset;background-color:#f6f6f6;background:-moz-linear-gradient(left top, #f6f6f6, #e0e0e0);background:-webkit-linear-gradient(left top, #f6f6f6, #e0e0e0);background:-o-linear-gradient(left top, #f6f6f6, #e0e0e0);background:-ms-linear-gradient(left top, #f6f6f6, #e0e0e0);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #f6f6f6, #e0e0e0, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(left top, #f6f6f6, #e0e0e0)}.catStructure .fieldItem .arrow-element-first{height:40px;overflow:hidden;position:absolute;left:0px;top:0;width:40px}.catStructure .fieldItem .arrow-element-first:after{content:"";height:40px;left:-28px;position:absolute;transform:rotate(45deg);-ms-transform:rotate(45deg);-moz-transform:rotate(45deg);-webkit-transform:rotate(45deg);-o-transform:rotate(45deg);width:40px;background-color:'left top';background:-moz-linear-gradient(#e0e0e0, 'left top', #f6f6f6);background:-webkit-linear-gradient(#e0e0e0, 'left top', #f6f6f6);background:-o-linear-gradient(#e0e0e0, 'left top', #f6f6f6);background:-ms-linear-gradient(#e0e0e0, 'left top', #f6f6f6);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, 'left top', #f6f6f6, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(#e0e0e0, 'left top', #f6f6f6)}.catStructure .fieldItem .edit-tip{height:30px;line-height:30px;background-color:rgba(0,0,0,0.7);display:none;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;position:absolute;color:#ffffff;top:-30px;right:10px;-webkit-box-shadow:1px 1px 2px 0 rgba(0,0,0,0.7);-moz-box-shadow:1px 1px 2px 0 rgba(0,0,0,0.7);box-shadow:1px 1px 2px 0 rgba(0,0,0,0.7);z-index:10}.catStructure .fieldItem .edit-tip:after{position:absolute;content:'';width:1px;background-color:rgba(255,255,255,0.7);left:50%;height:80%;top:10%}.catStructure .fieldItem .edit-tip .vmiddle{display:table-cell;vertical-align:middle;height:30px}.catStructure .fieldItem .edit-tip.no-separate-line:after{display:none}.catStructure .fieldItem .edit-tip div{display:table-cell;vertical-align:middle}.catStructure.last-child .fieldItem:hover:last-child .edit-tip{display:table}.insertion-counter{display:inline-block;min-width:16px;text-align:center;line-height:16px;height:16px;font-size:11px;font-weight:bold;color:white;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;background-color:#0082dc;padding:2px 10px 1px}.insertion-counter.grey-counter{background-color:#939598;cursor:text}.commonMultiSelect{height:auto !important}.commonMultiSelect .dijitInputContainer{padding-left:0}.commonMultiSelect .commonMultiSelectChoices>li{float:left;list-style:none}.commonMultiSelect .commonMultiSelectChoices .commonMultiSelectField{padding:4px 6px}.commonMultiSelect .commonMultiSelectChoices .commonMultiSelectSearchChoice{font-size:12px;padding:5px 6px 4px 8px;margin:0px 0 4px 9px;position:relative;line-height:13px;color:#fffdf8;cursor:default;background-color:#0080e1}.commonMultiSelect .commonMultiSelectChoices .commonMultiSelectSearchChoice .commonMultiSelectChoiceClose{float:right;margin:1px 0 0 4px;padding:0 2px;cursor:pointer;color:#5491be;font-family:'Source Sans Pro',sans-serif;font-size:14px;font-weight:bold;text-shadow:0 1px 1px #fff;-webkit-transition:color .1s ease-in}.schema-field .phoneType{display:block;background-color:#eee}.formatTextBox input{width:auto}.grey-background{background-color:#f0f0f0}.viewShema .column .text-center{text-align:left}.viewShema .column .pam{padding:0}.no-mar-padd{margin:0px;padding:0px}.phoneField.USA .input1{width:60px}.phoneField.USA .span1{width:15px;display:inline-block;text-align:center}.phoneField.USA .input2{width:60px}.phoneField.USA .span2{width:15px;display:inline-block;text-align:center}.phoneField.USA .input3{width:60px}.phoneField.Europe .input1{width:60px;margin-right:20px}.phoneField.Europe .input2{width:130px}.phoneField.Universal .input1{width:210px}.swf-preview{background-color:white}hr.nomargin{margin:0px}.iconUploader{position:relative}.iconUploader .loader{position:absolute;left:-1px;height:48px;background:url('/5.16.2.5993/frontend/images/spinner.gif') center center no-repeat #fff}.iconUploader .loader.schemaField{width:90px;top:-1px}.iconUploader .loader.usageRights{width:150px;top:-15px}.files_message_bar{position:fixed;visibility:hidden;opacity:0;border-radius:0 0 5px 5px;background-color:#4ea133;padding:8px;z-index:1000;transition:visibility 0s linear 0.5s, opacity 0.5s linear}.files_message_bar .icon-close{cursor:pointer;vertical-align:top}.files_message_bar .refresh-link{color:#fff;cursor:pointer}.files_message_bar .refresh-link:hover{text-decoration:underline}.trunc-text{overflow:hidden;text-overflow:clip}.trunc-text.assetName{margin-top:-50px;color:white;padding:0 3px 0 2px;position:relative}.gaTableList{width:550px}.mapping-page .field{-moz-transition:height .25s ease-in-out;-webkit-transition:height .25s ease-in-out;-ms-transition:height .25s ease-in-out;-o-transition:height .25s ease-in-out;transition:height .25s ease-in-out;height:28px}.mapping-page .field.selected{height:0;overflow:hidden;margin-bottom:0}.mapping-page .button{position:relative;line-height:normal;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mapping-page .button.active{border:2px solid #0082dc}.mapping-page .button.active .right-icon{top:4px;right:4px}.mapping-page .mapping-item{font-size:16px;margin-bottom:10px}.iePdfConteiner{position:absolute;top:0px}.noAttachedFilesBlock{border:1px solid #ccc;width:520px;height:90px;margin:70px auto;padding-top:25px}.noAttachedFilesBlock .clipBlock{margin-left:50px}.raw-format{white-space:pre-wrap}.link-to-existing{width:800px}.navApprovalButton{border:1px solid #b5b5b5;width:31px;height:31px;background-color:#d7d7d7;cursor:pointer}.navApprovalButton:hover{background-color:#626262}.navApprovalButton .next{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -2062px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.navApprovalButton .prev{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -2079px transparent;display:inline-block;height:16px;width:16px;line-height:16px}.maxWidth400px{max-width:400px}.minHeight400px{min-height:400px}.maxWidth150px{max-width:150px}.fileListPreview img{max-height:50px;max-width:50px;margin:0px auto}.boxShadowRightBorder{box-shadow:-1px 0 #ccc inset}.uppercase{text-transform:uppercase}.asset .b-orders-list .summary .fixed-toggler,.library .b-orders-list .summary .fixed-toggler{display:none}.asset .b-orders-list .clockHeader .itemsList .headers,.library .b-orders-list .clockHeader .itemsList .headers{background:transparent}.asset .b-orders-list .itemsList .headers,.library .b-orders-list .itemsList .headers{padding:0;font-weight:bold;min-height:25px;max-height:25px}.asset .b-orders-list .itemsList .headers.fixed-top,.library .b-orders-list .itemsList .headers.fixed-top{padding-left:60px !important}.asset .b-orders-list .itemsList .headers .cell,.library .b-orders-list .itemsList .headers .cell{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.asset .b-orders-list .itemsList .headers .vmiddle,.library .b-orders-list .itemsList .headers .vmiddle{display:block;height:25px;line-height:25px;overflow:hidden;text-overflow:ellipsis}.asset .b-orders-list .itemsList .row,.library .b-orders-list .itemsList .row{background-color:#d8e9fd;border-bottom:1px solid #d5d5d6;-webkit-box-shadow:0 0 1px #e5e5e5;-moz-box-shadow:0 0 1px #e5e5e5;box-shadow:0 0 1px #e5e5e5;min-height:35px;max-height:35px}.asset .b-orders-list .itemsList .row .vmiddle,.library .b-orders-list .itemsList .row .vmiddle{height:35px}.asset .b-orders-list .itemsList .row .date-reminded,.library .b-orders-list .itemsList .row .date-reminded{background-color:#ffcc00}.asset .b-orders-list .itemsList .row.selected,.library .b-orders-list .itemsList .row.selected{background-color:#bedffe !important}.asset .b-orders-list .itemsList .row .approved,.library .b-orders-list .itemsList .row .approved{color:#4f9735}.asset .b-orders-list .itemsList .row .onhold,.library .b-orders-list .itemsList .row .onhold{color:#f32837;background:#ffcccc;display:inline-block;padding:2px 5px;border:1px solid #9a1e08}.asset .b-orders-list .itemsList .row .onhold.disabled,.library .b-orders-list .itemsList .row .onhold.disabled{background:#eee;color:#ccc;border:1px solid #ddd}.asset .b-orders-list.admin .itemsList .row,.library .b-orders-list.admin .itemsList .row{min-height:60px;max-height:60px}.asset .b-orders-list .itemsList .group-container,.library .b-orders-list .itemsList .group-container{min-height:35px}.asset .b-orders-list .itemsList .group-container.expanded,.library .b-orders-list .itemsList .group-container.expanded{border:none}.asset .b-orders-list .itemsList .group-container .expander,.library .b-orders-list .itemsList .group-container .expander{left:15px;top:10px}.asset .b-orders-list .itemsList .group-container .expander.leftex,.library .b-orders-list .itemsList .group-container .expander.leftex{left:20px}.asset .b-orders-list .b-clocks-header,.library .b-orders-list .b-clocks-header{background-color:#dddddd}.asset .b-orders-list .b-clocks-header .pl35,.library .b-orders-list .b-clocks-header .pl35{padding-left:35px}.asset .b-orders-list .b-clocks-list .row,.library .b-orders-list .b-clocks-list .row{background-color:#f0f0f2}.asset .b-orders-list .b-clocks-list .row.selected,.library .b-orders-list .b-clocks-list .row.selected{background-color:#f5d9f4 !important;border-bottom:1px solid #ffacfa}.asset .b-orders-list.trunc-titles .itemsList .row .crop-list .vmiddle,.library .b-orders-list.trunc-titles .itemsList .row .crop-list .vmiddle{height:35px;display:table-cell;vertical-align:middle;white-space:normal;padding-top:0px;min-width:50px}.asset .b-orders-list.trunc-titles .itemsList .row .crop-list .lightgrey,.library .b-orders-list.trunc-titles .itemsList .row .crop-list .lightgrey{color:#bebebe}.asset .b-orders-list.trunc-titles .itemsList .row .vmiddle,.library .b-orders-list.trunc-titles .itemsList .row .vmiddle{height:25px;display:block;min-width:120px;padding-top:10px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vmiddle{display:table-cell;vertical-align:middle}.dest-trunc-text{width:150px}.folderColumns{overflow-x:auto;width:100%;white-space:nowrap}.multiSelected .columnFileList:nth-last-child(2) .fileItem.selected{background-color:#e6eef2}.clearFilters{cursor:pointer;height:18px;position:absolute;top:-19px}.clearFilters .deleteIcon{width:11px;height:11px;margin-top:-1px;filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=0.8, enabled=1)";opacity:.8}.clearFilters:hover{font-weight:bold}.clearFilters:hover .deleteIcon{filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=1, enabled=1)";opacity:1}.resizeControl{width:6px;position:absolute;height:100%;cursor:e-resize;top:0px;right:0px}.columnFileList{height:650px;width:250px;scroll:auto;border-right:1px solid #ccc;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;overflow-x:hidden;overflow-y:auto;vertical-align:top;display:inline-block;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.columnFileList .fileItem{cursor:pointer;width:100%;height:35px;white-space:nowrap}.columnFileList .fileItem img{max-width:24px;max-height:24px}.columnFileList .fileItem .vmiddle{height:35px}.columnFileList .fileItem:hover{background-color:#fafae3}.columnFileList .fileItem.selected{background-color:#e6eef2}.columnFileList:nth-last-child(1) .fileItem.selected,.columnFileList:nth-last-child(2) .fileItem.selected{background-color:#d8e8fc}.columnFileList.fileItem{display:inline-block;border-right:1px solid #ccc;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;margin-left:-3px;background-color:white}.columnFileList.fileItem .previewTop{height:230px;width:100%;background-color:#eee}.columnFileList.fileItem .previewTop .imagePreview{height:160px;width:100%;display:flex;align-items:center;justify-content:center}.columnFileList.fileItem .previewTop .imagePreview img{display:inline-block}.columnFileList .resizeControl{height:650px}.fll{float:left}.flr{float:right}.activityFilter .button{min-width:0px;padding:0 4px}.actionButtons .button{min-width:0px}.actionButtons .button.active{background:#0082dc;color:white}.activityFilterLabel{width:80px}.simpleDropdown.disabled .ui-input{background-color:#f6f6f6;background:-moz-linear-gradient(top, #f6f6f6, #e0e0e0);background:-webkit-linear-gradient(top, #f6f6f6, #e0e0e0);background:-o-linear-gradient(top, #f6f6f6, #e0e0e0);background:-ms-linear-gradient(top, #f6f6f6, #e0e0e0);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #f6f6f6, #e0e0e0, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #f6f6f6, #e0e0e0)}.simpleDropdown .dropdown-button{display:inline-block;width:30px;height:28px;background-color:#f6f6f6;background:-moz-linear-gradient(top, #f6f6f6, #e0e0e0);background:-webkit-linear-gradient(top, #f6f6f6, #e0e0e0);background:-o-linear-gradient(top, #f6f6f6, #e0e0e0);background:-ms-linear-gradient(top, #f6f6f6, #e0e0e0);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #f6f6f6, #e0e0e0, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #f6f6f6, #e0e0e0);border-right:1px solid #ccc !important;border-top:1px solid #ccc !important;border-bottom:1px solid #ccc !important;vertical-align:middle;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.simpleDropdown .dropdown-button .inner{margin:6px 7px 6px 7px;height:16px;width:16px;font-size:12px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") 0 -1472px no-repeat}.simpleDropdown .ui-input{font-size:13px;background-color:white;border:1px solid #ccc;display:inline-block;padding:0 5px;height:28px;line-height:28px;vertical-align:middle;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.simpleDropdown.active .dropdown-panel{display:block}.dropdown-panel{position:fixed;z-index:1000;background-color:white;border:1px solid #ccc;overflow-y:scroll;overflow-x:hidden}.dropdown-panel .dropdown-item{vertical-align:middle;position:relative;padding:5px 10px;cursor:pointer;white-space:nowrap}.dropdown-panel .dropdown-item:hover{background-color:#d8e8fc}.dropdown-panel .dropdown-item.separator{font-weight:bold;border-top:1px solid #ccc}.dropdown-panel .dropdown-item.separator.shadow{-webkit-box-shadow:0 1px 0 0 #fff inset;-moz-box-shadow:0 1px 0 0 #fff inset;box-shadow:0 1px 0 0 #fff inset}.dropdown-panel .dropdown-item.separator:hover{background-color:transparent}.dropdown-panel .dropdown-item.active{position:absolute}.b-marketsList .required{font-weight:bold}.b-marketsList .required:after{content:" *";font-weight:bold;color:#0082dc}filesViewNavigation{margin-left:300px}.fileNavColumn{margin-top:5px;color:#999;line-height:15px;white-space:nowrap}.fileNavColumn.unit-right{text-align:left}.fileNavColumn.unit-right div{float:left;margin-right:10px}.watermarking-content .schema-group-title{display:none}.watermarking-content .b-schema-group{margin-bottom:10px}.watermarkLogoPreview{max-width:300px;max-height:150px}.watermarkPreview{border:1px solid #ccc;display:none;overflow:hidden;position:relative;background-color:white}.watermarkPreview.videoFormat{margin:50px auto;display:block;width:350px;height:263px}.watermarkPreview.printFormat{margin:20px auto;display:block;width:250px;min-height:355px}.watermarkPreview .watermarkImagePreview{max-width:40px;max-height:30px;position:absolute}.watermarkPreview .watermarkImagePreview.top-left{top:5%;left:15px}.watermarkPreview .watermarkImagePreview.top-left+.top{padding-left:60px}.watermarkPreview .watermarkImagePreview.top-right{top:5%;right:15px}.watermarkPreview .watermarkImagePreview.top-right+.top{padding-right:60px}.watermarkPreview .watermarkImagePreview.bottom-left{bottom:5%;left:15px}.watermarkPreview .watermarkImagePreview.bottom-left+.bottom{padding-left:60px}.watermarkPreview .watermarkImagePreview.bottom-right{bottom:5%;right:15px}.watermarkPreview .watermarkImagePreview.bottom-right+.bottom{padding-right:60px}.watermarkPreview .watermarkTextPreview{position:absolute;font-size:9px;margin:0px auto;text-align:center;width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.watermarkPreview .watermarkTextPreview.centre{top:45%}.watermarkPreview .watermarkTextPreview.top{top:5%}.watermarkPreview .watermarkTextPreview.bottom{bottom:5%;border-bottom:none}@media (min-width:1280px){.file-breadcamb .fileTitle{max-width:300px}}@media (max-width:1280px){.file-breadcamb .fileTitle{max-width:200px}}@media (max-width:1025px){.file-breadcamb .fileTitle{max-width:100px}}.subscribed .subscribeTitle{display:none}.subscribed .unsubscribeTitle{display:inline-block}.newLibraryInfo{z-index:1000;background-color:#D7EFD9;border:1px solid #00814A;color:#00814A;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px;position:absolute;left:50%;margin-left:-150px;top:10px;padding:12px 30px}.newLibraryInfo a{text-decoration:none}.unsubscribeTitle{display:none}.flp video::-internal-media-controls-download-button{display:none}.flp video::-webkit-media-controls-enclosure{overflow:hidden}.flp video::-webkit-media-controls-panel{width:calc(100% + 32px)}.ordering .p-content{background-color:#eee;padding:0}.ordering .app-tabs{position:absolute;top:72px;left:274px;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.ordering .app-tabs.admin{left:0;top:0;position:relative}.ordering .b-order-switcher{font-size:14px;color:white}.ordering .b-order-switcher .item{display:inline;border-right:1px solid white;padding:0 10px}.ordering .b-order-switcher .item:last-child{border-right:none}.ordering .b-order-switcher .item .item-link:link,.ordering .b-order-switcher .item .item-link:hover,.ordering .b-order-switcher .item .item-link:visited{color:white}.ordering .b-head-title{background-color:white}.ordering .b-head-title .bottomShadow{-webkit-box-shadow:0 4px 4px -2px #000;-moz-box-shadow:0 4px 4px -2px #000;box-shadow:0 4px 4px -2px #000}.ordering .b-head-title .back{top:12px;left:20px;color:#000}.ordering .main-orders-spinner .orders-freezer{width:100%;height:100%;position:fixed;top:0;left:0;z-index:100}.ordering .main-orders-spinner .orders-spinner{width:50px;height:50px;position:fixed;left:50%;top:50%;margin-top:-25px;margin-left:-25px;background:url("/5.16.2.5993/frontend/images/spinner.gif") no-repeat scroll transparent;z-index:100}.ordering .block-spinner{width:100%;height:100%;position:absolute;left:0;top:0}.ordering .block-spinner .orders-freezer{height:100%;z-index:100;opacity:0.5;background-color:white}.ordering .block-spinner .orders-spinner{width:50px;height:50px;position:absolute;left:50%;top:50%;margin-top:-25px;margin-left:-25px;background:url("/5.16.2.5993/frontend/images/spinner.gif") no-repeat scroll transparent}.ordering .jobs-selector .dijitButtonText{text-decoration:none;color:#333}.ordering .jobs-selector .dijitButtonText:hover{text-decoration:underline}.ordering .assign-list-items .selected-slicer{background-color:#f1f7ff;border-bottom:1px solid #d8e8fc;display:none}.ordering .assign-list-items .assign-data-row .code,.ordering .assign-list-items .assign-data-row .name{line-height:40px}.ordering .assign-list-items .title{display:none}.ordering .b-review-list.itemsList{border:1px solid #ccc}.ordering .b-review-list.itemsList .auto-container{border-bottom:0;max-height:255px}.ordering .b-review-list.itemsList .row{background-color:white !important;min-height:50px;max-height:50px}.ordering .b-review-list.itemsList .row .vmiddle{height:50px}.ordering .b-review-list .headers{font-weight:normal;border-top:0}.ordering .b-upload-print-dialog .fileinputPdf{position:relative;overflow:inherit}.ordering .b-upload-print-dialog .fileinputPdf .file_browse{position:absolute;top:0;left:0;width:100%;height:100%;margin-left:0}.ordering .b-upload-print-dialog .b-item .file_browse{visibility:hidden}.ordering .b-upload-print-dialog .b-item .filenameOver{width:240px}.ordering .countriesSelector{position:relative}.ordering .countriesSelector .dijitInputInner{line-height:normal}.ordering .countriesSelector .dijitInputContainer{padding-left:35px}.ordering .countriesSelector .icon-country{position:absolute;left:10px;top:7px}.ordering .number .dijitInputContainer{padding:1px 5px}.ordering .countriesSelectorPopup .b-item{position:relative}.ordering .countriesSelectorPopup .b-item .icon-country{position:absolute;top:2px;left:0}.ordering .countriesSelectorPopup .b-item-title{padding-left:25px}.ordering .b-insertions-panel .insertions{background-color:#eee}.ordering .b-insertions-panel .errors{position:relative;color:#afafaf;font-size:10px;font-family:'Source Sans Pro',sans-serif;border:1px solid #ccc;padding-left:30px;margin-bottom:-1px}.ordering .b-insertions-panel .errors .icon{position:absolute;top:2px;margin-left:-20px;width:16px;height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat 0 -513px}.ordering .b-insertions-panel .errors .mark{width:3px;height:9px;background-color:#f32837;margin-bottom:-1px}.ordering .b-insertions-panel .invalid-items .row-order{border-left:2px solid #f32837}.ordering .b-insertions-panel .all-items{border-top:1px solid #ccc}.ordering .b-insertions-panel .add-btn{width:120px;height:100px;top:10px;right:30px;z-index:1;background-color:#f1f1f1;border:1px solid #cecece;color:#333}.ordering .b-insertions-panel .add-btn:hover{background-color:#ddd}.ordering .b-insertions-panel .add-btn-icon{font-size:40px;margin-top:20px}.ordering .b-search{border-bottom:1px solid #ccc;padding-right:30px}.ordering .b-search .ui-input{background:transparent;border:0;height:25px;width:130px !important;padding-top:0}.ordering .pr22{padding-right:22px}.ordering .pl22{padding-left:22px}.ordering .ml120{margin-left:120px}.ordering .mr120{margin-right:120px}.ordering .mr80{margin-right:80px}.ordering .ml80{margin-left:80px}.ordering .invisible{visibility:hidden}.ordering .b-transfer .dijitDialog{font-size:13px}.ordering .b-transfer .as-original{width:100%}.ordering .b-transfer .autosuggest .dijitError{border:1px solid red !important}.ordering .broadcastTooltipPopup{max-width:400px;width:auto !important;height:auto !important}.ordering .broadcastTooltipPopup.broadcastTooltipPopupAbove{margin-top:35px}.ordering .broadcastTooltipPopup.broadcastTooltipPopupBelow{margin-top:-35px}.ordering .broadcastTooltipPopup .broadcastTooltip{-webkit-box-shadow:5px 5px 10px 0 rgba(0,0,0,0.4);-moz-box-shadow:5px 5px 10px 0 rgba(0,0,0,0.4);box-shadow:5px 5px 10px 0 rgba(0,0,0,0.4)}.ordering .broadcastTooltipPopup .broadcastTooltip .dijitTooltipContainer{border:none}.ordering .broadcastTooltipPopup .broadcastTooltip .dijitTooltipContents{padding:0;border:1px solid #666}.ordering .broadcastTooltipPopup .broadcastTooltip .head{height:35px;background-color:#cecece}.ordering .broadcastTooltipPopup .broadcastTooltip .head .bcLabel{padding:1px 6px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;color:white;background-color:#666}.ordering .broadcastTooltipPopup .broadcastTooltip .head .firstCell{border-right:1px solid #666}.ordering .broadcastTooltipPopup .broadcastTooltip .head .cell{border-bottom:1px solid #666}.ordering .broadcastTooltipPopup .broadcastTooltip .content{background-color:white}.ordering .broadcastTooltipPopup .broadcastTooltip .content .firstCell{background-color:#666}.ordering .broadcastTooltipPopup .broadcastTooltip .content .container{max-height:200px;overflow:auto}.ordering .broadcastTooltipPopup .broadcastTooltip .content ul{list-style-type:disc}.ordering .b-form-dialog .dijitInputInner{height:16px;line-height:normal}.ordering .b-form-dialog .label{color:#333333;line-height:25px;font-weight:bold}.ordering .column-title{width:80% !important}.ordering .assetPreviewWidth{min-width:300px;max-width:720px}.ordering .service-warning{color:red;margin-bottom:20px}.ordering .statusList .pl35{padding-left:35px}.ordering .statusList.white{background-color:#fff;color:#000}.ordering .statusList .status{height:37px;background-color:#fff;color:#00BFFF}.ordering .statusList .status.active{background-color:#00BFFF;color:#fff}.ordering .statusList .time{position:absolute;top:8px;left:50%}.ordering .statusList .active-color{color:#00BFFF}.ordering .statusList .whitebg{width:20px;background-color:#fff;height:37px;overflow:hidden;position:absolute;right:0;top:0px}.ordering .statusList .arrow-element{height:38px;overflow:hidden;position:absolute;right:0;top:-2px;width:20px}.ordering .statusList .arrow-element:after{background:transparent;border-top:1px solid #d5d5d6;border-right:1px solid #d5d5d6;content:"";height:38px;left:-28px;position:absolute;transform:rotate(45deg);-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);width:38px;z-index:0}.ordering .statusList .selected .arrow-element:after{background:#00BFFF;border-top:1px solid #d5d5d6;border-right:1px solid #d5d5d6;content:"";height:38px;position:absolute;transform:rotate(45deg);width:38px;z-index:0}.ordering .statusList .borderLR{border-left:1px solid #d5d5d6;border-right:1px solid #d5d5d6}.ordering .statusList .statusBlock:first-child .statusContent{border-left:1px solid #d5d5d6}.ordering .b-carousel{height:385px;border-bottom:1px solid lightgrey}.ordering .b-carousel .slider_container{margin:0;padding:0 35px;width:100%}.ordering .b-carousel .slider_container .slider_line{margin:0;height:100%;padding-left:0}.ordering .b-carousel.non-deleteable .i16x16_close-light-grey{display:none}.ordering .b-carousel .carousel-item{transition:width 0.5s, height 0.5s, left 0.5s}.ordering .b-carousel .carousel-item-img{width:100% !important;height:100% !important;display:inline-block}.ordering .b-carousel .l-pointer{height:100%;width:15px;margin:0 20px;position:absolute;z-index:1}.ordering .b-carousel .l-pointer.left{left:0}.ordering .b-carousel .l-pointer.left .b-pointer{left:5px}.ordering .b-carousel .l-pointer.right{right:0}.ordering .b-carousel .l-pointer.right .b-pointer{left:-10px}.ordering .b-carousel .b-pointer{width:20px;height:20px;top:60%;margin-top:-15px;background-color:#949494;transform:rotate(45deg);-ms-transform:rotate(45deg);-moz-transform:rotate(45deg);-webkit-transform:rotate(45deg);-o-transform:rotate(45deg)}.ordering .b-carousel .b-inner{height:100%;width:100%}.ordering .b-library-assets{margin:40px auto 0}.ordering .b-library-assets .l-pointer{height:100%;width:15px;margin:0 20px;position:absolute;z-index:1}.ordering .b-library-assets .l-pointer.left{left:0}.ordering .b-library-assets .l-pointer.left .b-pointer{left:5px}.ordering .b-library-assets .l-pointer.right{right:0}.ordering .b-library-assets .l-pointer.right .b-pointer{left:-10px}.ordering .b-library-assets .b-pointer{width:20px;height:20px;top:50%;margin-top:-15px;background-color:#ccc;transform:rotate(45deg);-ms-transform:rotate(45deg);-moz-transform:rotate(45deg);-webkit-transform:rotate(45deg);-o-transform:rotate(45deg)}.ordering .b-library-assets .info-text{color:#41A0E3;max-width:100%}.ordering .b-library-assets .container{padding:0 50px}.ordering .b-library-assets .order-tooltip{min-width:130px;max-width:130px;word-wrap:break-word;background-color:#000000;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;position:absolute;color:#ffffff;filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=0, enabled=1)";opacity:0;-moz-transition:opacity .7s ease-in-out;-webkit-transition:opacity .7s ease-in-out;-ms-transition:opacity .7s ease-in-out;-o-transition:opacity .7s ease-in-out;transition:opacity .7s ease-in-out;-webkit-box-shadow:1px 1px 2px 0 rgba(0,0,0,0.7);-moz-box-shadow:1px 1px 2px 0 rgba(0,0,0,0.7);box-shadow:1px 1px 2px 0 rgba(0,0,0,0.7);left:22px;top:95px}.ordering .b-library-assets .asset_list_item.selected,.ordering .b-library-assets .asset_list_item .wrapper{padding-bottom:0}.ordering .b-library-assets .asset_list_item.selected .info-type.bold,.ordering .b-library-assets .asset_list_item .wrapper .info-type.bold{color:black;line-height:14px}.ordering .b-library-assets .asset_list_item.non-selectable{filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=0.4, enabled=1)";opacity:.4;cursor:default}.ordering .b-library-assets .asset_list_item.non-selectable.selected{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.ordering .b-library-assets .asset_list_item.non-selectable:hover{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.ordering .b-library-assets .asset_list_item.non-selectable:hover .non-selectable-message{filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=1, enabled=1)";opacity:1;visibility:visible}.ordering .b-library-assets .asset_list_item.non-selectable .preview{cursor:default}.ordering .b-library-assets .asset_list_item.non-selectable .non-selectable-message{z-index:10}.ordering .b-library-assets .asset_list_item .selected-checkbox{position:absolute;right:0;bottom:0}.ordering .b-library-assets .asset_list_item .info-value{color:#41A0E3;max-width:100%}.ordering .b-library-assets .asset_list_item .info-hd{position:absolute;top:20px;right:30px;background-color:white}.ordering .b-library-assets .asset_list_item .info-hdmark{position:absolute;top:20px;left:30px;background-color:white}.ordering .b-library-assets .file-expired{z-index:10}.ordering .zi2{z-index:2}.ordering .zi3{z-index:3}.ordering #app-menu{position:relative;z-index:3}.ordering .b-orders .l-orders-search{background-color:white;padding:12px 60px}.ordering .b-orders .l-orders-search .l-close-search{position:absolute;z-index:100;right:0;height:100%;display:none}.ordering .b-orders.m-search-results .l-orders-search .h-controls{display:none}.ordering .b-orders.m-search-results .l-orders-search .l-close-search{display:block}.ordering .b-orders .content-container{background-color:white}.ordering .b-orders .b-filters .filtersPanel .carousel-partly-visible{visibility:visible;overflow:visible;margin-top:-96px}.ordering .b-orders .b-filters .filtersPanel .h60{height:60px}.ordering .b-orders .b-filters .slideinner{display:table-row}.ordering .b-orders .b-filters .slideinner .item{-webkit-box-shadow:2px 2px 4px 1px rgba(100,100,100,0.57);-moz-box-shadow:2px 2px 4px 1px rgba(100,100,100,0.57);box-shadow:2px 2px 4px 1px rgba(100,100,100,0.57)}.ordering .b-orders .b-filters .l-carousel{position:absolute;top:0;left:50%;width:1020px;margin-left:-555px;background-color:#eaeaea;padding:0 50px;-webkit-box-shadow:3px 3px 8px 1px rgba(150,150,150,0.82);-moz-box-shadow:3px 3px 8px 1px rgba(150,150,150,0.82);box-shadow:3px 3px 8px 1px rgba(150,150,150,0.82)}.ordering .b-orders .b-filters .b-carousel{height:120px;overflow:visible;border-bottom:0;margin-top:5px;margin-bottom:10px}.ordering .b-orders .b-filters .b-carousel .b-inner{margin-top:0;height:100%}.ordering .b-orders .b-filters .b-carousel .slider_container{overflow:visible}.ordering .b-orders .b-filters .b-carousel .slider_container .slider_line{overflow-y:visible;height:125%}.ordering .b-orders .b-filters .balancer{height:120px}.ordering .b-orders .b-filters .balancer .restore-link{color:#fff;font-size:14px}.ordering .b-orders .b-filters .hide-link{position:absolute;bottom:5px;right:5px}.ordering .b-orders .b-filters .hide-link:link,.ordering .b-orders .b-filters .hide-link:visited,.ordering .b-orders .b-filters .hide-link:hover{color:#b7b6b6}.ordering .b-orders .b-filters .restore-link{position:absolute;right:5%}.ordering .b-orders .b-filters .restore-link span{display:block;z-index:1;position:relative;background-color:#999;padding:5px 0}.ordering .b-orders .b-filters .restore-link span:before,.ordering .b-orders .b-filters .restore-link span:after{content:'';position:absolute;top:0;left:0;width:70%;bottom:0;z-index:-1;background-color:#999}.ordering .b-orders .b-filters .restore-link span:before{transform:skew(25deg);-webkit-transform:skew(25deg);-ms-transform:skew(25deg);right:58px;left:auto;-webkit-box-shadow:-3px 3px 3px -1px #000;-moz-box-shadow:-3px 3px 3px -1px #000;box-shadow:-3px 3px 3px -1px #000}.ordering .b-orders .b-filters .restore-link span:after{transform:skew(-25deg);-webkit-transform:skew(-25deg);-ms-transform:skew(-25deg);right:auto;left:59px;-webkit-box-shadow:3px 3px 3px -1px #000;-moz-box-shadow:3px 3px 3px -1px #000;box-shadow:3px 3px 3px -1px #000}.ordering .b-orders .b-filters .item{width:220px}.ordering .b-orders .b-filters .item .count{font-size:56px;line-height:1em}.ordering .b-orders .b-filters .item .type{font-size:10px}.ordering .b-orders .b-filters .item .title{font-size:14px;text-transform:uppercase}.ordering .b-orders .b-filters .item .l-arrow{overflow:hidden;position:absolute;left:50%;bottom:0;width:60px;height:30px;margin-left:-30px;margin-bottom:-30px;z-index:1;display:none}.ordering .b-orders .b-filters .item.selected .l-arrow{display:block}.ordering .b-orders .b-filters .item .arrow{height:60px;transform:rotate(45deg);-ms-transform:rotate(45deg);-moz-transform:rotate(45deg);-webkit-transform:rotate(45deg);-o-transform:rotate(45deg);margin-top:-43px}.ordering .b-orders-addbtn{position:relative;font-weight:bold;color:#999;line-height:2.5em}.ordering .b-orders-addbtn .icon{background:url('/5.16.2.5993/frontend/images/create-order.png') no-repeat;width:32px;height:34px}.ordering .folder{background:url('/5.16.2.5993/frontend/images/folder.png') top left no-repeat;width:160px}.ordering .folder:hover .order-tooltip{filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=0.7, enabled=1)";opacity:.7;-moz-transition:opacity .7s ease-in-out;-webkit-transition:opacity .7s ease-in-out;-ms-transition:opacity .7s ease-in-out;-o-transition:opacity .7s ease-in-out;transition:opacity .7s ease-in-out}.ordering .b-orders-controls{border:1px solid #d5d5d6;border-bottom:none}.ordering .b-orders-controls .subtitle{font-size:14px}.ordering .b-orders-controls .simpleDropdown{z-index:99}.ordering .b-orders-controls .simpleDropdown .button{border:none;background:white;padding-right:10px;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.ordering .b-orders-controls .simpleDropdown .icon-container{display:none}.ordering .b-orders-controls .simpleDropdown .icon-table-options{background-position:-32px -351px;margin-top:7px}.ordering .b-orders-controls .b-tab{border-right:1px solid #999;line-height:24px}.ordering .b-orders-list .summary .fixed-toggler{display:none}.ordering .b-orders-list .clockHeader .itemsList .headers{background:transparent}.ordering .b-orders-list .itemsList .headers{padding:0;font-weight:bold;min-height:25px;max-height:25px}.ordering .b-orders-list .itemsList .headers.fixed-top{padding-left:60px !important}.ordering .b-orders-list .itemsList .headers .cell{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.ordering .b-orders-list .itemsList .headers .vmiddle{display:block;height:25px;line-height:25px;overflow:hidden;text-overflow:ellipsis}.ordering .b-orders-list .itemsList .row{background-color:#d8e9fd;border-bottom:1px solid #d5d5d6;-webkit-box-shadow:0 0 1px #e5e5e5;-moz-box-shadow:0 0 1px #e5e5e5;box-shadow:0 0 1px #e5e5e5;min-height:35px;max-height:35px}.ordering .b-orders-list .itemsList .row .vmiddle{height:35px}.ordering .b-orders-list .itemsList .row .date-reminded{background-color:#ffcc00}.ordering .b-orders-list .itemsList .row.selected{background-color:#bedffe !important}.ordering .b-orders-list .itemsList .row .approved{color:#4f9735}.ordering .b-orders-list .itemsList .row .onhold{color:#f32837;background:#ffcccc;display:inline-block;padding:2px 5px;border:1px solid #9a1e08}.ordering .b-orders-list .itemsList .row .onhold.disabled{background:#eee;color:#ccc;border:1px solid #ddd}.ordering .b-orders-list.admin .itemsList .row{min-height:60px;max-height:60px}.ordering .b-orders-list .itemsList .group-container{min-height:35px}.ordering .b-orders-list .itemsList .group-container.expanded{border:none}.ordering .b-orders-list .itemsList .group-container .expander{left:15px;top:10px}.ordering .b-orders-list .itemsList .group-container .expander.leftex{left:20px}.ordering .b-orders-list .b-clocks-header{background-color:#dddddd}.ordering .b-orders-list .b-clocks-header .pl35{padding-left:35px}.ordering .b-orders-list .b-clocks-list .row{background-color:#f0f0f2}.ordering .b-orders-list .b-clocks-list .row.selected{background-color:#f5d9f4 !important;border-bottom:1px solid #ffacfa}.ordering .b-orders-list.trunc-titles .itemsList .row .crop-list .vmiddle{height:35px;display:table-cell;vertical-align:middle;white-space:normal;padding-top:0px;min-width:50px}.ordering .b-orders-list.trunc-titles .itemsList .row .crop-list .lightgrey{color:#bebebe}.ordering .b-orders-list.trunc-titles .itemsList .row .vmiddle{height:25px;display:block;min-width:120px;padding-top:10px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.ordering .table-control-item div:first-child{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;display:block;padding-top:5px}.ordering .b-order-form{background-color:white;border:1px solid #d8d8d8}.ordering .b-order-form textarea{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.ordering .b-order-form textarea.error{border-color:#FF0000 !important}.ordering .b-order-form textarea.error .ui-input{border-color:#FF0000 !important}.ordering .b-order-form label{font-weight:normal}.ordering .b-order-form .border-dashed{border:1px #cdcdcd dashed}.ordering .b-order-form .dashed-section{border-bottom:1px #cdcdcd dashed}.ordering .b-order-form .icon-order-summary{transform:rotate(-90deg);-ms-transform:rotate(-90deg);-moz-transform:rotate(-90deg);-webkit-transform:rotate(-90deg);-o-transform:rotate(-90deg)}.ordering .b-order-form .delivery-status-title{font-style:normal;font-size:18px;display:inline-block;color:#0082dc}.ordering .b-order-form .delivery-status-title .tiny-text{font-size:70%}.ordering .b-order-form .hold-btn{height:35px;font-size:12px;line-height:1.3333333em}.ordering .b-order-form .hold-btn.unset_on_hold{color:#fff;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;box-shadow:none;background:-moz-linear-gradient(top, #f07c00 0, #d00c10 100%);background:-webkit-gradient(linear, left top, left bottom, color-stop(0, #f07c00), color-stop(100%, #d00c10));background:-webkit-linear-gradient(top, #f07c00 0, #d00c10 100%);background:-o-linear-gradient(top, #f07c00 0, #d00c10 100%);background:-ms-linear-gradient(top, #f07c00 0, #d00c10 100%);background:linear-gradient(to bottom, #f07c00 0, #d00c10 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f07c00', endColorstr='#d00c10', GradientType=0)}.ordering .b-order-form .counter{font-size:16px;font-weight:bold;background-color:#f1f1f1;border:1px solid #ccc;padding:12px}.ordering .b-order-form .selected-market{border:1px solid #cecece;padding:0px;position:absolute;top:40px;left:40px;z-index:1;-webkit-box-shadow:3px 3px 3px #666;-moz-box-shadow:3px 3px 3px #666;box-shadow:3px 3px 3px #666}.ordering .b-order-form .b-documents{overflow:auto;height:83px;border:1px solid #ccc}.ordering .b-order-form .b-documents .controls{background:#fff;right:0}.ordering .b-order-form .right-pos{bottom:8px;right:-20px}.ordering .b-order-form .right-pos.rightIndent{right:-115px}.ordering .b-order-form .b-section.row{background:white}.ordering .b-order-form .b-section.row .b-section-right{position:absolute;right:5px;top:50%}.ordering .b-order-form .b-section.row .b-section-clear,.ordering .b-order-form .b-section.row .b-section-copy{font-weight:bold;color:#333}.ordering .b-order-form .b-section.row .b-section-title{color:#333}.ordering .b-order-form .b-section.row.disabled{cursor:default}.ordering .b-order-form .b-section.row.disabled .b-section-title,.ordering .b-order-form .b-section.row.disabled .qcIngestButton,.ordering .b-order-form .b-section.row.disabled .b-section-arrow{opacity:0.5}.ordering .b-order-form .b-section.row .qcIngestButton{margin-top:-5px}.ordering .b-order-form .b-section.row .qcIngestButton.disabled{color:white;background-color:#7fd2f3;background:-moz-linear-gradient(top, #7fd2f3, #7fbeec);background:-webkit-linear-gradient(top, #7fd2f3, #7fbeec);background:-o-linear-gradient(top, #7fd2f3, #7fbeec);background:-ms-linear-gradient(top, #7fd2f3, #7fbeec);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #7fd2f3, #7fbeec, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #7fd2f3, #7fbeec);border-color:#84b5e6;cursor:pointer}.ordering .b-order-form .add-commercial{width:105px;height:100px;top:22px;right:22px;z-index:101;background-color:#f1f1f1;border:1px solid #cecece;color:#908f8f;background-color:#f4f4f4;background:-moz-linear-gradient(top, #f4f4f4, #dadada);background:-webkit-linear-gradient(top, #f4f4f4, #dadada);background:-o-linear-gradient(top, #f4f4f4, #dadada);background:-ms-linear-gradient(top, #f4f4f4, #dadada);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #f4f4f4, #dadada, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #f4f4f4, #dadada);-webkit-box-shadow:5px 5px 5px #666;-moz-box-shadow:5px 5px 5px #666;box-shadow:5px 5px 5px #666}.ordering .b-order-form .add-commercial .vmiddle{display:table-cell;vertical-align:middle}.ordering .b-order-form .add-commercial .button{background:#cecece;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;padding:5px 25px;-webkit-box-shadow:5px 5px 10px #999;-moz-box-shadow:5px 5px 10px #999;box-shadow:5px 5px 10px #999;color:#908f8f}.ordering .b-order-form .add-commercial .button.disabled{background-color:#ddd}.ordering .b-order-form .add-btn-icon{font-size:55px;line-height:40px}.ordering .b-order-form .b-carousel{border-bottom:0}.ordering .b-order-form .b-carousel .b-inner{width:100%}.ordering .b-order-form .b-carousel .l-pointer.left{left:-30px}.ordering .b-order-form .b-carousel .l-pointer.right{right:-30px}.ordering .b-order-form .b-carousel .carousel-item{background-color:white;position:absolute;bottom:0;border:0;width:0;height:0;max-height:350px;-webkit-box-shadow:3px 0 15px #000;-moz-box-shadow:3px 0 15px #000;box-shadow:3px 0 15px #000}.ordering .b-order-form .b-carousel .carousel-item .icons{position:absolute;top:5px;right:3px;visibility:hidden}.ordering .b-order-form .b-carousel .carousel-item .icons .fixHeight{height:16px}.ordering .b-order-form .b-carousel .carousel-item.selected{margin-bottom:-1px}.ordering .b-order-form .b-carousel .carousel-item.selected .icons{visibility:visible}.ordering .b-order-form .b-carousel .carousel-item .i24x24_warning,.ordering .b-order-form .b-carousel .carousel-item .i24x24_proceed{top:20px;right:3px;z-index:1}.ordering .b-order-form .b-carousel .carousel-item .file-info .icon-completed{position:absolute;top:5px;right:0}.ordering .b-order-form .b-carousel .carousel-item .form_field label{line-height:16px}.ordering .b-order-form .b-carousel .carousel-item .form_field .caption{font-weight:bold;display:inline-block}.ordering .b-order-form .b-carousel .carousel-item .form_field .value{font-size:13px;font-weight:normal;display:inline}.ordering .b-order-form .b-carousel .carousel-item .carousel-item-wrapper{padding:30px 30px 40px 30px;height:100%;-moz-box-sizing:border-box;box-sizing:border-box}.ordering .b-order-form .b-carousel .slideinner{height:100%;position:relative}.ordering .b-order-form .b-carousel .slider_line{border-bottom:1px solid lightgrey;overflow:visible;margin-top:-1px}.ordering .b-order-form .border-bottom{border-bottom:1px solid #ccc}.ordering .b-order-form .b-sort-control{width:170px}.ordering .b-order-form .date.dijitTextBox input.dijitArrowButtonInner{padding-left:6px !important}.ordering .b-order-form .date.dijitTextBox INPUT{padding-left:0px !important}.ordering .b-order-form-inner{border:0;box-shadow:none;-webkit-box-shadow:none;-moz-box-shadow:none}.ordering .b-order-form-inner .addInformationForm .schemedContent,.ordering .b-order-form-inner .arppInformationForm .schemedContent,.ordering .b-order-form-inner .availableFieldsForm .schemedContent{margin:5px 20px 40px;position:relative}.ordering .b-order-form-inner .addInformationForm .schemedContent .freeColumnFields .schema_field,.ordering .b-order-form-inner .arppInformationForm .schemedContent .freeColumnFields .schema_field,.ordering .b-order-form-inner .availableFieldsForm .schemedContent .freeColumnFields .schema_field{margin-right:20px}.ordering .b-order-form-inner .addInformationForm .schemedContent .freeColumnFields .schema_field_wrapper,.ordering .b-order-form-inner .arppInformationForm .schemedContent .freeColumnFields .schema_field_wrapper,.ordering .b-order-form-inner .availableFieldsForm .schemedContent .freeColumnFields .schema_field_wrapper{width:100%}.ordering .b-order-form-inner .addInformationForm .schemedContent .schema_field,.ordering .b-order-form-inner .arppInformationForm .schemedContent .schema_field,.ordering .b-order-form-inner .availableFieldsForm .schemedContent .schema_field{margin-right:90px}.ordering .b-order-form-inner .addInformationForm .schemedContent .schema_field.trunc-text,.ordering .b-order-form-inner .arppInformationForm .schemedContent .schema_field.trunc-text,.ordering .b-order-form-inner .availableFieldsForm .schemedContent .schema_field.trunc-text{margin-right:0px}.ordering .b-order-form-inner .addInformationForm .schemedContent .schema_field label .caption,.ordering .b-order-form-inner .arppInformationForm .schemedContent .schema_field label .caption,.ordering .b-order-form-inner .availableFieldsForm .schemedContent .schema_field label .caption{font-weight:bold;display:inline-block}.ordering .b-order-form-inner .addInformationForm .schemedContent .schema_field label .value,.ordering .b-order-form-inner .arppInformationForm .schemedContent .schema_field label .value,.ordering .b-order-form-inner .availableFieldsForm .schemedContent .schema_field label .value{display:inline-block}.ordering .b-order-form-inner .addInformationForm .schemedContent .schema_field .as-selections.schema_theme li,.ordering .b-order-form-inner .arppInformationForm .schemedContent .schema_field .as-selections.schema_theme li,.ordering .b-order-form-inner .availableFieldsForm .schemedContent .schema_field .as-selections.schema_theme li{margin-top:1px}.ordering .b-order-form-inner .addInformationForm .schemedContent .schema_field .as-selections.schema_theme li.as-original,.ordering .b-order-form-inner .arppInformationForm .schemedContent .schema_field .as-selections.schema_theme li.as-original,.ordering .b-order-form-inner .availableFieldsForm .schemedContent .schema_field .as-selections.schema_theme li.as-original{width:50px}.ordering .b-order-form-inner .addInformationForm .schemedContent .schema_field .as-selections.schema_theme .dijitArrowButtonContainer,.ordering .b-order-form-inner .arppInformationForm .schemedContent .schema_field .as-selections.schema_theme .dijitArrowButtonContainer,.ordering .b-order-form-inner .availableFieldsForm .schemedContent .schema_field .as-selections.schema_theme .dijitArrowButtonContainer{padding-top:12px}.ordering .b-order-form-inner .addInformationForm .schemedContent .schema_field_wrapper.freeColumnField,.ordering .b-order-form-inner .arppInformationForm .schemedContent .schema_field_wrapper.freeColumnField,.ordering .b-order-form-inner .availableFieldsForm .schemedContent .schema_field_wrapper.freeColumnField{position:absolute;left:100%}.ordering .b-order-form-inner .schema_field_wrapper .spotgate_field{margin-right:90px}.ordering .b-order-form-inner .schema_field_wrapper .spotgate_field .schema_field{margin-right:90px}.ordering .b-order-form-inner .schema_field_wrapper .spotgate_field .button{position:absolute;right:0;bottom:0;display:block !important}.ordering .b-order-form-inner .commonInformationForm{margin-left:-20px}.ordering .b-order-form-inner .commonInformationForm .schemedContent .schema_field{margin-right:50px}.ordering .b-order-form-inner .addInformationForm .schemedContent{margin:5px 0 40px}.ordering .b-order-form-inner .arppInformationForm .schemedContent{margin-left:0}.ordering .b-order-form-inner .arppInformationForm .schemedContent{width:65%}.ordering .b-order-form-inner .availableFieldsForm .schemedContent{width:100%}.ordering .b-order-form-inner .availableFieldsForm .schemedContent .schema_field{margin-right:75px}.ordering .b-order-form-inner .availableFieldsForm .schemedContent .schema_field .error{border-color:#FF0000 !important}.ordering .b-order-form-inner .availableFieldsForm .schemedContent .schema_field .error .ui-input{border-color:#FF0000 !important}.ordering .b-order-form-inner .usageRightsForm{width:780px}.ordering .b-order-form-inner .usageRightsForm .files_info_title{border-bottom:1px solid #ccc}.ordering .b-order-form-inner .usageRightsForm .usage_rights_control_node{float:none}.ordering .b-order-form-inner .assets-shadow{box-shadow:inset 0 0 13px 5px rgba(0,0,0,0.5);width:110%;margin-left:-5%}.ordering .b-order-form-inner .assets-container{width:90%;margin:0 auto;max-width:1150px}.ordering .b-order-form-inner .services .radioCheckboxes .dijitTextBoxError label{color:#ff0000}.ordering .b-order-form-inner .services .extraLine{border-top:1px solid #ccc;margin-top:40px;padding-top:40px}.ordering .b-order-form-inner .services .productionServices .display-table-cell{float:none;vertical-align:top}.ordering .b-order-form-inner .upload-container{margin:0 5%;max-width:1150px}.ordering .b-order-form-inner .upload-container .required_field{display:inline-block;font-weight:bold;position:relative}.ordering .b-order-form-inner .upload-container .required_field:after{content:"*";font-weight:bold;color:#0082dc;position:absolute;z-index:2;top:0px;right:-12px;width:10px;height:10px}.ordering .b-order-form-inner .upload-container .innerSize{width:45%}.ordering .b-order-form-inner .upload-container .innerSizeButtons{width:60%}.ordering .b-order-form-inner .upload-container .leftSpace{padding-left:40px}.ordering .b-order-form-inner .upload-container .messageFieldWidth{width:60%}.ordering .b-order-form-inner .upload-container .deadlineDateWidth{width:20%}.ordering .inactiveButton{filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=0.5, enabled=1)";opacity:.5}.ordering .container-shadow{-webkit-box-shadow:inset 4px 1px 8px rgba(0,0,0,0.5);-moz-box-shadow:inset 4px 1px 8px rgba(0,0,0,0.5);box-shadow:inset 4px 1px 8px rgba(0,0,0,0.5)}.ordering .mediaText{font-family:'Source Sans Pro',sans-serif;position:absolute;top:0;bottom:0;left:0;right:0;margin:30% auto;font-size:18px;color:#7e7e7e}.ordering .awaitingText{font-family:'Source Sans Pro',sans-serif;color:#7e7e7e;font-size:18px;position:absolute;top:0;bottom:0;left:0;right:0;margin:35% auto}.ordering .h30{height:30px}.ordering .unit-clearL{clear:left}.ordering .upload-title{color:#908f8f}.ordering .dijitTimePickerItem{border-top:solid 1px #b5bcc7;border-bottom:solid 1px #b5bcc7;margin-top:-1px}.ordering .dijitTimePickerMarker{background-color:#fff;opacity:0.5;font-size:1em;white-space:nowrap}.ordering .dijitTimePickerMarkerHover{opacity:1;-moz-transition:color .1s linear;-webkit-transition:color .1s linear;-ms-transition:color .1s linear;-o-transition:color .1s linear;transition:color .1s linear;-moz-transition:background-color .2s ease-out;-webkit-transition:background-color .2s ease-out;-ms-transition:background-color .2s ease-out;-o-transition:background-color .2s ease-out;transition:background-color .2s ease-out;background-color:#007dd9;color:white;font-weight:bolder}.ordering .dijitTimePickerPopup{visibility:visible;right:auto;overflow-y:scroll;height:268px !important;border:1px solid #b5bcc7;z-index:1000}.ordering .popupWindow{overflow:visible}.ordering .popupWindow .supplyBody .h30{display:none}.ordering .popupWindow .innerSize,.ordering .popupWindow .innerSizeButtons{width:100%}.ordering .popupWindow .innerSize label,.ordering .popupWindow .innerSizeButtons label{font-weight:normal}.ordering .popupWindow .leftSpace{padding-left:0px}.ordering .popupWindow .supplyButtons{display:none}.ordering .popupWindow .messageFieldWidth{width:40%}.ordering .popupWindow .deadlineDateWidth{width:36%}.ordering .popupWindow .arrivalTimeWidth{width:20%}.ordering .b-assign .windowBody{overflow:visible !important}.ordering .field-delimiter{height:45px;border-left:1px solid #ccc;margin:-5px 10px 0 10px}.ordering .b-destinations-list .headers{padding:0;background:white;border:1px solid #ccc;font-weight:bold;text-transform:uppercase}.ordering .b-destinations-list .headers .data-column{background-color:#0684bb;color:white}.ordering .b-destinations-list .headers .data-column:last-child{border-right:0}.ordering .b-destinations-list .headers .white-bg{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;border-right:1px solid #ccc}.ordering .b-destinations-list .headers .cell{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.ordering .b-destinations-list .headers .cell:first-child,.ordering .b-destinations-list .headers .cell:last-child{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.ordering .b-destinations-list .itemsList .row{min-height:35px;border:1px solid #ccc;border-top:0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.ordering .b-destinations-list .itemsList .row .vmiddle{height:35px}.ordering .b-destinations-list .itemsList .row .valign{line-height:35px}.ordering .b-destinations-list .itemsList .row .service-level{filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=1, enabled=1)";opacity:1}.ordering .b-destinations-list .itemsList .row.group,.ordering .b-destinations-list .itemsList .row.select-all{color:white;background-color:#3c3c3c}.ordering .b-destinations-list .itemsList .row.group .service-level,.ordering .b-destinations-list .itemsList .row.select-all .service-level{background-color:#3c3c3c !important}.ordering .b-destinations-list .itemsList .row .hdsd-cell{width:25px}.ordering .b-destinations-list .itemsList .row.disabled{background:#eee;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.ordering .b-destinations-list .itemsList .cancelled-row{background-color:lightcoral}.ordering .b-destinations-list .itemsList .onhold-row{background-color:#d3d3d3}.ordering .b-destinations-list .itemsList .broadcast-title{position:absolute;right:1px;height:100%;line-height:2.6777em;color:#3db8e0}.ordering .b-destinations-list .itemsList .bc-column{position:relative}.ordering .b-destinations-list .itemsList .bc-column:before{content:'';position:absolute;width:20px;height:35px;opacity:0.5;right:0;background-color:#ccc}.ordering .b-destinations-list .itemsList .data-column{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;border-right:1px solid #ccc}.ordering .b-destinations-list .itemsList .rows-content{max-height:504px;overflow:auto}.ordering .b-destinations-list .margin-auto{width:0;margin:auto}.ordering .b-destinations-list .m-left-50{margin-left:-50%}.ordering .b-destination-search{color:#666}.ordering .b-destination-search .opener{text-decoration:underline}.ordering .b-destination-search label{color:#666;line-height:normal}.ordering .b-destination-search .dijitTextBox{min-width:100px;width:22%}.ordering .b-destination-search .dijitSelect{width:130px}.ordering .b-destination-search .multiple-search{min-width:300px}.ordering .b-destination-search .multiple-search .dijitTextArea{width:100%}.ordering .b-destination-search .uploadFile{border:0px;background:#fff}.ordering .destinationsTable .plusIcon{border:1px solid #CCCCCC;font-size:25px;line-height:30px;text-align:center}.ordering .destinationsTable .requiredField:after{right:-2px}.ordering .destinationsTable .destHeader{background:#0684BB;padding-right:15px;box-shadow:0 1px 0 0 #0684BB inset}.ordering .destinationsTable .indent{padding-right:17px}.ordering .destinationsTable .destGroup{max-height:504px;overflow:auto}.ordering .destinationsTable .whiteBG{background:#fff}.ordering .b-destinations-inner{background-color:#e5e5e5;font-size:14px;max-height:135px;overflow-y:auto;padding-bottom:0}.ordering .b-advancedsearch-result .b-list{color:#333}.ordering .b-advancedsearch-result .b-list .title{font-size:16px}.ordering .b-advancedsearch-result .b-list .inner{background-color:#e5e5e5;font-size:14px;max-height:135px;overflow-y:auto;padding-bottom:0}.ordering .b-destinations-paging{display:inline-block}.ordering .b-destinations-paging .thick-bordered{border-bottom:2px solid #ccc;height:30px;line-height:30px}.ordering .b-destinations-paging .page-item{cursor:pointer}.ordering .b-destinations-paging .page-item:hover{color:#999}.ordering .b-destinations-paging .navlink:hover{color:#999}.ordering .b-destinations-paging .disabled,.ordering .b-destinations-paging .disabled:hover{color:#ccc}.ordering .b-destinations-paging .current-page-item{border-bottom:2px solid #0082dc;color:#0082dc}.ordering .b-destinations-paging .b-arrow{width:10px;height:24px;overflow:hidden}.ordering .b-destinations-paging .b-arrow .inner{border:3px solid #333;width:7px;height:7px;margin-top:8px}.ordering .b-destinations-paging .b-arrow .inner.right{transform:rotate(45deg);-ms-transform:rotate(45deg);-moz-transform:rotate(45deg);-webkit-transform:rotate(45deg);-o-transform:rotate(45deg);margin-left:-3px;border-bottom:rgba(0,0,0,0);border-left:rgba(0,0,0,0)}.ordering .b-destinations-paging .b-arrow .inner.left{transform:rotate(45deg);-ms-transform:rotate(45deg);-moz-transform:rotate(45deg);-webkit-transform:rotate(45deg);-o-transform:rotate(45deg);margin-left:3px;border-right:rgba(0,0,0,0);border-top:rgba(0,0,0,0)}.ordering .b-destinations-paging .b-goto .dijitTextBox{width:50px}.ordering .b-destinations-paging .b-goto .button{min-width:30px}.ordering .popupWindow.bookmark-save,.ordering .popupWindow.bookmark-load{width:760px;overflow:visible}.ordering .popupWindow.bookmark-save .windowBody,.ordering .popupWindow.bookmark-load .windowBody{overflow-x:visible !important}.ordering .b-bookmark{width:80%;margin:10px auto}.ordering .b-bookmark .inner{background-color:#e5e5e5;font-size:14px;max-height:135px;overflow-y:auto;padding-bottom:0}.ordering .b-bookmark .hoveredRow{background-color:#ccc}.ordering .b-bookmark .row-save-bookmark:hover{background-color:#ccc}.ordering .b-bookmark .row-save-bookmark:hover .removeFromBookmark{visibility:visible;cursor:pointer}.ordering .b-bookmark .row-load-bookmark:hover{background-color:#ccc;cursor:pointer}.ordering .b-bookmark .removeFromBookmark{visibility:hidden}.ordering .b-bookmark .removeBookmark{cursor:pointer}.ordering .b-bookmark .selectedBookmark{background-color:#ccc}.ordering .b-summary{background-color:white;border:1px solid grey}.ordering .b-summary .border{border:1px solid #ccc}.ordering .b-summary .border.right-none{border-right:0px}.ordering .b-summary .border-top-dashed{border-top:1px dashed #ccc}.ordering .b-summary .borderRight{border-right:1px solid #CCCCCC}.ordering .b-summary .border-left{border-left:1px solid #ccc}.ordering .b-summary .requiredField{color:#000}.ordering .b-summary .b-orders-list .b-clocks-list .row .pl35{padding-left:35px}.ordering .b-summary .b-orders-list .b-clocks-list .row.white{background-color:#fff;color:#000}.ordering .b-summary .b-orders-list .b-clocks-list .row .status{height:37px;background-color:#fff;color:#00BFFF}.ordering .b-summary .b-orders-list .b-clocks-list .row .status.active{background-color:#00BFFF;color:#fff}.ordering .b-summary .b-orders-list .b-clocks-list .row .time{position:absolute;top:8px;left:50%}.ordering .b-summary .b-orders-list .b-clocks-list .row .active-color{color:#00BFFF}.ordering .b-summary .b-orders-list .b-clocks-list .row .whitebg{width:20px;background-color:#fff;height:37px;overflow:hidden;position:absolute;right:0;top:0px}.ordering .b-summary .b-orders-list .b-clocks-list .row .arrow-element{height:38px;overflow:hidden;position:absolute;right:0;top:-2px;width:20px}.ordering .b-summary .b-orders-list .b-clocks-list .row .arrow-element:after{background:transparent;border-top:1px solid #d5d5d6;border-right:1px solid #d5d5d6;content:"";height:38px;left:-28px;position:absolute;transform:rotate(45deg);-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);width:38px;z-index:0}.ordering .b-summary .b-orders-list .b-clocks-list .row .selected .arrow-element:after{background:#00BFFF;border-top:1px solid #d5d5d6;border-right:1px solid #d5d5d6;content:"";height:38px;position:absolute;transform:rotate(45deg);width:38px;z-index:0}.ordering .b-summary .b-orders-list .b-clocks-list .row .borderLR{border-left:1px solid #d5d5d6;border-right:1px solid #d5d5d6}.ordering .b-summary .b-orders-list .b-clocks-list .row .statusBlock:first-child .statusContent{border-left:1px solid #d5d5d6}.ordering .b-summary .billInfoIcon{position:absolute;z-index:1;right:0;bottom:25px}.ordering .b-summary .warningMixture{color:#fcb03b;font-weight:bold;font-size:14px}.ordering .b-summary .viewReport{position:absolute;right:0;top:0}.ordering .b-proceed{background-color:white;border:1px solid grey}.ordering .b-proceed .b-table-data .b-head .display-table-cell{padding-bottom:10px;border-bottom:1px solid #ccc}.ordering .b-proceed .b-table-data .b-content .display-table-cell{padding-top:10px;padding-bottom:10px}.ordering .b-advanced-search .formRow .addBtn{display:none}.ordering .b-advanced-search .formMainRow .removeBtn,.ordering .b-advanced-search .formMainRow .accept-icon{display:none}.ordering .b-advanced-search .search-by .containerNode{max-height:205px;overflow:auto}.ordering .b-advanced-search .search-by .dijitComboBox,.ordering .b-advanced-search .search-by .ui-input{width:200px}.ordering .b-contactGroups .b-selectedGroups-li{display:inline-block;color:white;font-size:13px;background-color:#0082dc;padding:2px 7px 5px 10px;border-radius:12px;margin-right:5px}.ordering .b-contactGroups .b-selectedGroups-li-close{cursor:pointer;color:#5491be;font-family:'Source Sans Pro',sans-serif;font-size:14px;font-weight:bold;margin-left:3px}.ordering .b-contactGroups .b-list{max-height:300px;overflow:auto}.ordering .b-contactGroups .b-contact{font-weight:normal;line-height:1.5em;font-style:italic;display:block}.ordering .dijitTooltip,.dijitTooltip{background-color:#c0ecff;border-color:#7cd1ff;border-radius:5px 5px 5px 5px;box-shadow:1px 1px 2px 0 rgba(0,0,0,0.7);color:#0091ee;padding:10px;opacity:0.7;position:absolute;z-index:99999}.ordering .dijitTooltip .dijitTooltipContainer,.dijitTooltip .dijitTooltipContainer{background:#c0ecff;color:#3c7ddc;text-align:left}.ordering .common-navigation-bar{position:relative;z-index:10}.ordering .common-navigation-bar.active+#app-menu{display:none}.ordering input[type=text]::-ms-clear{display:none}.ordering .smallInput{width:80px}.ordering .trunc-text,.dest-trunc-text{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.ordering .requiredField{display:inline-block;font-weight:bold;position:relative}.ordering .requiredField:after{content:"*";font-weight:bold;color:#0082dc;position:absolute;z-index:2;top:0px;right:-12px;width:10px;height:10px}.md-ordering-radio .b-spinner{width:50px;height:50px;background:url("/5.16.2.5993/frontend/images/spinner.gif") no-repeat scroll transparent;margin-left:20px;display:inline-block;vertical-align:middle}.md-ordering-radio .l-ordering-radio-list__content{padding:12px 60px;margin-bottom:60px}.md-ordering-radio .l-ordering-radio-list__content .b-search{padding-right:10px}.md-ordering-radio .l-ordering-radio-list__content .a5-ord-grid__header{margin-top:0}.md-ordering-radio .l-ordering-radio-list__content .b-create-section{opacity:0.3;cursor:default;height:50px}.md-ordering-radio .l-ordering-radio-list__content .b-create-section .b-orders-addbtn{cursor:default}.md-ordering-radio .l-ordering-radio-list__content .b-create-section .b-orders-addbtn:hover{text-decoration:none}.md-ordering-radio .l-ordering-radio-list__content .b-create-section.enabled{opacity:1.0}.md-ordering-radio .l-ordering-radio-list__content .b-create-section.enabled .b-orders-addbtn{cursor:pointer}.md-ordering-radio .l-ordering-radio-list__content .b-create-section.enabled .b-orders-addbtn:hover{text-decoration:underline}.md-ordering-radio .ui-grid-icon-minus-squared{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 0 transparent}.md-ordering-radio .ui-grid-icon-plus-squared{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -16px transparent}.md-ordering-radio .ui-grid-icon-plus-squared:before{color:transparent}.md-ordering-radio .ui-grid-icon-minus-squared:before{color:transparent}.md-ordering-radio .l-ordering-radio-edit .b-spinner{width:50px;height:50px;background:url("/5.16.2.5993/frontend/images/spinner.gif") no-repeat scroll transparent;margin-left:20px;display:inline-block;vertical-align:middle}.md-ordering-radio .l-ordering-radio-edit .b-schema-fields--edit__date .b-datepicker{float:left;width:100%}.md-ordering-radio .l-ordering-radio-edit .b-schema-fields--edit__date .b-datepicker div:first-child{float:left;width:calc(100% - 43px)}.md-ordering-radio .l-ordering-radio-edit .b-schema-fields--edit__date .b-datepicker div:last-child{padding-left:0}.md-ordering-radio .l-ordering-radio-edit .b-schema-fields--edit__date .b-datepicker div:last-child button{border-radius:0}.md-ordering-radio .l-ordering-radio-edit .b-schema-field{float:left;padding-right:40px;margin-top:10px;box-sizing:border-box}.md-ordering-radio .l-ordering-radio-edit .b-order-controls-wrapper{font-size:16px;padding:15px 0 5px 0;margin:20px 60px 0 120px;border-bottom:1px solid #ccc}.md-ordering-radio .l-ordering-radio-edit .b-order-controls-wrapper .panel-group{margin-bottom:0;padding-left:5px}.md-ordering-radio .l-ordering-radio-edit .b-order-controls-wrapper .panel-group .panel-heading+.panel-collapse>.panel-body,.md-ordering-radio .l-ordering-radio-edit .b-order-controls-wrapper .panel-group .panel-heading+.panel-collapse>.list-group{border:none}.md-ordering-radio .l-ordering-radio-edit .b-order-controls-wrapper .panel-group .b-section{border:none;border-radius:0;box-shadow:none}.md-ordering-radio .l-ordering-radio-edit .b-order-controls-wrapper .panel-group .b-section .panel-heading{padding:0}.md-ordering-radio .l-ordering-radio-edit .m-field__label span{display:block}.md-ordering-radio .l-ordering-radio-edit .select2{width:100%;height:30px}.md-ordering-radio .l-ordering-radio-edit .select2 .select2-container.select2-choice{height:28px;line-height:28px}.md-ordering-radio .l-ordering-radio-edit .a5-ord-add-order-actions-btn{top:115px;right:60px}.md-ordering-radio .l-ordering-radio-summary .b-section{-webkit-box-shadow:0 0 0 0 #fff;-moz-box-shadow:0 0 0 0 #fff;box-shadow:0 0 0 0 #fff;border:none}.md-ordering-radio .l-ordering-radio-summary .b-section .panel-heading{padding:0px}.md-ordering-radio .l-ordering-radio-summary .b-section .panel-body{border:none}.a5-modal-message-content .select2{width:100%;height:30px}.a5-header.with-ordering{position:relative;z-index:1}.a5-ord-app-switcher__item{font-size:14px;cursor:pointer}.a5-ord-app-switcher__item:first-child::before{content:""}.a5-ord-app-switcher__item::before{margin:0 10px;content:"|"}.a5-ord-app-switcher__item>a{color:inherit;text-decoration:none}.a5-ord-app-switcher__item>a.active{text-decoration:underline}.a5-ord-status-bar{height:120px;text-align:center;background-color:#eaeaea;-moz-transition:all 250ms ease;-webkit-transition:all 250ms ease;-ms-transition:all 250ms ease;-o-transition:all 250ms ease;transition:all 250ms ease}.a5-ord-status-bar.s-collapsed{height:60px;-moz-transition:all 250ms ease;-webkit-transition:all 250ms ease;-ms-transition:all 250ms ease;-o-transition:all 250ms ease;transition:all 250ms ease}.a5-ord-status-item{box-sizing:border-box;color:white;width:220px;height:120px;-webkit-box-shadow:2px 2px 4px 1px rgba(100,100,100,0.57);box-shadow:2px 2px 4px 1px rgba(100,100,100,0.57);padding-top:10px;margin-right:10px;cursor:pointer;text-align:center;float:left;position:relative;z-index:2}.a5-ord-status-item.s-active .a5-ord-status-item__arrow-wrapper{display:block}.a5-ord-status-item.s-active.a5-ord-status-item--live .b-arrow-pointer{background-color:#e63329}.a5-ord-status-item.s-active.a5-ord-status-item--draft .b-arrow-pointer{background-color:#b7b6b6}.a5-ord-status-item.s-active.a5-ord-status-item--held .b-arrow-pointer{background-color:#008bcb}.a5-ord-status-item.s-active.a5-ord-status-item--completed .b-arrow-pointer{background-color:#6ebd8f}.a5-ord-status-item .b-arrow-pointer{height:60px;transform:rotate(45deg);-ms-transform:rotate(45deg);-moz-transform:rotate(45deg);-webkit-transform:rotate(45deg);-o-transform:rotate(45deg);margin-top:-43px}.a5-ord-status-item__counter{font-size:56px;line-height:1em}.a5-ord-status-item__secondary-text{font-size:10px;padding-bottom:10px}.a5-ord-status-item__primary-text{font-size:14px;text-transform:uppercase;padding-top:5px;padding-bottom:5px}.a5-ord-status-item__spacer{height:1px}.a5-ord-status-item__arrow-wrapper{overflow:hidden;position:absolute;left:50%;bottom:0;width:60px;height:30px;margin-left:-30px;margin-bottom:-30px;z-index:1;display:none}.a5-ord-status-item--live{background-color:#e63329}.a5-ord-status-item--live .a5-ord-status-item__spacer{background-color:#c51a1a}.a5-ord-status-item--draft{background-color:#b7b6b6}.a5-ord-status-item--draft .a5-ord-status-item__spacer{background-color:#5c5d5d}.a5-ord-status-item--held{background-color:#008bcb}.a5-ord-status-item--held .a5-ord-status-item__spacer{background-color:#65b8f7}.a5-ord-status-item--completed{background-color:#6ebd8f}.a5-ord-status-item--completed .a5-ord-status-item__spacer{background-color:#81a73f}.a5-ord-status-switch{height:135px;width:1020px;padding-left:50px;padding-right:50px;margin:0 auto;text-align:center;background-color:#eaeaea;-webkit-box-shadow:3px 3px 8px 1px rgba(150,150,150,0.82);box-shadow:3px 3px 8px 1px rgba(150,150,150,0.82);position:relative;-moz-transition:all 250ms ease;-webkit-transition:all 250ms ease;-ms-transition:all 250ms ease;-o-transition:all 250ms ease;transition:all 250ms ease}.a5-ord-status-switch .a5-ord-status-toggle-btn{position:absolute;right:5px;bottom:5px}.a5-ord-status-switch.s-collapsed{-webkit-transform:translate(0, -95px);-moz-transform:translate(0, -95px);-ms-transform:translate(0, -95px);transform:translate(0, -95px)}.a5-ord-status-switch__content-wrapper{padding-top:5px;padding-bottom:10px;padding-left:35px;padding-right:35px;height:120px;display:inline-block}.a5-ord-status-toggle-btn{color:#b7b6b6;cursor:pointer}.a5-ord-grid__header{margin-top:20px;height:34px;line-height:34px;border:1px solid #ccc;border-bottom:none;box-sizing:border-box;width:100%}.a5-ord-grid__header__caption{width:20%;padding-left:10px;font-weight:bold;font-size:14px;vertical-align:middle;text-transform:capitalize;float:left}.a5-ord-grid__header__settings{float:right}.a5-ord-grid__grid{-webkit-box-shadow:2px 2px 3px 0 #999;-moz-box-shadow:2px 2px 3px 0 #999;box-shadow:2px 2px 3px 0 #999;color:#333;border-top:1px solid #ccc}.a5-ord-grid__grid .ui-grid-viewport{background-color:#d8e9fd}.a5-ord-grid__grid .ui-grid-row:nth-child(odd) .ui-grid-cell{background-color:#d8e9fd}.a5-ord-grid__grid .ui-grid-row:nth-child(even) .ui-grid-cell{background-color:#d8e9fd}.a5-ord-grid__grid .ui-grid-row:last-child .ui-grid-cell{border-bottom-color:#ccc;border-bottom-style:solid}.a5-ord-grid__grid .ui-grid-no-row-overlay{background:#f0f0f0;background:-webkit-gradient(linear, left bottom, left top, color-stop(0, #f0f0f0), color-stop(1, #f0f0f0));background:-ms-linear-gradient(bottom, #f0f0f0, #f0f0f0);background:-moz-linear-gradient(center bottom, #f0f0f0 0, #f0f0f0 100%);background:-o-linear-gradient(#f0f0f0, #f0f0f0);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='@colorHeaderBg', endColorstr='@colorHeaderBg', GradientType=0);border:1px solid #ccc}.a5-ord-grid__grid .ui-grid-cell{border-color:#ccc;border-right:none;border-bottom:1px solid #ccc}.a5-ord-grid__grid .ui-grid-row .ui-grid-cell.ui-grid-row-header-cell{background-color:#f0f0ee;border-bottom:solid 1px #ccc}.a5-ord-grid__grid .ui-grid-footer-panel-background{background:#f0f0f0;background:-webkit-gradient(linear, left bottom, left top, color-stop(0, #f0f0f0), color-stop(1, #f0f0f0));background:-ms-linear-gradient(bottom, #f0f0f0, #f0f0f0);background:-moz-linear-gradient(center bottom, #f0f0f0 0, #f0f0f0 100%);background:-o-linear-gradient(#f0f0f0, #f0f0f0);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='@colorHeaderBg', endColorstr='@colorHeaderBg', GradientType=0)}.a5-ord-grid__grid .ui-grid-footer-panel{border-bottom:1px solid #ccc;border-top:1px solid #ccc;background:#f0f0f0;background:-webkit-gradient(linear, left bottom, left top, color-stop(0, #f0f0f0), color-stop(1, #f0f0f0));background:-ms-linear-gradient(bottom, #f0f0f0, #f0f0f0);background:-moz-linear-gradient(center bottom, #f0f0f0 0, #f0f0f0 100%);background:-o-linear-gradient(#f0f0f0, #f0f0f0);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='@colorHeaderBg', endColorstr='@colorHeaderBg', GradientType=0)}.a5-ord-grid__grid .ui-grid-footer-cell{border-color:#ccc}.a5-ord-grid__grid input[type="text"].ui-grid-filter-input{border:1px solid #ccc}.a5-ord-grid__grid input[type="text"].ui-grid-filter-input:hover{border:1px solid #ccc}.a5-ord-grid__grid .ui-grid-group-panel{background:#f0f0f0;background:-webkit-gradient(linear, left bottom, left top, color-stop(0, #f0f0f0), color-stop(1, #f0f0f0));background:-ms-linear-gradient(bottom, #f0f0f0, #f0f0f0);background:-moz-linear-gradient(center bottom, #f0f0f0 0, #f0f0f0 100%);background:-o-linear-gradient(#f0f0f0, #f0f0f0);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='@colorHeaderBg', endColorstr='@colorHeaderBg', GradientType=0);border-bottom:1px solid #ccc}.a5-ord-grid__grid .ui-grid{border:1px solid #ccc}.a5-ord-grid__grid .ui-grid-header-cell:not(:last-child) .ui-grid-vertical-bar{background-color:#f0f0f0}.a5-ord-grid__grid .ui-grid-cell:not(:last-child) .ui-grid-vertical-bar{background-color:#ff0000}.a5-ord-grid__grid .ui-grid-header-cell:last-child .ui-grid-vertical-bar{background-color:#f0f0f0}.a5-ord-grid__grid .ui-grid-top-panel-background{background:#f0f0f0;background:-webkit-gradient(linear, left bottom, left top, color-stop(0, #f0f0f0), color-stop(1, #f0f0f0));background:-ms-linear-gradient(bottom, #f0f0f0, #f0f0f0);background:-moz-linear-gradient(center bottom, #f0f0f0 0, #f0f0f0 100%);background:-o-linear-gradient(#f0f0f0, #f0f0f0);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='@colorHeaderBg', endColorstr='@colorHeaderBg', GradientType=0)}.a5-ord-grid__grid .ui-grid-header{border-bottom:1px solid #ccc}.a5-ord-grid__grid .ui-grid-top-panel{background:#f0f0f0;background:-webkit-gradient(linear, left bottom, left top, color-stop(0, #f0f0f0), color-stop(1, #f0f0f0));background:-ms-linear-gradient(bottom, #f0f0f0, #f0f0f0);background:-moz-linear-gradient(center bottom, #f0f0f0 0, #f0f0f0 100%);background:-o-linear-gradient(#f0f0f0, #f0f0f0);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='@colorHeaderBg', endColorstr='@colorHeaderBg', GradientType=0)}.a5-ord-grid__grid .ui-grid-header-cell{border-color:#f0f0f0}.a5-ord-grid__grid input[type="text"].ui-grid-filter-input{border:1px solid #ccc}.a5-ord-grid__grid input[type="text"].ui-grid-filter-input:hover{border:1px solid #ccc}.a5-ord-grid__grid select.ui-grid-filter-select{border:1px solid #ccc}.a5-ord-grid__grid select.ui-grid-filter-select:hover{border:1px solid #ccc}.a5-ord-grid__grid .ui-grid-menu-button{background:#f0f0f0;border:1px solid #ccc}.a5-ord-grid__grid .ui-grid-menu-button .ui-grid-menu .ui-grid-menu-mid{border:1px solid #ccc}.a5-ord-grid__grid .ui-grid-menu .ui-grid-menu-inner{background:#f0f0f0;border:1px solid #ccc;-webkit-box-shadow:0 10px 20px rgba(0,0,0,0.2),inset 0 12px 12px -14px rgba(0,0,0,0.2);-moz-box-shadow:0 10px 20px rgba(0,0,0,0.2),inset 0 12px 12px -14px rgba(0,0,0,0.2);box-shadow:0 10px 20px rgba(0,0,0,0.2),inset 0 12px 12px -14px rgba(0,0,0,0.2)}.a5-ord-grid__grid .ui-grid-menu .ui-grid-menu-inner ul li:hover{-webkit-box-shadow:inset 0 0 14px rgba(0,0,0,0.2);-moz-box-shadow:inset 0 0 14px rgba(0,0,0,0.2);box-shadow:inset 0 0 14px rgba(0,0,0,0.2)}.a5-ord-grid__grid .ui-grid-menu .ui-grid-menu-inner ul li.ui-grid-menu-item-active{-webkit-box-shadow:inset 0 0 14px rgba(0,0,0,0.2);-moz-box-shadow:inset 0 0 14px rgba(0,0,0,0.2);box-shadow:inset 0 0 14px rgba(0,0,0,0.2);background-color:#cecece}.a5-ord-grid__grid .ui-grid-menu .ui-grid-menu-inner ul li:not(:last-child){border-bottom:1px solid #ccc}.a5-ord-grid__grid .ui-grid[dir=rtl] .ui-grid-cell:last-child,.a5-ord-grid__grid .ui-grid[dir=rtl] .ui-grid-header-cell:last-child{border-right:1px solid #ccc}.a5-ord-grid__grid .ui-grid[dir=rtl] .ui-grid-menu-button{background:#f0f0f0;border:1px solid #ccc}.a5-ord-grid__grid .no-rows-msg{position:absolute;top:25px;bottom:0;width:100%;background:rgba(0,0,0,0.2);color:#000;padding-top:5px;font-size:20px;text-align:center}.a5-ord-grid .a5-ord-grid__grid .ui-grid-row .ui-grid-cell.ui-grid-row-header-cell{background-color:#d8e9fd;border-right:none}.a5-ord-grid .a5-ord-grid__grid .ui-grid-pinned-container.ui-grid-pinned-container-left .ui-grid-header-cell:last-child{border-right:none}.a5-ord-grid .a5-ord-grid__grid .scrollFiller{border:none;background-color:#f0f0f2;-webkit-box-shadow:inset 0 24px 0 0 #ddd;-moz-box-shadow:inset 0 24px 0 0 #ddd;box-shadow:inset 0 24px 0 0 #ddd}.a5-ord-grid .a5-ord-grid__grid .ui-grid-header-cell .ui-grid-cell-contents{padding:5px 10px}.a5-ord-grid .a5-ord-grid__grid .ui-grid-header-cell .ui-grid-cell-contents i{display:none}.a5-ord-grid .a5-ord-grid__grid .ui-grid-row,.a5-ord-grid .a5-ord-grid__grid .ui-grid-cell,.a5-ord-grid .a5-ord-grid__grid .ui-grid-cell .ui-grid-vertical-bar{height:35px}.a5-ord-grid .a5-ord-grid__grid .ui-grid-cell-contents{padding:10px}.a5-ord-grid .a5-ord-grid__grid .ui-grid-cell-contents i{cursor:pointer}.b-order-grid__cell-link{color:#0082dc;cursor:pointer}.b-order-grid__cell-link:hover{text-decoration:underline;color:#dd6565}.expandableRow{background-color:#f0f0f2}.expandableRow .ui-grid-header{border-bottom:none}.expandableRow .a5-ord-grid-subgrid{height:60px;border:0}.expandableRow .a5-ord-grid-subgrid .ui-grid-header-cell{border-color:#ddd}.expandableRow .a5-ord-grid-subgrid .ui-grid-top-panel{background-color:#ddd;background:-webkit-gradient(linear, left bottom, left top, color-stop(0, #ddd), color-stop(1, #ddd));background:-ms-linear-gradient(bottom, #ddd, #ddd);background:-moz-linear-gradient(center bottom, #ddd 0, #ddd 100%);background:-o-linear-gradient(#ddd, #ddd);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='@colorHeaderBgSubGrid', endColorstr='@colorHeaderBgSubGrid', GradientType=0)}.expandableRow .a5-ord-grid-subgrid .ui-grid-viewport{background-color:#f0f0f2}.expandableRow .a5-ord-grid-subgrid .ui-grid-row:nth-child(odd) .ui-grid-cell{background-color:#f0f0f2}.expandableRow .a5-ord-grid-subgrid .ui-grid-row:nth-child(even) .ui-grid-cell{background-color:#f0f0f2}.b-section{margin:0;border:0;border-bottom:1px solid #ccc;border-radius:0}.b-section .accordion-toggle:hover{color:inherit}.b-section__title{margin-left:15px}.b-section__content{padding-left:20px}.b-section .schema-group-title{display:none}.b-section .panel-body{border:0}.b-section .panel-heading{padding:15px 0;background-color:white}.b-section .panel-title{height:40px;line-height:40px}.b-section .accordion-toggle{text-decoration:none}.b-market-selector{position:absolute;top:20px;left:20px;z-index:1}.a5-ord-add-order-actions-btn.addCommercialButton.add-commercial{width:105px;height:100px;cursor:pointer;overflow:hidden;-webkit-transition:width 1s ease-in-out;-o-transition:width 1s ease-in-out;transition:width 1s ease-in-out;-moz-transition:width 1s ease-in-out 1s ease-in-out;-webkit-transition:width 1s ease-in-out 1s ease-in-out;-ms-transition:width 1s ease-in-out 1s ease-in-out;-o-transition:width 1s ease-in-out 1s ease-in-out;transition:width 1s ease-in-out 1s ease-in-out}.a5-ord-add-order-actions-btn.addCommercialButton.add-commercial>.description{position:absolute;top:15px;width:300px;left:0;opacity:1;-webkit-transition:opacity 1s ease-in-out;-o-transition:opacity 1s ease-in-out;transition:opacity 1s ease-in-out;-moz-transition:opacity 1s ease-in-out 1s ease-in-out;-webkit-transition:opacity 1s ease-in-out 1s ease-in-out;-ms-transition:opacity 1s ease-in-out 1s ease-in-out;-o-transition:opacity 1s ease-in-out 1s ease-in-out;transition:opacity 1s ease-in-out 1s ease-in-out}.a5-ord-add-order-actions-btn.addCommercialButton.add-commercial>.buttons{position:absolute;top:30px;left:0;width:300px;opacity:0;-webkit-transition:opacity 1s ease-in-out;-o-transition:opacity 1s ease-in-out;transition:opacity 1s ease-in-out;-moz-transition:opacity 1s ease-in-out 1s ease-in-out;-webkit-transition:opacity 1s ease-in-out 1s ease-in-out;-ms-transition:opacity 1s ease-in-out 1s ease-in-out;-o-transition:opacity 1s ease-in-out 1s ease-in-out;transition:opacity 1s ease-in-out 1s ease-in-out}.a5-ord-add-order-actions-btn.addCommercialButton.add-commercial:hover{width:300px}.a5-ord-add-order-actions-btn.addCommercialButton.add-commercial:hover>.description{opacity:0}.a5-ord-add-order-actions-btn.addCommercialButton.add-commercial:hover>.buttons{opacity:1}.a5-ord-file-list button{margin-top:10px;margin-bottom:20px}.a5-ord-file-list table{border:1px solid #f1f1f1}.a5-ord-file-list tr{height:30px}.a5-ord-file-list tr:nth-child(odd){background-color:#f1f1f1}.a5-ord-file-list td,.a5-ord-file-list th{padding-left:5px;vertical-align:middle;width:75px}.a5-ord-file-list td:first-child,.a5-ord-file-list th:first-child{width:200px}.md-ordering-radio .b-carousel{position:relative;margin:0 80px;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;user-select:none}.md-ordering-radio .b-carousel:before,.md-ordering-radio .b-carousel:after{content:" ";display:table}.md-ordering-radio .b-carousel:after{clear:both}.md-ordering-radio .b-carousel:before,.md-ordering-radio .b-carousel:after{content:" ";display:table}.md-ordering-radio .b-carousel:after{clear:both}.md-ordering-radio .b-carousel__content{position:relative;padding-bottom:1px;overflow:hidden;height:100%}.md-ordering-radio .b-carousel__arrow{position:absolute;overflow:hidden;height:100%;width:15px}.md-ordering-radio .b-carousel__arrow__pointer{position:absolute;top:60%;margin-top:-15px;width:20px;height:20px;background-color:#939598;cursor:pointer;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(45deg)}.md-ordering-radio .b-carousel__arrow--left{left:-45px}.md-ordering-radio .b-carousel__arrow--left__pointer{left:5px}.md-ordering-radio .b-carousel__arrow--right{right:-45px}.md-ordering-radio .b-carousel__arrow--right__pointer{left:-10px}.md-ordering-radio .b-carousel__slider{position:relative;height:100%}.md-ordering-radio .b-carousel__footer{border-bottom:1px solid #ccc}.md-ordering-radio .b-carousel-item{position:absolute;background-color:white;bottom:0;left:0;cursor:pointer;-webkit-transition:all 500ms ease;-moz-transition:all 500ms ease;transition:all 500ms ease;-webkit-transition-delay:0ms;-moz-transition-delay:0ms;transition-delay:0ms;-webkit-box-shadow:3px 0 15px #000;-moz-box-shadow:3px 0 15px #000;box-shadow:3px 0 15px #000}.md-ordering-radio .b-carousel-item.s-selected{margin-bottom:-1px}.md-ordering-radio .b-carousel-item__img{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:normal;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:700%}.md-ordering-radio .b-carousel-item__img:before{content:"\e038"}.md-ordering-radio .b-carousel-item__content{padding:30px 30px 40px;position:relative;text-align:center}.md-ordering-radio .b-carousel-item__counter,.md-ordering-radio .b-carousel-item__remove{position:absolute;top:10px}.md-ordering-radio .b-carousel-item__counter{font-size:12px;left:30px}.md-ordering-radio .b-carousel-item__remove{right:10px}.md-ordering-radio .b-carousel-item__remove:hover{opacity:0.8}.md-ordering-radio .b-carousel-item__fields{font-size:12px;margin-top:10px;text-align:left}.md-ordering-radio .b-carousel-item__status{font-family:HelveticaNeue,arial,helvetica,clean,sans-serif;color:#7e7e7e;text-align:center}html,body{height:100%;color:#333333}.body{overflow:hidden;font-family:'Source Sans Pro',sans-serif}.main{display:table-cell;width:auto}.body:after,.main:after{clear:both;display:block;visibility:hidden;overflow:hidden;height:0 !important;line-height:0;font-size:xx-large;content:" x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x "}.page{margin:0 auto;width:1000px}.liquid{width:auto;margin:0}.font22{font-size:22px}.sticky-wrap{height:100%}.sticky-wrap .sticky-content{padding-bottom:40px}.sticky-footer{position:relative;clear:both;margin-top:-40px;height:40px}.login-body,.refresh-password-body{background-color:#ececec;background:-moz-linear-gradient(top, #ececec, #e9e9e9);background:-webkit-linear-gradient(top, #ececec, #e9e9e9);background:-o-linear-gradient(top, #ececec, #e9e9e9);background:-ms-linear-gradient(top, #ececec, #e9e9e9);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #ececec, #e9e9e9, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #ececec, #e9e9e9);background:#fff;background:-moz-radial-gradient(center, #fff, #e8e8e8);background:-webkit-radial-gradient(center, #fff, #e8e8e8);background:-o-radial-gradient(center, #fff, #e8e8e8);background:-ms-radial-gradient(center, #fff, #e8e8e8);background:radial-gradient(center, #fff, #e8e8e8);-webkit-box-shadow:0 -1px #FFFFFF inset, 0 -2px #999999 inset;-moz-box-shadow:0 -1px #FFFFFF inset, 0 -2px #999999 inset;box-shadow:0 -1px #FFFFFF inset, 0 -2px #999999 inset}.registration-body{background-repeat:no-repeat}.p-refresh-password{width:100%;max-width:700px;min-width:400px;margin:0 auto;padding:50px 0 90px 0}.p-login{width:800px;min-width:800px;height:auto;min-height:100%;margin:0 auto;padding-bottom:60px}.p-login .sticky-content{padding:50px 0px 0px 0px}.p-login .sticky-content .login-form{width:340px}.p-login .sticky-content .bottom-line{background-size:100% 1px, 100% 1px;background-position:50% 100%, 50% 100%;background-repeat:no-repeat,no-repeat;background-origin:border-box,padding-box;border-bottom:1px solid transparent;background-image:linear-gradient(0deg, rgba(0,0,0,0), rgba(0,0,0,0.1) 50%, rgba(0,0,0,0)),linear-gradient(0deg, rgba(255,255,255,0), rgba(255,255,255,0.8) 50%, rgba(255,255,255,0));background-image:-o-linear-gradient(0deg, rgba(0,0,0,0), rgba(0,0,0,0.1) 50%, rgba(0,0,0,0)),-o-linear-gradient(0deg, rgba(255,255,255,0), rgba(255,255,255,0.8) 50%, rgba(255,255,255,0));background-image:-ms-linear-gradient(0deg, rgba(0,0,0,0), rgba(0,0,0,0.1) 50%, rgba(0,0,0,0)),-ms-linear-gradient(0deg, rgba(255,255,255,0), rgba(255,255,255,0.8) 50%, rgba(255,255,255,0));background-image:-moz-linear-gradient(0deg, rgba(0,0,0,0), rgba(0,0,0,0.1) 50%, rgba(0,0,0,0)),-moz-linear-gradient(0deg, rgba(255,255,255,0), rgba(255,255,255,0.8) 50%, rgba(255,255,255,0));background-image:-webkit-linear-gradient(0deg, rgba(0,0,0,0), rgba(0,0,0,0.1) 50%, rgba(0,0,0,0)),-webkit-linear-gradient(0deg, rgba(255,255,255,0), rgba(255,255,255,0.8) 50%, rgba(255,255,255,0))}.p-login .sticky-content .sign-text{font-size:29px}.p-login .sticky-content .sign-text .valign-super{font-size:10px}.p-login .sticky-content .icon-field:before{content:"";height:16px;opacity:0.8;position:absolute;left:15px;top:14px;width:16px}.p-login .sticky-content .login.icon-field:before{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -1408px transparent;opacity:0.6}.p-login .sticky-content .password.icon-field:before{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -1504px transparent}.p-login .sticky-content .ui-input{padding-left:50px}.p-login .sticky-content .forgot a{text-decoration:none;color:#333}.p-registration{height:auto;margin:auto;padding-left:206px;padding-top:110px;width:750px;padding-bottom:100px}.p-registration .sticky-content .logo-block{background-color:#0082dc;color:white;height:100%;position:absolute;background-repeat:no-repeat}.p-registration .sticky-content .logo-block .main-logo{position:relative;padding:135px 25px 0 40px}.p-registration .sticky-content .form-block{padding-top:27px;background:none repeat scroll 0 0 #f1f1f1}.p-registration .sticky-content .form-block .darker{background-color:#dedede}.p-body{min-width:960px;width:100%;height:auto;min-height:100%}.p-body .header{height:140px}.p-body .header.default{background-color:#0092d6}.p-body .header .main-menu-panel{height:32px;overflow:visible;background-color:#3f4345;background:-moz-linear-gradient(0, #3f4345, #373b3d);background:-webkit-linear-gradient(0, #3f4345, #373b3d);background:-o-linear-gradient(0, #3f4345, #373b3d);background:-ms-linear-gradient(0, #3f4345, #373b3d);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #3f4345, #373b3d, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(0, #3f4345, #373b3d);border-bottom:1px solid #333;color:#d2dadc;text-shadow:0 -1px #000}.p-body .header .main-menu-panel .app-menu li{height:32px;display:inline-block}.p-body .header .main-menu-panel .app-menu li .link{border-right:1px solid #333;-webkit-box-shadow:1px 0 0 0 #44494a;-moz-box-shadow:1px 0 0 0 #44494a;box-shadow:1px 0 0 0 #44494a;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;color:#d2dadc;text-decoration:none;display:block;line-height:32px;vertical-align:middle;text-align:center;min-width:70px;padding:0 10px}.p-body .header .main-menu-panel .app-menu li .link.active{background-color:#303030;background:-moz-linear-gradient(top, #303030, #303030);background:-webkit-linear-gradient(top, #303030, #303030);background:-o-linear-gradient(top, #303030, #303030);background:-ms-linear-gradient(top, #303030, #303030);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #303030, #303030, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #303030, #303030);-webkit-box-shadow:1px -1px 0px 0 #424547 inset, -1px 1px 1px 0 rgba(0, 0, 0, 0.5) inset,  1px 0px 0 0 #44494A;-moz-box-shadow:1px -1px 0px 0 #424547 inset, -1px 1px 1px 0 rgba(0, 0, 0, 0.5) inset,  1px 0px 0 0 #44494A;box-shadow:1px -1px 0px 0 #424547 inset, -1px 1px 1px 0 rgba(0, 0, 0, 0.5) inset,  1px 0px 0 0 #44494A}.p-body .header .main-menu-panel .ui-counter{text-shadow:1px 1px rgba(0,0,0,0.2)}.p-body .header .main-menu-panel .right-menu-item{border-left:1px solid #333;-webkit-box-shadow:-1px 0 0 0 #44494a;-moz-box-shadow:-1px 0 0 0 #44494a;box-shadow:-1px 0 0 0 #44494a}.p-body .header .vmiddle{display:table-cell;line-height:32px;vertical-align:middle;height:32px}.p-body .header.easyshare{height:33px;position:relative;z-index:1}.app-tabs{-webkit-box-shadow:0 3px 3px 0 #d6d6d6;-moz-box-shadow:0 3px 3px 0 #d6d6d6;box-shadow:0 3px 3px 0 #d6d6d6}.app-tabs .line{line-height:34px;vertical-align:middle;border-bottom:1px solid #cccccc;background-color:#eee;-webkit-box-shadow:0 1px 0 0 #CCCCCC inset, 0 2px 0 0 #FFFFFF inset;-moz-box-shadow:0 1px 0 0 #CCCCCC inset, 0 2px 0 0 #FFFFFF inset;box-shadow:0 1px 0 0 #CCCCCC inset, 0 2px 0 0 #FFFFFF inset}.app-tabs .line:last-child{margin-bottom:3px}.app-tabs .line .title{color:#333;text-shadow:0 2px #FFFFFF}.app-tabs .line a{display:inline-block;line-height:32px;padding:0 20px;min-width:70px;text-align:center;vertical-align:middle;color:#333333;text-decoration:none;margin:2px -1px}.app-tabs .line a:hover{background-color:#e0e0e0}.app-tabs .line a.active{background-color:#e0e0e0;border-right:1px solid #ccc;border-left:1px solid #ccc}.app-tabs .line:first-child{border-bottom:none}.brightBox{width:600px;margin:0 auto}.user-menu-container{position:relative;height:32px}.header-logo-container{display:table-cell;height:105px;vertical-align:middle}.user-menu-swither{display:inline-block;overflow:hidden;margin:0px;height:38px}.user-menu-swither .dijitButtonNode{border:none}.user-menu-swither .dijitButtonContents.dijitHasDropDownOpen{background-color:#fff;-webkit-box-shadow:0 1px 1px 0 #ccc;-moz-box-shadow:0 1px 1px 0 #ccc;box-shadow:0 1px 1px 0 #ccc;z-index:1001}.user-menu-swither .dijitButtonContents.dijitHasDropDownOpen .user-name{text-shadow:0 0px #FFFFFF;color:#333}.user-menu-swither .dijitButtonText{font-weight:bold;display:inline-block;height:38px;vertical-align:middle;padding:0 20px 0 10px;border:none;position:relative}.user-menu-content li.right{text-align:right;color:#cccccc}.user-menu-content li a{display:block;cursor:pointer;line-height:29px;vertical-align:middle;text-decoration:none;font-size:11px}.user-menu-content li a:hover{color:#00ADE3;background-color:#eef4f6 !important}.app-swither-container{width:65px;height:32px;position:relative;border-right:1px solid #333;-webkit-box-shadow:1px 0 0 0 #44494a;-moz-box-shadow:1px 0 0 0 #44494a;box-shadow:1px 0 0 0 #44494a}.app-swither{position:absolute;display:inline-block;overflow:hidden;margin:0px}.app-swither .dijitButtonNode{border:none}.app-swither .dijitButtonText{display:inline-block;height:38px;width:65px;border:none;position:relative}.app-swither .dijitButtonText:before{position:absolute;top:8px;left:12px;content:'';background:url('/5.16.2.5993/frontend/images/apps_button.png') 0 0 no-repeat;width:42px;height:16px}.app-swither .dijitButtonText.dijitHasDropDownOpen{background-color:#fff;-webkit-box-shadow:0 1px 1px 1px #ccc;-moz-box-shadow:0 1px 1px 1px #ccc;box-shadow:0 1px 1px 1px #ccc;z-index:1001}.app-swither .dijitButtonText.dijitHasDropDownOpen:before{background-position:0 -16px}.footer{height:60px;margin-top:-60px;bottom:0px;width:100%;background-color:#202020;-webkit-box-shadow:0 -1px 0 rgba(193, 193, 193, 0.8), 0 -2px #666666;-moz-box-shadow:0 -1px 0 rgba(193, 193, 193, 0.8), 0 -2px #666666;box-shadow:0 -1px 0 rgba(193, 193, 193, 0.8), 0 -2px #666666;position:relative;z-index:10}.footer.easyshare{height:50px;margin-top:-50px;background-color:#e6eef2}.footer .footer_logo{height:25px;display:inline-block}.footer.login{height:60px;margin-top:-60px;background-color:#FFFFFF;-webkit-box-shadow:0 1px #FFFFFF inset, 0 2px #999999 inset,  0 -3px 4px #e3e3e3 ;-moz-box-shadow:0 1px #FFFFFF inset, 0 2px #999999 inset,  0 -3px 4px #e3e3e3 ;box-shadow:0 1px #FFFFFF inset, 0 2px #999999 inset,  0 -3px 4px #e3e3e3 }.footer.login .vmiddle{display:table-cell;vertical-align:middle;height:60px}.footer .content{font-size:12px;font-weight:bold;margin:0 auto;text-align:right;width:956px}.p-content{padding-bottom:60px}.simple-search{padding:40px 0 0 0;position:relative;z-index:101}.simple-search .search-controller{width:520px;min-width:60%;line-height:25px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.simple-search .search-controller .search{position:absolute;left:1px;top:1px;padding:0px 0px 0px 0px;-webkit-border-radius:3px 0 0 3px;-moz-border-radius:3px 0 0 3px;border-radius:3px 0 0 3px;min-width:115px;border-right:1px solid #e9e9e9;-webkit-box-shadow:1px 0 0 #ccc;-moz-box-shadow:1px 0 0 #ccc;box-shadow:1px 0 0 #ccc}.simple-search .search-controller .search .dijitSelect{background-color:#e1e1e1;background:-moz-linear-gradient(top, #e1e1e1, #f6f6f6);background:-webkit-linear-gradient(top, #e1e1e1, #f6f6f6);background:-o-linear-gradient(top, #e1e1e1, #f6f6f6);background:-ms-linear-gradient(top, #e1e1e1, #f6f6f6);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #e1e1e1, #f6f6f6, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #e1e1e1, #f6f6f6)}.simple-search .search-controller .search .dijitSelect .dijitButtonNode{height:28px;padding-left:5px;text-align:center;font-size:11px}.simple-search .search-controller .search .dijitSelect.actionBar{color:#3b4043;font-weight:normal}.simple-search .search-controller .search .dijitSelect.actionBar .dijitArrowButton{background:none !important;width:20px}.simple-search .search-controller .search .dijitSelect.actionBar .dijitArrowButton .dijitArrowButtonInner{margin:1px 0 0 0px}.simple-search .search-controller .search .dijitMenuItemLabel{font-size:13px}.simple-search .search-controller .search-type-box{position:relative;height:30px;width:100%;padding-left:10px;box-sizing:border-box;border:1px solid #ccc;border-left:0px;background-color:white;color:#757575;line-height:30px;font-size:13px}.simple-search .search-controller .search-type-box.info-tool .lib-tooltip{max-width:none;min-width:0;line-height:15px;width:auto;white-space:nowrap;padding:5px;right:0px;left:auto;display:table}.simple-search .search-cleaner{position:absolute;top:7px;right:6px}.simple-search .search-cleaner .icon-remove{display:inline-block;height:16px;width:16px;line-height:16px;background:url('/5.16.2.5993/frontend/images/remove.png') 50% 50% no-repeat}.simple-search.files-actions{padding:0px}.simple-search.files-actions input.ui-input[type="text"]{padding-left:10px;background-color:#f6f6f6}.simple-search.files-actions input.ui-input[type="text"]:focus{outline:none;-webkit-box-shadow:0 0 1px rgba(0,130,220,0.6);-moz-box-shadow:0 0 1px rgba(0,130,220,0.6);box-shadow:0 0 1px rgba(0,130,220,0.6);border-color:rgba(0,130,220,0.6);background-color:#ffffff}.simple-search.files-actions input.ui-input[type="text"]:hover{background-color:#ffffff;border-color:rgba(0,130,220,0.6);-webkit-box-shadow:0 0 1px rgba(0,130,220,0.6);-moz-box-shadow:0 0 1px rgba(0,130,220,0.6);box-shadow:0 0 1px rgba(0,130,220,0.6);-webkit-transition-duration:.25s;-moz-transition-duration:.25s;transition-duration:.25s}.simple-search.files-actions .search-button{border:none;border-left:1px solid #cccccc;height:28px;margin-left:-32px;margin-top:1px;position:relative;z-index:2}.search-button{-webkit-border-radius:0 3px 3px 0;-moz-border-radius:0 3px 3px 0;border-radius:0 3px 3px 0;min-width:30px;margin-left:-2px}.search-button .icon-search{filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=0.6, enabled=1)";opacity:.6}.search-sidebar{background-color:#f5f5f5;border:1px solid #cccccc;border-left:none;min-height:490px}.search-results{-webkit-box-shadow:inset 0 2px 2px -1px #ccc;-moz-box-shadow:inset 0 2px 2px -1px #ccc;box-shadow:inset 0 2px 2px -1px #ccc}.search-results .title-min-height{min-height:80px}.search-results .title-2l{min-height:55px}.search-results .title-3l{min-height:75px}.search-results .title-4l{min-height:110px}.search_results_item{height:70px;border-bottom:1px solid #cacaca;overflow:hidden}.search_results_item .preview{width:70px;text-align:right;height:50px}.search_results_item .preview img{max-width:70px;max-height:50px}.search_results_item a{text-decoration:none}.project-result:hover{background-color:#d8e8fc}.search_tooltip{position:absolute;top:55px;right:0px;background-color:#ffffff;border:1px solid #cccccc;-webkit-box-shadow:0 0 5px 1px #ccc;-moz-box-shadow:0 0 5px 1px #ccc;box-shadow:0 0 5px 1px #ccc;z-index:100;width:400px}.search_tooltip .scrollable_area{max-height:300px;overflow-y:auto}.search_tooltip.hide-tooltip{border:none;-webkit-box-shadow:0 0 #ccc;-moz-box-shadow:0 0 #ccc;box-shadow:0 0 #ccc}.search_tooltip.hide-tooltip .search-results{display:none}.search_tooltip .result-block{background-color:#f0f0f0;-webkit-box-shadow:-4px -2px 2px -3px #CCCCCC inset, 0 1px 0 0 #FFFFFF inset;-moz-box-shadow:-4px -2px 2px -3px #CCCCCC inset, 0 1px 0 0 #FFFFFF inset;box-shadow:-4px -2px 2px -3px #CCCCCC inset, 0 1px 0 0 #FFFFFF inset}.search_tooltip .result-item{height:34px}.search_tooltip .result-item .vmiddle{display:table-cell;vertical-align:middle;height:34px;line-height:13px}.search_tooltip .result-item .avatar img{height:34px;width:34px}.search_tooltip .result-item:hover{background-color:#d8e8fc}.search_tooltip.show-search-location{top:60px}.search_tooltip.show-search-location .search-location{display:block}.search_tooltip .search-location{display:none;width:303px;height:30px;position:absolute;top:-32px;right:-1px;background-color:#f0f0f0;border:1px solid #ccc}.search_tooltip .search-location .vmiddle{height:30px;display:table-cell;vertical-align:middle}.search_tooltip .search-location .icon-arrow-down{filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=0.7, enabled=1)";opacity:.7}.search_tooltip .search-location .global .global{display:none}.search_tooltip .search-location .global .current{display:inline-block}.search_tooltip .search-location .current{display:none}.search_tooltip .arrow{top:-40px;position:absolute;right:45%;margin-left:20px;width:40px;height:40px;overflow:hidden}.search_tooltip .arrow:after{content:"";position:absolute;width:20px;height:20px;background:#ffffff;transform:rotate(45deg);-ms-transform:rotate(45deg);-moz-transform:rotate(45deg);-webkit-transform:rotate(45deg);-o-transform:rotate(45deg);top:30px;left:10px;-webkit-box-shadow:0 0 5px 1px #ccc;-moz-box-shadow:0 0 5px 1px #ccc;box-shadow:0 0 5px 1px #ccc}.search_tooltip.projects_find{-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;top:35px;left:0px}.search_tooltip.projects_find .arrow{width:20px;height:20px;top:-20px;left:10px}.search_tooltip.projects_find .arrow:after{width:10px;height:20px;top:15px;left:5px}.border-box-sizing{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.checkbox-group label{display:block;margin-bottom:5px;background:url("/5.16.2.5993/frontend/images/tmpl_opt_icons.png") no-repeat 22px 6px}.checkbox-group input{margin-right:31px}.checkbox-group label.cloneFiles{background-position:22px -19px}.checkbox-group label.cloneTeam{background-position:22px -43px}.suggestor .dijitInputField{width:250px}.accessRuleSelect .dijitInputField{width:120px;overflow:hidden}.collapser .collapse-body{-moz-transition:height .25s ease-in-out;-webkit-transition:height .25s ease-in-out;-ms-transition:height .25s ease-in-out;-o-transition:height .25s ease-in-out;transition:height .25s ease-in-out;overflow-y:hidden}.collapser .arrow{top:0}.expand-panel [data-role="arrow"]{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -48px -737px transparent;cursor:pointer;display:inline-block;height:16px;width:16px}.expand-panel [data-role="arrow"].active{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -48px -656px transparent}.expand-panel [data-role="panel"].collapsed{display:none}.wrap-normal{word-wrap:normal}ul.tree-root{max-height:500px;overflow-y:auto;overflow-x:hidden}.unfolding-list{max-height:500px;overflow-y:auto;overflow-x:hidden}.subSubTitle{font-size:11px;color:#999}.myClassSetMinWidthToZero{min-width:0px}.fullHeight{top:0;bottom:0}.schema_field.hyperlink .linkText{margin-right:-28px}.schema_field textarea{min-height:auto}.schema_field pre{font-family:'Source Sans Pro',sans-serif;font-size:14px;font-weight:normal;margin:1px 0;line-height:normal}.schema_field label .caption{font-weight:bold;display:inline-block;vertical-align:top}.schema_field label,.schema_field .label{line-height:25px}.userSettingsForm .schema-field{padding-bottom:20px}.schema_field_wrapper label,.add-usage-rights label{font-weight:normal}.schema_field_wrapper .required_field,.add-usage-rights .required_field{font-weight:bold;position:relative}.schema_field_wrapper .required_field:after,.add-usage-rights .required_field:after{content:"*";font-weight:bold;color:#0082dc;position:absolute;padding-left:5px;width:10px;height:10px}.advertiserBlock .schema_field_wrapper{width:50%;float:left;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0 0 0 10px}.advertiserBlock .schema_field_wrapper:nth-child(odd){padding:0 10px 0 0}.campaignDates .schema_field_wrapper{width:50%;float:left;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0 0 0 10px}.campaignDates .schema_field_wrapper:nth-child(odd){padding:0 10px 0 0}.fileViewForm .schema_field label,.fileViewForm .schema_field .label{line-height:20px}.fileViewForm .schema_field label div.value,.fileViewForm .schema_field .label div.value{font-size:13px;font-weight:normal;display:inline;word-break:normal;text-align:justify}.fileViewForm .schema_field.empty{display:none}.projectViewForm .schema_field label,.projectViewForm .schema_field .label{line-height:26px}.projectViewForm .schema_field label div.value,.projectViewForm .schema_field .label div.value{font-size:13px;font-weight:bold;display:inline-block;color:#0082DC}.dashboard-box-collapsed{display:none}.h7{font-size:12px}.mt7{margin-top:7px}.icon-folder-white{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -48px -753px transparent}.icon-white-play{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -32px -335px transparent;display:inline-block;height:16px;line-height:16px;width:16px}.icon-gear-node{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -32px -352px transparent;display:inline-block;height:16px;line-height:16px;width:16px}.icon-loupe{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -48px -769px transparent}.icon-circle-arrow-up-white{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -48px -786px transparent}.icon-reels-white{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -48px -803px transparent}.icon-arrow-right-white{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -48px -819px transparent}.icon-search-estimate{background:url("/5.16.2.5993/frontend/images/adpath/iconsearch.png") no-repeat scroll 0 0 transparent;display:inline-block;height:32px;width:32px;line-height:32px}.icon-search-po{background:url("/5.16.2.5993/frontend/images/adpath/iconsearch.png") no-repeat scroll 0 -33px transparent;display:inline-block;height:32px;width:32px;line-height:32px}.icon-search-project{background:url("/5.16.2.5993/frontend/images/adpath/iconsearch.png") no-repeat scroll 0 -66px transparent;display:inline-block;height:32px;width:32px;line-height:32px}.icon-export-activity{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -1457px transparent}.icon-new-campaign{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -48px -112px transparent}.icon-border-minus{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -48px -128px transparent}.icon-border-plus{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -48px -144px transparent}.icon-border-loading{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/wam/Content/Images/loadingActivity.gif") no-repeat scroll transparent}.icon-block-edit{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -48px -160px transparent}.icon-add-status-note{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -1600px transparent}.icon-status-draft{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -48px -176px transparent}.icon-status-not-started{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -48px -192px transparent}.icon-status-started{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -48px -208px transparent}.icon-status-completed{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -48px -224px transparent}.icon-status-hold{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -48px -240px transparent}.icon-status-closed{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -48px -256px transparent}.icon-status-reopened{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -48px -272px transparent}.icon-status-cancelled{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -48px -288px transparent}.icon-jobs{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -48px -304px transparent}.icon-tasks,.icon-accepted{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -48px -320px transparent}.icon-activities{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -48px -336px transparent}.icon-export{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -48px -352px transparent}.icon-adpath-arrow-left{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -48px -368px transparent}.icon-adpath-arrow-right{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -48px -384px transparent}.icon-milestone{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -48px -400px transparent}.icon-unlocked{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -48px -464px transparent}.icon-approval-reject{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -48px -480px transparent}.icon-approval-pending{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -48px -512px transparent}.icon-approval-cancelled{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -48px -528px transparent}.icon-approval-rejected-red{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -48px -544px transparent}.icon-star{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -48px -560px transparent}.icon-star-gold{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -48px -576px transparent}.icon-buildings{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -48px -608px transparent}.icon-circle-arrow-right-white{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -48px -624px transparent}.icon-circle-arrow-right-blue{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -48px -640px transparent}.icon-approval-accept{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/adpath/adpath-icons32x32.png") no-repeat scroll 0 -64px transparent;width:21px;height:20px}.icon-approval-accept-green{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/adpath/adpath-icons32x32.png") no-repeat scroll 0 -96px transparent;width:21px;height:20px}.icon-approval-user{display:inline-block;height:32px;width:32px;line-height:32px;background:url("/5.16.2.5993/frontend/images/adpath/adpath-icons32x32.png") no-repeat scroll 0 -128px transparent}.icon-approval-user-approved{display:inline-block;height:32px;width:32px;line-height:32px;background:url("/5.16.2.5993/frontend/images/adpath/adpath-icons32x32.png") no-repeat scroll 0 -160px transparent}.icon-reels{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -1744px transparent}.icon-new-documents{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -48px -688px transparent}.icon-delete{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -48px -96px transparent}.icon-checkbox-checked{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -48px -720px transparent}.icon-checkbox-delete{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -48px -704px transparent}.icon-trash-bin{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -48px -869px transparent}.icon-status-Approved{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -48px -835px transparent}.icon-status-Cancelled{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -48px -528px transparent}.icon-status-Rejected{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -48px -544px transparent}.icon-status-Pending,.icon-status-Expired,.icon-status-Hidden{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -832px transparent}.icon-button-approve{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -48px -852px transparent;display:inline-block;height:16px;line-height:16px;width:16px}.icon-button-reject{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -48px -592px transparent;display:inline-block;height:16px;line-height:16px;width:16px}.project-status{width:16px;height:16px;-webkit-border-radius:8px;-moz-border-radius:8px;border-radius:8px;-webkit-box-shadow:-1px 1px 2px 0 #9d9999 inset;-moz-box-shadow:-1px 1px 2px 0 #9d9999 inset;box-shadow:-1px 1px 2px 0 #9d9999 inset;display:inline-block}.project-status.green{background-color:#a9c457}.project-status.blue{background-color:#4981d8}.project-status.red{background-color:#b03636}.project-lemilest{color:white}.project-lemilest.green{background-color:#00723d}.project-lemilest.blue{background-color:#4981d8}.project-lemilest.red{background-color:#b03636}.icon-drag{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -48px -496px transparent}.nav-sidebar .itemsList .row-container{background-color:#fff!important}.nav-sidebar .itemsList .row-container .row A{color:#333;text-decoration:none}.nav-sidebar .itemsList .row-container .row:hover{background-color:#d8e8fc}.nav-sidebar .itemsList .row-container .subList .row:hover{background-color:#d8e8fc}.nav-sidebar{background-color:#FFFFFF;border-left:1px solid #CCCCCC;border-right:1px solid #CCCCCC;overflow:hidden}.nav-sidebar .itemsList .subList .row-switcher{margin-left:16px}.nav-sidebar .itemsList .subList .subList .row-switcher{margin-left:32px}.nav-sidebar .itemsList .subList .subList .subList .row-switcher{margin-left:48px}.nav-sidebar-width{width:240px}.nav-sidebar-height{min-height:650px}.itemsList .headers{overflow:hidden}.itemsList .headers .cell:last-child{-webkit-box-shadow:-1px 0 0px 0px #cecece inset, 1px 0 0 0 #f9f9f9 inset;-moz-box-shadow:-1px 0 0px 0px #cecece inset, 1px 0 0 0 #f9f9f9 inset;box-shadow:-1px 0 0px 0px #cecece inset, 1px 0 0 0 #f9f9f9 inset}.itemsList .headers .cell.first-cell{-webkit-box-shadow:1px 0 0 0 #CECECE inset, 2px 0 0 0 #F9F9F9 inset, -1px 0 0 0 #CECECE inset;-moz-box-shadow:1px 0 0 0 #CECECE inset, 2px 0 0 0 #F9F9F9 inset, -1px 0 0 0 #CECECE inset;box-shadow:1px 0 0 0 #CECECE inset, 2px 0 0 0 #F9F9F9 inset, -1px 0 0 0 #CECECE inset}.itemsList .row{min-height:60px;max-height:60px}.itemsList .row .vmiddle{display:table-cell;vertical-align:middle;height:60px}.itemsList .row.lower-height{min-height:34px;max-height:34px}.itemsList .row.lower-height .vmiddle{height:34px}.itemsList .row-container .subList .row{min-height:30px;max-height:30px}.itemsList .row-container .subList .row .vmiddle{display:table-cell;vertical-align:middle;height:30px}.itemsList .row-container .subList .row.darker{background-color:#eee6de}.itemsList .row-container .subList .row.lighter{background-color:white}.itemsList .row-container .subList .row:hover{background-color:#fafae3}.itemsList .row-container .subList .row.selected,.itemsList .row-container .subList .row.checked{background-color:#d8e8fc}.itemsList .row-container .row-switcher{display:inline-block;height:16px;width:16px;line-height:16px;background:none}.itemsList .row-container .row-switcher.opened{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -48px -128px transparent}.itemsList .row-container .row-switcher.closed{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -48px -144px transparent}.itemsList .row-container.opened{padding:15px 0px}.itemsList .row-container.opened .row{min-height:30px;max-height:30px}.itemsList .row-container.opened .row .vmiddle{display:table-cell;vertical-align:middle;height:30px}.itemsList .row-container.opened>.subList{display:block}.itemsList .row-container:nth-child(even){background-color:#f1f1f1}.itemsList .row-container.selected,.itemsList .row-container.checked{background-color:#d8e8fc}.itemsList .row-container:hover .row-edit-button,.itemsList .row-container.selected .row-edit-button{visibility:visible}.itemsList .row-container:hover .row-button,.itemsList .row-container.selected .row-button{display:block}.itemsList .row-container.dotted{position:relative}.itemsList .row-container.dotted:before{content:"";position:absolute;width:16px;height:16px;top:18px;left:4px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -48px -496px transparent}.itemsList .row-container .schedule-divider.left{-webkit-box-shadow:-1px 0 0px 0px #cecece inset, 1px 0 0 0 #ffffff, -18px 0 12px -10px #ddd inset;-moz-box-shadow:-1px 0 0px 0px #cecece inset, 1px 0 0 0 #ffffff, -18px 0 12px -10px #ddd inset;box-shadow:-1px 0 0px 0px #cecece inset, 1px 0 0 0 #ffffff, -18px 0 12px -10px #ddd inset}.itemsList .row-container .schedule-divider.right{-webkit-box-shadow:18px 0 12px -10px #ddd inset;-moz-box-shadow:18px 0 12px -10px #ddd inset;box-shadow:18px 0 12px -10px #ddd inset}.itemsList .row-button{position:absolute;top:50%;margin-top:-13px;display:none;padding:0px 10px}.itemsList .row-button span{margin-top:3px}.itemsList .row-button.edit{right:70px}.itemsList .row-button.delete{right:20px}.itemsList .row-edit-button{position:absolute;top:50%;margin-top:-13px;right:20px;visibility:hidden
		padding: 0px 10px}.itemsList .row-edit-button span{margin-top:3px}.itemsList .list-height{min-height:660px}.itemsList.onecolorbg .row-container:nth-child(odd){background-color:#fff}.display-table{display:table}.border-all{border:1px solid #CCC;-webkit-box-shadow:0px 0px 0px 1px #fff;-moz-box-shadow:0px 0px 0px 1px #fff}.border-all.shadow{-webkit-box-shadow:0 0 0 1px #fff;-moz-box-shadow:0 0 0 1px #fff;box-shadow:0 0 0 1px #fff}.border-top-dark{border-top:1px solid black}.border-top-dark.shadow{-webkit-box-shadow:0 1px 0 0 #fff inset;-moz-box-shadow:0 1px 0 0 #fff inset;box-shadow:0 1px 0 0 #fff inset}.border-top{border-top:1px solid #ccc}.border-top.shadow{-webkit-box-shadow:0 1px 0 0 #fff inset;-moz-box-shadow:0 1px 0 0 #fff inset;box-shadow:0 1px 0 0 #fff inset}.border-bottom{border-bottom:1px solid #ccc}.border-bottom.shadow{-webkit-box-shadow:0 1px 0 0 #fff;-moz-box-shadow:0 1px 0 0 #fff;box-shadow:0 1px 0 0 #fff}.border-bold{border:2px #cdcdcd solid}.border-dashed{border:2px #cdcdcd dashed}.advanced-view-block{display:inline-block;background-color:#e0e0e0;border-bottom:2px solid #dadada;border-top:2px solid white;padding-top:5px;padding-bottom:5px;padding-right:10px;padding-left:10px}.central-block{margin:0px 240px 0px 240px}.new-event-block{border:1px solid #ccc;-webkit-box-shadow:0 1px 1px #ccc inset;-moz-box-shadow:0 1px 1px #ccc inset;box-shadow:0 1px 1px #ccc inset;padding:7px 0px}.slide-control{position:relative}.slide-control:after{content:"";height:16px;position:absolute;right:-20px;top:0px;width:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -1872px transparent;cursor:pointer}.slide-control.active:after{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -1888px transparent}.filters-block{border:1px solid #ccc;-webkit-box-shadow:0 0 0 1px #fff;-moz-box-shadow:0 0 0 1px #fff;box-shadow:0 0 0 1px #fff;height:40px}.filters-block .border-bold{border:2px #cdcdcd solid}.filters-block .border-dashed{border:2px #cdcdcd dashed}.filters-block .vmiddle{height:40px;display:table-cell;vertical-align:middle}.status-icon-wrapper{display:inline-block;padding:3px;border:1px solid #ccc;-webkit-border-radius:11px;-moz-border-radius:11px;border-radius:11px}.filter-line{height:32px}.filter-line .vmiddle{height:32px;display:table-cell;vertical-align:middle}.search-container:after{filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=0.8, enabled=1)";opacity:.8}.search-container.large{width:230px}.search-container.large:after{top:7px}.search-container.large .ui-input.filter,.search-container.large .ui-input.folder-search{width:230px;height:30px;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px}.list-controls.small .vmiddle{height:50px}.schedule-block{min-width:1780px}.schedule-block .row{min-height:50px;max-height:50px}.schedule-block .row .vmiddle{height:50px}.schedule-divider.left{-webkit-box-shadow:-1px 0 0px 0px #cecece inset, 1px 0 0 0 #ffffff, -18px 0 12px -10px #ddd inset;-moz-box-shadow:-1px 0 0px 0px #cecece inset, 1px 0 0 0 #ffffff, -18px 0 12px -10px #ddd inset;box-shadow:-1px 0 0px 0px #cecece inset, 1px 0 0 0 #ffffff, -18px 0 12px -10px #ddd inset}.schedule-divider.right{-webkit-box-shadow:18px 0 12px -10px #ddd inset;-moz-box-shadow:18px 0 12px -10px #ddd inset;box-shadow:18px 0 12px -10px #ddd inset}.size1of10{width:10%}.schedule-calendar .monthes{height:13px;font-size:11px}.schedule-calendar .days{height:17px}.schedule-calendar .data-block{-webkit-box-shadow:-1px 0 0px 0px #cecece inset, 1px 0 0 0 #ffffff;-moz-box-shadow:-1px 0 0px 0px #cecece inset, 1px 0 0 0 #ffffff;box-shadow:-1px 0 0px 0px #cecece inset, 1px 0 0 0 #ffffff}.schedule-calendar .data-block:last-child{-webkit-box-shadow:0 0 0 0 #fff inset;-moz-box-shadow:0 0 0 0 #fff inset;box-shadow:0 0 0 0 #fff inset}.schedule-scroller{overflow-x:scroll}.schedule-timeline-row{height:60px;width:100%;position:relative}.schedule-timeline-row .holiday{height:60px;top:0px;background:#ddd;position:absolute;z-index:1;filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=0.5, enabled=1)";opacity:.5}.schedule-timeline-row:nth-child(even){background-color:#f1f1f1}.schedule-timeline-row:hover{background-color:#fafae3}.schedule-timeline-row.selected,.schedule-timeline-row.checked{background-color:#d8e8fc}.schedule-timeline-row .schedule-project-timeline{position:absolute;height:30px;top:10px}.schedule-timeline-row .schedule-project-timeline .bracket{display:none;bottom:-10px;position:absolute;width:20px;height:10px;overflow:hidden}.schedule-timeline-row .schedule-project-timeline .bracket.left{left:0px}.schedule-timeline-row .schedule-project-timeline .bracket.left:after{left:0px;transform:rotate(60deg);-ms-transform:rotate(60deg);-moz-transform:rotate(60deg);-webkit-transform:rotate(60deg);-o-transform:rotate(60deg)}.schedule-timeline-row .schedule-project-timeline .bracket.right{right:0px}.schedule-timeline-row .schedule-project-timeline .bracket.right:after{right:0px;transform:rotate(120deg);-ms-transform:rotate(120deg);-moz-transform:rotate(120deg);-webkit-transform:rotate(120deg);-o-transform:rotate(120deg)}.schedule-timeline-row .schedule-project-timeline .bracket:after{content:"";height:30px;position:absolute;top:-20px;width:15px}.schedule-timeline-row .schedule-project-timeline.parent .bracket{display:block}.schedule-timeline-row .schedule-project-timeline.on-holiday{height:10px;top:20px}.schedule-timeline-row .schedule-project-timeline.started{border-top:1px solid #4780d3;background-color:#5da7e4;background:-moz-linear-gradient(top, #5da7e4, #3f72d3);background:-webkit-linear-gradient(top, #5da7e4, #3f72d3);background:-o-linear-gradient(top, #5da7e4, #3f72d3);background:-ms-linear-gradient(top, #5da7e4, #3f72d3);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #5da7e4, #3f72d3, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #5da7e4, #3f72d3);-webkit-box-shadow:0 1px 0 0 #b6d4f3 inset;-moz-box-shadow:0 1px 0 0 #b6d4f3 inset;box-shadow:0 1px 0 0 #b6d4f3 inset}.schedule-timeline-row .schedule-project-timeline.started .bracket:after{background-color:#3f72d3}.schedule-timeline-row .schedule-project-timeline.draft{border-top:1px solid #6e716e;background-color:#8c908d;background:-moz-linear-gradient(top, #8c908d, #565a5b);background:-webkit-linear-gradient(top, #8c908d, #565a5b);background:-o-linear-gradient(top, #8c908d, #565a5b);background:-ms-linear-gradient(top, #8c908d, #565a5b);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #8c908d, #565a5b, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #8c908d, #565a5b);-webkit-box-shadow:0 1px 0 0 #cbcbce inset;-moz-box-shadow:0 1px 0 0 #cbcbce inset;box-shadow:0 1px 0 0 #cbcbce inset}.schedule-timeline-row .schedule-project-timeline.draft .bracket:after{background-color:#565a5b;background:-moz-linear-gradient(top, #565a5b, #565a5b);background:-webkit-linear-gradient(top, #565a5b, #565a5b);background:-o-linear-gradient(top, #565a5b, #565a5b);background:-ms-linear-gradient(top, #565a5b, #565a5b);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #565a5b, #565a5b, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #565a5b, #565a5b)}.schedule-timeline-row .schedule-project-timeline.completed{border-top:1px solid #abc557;background-color:#c2d374;background:-moz-linear-gradient(top, #c2d374, #9bbd45);background:-webkit-linear-gradient(top, #c2d374, #9bbd45);background:-o-linear-gradient(top, #c2d374, #9bbd45);background:-ms-linear-gradient(top, #c2d374, #9bbd45);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #c2d374, #9bbd45, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #c2d374, #9bbd45);-webkit-box-shadow:0 1px 0 0 #e3eabe inset;-moz-box-shadow:0 1px 0 0 #e3eabe inset;box-shadow:0 1px 0 0 #e3eabe inset}.schedule-timeline-row .schedule-project-timeline.completed .bracket:after{background-color:#9bbd45;background:-moz-linear-gradient(top, #9bbd45, #9bbd45);background:-webkit-linear-gradient(top, #9bbd45, #9bbd45);background:-o-linear-gradient(top, #9bbd45, #9bbd45);background:-ms-linear-gradient(top, #9bbd45, #9bbd45);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #9bbd45, #9bbd45, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #9bbd45, #9bbd45)}.schedule-timeline-row .schedule-project-timeline.not-started{border-top:1px solid #bb875e;background-color:#cca574;background:-moz-linear-gradient(top, #cca574, #a16742);background:-webkit-linear-gradient(top, #cca574, #a16742);background:-o-linear-gradient(top, #cca574, #a16742);background:-ms-linear-gradient(top, #cca574, #a16742);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #cca574, #a16742, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #cca574, #a16742);-webkit-box-shadow:0 1px 0 0 #e9d8be inset;-moz-box-shadow:0 1px 0 0 #e9d8be inset;box-shadow:0 1px 0 0 #e9d8be inset}.schedule-timeline-row .schedule-project-timeline.not-started .bracket:after{background-color:#a16742;background:-moz-linear-gradient(top, #a16742, #a16742);background:-webkit-linear-gradient(top, #a16742, #a16742);background:-o-linear-gradient(top, #a16742, #a16742);background:-ms-linear-gradient(top, #a16742, #a16742);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #a16742, #a16742, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #a16742, #a16742)}.schedule-timeline-row .schedule-project-timeline.hold{border-top:1px solid #ffbf02;background-color:#ffce04;background:-moz-linear-gradient(top, #ffce04, #ffaf02);background:-webkit-linear-gradient(top, #ffce04, #ffaf02);background:-o-linear-gradient(top, #ffce04, #ffaf02);background:-ms-linear-gradient(top, #ffce04, #ffaf02);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #ffce04, #ffaf02, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #ffce04, #ffaf02);-webkit-box-shadow:0 1px 0 0 #ffed89 inset;-moz-box-shadow:0 1px 0 0 #ffed89 inset;box-shadow:0 1px 0 0 #ffed89 inset}.schedule-timeline-row .schedule-project-timeline.hold .bracket:after{background-color:#ffaf02;background:-moz-linear-gradient(top, #ffaf02, #ffaf02);background:-webkit-linear-gradient(top, #ffaf02, #ffaf02);background:-o-linear-gradient(top, #ffaf02, #ffaf02);background:-ms-linear-gradient(top, #ffaf02, #ffaf02);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #ffaf02, #ffaf02, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #ffaf02, #ffaf02)}.schedule-timeline-row .schedule-project-timeline.closed{border-top:1px solid #b300f8;background-color:#c000f1;background:-moz-linear-gradient(top, #c000f1, #9d00fe);background:-webkit-linear-gradient(top, #c000f1, #9d00fe);background:-o-linear-gradient(top, #c000f1, #9d00fe);background:-ms-linear-gradient(top, #c000f1, #9d00fe);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #c000f1, #9d00fe, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #c000f1, #9d00fe);-webkit-box-shadow:0 1px 0 0 #b471c9 inset;-moz-box-shadow:0 1px 0 0 #b471c9 inset;box-shadow:0 1px 0 0 #b471c9 inset}.schedule-timeline-row .schedule-project-timeline.closed .bracket:after{background-color:#9d00fe;background:-moz-linear-gradient(top, #9d00fe, #9d00fe);background:-webkit-linear-gradient(top, #9d00fe, #9d00fe);background:-o-linear-gradient(top, #9d00fe, #9d00fe);background:-ms-linear-gradient(top, #9d00fe, #9d00fe);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #9d00fe, #9d00fe, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #9d00fe, #9d00fe)}.schedule-timeline-row .schedule-project-timeline.reopened{border-top:1px solid #00d7d3;background-color:#05e2e0;background:-moz-linear-gradient(top, #05e2e0, #01d7d3);background:-webkit-linear-gradient(top, #05e2e0, #01d7d3);background:-o-linear-gradient(top, #05e2e0, #01d7d3);background:-ms-linear-gradient(top, #05e2e0, #01d7d3);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #05e2e0, #01d7d3, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #05e2e0, #01d7d3);-webkit-box-shadow:0 1px 0 0 #8af3f1 inset;-moz-box-shadow:0 1px 0 0 #8af3f1 inset;box-shadow:0 1px 0 0 #8af3f1 inset}.schedule-timeline-row .schedule-project-timeline.reopened .bracket:after{background-color:#01d7d3;background:-moz-linear-gradient(top, #01d7d3, #01d7d3);background:-webkit-linear-gradient(top, #01d7d3, #01d7d3);background:-o-linear-gradient(top, #01d7d3, #01d7d3);background:-ms-linear-gradient(top, #01d7d3, #01d7d3);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #01d7d3, #01d7d3, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #01d7d3, #01d7d3)}.schedule-timeline-row .schedule-project-timeline.cancelled{border-top:1px solid #b33634;background-color:#c34746;background:-moz-linear-gradient(top, #c34746, #b33635);background:-webkit-linear-gradient(top, #c34746, #b33635);background:-o-linear-gradient(top, #c34746, #b33635);background:-ms-linear-gradient(top, #c34746, #b33635);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #c34746, #b33635, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #c34746, #b33635);-webkit-box-shadow:0 1px 0 0 #e9abaa inset;-moz-box-shadow:0 1px 0 0 #e9abaa inset;box-shadow:0 1px 0 0 #e9abaa inset}.schedule-timeline-row .schedule-project-timeline.cancelled .bracket:after{background-color:#b33635;background:-moz-linear-gradient(top, #b33635, #b33635);background:-webkit-linear-gradient(top, #b33635, #b33635);background:-o-linear-gradient(top, #b33635, #b33635);background:-ms-linear-gradient(top, #b33635, #b33635);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #b33635, #b33635, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #b33635, #b33635)}.milestone{height:32px;width:24px;position:absolute;z-index:102;margin-left:-12px}.milestone.green{background:url("/5.16.2.5993/frontend/images/adpath/adpath-icons32x32.png") no-repeat scroll -4px 0 transparent}.milestone.orange{background:url("/5.16.2.5993/frontend/images/adpath/adpath-icons32x32.png") no-repeat scroll -4px -32px transparent}.milestone-column{position:absolute;z-index:101;height:50px;top:0px;filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=0.7, enabled=1)";opacity:.7}.milestone-column.orange{background-color:#ffdfb2}.milestone-column.green{background-color:#b4ddb5}.milestone-column.head{height:10px;top:41px}.tooltip{z-index:200;min-width:130px;max-width:260px;background-color:#000000;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;position:absolute;color:#ffffff;filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=0.8, enabled=1)";opacity:.8;-webkit-box-shadow:0 0 5px 0 rgba(0,0,0,0.7);-moz-box-shadow:0 0 5px 0 rgba(0,0,0,0.7);box-shadow:0 0 5px 0 rgba(0,0,0,0.7);padding-top:10px;padding-right:10px;padding-bottom:10px;padding-left:10px}.tooltip .border-top{border-color:rgba(255,255,255,0.3)}.tooltip a{color:#ffffff;text-decoration:none}.tooltip.with-arrow .arrow{bottom:-10px;position:absolute;right:45%;margin-left:20px;width:20px;height:20px;overflow:hidden}.tooltip.with-arrow .arrow:after{content:"";position:absolute;width:10px;height:10px;background-color:#000000;transform:rotate(45deg);-ms-transform:rotate(45deg);-moz-transform:rotate(45deg);-webkit-transform:rotate(45deg);-o-transform:rotate(45deg);bottom:5px;left:5px}textarea{min-height:60px;padding:0;border:1px solid #ccc;padding:3px;outline:none;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-box-shadow:0 1px 3px rgba(0,0,0,0.1) inset;-moz-box-shadow:0 1px 3px rgba(0,0,0,0.1) inset;box-shadow:0 1px 3px rgba(0,0,0,0.1) inset;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px}textarea:hover{border-color:#759dc0;-webkit-transition-duration:.25s;-moz-transition-duration:.25s;transition-duration:.25s}textarea:focus{border-width:1px;outline:none;-webkit-box-shadow:inset 0 1px 3px @black-01, 0 0 5px  @blue-06;-moz-box-shadow:inset 0 1px 3px @black-01, 0 0 5px  @blue-06;box-shadow:inset 0 1px 3px @black-01, 0 0 5px  @blue-06;border-color:#0082dc;border-color:rgba(0,130,220,0.6)}table.rowList{width:100%;text-align:left}table.rowList .headers{height:30px}table.rowList .headers th{background-color:#f0f0f0;border:1px solid #ccc;height:30px;vertical-align:middle;font-size:13px;font-weight:normal;-webkit-box-shadow:1px 0px 0 0 #F9F9F9 inset;-moz-box-shadow:1px 0px 0 0 #F9F9F9 inset;box-shadow:1px 0px 0 0 #F9F9F9 inset}table.rowList .headers th.sort a{color:#333;display:inline-block;padding:6px 0;text-decoration:none;width:100%}table.rowList .headers th.sort.asc,table.rowList .headers th.sort.desc{box-shadow:0px 2px 0px 0px #eaeaea inset;background-color:#fafafa}table.rowList .headers th.sort .icon-sort{display:inline-block;height:16px;width:16px;line-height:16px;display:none}table.rowList .headers th.sort.asc .icon-sort{display:inline-block;background:url("/5.16.2.5993/frontend/images/icons16x16.png") 0 -1536px no-repeat}table.rowList .headers th.sort.desc .icon-sort{display:inline-block;background:url("/5.16.2.5993/frontend/images/icons16x16.png") 0 -1472px no-repeat}table.rowList tr{height:60px;cursor:pointer}table.rowList tr.row:nth-child(2n){background-color:#f1f1f1}table.rowList tr td{padding-left:10px;max-width:210px;overflow:hidden;vertical-align:middle;font-size:13px}table.rowList tr td .row-edit-button{vertical-align:middle;height:16px !important;visibility:hidden}table.rowList tr td .inf-block{max-height:60px;overflow:hidden}table.rowList tr td:first-child{background-color:white}table.rowList tr td:last-child{background-color:white}table.rowList tr.empty{height:10px}table.rowList tr.darker{background-color:#f1f1f1}table.rowList tr:hover{background-color:#fafae3}table.rowList tr:hover td .row-edit-button{visibility:visible}table.rowList tr.selected,table.rowList tr.checked{background-color:#d8e8fc !important}table.rowList tr.small-row{height:30px}table.rowList tr.small-row .inf-block{max-height:30px;overflow:hidden}table.rowList tr.small-row.darker{background-color:#eee6de}table.rowList tr.small-row:hover{background-color:#fafae3}.bn{bottom:0}.rn{right:0}.content-tabs .line{height:36px;line-height:33px;vertical-align:middle;background-color:#eee;-webkit-box-shadow:0 -2px 2px #e0e0e0 inset;-moz-box-shadow:0 -2px 2px #e0e0e0 inset;box-shadow:0 -2px 2px #e0e0e0 inset}.content-tabs .line .title{color:#333;text-shadow:0 2px #FFF}.content-tabs .line a{display:inline-block;line-height:33px;padding:0 20px;min-width:70px;text-align:center;vertical-align:middle;color:#333;text-decoration:none;margin:2px -1px}.content-tabs .line a:hover{background-color:#e0e0e0}.content-tabs .line a.active{background-color:white;font-weight:bold;border-top:1px solid #ccc;border-right:1px solid #ccc;border-left:1px solid #ccc;-webkit-box-shadow:0 -1px 2px #e0e0e0;-moz-box-shadow:0 -1px 2px #e0e0e0;box-shadow:0 -1px 2px #e0e0e0}.search-top-level-activities{float:right}.activity-types{float:left}.icon-activity-edit{display:inline-block;height:20px;width:20px;line-height:20px;background:url("/5.16.2.5993/frontend/images/adpath/icons_edit.jpg") no-repeat scroll 0 0 transparent}.icon-activity-save{display:inline-block;height:20px;width:20px;line-height:20px;background:url("/5.16.2.5993/frontend/images/adpath/icons_edit.jpg") no-repeat scroll 0 -20px transparent}.icon-activity-cancel{display:inline-block;height:20px;width:20px;line-height:20px;background:url("/5.16.2.5993/frontend/images/adpath/icons_edit.jpg") no-repeat scroll 0 -40px transparent}.icon-adapt{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/wam/Content/Images/masterversion.png") no-repeat scroll -18px 0 transparent;display:none}.icon-master{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/wam/Content/Images/masterversion.png") no-repeat scroll 0 0 transparent;display:none}.icon-versions-display{display:block}.file_submenu_wrapper .file_submenu_container{width:780px}.border{border:1px solid #ccc}.adpath-approval-stage{background-color:#eef3f6;border:1px solid #e3ecf2}.adpath-approval-stage .approval-stage-header{border-bottom:1px solid #ccc;-webkit-box-shadow:0 1px 0 0 #fff;-moz-box-shadow:0 1px 0 0 #fff;box-shadow:0 1px 0 0 #fff}.adpath-approval-stage .approval-stage-header.shadow{-webkit-box-shadow:0 1px 0 0 #fff;-moz-box-shadow:0 1px 0 0 #fff;box-shadow:0 1px 0 0 #fff}.adpath-approval-stage .approval-stage-header.shadow{-webkit-box-shadow:0 1px 0 0 #fff;-moz-box-shadow:0 1px 0 0 #fff;box-shadow:0 1px 0 0 #fff}.approvals-list-header{background-color:#f0f0f0;border:1px solid #ccc;-webkit-box-shadow:0px 1px 0px 0px #ccc, 0px 1px 0px 0px #fff inset;-moz-box-shadow:0px 1px 0px 0px #ccc, 0px 1px 0px 0px #fff inset;box-shadow:0px 1px 0px 0px #ccc, 0px 1px 0px 0px #fff inset;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.approvals-list-item{position:relative;height:50px;border-bottom:1px solid #ccc}.approvals-list-item.shadow{-webkit-box-shadow:0 1px 0 0 #fff;-moz-box-shadow:0 1px 0 0 #fff;box-shadow:0 1px 0 0 #fff}.approvals-list-item.shadow{-webkit-box-shadow:0 1px 0 0 #fff;-moz-box-shadow:0 1px 0 0 #fff;box-shadow:0 1px 0 0 #fff}.approvals-list-item .vmiddle{height:50px;display:table-cell;vertical-align:middle}.approvals-list-item .ap-option{width:100px}.approvals-list-item:last-child{border-bottom:none}.approvals-list-item.pending .date{display:none}.approvals-list-item.pending .ap-block{background-color:#f6f6f6;background:-moz-linear-gradient(top, #f6f6f6, #e0e0e0);background:-webkit-linear-gradient(top, #f6f6f6, #e0e0e0);background:-o-linear-gradient(top, #f6f6f6, #e0e0e0);background:-ms-linear-gradient(top, #f6f6f6, #e0e0e0);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #f6f6f6, #e0e0e0, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #f6f6f6, #e0e0e0);border:1px solid #cdcdcd}.approvals-list-item.pending .ap-block .ap-icon{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -48px -512px transparent}.approvals-list-item.rejected .reminder{display:none}.approvals-list-item.rejected .ap-block{background-color:#d94a38;background:-moz-linear-gradient(top, #d94a38, #cd4111);background:-webkit-linear-gradient(top, #d94a38, #cd4111);background:-o-linear-gradient(top, #d94a38, #cd4111);background:-ms-linear-gradient(top, #d94a38, #cd4111);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #d94a38, #cd4111, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #d94a38, #cd4111);border-color:#d74401}.approvals-list-item.rejected .ap-block .ap-icon{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -48px -592px transparent}.approvals-list-item.approved .reminder{display:none}.approvals-list-item.approved .ap-block{background-color:#6cba4a;background:-moz-linear-gradient(top, #6cba4a, #4da133);background:-webkit-linear-gradient(top, #6cba4a, #4da133);background:-o-linear-gradient(top, #6cba4a, #4da133);background:-ms-linear-gradient(top, #6cba4a, #4da133);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #6cba4a, #4da133, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #6cba4a, #4da133);border-color:#4f9735}.approvals-list-item.approved .ap-block .ap-icon{margin:5px 0px 0px 5px;height:21px;width:21px;background:url("/5.16.2.5993/frontend/images/adpath/adpath-icons32x32.png") no-repeat scroll 0 -192px transparent}.ap-block{display:inline-block;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;width:30px;height:30px}.ap-block .ap-icon{display:inline-block;height:16px;width:16px;line-height:16px;margin:7px 0 0 7px}.ap-block.pending{background-color:#f6f6f6;background:-moz-linear-gradient(top, #f6f6f6, #e0e0e0);background:-webkit-linear-gradient(top, #f6f6f6, #e0e0e0);background:-o-linear-gradient(top, #f6f6f6, #e0e0e0);background:-ms-linear-gradient(top, #f6f6f6, #e0e0e0);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #f6f6f6, #e0e0e0, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #f6f6f6, #e0e0e0);border:1px solid #cdcdcd}.ap-block.pending .ap-icon{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -48px -512px transparent}.ap-block.rejected{background-color:#d94a38;background:-moz-linear-gradient(top, #d94a38, #cd4111);background:-webkit-linear-gradient(top, #d94a38, #cd4111);background:-o-linear-gradient(top, #d94a38, #cd4111);background:-ms-linear-gradient(top, #d94a38, #cd4111);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #d94a38, #cd4111, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #d94a38, #cd4111);border-color:#d74401}.ap-block.rejected .ap-icon{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -48px -592px transparent}.ap-block.approved{background-color:#6cba4a;background:-moz-linear-gradient(top, #6cba4a, #4da133);background:-webkit-linear-gradient(top, #6cba4a, #4da133);background:-o-linear-gradient(top, #6cba4a, #4da133);background:-ms-linear-gradient(top, #6cba4a, #4da133);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #6cba4a, #4da133, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #6cba4a, #4da133);border-color:#4f9735}.ap-block.approved .ap-icon{margin:5px 0px 0px 5px;height:21px;width:21px;background:url("/5.16.2.5993/frontend/images/adpath/adpath-icons32x32.png") no-repeat scroll 0 -192px transparent}.sidebar-block .sidebar-block-header{font-size:11px;background-color:#545556;color:white;height:30px;position:relative}.sidebar-block .sidebar-block-header .vmiddle{height:30px;display:table-cell;vertical-align:middle}.sidebar-block .sidebar-block-header.light{background-color:#e2e2e2;color:#333;border-top:1px solid #ccc;border-bottom:1px solid #ccc;-webkit-box-shadow:0 1px 0 0 #fff;-moz-box-shadow:0 1px 0 0 #fff;box-shadow:0 1px 0 0 #fff}.sidebar-block .sidebar-block-header.light:before{display:none}.sidebar-block .sidebar-block-header:before{position:absolute;content:"";background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -1872px transparent;top:6px;left:2px;width:16px;height:16px;cursor:pointer}.sidebar-block .sidebar-block-content{display:none;background-color:#ffffff}.sidebar-block.opened .sidebar-block-header:before{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -1888px transparent}.sidebar-block.opened .sidebar-block-content{display:block}.organisations-list{padding-top:5px;height:190px;overflow-y:auto}.organisations-list .organisations-list-item{padding:7px 20px}.organisations-list .organisations-list-item.selected{background:#d8e8fc}.approvals-nav-tabs{overflow:hidden;padding-top:34px;background:#eee;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;white-space:nowrap}.approvals-nav-tabs a{position:relative;display:inline-block;outline:none;margin-top:1px;padding:5px 0px 5px 0px;color:#333;text-decoration:none;border:1px solid transparent;border-bottom:none}.approvals-nav-tabs a span{display:inline-block;margin:5px 0;padding:0 20px 0 20px}.approvals-nav-tabs a:hover{background:#e0e0e0}.approvals-nav-tabs a.active,.approvals-nav-tabs a.active:hover,.approvals-nav-tabs a:active{font-weight:bold;z-index:2;background:white;-webkit-box-shadow:0 0 5px #999;-moz-box-shadow:0 0 5px #999;box-shadow:0 0 5px #999;border-color:#ccc}.approvals-nav-tabs.small{padding-top:12px;max-width:340px}.approvals-nav-tabs.small a span{margin:2px 0px}.approvals-list-content{-webkit-box-shadow:0 -2px 2px #ccc;-moz-box-shadow:0 -2px 2px #ccc;box-shadow:0 -2px 2px #ccc;background-color:white;border-top:1px solid #ccc;padding-top:30px}.box-shadow-content{-webkit-box-shadow:0 0 1px 3px #ccc;-moz-box-shadow:0 0 1px 3px #ccc;box-shadow:0 0 1px 3px #ccc;background-color:white}.box-border-content{border:1px solid #ccc;background-color:white}.file-preview{height:32px;width:32px;display:inline-block}.file-preview img{max-width:32px;max-height:32px}.file-preview.background{background:#fff;background:-moz-radial-gradient(center, #fff, #e8e8e8);background:-webkit-radial-gradient(center, #fff, #e8e8e8);background:-o-radial-gradient(center, #fff, #e8e8e8);background:-ms-radial-gradient(center, #fff, #e8e8e8);background:radial-gradient(center, #fff, #e8e8e8)}.popupWindow .simple-search .search-controller{width:75%}#match-all-words{margin-left:5px}.match-all-words-container{padding-top:7px}.dashboard-inf-box{height:130px;color:white;width:100%}.dashboard-inf-box.projects{background-color:#0082dc}.dashboard-inf-box.files{background-color:#f32837}.dashboard-inf-box.orders{background-color:#00b74f}.dashboard-inf-box.users{background-color:#3e4244}.icon-box-projects{display:inline-block;height:32px;width:32px;line-height:32px;background:url("/5.16.2.5993/frontend/images/adpath/adpath-icons32x32.png") no-repeat scroll 0 -224px transparent}.icon-box-files{display:inline-block;height:32px;width:32px;line-height:32px;background:url("/5.16.2.5993/frontend/images/adpath/adpath-icons32x32.png") no-repeat scroll 0 -256px transparent}.icon-box-order{display:inline-block;height:32px;width:32px;line-height:32px;background:url("/5.16.2.5993/frontend/images/adpath/adpath-icons32x32.png") no-repeat scroll 0 -288px transparent}.dashboard-sidebar{width:380px}.dashboard-toggle-block .dashboard-toggle-block-header{height:32px;border-bottom:1px solid #ccc}.dashboard-toggle-block .dashboard-toggle-block-header .vmiddle{vertical-align:middle;display:table-cell;height:32px}.dashboard-toggle-block .dashboard-toggle-block-header .minimaze-button{cursor:pointer;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -48px -656px transparent;display:inline-block;height:16px;width:16px}.dashboard-toggle-block .dashboard-toggle-block-header .maximaze-button{cursor:pointer;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -48px -737px transparent;display:inline-block;height:16px;width:16px}.approval-item{height:50px}.approval-item .vmiddle{height:50px;display:table-cell;vertical-align:middle}.slider{height:280px}.slider.adpath{height:300px}.slider.adpath .controller{width:50px}.slider.adpath .controller .controller_round{top:50%;margin-top:-16px}.slider.adpath .controller .controller_round .icon-controller{filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=0.2, enabled=1)";opacity:.2;height:32px;width:32px}.slider.adpath .controller.left{-webkit-box-shadow:4px 0 21px 0 #666;-moz-box-shadow:4px 0 21px 0 #666;box-shadow:4px 0 21px 0 #666;background-color:rgba(241,241,241,0.5);margin-right:-50px}.slider.adpath .controller.left .controller_round{margin-left:5px}.slider.adpath .controller.left .controller_round .icon-controller{background:url("/5.16.2.5993/frontend/images/adpath/adpath-icons32x32.png") no-repeat scroll 0 -384px transparent}.slider.adpath .controller.left:hover .controller_round .icon-controller{filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=1, enabled=1)";opacity:1;background:url("/5.16.2.5993/frontend/images/adpath/adpath-icons32x32.png") no-repeat scroll 0 -320px transparent}.slider.adpath .controller.leftdark{background-color:#333}.slider.adpath .controller.leftdark .controller_round{margin-left:8px}.slider.adpath .controller.leftdark .controller_round .icon-controller{filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=0.5, enabled=1)";opacity:.5;background:url("/5.16.2.5993/frontend/images/adpath/adpath-icons32x32.png") no-repeat scroll 0 -448px transparent}.slider.adpath .controller.leftdark:hover .controller_round .icon-controller{filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=1, enabled=1)";opacity:1;background:url("/5.16.2.5993/frontend/images/adpath/adpath-icons32x32.png") no-repeat scroll 0 -448px transparent}.slider.adpath .controller.right{-webkit-box-shadow:0 0 25px 0 #999;-moz-box-shadow:0 0 25px 0 #999;box-shadow:0 0 25px 0 #999;background-color:rgba(241,241,241,0.5);margin-left:-50px}.slider.adpath .controller.right .controller_round{margin-right:4px}.slider.adpath .controller.right .controller_round .icon-controller{background:url("/5.16.2.5993/frontend/images/adpath/adpath-icons32x32.png") no-repeat scroll 0 -416px transparent}.slider.adpath .controller.right:hover .controller_round .icon-controller{filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=1, enabled=1)";opacity:1;background:url("/5.16.2.5993/frontend/images/adpath/adpath-icons32x32.png") no-repeat scroll 0 -352px transparent}.slider.adpath .controller.rightdark{background-color:#333}.slider.adpath .controller.rightdark .controller_round{margin-left:10px}.slider.adpath .controller.rightdark .controller_round .icon-controller{filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=0.5, enabled=1)";opacity:.5;background:url("/5.16.2.5993/frontend/images/adpath/adpath-icons32x32.png") no-repeat scroll 0 -481px transparent}.slider.adpath .controller.rightdark:hover .controller_round .icon-controller{filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=1, enabled=1)";opacity:1;background:url("/5.16.2.5993/frontend/images/adpath/adpath-icons32x32.png") no-repeat scroll 0 -481px transparent}.slider.adpath .slider_container{padding:0 50px}.slider.adpath .slider_container .slider_line{margin:0px}.slider.adpath.single-mode .slider_container .slider_line .carousel-item{margin:0 27px}.slider.adpath.single-mode .slider_container .slider_line .file-item{margin-right:60px}.task-status{position:relative}.task-status:before{content:"";position:absolute;height:48px;width:10px;top:2px;left:10px}.task-status.t-blue:before{background-color:#5bb6ed}.task-status.t-red:before{background-color:#d94a38}.task-status.t-white:before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;border:1px solid #ccc;background-color:#ffffff}.calendar .calendar-title{border-bottom:1px solid #ccc;height:50px;background-color:#fff;background:-moz-linear-gradient(top, #fff, #f6f6f6);background:-webkit-linear-gradient(top, #fff, #f6f6f6);background:-o-linear-gradient(top, #fff, #f6f6f6);background:-ms-linear-gradient(top, #fff, #f6f6f6);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #fff, #f6f6f6, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #fff, #f6f6f6);-webkit-box-shadow:0 -1px 0 0 #fff inset;-moz-box-shadow:0 -1px 0 0 #fff inset;box-shadow:0 -1px 0 0 #fff inset}.calendar .calendar-title.shadow{-webkit-box-shadow:0 1px 0 0 #fff;-moz-box-shadow:0 1px 0 0 #fff;box-shadow:0 1px 0 0 #fff}.calendar .calendar-title.shadow{-webkit-box-shadow:0 1px 0 0 #fff;-moz-box-shadow:0 1px 0 0 #fff;box-shadow:0 1px 0 0 #fff}.calendar .calendar-title .vmiddle{height:50px;display:table-cell;vertical-align:middle}.calendar .calendar-title .button.small{height:20px}.calendar .calendar-title .button.small.controll{width:20px;min-width:20px;padding:0px}.calendar .calendar-body{-webkit-box-shadow:0 0 3px 0 #a6a6a6;-moz-box-shadow:0 0 3px 0 #a6a6a6;box-shadow:0 0 3px 0 #a6a6a6;-webkit-border-radius:5px 5px 0 0;-moz-border-radius:5px 5px 0 0;border-radius:5px 5px 0 0}.calendar .calendar-body .calendar-body-title{padding:7px 0px;background-color:#e5e5e5;-webkit-box-shadow:0 -1px 0 0 #fff inset;-moz-box-shadow:0 -1px 0 0 #fff inset;box-shadow:0 -1px 0 0 #fff inset;border-bottom:1px solid #ccc}.calendar .calendar-body .calendar-body-title.shadow{-webkit-box-shadow:0 1px 0 0 #fff;-moz-box-shadow:0 1px 0 0 #fff;box-shadow:0 1px 0 0 #fff}.calendar .calendar-body .calendar-body-title.shadow{-webkit-box-shadow:0 1px 0 0 #fff;-moz-box-shadow:0 1px 0 0 #fff;box-shadow:0 1px 0 0 #fff}.calendar .calendar-body .week-day{width:14.28%}.calendar .calendar-body .week-row{-webkit-box-shadow:0 -1px 0 0 #fff inset;-moz-box-shadow:0 -1px 0 0 #fff inset;box-shadow:0 -1px 0 0 #fff inset;border-bottom:1px solid #ccc}.calendar .calendar-body .week-row.shadow{-webkit-box-shadow:0 1px 0 0 #fff;-moz-box-shadow:0 1px 0 0 #fff;box-shadow:0 1px 0 0 #fff}.calendar .calendar-body .week-row.shadow{-webkit-box-shadow:0 1px 0 0 #fff;-moz-box-shadow:0 1px 0 0 #fff;box-shadow:0 1px 0 0 #fff}.calendar .calendar-body .week-row .week-day{height:100px;position:relative;border-right:1px solid #ccc;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.calendar .calendar-body .week-row .week-day .day-position{width:30px;position:absolute;top:10px;right:0px;font-weight:bold}.calendar .calendar-body .week-row .week-day .day-label{color:white;font-weight:bold;background-color:#0082dc;position:absolute;left:0px;top:30px;padding-top:2px}.calendar .calendar-body .week-row .week-day.today{background:#fbfbd7}.calendar .calendar-body .week-row .week-day.passed .day-position{color:#a6a6a6}.calendar .calendar-body .week-row .week-day:last-child{border:none}.icon-calendar-left{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -48px -672px transparent}.icon-calendar-right{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -1872px transparent}.css-treeview ul,.css-treeview li{padding:0;margin:0;list-style:none;overflow:hidden}.css-treeview{-moz-user-select:none;-webkit-user-select:none;user-select:none}.css-treeview label{display:block;width:100%;overflow:hidden;padding:0 0 0 10px}.css-treeview a{display:block;width:100%;color:#333;text-decoration:none;padding:0 0 0 10px}.css-treeview a:hover,.css-treeview label:hover{background-color:#d8e8fc}.css-treeview input+label+ul{margin:0 0 0 16px}.css-treeview label,.css-treeview a,.css-treeview label::before{display:inline-block;height:32px;line-height:32px;vertical-align:middle}.css-treeview label::before{content:"";width:16px;margin:0 0 0 0;vertical-align:middle;background-color:red;background:url("/5.16.2.5993/frontend/images/icons_treeview.png") 0 -30px no-repeat}.css-treeview input:checked+label::before{background-color:yellow;background:url("/5.16.2.5993/frontend/images/icons_treeview.png") 0 6px no-repeat}.css-treeview label,.css-treeview label::before{cursor:pointer}.css-treeview input:disabled+label{cursor:default;opacity:0.6}.css-treeview input{position:absolute;opacity:0}.css-treeview input:checked:not(:disabled)~ul{display:block}.css-treeview input~ul{display:none}.css-treeview label a{display:inline;font-weight:normal}.css-treeview a.selected{font-weight:bold}@media screen and (-webkit-min-device-pixel-ratio:0){.css-treeview{-webkit-animation:webkit-adjacent-element-selector-bugfix infinite 1s}@-webkit-keyframes webkit-adjacent-element-selector-bugfix{from{padding:0}to{padding:0}}}.table-data th,.table-data td{padding-right:10px;padding-left:10px;height:30px;vertical-align:middle}.table-data th.product-drag,.table-data td.product-drag{cursor:move}.table-data th{text-align:left;font-weight:normal}.ui-dialog .ui-dialog-buttonpane button{float:right}.p-content{padding-bottom:60px}.contactlist .itemsList .row:first-child{border-top:1px solid #CCC}table.buadminwrap .tabs-left>.admin-box{min-height:580px}.panel-box{min-height:300px;width:auto;border:1px solid #cdcdcd;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px;background:#f6f6f6;-webkit-box-shadow:0 0 5px #999;-moz-box-shadow:0 0 5px #999;box-shadow:0 0 5px #999}.panel-box.transparent{background:transparent}.panel-box.light{border-color:#d8e5ef;background-color:#eef3f6}.panel-box.advanced-search{min-height:0}#adpath-footer{height:60px;margin-top:-60px;bottom:0px;width:100%;background:#FAFAFA}#adpath-footer .line:first-child{border-bottom:1px solid #CCC;border-top:1px solid #CCC;vertical-align:middle;display:block}#adpath-footer .line:last-child{background:#F9F9F9}#adpath-footer .powered-by{background:url('/wam/Content/Images/adbank-powered-by.png') no-repeat;width:180px;height:28px;margin-left:60px;margin-top:5px;float:left}#adpath-footer .keepalive{float:right;margin-right:48px;vertical-align:middle;margin-top:7px}#adpath-footer .keepalive a{text-decoration:none}.smooth-top-box{-webkit-border-radius:5px 5px 0 0;-moz-border-radius:5px 5px 0 0;border-radius:5px 5px 0 0;background:none repeat scroll 0 0 #cecece}.itemsList .headers{border-radius:0}.box{border:none}.box-header{height:20px}.box .hd .box-menu,.cog-options{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -208px transparent;display:inline-block;height:16px;line-height:16px;width:16px}.box .hd .box-menu ul{z-index:999}.options-text{display:none}.mycustomClass .size1of7{width:14.28%}.mycustomClass .size1of8{width:12.5%}.mycustomClass .size1of9{width:11.11%}.mycustomClass .size1of10{width:10%}.mycustomClass .size1of11{width:9.09%}.mycustomClass .size1of12{width:8.33%}.mycustomClass .size1of13{width:7.69%}.mycustomClass .size1of14{width:7.14%}.mycustomClass .size1of15{width:6.66%}.mycustomClass .size1of16{width:6.25%}table.form td.label{border:1px solid #F5F6F7}.searchlistform table.form{margin:0}.searchlistform label{font-weight:normal}.searchlistform table.form td.value{background:none}.dropmenu{position:relative}.dropmenu ul{z-index:1000;width:145px;display:none;position:absolute;top:100%;right:0;border:1px solid #CCC}.dropmenu ul li{z-index:10001;font-weight:normal;background:#f6f6f6;color:#000;border-bottom:1px solid #ccc;background:#FFF;float:none;height:15px;padding:10px}.dropmenu ul li:hover{background:#0082dc;color:#FFF}.dropmenu ul li:hover a{color:#e0e0e0}.dropmenu ul li a{text-decoration:none;color:#333;border-right:none;width:100%;display:inline-block;padding-left:20px}a.page-prefs{background:url("/wam/Content/Images/cog.png") no-repeat}a.page-prefs.view-options{background:none}a.page-export{background:url("/wam/Content/Images/table_save.png") no-repeat}a.page-report{background:url("/wam/Content/Images/report.png") no-repeat}a.page-templates{background:url("/wam/Content/Images/application_edit.png") no-repeat}a.page-advanced-search{background:url("/wam/Content/Images/magnifier.png") no-repeat}a.page-saved-searches{background:url("/wam/Content/Images/application_form_magnify.png") no-repeat}.tinybutton{min-width:30px;height:22px;line-height:22px;padding:0 1px;font-size:11px;font-weight:normal}.milestone-late{background-color:#E60000;display:table-cell;height:30px;padding:0 10px;vertical-align:middle;margin-left:-10px}.milestone-complete{background-color:#73E600;display:table-cell;height:30px;width:100%;padding:0 10px;vertical-align:middle;margin-left:-10px}.input-validation-error{border-color:rgba(255,167,4,0.7);border-color:red}.plus-button{width:16px;height:16px;background-image:url("/5.16.2.5993/frontend/images/icons16x16.png");font-size:12px}.plus-button.add{background-position:0 -1264px}.plus-button.remove{background-position:0 -1248px}.checked-state{height:16px;width:18px;background-image:url("/5.16.2.5993/frontend/images/icons16x16.png");background-position:0 -1280px;font-size:12px}.table-data th{text-align:left;font-weight:normal}.table-data.simple TH{border-bottom:1px solid #ccc;font-weight:bold}.table-data.simple TH.shadow{-webkit-box-shadow:0 1px 0 0 #fff;-moz-box-shadow:0 1px 0 0 #fff;box-shadow:0 1px 0 0 #fff}.table-data.simple TH.shadow{-webkit-box-shadow:0 1px 0 0 #fff;-moz-box-shadow:0 1px 0 0 #fff;box-shadow:0 1px 0 0 #fff}.table-data.simple TR.noborder TD{border:0}.table-data.simple TD{border-bottom:1px solid #ccc;padding-top:10px;padding-bottom:20px}.table-data.simple TD.shadow{-webkit-box-shadow:0 1px 0 0 #fff;-moz-box-shadow:0 1px 0 0 #fff;box-shadow:0 1px 0 0 #fff}.table-data.simple TD.shadow{-webkit-box-shadow:0 1px 0 0 #fff;-moz-box-shadow:0 1px 0 0 #fff;box-shadow:0 1px 0 0 #fff}.table-data.simple TBODY.noleftpadding TD{padding-left:0}.table-data.bigspacings TD{padding-top:10px;padding-bottom:20px}.table-data.hugespacings TD{padding-top:20px;padding-bottom:20px}.styled-box{margin:0 auto;-moz-box-shadow:10px 10px #f1f1f1;-webkit-box-shadow:10px 10px #f1f1f1;box-shadow:10px 10px #f1f1f1}.headerblue-bg{background-color:#0092D6}.imagelist.item{clear:both}.imagelist.item .image{float:left;margin-right:10px;text-align:center}.imagelist.item .text{overflow:hidden;zoom:1}.brief.history{width:550px;margin:0 auto;padding-bottom:1px;background:url("/wam/Content/Images/brief/vr_shadow.png") transparent 50% 100% no-repeat}.brief.history .version{padding:20px 20px 20px 196px;margin-bottom:60px}.brief.history .version.last{background-color:#eef3f6;padding:20px 20px 20px 0}.brief.history .version.last .cell.number{display:table-cell;width:100px;text-align:center;vertical-align:middle}.brief.history .version .cell.number{display:table-cell;width:100px;text-align:center;vertical-align:middle}.brief.history .version .cell.number .ordinary{display:inline-block;border:1px #999 solid;line-height:30px;border-radius:50%;width:30px;height:30px;text-align:center;vertical-align:middle;filter:"progid:DXImageTransform.Microsoft.gradient(startColorstr = '#f7f7f7', endColorstr = '#dfdfdf')";-ms-filter:'progid:DXImageTransform.Microsoft.gradient(startColorstr = ' #f7f7f7 ', endColorstr = ' #dfdfdf ')';background-image:-moz-linear-gradient(top, #f7f7f7, #dfdfdf);background-image:-ms-linear-gradient(top, #f7f7f7, #dfdfdf);background-image:-o-linear-gradient(top, #f7f7f7, #dfdfdf);background-image:-webkit-gradient(linear, center top, center bottom, from(#f7f7f7), to(#dfdfdf));background-image:-webkit-linear-gradient(top, #f7f7f7, #dfdfdf);background-image:linear-gradient(top, #f7f7f7, #dfdfdf);cursor:pointer}.brief.history .version .cell.number .fancy{display:inline-block;line-height:30px;color:white;border:4px #04aee5 solid;border-radius:50%;width:30px;height:30px;text-align:center;vertical-align:middle;-moz-box-shadow:inset 1px 1px 4px #000000;-webkit-box-shadow:inset 1px 1px 4px #000000;box-shadow:inset 1px 1px 4px #000000;filter:"progid:DXImageTransform.Microsoft.gradient(startColorstr = '#a4a5a6', endColorstr = '#c4c5c7')";-ms-filter:'progid:DXImageTransform.Microsoft.gradient(startColorstr = ' #a4a5a6 ', endColorstr = ' #c4c5c7 ')';background-image:-moz-linear-gradient(top, #a4a5a6, #c4c5c7);background-image:-ms-linear-gradient(top, #a4a5a6, #c4c5c7);background-image:-o-linear-gradient(top, #a4a5a6, #c4c5c7);background-image:-webkit-gradient(linear, center top, center bottom, from(#a4a5a6), to(#c4c5c7));background-image:-webkit-linear-gradient(top, #a4a5a6, #c4c5c7);background-image:linear-gradient(top, #a4a5a6, #c4c5c7);cursor:pointer}.brief.history .version .cell.number.triangle{background:url("/wam/Content/Images/brief/triangle_shadow.png") 76px 50% no-repeat}.brief.history .version .cell.info{display:table-cell;width:180px}.brief.history .version .cell.status{display:table-cell;border-left:1px solid #ccc;padding-left:20px}.no-border{border:none}A:hover.block-display{text-decoration:none}A:hover.block-display SPAN.valign-middle{border-bottom:1px #dd6565 solid}.person-list{position:absolute;top:8px;left:4px}.close-approval-text{line-height:35px}.modereted-label{font-size:10px;color:#c9c9c9;margin-top:-8px;display:none}.graybox-active .modereted-label{display:block}.hardgrey-bg{background-color:#333333}.just-selected{background-color:#d8e8fc}.approvals-add-stage{width:650px}.edit-stage label.name,.edit-stage label.description{display:block;font-size:110%;margin:0 0 3px 0;font-weight:bold}.edit-stage .reminder{float:left;margin:5px 0 0 0}.edit-stage .reminder li{float:left;height:20px}.edit-stage .reminder label{cursor:auto}.edit-stage .reminder img{vertical-align:top;cursor:pointer}.edit-stage .reminder .name{margin:0 2px 0 0}.edit-stage .reminder .date{width:100px;padding:2px 0 0 0;display:inline-block}.edit-stage .reminder .time{border:1px solid #bbb;padding:2px;border-radius:4px;margin-right:5px;display:inline-block}.edit-stage .reminder .deadline .time{margin-right:15px}.edit-stage .reminder .time input{margin:0;padding:0;border:0;width:18px}.edit-stage .reminder .time.error{border-color:#EF3024;color:#EF3024}.edit-stage .reminder .time.error input{color:#EF3024}.edit-stage .reminder .time .hour{text-align:right}.approvals .add-stage,.approvals .start-approval,.approvals .apply-template{float:right;margin-left:10px}.approvals-search-form .filters-disabled{background-color:#E0E0E0}.itemsList{font-size:13px;position:relative}.itemsList .headers{border:1px solid #ccc;border-left:none;border-right:none;background-color:#f0f0f0;background:-moz-linear-gradient(top, #f0f0f0, #f0f0f0);background:-webkit-linear-gradient(top, #f0f0f0, #f0f0f0);background:-o-linear-gradient(top, #f0f0f0, #f0f0f0);background:-ms-linear-gradient(top, #f0f0f0, #f0f0f0);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #f0f0f0, #f0f0f0, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #f0f0f0, #f0f0f0);min-height:30px;max-height:30px;-webkit-box-shadow:0 1px 0 0 #F9F9F9 inset;-moz-box-shadow:0 1px 0 0 #F9F9F9 inset;box-shadow:0 1px 0 0 #F9F9F9 inset}.itemsList .headers .ptxxs{padding-top:3px}.itemsList .headers .sort{color:#333;display:inline-block;position:relative;cursor:pointer}.itemsList .headers .sort:after{content:'';position:absolute;top:8px;right:5px;margin:0 0 0 4px;height:16px;width:16px}.itemsList .headers .sort.asc,.itemsList .headers .sort.desc{-webkit-box-shadow:-1px 0 0px 0px #cecece inset, 1px 0 0 0 #f9f9f9 inset, 0px 2px 0px 0px #eaeaea inset;-moz-box-shadow:-1px 0 0px 0px #cecece inset, 1px 0 0 0 #f9f9f9 inset, 0px 2px 0px 0px #eaeaea inset;box-shadow:-1px 0 0px 0px #cecece inset, 1px 0 0 0 #f9f9f9 inset, 0px 2px 0px 0px #eaeaea inset;background-color:#fafafa;background:-moz-linear-gradient(top, #fafafa, #fafafa);background:-webkit-linear-gradient(top, #fafafa, #fafafa);background:-o-linear-gradient(top, #fafafa, #fafafa);background:-ms-linear-gradient(top, #fafafa, #fafafa);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #fafafa, #fafafa, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #fafafa, #fafafa)}.itemsList .headers .sort.asc:after{background:url("/5.16.2.5993/frontend/images/icons16x16.png") 0 -1536px no-repeat}.itemsList .headers .sort.desc:after{background:url("/5.16.2.5993/frontend/images/icons16x16.png") 0 -1472px no-repeat}.itemsList .headers .sort.filter:after{background:url("/5.16.2.5993/frontend/images/icons16x16.png") -32px -240px no-repeat}.itemsList .headers .cell{-webkit-box-shadow:-1px 0 0px 0px #cecece inset, 1px 0 0 0 #f9f9f9 inset;-moz-box-shadow:-1px 0 0px 0px #cecece inset, 1px 0 0 0 #f9f9f9 inset;box-shadow:-1px 0 0px 0px #cecece inset, 1px 0 0 0 #f9f9f9 inset}.itemsList .headers .cell:last-child{-webkit-box-shadow:-1px 0 0 0 #F9F9F9 inset, -2px 0 0 0 #CECECe inset, 1px 0 0 0 #F9F9F9 inset;-moz-box-shadow:-1px 0 0 0 #F9F9F9 inset, -2px 0 0 0 #CECECe inset, 1px 0 0 0 #F9F9F9 inset;box-shadow:-1px 0 0 0 #F9F9F9 inset, -2px 0 0 0 #CECECe inset, 1px 0 0 0 #F9F9F9 inset}.itemsList .headers .cell:first-child{-webkit-box-shadow:1px 0 0 0 #CECECE inset, -1px 0 0 0 #CECECE inset, 2px 0 0 0 #F9F9F9 inset;-moz-box-shadow:1px 0 0 0 #CECECE inset, -1px 0 0 0 #CECECE inset, 2px 0 0 0 #F9F9F9 inset;box-shadow:1px 0 0 0 #CECECE inset, -1px 0 0 0 #CECECE inset, 2px 0 0 0 #F9F9F9 inset}.itemsList .headers .cell.preview_block{-webkit-box-shadow:1px 0 0 0 #CECECE inset, 2px 0 0 0 #F9F9F9 inset, -1px 0 0 0 #CECECE inset;-moz-box-shadow:1px 0 0 0 #CECECE inset, 2px 0 0 0 #F9F9F9 inset, -1px 0 0 0 #CECECE inset;box-shadow:1px 0 0 0 #CECECE inset, 2px 0 0 0 #F9F9F9 inset, -1px 0 0 0 #CECECE inset;height:30px}.itemsList .headers .cell.preview_block input{margin-top:8px}.itemsList .headers .cell.resizable .resController{position:absolute;width:5px;height:100%;right:0px;top:0px;cursor:e-resize !important}.itemsList .headers .cell.resizable .resController.drag-start{background-color:#00cccc}.itemsList .headers .cell .scraper{position:absolute;top:7px;right:17px;cursor:pointer;display:none;width:16px;height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll -32px -208px transparent}.itemsList .headers .cell.grouped .scraper{display:block}.itemsList .headers .cell.dojoDndItem{padding:0px}.itemsList .headers .vmiddle{display:table-cell;vertical-align:middle;height:30px}.itemsList .headers.no-round{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.itemsList .headers.no-border-top{border-top:none}.itemsList .row{overflow:hidden;min-height:60px;max-height:60px;-webkit-box-shadow:0 0 0 1px #fff inset;-moz-box-shadow:0 0 0 1px #fff inset;box-shadow:0 0 0 1px #fff inset}.itemsList .row.small{height:auto;min-height:auto;max-height:auto}.itemsList .row.small .cell{display:inline-block}.itemsList .row.small .row-remove{top:12px}.itemsList .row:nth-child(even){background-color:#f1f1f1}.itemsList .row.darker{background-color:#f1f1f1}.itemsList .row:hover{background-color:#fafae3}.itemsList .row:hover .row-remove{display:block}.itemsList .row.headers:hover{background-color:#e6e6e6;background:-moz-linear-gradient(top, #e6e6e6, #e6e6e6);background:-webkit-linear-gradient(top, #e6e6e6, #e6e6e6);background:-o-linear-gradient(top, #e6e6e6, #e6e6e6);background:-ms-linear-gradient(top, #e6e6e6, #e6e6e6);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #e6e6e6, #e6e6e6, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #e6e6e6, #e6e6e6)}.itemsList .row.selected,.itemsList .row.checked,.itemsList .row.expanded{background-color:#d8e8fc !important}.itemsList .row.expanded{height:auto !important;max-height:100%}.itemsList .row.expanded .rowContent{display:block}.itemsList .row.no-border-left{border-left:none}.itemsList .row.no-border-right{border-right:none}.itemsList .row.dojoDndItem{padding:0px}.itemsList .row .row-remove{position:absolute;right:10px;top:22px}.itemsList .row .rowContent{display:none;-webkit-box-shadow:0 2px 0 0 #fff inset;-moz-box-shadow:0 2px 0 0 #fff inset;box-shadow:0 2px 0 0 #fff inset;cursor:auto;background-color:#e6f0fc}.itemsList .row .cell{position:relative;overflow:hidden}.itemsList .row .cell .bold{font-weight:bold}.itemsList .row .cell .grey{color:#666;font-size:0.8em}.itemsList .row .cell .icons{position:absolute;top:0;left:0;width:120px}.itemsList .row .cell .icons input{margin-top:16px}.itemsList .row .cell .icons .folderIcon{margin-top:4px}.itemsList .row .cell .icons .starred{margin-top:12px;width:16px;height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") 0 -48px no-repeat}.itemsList .row .cell button{float:right}.itemsList .row .cell:last-child{box-shadow:0px 0px 0px 0px #5d5c5c}.itemsList .row .cell .preview_block{height:50px}.itemsList .row .cell .preview_block input{margin-top:8px}.itemsList .row .cell .preview_block img{max-height:33px;max-width:33px;min-height:33px;margin-top:9px;display:inline-block}.itemsList .row .cell .revert{position:absolute;right:7px;top:8px}.itemsList .row .cell .revert .revert-tip{position:absolute;color:#ffffff;background-color:rgba(0,0,0,0.4);height:20px;line-height:20px;display:none;text-align:center;padding-right:5px;padding-left:5px}.itemsList .row .cell .revert:hover .revert-tip{display:block}.itemsList .row.subhead{min-height:40px;max-height:40px;background-color:white;border-top:1px solid #ccc;-webkit-box-shadow:0 0 1px 2px #8ad3ed;-moz-box-shadow:0 0 1px 2px #8ad3ed;box-shadow:0 0 1px 2px #8ad3ed;position:relative;z-index:1;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.itemsList .row.subhead .vmiddle{height:40px}.itemsList .row.abitem{position:relative;background-color:#fff;background:-moz-linear-gradient(top, #fff, #f6f6f6);background:-webkit-linear-gradient(top, #fff, #f6f6f6);background:-o-linear-gradient(top, #fff, #f6f6f6);background:-ms-linear-gradient(top, #fff, #f6f6f6);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #fff, #f6f6f6, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #fff, #f6f6f6)}.itemsList .row.abitem:hover{background-color:#fafae3;background:-moz-linear-gradient(top, #fafae3, #fafae3);background:-webkit-linear-gradient(top, #fafae3, #fafae3);background:-o-linear-gradient(top, #fafae3, #fafae3);background:-ms-linear-gradient(top, #fafae3, #fafae3);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #fafae3, #fafae3, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #fafae3, #fafae3)}.itemsList .row.abitem.checked{background-color:#d8e8fc;background:-moz-linear-gradient(top, #d8e8fc, #d8e8fc);background:-webkit-linear-gradient(top, #d8e8fc, #d8e8fc);background:-o-linear-gradient(top, #d8e8fc, #d8e8fc);background:-ms-linear-gradient(top, #d8e8fc, #d8e8fc);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #d8e8fc, #d8e8fc, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #d8e8fc, #d8e8fc)}.itemsList .row.abitem .accept-block{position:absolute;right:-40px;top:10px}.itemsList .auto-container{max-height:200px;overflow-y:auto;border-bottom:1px solid #ccc}.itemsList .auto-container .row:last-child{border-bottom:none}.itemsList .vmiddle{display:table-cell;vertical-align:middle;height:50px}.itemsList.text-only .row{min-height:30px;max-height:30px}.itemsList.text-only .vmiddle{height:30px}.itemsList .ui-counter{-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;width:16px;height:13px}.itemsList .icon-block{width:55px}.itemsList.usage-rights-list{border:1px solid #ccc;border-top:0 none}.itemsList.usage-rights-list .row{overflow:hidden;min-height:30px;max-height:30px}.itemsList.usage-rights-list .row .vmiddle{height:30px}.itemsList.small{font-size:12px}.itemsList.small .row{overflow:hidden;min-height:36px;max-height:36px}.itemsList.small .row .vmiddle{height:36px}.itemsList.tiny{font-size:12px}.itemsList.tiny .row{overflow:hidden;min-height:30px;max-height:30px}.itemsList.tiny .row .vmiddle{height:30px}.itemsList.activities-list .row{min-height:37px;max-height:150px}.itemsList.activities-list .row .vmiddle{height:34px}.itemsList.activities-list .row:nth-child(even){background-color:#fff}.itemsList.activities-list .row:hover{background-color:#fafae3}.itemsList.ordersList .row{-webkit-box-shadow:0 0 0 0 #fff;-moz-box-shadow:0 0 0 0 #fff;box-shadow:0 0 0 0 #fff}.itemsList.ordersList .row.newOrder{position:relative}.itemsList.ordersList .row.newOrder:before{background-color:#A91A1A;content:"";height:90%;left:0;position:absolute;top:5%;width:3px}.itemsList.enlargerHeight .row{max-height:100px}.group-container{position:relative;min-height:60px}.group-container .expander{cursor:pointer;position:absolute;top:21px;left:14px;width:16px;height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -16px transparent}.group-container .group-content{display:none}.group-container .grouped-row{display:block}.group-container:nth-child(even){background-color:#f1f1f1}.group-container.expanded{background-color:#fff;background:-moz-linear-gradient(top, #fff, #f5f5f5);background:-webkit-linear-gradient(top, #fff, #f5f5f5);background:-o-linear-gradient(top, #fff, #f5f5f5);background:-ms-linear-gradient(top, #fff, #f5f5f5);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #fff, #f5f5f5, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #fff, #f5f5f5);border:1px solid #cecece}.group-container.expanded .group-content{display:block}.group-container.expanded .expander{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 0 transparent}.group-container:first-child{border-top:none}.table-control-section{width:160px;position:relative;padding:0 10px;text-transform:capitalize;font-weight:bold}.table-control-item{width:160px;position:relative;padding:0 10px}.table-control-item-bottom{width:170px}.table-control-item .vmiddle{height:30px;display:table-cell;vertical-align:middle}.table-control-item .lib-select{min-width:40px}.table-control-item .scraper{position:absolute;top:5px;right:7px;cursor:pointer;display:none}.table-control-item.grouped .scraper{display:block}.table-controller.no-groups .table-control-item .scraper{display:none}.simpleDropdown{position:relative}.simpleDropdown .dropContent{top:30px;right:0px;background-color:#ffffff;display:none;position:absolute;border:1px solid #ccc;z-index:999}.simpleDropdown.active .dropContent{display:block}.fixed-top{position:fixed;top:0px;z-index:1;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;left:0px}.fixed-top.last-item{-webkit-box-shadow:0 0 7px #999;-moz-box-shadow:0 0 7px #999;box-shadow:0 0 7px #999}.spinner{width:50px;height:50px;background:url("/5.16.2.5993/frontend/images/spinner.gif") no-repeat scroll transparent}.loading-mask{display:none;position:absolute;top:0px;left:0px;width:100%;height:100%;z-index:1}.loading-mask .spinner{position:fixed;margin:auto;left:0;right:0;top:0;bottom:0;padding-right:0 !important}.loading-mask.loading{display:block}.folder-details-panel .loading-mask .spinner,.assetListContainer .loading-mask .spinner{padding-right:240px}.fixed-informer{position:fixed;min-width:125px;height:55px;background-color:rgba(51,51,51,0.9);-webkit-box-shadow:0 0 7px #666;-moz-box-shadow:0 0 7px #666;box-shadow:0 0 7px #666;right:30px;bottom:30px;-moz-transition:bottom 1s ease-out;-webkit-transition:bottom 1s ease-out;-ms-transition:bottom 1s ease-out;-o-transition:bottom 1s ease-out;transition:bottom 1s ease-out;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px}.fixed-informer .button-to-top{width:16px;height:16px;padding:3px;background-color:#0382dc;position:absolute;top:16px;left:10px;cursor:pointer}.fixed-informer .counterItems{color:#ffffff;position:absolute;right:9px;top:20px;min-width:40px}.fixed-informer.bottom-position{bottom:70px;-moz-transition:bottom 0s ease-in-out;-webkit-transition:bottom 0s ease-in-out;-ms-transition:bottom 0s ease-in-out;-o-transition:bottom 0s ease-in-out;transition:bottom 0s ease-in-out}.fixed-informer .spinner{position:absolute;left:-70px;top:50%;margin-top:-25px;opacity:0;-moz-transition:opacity 1s ease-in-out;-webkit-transition:opacity 1s ease-in-out;-ms-transition:opacity 1s ease-in-out;-o-transition:opacity 1s ease-in-out;transition:opacity 1s ease-in-out}.fixed-informer.loading .spinner{opacity:1;-moz-transition:opacity 0s ease-in-out;-webkit-transition:opacity 0s ease-in-out;-ms-transition:opacity 0s ease-in-out;-o-transition:opacity 0s ease-in-out;transition:opacity 0s ease-in-out}.fixed-toggler{width:40px;height:16px;-webkit-box-shadow:0 0 7px #666;-moz-box-shadow:0 0 7px #666;box-shadow:0 0 7px #666;position:fixed;left:50%;margin-left:-20px;background-color:#eee;text-align:center;cursor:pointer}.fixed-toggler .icon-arrow-down{display:inline-block;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat;background-position:0 0;background-position:0 -1534px;margin-top:-2px}.fixed-toggler.closed .icon-arrow-down{background-position:0 -624px;margin-top:0px}.plupload_wrapper{background-color:#eee}.plupload_wrapper .plupload_header_content{height:49px;background-color:#0082dc;color:#ffffff;position:relative}.plupload_wrapper .plupload_header_content .plupload_header_title{display:table-cell;height:49px;vertical-align:middle}.plupload_wrapper .plupload_header_content .plupload_file_size_info{position:absolute;top:15px;right:20px;font-size:10px}.plupload_wrapper .plupload_droptext div{line-height:204px;margin:20px}.plupload_wrapper .plupload_droptext div span{display:block;font-size:18px;border:3px dotted #cccccc}.plupload_wrapper .headers{color:#333333 !important;border:1px solid #ccc;background-color:#f0f0f0;background:-moz-linear-gradient(top, #f0f0f0, #f0f0f0);background:-webkit-linear-gradient(top, #f0f0f0, #f0f0f0);background:-o-linear-gradient(top, #f0f0f0, #f0f0f0);background:-ms-linear-gradient(top, #f0f0f0, #f0f0f0);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #f0f0f0, #f0f0f0, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #f0f0f0, #f0f0f0);height:30px;min-height:30px;max-height:30px;display:table;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;width:100%;-webkit-box-shadow:0 1px 0 0 #F9F9F9 inset;-moz-box-shadow:0 1px 0 0 #F9F9F9 inset;box-shadow:0 1px 0 0 #F9F9F9 inset}.plupload_wrapper .headers .ptxxs{padding-top:3px}.plupload_wrapper .headers .row{display:table-row}.plupload_wrapper .headers .sort{color:#333;display:inline-block;position:relative}.plupload_wrapper .headers .sort:after{content:'';position:absolute;top:8px;right:5px;margin:0 0 0 4px;height:16px;width:16px}.plupload_wrapper .headers .cell{-webkit-box-shadow:-1px 0 0px 0px #F9F9F9 inset, 1px 0 0 0 #cecece inset;-moz-box-shadow:-1px 0 0px 0px #F9F9F9 inset, 1px 0 0 0 #cecece inset;box-shadow:-1px 0 0px 0px #F9F9F9 inset, 1px 0 0 0 #cecece inset;display:table-cell;vertical-align:middle;text-align:center}.plupload_wrapper .headers .cell:last-child{-webkit-box-shadow:-1px 0 0px 0px #cecece inset, 1px 0 0 0 #cecece inset;-moz-box-shadow:-1px 0 0px 0px #cecece inset, 1px 0 0 0 #cecece inset;box-shadow:-1px 0 0px 0px #cecece inset, 1px 0 0 0 #cecece inset}.plupload_wrapper .headers .cell.preview_block{height:30px}.plupload_wrapper .headers .cell.preview_block input{margin-top:8px}.plupload_wrapper .headers .cell.left{text-align:left}.plupload_wrapper .headers .cell.side{width:10px}.plupload_wrapper .headers .vmiddle{display:table-cell;vertical-align:middle;height:30px}.plupload_wrapper div.plupload_file{display:table-row;border-bottom:1px solid #cccccc}.plupload_wrapper .plupload_filelist_content{table-layout:fixed;display:table;margin:0 }.plupload_wrapper .plupload_filelist_content tr:nth-child(even) td{background-color:#fff}.plupload_wrapper .plupload_filelist_content div.cell{display:table-cell;color:#333333 !important;vertical-align:middle;height:30px;word-wrap:break-word}.plupload_wrapper .plupload_filelist_content div.cell .ui-icon-circle-minus{margin-right:-6px}.plupload_wrapper .plupload_filelist_content div.cell.side{width:10px}.plupload_wrapper .plupload_filelist_content div.cell.agency_selector{text-align:center}.plupload_wrapper .plupload_filelist_content div.cell.plupload_file_mediatype{padding-right:16px}.plupload_wrapper .plupload_scroll{max-height:251px;min-height:250px;_height:250px;overflow-y:auto}.plupload_wrapper .plupload_cell{text-align:left !important;padding:8px 0}.plupload_wrapper .plupload_file_action{width:10px}.plupload_wrapper .plupload_footer{height:50px;margin-bottom:10px;box-shadow:inset 0 0 3px rgba(0,0,0,0.1),0 0 5px #666}.plupload_wrapper .plupload_footer .plupload_progress{width:140px;margin:3px 20px 0 0}.plupload_wrapper .plupload_footer .ui-progressbar{height:20px;box-shadow:inset 0 1px 3px #666;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.plupload_wrapper .plupload_footer .ui-progressbar .ui-progressbar-value{height:20px;background-color:#0088de;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.plupload_wrapper .plupload_filelist{color:#333333 !important}.plupload_wrapper .plupload_filelist tr td .vmiddle{font-weight:bold;display:table-cell;vertical-align:middle;height:50px}.dijitMenuItemLabel .icon-country{display:inline-block;vertical-align:top;margin-top:2px}.dijitSelectLabel .icon-country{display:inline-block}.icon-country{background:url('/5.16.2.5993/frontend/images/icons_countries.png') no-repeat;width:16px;height:11px}.icon-country.me{background-position:0 0;width:16px;height:12px}.icon-country.ad{background-position:0 -12px}.icon-country.ly{background-position:0 -23px}.icon-country.mt{background-position:0 -34px}.icon-country.va{background-position:0 -45px}.icon-country.ug{background-position:0 -56px}.icon-country.tk{background-position:0 -67px}.icon-country.bb{background-position:0 -78px}.icon-country.ms{background-position:0 -89px}.icon-country.it{background-position:0 -100px}.icon-country.iq{background-position:0 -111px}.icon-country.pl{background-position:0 -122px}.icon-country.is{background-position:0 -133px}.icon-country.pe{background-position:0 -144px}.icon-country.ht{background-position:0 -155px}.icon-country.jp{background-position:0 -166px}.icon-country.us{background-position:0 -177px}.icon-country.lr{background-position:0 -188px}.icon-country.au{background-position:0 -199px}.icon-country.eh{background-position:0 -210px}.icon-country.gl{background-position:0 -221px}.icon-country.dz{background-position:0 -232px}.icon-country.ir{background-position:0 -243px}.icon-country.bt{background-position:0 -254px}.icon-country.cs{background-position:0 -265px}.icon-country.ne{background-position:0 -276px}.icon-country.to{background-position:0 -287px}.icon-country.catalonia{background-position:0 -298px}.icon-country.fr{background-position:0 -309px}.icon-country.uy{background-position:0 -320px}.icon-country.az{background-position:0 -331px}.icon-country.cf{background-position:0 -342px}.icon-country.dk{background-position:0 -353px}.icon-country.za{background-position:0 -364px}.icon-country.jm{background-position:0 -375px}.icon-country.lv{background-position:0 -386px}.icon-country.tl{background-position:0 -397px}.icon-country.mx{background-position:0 -408px}.icon-country.bn{background-position:0 -419px}.icon-country.gf{background-position:0 -430px}.icon-country.ai{background-position:0 -441px}.icon-country.ch{background-position:0 -452px;width:11px;height:11px}.icon-country.cl{background-position:0 -463px}.icon-country.er{background-position:0 -474px}.icon-country.cx{background-position:0 -485px}.icon-country.sy{background-position:0 -496px}.icon-country.bo{background-position:0 -507px}.icon-country.ba{background-position:0 -518px}.icon-country.cm{background-position:0 -529px}.icon-country.nr{background-position:0 -540px}.icon-country.cd{background-position:0 -551px}.icon-country.ph{background-position:0 -562px}.icon-country.lu{background-position:0 -573px}.icon-country.pw{background-position:0 -584px}.icon-country.id{background-position:0 -595px}.icon-country.mo{background-position:0 -606px}.icon-country.sg{background-position:0 -617px}.icon-country.tw{background-position:0 -628px}.icon-country.ge{background-position:0 -639px}.icon-country.in{background-position:0 -650px}.icon-country.zw{background-position:0 -661px}.icon-country.bv{background-position:0 -672px}.icon-country.tj{background-position:0 -683px}.icon-country.europeanunion{background-position:0 -694px}.icon-country.vu{background-position:0 -705px}.icon-country.tm{background-position:0 -716px}.icon-country.cz{background-position:0 -727px}.icon-country.vg{background-position:0 -738px}.icon-country.tr{background-position:0 -749px}.icon-country.lc{background-position:0 -760px}.icon-country.by{background-position:0 -771px}.icon-country.tf{background-position:0 -782px}.icon-country.ro{background-position:0 -793px}.icon-country.ki{background-position:0 -804px}.icon-country.mm{background-position:0 -815px}.icon-country.ee{background-position:0 -826px}.icon-country.sa{background-position:0 -837px}.icon-country.sj{background-position:0 -848px}.icon-country.nc{background-position:0 -859px}.icon-country.bw{background-position:0 -870px}.icon-country.ml{background-position:0 -881px}.icon-country.gr{background-position:0 -892px}.icon-country.pa{background-position:0 -903px}.icon-country.nu{background-position:0 -914px}.icon-country.bg{background-position:0 -925px}.icon-country.uz{background-position:0 -936px}.icon-country.mv{background-position:0 -947px}.icon-country.cr{background-position:0 -958px}.icon-country.be{background-position:0 -969px}.icon-country.bh{background-position:0 -980px}.icon-country.mz{background-position:0 -991px}.icon-country.zm{background-position:0 -1002px}.icon-country.ma{background-position:0 -1013px}.icon-country.an{background-position:0 -1024px}.icon-country.ng{background-position:0 -1035px}.icon-country.np{background-position:0 -1046px;width:9px;height:11px}.icon-country.sk{background-position:0 -1057px}.icon-country.gn{background-position:0 -1068px}.icon-country.ie{background-position:0 -1079px}.icon-country.si{background-position:0 -1090px}.icon-country.dj{background-position:0 -1101px}.icon-country.cu{background-position:0 -1112px}.icon-country.ni{background-position:0 -1123px}.icon-country.py{background-position:0 -1134px}.icon-country.sl{background-position:0 -1145px}.icon-country.ec{background-position:0 -1156px}.icon-country.ae{background-position:0 -1167px}.icon-country.sr{background-position:0 -1178px}.icon-country.tg{background-position:0 -1189px}.icon-country.sb{background-position:0 -1200px}.icon-country.bi{background-position:0 -1211px}.icon-country.at{background-position:0 -1222px}.icon-country.mh{background-position:0 -1233px}.icon-country.se{background-position:0 -1244px}.icon-country.gi{background-position:0 -1255px}.icon-country.sc{background-position:0 -1266px}.icon-country.hn{background-position:0 -1277px}.icon-country.tc{background-position:0 -1288px}.icon-country.mg{background-position:0 -1299px}.icon-country.fk{background-position:0 -1310px}.icon-country.cv{background-position:0 -1321px}.icon-country.kg{background-position:0 -1332px}.icon-country.wf{background-position:0 -1343px}.icon-country.sz{background-position:0 -1354px}.icon-country.fi{background-position:0 -1365px}.icon-country.af{background-position:0 -1376px}.icon-country.pt{background-position:0 -1387px}.icon-country.gq{background-position:0 -1398px}.icon-country.gp{background-position:0 -1409px}.icon-country.no{background-position:0 -1420px}.icon-country.fo{background-position:0 -1431px}.icon-country.lb{background-position:0 -1442px}.icon-country.th{background-position:0 -1453px}.icon-country.sd{background-position:0 -1464px}.icon-country.et{background-position:0 -1475px}.icon-country.al{background-position:0 -1486px}.icon-country.re{background-position:0 -1497px}.icon-country.mp{background-position:0 -1508px}.icon-country.tn{background-position:0 -1519px}.icon-country.gt{background-position:0 -1530px}.icon-country.england{background-position:0 -1541px}.icon-country.il{background-position:0 -1552px}.icon-country.hk{background-position:0 -1563px}.icon-country.ws{background-position:0 -1574px}.icon-country.mw{background-position:0 -1585px}.icon-country.mq{background-position:0 -1596px}.icon-country.km{background-position:0 -1607px}.icon-country.jo{background-position:0 -1618px}.icon-country.so{background-position:0 -1629px}.icon-country.st{background-position:0 -1640px}.icon-country.ci{background-position:0 -1651px}.icon-country.hu{background-position:0 -1662px}.icon-country.kn{background-position:0 -1673px}.icon-country.gs{background-position:0 -1684px}.icon-country.br{background-position:0 -1695px}.icon-country.li{background-position:0 -1706px}.icon-country.ag{background-position:0 -1717px}.icon-country.tz{background-position:0 -1728px}.icon-country.mr{background-position:0 -1739px}.icon-country.ky{background-position:0 -1750px}.icon-country.kz{background-position:0 -1761px}.icon-country.ls{background-position:0 -1772px}.icon-country.de{background-position:0 -1783px}.icon-country.ye{background-position:0 -1794px}.icon-country.sh{background-position:0 -1805px}.icon-country.nz{background-position:0 -1816px}.icon-country.mu{background-position:0 -1827px}.icon-country.bz{background-position:0 -1838px}.icon-country.vn{background-position:0 -1849px}.icon-country.ar{background-position:0 -1860px}.icon-country.ke{background-position:0 -1871px}.icon-country.td{background-position:0 -1882px}.icon-country.fam{background-position:0 -1893px}.icon-country.cg{background-position:0 -1904px}.icon-country.cn{background-position:0 -1915px}.icon-country.ca{background-position:0 -1926px}.icon-country.co{background-position:0 -1937px}.icon-country.kp{background-position:0 -1948px}.icon-country.gu{background-position:0 -1959px}.icon-country.cc{background-position:0 -1970px}.icon-country.rw{background-position:0 -1981px}.icon-country.na{background-position:0 -1992px}.icon-country.sm{background-position:0 -2003px}.icon-country.pr{background-position:0 -2014px}.icon-country.eg{background-position:0 -2025px}.icon-country.scotland{background-position:0 -2036px}.icon-country.md{background-position:0 -2047px}.icon-country.bj{background-position:0 -2058px}.icon-country.bf{background-position:0 -2069px}.icon-country.ck{background-position:0 -2080px}.icon-country.fj{background-position:0 -2091px}.icon-country.gy{background-position:0 -2102px}.icon-country.vc{background-position:0 -2113px}.icon-country.ru{background-position:0 -2124px}.icon-country.ve{background-position:0 -2135px}.icon-country.sv{background-position:0 -2146px}.icon-country.do{background-position:0 -2157px}.icon-country.gd{background-position:0 -2168px}.icon-country.om{background-position:0 -2179px}.icon-country.vi{background-position:0 -2190px}.icon-country.as{background-position:0 -2201px}.icon-country.nf{background-position:0 -2212px}.icon-country.lt{background-position:0 -2223px}.icon-country.my{background-position:0 -2234px}.icon-country.tv{background-position:0 -2245px}.icon-country.hr{background-position:0 -2256px}.icon-country.ao{background-position:0 -2267px}.icon-country.hm{background-position:0 -2278px}.icon-country.nl{background-position:0 -2289px}.icon-country.kr{background-position:0 -2300px}.icon-country.yt{background-position:0 -2311px}.icon-country.pm{background-position:0 -2322px}.icon-country.pg{background-position:0 -2333px}.icon-country.mc{background-position:0 -2344px}.icon-country.sn{background-position:0 -2355px}.icon-country.kh{background-position:0 -2366px}.icon-country.dm{background-position:0 -2377px}.icon-country.gw{background-position:0 -2388px}.icon-country.tt{background-position:0 -2399px}.icon-country.rs{background-position:0 -2410px}.icon-country.ua{background-position:0 -2421px}.icon-country.am{background-position:0 -2432px}.icon-country.ga{background-position:0 -2443px}.icon-country.es{background-position:0 -2454px}.icon-country.fm{background-position:0 -2465px}.icon-country.wales{background-position:0 -2476px}.icon-country.aw{background-position:0 -2487px}.icon-country.bs{background-position:0 -2498px}.icon-country.mk{background-position:0 -2509px}.icon-country.pf{background-position:0 -2520px}.icon-country.pk{background-position:0 -2531px}.icon-country.io{background-position:0 -2542px}.icon-country.mn{background-position:0 -2553px}.icon-country.um{background-position:0 -2564px}.icon-country.ps{background-position:0 -2575px}.icon-country.gh{background-position:0 -2586px}.icon-country.lk{background-position:0 -2597px}.icon-country.bd{background-position:0 -2608px}.icon-country.cy{background-position:0 -2619px}.icon-country.pn{background-position:0 -2630px}.icon-country.gm{background-position:0 -2641px}.icon-country.qa{background-position:0 -2652px}.icon-country.ax{background-position:0 -2663px}.icon-country.la{background-position:0 -2674px}.icon-country.gb{background-position:0 -2685px}.icon-country.kw{background-position:0 -2696px}.icon-country.bm{background-position:0 -2707px}.admin .formCatalogueRow .choiceValueContainer,.metadata .formCatalogueRow .choiceValueContainer{padding-left:60px;padding-right:70px}.admin .formCatalogueRow .button,.metadata .formCatalogueRow .button{min-width:auto;height:auto;padding:5px}.admin .formCatalogueRow.multilevel-dictionary .choiceValueContainer,.metadata .formCatalogueRow.multilevel-dictionary .choiceValueContainer{padding-right:105px}.admin .formCatalogueRow.dictionary .choiceValueContainer,.metadata .formCatalogueRow.dictionary .choiceValueContainer,.admin .formCatalogueRow.multilevel-dictionary-last-level .choiceValueContainer,.metadata .formCatalogueRow.multilevel-dictionary-last-level .choiceValueContainer{padding-right:70px}.admin .formCatalogueRow.new-option .choiceValueContainer,.metadata .formCatalogueRow.new-option .choiceValueContainer{padding-right:35px}.admin .formCatalogueRow.defaultValue,.metadata .formCatalogueRow.defaultValue{background-color:#d8e8fc}.admin .notifications .form-select{width:100%;min-width:130px;padding-right:15px}.admin .notifications .subscriptionsList{max-height:410px;overflow:auto;margin-left:-10px;margin-right:-10px}.admin .notifications .normal-right-spinner{top:3px}.defaultValueRow{width:60px}.glyphicon.normal-right-spinner{-webkit-animation:glyphicon-spin-r 2s infinite linear;animation:glyphicon-spin-r 2s infinite linear}.search-collector-box .advancedSearchCollector input[type="text"].value,.search-collector-box .advancedSearchCollector .lib-select.filter{margin-right:0}.search-collector-box .advancedSearchCollector .assetDate{margin-top:10px}.search-collector-box .advancedSearchCollector .assetDate .filter{margin-right:0}@keyframes glyphicon-spin-r{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.units .add_partners_popup,.units .remove_partners_popup{width:500px}.units .add_partners_popup label,.units .remove_partners_popup label{font-weight:normal}.units .remove_partners_popup ul{list-style-type:disc}.units .a5-emails-multiselect{width:100%;padding-top:10px;padding-right:10px;padding-bottom:10px;padding-left:10px;-webkit-box-shadow:inset 0 1px 2px #888;-moz-box-shadow:inset 0 1px 2px #888;box-shadow:inset 0 1px 2px #888;border-top:1px solid #888;border-bottom:1px solid #b6b6b6;border-left:1px solid #aaa;border-right:1px solid #aaa}.units .branding{position:relative}.units .content-container .spinner{top:360px;left:50%;transform:translateX(-40px);position:fixed}.units .b-rules{margin:20px 0;padding-left:20px;height:300px;overflow:auto}.units .b-rules-item{list-style-type:decimal;margin-bottom:20px}.units .b-rules__criterias-item:first-child .b-add-btn{display:inline-block !important}.units .b-rules__criterias-item:first-child .b-separator{display:none}.l-admin-units .lib-sidebar{width:240px;max-width:480px}.b-units-users-projects-tree .trash-unit,.b-units-users-projects-tree .tree-item>.title{padding:0;box-sizing:content-box}.b-units-users-projects-tree .tree-item>.title{padding-left:40px}.l-user-management-delivery-popup-dialog .button{padding:5px;width:28px;height:20px}.l-units-markets-list .b-sort-dropdown{width:200px}.l-units-markets-list .a5-unit-markets-list{padding-top:10px;padding-right:10px;padding-bottom:10px;padding-left:10px}.l-units-markets-list .a5-unit-markets-list-item{padding-top:10px;padding-right:10px;padding-bottom:10px;padding-left:10px}.l-units-markets-list .a5-unit-markets-list-item:nth-child(odd){background-color:#f4f4f4}.l-units-markets-list .a5-unit-markets-list-item:nth-child(even){background-color:#fff}.a5-unit-markets-list-item__btn,.a5-unit-markets-list-item__btn-visibility{cursor:pointer;opacity:1.0}.a5-unit-markets-list-item__btn.s-disabled,.a5-unit-markets-list-item__btn-visibility.s-disabled{opacity:0.3;cursor:default}.a5-unit-markets-list-item__btn,.a5-unit-markets-list-item__name{display:inline-block;vertical-align:middle}.a5-unit-markets-list-item__btn{background-color:#e5e5e5;border:1px solid #d5d5d5;width:24px;height:24px;position:relative}.a5-unit-markets-list-item__btn .spriteicon{position:absolute;top:0;left:0;right:0;bottom:0;margin:auto}.a5-unit-markets-list-item__name.clickable{cursor:pointer;color:#0082dc}.a5-unit-markets-list-item__btn-visibility{float:right;width:24px;margin-right:20px}.a5-unit-markets-list-item__btn-visibility.i24x24_icon-visible-false-24x20{height:20px}.a5-unit-markets-list-item__btn-visibility.i24x24_icon-visible-true-24x13{margin-top:4px;height:13px}.a5-unit-market-group.content-block{border-radius:5px}.a5-unit-market-group__title{text-transform:capitalize}.a5-unit-markets-name-bar{border-bottom:1px solid #efefef;width:100%;padding-top:10px;padding-bottom:10px}.a5-unit-markets-name-bar .label{font-weight:bold}.a5-unit-markets-name-bar .required::after{content:'*';color:red;padding-left:5px}.a5-unit-markets-name-bar input.ui-input.name,.a5-unit-markets-name-bar .markets-list{width:25%;margin-left:10px}.a5-unit-markets-name-bar .label,.a5-unit-markets-name-bar .name{padding-left:10px}.a5-unit-markets-menu-list{border-right:1px solid #efefef;padding-top:10px;padding-right:10px;padding-bottom:10px;padding-left:10px}.a5-unit-markets-menu-list-item{padding-top:10px;padding-right:10px;padding-bottom:10px;padding-left:10px;cursor:pointer;color:#0082dc}.b-footer{border-top:1px solid #efefef;padding-top:20px;padding-bottom:20px}.b-footer .button{margin-left:10px}.market-title-name{font-weight:bold;font-size:13px}.b-vertical-column{max-height:600px;height:600px;overflow:scroll}.grey-right-border{border-right:1px solid #efefef}.a5-unit-destination-group__container{border-bottom:1px solid #d1d1d1}.a5-unit-destination-group .b-items-wrapper{border-left:1px solid #d1d1d1;border-right:1px solid #d1d1d1}.a5-unit-destination-group-list{min-height:20px}.a5-unit-markets-list-item__btn{background-color:#a8a8a8;width:16px;height:16px}.a5-unit-destination-list__empty{position:absolute}.a5-unit-destination-group{z-index:1;position:relative}.a5-unit-destination-group__header{background-color:#3c3c3c;padding-top:10px;padding-right:10px;padding-bottom:10px;padding-left:10px}.a5-unit-destination-group__header .b-btn-collapse{display:inline-block;cursor:pointer}.a5-unit-destination-group__header .b-btn-collapse .icon{color:#868686;position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:normal;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.a5-unit-destination-group__header .b-btn-collapse .icon:before{content:"\2212"}.a5-unit-destination-group__header .b-btn-collapse .icon.s-collapsed:before{content:"\2b"}.a5-unit-destination-group__header .name{color:#a8a8a8}.a5-unit-destination-group__header .b-btn-collapse,.a5-unit-destination-group__header input,.a5-unit-destination-group__header .name{vertical-align:middle}.a5-unit-destination-group__header input,.a5-unit-destination-group__header .name{margin-left:10px}.a5-unit-destination-group-item{padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:26px}.a5-unit-destination-group-item .b-btn-collapse,.a5-unit-destination-group-item input,.a5-unit-destination-group-item .name{vertical-align:middle}.a5-unit-destination-group-item input,.a5-unit-destination-group-item .name{margin-left:10px}.a5-unit-destination-group-item .bc-station{list-style-type:disc;margin-left:80px}.a5-unit-markets-menu-list__group-name{font-weight:bold;font-size:13px;text-transform:capitalize;padding-bottom:5px}.l-users-edit input[type="number"].e-add-media-input{width:50px}.adbankToolTipContainer{padding:5px}.dijitPopup{z-index:2000 !important}.dijitDialogUnderlay{background:#000}.dijitReset{line-height:inherit}input.ui-input[type="text"],input.ui-input[type="number"],input.ui-input[type="password"],input.ui-input[type="email"]{height:30px;width:100%;padding:3px 5px;outline:none;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;border:1px solid #ccc;background-color:white;-webkit-transition:border linear .2s,box-shadow linear .2s;font-size:13px;border-radius:0px !important;box-shadow:none !important}input.ui-input[type="text"].small,input.ui-input[type="number"].small,input.ui-input[type="password"].small,input.ui-input[type="email"].small{height:25px;padding:0 3px;font-size:11px}input.ui-input[type="text"]:hover,input.ui-input[type="number"]:hover,input.ui-input[type="password"]:hover,input.ui-input[type="email"]:hover{border-color:#759dc0;-webkit-transition-duration:.25s;-moz-transition-duration:.25s;transition-duration:.25s}input.ui-input[type="text"]:focus,input.ui-input[type="number"]:focus,input.ui-input[type="password"]:focus,input.ui-input[type="email"]:focus{outline:none;-webkit-box-shadow:inset 0 1px 3px @black-01, 0 0 5px  @blue-06;-moz-box-shadow:inset 0 1px 3px @black-01, 0 0 5px  @blue-06;box-shadow:inset 0 1px 3px @black-01, 0 0 5px  @blue-06;border-color:#0082dc;border-color:rgba(0,130,220,0.6)}input.ui-input[type="text"].error[type="text"],input.ui-input[type="number"].error[type="text"],input.ui-input[type="password"].error[type="text"],input.ui-input[type="email"].error[type="text"],input.ui-input[type="text"].ng-invalid.ng-dirty[type="text"],input.ui-input[type="number"].ng-invalid.ng-dirty[type="text"],input.ui-input[type="password"].ng-invalid.ng-dirty[type="text"],input.ui-input[type="email"].ng-invalid.ng-dirty[type="text"],input.ui-input[type="text"].custom_field_error[type="text"],input.ui-input[type="number"].custom_field_error[type="text"],input.ui-input[type="password"].custom_field_error[type="text"],input.ui-input[type="email"].custom_field_error[type="text"],input.ui-input[type="text"].error[type="password"],input.ui-input[type="number"].error[type="password"],input.ui-input[type="password"].error[type="password"],input.ui-input[type="email"].error[type="password"],input.ui-input[type="text"].ng-invalid.ng-dirty[type="password"],input.ui-input[type="number"].ng-invalid.ng-dirty[type="password"],input.ui-input[type="password"].ng-invalid.ng-dirty[type="password"],input.ui-input[type="email"].ng-invalid.ng-dirty[type="password"],input.ui-input[type="text"].custom_field_error[type="password"],input.ui-input[type="number"].custom_field_error[type="password"],input.ui-input[type="password"].custom_field_error[type="password"],input.ui-input[type="email"].custom_field_error[type="password"],input.ui-input[type="text"].error[type="email"],input.ui-input[type="number"].error[type="email"],input.ui-input[type="password"].error[type="email"],input.ui-input[type="email"].error[type="email"],input.ui-input[type="text"].ng-invalid.ng-dirty[type="email"],input.ui-input[type="number"].ng-invalid.ng-dirty[type="email"],input.ui-input[type="password"].ng-invalid.ng-dirty[type="email"],input.ui-input[type="email"].ng-invalid.ng-dirty[type="email"],input.ui-input[type="text"].custom_field_error[type="email"],input.ui-input[type="number"].custom_field_error[type="email"],input.ui-input[type="password"].custom_field_error[type="email"],input.ui-input[type="email"].custom_field_error[type="email"],input.ui-input[type="text"].error[type="number"],input.ui-input[type="number"].error[type="number"],input.ui-input[type="password"].error[type="number"],input.ui-input[type="email"].error[type="number"],input.ui-input[type="text"].ng-invalid.ng-dirty[type="number"],input.ui-input[type="number"].ng-invalid.ng-dirty[type="number"],input.ui-input[type="password"].ng-invalid.ng-dirty[type="number"],input.ui-input[type="email"].ng-invalid.ng-dirty[type="number"],input.ui-input[type="text"].custom_field_error[type="number"],input.ui-input[type="number"].custom_field_error[type="number"],input.ui-input[type="password"].custom_field_error[type="number"],input.ui-input[type="email"].custom_field_error[type="number"]{border-color:red}input.ui-input[type="text"].error[type="text"]:focus,input.ui-input[type="number"].error[type="text"]:focus,input.ui-input[type="password"].error[type="text"]:focus,input.ui-input[type="email"].error[type="text"]:focus,input.ui-input[type="text"].ng-invalid.ng-dirty[type="text"]:focus,input.ui-input[type="number"].ng-invalid.ng-dirty[type="text"]:focus,input.ui-input[type="password"].ng-invalid.ng-dirty[type="text"]:focus,input.ui-input[type="email"].ng-invalid.ng-dirty[type="text"]:focus,input.ui-input[type="text"].custom_field_error[type="text"]:focus,input.ui-input[type="number"].custom_field_error[type="text"]:focus,input.ui-input[type="password"].custom_field_error[type="text"]:focus,input.ui-input[type="email"].custom_field_error[type="text"]:focus,input.ui-input[type="text"].error[type="password"]:focus,input.ui-input[type="number"].error[type="password"]:focus,input.ui-input[type="password"].error[type="password"]:focus,input.ui-input[type="email"].error[type="password"]:focus,input.ui-input[type="text"].ng-invalid.ng-dirty[type="password"]:focus,input.ui-input[type="number"].ng-invalid.ng-dirty[type="password"]:focus,input.ui-input[type="password"].ng-invalid.ng-dirty[type="password"]:focus,input.ui-input[type="email"].ng-invalid.ng-dirty[type="password"]:focus,input.ui-input[type="text"].custom_field_error[type="password"]:focus,input.ui-input[type="number"].custom_field_error[type="password"]:focus,input.ui-input[type="password"].custom_field_error[type="password"]:focus,input.ui-input[type="email"].custom_field_error[type="password"]:focus,input.ui-input[type="text"].error[type="email"]:focus,input.ui-input[type="number"].error[type="email"]:focus,input.ui-input[type="password"].error[type="email"]:focus,input.ui-input[type="email"].error[type="email"]:focus,input.ui-input[type="text"].ng-invalid.ng-dirty[type="email"]:focus,input.ui-input[type="number"].ng-invalid.ng-dirty[type="email"]:focus,input.ui-input[type="password"].ng-invalid.ng-dirty[type="email"]:focus,input.ui-input[type="email"].ng-invalid.ng-dirty[type="email"]:focus,input.ui-input[type="text"].custom_field_error[type="email"]:focus,input.ui-input[type="number"].custom_field_error[type="email"]:focus,input.ui-input[type="password"].custom_field_error[type="email"]:focus,input.ui-input[type="email"].custom_field_error[type="email"]:focus,input.ui-input[type="text"].error[type="number"]:focus,input.ui-input[type="number"].error[type="number"]:focus,input.ui-input[type="password"].error[type="number"]:focus,input.ui-input[type="email"].error[type="number"]:focus,input.ui-input[type="text"].ng-invalid.ng-dirty[type="number"]:focus,input.ui-input[type="number"].ng-invalid.ng-dirty[type="number"]:focus,input.ui-input[type="password"].ng-invalid.ng-dirty[type="number"]:focus,input.ui-input[type="email"].ng-invalid.ng-dirty[type="number"]:focus,input.ui-input[type="text"].custom_field_error[type="number"]:focus,input.ui-input[type="number"].custom_field_error[type="number"]:focus,input.ui-input[type="password"].custom_field_error[type="number"]:focus,input.ui-input[type="email"].custom_field_error[type="number"]:focus,input.ui-input[type="text"].error[type="text"].dijitTextBoxFocused,input.ui-input[type="number"].error[type="text"].dijitTextBoxFocused,input.ui-input[type="password"].error[type="text"].dijitTextBoxFocused,input.ui-input[type="email"].error[type="text"].dijitTextBoxFocused,input.ui-input[type="text"].ng-invalid.ng-dirty[type="text"].dijitTextBoxFocused,input.ui-input[type="number"].ng-invalid.ng-dirty[type="text"].dijitTextBoxFocused,input.ui-input[type="password"].ng-invalid.ng-dirty[type="text"].dijitTextBoxFocused,input.ui-input[type="email"].ng-invalid.ng-dirty[type="text"].dijitTextBoxFocused,input.ui-input[type="text"].custom_field_error[type="text"].dijitTextBoxFocused,input.ui-input[type="number"].custom_field_error[type="text"].dijitTextBoxFocused,input.ui-input[type="password"].custom_field_error[type="text"].dijitTextBoxFocused,input.ui-input[type="email"].custom_field_error[type="text"].dijitTextBoxFocused,input.ui-input[type="text"].error[type="password"].dijitTextBoxFocused,input.ui-input[type="number"].error[type="password"].dijitTextBoxFocused,input.ui-input[type="password"].error[type="password"].dijitTextBoxFocused,input.ui-input[type="email"].error[type="password"].dijitTextBoxFocused,input.ui-input[type="text"].ng-invalid.ng-dirty[type="password"].dijitTextBoxFocused,input.ui-input[type="number"].ng-invalid.ng-dirty[type="password"].dijitTextBoxFocused,input.ui-input[type="password"].ng-invalid.ng-dirty[type="password"].dijitTextBoxFocused,input.ui-input[type="email"].ng-invalid.ng-dirty[type="password"].dijitTextBoxFocused,input.ui-input[type="text"].custom_field_error[type="password"].dijitTextBoxFocused,input.ui-input[type="number"].custom_field_error[type="password"].dijitTextBoxFocused,input.ui-input[type="password"].custom_field_error[type="password"].dijitTextBoxFocused,input.ui-input[type="email"].custom_field_error[type="password"].dijitTextBoxFocused,input.ui-input[type="text"].error[type="email"].dijitTextBoxFocused,input.ui-input[type="number"].error[type="email"].dijitTextBoxFocused,input.ui-input[type="password"].error[type="email"].dijitTextBoxFocused,input.ui-input[type="email"].error[type="email"].dijitTextBoxFocused,input.ui-input[type="text"].ng-invalid.ng-dirty[type="email"].dijitTextBoxFocused,input.ui-input[type="number"].ng-invalid.ng-dirty[type="email"].dijitTextBoxFocused,input.ui-input[type="password"].ng-invalid.ng-dirty[type="email"].dijitTextBoxFocused,input.ui-input[type="email"].ng-invalid.ng-dirty[type="email"].dijitTextBoxFocused,input.ui-input[type="text"].custom_field_error[type="email"].dijitTextBoxFocused,input.ui-input[type="number"].custom_field_error[type="email"].dijitTextBoxFocused,input.ui-input[type="password"].custom_field_error[type="email"].dijitTextBoxFocused,input.ui-input[type="email"].custom_field_error[type="email"].dijitTextBoxFocused,input.ui-input[type="text"].error[type="number"].dijitTextBoxFocused,input.ui-input[type="number"].error[type="number"].dijitTextBoxFocused,input.ui-input[type="password"].error[type="number"].dijitTextBoxFocused,input.ui-input[type="email"].error[type="number"].dijitTextBoxFocused,input.ui-input[type="text"].ng-invalid.ng-dirty[type="number"].dijitTextBoxFocused,input.ui-input[type="number"].ng-invalid.ng-dirty[type="number"].dijitTextBoxFocused,input.ui-input[type="password"].ng-invalid.ng-dirty[type="number"].dijitTextBoxFocused,input.ui-input[type="email"].ng-invalid.ng-dirty[type="number"].dijitTextBoxFocused,input.ui-input[type="text"].custom_field_error[type="number"].dijitTextBoxFocused,input.ui-input[type="number"].custom_field_error[type="number"].dijitTextBoxFocused,input.ui-input[type="password"].custom_field_error[type="number"].dijitTextBoxFocused,input.ui-input[type="email"].custom_field_error[type="number"].dijitTextBoxFocused{outline:none;-webkit-box-shadow:inset 0 1px 3px @black-01, 0 0 5px rgba(255, 167, 4, 0.7);-moz-box-shadow:inset 0 1px 3px @black-01, 0 0 5px rgba(255, 167, 4, 0.7);box-shadow:inset 0 1px 3px @black-01, 0 0 5px rgba(255, 167, 4, 0.7);border-color:red}input.ui-input[type="text"].huge,input.ui-input[type="number"].huge,input.ui-input[type="password"].huge,input.ui-input[type="email"].huge{height:40px;font-size:15px}input.ui-input[type="text"]:disabled,input.ui-input[type="number"]:disabled,input.ui-input[type="password"]:disabled,input.ui-input[type="email"]:disabled{background-color:#eee}input.ui-input[type="text"].size1of2,input.ui-input[type="number"].size1of2,input.ui-input[type="password"].size1of2,input.ui-input[type="email"].size1of2{width:50%;display:inline-block}input.ui-input[type="text"].size1of2+.ui-input,input.ui-input[type="number"].size1of2+.ui-input,input.ui-input[type="password"].size1of2+.ui-input,input.ui-input[type="email"].size1of2+.ui-input{border-left:none}select.ui-select{height:25px;width:160px;outline:none;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-box-shadow:inset 0 1px 3px rgba(0,0,0,0.1);-moz-box-shadow:inset 0 1px 3px rgba(0,0,0,0.1);box-shadow:inset 0 1px 3px rgba(0,0,0,0.1);border:1px solid #ccc;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;background-color:white}select.ui-select.ui-select.small{height:24px}textarea{width:100%;border:1px solid;padding:3px 5px}textarea.error{border-color:red}textarea.error:focus,textarea.error.dijitTextBoxFocused{outline:none;-webkit-box-shadow:inset 0 1px 3px @black-01, 0 0 5px rgba(255, 167, 4, 0.7);-moz-box-shadow:inset 0 1px 3px @black-01, 0 0 5px rgba(255, 167, 4, 0.7);box-shadow:inset 0 1px 3px @black-01, 0 0 5px rgba(255, 167, 4, 0.7);border-color:red}textarea:focus{border:2px solid #59bdb9;outline:none}textarea.ui-input{resize:none;border:1px solid #ccc;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;border-radius:0px !important;box-shadow:none !important}textarea.ui-input:hover{border-color:#999;-webkit-transition-duration:.25s;-moz-transition-duration:.25s;transition-duration:.25s}textarea.ui-input:focus{-webkit-box-shadow:inset 0 1px 3px @black-01, 0 0 5px rgba(0, 0, 0, 0.9);-moz-box-shadow:inset 0 1px 3px @black-01, 0 0 5px rgba(0, 0, 0, 0.9);box-shadow:inset 0 1px 3px @black-01, 0 0 5px rgba(0, 0, 0, 0.9);border-color:#999}textarea:disabled{background-color:#eee}.orders-list-common .summary .fixed-toggler{display:none}.orders-list-common .clockHeader .itemsList .headers{background:transparent}.orders-list-common .itemsList .headers{padding:0;font-weight:bold;min-height:25px;max-height:25px}.orders-list-common .itemsList .headers.fixed-top{padding-left:60px !important}.orders-list-common .itemsList .headers .cell{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.orders-list-common .itemsList .headers .vmiddle{display:block;height:25px;line-height:25px;overflow:hidden;text-overflow:ellipsis}.orders-list-common .itemsList .row{background-color:#d8e9fd;border-bottom:1px solid #d5d5d6;-webkit-box-shadow:0 0 1px #e5e5e5;-moz-box-shadow:0 0 1px #e5e5e5;box-shadow:0 0 1px #e5e5e5;min-height:35px;max-height:35px}.orders-list-common .itemsList .row .vmiddle{height:35px}.orders-list-common .itemsList .row .date-reminded{background-color:#ffcc00}.orders-list-common .itemsList .row.selected{background-color:#bedffe !important}.orders-list-common .itemsList .row .approved{color:#4f9735}.orders-list-common .itemsList .row .onhold{color:#f32837;background:#ffcccc;display:inline-block;padding:2px 5px;border:1px solid #9a1e08}.orders-list-common .itemsList .row .onhold.disabled{background:#eee;color:#ccc;border:1px solid #ddd}.orders-list-common.admin .itemsList .row{min-height:60px;max-height:60px}.orders-list-common .itemsList .group-container{min-height:35px}.orders-list-common .itemsList .group-container.expanded{border:none}.orders-list-common .itemsList .group-container .expander{left:15px;top:10px}.orders-list-common .itemsList .group-container .expander.leftex{left:20px}.orders-list-common .b-clocks-header{background-color:#dddddd}.orders-list-common .b-clocks-header .pl35{padding-left:35px}.orders-list-common .b-clocks-list .row{background-color:#f0f0f2}.orders-list-common .b-clocks-list .row.selected{background-color:#f5d9f4 !important;border-bottom:1px solid #ffacfa}.orders-list-common.trunc-titles .itemsList .row .crop-list .vmiddle{height:35px;display:table-cell;vertical-align:middle;white-space:normal;padding-top:0px;min-width:50px}.orders-list-common.trunc-titles .itemsList .row .crop-list .lightgrey{color:#bebebe}.orders-list-common.trunc-titles .itemsList .row .vmiddle{height:25px;display:block;min-width:120px;padding-top:10px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.cacheLoaderScreen{position:absolute;z-index:9999;width:100%;height:100%;background-color:#ececec;background:-moz-linear-gradient(top, #ececec, #e9e9e9);background:-webkit-linear-gradient(top, #ececec, #e9e9e9);background:-o-linear-gradient(top, #ececec, #e9e9e9);background:-ms-linear-gradient(top, #ececec, #e9e9e9);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #ececec, #e9e9e9, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #ececec, #e9e9e9);overflow:auto}.cacheLoaderScreen .a5updateinfo{padding:150px 0;min-width:600px;text-align:center}.cacheLoaderScreen .a5updateinfo img{display:inline-block}.cacheLoaderScreen .a5updateinfo .spinner{vertical-align:top;margin-top:22px}.cacheLoaderScreen .a5updateinfo .barContainer{width:405px;height:20px;margin:10px auto 0;position:relative;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;-webkit-box-shadow:0 0 1px 1px #fff;-moz-box-shadow:0 0 1px 1px #fff;box-shadow:0 0 1px 1px #fff;border:1px solid #CCC;background:#eee}.cacheLoaderScreen .a5updateinfo .barContainer .bar{height:100%;background:#0082DC;position:absolute;width:0%;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.cacheLoaderScreen .a5updateinfo .updateMessage{font-size:14px;text-shadow:1px 1px #fff}.impersonator{max-width:500px}.centered-absolutely{position:absolute;margin:auto;top:0;bottom:0;right:0;left:0}.s-disable-transitions{-webkit-transition:none !important;-moz-transition:none !important;-ms-transition:none !important;transition:none !important}.screen-record-component{position:absolute;display:inline-flex;margin-left:10px}.screen-record-component ul{display:inline-flex}.screen-record-component .recorder-uploadingprogress{color:#7c7c7c}.a5-dest-group-bc-popover.popover{border-radius:0;border:1px solid #666666;padding:0}.a5-dest-group-bc-popover.broadcast-tooltip-popup{max-width:400px}.a5-dest-group-bc-popover.broadcast-tooltip-popup .broadcast-tooltip{-webkit-box-shadow:5px 5px 10px 0 rgba(0,0,0,0.4);-moz-box-shadow:5px 5px 10px 0 rgba(0,0,0,0.4);box-shadow:5px 5px 10px 0 rgba(0,0,0,0.4)}.a5-dest-group-bc-popover.broadcast-tooltip-popup .broadcast-tooltip .head{height:35px;background-color:#cecece}.a5-dest-group-bc-popover.broadcast-tooltip-popup .broadcast-tooltip .head .bc-label{height:20px;line-height:25px;padding:1px 6px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;color:white;background-color:#666}.a5-dest-group-bc-popover.broadcast-tooltip-popup .broadcast-tooltip .head .first-cell{border-right:1px solid #666}.a5-dest-group-bc-popover.broadcast-tooltip-popup .broadcast-tooltip .head .cell{border-bottom:1px solid #666}.a5-dest-group-bc-popover.broadcast-tooltip-popup .broadcast-tooltip .content{background-color:white}.a5-dest-group-bc-popover.broadcast-tooltip-popup .broadcast-tooltip .content .first-cell{background-color:#666}.a5-dest-group-bc-popover.broadcast-tooltip-popup .broadcast-tooltip .content .container{max-height:200px;overflow:auto}.a5-dest-group-bc-popover.broadcast-tooltip-popup .broadcast-tooltip .content ul{list-style-type:disc}.a5-spinner{width:100%;height:300px;line-height:300px;position:relative}.a5-spinner .a5-spinner-icon{position:absolute;margin:auto;top:0;bottom:0;right:0;left:0;width:50px;height:50px;background-repeat:no-repeat;background-position:center;background-image:url("/5.16.2.5993/frontend/images/spinner.gif")}.b-a5-datepicker__cell{display:table-cell;width:calc(100% - 43px);float:left;vertical-align:top}.b-a5-datepicker__btn{display:table-cell;vertical-align:top}.b-a5-datepicker__open-btn{border-left:0;border-radius:0}.b-a5-datepicker .dropdown-menu{padding:5px}.b-a5-datepicker .dropdown-menu thead th{vertical-align:middle}.b-a5-datepicker .dropdown-menu thead .btn{height:30px}.a5-header__inner{margin-top:20px}table.a5-grid>thead>tr{background-color:#f0f0f0;border:1px solid #ccc;border-top:none}table.a5-grid>thead>tr>th{padding:5px 10px}table.a5-grid>tbody>tr{border:1px solid #ccc}table.a5-grid>tbody>tr>td{vertical-align:middle}table.a5-grid>tbody>tr:nth-child(odd){background-color:#d8e9fd}table.a5-grid>tbody>tr:nth-child(odd).selected{background-color:#bedffe}table.a5-grid>tbody>tr:nth-child(odd):hover{background-color:#c0dbfc}table.a5-grid>tbody>tr:nth-child(odd) .actions a{color:#666}table.a5-grid>tbody>tr:nth-child(odd) .actions a:hover{text-decoration:none}table.a5-grid a{text-decoration:none}table.a5-grid a:hover{text-decoration:underline}table.a5-grid .whiteBg>tbody>tr td{background-color:#ffffff}table.a5-grid .greyBg>thead>tr{background-color:#ddd}table.a5-grid .greyBg>thead>td{padding:10px}table.a5-grid .greyBg>tbody>tr{background-color:#f0f0f2}table.a5-grid .greyBg>tbody>tr:hover{background-color:#e2e2e6}.ac-arrow{position:absolute;width:0;height:0;border-left:5px solid transparent;border-right:5px solid transparent;border-top:6px solid grey;cursor:pointer}.ac-arrow.ac-arrow-shifted-right{right:-4%}.ac-arrow.ac-arrow-shifted-left{right:2%}.ac-control-prm{padding-right:20px !important}.ac-result-list{background:#fff;display:block;position:absolute;z-index:9999999;-webkit-box-shadow:0 0 10px rgba(0,0,0,0.5);-moz-box-shadow:0 0 10px rgba(0,0,0,0.5);box-shadow:0 0 10px rgba(0,0,0,0.5)}.ac-result-list-item{border-bottom:1px solid #ddd;line-height:30px;height:30px;padding-left:5px;cursor:pointer;overflow:hidden;text-overflow:clip}.ac-result-list-item.assetName{margin-top:-50px;color:white;padding:0 3px 0 2px;position:relative}.ac-result-list-item:hover{background-color:#eee}.ac-result-list-item.active{background-color:#eee}.ac-result-list-item.not-found{color:#999;cursor:auto}.ac-result-list-item-highlight{background-color:#69baf1}.fs39{font-size:39px}.qcview{background:#d8d8d8}.qcview .qcviewcenter{width:720px;margin:0 auto}.qcview .view{opacity:0.8;border:1px solid #cccccc;cursor:pointer;background-color:#f6f6f6;background:-moz-linear-gradient(top, #f6f6f6, #e0e0e0);background:-webkit-linear-gradient(top, #f6f6f6, #e0e0e0);background:-o-linear-gradient(top, #f6f6f6, #e0e0e0);background:-ms-linear-gradient(top, #f6f6f6, #e0e0e0);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #f6f6f6, #e0e0e0, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #f6f6f6, #e0e0e0)}.qcview .view.active{border-top:1px solid #838383;background:#eee;opacity:1}.fb-vcenter{min-height:100%;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;-moz-box-align:center;-ms-flex-align:center;align-items:center}.btn.btn-a5-style{font-size:13px;background-color:#f6f6f6;background:-moz-linear-gradient(top, #f6f6f6, #e0e0e0);background:-webkit-linear-gradient(top, #f6f6f6, #e0e0e0);background:-o-linear-gradient(top, #f6f6f6, #e0e0e0);background:-ms-linear-gradient(top, #f6f6f6, #e0e0e0);-ms-filter:formatstring({2}progid:DXImageTransform.Microsoft.gradient(startColorStr='{0}', EndColorStr='{1}'){2}, #f6f6f6, #e0e0e0, '"');filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #f6f6f6, #e0e0e0)}.folder-tree-item .inherited .tree-item-title{background-color:#eee}.folder-tree-item .inherited .tree-item-title .item-name{color:#a6a6a6}.folder-tree-item>.tree-item-title{padding-left:18px;cursor:pointer}.folder-tree-item>.tree-item-title.no-content{padding-left:36px}.folder-tree-item>.tree-item-title:hover{background-color:#eef3f6 !important}.folder-tree-item>.tree-item-title.selected{background-color:#d8e8fc !important}.folder-tree-item>.tree-item-title.has-saved-role{padding-left:0}.folder-tree-item>.tree-item-title.has-saved-role.no-content{padding-left:18px}.roles-list>.add-folders{max-height:200px;overflow-y:auto}.align-left{text-align:left}.icon-loading{background-image:url('/5.16.2.5993/frontend/images//approval-icons/ico_approval_pending_grey_small.png')}.font-normal{font-weight:normal}.comment-block{border-bottom:1px solid #ddd}.comment-block pre.posted-comment{border:none;min-height:unset;display:inline-block;width:90%;line-height:15px;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space:-o-pre-wrap;word-wrap:break-word;margin:5px 5px 5px 0}.comment-block .unit-right{display:inline-block;width:40px}.datetime-picker{display:inline-block;min-width:215px}.datetime-picker .date.dijitTextBox{width:130px}.datetime-picker .dijitTimeTextBox{width:85px}.dashboard-toggle-block .activityFilterLabel{width:55px !important}.activities-list .sender{font-weight:600}.messenger{position:fixed;width:370px;border:1px solid #00AA00;border-radius:7px;background:rgba(0,190,0,0.5);color:#000;padding:10px;right:200px;top:40px;-webkit-transition:opacity 0.5s ease;-moz-transition:opacity 0.5s ease;transition:opacity 0.5s ease;opacity:0;z-index:1000}.messenger.error{border-color:red;background:rgba(255,0,0,0.5);color:#000}.messenger.shown{filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=0.7, enabled=1)";opacity:.7}.admin .adCodeButtonContainer{display:none}.adcode-preview-container{background-color:#CFCFCF;height:70px;padding:10px}.adcode-preview-container .adcode-preview-result{background-color:#DEDEDE;padding:10px 5px;height:20px;width:95%;font-weight:bold;font-style:normal;font-size:18px}.adcode-preview-container .adcode-preview-result .tiny-text{font-size:70%}.adcode-format-container{background-color:#DEDEDE;height:120px;padding:10px}.adcode-format-container .adcode-format-inner{overfow:hidden;width:95%;background-color:#CFCFCF;padding:5px 5px;height:70px;line-height:70px}.adcode-format-container .adcode-format-inner .button{color:#1994CA;margin-right:5px;margin-bottom:10px}.adcode-format-container .adcode-format-help{color:grey;font-size:11px;margin-left:10px;margin-top:5px}.adcode-metadata-container{min-height:240px;background-color:#EEEEEE;padding:5px}.adcode-metadata-container .size1of20{width:5%}.adcode-metadata-container .adcode-fields{background-color:#DEDEDE;min-height:60px}.adcode-metadata-container .adcode-fields .removeItem,.adcode-metadata-container .adcode-fields .addItem{cursor:pointer}.adcode-metadata-container .adcode-fields .adcode-fields-inner{text-align:center}.adcode-metadata-container .adcode-fields .adcode-fields-inner .adcode-free-text-row{padding-top:5px;padding-bottom:5px;height:30px;line-height:30px}.adcode-metadata-container .adcode-fields .adcode-fields-inner .adcode-metadata-row{padding-top:5px;padding-bottom:5px;height:30px;line-height:30px}.adcode-metadata-container .adcode-fields .adcode-fields-inner .addRow{display:none}.adcode-metadata-container .adcode-fields .adcode-fields-inner:last-child .addRow{display:inline}.adcode-metadata-container .adcode-fields .adcode-fields-headers{padding:10px 0 10px 25px}.adcode-metadata-container .label{line-height:2.5}.adcode-note-container{background-color:#EEEEEE;border-top:1px solid #ccc;padding-right:10px;padding-left:10px;padding-top:20px;padding-bottom:20px}.adcode-note-container.shadow{-webkit-box-shadow:0 1px 0 0 #fff inset;-moz-box-shadow:0 1px 0 0 #fff inset;box-shadow:0 1px 0 0 #fff inset}.adCodePopupContainer{width:80%}.adCodePopupContainer .adCodePopupItem{height:20px;line-height:20px;padding:3px 0 3px 10px;background-color:#E5E5E5}.adCodePopupContainer .adCodePopupItem:hover{background-color:#CCCCCC;cursor:pointer}.adCodePopupContainer .adCodePopupItem.selectedAdCode{background-color:#CCCCCC}.adCodePopupContainer .adCodePopupItem.selectedAdCode span{visibility:visible}.adCodeButtonContainer{position:absolute;right:0;bottom:0;display:block}.adCodeFieldContainer input{width:95%}.adcode-list{margin-top:-20px}.adcode-list .adcode-control{margin-top:-3px}.adcode-list .adcode-control span{cursor:pointer}.select2-drop.select2-drop-above{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.select2-drop.select2-drop-above .select2-choice{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.select2-drop.select2-drop-above.select2-drop-active{border:1px solid #ccc}.select2-container .select2-choice{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.select2-container .select2-choice>.select2-chosen{margin-right:33px}.select2-container .select2-choice .select2-arrow{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;width:25px}.select2-container .select2-choice .select2-arrow b{background-position:4px 1px}.select2-container.select2-drop-above .select2-choice{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;border:1px solid #ccc}.select2-container.select2-drop-above .select2-choice .select2-arrow{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;width:25px}.select2-results .select2-highlighted{background-color:#eee;color:#000000}.select2-results .select2-highlighted .select2-result-label{font-weight:bold}.dn-timepicker-popup{max-height:300px;overflow-y:scroll}.angucomplete-dropdown{max-width:440px}.angucomplete-row{text-overflow:ellipsis;overflow-x:hidden;white-space:nowrap}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:14px;text-align:left;list-style:none;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.175);box-shadow:0 6px 12px rgba(0,0,0,0.175)}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{color:#262626;text-decoration:none;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;background-color:#337ab7;outline:0}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#777}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{right:0;left:auto}.dropdown-menu-left{right:auto;left:0}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{content:"";border-top:0;border-bottom:4px solid}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}.accessRulesEdit{max-width:700px;min-width:370px}.accessRulesEdit .accessRuleColumnText{line-height:30px;min-height:30px}.accessRulesEdit .accessRuleLastCol{margin-right:1%}.accessRulesEdit .betweenColumns{width:3%;text-align:center;line-height:30px;min-height:30px}.accessRulesEdit .accesRullNum{line-height:30px}.accessRulesEdit .ruleFieldValue{max-width:100%;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.accessRulesEdit .ruleFieldValue:hover{background-color:#e5e5e5}.accessRulesEdit .ruleFieldValue .removeFieldValue{position:absolute;right:0px;top:11px}.delivery-access-rule-row .button{padding:5px;height:20px;width:28px;margin-left:30px}.icon-remove-rule{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -544px transparent;display:inline-block;height:16px;width:16px;line-height:16px;cursor:pointer;margin-left:20px}.templateSelector .paramSelect{width:200px}.templateSelector label{max-width:200px}.templateSelector label.label{line-height:28px}.templateSelector .globalBuLevelChkbx{vertical-align:top;margin-top:1px}.CodeMirror-matchingbracket{outline:1px solid grey;color:black !important}.CodeMirror-hints{z-index:1100}.template-editor .left-column{box-sizing:content-box}.template-editor .left-column .bottom-row{margin-top:10px;background-color:white;height:340px}.template-editor .left-column .bottom-row .unit{padding:0 5px;box-sizing:border-box}.template-editor .left-column .bottom-row img{max-height:140px;max-width:100%}.template-editor .left-column ui-codemirror{display:block}.template-editor .left-column ui-codemirror .CodeMirror{height:710px}.template-editor .right-column{box-sizing:border-box;padding-left:10px}.template-editor .right-column .top-row ui-codemirror{display:block;width:100%}.template-editor .right-column .top-row ui-codemirror .CodeMirror{height:300px;width:100%}.template-editor .right-column .bottom-row{height:750px;margin-top:10px;background-color:white}.template-editor .right-column .bottom-row .preview-container{position:relative}.template-editor .right-column .bottom-row .preview-container .subject{border-bottom:1px solid #eee;padding:5px}.template-editor .right-column .bottom-row .preview-container .watermark{position:absolute;z-index:10;display:flex;justify-content:center;align-items:center;background:transparent;height:670px;width:100%}.template-editor .right-column .bottom-row .preview-container .watermark .watermark-text{color:lightgrey;font-size:120px;text-transform:uppercase;transform:rotate(-45deg);-webkit-transform:rotate(-45deg);opacity:0.3}.template-editor .right-column .bottom-row .preview-container .preview{height:670px;position:relative}.template-editor .right-column .bottom-row .preview-container .preview iframe{width:100%;height:100%}.template-editor .right-column .bottom-row .loading:after{overflow:hidden;display:inline-block;vertical-align:bottom;-webkit-animation:ellipsis steps(4, end) 900ms infinite;animation:ellipsis steps(4, end) 900ms infinite;content:"\2026";width:0}.template-editor .right-column .bottom-row pre{white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space:-o-pre-wrap;word-wrap:break-word}.template-editor .digest-settings .list-header .h5{cursor:pointer}.template-editor .digest-settings input{border-width:0;border-bottom-width:1px}.template-editor .template-actions .template-buttons{text-align:right}.template-editor .template-actions .help-button{text-decoration:none;margin-top:10px}.template-editor .template-live{margin-top:10px;border-top:1px solid #ccc}.template-editor .template-live .template-notification select{height:28px;padding-left:5px}.template-editor .template-live .template-test-message input[type=email]{height:22px;width:250px;padding-left:5px}.global-template-editor .global-template-editor-content{background-color:white}.global-template-editor ui-codemirror{display:block}.global-template-editor ui-codemirror .CodeMirror{height:500px}.help-context code,.help-context kbd,.help-context pre{font-family:monospace, monospace;font-size:1em}.help-context kbd{padding:0.1rem 0.2rem;font-size:90%;color:#fff;background-color:#212529;border-radius:0.2rem}.help-context kbd kbd{padding:0;font-size:100%;font-weight:bold}.help-context code{padding:0.1rem 0.2rem;font-size:90%;color:#bd4147;background-color:#f8f9fa;border-radius:0.2rem}.help-context pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1;color:#333;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}.help-context .label{display:inline;padding:0.1rem 0.2rem;font-size:90%;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.2em;background-color:#0092D6}.global-template-editor .list-header,.template-editor .list-header{position:relative}.global-template-editor .list-header .help-button,.template-editor .list-header .help-button{position:absolute;right:0;bottom:0;height:100%;display:flex;align-items:center;text-decoration:none}.modal-header .help-button{text-decoration:none}@keyframes ellipsis{to{width:1.25em}}@-webkit-keyframes ellipsis{to{width:1.25em}}.md-search{background-color:#eee}.md-search .l-users .b-form{border-right:1px solid #ccc}.md-search .l-users .b-form .label{font-weight:normal}.md-holidays .form-label{width:150px;text-align:right}.md-holidays .form-control{width:150px}.md-holidays .b-holidays-list{width:400px}.md-holidays .opacity-pattern{filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=0.7, enabled=1)";opacity:.7}.md-holidays .opacity-pattern:hover{filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=1, enabled=1)";opacity:1}.md-holidays .action-icon{cursor:pointer;display:inline-block;vertical-align:middle;filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=0.7, enabled=1)";opacity:.7}.md-holidays .action-icon:hover{filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=1, enabled=1)";opacity:1}.md-holidays .el-holiday{height:15px;padding:0px 3px;border:1px solid #cdcdcd;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;background-color:#d6d6d6;color:#666;display:inline-block;margin:3px}.md-holidays .el-holiday .el-delete{cursor:pointer;display:inline-block;vertical-align:middle;filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=0.7, enabled=1)";opacity:.7}.md-holidays .el-holiday .el-delete:hover{filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=1, enabled=1)";opacity:1}.md-holidays .el-add-holiday{cursor:pointer;display:inline-block;vertical-align:middle;filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=0.7, enabled=1)";opacity:.7}.md-holidays .el-add-holiday:hover{filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=1, enabled=1)";opacity:1}.md-holidays .b-edit-holiday-form{overflow:hidden;height:0px;-webkit-transition:height 300ms cubic-bezier(.17, .04, .03, .94);-o-transition:height 300ms cubic-bezier(.17, .04, .03, .94);transition:height 300ms cubic-bezier(.17, .04, .03, .94);-moz-transition:height 300ms cubic-bezier(.17, .04, .03, .94) 1s ease-in-out;-webkit-transition:height 300ms cubic-bezier(.17, .04, .03, .94) 1s ease-in-out;-ms-transition:height 300ms cubic-bezier(.17, .04, .03, .94) 1s ease-in-out;-o-transition:height 300ms cubic-bezier(.17, .04, .03, .94) 1s ease-in-out;transition:height 300ms cubic-bezier(.17, .04, .03, .94) 1s ease-in-out}.md-holidays .b-edit-holiday-form.show{height:140px;-webkit-transition:height 300ms cubic-bezier(.17, .04, .03, .94);-o-transition:height 300ms cubic-bezier(.17, .04, .03, .94);transition:height 300ms cubic-bezier(.17, .04, .03, .94);-moz-transition:height 300ms cubic-bezier(.17, .04, .03, .94) 1s ease-in-out;-webkit-transition:height 300ms cubic-bezier(.17, .04, .03, .94) 1s ease-in-out;-ms-transition:height 300ms cubic-bezier(.17, .04, .03, .94) 1s ease-in-out;-o-transition:height 300ms cubic-bezier(.17, .04, .03, .94) 1s ease-in-out;transition:height 300ms cubic-bezier(.17, .04, .03, .94) 1s ease-in-out}.md-holidays .b-edit-campaign-form .form-control{width:300px}.md-holidays .multiDatepicker{padding:5px}.md-holidays .multiDatepicker thead th{vertical-align:middle}.md-holidays .multiDatepicker thead .btn{height:30px}.md-holidays .rmSelection .btn-info{color:#333;background-color:#fff;border-color:#ccc}.md-holidays .rmSelection .btn-info:hover,.md-holidays .rmSelection .btn-info:focus,.md-holidays .rmSelection .btn-info.focus,.md-holidays .rmSelection .btn-info:active,.md-holidays .rmSelection .btn-info.active,.open>.dropdown-toggle.md-holidays .rmSelection .btn-info{color:#333;background-color:#e6e6e6;border-color:#adadad}.md-holidays .rmSelection .btn-info:active,.md-holidays .rmSelection .btn-info.active,.open>.dropdown-toggle.md-holidays .rmSelection .btn-info{background-image:none}.md-holidays .rmSelection .btn-info.disabled,.md-holidays .rmSelection .btn-info[disabled],fieldset[disabled] .md-holidays .rmSelection .btn-info,.md-holidays .rmSelection .btn-info.disabled:hover,.md-holidays .rmSelection .btn-info[disabled]:hover,fieldset[disabled] .md-holidays .rmSelection .btn-info:hover,.md-holidays .rmSelection .btn-info.disabled:focus,.md-holidays .rmSelection .btn-info[disabled]:focus,fieldset[disabled] .md-holidays .rmSelection .btn-info:focus,.md-holidays .rmSelection .btn-info.disabled.focus,.md-holidays .rmSelection .btn-info[disabled].focus,fieldset[disabled] .md-holidays .rmSelection .btn-info.focus,.md-holidays .rmSelection .btn-info.disabled:active,.md-holidays .rmSelection .btn-info[disabled]:active,fieldset[disabled] .md-holidays .rmSelection .btn-info:active,.md-holidays .rmSelection .btn-info.disabled.active,.md-holidays .rmSelection .btn-info[disabled].active,fieldset[disabled] .md-holidays .rmSelection .btn-info.active{background-color:#fff;border-color:#ccc}.md-holidays .rmSelection .btn-info .badge{color:#fff;background-color:#333}.md-destinations{padding-bottom:60px}.md-destinations .content-block{border-radius:5px}.md-destinations .b-destinations-column{float:left;padding-top:10px;padding-right:10px;padding-bottom:10px;padding-left:10px;max-height:600px;height:600px;overflow:scroll;box-sizing:border-box}.md-destinations .a5-market-group-list__no-items{margin-top:15px}.md-destinations .a5-market-group-item{padding-top:10px;padding-right:10px;padding-bottom:10px;padding-left:10px}.md-destinations .a5-market-group-item__name{cursor:pointer;color:#0082dc}.md-destinations .a5-destination-group{border-bottom:1px solid #d1d1d1}.md-destinations .a5-destination-group .b-items-wrapper{border-left:1px solid #d1d1d1;border-right:1px solid #d1d1d1}.md-destinations .a5-destination-group__header{background-color:#3c3c3c;padding-top:10px;padding-right:10px;padding-bottom:10px;padding-left:10px}.md-destinations .a5-destination-group__header .b-btn-collapse{display:inline-block;cursor:pointer}.md-destinations .a5-destination-group__header .b-btn-collapse .icon{color:#868686;position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:normal;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.md-destinations .a5-destination-group__header .b-btn-collapse .icon:before{content:"\2212"}.md-destinations .a5-destination-group__header .b-btn-collapse .icon.s-collapsed:before{content:"\2b"}.md-destinations .a5-destination-group__header .name{color:#a8a8a8}.md-destinations .a5-destination-group__header .b-btn-collapse,.md-destinations .a5-destination-group__header input,.md-destinations .a5-destination-group__header .name{vertical-align:middle}.md-destinations .a5-destination-group__header input,.md-destinations .a5-destination-group__header .name{margin-left:10px}.md-destinations .a5-destination-group__header .a5-unit-markets-list-item__btn{background-color:#a8a8a8;width:16px;height:16px}.md-destinations .a5-destination-group-item{padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:25px}.md-destinations .a5-destination-group-item .b-btn-collapse,.md-destinations .a5-destination-group-item input,.md-destinations .a5-destination-group-item .name{vertical-align:middle}.md-destinations .a5-destination-group-item input,.md-destinations .a5-destination-group-item .name{margin-left:10px}.a5-market-group__name{text-transform:capitalize;font-weight:bold;font-size:15px}.bc-icon{color:#3db8e0;font-weight:bold;width:36px;cursor:pointer;display:inline-block;vertical-align:middle}.b-schema-view-container .b-schema-view-field .label{font-weight:bold}.b-schema-group{margin-bottom:40px}.b-schema-group .schema-group-title{font-size:15px;font-weight:bold;padding-left:20px;line-height:25px;border-bottom:1px solid #ccc;margin-bottom:10px}.b-schema-edit-field{padding-right:10px;font-weight:normal}.b-schema-edit-field label{font-weight:normal}.b-schema-edit-field label.required{font-weight:bold}.b-schema-edit-field label.required::after{content:"*";font-weight:bold;color:#0082dc;position:absolute;padding-left:5px;width:10px;height:10px}.b-schema-edit-field-textarea-hint{font-size:12px}.b-schema-edit-container .b-schema-edit-field-dictionary select{height:30px;width:100%;outline:none;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-box-shadow:0 1px 3px rgba(0,0,0,0.1);-moz-box-shadow:0 1px 3px rgba(0,0,0,0.1);box-shadow:0 1px 3px rgba(0,0,0,0.1);border:1px solid #cccccc;background-color:white;-webkit-transition:border linear .2s,box-shadow linear .2s;vertical-align:middle}.b-schema-edit-container .b-schema-edit-field-dictionary select:disabled{background-color:#eeeeee}.b-schema-edit-container .b-schema-edit-field-dictionary.dict-disabled .b-schema-edit-field-dictionary-select-wrapper{position:relative}.b-schema-edit-container .b-schema-edit-field-dictionary.dict-disabled .b-schema-edit-field-dictionary-select-wrapper::after{content:'';position:absolute;right:4px;bottom:9px;z-index:0;margin:-8px 0 0 -8px;height:16px;width:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") -32px 0 no-repeat}.modal-open{overflow:hidden}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:hidden;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-moz-transition:all 300ms 'ease-out';-webkit-transition:all 300ms 'ease-out';-ms-transition:all 300ms 'ease-out';-o-transition:all 300ms 'ease-out';transition:all 300ms 'ease-out';transform:translate3d(0 -25% 0);-ms-transform:translate3d(0 -25% 0);-moz-transform:translate3d(0 -25% 0);-webkit-transform:translate3d(0 -25% 0);-o-transform:translate3d(0 -25% 0)}.modal.in .modal-dialog{transform:translate3d(0 0 0);-ms-transform:translate3d(0 0 0);-moz-transform:translate3d(0 0 0);-webkit-transform:translate3d(0 0 0);-o-transform:translate3d(0 0 0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #999;border:1px solid rgba(0,0,0,0.2);-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;outline:0;-webkit-box-shadow:0 3px 9px rgba(0,0,0,0.5);-moz-box-shadow:0 3px 9px rgba(0,0,0,0.5);box-shadow:0 3px 9px rgba(0,0,0,0.5)}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{filter:alpha(opacity=0);opacity:0}.modal-backdrop.in{filter:alpha(opacity=50);opacity:.5}.modal-header{min-height:16.42857143px;padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,0.5);-moz-box-shadow:0 5px 15px rgba(0,0,0,0.5);box-shadow:0 5px 15px rgba(0,0,0,0.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.modal.fade .modal-dialog,.modal.in .modal-dialog{transform:none;-ms-transform:none;-moz-transform:none;-webkit-transform:none;-o-transform:none;-webkit-transition:none;-o-transition:none;transition:none;-moz-transition:none 1s ease-in-out;-webkit-transition:none 1s ease-in-out;-ms-transition:none 1s ease-in-out;-o-transition:none 1s ease-in-out;transition:none 1s ease-in-out}.modal-content .a5-modal-content{background:#ffffff;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;color:#444;font-family:'Source Sans Pro',sans-serif;font-size:1.1em;line-height:1.5em;margin:0 auto;max-width:100%;position:relative;width:65%;min-width:450px}.modal-content .a5-modal-close{cursor:pointer;position:absolute;right:0;top:0}.modal-content .a5-modal-close:before{background:transparent;content:'';position:absolute;height:16px;width:16px;line-height:16px;background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -1248px transparent;opacity:0.8;top:17px;right:20px}.modal-content .a5-modal-close:hover:before,.modal-content .a5-modal-close:active:before{opacity:1}.modal-content .a5-modal-message{margin-bottom:.5em;border-radius:5px}.modal-content .a5-modal-message .a5-modal-message-title-wrapper{height:50px;background-color:#f6f6f6;border-bottom:1px solid #cecece;border-top-left-radius:5px;border-top-right-radius:5px}.modal-content .a5-modal-message .a5-modal-message-title-icon{width:36px;height:50px;line-height:50px;text-align:center;float:left;position:relative}.modal-content .a5-modal-message .a5-modal-message-title-icon .icon-edit{background:url("/5.16.2.5993/frontend/images/icons16x16.png") no-repeat scroll 0 -1168px transparent;display:inline-block;height:16px;width:16px;line-height:16px;position:absolute;margin:auto;top:0;bottom:0;right:0;left:0}.modal-content .a5-modal-message .a5-modal-message-title-caption-wrapper{height:50px;line-height:50px;float:left}.modal-content .a5-modal-message .a5-modal-message-title-caption-wrapper .title-caption{font-weight:bold;font-size:15px;vertical-align:middle}.modal-content .a5-modal-message-content{padding-top:20px;padding-bottom:20px;padding-left:30px;padding-right:30px}.modal-content .a5-modal-message-content .a5-modal-message-content-buttons{margin-top:20px;text-align:left}.modal-content .a5-modal-input{margin-bottom:1em}DIV.fg-wrap{background-color:#141414}.framegrabber-dialog{min-width:1074 !important;min-height:580px !important}DIV.stills-wrapper{text-align:center}DIV.stills-wrapper DIV.stills-container{display:inline-block;text-align:left;padding-top:20px;width:775px}DIV.stills-wrapper DIV.stills-container DIV.still{position:relative;display:inline-block;width:170px;margin-right:30px;margin-bottom:30px;padding:5px;zoom:1;white-space:normal;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;border-radius:4px;-webkit-box-shadow:0 0 0 3px #fff;-moz-box-shadow:0 0 0 3px #fff;box-shadow:0 0 0 3px #fff;-moz-transition:box-shadow .15s ease-in-out;-webkit-transition:box-shadow .15s ease-in-out;-ms-transition:box-shadow .15s ease-in-out;-o-transition:box-shadow .15s ease-in-out;transition:box-shadow .15s ease-in-out}DIV.stills-wrapper DIV.stills-container DIV.still:hover{-webkit-box-shadow:0 0 0 3px #d8e8fc;-moz-box-shadow:0 0 0 3px #d8e8fc;box-shadow:0 0 0 3px #d8e8fc;background-color:#fff;-moz-transition:box-shadow .15s ease-in-out;-webkit-transition:box-shadow .15s ease-in-out;-ms-transition:box-shadow .15s ease-in-out;-o-transition:box-shadow .15s ease-in-out;transition:box-shadow .15s ease-in-out}DIV.stills-wrapper DIV.stills-container DIV.still.selected{-webkit-box-shadow:0 0 0 3px #0082dc;-moz-box-shadow:0 0 0 3px #0082dc;box-shadow:0 0 0 3px #0082dc;background-color:#fff;-moz-transition:box-shadow .15s ease-in-out;-webkit-transition:box-shadow .15s ease-in-out;-ms-transition:box-shadow .15s ease-in-out;-o-transition:box-shadow .15s ease-in-out;transition:box-shadow .15s ease-in-out}DIV.stills-wrapper DIV.stills-container DIV.still DIV.lib-tooltip{top:45px;left:20px;display:block;min-width:125px;cursor:pointer;padding-bottom:7px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px}DIV.stills-wrapper DIV.stills-container DIV.still DIV.lib-tooltip UL li{width:100%;list-style:none;height:24px;float:left}DIV.stills-wrapper DIV.stills-container DIV.still DIV.lib-tooltip UL li span{width:100%;display:block;height:30px;text-decoration:none;font-weight:bold;background-color:#FFF;padding-left:5px;line-height:30px;margin:0;color:#333}DIV.stills-wrapper DIV.stills-container DIV.still DIV.lib-tooltip UL li span I{font-size:14px}DIV.stills-wrapper DIV.stills-container DIV.still DIV.lib-tooltip UL li span:hover{background-color:#D8E9FD}DIV.stills-wrapper DIV.stills-container DIV.still DIV.lib-tooltip UL li span:hover I{color:#0082E2}DIV.stills-wrapper DIV.stills-container DIV.still:hover .lib-tooltip{filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=1, enabled=1)";opacity:1;-moz-transition:opacity .2s ease-in-out;-webkit-transition:opacity .2s ease-in-out;-ms-transition:opacity .2s ease-in-out;-o-transition:opacity .2s ease-in-out;transition:opacity .2s ease-in-out;visibility:visible}DIV.stills-wrapper DIV.stills-container DIV.still DIV.frame-header{width:160px}DIV.stills-wrapper DIV.stills-container DIV.still DIV.default-thumbnail{height:20px}DIV.stills-wrapper DIV.stills-container DIV.still DIV.default-thumbnail I{font-size:16px;color:#00965a}DIV.stills-wrapper DIV.stills-container DIV.still DIV.still-info{font-size:14pt;height:20px}DIV.stills-wrapper DIV.stills-container DIV.still DIV.still-info I{font-size:16px;color:#333}DIV.stills-wrapper DIV.stills-container DIV.still:nth-child(4n){margin-right:0px}.md-markets .b-markets-list .market-item{border:1px solid #ccc;min-height:38px;border-bottom:none}.md-markets .b-markets-list .market-item .rotate{transform:rotate(90deg);-ms-transform:rotate(90deg);-moz-transform:rotate(90deg);-webkit-transform:rotate(90deg);-o-transform:rotate(90deg)}.md-markets .b-markets-list .market-item:last-child{border-bottom:1px solid #ccc}.md-markets .b-markets-list .market-metadata{min-height:38px;border-top:1px solid #ccc}.file-approvals-layout{vertical-align:middle;text-align:center}.approvals-list{position:relative}.approvals-list .itemsList{position:static}.a5-file-approvals-wrapper{font-size:0;background-color:lightgrey;padding:3px 4px;border-radius:3px;display:inline-block}.a5-file-approvals-link{vertical-align:top;margin-left:8px;cursor:pointer}.a5-file-approvals-link-pic{background-image:url('/5.16.2.5993/frontend/images/a_plus_logo_16x16.png');display:inline-block;height:16px;width:16px;line-height:16px}.a5-file-approvals-info-table td{vertical-align:middle;font-weight:normal;padding:5px;border:1px solid #ccc}.a5-file-approvals-info-table th{text-align:center}.a5-file-approvals-info-table .a5-file-approvals-status-icons-wrapper{cursor:inherit}.a5-file-approvals-status-icons-wrapper{font-size:0;cursor:pointer;display:inline-block;height:16px}.a5-file-approvals-status-icons-item{height:16px;width:16px;background-color:white;background-position:center;background-repeat:no-repeat;display:inline-block;margin-left:4px}.a5-file-approvals-status-icons-item:first-child{margin-left:0}.a5-file-approvals-status-icons-item.status-sent.value-pending{background-image:url("/5.16.2.5993/frontend/images/fileApprovals/s_white.svg")}.a5-file-approvals-status-icons-item.status-sent.value-completed{background-image:url("/5.16.2.5993/frontend/images/fileApprovals/s_green.svg")}.a5-file-approvals-status-icons-item.status-sent.value-deadline-warning{background-image:url("/5.16.2.5993/frontend/images/fileApprovals/s_red.svg")}.a5-file-approvals-status-icons-item.status-sent.value-deadline-notice{background-image:url("/5.16.2.5993/frontend/images/fileApprovals/s_orange.svg")}.a5-file-approvals-status-icons-item.status-opened.value-pending{background-image:url("/5.16.2.5993/frontend/images/fileApprovals/o_white.svg")}.a5-file-approvals-status-icons-item.status-opened.value-completed{background-image:url("/5.16.2.5993/frontend/images/fileApprovals/o_green.svg")}.a5-file-approvals-status-icons-item.status-opened.value-deadline-warning{background-image:url("/5.16.2.5993/frontend/images/fileApprovals/o_red.svg")}.a5-file-approvals-status-icons-item.status-opened.value-deadline-notice{background-image:url("/5.16.2.5993/frontend/images/fileApprovals/o_orange.svg")}.a5-file-approvals-status-icons-item.status-comment-made.value-pending{background-image:url("/5.16.2.5993/frontend/images/fileApprovals/c_white.svg")}.a5-file-approvals-status-icons-item.status-comment-made.value-completed{background-image:url("/5.16.2.5993/frontend/images/fileApprovals/c_green.svg")}.a5-file-approvals-status-icons-item.status-comment-made.value-deadline-warning{background-image:url("/5.16.2.5993/frontend/images/fileApprovals/c_red.svg")}.a5-file-approvals-status-icons-item.status-comment-made.value-deadline-notice{background-image:url("/5.16.2.5993/frontend/images/fileApprovals/c_orange.svg")}.a5-file-approvals-status-icons-item.status-decision-made.value-pending{background-image:url("/5.16.2.5993/frontend/images/fileApprovals/d_white.svg")}.a5-file-approvals-status-icons-item.status-decision-made.value-completed{background-image:url("/5.16.2.5993/frontend/images/fileApprovals/d_green.svg")}.a5-file-approvals-status-icons-item.status-decision-made.value-deadline-warning{background-image:url("/5.16.2.5993/frontend/images/fileApprovals/d_red.svg")}.a5-file-approvals-status-icons-item.status-decision-made.value-deadline-notice{background-image:url("/5.16.2.5993/frontend/images/fileApprovals/d_orange.svg")}.approvers-list td{vertical-align:top}.approvers-list .graybox-active .modereted-label{margin:5px 0;user-select:none}.approvers-comment{display:flex;justify-content:space-between}.approvers-comment-col:nth-child(1){flex:1 1 auto;padding:0 .3em .5em 0}.approvers-comment-col:nth-child(2){flex:0 0 auto;padding-left:.3em}.approvers-icn{margin-bottom:5px}.project-team-content .lib-sidebar{display:inherit}.project-team-content .center{width:100%;text-align:center}.project-team-content .users-list-item .lastUnit{width:100%}.project-team-content .team-div{min-height:560px;opacity:0.8;border:1px solid #cccccc;cursor:pointer;background-color:#f6f6f6;background:-moz-linear-gradient(top, #f6f6f6, #e0e0e0);background:-webkit-linear-gradient(top, #f6f6f6, #e0e0e0);background:-o-linear-gradient(top, #f6f6f6, #e0e0e0);background:-ms-linear-gradient(top, #f6f6f6, #e0e0e0);filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=@from, EndColorStr=@to, enabled=@enabled)" !important;background:linear-gradient(top, #f6f6f6, #e0e0e0)}.project-team-content .team-div .team-div-list{width:20%;min-height:inherit;overflow-y:auto;border-bottom:0}.project-team-content .team-div .team-div-users{width:40%;min-height:inherit;border-bottom:0}.project-team-content .team-div .team-users-details{overflow-y:auto;height:inherit;min-height:inherit}.project-team-content .team-div .team-users-details .team-user-activity{min-height:inherit;overflow:hidden}.project-team-content .team-div .team-users-details .team-user-activity .gray{font-size:11px}.project-team-content .team-div .team-users-details .team-activities-list-items{overflow-y:auto;height:inherit}.project-team-content .filter-input-component{position:relative;width:40%}.project-team-content .filter-input-component .button{min-width:30px}.project-team-content .filter-input-component input.filter-component{height:32px}.project-team-content .user-list-component{width:100%;display:table}.project-team-content .team-list-component{min-height:inherit}.project-team-content .team-list-component .icon{vertical-align:inherit}.project-team-content .team-list-component .list-title{margin-top:20px;margin-bottom:20px}.project-team-content .team-list-component li{max-width:98%;line-height:18px}.project-team-content .paginate-component-range{float:left;width:auto}.project-team-content .paginate-div-container{position:relative;width:60%}.project-team-content .paginate-div-container .mhs{margin-left:4px}.project-team-content .top-right{position:relative;float:right;margin-bottom:10px}label.top{margin-top:-6px}