/*!
 * ui-select
 * http://github.com/angular-ui/ui-select
 * Version: 0.19.8 - 2017-04-18T05:43:43.881Z
 * License: MIT
 */


/* Style when highlighting a search. */
.ui-select-highlight {
  font-weight: bold;
}

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


.ui-select-choices-row:hover {
  background-color: #f5f5f5;
}

/* Select2 theme */

/* Mark invalid Select2 */
.ng-dirty.ng-invalid > a.select2-choice {
    border-color: #D44950;
}

.select2-result-single {
  padding-left: 0;
}

.select2-locked > .select2-search-choice-close{
  display:none;
}

.select-locked > .ui-select-match-close{
    display:none;
}

body > .select2-container.open {
  z-index: 9999; /* The z-index Select2 applies to the select2-drop */
}

/* Handle up direction Select2 */
.ui-select-container[theme="select2"].direction-up .ui-select-match,
.ui-select-container.select2.direction-up .ui-select-match {
    border-radius: 4px; /* FIXME hardcoded value :-/ */
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.ui-select-container[theme="select2"].direction-up .ui-select-dropdown,
.ui-select-container.select2.direction-up .ui-select-dropdown {
    border-radius: 4px; /* FIXME hardcoded value :-/ */
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;

    border-top-width: 1px;  /* FIXME hardcoded value :-/ */
    border-top-style: solid;

    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.25);

    margin-top: -4px; /* FIXME hardcoded value :-/ */
}
.ui-select-container[theme="select2"].direction-up .ui-select-dropdown .select2-search,
.ui-select-container.select2.direction-up .ui-select-dropdown .select2-search {
    margin-top: 4px; /* FIXME hardcoded value :-/ */
}
.ui-select-container[theme="select2"].direction-up.select2-dropdown-open .ui-select-match,
.ui-select-container.select2.direction-up.select2-dropdown-open .ui-select-match {
    border-bottom-color: #5897fb;
}

.ui-select-container[theme="select2"] .ui-select-dropdown .ui-select-search-hidden,
.ui-select-container[theme="select2"] .ui-select-dropdown .ui-select-search-hidden input{
    opacity: 0;
    height: 0;
    min-height: 0;
    padding: 0;
    margin: 0;
    border:0;
}

/* Selectize theme */

/* Helper class to show styles when focus */
.selectize-input.selectize-focus{
  border-color: #007FBB !important;
}

/* Fix input width for Selectize theme */
.selectize-control.single > .selectize-input > input {
  width: 100%;
}

/* Fix line break when there's at least one item selected with the Selectize theme */
.selectize-control.multi > .selectize-input > input {
  margin: 0 !important;
}

/* Fix dropdown width for Selectize theme */
.selectize-control > .selectize-dropdown {
  width: 100%;
}

/* Mark invalid Selectize */
.ng-dirty.ng-invalid > div.selectize-input {
    border-color: #D44950;
}

/* Handle up direction Selectize */
.ui-select-container[theme="selectize"].direction-up .ui-select-dropdown {
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.25);
    margin-top: -2px; /* FIXME hardcoded value :-/ */
}

.ui-select-container[theme="selectize"] input.ui-select-search-hidden{
    opacity: 0;
    height: 0;
    min-height: 0;
    padding: 0;
    margin: 0;
    border:0;
    width: 0;
}

/* Bootstrap theme */

/* Helper class to show styles when focus */
.btn-default-focus {
  color: #333;
  background-color: #EBEBEB;
  border-color: #ADADAD;
  text-decoration: none;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}

.ui-select-bootstrap .ui-select-toggle {
  position: relative;
}

.ui-select-bootstrap .ui-select-toggle > .caret {
  position: absolute;
  height: 10px;
  top: 50%;
  right: 10px;
  margin-top: -2px;
}

/* Fix Bootstrap dropdown position when inside a input-group */
.input-group > .ui-select-bootstrap.dropdown {
  /* Instead of relative */
  position: static;
}

.input-group > .ui-select-bootstrap > input.ui-select-search.form-control {
  border-radius: 4px; /* FIXME hardcoded value :-/ */
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > .ui-select-bootstrap > input.ui-select-search.form-control.direction-up {
  border-radius: 4px !important; /* FIXME hardcoded value :-/ */
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.ui-select-bootstrap .ui-select-search-hidden{
    opacity: 0;
    height: 0;
    min-height: 0;
    padding: 0;
    margin: 0;
    border:0;
}

.ui-select-bootstrap > .ui-select-match > .btn{
  /* Instead of center because of .btn */
  text-align: left !important;
}

.ui-select-bootstrap > .ui-select-match > .caret {
  position: absolute;
  top: 45%;
  right: 15px;
}

/* See Scrollable Menu with Bootstrap 3 http://stackoverflow.com/questions/19227496 */
.ui-select-bootstrap > .ui-select-choices ,.ui-select-bootstrap > .ui-select-no-choice {
  width: 100%;
  height: auto;
  max-height: 200px;
  overflow-x: hidden;
  margin-top: -1px;
}

body > .ui-select-bootstrap.open {
  z-index: 1000; /* Standard Bootstrap dropdown z-index */
}

.ui-select-multiple.ui-select-bootstrap {
  height: auto;
  padding: 3px 3px 0 3px;
}

.ui-select-multiple.ui-select-bootstrap input.ui-select-search {
  background-color: transparent !important; /* To prevent double background when disabled */
  border: none;
  outline: none;
  height: 1.666666em;
  margin-bottom: 3px;
}

.ui-select-multiple.ui-select-bootstrap .ui-select-match .close {
  font-size: 1.6em;
  line-height: 0.75;
}

.ui-select-multiple.ui-select-bootstrap .ui-select-match-item {
  outline: 0;
  margin: 0 3px 3px 0;
}

.ui-select-multiple .ui-select-match-item {
  position: relative;
}

.ui-select-multiple .ui-select-match-item.dropping .ui-select-match-close {
  pointer-events: none;
}

.ui-select-multiple:hover .ui-select-match-item.dropping-before:before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  height: 100%;
  margin-right: 2px;
  border-left: 1px solid #428bca;
}

.ui-select-multiple:hover .ui-select-match-item.dropping-after:after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  height: 100%;
  margin-left: 2px;
  border-right: 1px solid #428bca;
}

.ui-select-bootstrap .ui-select-choices-row>span {
    cursor: pointer;
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: 400;
    line-height: 1.42857143;
    color: #333;
    white-space: nowrap;
}

.ui-select-bootstrap .ui-select-choices-row>span:hover, .ui-select-bootstrap .ui-select-choices-row>span:focus {
    text-decoration: none;
    color: #262626;
    background-color: #f5f5f5;
}

.ui-select-bootstrap .ui-select-choices-row.active>span {
    color: #fff;
    text-decoration: none;
    outline: 0;
    background-color: #428bca;
}

.ui-select-bootstrap .ui-select-choices-row.disabled>span,
.ui-select-bootstrap .ui-select-choices-row.active.disabled>span {
    color: #777;
    cursor: not-allowed;
    background-color: #fff;
}

/* fix hide/show angular animation */
.ui-select-match.ng-hide-add,
.ui-select-search.ng-hide-add {
    display: none !important;
}

/* Mark invalid Bootstrap */
.ui-select-bootstrap.ng-dirty.ng-invalid > button.btn.ui-select-match {
    border-color: #D44950;
}

/* Handle up direction Bootstrap */
.ui-select-container[theme="bootstrap"].direction-up .ui-select-dropdown {
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.25);
}

.ui-select-bootstrap .ui-select-match-text {
    width: 100%;
    padding-right: 1em;
}
.ui-select-bootstrap .ui-select-match-text span {
    display: inline-block;
    width: 100%;
    overflow: hidden;
}
.ui-select-bootstrap .ui-select-toggle > a.btn {
  position: absolute;
  height: 10px;
  right: 10px;
  margin-top: -2px;
}

/* Spinner */
.ui-select-refreshing.glyphicon {
    position: absolute;
    right: 0;
    padding: 8px 27px;
 }

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

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

.ui-select-refreshing.ng-animate {
  -webkit-animation: none 0s;
}

/*
Version: 3.4.5 Timestamp: Mon Nov  4 08:22:42 PST 2013
*/
.select2-container {
    margin: 0;
    position: relative;
    display: inline-block;
    /* inline-block for ie7 */
    zoom: 1;
    *display: inline;
    vertical-align: middle;
}

.select2-container,
.select2-drop,
.select2-search,
.select2-search input {
  /*
    Force border-box so that % widths fit the parent
    container without overlap because of margin/padding.

    More Info : http://www.quirksmode.org/css/box.html
  */
  -webkit-box-sizing: border-box; /* webkit */
     -moz-box-sizing: border-box; /* firefox */
          box-sizing: border-box; /* css3 */
}

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

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

    border-radius: 4px;

    background-clip: padding-box;

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

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

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

    border-radius: 0 0 4px 4px;

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

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

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

    white-space: nowrap;

    text-overflow: ellipsis;
}

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

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

    border: 0;
    background: url(select2_9d5415470203fa99ff046d9cc8624978.png) right top no-repeat;
    cursor: pointer;
    outline: 0;
}

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

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

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

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

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

    border-radius: 0 0 4px 4px;

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

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

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

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

    border-radius: 4px 4px 0 0;

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

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

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

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

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

    background-clip: padding-box;

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

.select2-container .select2-choice .select2-arrow b {
    display: block;
    width: 100%;
    height: 100%;
    background: url(select2_9d5415470203fa99ff046d9cc8624978.png) no-repeat 0 1px;
}

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

    position: relative;
    z-index: 10000;

    white-space: nowrap;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.select2-dropdown-open .select2-choice .select2-arrow {
    background: transparent;
    border-left: none;
    filter: none;
}
.select2-dropdown-open .select2-choice .select2-arrow b {
    background-position: -18px 1px;
}

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

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

.select2-results ul.select2-result-sub > li .select2-result-label { padding-left: 20px }
.select2-results ul.select2-result-sub ul.select2-result-sub > li .select2-result-label { padding-left: 40px }
.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label { padding-left: 60px }
.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label { padding-left: 80px }
.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label { padding-left: 100px }
.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label { padding-left: 110px }
.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label { padding-left: 120px }

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

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

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

    min-height: 1em;

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

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

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

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

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


.select2-results .select2-no-results,
.select2-results .select2-searching,
.select2-results .select2-selection-limit {
    background: #f4f4f4;
    display: list-item;
}

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

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

.select2-more-results.select2-active {
    background: #f4f4f4 url(select2-spinner_7b9776076d5fceef4993b55c9383dedd.gif) no-repeat 100%;
}

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

/* disabled styles */

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

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

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


/* multiselect */

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

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

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

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

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

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

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

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

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

.select2-container-multi .select2-choices .select2-search-field input.select2-active {
    background: #fff url(select2-spinner_7b9776076d5fceef4993b55c9383dedd.gif) no-repeat 100% !important;
}

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

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

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

    border-radius: 3px;

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

    background-clip: padding-box;

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

    background-color: #e4e4e4;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#f4f4f4', GradientType=0);
    background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eee));
    background-image: -webkit-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
    background-image: -moz-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
    background-image: linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
}
.select2-container-multi .select2-choices .select2-search-choice .select2-chosen {
    cursor: default;
}
.select2-container-multi .select2-choices .select2-search-choice-focus {
    background: #d4d4d4;
}

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

    font-size: 1px;
    outline: none;
    background: url(select2_9d5415470203fa99ff046d9cc8624978.png) right top no-repeat;
}

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

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

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

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

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


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

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

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

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

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi)  {
  .select2-search input, .select2-search-choice-close, .select2-container .select2-choice abbr, .select2-container .select2-choice .select2-arrow b {
      background-image: url(select2x2_e961ad102acc82e6595b2fdd0c39c382.png) !important;
      background-repeat: no-repeat !important;
      background-size: 60px 40px !important;
  }
  .select2-search input {
      background-position: 100% -21px !important;
  }
}

.ui-resetwrap{position:relative;display:inline-block}.ui-reset{position:absolute;top:0;right:0;z-index:2;display:none;height:100%;cursor:pointer}.ui-resetwrap:hover .ui-reset{display:block}.ui-currency-pos{color:green}.ui-currency-neg{color:red}.ui-currency-zero{color:blue}.ui-currency-pos.ui-bignum,.ui-currency-neg.ui-smallnum{font-size:110%}.ui-match{background:yellow}
.work-docs-icon-group-3-9x11{width:9px;height:11px;background-position:-52px -6121px}.work-docs-icon-pdf-0e72a3-16x17{width:16px;height:17px;background-position:-641px -6196px}.work-docs-icon-pdf-0e72a3-24x25{width:24px;height:25px;background-position:-674px -6196px}.work-docs-icon-pdf-8ea9c9-16x17{width:16px;height:17px;background-position:-515px -6196px}.work-docs-icon-pdf-8ea9c9-24x25{width:24px;height:25px;background-position:-548px -6196px}.work-docs-icon-pdf-d0d2d3-16x17{width:16px;height:17px;background-position:-137px -6196px}.work-docs-icon-pdf-d0d2d3-24x25{width:24px;height:25px;background-position:-170px -6196px}.work-docs-icon-pdf-ffffff-16x17{width:16px;height:17px;background-position:-11px -6196px}.work-docs-icon-pdf-ffffff-24x25{width:24px;height:25px;background-position:-44px -6196px}.work-docs-icon-pdf-212f3e-16x17{width:16px;height:17px;background-position:-389px -6196px}.work-docs-icon-pdf-212f3e-24x25{width:24px;height:25px;background-position:-422px -6196px}.work-docs-icon-pdf-787982-16x17{width:16px;height:17px;background-position:-263px -6196px}.work-docs-icon-text-0e72a3-24x24{width:24px;height:24px;background-position:-674px -6028px}.work-docs-icon-text-0e72a3-16x16{width:16px;height:16px;background-position:-640px -6028px}.work-docs-icon-text-ffffff-17x22{width:17px;height:22px;background-position:-49px -6030px}.work-docs-icon-text-ffffff-16x16{width:16px;height:16px;background-position:-10px -6028px}.work-docs-icon-text-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -6028px}.work-docs-icon-text-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -6028px}.work-docs-icon-text-787982-24x24{width:24px;height:24px;background-position:-296px -6028px}.work-docs-icon-text-787982-16x16{width:16px;height:16px;background-position:-262px -6028px}.work-docs-icon-text-212f3e-24x24{width:24px;height:24px;background-position:-422px -6028px}.work-docs-icon-text-212f3e-16x16{width:16px;height:16px;background-position:-388px -6028px}.work-docs-icon-text-8ea9c9-17x22{width:17px;height:22px;background-position:-552px -6030px}.work-docs-icon-text-8ea9c9-11x15{width:11px;height:15px;background-position:-516px -6029px}.work-docs-icon-star-empty-8ea9c9-24x24{width:24px;height:24px;background-position:-547px -7740px}.work-docs-icon-star-empty-8ea9c9-16x16{width:16px;height:16px;background-position:-513px -7740px}.work-docs-icon-star-empty-0e72a3-24x24{width:24px;height:24px;background-position:-673px -7740px}.work-docs-icon-star-empty-0e72a3-16x16{width:16px;height:16px;background-position:-639px -7740px}.work-docs-icon-star-empty-ffffff-24x24{width:24px;height:24px;background-position:-44px -7740px}.work-docs-icon-star-empty-ffffff-16x16{width:16px;height:16px;background-position:-10px -7740px}.work-docs-icon-star-empty-d0d2d3-24x24{width:24px;height:24px;background-position:-169px -7740px}.work-docs-icon-star-empty-d0d2d3-16x16{width:16px;height:16px;background-position:-135px -7740px}.work-docs-icon-star-empty-808184-24x24{width:24px;height:24px;background-position:-296px -7740px}.work-docs-icon-star-empty-808184-16x16{width:16px;height:16px;background-position:-262px -7740px}.work-docs-icon-star-empty-212f3e-24x24{width:24px;height:24px;background-position:-422px -7740px}.work-docs-icon-star-empty-212f3e-16x16{width:16px;height:16px;background-position:-388px -7740px}.work-docs-icon-star-8ea9c9-24x24{width:24px;height:24px;background-position:-547px -7708px}.work-docs-icon-star-8ea9c9-16x16{width:16px;height:16px;background-position:-513px -7708px}.work-docs-icon-star-0e72a3-24x24{width:24px;height:24px;background-position:-673px -7708px}.work-docs-icon-star-0e72a3-16x16{width:16px;height:16px;background-position:-639px -7708px}.work-docs-icon-star-ffffff-24x24{width:24px;height:24px;background-position:-44px -7708px}.work-docs-icon-star-ffffff-16x16{width:16px;height:16px;background-position:-10px -7708px}.work-docs-icon-star-d0d2d3-24x24{width:24px;height:24px;background-position:-169px -7708px}.work-docs-icon-star-d0d2d3-16x16{width:16px;height:16px;background-position:-135px -7708px}.work-docs-icon-star-808184-24x24{width:24px;height:24px;background-position:-296px -7708px}.work-docs-icon-star-808184-17x16{width:17px;height:16px;background-position:-262px -7708px}.work-docs-icon-star-212f3e-24x24{width:24px;height:24px;background-position:-422px -7708px}.work-docs-icon-star-212f3e-17x16{width:17px;height:16px;background-position:-388px -7708px}.work-docs-icon-private-8ea9c9-24x24{width:24px;height:24px;background-position:-547px -7668px}.work-docs-icon-private-8ea9c9-16x16{width:16px;height:16px;background-position:-513px -7668px}.work-docs-icon-private-0e72a3-24x24{width:24px;height:24px;background-position:-673px -7668px}.work-docs-icon-private-0e72a3-16x16{width:16px;height:16px;background-position:-639px -7668px}.work-docs-icon-private-ffffff-24x24{width:24px;height:24px;background-position:-44px -7668px}.work-docs-icon-private-ffffff-16x16{width:16px;height:16px;background-position:-10px -7668px}.work-docs-icon-private-d0d2d3-24x24{width:24px;height:24px;background-position:-169px -7668px}.work-docs-icon-private-d0d2d3-16x16{width:16px;height:16px;background-position:-135px -7668px}.work-docs-icon-private-808184-24x24{width:24px;height:24px;background-position:-296px -7668px}.work-docs-icon-private-808184-16x16{width:16px;height:16px;background-position:-262px -7668px}.work-docs-icon-private-212f3e-24x24{width:24px;height:24px;background-position:-422px -7668px}.work-docs-icon-private-212f3e-16x16{width:16px;height:16px;background-position:-388px -7668px}.work-docs-icon-request-check-in-0e72a3-24x24{width:24px;height:24px;background-position:-674px -7624px}.work-docs-icon-request-check-in-0e72a3-16x16{width:16px;height:16px;background-position:-640px -7624px}.work-docs-icon-request-check-in-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -7624px}.work-docs-icon-request-check-in-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -7624px}.work-docs-icon-request-check-in-212f3e-24x24{width:24px;height:24px;background-position:-422px -7624px}.work-docs-icon-request-check-in-212f3e-16x16{width:16px;height:16px;background-position:-388px -7624px}.work-docs-icon-request-check-in-808184-24x24{width:24px;height:24px;background-position:-296px -7624px}.work-docs-icon-request-check-in-808184-16x16{width:16px;height:16px;background-position:-262px -7624px}.work-docs-icon-request-check-in-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -7624px}.work-docs-icon-request-check-in-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -7624px}.work-docs-icon-request-check-in-ffffff-24x24{width:24px;height:24px;background-position:-44px -7624px}.work-docs-icon-request-check-in-ffffff-16x16{width:16px;height:16px;background-position:-10px -7624px}.work-docs-icon-discard-check-out-0e72a3-24x24{width:24px;height:24px;background-position:-674px -7582px}.work-docs-icon-discard-check-out-0e72a3-16x16{width:16px;height:16px;background-position:-640px -7582px}.work-docs-icon-discard-check-out-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -7582px}.work-docs-icon-discard-check-out-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -7582px}.work-docs-icon-discard-check-out-212f3e-24x24{width:24px;height:24px;background-position:-422px -7582px}.work-docs-icon-discard-check-out-212f3e-16x16{width:16px;height:16px;background-position:-388px -7582px}.work-docs-icon-discard-check-out-808184-24x24{width:24px;height:24px;background-position:-296px -7582px}.work-docs-icon-discard-check-out-808184-16x16{width:16px;height:16px;background-position:-262px -7582px}.work-docs-icon-discard-check-out-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -7582px}.work-docs-icon-discard-check-out-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -7582px}.work-docs-icon-discard-check-out-ffffff-24x24{width:24px;height:24px;background-position:-44px -7582px}.work-docs-icon-discard-check-out-ffffff-16x16{width:16px;height:16px;background-position:-10px -7582px}.work-docs-icon-check-in-0e72a3-24x24{width:24px;height:24px;background-position:-674px -7540px}.work-docs-icon-check-in-0e72a3-16x16{width:16px;height:16px;background-position:-640px -7540px}.work-docs-icon-check-in-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -7540px}.work-docs-icon-check-in-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -7540px}.work-docs-icon-check-in-212f3e-24x24{width:24px;height:24px;background-position:-422px -7540px}.work-docs-icon-check-in-212f3e-16x16{width:16px;height:16px;background-position:-388px -7540px}.work-docs-icon-check-in-808184-24x24{width:24px;height:24px;background-position:-296px -7540px}.work-docs-icon-check-in-808184-16x16{width:16px;height:16px;background-position:-262px -7540px}.work-docs-icon-check-in-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -7540px}.work-docs-icon-check-in-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -7540px}.work-docs-icon-check-in-ffffff-24x24{width:24px;height:24px;background-position:-44px -7540px}.work-docs-icon-check-in-ffffff-16x16{width:16px;height:16px;background-position:-10px -7540px}.work-docs-icon-check-out-0e72a3-24x24{width:24px;height:24px;background-position:-674px -7498px}.work-docs-icon-check-out-0e72a3-16x16{width:16px;height:16px;background-position:-640px -7498px}.work-docs-icon-check-out-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -7498px}.work-docs-icon-check-out-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -7498px}.work-docs-icon-check-out-212f3e-24x24{width:24px;height:24px;background-position:-422px -7498px}.work-docs-icon-check-out-212f3e-16x16{width:16px;height:16px;background-position:-388px -7498px}.work-docs-icon-check-out-808184-24x24{width:24px;height:24px;background-position:-296px -7498px}.work-docs-icon-check-out-808184-16x16{width:16px;height:16px;background-position:-262px -7498px}.work-docs-icon-check-out-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -7498px}.work-docs-icon-check-out-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -7498px}.work-docs-icon-check-out-ffffff-24x24{width:24px;height:24px;background-position:-44px -7498px}.work-docs-icon-check-out-ffffff-16x16{width:16px;height:16px;background-position:-10px -7498px}.work-docs-icon-help-0e72a3-24x24{width:24px;height:24px;background-position:-674px -7372px}.work-docs-icon-help-0e72a3-16x16{width:16px;height:16px;background-position:-640px -7372px}.work-docs-icon-help-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -7372px}.work-docs-icon-help-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -7372px}.work-docs-icon-help-212f3e-24x24{width:24px;height:24px;background-position:-422px -7372px}.work-docs-icon-help-212f3e-16x16{width:16px;height:16px;background-position:-388px -7372px}.work-docs-icon-help-808184-24x24{width:24px;height:24px;background-position:-296px -7372px}.work-docs-icon-help-808184-16x16{width:16px;height:16px;background-position:-262px -7372px}.work-docs-icon-help-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -7372px}.work-docs-icon-help-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -7372px}.work-docs-icon-help-ffffff-24x24{width:24px;height:24px;background-position:-44px -7372px}.work-docs-icon-help-ffffff-16x16{width:16px;height:16px;background-position:-10px -7372px}.work-docs-icon-help-solid-0e72a3-24x24{width:24px;height:24px;background-position:-674px -7414px}.work-docs-icon-help-solid-0e72a3-16x16{width:16px;height:16px;background-position:-640px -7414px}.work-docs-icon-help-solid-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -7414px}.work-docs-icon-help-solid-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -7414px}.work-docs-icon-help-solid-212f3e-24x24{width:24px;height:24px;background-position:-422px -7414px}.work-docs-icon-help-solid-212f3e-16x16{width:16px;height:16px;background-position:-388px -7414px}.work-docs-icon-help-solid-808184-24x24{width:24px;height:24px;background-position:-296px -7414px}.work-docs-icon-help-solid-808184-16x16{width:16px;height:16px;background-position:-262px -7414px}.work-docs-icon-help-solid-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -7414px}.work-docs-icon-help-solid-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -7414px}.work-docs-icon-help-solid-ffffff-24x24{width:24px;height:24px;background-position:-44px -7414px}.work-docs-icon-help-solid-ffffff-16x16{width:16px;height:16px;background-position:-10px -7414px}.work-docs-icon-mention-0e72a3-24x24{width:24px;height:24px;background-position:-674px -7456px}.work-docs-icon-mention-0e72a3-16x16{width:16px;height:16px;background-position:-640px -7456px}.work-docs-icon-mention-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -7456px}.work-docs-icon-mention-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -7456px}.work-docs-icon-mention-212f3e-24x24{width:24px;height:24px;background-position:-422px -7456px}.work-docs-icon-mention-212f3e-16x16{width:16px;height:16px;background-position:-388px -7456px}.work-docs-icon-mention-808184-24x24{width:24px;height:24px;background-position:-296px -7456px}.work-docs-icon-mention-808184-16x16{width:16px;height:16px;background-position:-262px -7456px}.work-docs-icon-mention-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -7456px}.work-docs-icon-mention-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -7456px}.work-docs-icon-mention-ffffff-24x24{width:24px;height:24px;background-position:-44px -7456px}.work-docs-icon-mention-ffffff-16x16{width:16px;height:16px;background-position:-10px -7456px}.work-docs-icon-decline-feedback-0e72a3-24x24{width:24px;height:24px;background-position:-674px -6574px}.work-docs-icon-decline-feedback-0e72a3-16x16{width:16px;height:16px;background-position:-640px -6574px}.work-docs-icon-decline-feedback-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -6574px}.work-docs-icon-decline-feedback-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -6574px}.work-docs-icon-decline-feedback-212f3e-24x24{width:24px;height:24px;background-position:-422px -6574px}.work-docs-icon-decline-feedback-212f3e-16x16{width:16px;height:16px;background-position:-388px -6574px}.work-docs-icon-decline-feedback-808184-24x24{width:24px;height:24px;background-position:-296px -6574px}.work-docs-icon-decline-feedback-808184-16x16{width:16px;height:16px;background-position:-262px -6574px}.work-docs-icon-decline-feedback-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -6574px}.work-docs-icon-decline-feedback-ffffff-24x24{width:24px;height:24px;background-position:-44px -6574px}.work-docs-icon-decline-feedback-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -6574px}.work-docs-icon-decline-feedback-ffffff-16x16{width:16px;height:16px;background-position:-10px -6574px}.work-docs-icon-disable-feedback-0e72a3-24x24{width:24px;height:24px;background-position:-674px -7330px}.work-docs-icon-disable-feedback-0e72a3-16x16{width:16px;height:16px;background-position:-640px -7330px}.work-docs-icon-disable-feedback-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -7330px}.work-docs-icon-disable-feedback-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -7330px}.work-docs-icon-disable-feedback-212f3e-24x24{width:24px;height:24px;background-position:-422px -7330px}.work-docs-icon-disable-feedback-212f3e-16x16{width:16px;height:16px;background-position:-388px -7330px}.work-docs-icon-disable-feedback-808184-24x24{width:24px;height:24px;background-position:-296px -7330px}.work-docs-icon-disable-feedback-808184-16x16{width:16px;height:16px;background-position:-262px -7330px}.work-docs-icon-disable-feedback-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -7330px}.work-docs-icon-disable-feedback-ffffff-24x24{width:24px;height:24px;background-position:-44px -7330px}.work-docs-icon-disable-feedback-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -7330px}.work-docs-icon-disable-feedback-ffffff-16x16{width:16px;height:16px;background-position:-10px -7330px}.work-docs-icon-enable-feedback-0e72a3-24x24{width:24px;height:24px;background-position:-674px -7288px}.work-docs-icon-enable-feedback-0e72a3-16x16{width:16px;height:16px;background-position:-640px -7288px}.work-docs-icon-enable-feedback-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -7288px}.work-docs-icon-enable-feedback-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -7288px}.work-docs-icon-enable-feedback-212f3e-24x24{width:24px;height:24px;background-position:-422px -7288px}.work-docs-icon-enable-feedback-212f3e-16x16{width:16px;height:16px;background-position:-388px -7288px}.work-docs-icon-enable-feedback-808184-24x24{width:24px;height:24px;background-position:-296px -7288px}.work-docs-icon-enable-feedback-808184-16x16{width:16px;height:16px;background-position:-262px -7288px}.work-docs-icon-enable-feedback-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -7288px}.work-docs-icon-enable-feedback-ffffff-24x24{width:24px;height:24px;background-position:-44px -7288px}.work-docs-icon-enable-feedback-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -7288px}.work-docs-icon-enable-feedback-ffffff-16x16{width:16px;height:16px;background-position:-10px -7288px}.work-docs-icon-disabled-feedback-alternate-0e72a3-24x24{width:24px;height:24px;background-position:-674px -7246px}.work-docs-icon-disabled-feedback-alternate-0e72a3-16x16{width:16px;height:16px;background-position:-640px -7246px}.work-docs-icon-disabled-feedback-alternate-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -7246px}.work-docs-icon-disabled-feedback-alternate-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -7246px}.work-docs-icon-disabled-feedback-alternate-212f3e-24x24{width:24px;height:24px;background-position:-422px -7246px}.work-docs-icon-disabled-feedback-alternate-212f3e-16x16{width:16px;height:16px;background-position:-388px -7246px}.work-docs-icon-disabled-feedback-alternate-808184-24x24{width:24px;height:24px;background-position:-296px -7246px}.work-docs-icon-disabled-feedback-alternate-808184-16x16{width:16px;height:16px;background-position:-262px -7246px}.work-docs-icon-disabled-feedback-alternate-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -7246px}.work-docs-icon-disabled-feedback-alternate-ffffff-24x24{width:24px;height:24px;background-position:-44px -7246px}.work-docs-icon-disabled-feedback-alternate-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -7246px}.work-docs-icon-disabled-feedback-alternate-ffffff-16x16{width:16px;height:16px;background-position:-10px -7246px}.work-docs-icon-disabled-feedback-0e72a3-24x24{width:24px;height:24px;background-position:-674px -7204px}.work-docs-icon-disabled-feedback-0e72a3-16x16{width:16px;height:16px;background-position:-640px -7204px}.work-docs-icon-disabled-feedback-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -7204px}.work-docs-icon-disabled-feedback-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -7204px}.work-docs-icon-disabled-feedback-212f3e-24x24{width:24px;height:24px;background-position:-422px -7204px}.work-docs-icon-disabled-feedback-212f3e-16x16{width:16px;height:16px;background-position:-388px -7204px}.work-docs-icon-disabled-feedback-808184-24x24{width:24px;height:24px;background-position:-296px -7204px}.work-docs-icon-disabled-feedback-808184-16x16{width:16px;height:16px;background-position:-262px -7204px}.work-docs-icon-disabled-feedback-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -7204px}.work-docs-icon-disabled-feedback-ffffff-24x24{width:24px;height:24px;background-position:-44px -7204px}.work-docs-icon-disabled-feedback-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -7204px}.work-docs-icon-disabled-feedback-ffffff-16x16{width:16px;height:16px;background-position:-10px -7204px}.work-docs-icon-private-feedback-indicator-ffa724-24x24{width:24px;height:24px;background-position:-800px -7162px}.work-docs-icon-private-feedback-indicator-ffa724-16x16{width:16px;height:16px;background-position:-766px -7162px}.work-docs-icon-private-feedback-indicator-0e72a3-24x24{width:24px;height:24px;background-position:-674px -7162px}.work-docs-icon-private-feedback-indicator-0e72a3-16x16{width:16px;height:16px;background-position:-640px -7162px}.work-docs-icon-private-feedback-indicator-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -7162px}.work-docs-icon-private-feedback-indicator-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -7162px}.work-docs-icon-private-feedback-indicator-212f3e-24x24{width:24px;height:24px;background-position:-422px -7162px}.work-docs-icon-private-feedback-indicator-212f3e-16x16{width:16px;height:16px;background-position:-388px -7162px}.work-docs-icon-private-feedback-indicator-808184-24x24{width:24px;height:24px;background-position:-296px -7162px}.work-docs-icon-private-feedback-indicator-808184-16x16{width:16px;height:16px;background-position:-262px -7162px}.work-docs-icon-private-feedback-indicator-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -7162px}.work-docs-icon-private-feedback-indicator-ffffff-24x24{width:24px;height:24px;background-position:-44px -7162px}.work-docs-icon-private-feedback-indicator-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -7162px}.work-docs-icon-private-feedback-indicator-ffffff-16x16{width:16px;height:16px;background-position:-10px -7162px}.work-docs-icon-unlocked-0e72a3-24x24{width:24px;height:24px;background-position:-674px -7120px}.work-docs-icon-unlocked-0e72a3-16x16{width:16px;height:16px;background-position:-640px -7120px}.work-docs-icon-unlocked-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -7120px}.work-docs-icon-unlocked-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -7120px}.work-docs-icon-unlocked-212f3e-24x24{width:24px;height:24px;background-position:-422px -7120px}.work-docs-icon-unlocked-212f3e-16x16{width:16px;height:16px;background-position:-388px -7120px}.work-docs-icon-unlocked-808184-24x24{width:24px;height:24px;background-position:-296px -7120px}.work-docs-icon-unlocked-808184-16x16{width:16px;height:16px;background-position:-262px -7120px}.work-docs-icon-unlocked-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -7120px}.work-docs-icon-unlocked-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -7120px}.work-docs-icon-unlocked-ffffff-24x24{width:24px;height:24px;background-position:-44px -7120px}.work-docs-icon-unlocked-ffffff-16x16{width:16px;height:16px;background-position:-10px -7120px}.work-docs-icon-video-alternate-0e72a3-24x24{width:24px;height:24px;background-position:-674px -7078px}.work-docs-icon-video-alternate-0e72a3-16x16{width:16px;height:16px;background-position:-640px -7078px}.work-docs-icon-video-alternate-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -7078px}.work-docs-icon-video-alternate-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -7078px}.work-docs-icon-video-alternate-212f3e-24x24{width:24px;height:24px;background-position:-422px -7078px}.work-docs-icon-video-alternate-212f3e-16x16{width:16px;height:16px;background-position:-388px -7078px}.work-docs-icon-video-alternate-808184-24x24{width:24px;height:24px;background-position:-296px -7078px}.work-docs-icon-video-alternate-808184-16x16{width:16px;height:16px;background-position:-262px -7078px}.work-docs-icon-video-alternate-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -7078px}.work-docs-icon-video-alternate-ffffff-24x24{width:24px;height:24px;background-position:-44px -7078px}.work-docs-icon-video-alternate-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -7078px}.work-docs-icon-video-alternate-ffffff-16x16{width:16px;height:16px;background-position:-10px -7078px}.work-docs-icon-video-0e72a3-24x24{width:24px;height:24px;background-position:-674px -7036px}.work-docs-icon-video-0e72a3-16x16{width:16px;height:16px;background-position:-640px -7036px}.work-docs-icon-video-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -7036px}.work-docs-icon-video-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -7036px}.work-docs-icon-video-212f3e-24x24{width:24px;height:24px;background-position:-422px -7036px}.work-docs-icon-video-212f3e-16x16{width:16px;height:16px;background-position:-388px -7036px}.work-docs-icon-video-808184-24x24{width:24px;height:24px;background-position:-296px -7036px}.work-docs-icon-video-808184-16x16{width:16px;height:16px;background-position:-262px -7036px}.work-docs-icon-video-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -7036px}.work-docs-icon-video-ffffff-24x24{width:24px;height:24px;background-position:-44px -7036px}.work-docs-icon-video-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -7036px}.work-docs-icon-video-ffffff-16x16{width:16px;height:16px;background-position:-10px -7036px}.work-docs-icon-filter-0e72a3-24x24{width:24px;height:24px;background-position:-674px -6994px}.work-docs-icon-filter-0e72a3-16x16{width:16px;height:16px;background-position:-640px -6994px}.work-docs-icon-filter-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -6994px}.work-docs-icon-filter-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -6994px}.work-docs-icon-filter-212f3e-24x24{width:24px;height:24px;background-position:-422px -6994px}.work-docs-icon-filter-212f3e-16x16{width:16px;height:16px;background-position:-388px -6994px}.work-docs-icon-filter-808184-24x24{width:24px;height:24px;background-position:-296px -6994px}.work-docs-icon-filter-808184-16x16{width:16px;height:16px;background-position:-262px -6994px}.work-docs-icon-filter-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -6994px}.work-docs-icon-filter-ffffff-24x24{width:24px;height:24px;background-position:-44px -6994px}.work-docs-icon-filter-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -6994px}.work-docs-icon-filter-ffffff-16x16{width:16px;height:16px;background-position:-10px -6994px}.work-docs-icon-add-document-0e72a3-24x24{width:24px;height:24px;background-position:-674px -6952px}.work-docs-icon-add-document-0e72a3-16x16{width:16px;height:16px;background-position:-640px -6952px}.work-docs-icon-add-document-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -6952px}.work-docs-icon-add-document-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -6952px}.work-docs-icon-add-document-212f3e-24x24{width:24px;height:24px;background-position:-422px -6952px}.work-docs-icon-add-document-212f3e-16x16{width:16px;height:16px;background-position:-388px -6952px}.work-docs-icon-add-document-808184-24x24{width:24px;height:24px;background-position:-296px -6952px}.work-docs-icon-add-document-808184-16x16{width:16px;height:16px;background-position:-262px -6952px}.work-docs-icon-add-document-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -6952px}.work-docs-icon-add-document-ffffff-24x24{width:24px;height:24px;background-position:-44px -6952px}.work-docs-icon-add-document-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -6952px}.work-docs-icon-add-document-ffffff-16x16{width:16px;height:16px;background-position:-10px -6952px}.work-docs-icon-download-with-comments-0e72a3-24x24{width:24px;height:24px;background-position:-674px -6910px}.work-docs-icon-download-with-comments-0e72a3-16x16{width:16px;height:16px;background-position:-640px -6910px}.work-docs-icon-download-with-comments-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -6910px}.work-docs-icon-download-with-comments-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -6910px}.work-docs-icon-download-with-comments-212f3e-24x24{width:24px;height:24px;background-position:-422px -6910px}.work-docs-icon-download-with-comments-212f3e-16x16{width:16px;height:16px;background-position:-388px -6910px}.work-docs-icon-download-with-comments-808184-24x24{width:24px;height:24px;background-position:-296px -6910px}.work-docs-icon-download-with-comments-808184-16x16{width:16px;height:16px;background-position:-262px -6910px}.work-docs-icon-download-with-comments-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -6910px}.work-docs-icon-download-with-comments-ffffff-24x24{width:24px;height:24px;background-position:-44px -6910px}.work-docs-icon-download-with-comments-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -6910px}.work-docs-icon-download-with-comments-ffffff-16x16{width:16px;height:16px;background-position:-10px -6910px}.work-docs-icon-remove-me-from-share-alternate-0e72a3-24x24{width:24px;height:24px;background-position:-674px -6868px}.work-docs-icon-remove-me-from-share-alternate-0e72a3-16x16{width:16px;height:16px;background-position:-640px -6868px}.work-docs-icon-remove-me-from-share-alternate-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -6868px}.work-docs-icon-remove-me-from-share-alternate-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -6868px}.work-docs-icon-remove-me-from-share-alternate-212f3e-24x24{width:24px;height:24px;background-position:-422px -6868px}.work-docs-icon-remove-me-from-share-alternate-212f3e-16x16{width:16px;height:16px;background-position:-388px -6868px}.work-docs-icon-remove-me-from-share-alternate-808184-24x24{width:24px;height:24px;background-position:-296px -6868px}.work-docs-icon-remove-me-from-share-alternate-808184-16x16{width:16px;height:16px;background-position:-262px -6868px}.work-docs-icon-remove-me-from-share-alternate-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -6868px}.work-docs-icon-remove-me-from-share-alternate-ffffff-24x24{width:24px;height:24px;background-position:-44px -6868px}.work-docs-icon-remove-me-from-share-alternate-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -6868px}.work-docs-icon-remove-me-from-share-alternate-ffffff-16x16{width:16px;height:16px;background-position:-10px -6868px}.work-docs-icon-remove-me-from-share-0e72a3-24x24{width:24px;height:24px;background-position:-674px -6826px}.work-docs-icon-remove-me-from-share-0e72a3-16x16{width:16px;height:16px;background-position:-640px -6826px}.work-docs-icon-remove-me-from-share-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -6826px}.work-docs-icon-remove-me-from-share-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -6826px}.work-docs-icon-remove-me-from-share-212f3e-24x24{width:24px;height:24px;background-position:-422px -6826px}.work-docs-icon-remove-me-from-share-212f3e-16x16{width:16px;height:16px;background-position:-388px -6826px}.work-docs-icon-remove-me-from-share-808184-24x24{width:24px;height:24px;background-position:-296px -6826px}.work-docs-icon-remove-me-from-share-808184-16x16{width:16px;height:16px;background-position:-262px -6826px}.work-docs-icon-remove-me-from-share-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -6826px}.work-docs-icon-remove-me-from-share-ffffff-24x24{width:24px;height:24px;background-position:-44px -6826px}.work-docs-icon-remove-me-from-share-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -6826px}.work-docs-icon-remove-me-from-share-ffffff-16x16{width:16px;height:16px;background-position:-10px -6826px}.work-docs-icon-transfer-owner-0e72a3-24x24{width:24px;height:24px;background-position:-674px -6784px}.work-docs-icon-transfer-owner-0e72a3-16x16{width:16px;height:16px;background-position:-640px -6784px}.work-docs-icon-transfer-owner-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -6784px}.work-docs-icon-transfer-owner-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -6784px}.work-docs-icon-transfer-owner-212f3e-24x24{width:24px;height:24px;background-position:-422px -6784px}.work-docs-icon-transfer-owner-212f3e-16x16{width:16px;height:16px;background-position:-388px -6784px}.work-docs-icon-transfer-owner-808184-24x24{width:24px;height:24px;background-position:-296px -6784px}.work-docs-icon-transfer-owner-808184-16x16{width:16px;height:16px;background-position:-262px -6784px}.work-docs-icon-transfer-owner-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -6784px}.work-docs-icon-transfer-owner-ffffff-24x24{width:24px;height:24px;background-position:-44px -6784px}.work-docs-icon-transfer-owner-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -6784px}.work-docs-icon-transfer-owner-ffffff-16x16{width:16px;height:16px;background-position:-10px -6784px}.work-docs-icon-sort-0e72a3-24x24{width:24px;height:24px;background-position:-674px -6742px}.work-docs-icon-sort-0e72a3-16x16{width:16px;height:16px;background-position:-640px -6742px}.work-docs-icon-sort-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -6742px}.work-docs-icon-sort-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -6742px}.work-docs-icon-sort-212f3e-24x24{width:24px;height:24px;background-position:-422px -6742px}.work-docs-icon-sort-212f3e-16x16{width:16px;height:16px;background-position:-388px -6742px}.work-docs-icon-sort-808184-24x24{width:24px;height:24px;background-position:-296px -6742px}.work-docs-icon-sort-808184-16x16{width:16px;height:16px;background-position:-262px -6742px}.work-docs-icon-sort-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -6742px}.work-docs-icon-sort-ffffff-24x24{width:24px;height:24px;background-position:-44px -6742px}.work-docs-icon-sort-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -6742px}.work-docs-icon-sort-ffffff-16x16{width:16px;height:16px;background-position:-10px -6742px}.work-docs-icon-download-mobile-0e72a3-24x24{width:24px;height:24px;background-position:-674px -6700px}.work-docs-icon-download-mobile-0e72a3-16x16{width:16px;height:16px;background-position:-640px -6700px}.work-docs-icon-download-mobile-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -6700px}.work-docs-icon-download-mobile-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -6700px}.work-docs-icon-download-mobile-212f3e-24x24{width:24px;height:24px;background-position:-422px -6700px}.work-docs-icon-download-mobile-212f3e-16x16{width:16px;height:16px;background-position:-388px -6700px}.work-docs-icon-download-mobile-808184-24x24{width:24px;height:24px;background-position:-296px -6700px}.work-docs-icon-download-mobile-808184-16x16{width:16px;height:16px;background-position:-262px -6700px}.work-docs-icon-download-mobile-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -6700px}.work-docs-icon-download-mobile-ffffff-24x24{width:24px;height:24px;background-position:-44px -6700px}.work-docs-icon-download-mobile-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -6700px}.work-docs-icon-download-mobile-ffffff-16x16{width:16px;height:16px;background-position:-10px -6700px}.work-docs-icon-download-sync-client-0e72a3-24x24{width:24px;height:24px;background-position:-674px -6658px}.work-docs-icon-download-sync-client-0e72a3-16x16{width:16px;height:16px;background-position:-640px -6658px}.work-docs-icon-download-sync-client-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -6658px}.work-docs-icon-download-sync-client-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -6658px}.work-docs-icon-download-sync-client-212f3e-24x24{width:24px;height:24px;background-position:-422px -6658px}.work-docs-icon-download-sync-client-212f3e-16x16{width:16px;height:16px;background-position:-388px -6658px}.work-docs-icon-download-sync-client-808184-24x24{width:24px;height:24px;background-position:-296px -6658px}.work-docs-icon-download-sync-client-808184-16x16{width:16px;height:16px;background-position:-262px -6658px}.work-docs-icon-download-sync-client-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -6658px}.work-docs-icon-download-sync-client-ffffff-24x24{width:24px;height:24px;background-position:-44px -6658px}.work-docs-icon-download-sync-client-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -6658px}.work-docs-icon-download-sync-client-ffffff-16x16{width:16px;height:16px;background-position:-10px -6658px}.work-docs-icon-admin-0e72a3-24x24{width:24px;height:24px;background-position:-674px -6616px}.work-docs-icon-admin-0e72a3-16x16{width:16px;height:16px;background-position:-640px -6616px}.work-docs-icon-admin-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -6616px}.work-docs-icon-admin-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -6616px}.work-docs-icon-admin-212f3e-24x24{width:24px;height:24px;background-position:-422px -6616px}.work-docs-icon-admin-212f3e-16x16{width:16px;height:16px;background-position:-388px -6616px}.work-docs-icon-admin-808184-24x24{width:24px;height:24px;background-position:-296px -6616px}.work-docs-icon-admin-808184-16x16{width:16px;height:16px;background-position:-262px -6616px}.work-docs-icon-admin-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -6616px}.work-docs-icon-admin-ffffff-24x24{width:24px;height:24px;background-position:-44px -6616px}.work-docs-icon-admin-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -6616px}.work-docs-icon-admin-ffffff-16x16{width:16px;height:16px;background-position:-10px -6616px}.work-docs-icon-check-inactive-0e72a3-24x24{width:24px;height:24px;background-position:-674px -5732px}.work-docs-icon-check-inactive-0e72a3-16x16{width:16px;height:16px;background-position:-640px -5732px}.work-docs-icon-check-inactive-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -5732px}.work-docs-icon-check-inactive-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -5732px}.work-docs-icon-check-inactive-212f3e-24x24{width:24px;height:24px;background-position:-422px -5732px}.work-docs-icon-check-inactive-212f3e-16x16{width:16px;height:16px;background-position:-388px -5732px}.work-docs-icon-check-inactive-808184-24x24{width:24px;height:24px;background-position:-296px -5732px}.work-docs-icon-check-inactive-808184-16x16{width:16px;height:16px;background-position:-262px -5732px}.work-docs-icon-check-inactive-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -5732px}.work-docs-icon-check-inactive-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -5732px}.work-docs-icon-check-inactive-ffffff-24x24{width:24px;height:24px;background-position:-44px -5732px}.work-docs-icon-check-inactive-ffffff-16x16{width:16px;height:16px;background-position:-10px -5732px}.work-docs-icon-radio-inactive-0e72a3-24x24{width:24px;height:24px;background-position:-674px -5564px}.work-docs-icon-radio-inactive-0e72a3-16x16{width:16px;height:16px;background-position:-640px -5564px}.work-docs-icon-radio-inactive-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -5564px}.work-docs-icon-radio-inactive-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -5564px}.work-docs-icon-radio-inactive-212f3e-24x24{width:24px;height:24px;background-position:-422px -5564px}.work-docs-icon-radio-inactive-212f3e-16x16{width:16px;height:16px;background-position:-388px -5564px}.work-docs-icon-radio-inactive-808184-24x24{width:24px;height:24px;background-position:-296px -5564px}.work-docs-icon-radio-inactive-808184-16x16{width:16px;height:16px;background-position:-262px -5564px}.work-docs-icon-radio-inactive-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -5564px}.work-docs-icon-radio-inactive-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -5564px}.work-docs-icon-radio-inactive-ffffff-24x24{width:24px;height:24px;background-position:-44px -5564px}.work-docs-icon-radio-inactive-ffffff-16x16{width:16px;height:16px;background-position:-10px -5564px}.work-docs-icon-remove-from-share-0e72a3-24x24{width:24px;height:24px;background-position:-674px -6532px}.work-docs-icon-remove-from-share-0e72a3-16x16{width:16px;height:16px;background-position:-640px -6532px}.work-docs-icon-edit-file-0e72a3-24x24{width:24px;height:24px;background-position:-674px -6490px}.work-docs-icon-edit-file-0e72a3-16x16{width:16px;height:16px;background-position:-640px -6490px}.work-docs-icon-edit-file-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -6490px}.work-docs-icon-edit-file-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -6490px}.work-docs-icon-edit-file-212f3e-24x24{width:24px;height:24px;background-position:-422px -6490px}.work-docs-icon-edit-file-212f3e-16x16{width:16px;height:16px;background-position:-388px -6490px}.work-docs-icon-edit-file-808184-24x24{width:24px;height:24px;background-position:-296px -6490px}.work-docs-icon-edit-file-808184-16x16{width:16px;height:16px;background-position:-262px -6490px}.work-docs-icon-edit-file-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -6490px}.work-docs-icon-edit-file-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -6490px}.work-docs-icon-edit-file-ffffff-24x24{width:24px;height:24px;background-position:-44px -6490px}.work-docs-icon-edit-file-ffffff-16x16{width:16px;height:16px;background-position:-10px -6490px}.work-docs-icon-broken-link-0e72a3-24x24{width:24px;height:24px;background-position:-674px -6448px}.work-docs-icon-broken-link-0e72a3-16x16{width:16px;height:16px;background-position:-640px -6448px}.work-docs-icon-remove-from-share-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -6532px}.work-docs-icon-remove-from-share-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -6532px}.work-docs-icon-broken-link-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -6448px}.work-docs-icon-broken-link-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -6448px}.work-docs-icon-remove-from-share-212f3e-24x24{width:24px;height:24px;background-position:-422px -6532px}.work-docs-icon-remove-from-share-212f3e-16x16{width:16px;height:16px;background-position:-388px -6532px}.work-docs-icon-broken-link-212f3e-24x24{width:24px;height:24px;background-position:-422px -6448px}.work-docs-icon-broken-link-212f3e-16x16{width:16px;height:16px;background-position:-388px -6448px}.work-docs-icon-remove-from-share-808184-24x24{width:24px;height:24px;background-position:-296px -6532px}.work-docs-icon-remove-from-share-808184-16x16{width:16px;height:16px;background-position:-262px -6532px}.work-docs-icon-broken-link-808184-24x24{width:24px;height:24px;background-position:-296px -6448px}.work-docs-icon-broken-link-808184-16x16{width:16px;height:16px;background-position:-262px -6448px}.work-docs-icon-remove-from-share-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -6532px}.work-docs-icon-remove-from-share-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -6532px}.work-docs-icon-remove-from-share-ffffff-24x24{width:24px;height:24px;background-position:-44px -6532px}.work-docs-icon-remove-from-share-ffffff-16x16{width:16px;height:16px;background-position:-10px -6532px}.work-docs-icon-broken-link-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -6448px}.work-docs-icon-broken-link-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -6448px}.work-docs-icon-broken-link-ffffff-24x24{width:24px;height:24px;background-position:-44px -6448px}.work-docs-icon-broken-link-ffffff-16x16{width:16px;height:16px;background-position:-10px -6448px}.work-docs-icon-no-preview-0e72a3-24x24{width:24px;height:24px;background-position:-674px -6406px}.work-docs-icon-no-preview-0e72a3-16x16{width:16px;height:16px;background-position:-640px -6406px}.work-docs-icon-session-expired-0e72a3-24x24{width:24px;height:24px;background-position:-674px -6364px}.work-docs-icon-session-expired-0e72a3-16x16{width:16px;height:16px;background-position:-640px -6364px}.work-docs-icon-no-preview-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -6406px}.work-docs-icon-no-preview-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -6406px}.work-docs-icon-session-expired-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -6364px}.work-docs-icon-session-expired-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -6364px}.work-docs-icon-no-preview-212f3e-24x24{width:24px;height:24px;background-position:-422px -6406px}.work-docs-icon-no-preview-212f3e-16x16{width:16px;height:16px;background-position:-388px -6406px}.work-docs-icon-session-expired-212f3e-24x24{width:24px;height:24px;background-position:-422px -6364px}.work-docs-icon-session-expired-212f3e-16x16{width:16px;height:16px;background-position:-388px -6364px}.work-docs-icon-no-preview-808184-24x24{width:24px;height:24px;background-position:-296px -6406px}.work-docs-icon-no-preview-808184-16x16{width:16px;height:16px;background-position:-262px -6406px}.work-docs-icon-session-expired-808184-24x24{width:24px;height:24px;background-position:-296px -6364px}.work-docs-icon-session-expired-808184-16x16{width:16px;height:16px;background-position:-262px -6364px}.work-docs-icon-no-preview-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -6406px}.work-docs-icon-no-preview-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -6406px}.work-docs-icon-no-preview-ffffff-24x24{width:24px;height:24px;background-position:-44px -6406px}.work-docs-icon-no-preview-ffffff-16x16{width:16px;height:16px;background-position:-10px -6406px}.work-docs-icon-session-expired-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -6364px}.work-docs-icon-session-expired-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -6364px}.work-docs-icon-session-expired-ffffff-24x24{width:24px;height:24px;background-position:-44px -6364px}.work-docs-icon-session-expired-ffffff-16x16{width:16px;height:16px;background-position:-10px -6364px}.work-docs-icon-leave-full-screen-0e72a3-24x24{width:24px;height:24px;background-position:-674px -6322px}.work-docs-icon-leave-full-screen-0e72a3-16x16{width:16px;height:16px;background-position:-640px -6322px}.work-docs-icon-leave-full-screen-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -6322px}.work-docs-icon-leave-full-screen-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -6322px}.work-docs-icon-leave-full-screen-212f3e-24x24{width:24px;height:24px;background-position:-422px -6322px}.work-docs-icon-leave-full-screen-212f3e-16x16{width:16px;height:16px;background-position:-388px -6322px}.work-docs-icon-leave-full-screen-808184-24x24{width:24px;height:24px;background-position:-296px -6322px}.work-docs-icon-leave-full-screen-808184-16x16{width:16px;height:16px;background-position:-262px -6322px}.work-docs-icon-leave-full-screen-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -6322px}.work-docs-icon-leave-full-screen-ffffff-24x24{width:24px;height:24px;background-position:-44px -6322px}.work-docs-icon-leave-full-screen-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -6322px}.work-docs-icon-leave-full-screen-ffffff-16x16{width:16px;height:16px;background-position:-10px -6322px}.work-docs-icon-full-screen-0e72a3-24x24{width:24px;height:24px;background-position:-674px -6280px}.work-docs-icon-full-screen-0e72a3-16x16{width:16px;height:16px;background-position:-640px -6280px}.work-docs-icon-full-screen-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -6280px}.work-docs-icon-full-screen-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -6280px}.work-docs-icon-full-screen-212f3e-24x24{width:24px;height:24px;background-position:-422px -6280px}.work-docs-icon-full-screen-212f3e-16x16{width:16px;height:16px;background-position:-388px -6280px}.work-docs-icon-full-screen-808184-24x24{width:24px;height:24px;background-position:-296px -6280px}.work-docs-icon-full-screen-808184-16x16{width:16px;height:16px;background-position:-262px -6280px}.work-docs-icon-full-screen-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -6280px}.work-docs-icon-full-screen-ffffff-24x24{width:24px;height:24px;background-position:-44px -6280px}.work-docs-icon-full-screen-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -6280px}.work-docs-icon-full-screen-ffffff-16x16{width:16px;height:16px;background-position:-10px -6280px}.work-docs-icon-pdf-bf1e0f-24x24{width:24px;height:24px;background-position:-800px -6196px}.work-docs-icon-pdf-bf1e0f-16x16{width:16px;height:16px;background-position:-766px -6196px}.work-docs-icon-powerpoint-dd5c27-24x24{width:24px;height:24px;background-position:-800px -6154px}.work-docs-icon-powerpoint-dd5c27-16x16{width:16px;height:16px;background-position:-766px -6154px}.work-docs-icon-excel-0e7d4f-24x24{width:24px;height:24px;background-position:-800px -6112px}.work-docs-icon-excel-0e7d4f-16x16{width:16px;height:16px;background-position:-766px -6112px}.work-docs-icon-word-276887-24x24{width:24px;height:24px;background-position:-800px -6070px}.work-docs-icon-word-276887-16x16{width:16px;height:16px;background-position:-766px -6070px}.work-docs-icon-add-person-0e72a3-24x24{width:24px;height:24px;background-position:-674px -5902px}.work-docs-icon-add-person-0e72a3-16x16{width:16px;height:16px;background-position:-640px -5902px}.work-docs-icon-achieve-0e72a3-24x24{width:24px;height:24px;background-position:-674px -6238px}.work-docs-icon-achieve-0e72a3-16x16{width:16px;height:16px;background-position:-640px -6238px}.work-docs-icon-pdf-0e72a3-24x24{width:24px;height:24px;background-position:-674px -6196px}.work-docs-icon-pdf-0e72a3-16x16{width:16px;height:16px;background-position:-640px -6196px}.work-docs-icon-powerpoint-0e72a3-24x24{width:24px;height:24px;background-position:-674px -6154px}.work-docs-icon-powerpoint-0e72a3-16x16{width:16px;height:16px;background-position:-640px -6154px}.work-docs-icon-excel-0e72a3-24x24{width:24px;height:24px;background-position:-674px -6112px}.work-docs-icon-excel-0e72a3-263x16{width:263px;height:16px;background-position:-393px -6112px}.work-docs-icon-word-0e72a3-24x24{width:24px;height:24px;background-position:-674px -6070px}.work-docs-icon-word-0e72a3-16x16{width:16px;height:16px;background-position:-640px -6070px}.work-docs-icon-default-0e72a3-24x24{width:24px;height:24px;background-position:-674px -5944px}.work-docs-icon-default-0e72a3-16x16{width:16px;height:16px;background-position:-640px -5944px}.work-docs-icon-close-alternate-0e72a3-24x24{width:24px;height:24px;background-position:-674px -5860px}.work-docs-icon-close-alternate-0e72a3-16x16{width:16px;height:16px;background-position:-640px -5860px}.work-docs-icon-calendar-0e72a3-24x24{width:24px;height:24px;background-position:-674px -5817px}.work-docs-icon-calendar-0e72a3-16x16{width:16px;height:16px;background-position:-640px -5817px}.work-docs-icon-link-alternate-0e72a3-24x24{width:24px;height:24px;background-position:-674px -5774px}.work-docs-icon-link-alternate-0e72a3-16x16{width:16px;height:16px;background-position:-640px -5774px}.work-docs-icon-check-press-0e72a3-24x24{width:24px;height:24px;background-position:-674px -5648px}.work-docs-icon-check-press-0e72a3-16x16{width:16px;height:16px;background-position:-640px -5648px}.work-docs-icon-check-off-0e72a3-24x24{width:24px;height:24px;background-position:-674px -5606px}.work-docs-icon-check-off-0e72a3-16x16{width:16px;height:16px;background-position:-640px -5606px}.work-docs-icon-radio-selected-0e72a3-24x24{width:24px;height:24px;background-position:-674px -5522px}.work-docs-icon-radio-selected-0e72a3-16x16{width:16px;height:16px;background-position:-640px -5522px}.work-docs-icon-radio-press-0e72a3-24x24{width:24px;height:24px;background-position:-674px -5480px}.work-docs-icon-radio-press-0e72a3-16x16{width:16px;height:16px;background-position:-640px -5480px}.work-docs-icon-radio-off-0e72a3-24x24{width:24px;height:24px;background-position:-674px -5438px}.work-docs-icon-radio-off-0e72a3-16x16{width:16px;height:16px;background-position:-640px -5438px}.work-docs-icon-refresh-0e72a3-24x24{width:24px;height:24px;background-position:-674px -5312px}.work-docs-icon-refresh-0e72a3-16x16{width:16px;height:16px;background-position:-640px -5312px}.work-docs-icon-progress-0e72a3-24x24{width:24px;height:24px;background-position:-674px -5270px}.work-docs-icon-progress-0e72a3-16x16{width:16px;height:16px;background-position:-640px -5270px}.work-docs-icon-reply-0e72a3-24x24{width:24px;height:24px;background-position:-674px -5228px}.work-docs-icon-reply-0e72a3-16x16{width:16px;height:16px;background-position:-640px -5228px}.work-docs-icon-people-0e72a3-24x24{width:24px;height:24px;background-position:-674px -5186px}.work-docs-icon-people-0e72a3-16x16{width:16px;height:16px;background-position:-640px -5186px}.work-docs-icon-add-person-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -5902px}.work-docs-icon-add-person-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -5902px}.work-docs-icon-achieve-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -6238px}.work-docs-icon-achieve-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -6238px}.work-docs-icon-pdf-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -6196px}.work-docs-icon-pdf-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -6196px}.work-docs-icon-powerpoint-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -6154px}.work-docs-icon-powerpoint-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -6154px}.work-docs-icon-excel-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -6112px}.work-docs-icon-excel-8ea9c9-138x16{width:138px;height:16px;background-position:-514px -6112px}.work-docs-icon-word-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -6070px}.work-docs-icon-word-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -6070px}.work-docs-icon-default-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -5944px}.work-docs-icon-default-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -5944px}.work-docs-icon-close-alternate-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -5860px}.work-docs-icon-close-alternate-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -5860px}.work-docs-icon-calendar-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -5817px}.work-docs-icon-calendar-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -5817px}.work-docs-icon-link-alternate-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -5774px}.work-docs-icon-link-alternate-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -5774px}.work-docs-icon-check-press-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -5648px}.work-docs-icon-check-press-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -5648px}.work-docs-icon-check-off-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -5606px}.work-docs-icon-check-off-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -5606px}.work-docs-icon-radio-selected-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -5522px}.work-docs-icon-radio-selected-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -5522px}.work-docs-icon-radio-press-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -5480px}.work-docs-icon-radio-press-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -5480px}.work-docs-icon-radio-off-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -5438px}.work-docs-icon-radio-off-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -5438px}.work-docs-icon-refresh-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -5312px}.work-docs-icon-refresh-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -5312px}.work-docs-icon-progress-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -5270px}.work-docs-icon-progress-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -5270px}.work-docs-icon-reply-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -5228px}.work-docs-icon-reply-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -5228px}.work-docs-icon-people-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -5186px}.work-docs-icon-people-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -5186px}.work-docs-icon-add-person-212f3e-24x24{width:24px;height:24px;background-position:-422px -5902px}.work-docs-icon-add-person-212f3e-16x16{width:16px;height:16px;background-position:-388px -5902px}.work-docs-icon-achieve-212f3e-24x24{width:24px;height:24px;background-position:-422px -6238px}.work-docs-icon-achieve-212f3e-16x16{width:16px;height:16px;background-position:-388px -6238px}.work-docs-icon-pdf-212f3e-24x24{width:24px;height:24px;background-position:-422px -6196px}.work-docs-icon-pdf-212f3e-16x16{width:16px;height:16px;background-position:-388px -6196px}.work-docs-icon-powerpoint-212f3e-24x24{width:24px;height:24px;background-position:-422px -6154px}.work-docs-icon-powerpoint-212f3e-16x16{width:16px;height:16px;background-position:-388px -6154px}.work-docs-icon-excel-212f3e-24x24{width:24px;height:24px;background-position:-422px -6112px}.work-docs-icon-excel-212f3e-138x16{width:138px;height:16px;background-position:-388px -6112px}.work-docs-icon-word-212f3e-24x24{width:24px;height:24px;background-position:-422px -6070px}.work-docs-icon-word-212f3e-16x16{width:16px;height:16px;background-position:-388px -6070px}.work-docs-icon-default-212f3e-24x24{width:24px;height:24px;background-position:-422px -5944px}.work-docs-icon-default-212f3e-16x16{width:16px;height:16px;background-position:-388px -5944px}.work-docs-icon-close-alternate-212f3e-24x24{width:24px;height:24px;background-position:-422px -5860px}.work-docs-icon-close-alternate-212f3e-16x16{width:16px;height:16px;background-position:-388px -5860px}.work-docs-icon-calendar-212f3e-24x24{width:24px;height:24px;background-position:-422px -5817px}.work-docs-icon-calendar-212f3e-16x16{width:16px;height:16px;background-position:-388px -5817px}.work-docs-icon-link-alternate-212f3e-24x24{width:24px;height:24px;background-position:-422px -5774px}.work-docs-icon-link-alternate-212f3e-16x16{width:16px;height:16px;background-position:-388px -5774px}.work-docs-icon-check-press-212f3e-24x24{width:24px;height:24px;background-position:-422px -5648px}.work-docs-icon-check-press-212f3e-16x16{width:16px;height:16px;background-position:-388px -5648px}.work-docs-icon-check-off-212f3e-24x24{width:24px;height:24px;background-position:-422px -5606px}.work-docs-icon-check-off-212f3e-16x16{width:16px;height:16px;background-position:-388px -5606px}.work-docs-icon-radio-selected-212f3e-24x24{width:24px;height:24px;background-position:-422px -5522px}.work-docs-icon-radio-selected-212f3e-16x16{width:16px;height:16px;background-position:-388px -5522px}.work-docs-icon-radio-press-212f3e-24x24{width:24px;height:24px;background-position:-422px -5480px}.work-docs-icon-radio-press-212f3e-16x16{width:16px;height:16px;background-position:-388px -5480px}.work-docs-icon-radio-off-212f3e-24x24{width:24px;height:24px;background-position:-422px -5438px}.work-docs-icon-radio-off-212f3e-16x16{width:16px;height:16px;background-position:-388px -5438px}.work-docs-icon-refresh-212f3e-24x24{width:24px;height:24px;background-position:-422px -5312px}.work-docs-icon-refresh-212f3e-16x16{width:16px;height:16px;background-position:-388px -5312px}.work-docs-icon-progress-212f3e-24x24{width:24px;height:24px;background-position:-422px -5270px}.work-docs-icon-progress-212f3e-16x16{width:16px;height:16px;background-position:-388px -5270px}.work-docs-icon-reply-212f3e-24x24{width:24px;height:24px;background-position:-422px -5228px}.work-docs-icon-reply-212f3e-16x16{width:16px;height:16px;background-position:-388px -5228px}.work-docs-icon-people-212f3e-24x24{width:24px;height:24px;background-position:-422px -5186px}.work-docs-icon-people-212f3e-16x16{width:16px;height:16px;background-position:-388px -5186px}.work-docs-icon-add-person-808184-24x24{width:24px;height:24px;background-position:-296px -5902px}.work-docs-icon-add-person-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -5902px}.work-docs-icon-add-person-ffffff-24x24{width:24px;height:24px;background-position:-44px -5902px}.work-docs-icon-add-person-808184-16x16{width:16px;height:16px;background-position:-262px -5902px}.work-docs-icon-add-person-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -5902px}.work-docs-icon-add-person-ffffff-16x16{width:16px;height:16px;background-position:-10px -5902px}.work-docs-icon-achieve-808184-24x24{width:24px;height:24px;background-position:-296px -6238px}.work-docs-icon-achieve-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -6238px}.work-docs-icon-achieve-ffffff-24x24{width:24px;height:24px;background-position:-44px -6238px}.work-docs-icon-achieve-808184-16x16{width:16px;height:16px;background-position:-262px -6238px}.work-docs-icon-achieve-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -6238px}.work-docs-icon-achieve-ffffff-16x16{width:16px;height:16px;background-position:-10px -6238px}.work-docs-icon-pdf-787982-24x25{width:24px;height:25px;background-position:-296px -6196px}.work-docs-icon-pdf-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -6196px}.work-docs-icon-pdf-ffffff-24x24{width:24px;height:24px;background-position:-44px -6196px}.work-docs-icon-pdf-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -6196px}.work-docs-icon-pdf-ffffff-16x16{width:16px;height:16px;background-position:-10px -6196px}.work-docs-icon-powerpoint-808184-24x24{width:24px;height:24px;background-position:-296px -6154px}.work-docs-icon-powerpoint-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -6154px}.work-docs-icon-powerpoint-ffffff-24x24{width:24px;height:24px;background-position:-44px -6154px}.work-docs-icon-powerpoint-808184-16x16{width:16px;height:16px;background-position:-262px -6154px}.work-docs-icon-powerpoint-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -6154px}.work-docs-icon-powerpoint-ffffff-16x16{width:16px;height:16px;background-position:-10px -6154px}.work-docs-icon-excel-808184-261x24{width:261px;height:24px;background-position:-178px -6112px}.work-docs-icon-excel-d0d2d3-143x24{width:143px;height:24px;background-position:-170px -6112px}.work-docs-icon-excel-ffffff-24x24{width:24px;height:24px;background-position:-44px -6112px}.work-docs-icon-excel-808184-16x16{width:16px;height:16px;background-position:-262px -6112px}.work-docs-icon-excel-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -6112px}.work-docs-icon-excel-ffffff-16x16{width:16px;height:16px;background-position:-10px -6112px}.work-docs-icon-word-808184-24x24{width:24px;height:24px;background-position:-296px -6070px}.work-docs-icon-word-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -6070px}.work-docs-icon-word-ffffff-24x24{width:24px;height:24px;background-position:-44px -6070px}.work-docs-icon-word-808184-16x16{width:16px;height:16px;background-position:-262px -6070px}.work-docs-icon-word-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -6070px}.work-docs-icon-word-ffffff-16x16{width:16px;height:16px;background-position:-10px -6070px}.work-docs-icon-image-0e72a3-24x24{width:24px;height:24px;background-position:-674px -5986px}.work-docs-icon-image-0e72a3-16x16{width:16px;height:16px;background-position:-640px -5986px}.work-docs-icon-image-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -5986px}.work-docs-icon-image-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -5986px}.work-docs-icon-image-212f3e-24x24{width:24px;height:24px;background-position:-422px -5986px}.work-docs-icon-image-212f3e-16x16{width:16px;height:16px;background-position:-388px -5986px}.work-docs-icon-image-808184-24x24{width:24px;height:24px;background-position:-296px -5986px}.work-docs-icon-image-808184-16x16{width:16px;height:16px;background-position:-262px -5986px}.work-docs-icon-image-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -5986px}.work-docs-icon-image-ffffff-24x24{width:24px;height:24px;background-position:-44px -5986px}.work-docs-icon-image-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -5986px}.work-docs-icon-image-ffffff-16x16{width:16px;height:16px;background-position:-10px -5986px}.work-docs-icon-default-808184-24x24{width:24px;height:24px;background-position:-296px -5944px}.work-docs-icon-default-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -5944px}.work-docs-icon-default-ffffff-24x24{width:24px;height:24px;background-position:-44px -5944px}.work-docs-icon-default-808184-16x16{width:16px;height:16px;background-position:-262px -5944px}.work-docs-icon-default-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -5944px}.work-docs-icon-default-ffffff-16x16{width:16px;height:16px;background-position:-10px -5944px}.work-docs-icon-close-alternate-808184-24x24{width:24px;height:24px;background-position:-296px -5860px}.work-docs-icon-close-alternate-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -5860px}.work-docs-icon-close-alternate-ffffff-24x24{width:24px;height:24px;background-position:-44px -5860px}.work-docs-icon-close-alternate-808184-16x16{width:16px;height:16px;background-position:-262px -5860px}.work-docs-icon-close-alternate-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -5860px}.work-docs-icon-close-alternate-ffffff-16x16{width:16px;height:16px;background-position:-10px -5860px}.work-docs-icon-calendar-808184-24x24{width:24px;height:24px;background-position:-296px -5817px}.work-docs-icon-calendar-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -5817px}.work-docs-icon-calendar-ffffff-24x24{width:24px;height:24px;background-position:-44px -5817px}.work-docs-icon-calendar-808184-16x16{width:16px;height:16px;background-position:-262px -5817px}.work-docs-icon-calendar-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -5817px}.work-docs-icon-calendar-ffffff-16x16{width:16px;height:16px;background-position:-10px -5817px}.work-docs-icon-link-alternate-808184-24x24{width:24px;height:24px;background-position:-296px -5774px}.work-docs-icon-link-alternate-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -5774px}.work-docs-icon-link-alternate-ffffff-24x24{width:24px;height:24px;background-position:-44px -5774px}.work-docs-icon-link-alternate-808184-16x16{width:16px;height:16px;background-position:-262px -5774px}.work-docs-icon-link-alternate-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -5774px}.work-docs-icon-link-alternate-ffffff-16x16{width:16px;height:16px;background-position:-10px -5774px}.work-docs-icon-check-selected-0e72a3-24x24{width:24px;height:24px;background-position:-674px -5690px}.work-docs-icon-check-selected-0e72a3-16x16{width:16px;height:16px;background-position:-640px -5690px}.work-docs-icon-check-selected-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -5690px}.work-docs-icon-check-selected-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -5690px}.work-docs-icon-check-selected-212f3e-24x24{width:24px;height:24px;background-position:-422px -5690px}.work-docs-icon-check-selected-212f3e-16x16{width:16px;height:16px;background-position:-388px -5690px}.work-docs-icon-check-selected-808184-24x24{width:24px;height:24px;background-position:-296px -5690px}.work-docs-icon-check-selected-808184-16x16{width:16px;height:16px;background-position:-262px -5690px}.work-docs-icon-check-selected-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -5690px}.work-docs-icon-check-selected-ffffff-24x24{width:24px;height:24px;background-position:-44px -5690px}.work-docs-icon-check-selected-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -5690px}.work-docs-icon-check-selected-ffffff-16x16{width:16px;height:16px;background-position:-10px -5690px}.work-docs-icon-check-press-808184-24x24{width:24px;height:24px;background-position:-296px -5648px}.work-docs-icon-check-press-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -5648px}.work-docs-icon-check-press-ffffff-24x24{width:24px;height:24px;background-position:-44px -5648px}.work-docs-icon-check-press-808184-16x16{width:16px;height:16px;background-position:-262px -5648px}.work-docs-icon-check-press-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -5648px}.work-docs-icon-check-press-ffffff-16x16{width:16px;height:16px;background-position:-10px -5648px}.work-docs-icon-check-off-808184-24x24{width:24px;height:24px;background-position:-296px -5606px}.work-docs-icon-check-off-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -5606px}.work-docs-icon-check-off-ffffff-24x24{width:24px;height:24px;background-position:-44px -5606px}.work-docs-icon-check-off-808184-16x16{width:16px;height:16px;background-position:-262px -5606px}.work-docs-icon-check-off-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -5606px}.work-docs-icon-check-off-ffffff-16x16{width:16px;height:16px;background-position:-10px -5606px}.work-docs-icon-radio-selected-808184-24x24{width:24px;height:24px;background-position:-296px -5522px}.work-docs-icon-radio-selected-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -5522px}.work-docs-icon-radio-selected-ffffff-24x24{width:24px;height:24px;background-position:-44px -5522px}.work-docs-icon-radio-selected-808184-16x16{width:16px;height:16px;background-position:-262px -5522px}.work-docs-icon-radio-selected-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -5522px}.work-docs-icon-radio-selected-ffffff-16x16{width:16px;height:16px;background-position:-10px -5522px}.work-docs-icon-radio-press-808184-24x24{width:24px;height:24px;background-position:-296px -5480px}.work-docs-icon-radio-press-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -5480px}.work-docs-icon-radio-press-ffffff-24x24{width:24px;height:24px;background-position:-44px -5480px}.work-docs-icon-radio-press-808184-16x16{width:16px;height:16px;background-position:-262px -5480px}.work-docs-icon-radio-press-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -5480px}.work-docs-icon-radio-press-ffffff-16x16{width:16px;height:16px;background-position:-10px -5480px}.work-docs-icon-radio-off-808184-24x24{width:24px;height:24px;background-position:-296px -5438px}.work-docs-icon-radio-off-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -5438px}.work-docs-icon-radio-off-ffffff-24x24{width:24px;height:24px;background-position:-44px -5438px}.work-docs-icon-radio-off-808184-16x16{width:16px;height:16px;background-position:-262px -5438px}.work-docs-icon-radio-off-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -5438px}.work-docs-icon-radio-off-ffffff-16x16{width:16px;height:16px;background-position:-10px -5438px}.work-docs-icon-refresh-alternate-0e72a3-24x24{width:24px;height:24px;background-position:-674px -5354px}.work-docs-icon-refresh-alternate-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -5354px}.work-docs-icon-refresh-alternate-212f3e-24x24{width:24px;height:24px;background-position:-422px -5354px}.work-docs-icon-refresh-alternate-808184-24x24{width:24px;height:24px;background-position:-296px -5354px}.work-docs-icon-refresh-alternate-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -5354px}.work-docs-icon-refresh-alternate-ffffff-24x24{width:24px;height:24px;background-position:-44px -5354px}.work-docs-icon-refresh-alternate-0e72a3-16x16{width:16px;height:16px;background-position:-640px -5354px}.work-docs-icon-refresh-alternate-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -5354px}.work-docs-icon-refresh-alternate-212f3e-16x16{width:16px;height:16px;background-position:-388px -5354px}.work-docs-icon-refresh-alternate-808184-16x16{width:16px;height:16px;background-position:-262px -5354px}.work-docs-icon-refresh-alternate-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -5354px}.work-docs-icon-refresh-alternate-ffffff-16x16{width:16px;height:16px;background-position:-10px -5354px}.work-docs-icon-refresh-808184-24x24{width:24px;height:24px;background-position:-296px -5312px}.work-docs-icon-refresh-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -5312px}.work-docs-icon-refresh-ffffff-24x24{width:24px;height:24px;background-position:-44px -5312px}.work-docs-icon-refresh-808184-16x16{width:16px;height:16px;background-position:-262px -5312px}.work-docs-icon-refresh-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -5312px}.work-docs-icon-refresh-ffffff-16x16{width:16px;height:16px;background-position:-10px -5312px}.work-docs-icon-progress-808184-24x24{width:24px;height:24px;background-position:-296px -5270px}.work-docs-icon-progress-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -5270px}.work-docs-icon-progress-ffffff-24x24{width:24px;height:24px;background-position:-44px -5270px}.work-docs-icon-progress-808184-16x16{width:16px;height:16px;background-position:-262px -5270px}.work-docs-icon-progress-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -5270px}.work-docs-icon-progress-ffffff-16x16{width:16px;height:16px;background-position:-10px -5270px}.work-docs-icon-reply-808184-24x24{width:24px;height:24px;background-position:-296px -5228px}.work-docs-icon-reply-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -5228px}.work-docs-icon-reply-ffffff-24x24{width:24px;height:24px;background-position:-44px -5228px}.work-docs-icon-reply-808184-16x16{width:16px;height:16px;background-position:-262px -5228px}.work-docs-icon-reply-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -5228px}.work-docs-icon-reply-ffffff-16x16{width:16px;height:16px;background-position:-10px -5228px}.work-docs-icon-people-808184-24x24{width:24px;height:24px;background-position:-296px -5186px}.work-docs-icon-people-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -5186px}.work-docs-icon-people-ffffff-24x24{width:24px;height:24px;background-position:-44px -5186px}.work-docs-icon-people-808184-16x16{width:16px;height:16px;background-position:-262px -5186px}.work-docs-icon-people-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -5186px}.work-docs-icon-people-ffffff-16x16{width:16px;height:16px;background-position:-10px -5186px}.work-docs-icon-restore-0e72a3-24x24{width:24px;height:24px;background-position:-674px -5144px}.work-docs-icon-restore-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -5144px}.work-docs-icon-restore-212f3e-24x24{width:24px;height:24px;background-position:-422px -5144px}.work-docs-icon-restore-808184-24x24{width:24px;height:24px;background-position:-296px -5144px}.work-docs-icon-restore-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -5144px}.work-docs-icon-restore-ffffff-24x24{width:24px;height:24px;background-position:-44px -5144px}.work-docs-icon-restore-0e72a3-16x16{width:16px;height:16px;background-position:-640px -5144px}.work-docs-icon-restore-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -5144px}.work-docs-icon-restore-212f3e-16x16{width:16px;height:16px;background-position:-388px -5144px}.work-docs-icon-restore-808184-16x16{width:16px;height:16px;background-position:-262px -5144px}.work-docs-icon-restore-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -5144px}.work-docs-icon-restore-ffffff-16x16{width:16px;height:16px;background-position:-10px -5144px}.work-docs-icon-arrows-right-0e72a3-24x24{width:24px;height:24px;background-position:-674px -5102px}.work-docs-icon-arrows-right-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -5102px}.work-docs-icon-arrows-right-212f3e-24x24{width:24px;height:24px;background-position:-422px -5102px}.work-docs-icon-arrows-right-808184-24x24{width:24px;height:24px;background-position:-296px -5102px}.work-docs-icon-arrows-right-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -5102px}.work-docs-icon-arrows-right-ffffff-24x24{width:24px;height:24px;background-position:-44px -5102px}.work-docs-icon-arrows-right-0e72a3-16x16{width:16px;height:16px;background-position:-640px -5102px}.work-docs-icon-arrows-right-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -5102px}.work-docs-icon-arrows-right-212f3e-16x16{width:16px;height:16px;background-position:-388px -5102px}.work-docs-icon-arrows-right-808184-16x16{width:16px;height:16px;background-position:-262px -5102px}.work-docs-icon-arrows-right-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -5102px}.work-docs-icon-arrows-right-ffffff-16x16{width:16px;height:16px;background-position:-10px -5102px}.work-docs-icon-arrows-left-0e72a3-24x24{width:24px;height:24px;background-position:-674px -5060px}.work-docs-icon-arrows-left-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -5060px}.work-docs-icon-arrows-left-212f3e-24x24{width:24px;height:24px;background-position:-422px -5060px}.work-docs-icon-arrows-left-808184-24x24{width:24px;height:24px;background-position:-296px -5060px}.work-docs-icon-arrows-left-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -5060px}.work-docs-icon-arrows-left-ffffff-24x24{width:24px;height:24px;background-position:-44px -5060px}.work-docs-icon-arrows-left-0e72a3-16x16{width:16px;height:16px;background-position:-640px -5060px}.work-docs-icon-arrows-left-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -5060px}.work-docs-icon-arrows-left-212f3e-16x16{width:16px;height:16px;background-position:-388px -5060px}.work-docs-icon-arrows-left-808184-16x16{width:16px;height:16px;background-position:-262px -5060px}.work-docs-icon-arrows-left-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -5060px}.work-docs-icon-arrows-left-ffffff-16x16{width:16px;height:16px;background-position:-10px -5060px}.work-docs-icon-ellipsis-0e72a3-24x24{width:24px;height:24px;background-position:-674px -5018px}.work-docs-icon-ellipsis-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -5018px}.work-docs-icon-ellipsis-212f3e-24x24{width:24px;height:24px;background-position:-422px -5018px}.work-docs-icon-ellipsis-808184-24x24{width:24px;height:24px;background-position:-296px -5018px}.work-docs-icon-ellipsis-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -5018px}.work-docs-icon-ellipsis-ffffff-24x24{width:24px;height:24px;background-position:-44px -5018px}.work-docs-icon-ellipsis-0e72a3-16x16{width:16px;height:16px;background-position:-640px -5018px}.work-docs-icon-ellipsis-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -5018px}.work-docs-icon-ellipsis-212f3e-16x16{width:16px;height:16px;background-position:-388px -5018px}.work-docs-icon-ellipsis-808184-16x16{width:16px;height:16px;background-position:-262px -5018px}.work-docs-icon-ellipsis-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -5018px}.work-docs-icon-ellipsis-ffffff-16x16{width:16px;height:16px;background-position:-10px -5018px}.work-docs-icon-minus-0e72a3-24x24{width:24px;height:24px;background-position:-674px -4934px}.work-docs-icon-minus-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -4934px}.work-docs-icon-minus-212f3e-24x24{width:24px;height:24px;background-position:-422px -4934px}.work-docs-icon-minus-808184-24x24{width:24px;height:24px;background-position:-296px -4934px}.work-docs-icon-minus-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -4934px}.work-docs-icon-minus-ffffff-24x24{width:24px;height:24px;background-position:-44px -4934px}.work-docs-icon-minus-0e72a3-16x16{width:16px;height:16px;background-position:-640px -4934px}.work-docs-icon-minus-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -4934px}.work-docs-icon-minus-212f3e-16x16{width:16px;height:16px;background-position:-388px -4934px}.work-docs-icon-minus-808184-16x16{width:16px;height:16px;background-position:-262px -4934px}.work-docs-icon-minus-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -4934px}.work-docs-icon-minus-ffffff-16x16{width:16px;height:16px;background-position:-10px -4934px}.work-docs-icon-plus-0e72a3-24x24{width:24px;height:24px;background-position:-674px -4892px}.work-docs-icon-plus-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -4892px}.work-docs-icon-plus-212f3e-24x24{width:24px;height:24px;background-position:-422px -4892px}.work-docs-icon-plus-808184-24x24{width:24px;height:24px;background-position:-296px -4892px}.work-docs-icon-plus-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -4892px}.work-docs-icon-plus-ffffff-24x24{width:24px;height:24px;background-position:-44px -4892px}.work-docs-icon-plus-0e72a3-16x16{width:16px;height:16px;background-position:-640px -4892px}.work-docs-icon-plus-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -4892px}.work-docs-icon-plus-212f3e-16x16{width:16px;height:16px;background-position:-388px -4892px}.work-docs-icon-plus-808184-16x16{width:16px;height:16px;background-position:-262px -4892px}.work-docs-icon-plus-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -4892px}.work-docs-icon-plus-ffffff-16x16{width:16px;height:16px;background-position:-10px -4892px}.work-docs-icon-notifications-ffffff-16x16{width:16px;height:16px;background-position:-10px -4850px}.work-docs-icon-notifications-ffffff-24x24{width:24px;height:24px;background-position:-44px -4850px}.work-docs-icon-notifications-0e72a3-24x24{width:24px;height:24px;background-position:-674px -4850px}.work-docs-icon-notifications-0e72a3-16x16{width:16px;height:16px;background-position:-640px -4850px}.work-docs-icon-notifications-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -4850px}.work-docs-icon-notifications-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -4850px}.work-docs-icon-notifications-212f3e-24x24{width:24px;height:24px;background-position:-422px -4850px}.work-docs-icon-notifications-212f3e-16x16{width:16px;height:16px;background-position:-388px -4850px}.work-docs-icon-notifications-808184-24x24{width:24px;height:24px;background-position:-296px -4850px}.work-docs-icon-notifications-808184-16x16{width:16px;height:16px;background-position:-262px -4850px}.work-docs-icon-notifications-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -4850px}.work-docs-icon-notifications-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -4850px}.work-docs-icon-zoom-out-0e72a3-24x24{width:24px;height:24px;background-position:-674px -4808px}.work-docs-icon-zoom-out-0e72a3-16x16{width:16px;height:16px;background-position:-640px -4808px}.work-docs-icon-zoom-out-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -4808px}.work-docs-icon-zoom-out-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -4808px}.work-docs-icon-zoom-out-212f3e-24x24{width:24px;height:24px;background-position:-422px -4808px}.work-docs-icon-zoom-out-212f3e-16x16{width:16px;height:16px;background-position:-388px -4808px}.work-docs-icon-zoom-out-808184-24x24{width:24px;height:24px;background-position:-296px -4808px}.work-docs-icon-zoom-out-808184-16x16{width:16px;height:16px;background-position:-262px -4808px}.work-docs-icon-zoom-out-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -4808px}.work-docs-icon-zoom-out-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -4808px}.work-docs-icon-zoom-out-ffffff-24x24{width:24px;height:24px;background-position:-44px -4808px}.work-docs-icon-zoom-out-ffffff-16x16{width:16px;height:16px;background-position:-10px -4808px}.work-docs-icon-zoom-in-0e72a3-24x24{width:24px;height:24px;background-position:-674px -4766px}.work-docs-icon-zoom-in-0e72a3-16x16{width:16px;height:16px;background-position:-640px -4766px}.work-docs-icon-zoom-in-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -4766px}.work-docs-icon-zoom-in-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -4766px}.work-docs-icon-zoom-in-212f3e-24x24{width:24px;height:24px;background-position:-422px -4766px}.work-docs-icon-zoom-in-212f3e-16x16{width:16px;height:16px;background-position:-388px -4766px}.work-docs-icon-zoom-in-808184-24x24{width:24px;height:24px;background-position:-296px -4766px}.work-docs-icon-zoom-in-808184-16x16{width:16px;height:16px;background-position:-262px -4766px}.work-docs-icon-zoom-in-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -4766px}.work-docs-icon-zoom-in-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -4766px}.work-docs-icon-zoom-in-ffffff-24x24{width:24px;height:24px;background-position:-44px -4766px}.work-docs-icon-zoom-in-ffffff-16x16{width:16px;height:16px;background-position:-10px -4766px}.work-docs-icon-page-down-0e72a3-24x24{width:24px;height:24px;background-position:-674px -4724px}.work-docs-icon-page-down-0e72a3-16x16{width:16px;height:16px;background-position:-640px -4724px}.work-docs-icon-page-down-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -4724px}.work-docs-icon-page-down-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -4724px}.work-docs-icon-page-down-212f3e-24x24{width:24px;height:24px;background-position:-422px -4724px}.work-docs-icon-page-down-212f3e-16x16{width:16px;height:16px;background-position:-388px -4724px}.work-docs-icon-page-down-808184-24x24{width:24px;height:24px;background-position:-296px -4724px}.work-docs-icon-page-down-808184-16x16{width:16px;height:16px;background-position:-262px -4724px}.work-docs-icon-page-down-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -4724px}.work-docs-icon-page-down-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -4724px}.work-docs-icon-page-down-ffffff-24x24{width:24px;height:24px;background-position:-44px -4724px}.work-docs-icon-page-down-ffffff-16x16{width:16px;height:16px;background-position:-10px -4724px}.work-docs-icon-page-up-0e72a3-24x24{width:24px;height:24px;background-position:-674px -4682px}.work-docs-icon-page-up-0e72a3-16x16{width:16px;height:16px;background-position:-640px -4682px}.work-docs-icon-page-up-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -4682px}.work-docs-icon-page-up-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -4682px}.work-docs-icon-page-up-212f3e-24x24{width:24px;height:24px;background-position:-422px -4682px}.work-docs-icon-page-up-212f3e-16x16{width:16px;height:16px;background-position:-388px -4682px}.work-docs-icon-page-up-808184-24x24{width:24px;height:24px;background-position:-296px -4682px}.work-docs-icon-page-up-808184-16x16{width:16px;height:16px;background-position:-262px -4682px}.work-docs-icon-page-up-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -4682px}.work-docs-icon-page-up-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -4682px}.work-docs-icon-page-up-ffffff-24x24{width:24px;height:24px;background-position:-44px -4682px}.work-docs-icon-page-up-ffffff-16x16{width:16px;height:16px;background-position:-10px -4682px}.work-docs-icon-carat-right-lg-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -4640px}.work-docs-icon-carat-right-lg-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -4640px}.work-docs-icon-carat-right-lg-212f3e-24x24{width:24px;height:24px;background-position:-422px -4640px}.work-docs-icon-carat-right-lg-0e72a3-24x24{width:24px;height:24px;background-position:-674px -4640px}.work-docs-icon-carat-right-lg-808184-24x24{width:24px;height:24px;background-position:-296px -4640px}.work-docs-icon-carat-right-lg-ffffff-24x24{width:24px;height:24px;background-position:-44px -4640px}.work-docs-icon-carat-right-lg-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -4640px}.work-docs-icon-carat-right-lg-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -4640px}.work-docs-icon-carat-right-lg-212f3e-16x16{width:16px;height:16px;background-position:-388px -4640px}.work-docs-icon-carat-right-lg-0e72a3-16x16{width:16px;height:16px;background-position:-640px -4640px}.work-docs-icon-carat-right-lg-808184-16x16{width:16px;height:16px;background-position:-262px -4640px}.work-docs-icon-carat-right-lg-ffffff-16x16{width:16px;height:16px;background-position:-10px -4640px}.work-docs-icon-carat-up-lg-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -4598px}.work-docs-icon-carat-up-lg-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -4598px}.work-docs-icon-carat-up-lg-212f3e-24x24{width:24px;height:24px;background-position:-422px -4598px}.work-docs-icon-carat-up-lg-0e72a3-24x24{width:24px;height:24px;background-position:-674px -4598px}.work-docs-icon-carat-up-lg-808184-24x24{width:24px;height:24px;background-position:-296px -4598px}.work-docs-icon-carat-up-lg-ffffff-24x24{width:24px;height:24px;background-position:-44px -4598px}.work-docs-icon-carat-up-lg-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -4598px}.work-docs-icon-carat-up-lg-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -4598px}.work-docs-icon-carat-up-lg-212f3e-16x16{width:16px;height:16px;background-position:-388px -4598px}.work-docs-icon-carat-up-lg-0e72a3-16x16{width:16px;height:16px;background-position:-640px -4598px}.work-docs-icon-carat-up-lg-808184-16x16{width:16px;height:16px;background-position:-262px -4598px}.work-docs-icon-carat-up-lg-ffffff-16x16{width:16px;height:16px;background-position:-10px -4598px}.work-docs-icon-carat-down-lg-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -4556px}.work-docs-icon-carat-down-lg-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -4556px}.work-docs-icon-carat-down-lg-212f3e-24x24{width:24px;height:24px;background-position:-422px -4556px}.work-docs-icon-carat-down-lg-0e72a3-24x24{width:24px;height:24px;background-position:-674px -4556px}.work-docs-icon-carat-down-lg-808184-24x24{width:24px;height:24px;background-position:-296px -4556px}.work-docs-icon-carat-down-lg-ffffff-24x24{width:24px;height:24px;background-position:-44px -4556px}.work-docs-icon-carat-down-lg-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -4556px}.work-docs-icon-carat-down-lg-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -4556px}.work-docs-icon-carat-down-lg-212f3e-16x16{width:16px;height:16px;background-position:-388px -4556px}.work-docs-icon-carat-down-lg-0e72a3-16x16{width:16px;height:16px;background-position:-640px -4556px}.work-docs-icon-carat-down-lg-808184-16x16{width:16px;height:16px;background-position:-262px -4556px}.work-docs-icon-carat-down-lg-ffffff-16x16{width:16px;height:16px;background-position:-10px -4556px}.work-docs-icon-carat-left-lg-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -4514px}.work-docs-icon-carat-left-lg-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -4514px}.work-docs-icon-carat-left-lg-212f3e-24x24{width:24px;height:24px;background-position:-422px -4514px}.work-docs-icon-carat-left-lg-0e72a3-24x24{width:24px;height:24px;background-position:-674px -4514px}.work-docs-icon-carat-left-lg-808184-24x24{width:24px;height:24px;background-position:-296px -4514px}.work-docs-icon-carat-left-lg-ffffff-24x24{width:24px;height:24px;background-position:-44px -4514px}.work-docs-icon-carat-left-lg-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -4514px}.work-docs-icon-carat-left-lg-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -4514px}.work-docs-icon-carat-left-lg-212f3e-16x16{width:16px;height:16px;background-position:-388px -4514px}.work-docs-icon-carat-left-lg-0e72a3-16x16{width:16px;height:16px;background-position:-640px -4514px}.work-docs-icon-carat-left-lg-808184-16x16{width:16px;height:16px;background-position:-262px -4514px}.work-docs-icon-carat-left-lg-ffffff-16x16{width:16px;height:16px;background-position:-10px -4514px}.work-docs-icon-unchecked-round-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -4472px}.work-docs-icon-unchecked-round-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -4472px}.work-docs-icon-unchecked-round-212f3e-24x24{width:24px;height:24px;background-position:-422px -4472px}.work-docs-icon-unchecked-round-0e72a3-24x24{width:24px;height:24px;background-position:-674px -4472px}.work-docs-icon-unchecked-round-808184-24x24{width:24px;height:24px;background-position:-296px -4472px}.work-docs-icon-unchecked-round-ffffff-24x24{width:24px;height:24px;background-position:-44px -4472px}.work-docs-icon-unchecked-round-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -4472px}.work-docs-icon-unchecked-round-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -4472px}.work-docs-icon-unchecked-round-212f3e-16x16{width:16px;height:16px;background-position:-388px -4472px}.work-docs-icon-unchecked-round-0e72a3-16x16{width:16px;height:16px;background-position:-640px -4472px}.work-docs-icon-unchecked-round-808184-16x16{width:16px;height:16px;background-position:-262px -4472px}.work-docs-icon-unchecked-round-ffffff-16x16{width:16px;height:16px;background-position:-10px -4472px}.work-docs-icon-close-activity-tray-d0d2d3-36x24{width:36px;height:24px;background-position:-170px -4430px}.work-docs-icon-close-activity-tray-8ea9c9-36x24{width:36px;height:24px;background-position:-548px -4430px}.work-docs-icon-close-activity-tray-212f3e-36x24{width:36px;height:24px;background-position:-422px -4430px}.work-docs-icon-close-activity-tray-0e72a3-36x24{width:36px;height:24px;background-position:-674px -4430px}.work-docs-icon-close-activity-tray-808184-36x24{width:36px;height:24px;background-position:-296px -4430px}.work-docs-icon-close-activity-tray-ffffff-36x24{width:36px;height:24px;background-position:-44px -4430px}.work-docs-icon-close-activity-tray-d0d2d3-24x16{width:24px;height:16px;background-position:-136px -4430px}.work-docs-icon-close-activity-tray-8ea9c9-24x16{width:24px;height:16px;background-position:-514px -4430px}.work-docs-icon-close-activity-tray-212f3e-24x16{width:24px;height:16px;background-position:-388px -4430px}.work-docs-icon-close-activity-tray-0e72a3-24x16{width:24px;height:16px;background-position:-640px -4430px}.work-docs-icon-close-activity-tray-808184-24x16{width:24px;height:16px;background-position:-262px -4430px}.work-docs-icon-close-activity-tray-ffffff-24x16{width:24px;height:16px;background-position:-10px -4430px}.work-docs-icon-open-activity-tray-chat-d0d2d3-37x24{width:37px;height:24px;background-position:-170px -4388px}.work-docs-icon-open-activity-tray-chat-8ea9c9-37x24{width:37px;height:24px;background-position:-548px -4388px}.work-docs-icon-open-activity-tray-chat-212f3e-37x24{width:37px;height:24px;background-position:-422px -4388px}.work-docs-icon-open-activity-tray-chat-0e72a3-37x24{width:37px;height:24px;background-position:-674px -4388px}.work-docs-icon-open-activity-tray-chat-808184-37x24{width:37px;height:24px;background-position:-296px -4388px}.work-docs-icon-open-activity-tray-chat-ffffff-37x24{width:37px;height:24px;background-position:-44px -4388px}.work-docs-icon-open-activity-tray-chat-d0d2d3-24x16{width:24px;height:16px;background-position:-136px -4388px}.work-docs-icon-open-activity-tray-chat-8ea9c9-24x16{width:24px;height:16px;background-position:-514px -4388px}.work-docs-icon-open-activity-tray-chat-212f3e-24x16{width:24px;height:16px;background-position:-388px -4388px}.work-docs-icon-open-activity-tray-chat-0e72a3-24x16{width:24px;height:16px;background-position:-640px -4388px}.work-docs-icon-open-activity-tray-chat-808184-24x16{width:24px;height:16px;background-position:-262px -4388px}.work-docs-icon-open-activity-tray-chat-ffffff-24x16{width:24px;height:16px;background-position:-10px -4388px}.work-docs-icon-open-folder-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -4346px}.work-docs-icon-open-folder-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -4346px}.work-docs-icon-open-folder-212f3e-24x24{width:24px;height:24px;background-position:-422px -4346px}.work-docs-icon-open-folder-0e72a3-24x24{width:24px;height:24px;background-position:-674px -4346px}.work-docs-icon-open-folder-808184-24x24{width:24px;height:24px;background-position:-296px -4346px}.work-docs-icon-open-folder-ffffff-24x24{width:24px;height:24px;background-position:-44px -4346px}.work-docs-icon-open-folder-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -4346px}.work-docs-icon-open-folder-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -4346px}.work-docs-icon-open-folder-212f3e-16x16{width:16px;height:16px;background-position:-388px -4346px}.work-docs-icon-open-folder-0e72a3-16x16{width:16px;height:16px;background-position:-640px -4346px}.work-docs-icon-open-folder-808184-16x16{width:16px;height:16px;background-position:-262px -4346px}.work-docs-icon-open-folder-ffffff-16x16{width:16px;height:16px;background-position:-10px -4346px}.work-docs-icon-carat-right-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -4304px}.work-docs-icon-carat-right-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -4304px}.work-docs-icon-carat-right-212f3e-24x24{width:24px;height:24px;background-position:-422px -4304px}.work-docs-icon-carat-right-0e72a3-24x24{width:24px;height:24px;background-position:-674px -4304px}.work-docs-icon-carat-right-808184-24x24{width:24px;height:24px;background-position:-296px -4304px}.work-docs-icon-carat-right-ffffff-24x24{width:24px;height:24px;background-position:-44px -4304px}.work-docs-icon-carat-right-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -4304px}.work-docs-icon-carat-right-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -4304px}.work-docs-icon-carat-right-212f3e-16x16{width:16px;height:16px;background-position:-388px -4304px}.work-docs-icon-carat-right-0e72a3-16x16{width:16px;height:16px;background-position:-640px -4304px}.work-docs-icon-carat-right-808184-16x16{width:16px;height:16px;background-position:-262px -4304px}.work-docs-icon-carat-right-ffffff-16x16{width:16px;height:16px;background-position:-10px -4304px}.work-docs-icon-carat-up-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -4262px}.work-docs-icon-carat-up-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -4262px}.work-docs-icon-carat-up-212f3e-24x24{width:24px;height:24px;background-position:-422px -4262px}.work-docs-icon-carat-up-0e72a3-24x24{width:24px;height:24px;background-position:-674px -4262px}.work-docs-icon-carat-up-808184-24x24{width:24px;height:24px;background-position:-296px -4262px}.work-docs-icon-carat-up-ffffff-24x24{width:24px;height:24px;background-position:-44px -4262px}.work-docs-icon-carat-up-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -4262px}.work-docs-icon-carat-up-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -4262px}.work-docs-icon-carat-up-212f3e-16x16{width:16px;height:16px;background-position:-388px -4262px}.work-docs-icon-carat-up-0e72a3-16x16{width:16px;height:16px;background-position:-640px -4262px}.work-docs-icon-carat-up-808184-16x16{width:16px;height:16px;background-position:-262px -4262px}.work-docs-icon-carat-up-ffffff-16x16{width:16px;height:16px;background-position:-10px -4262px}.work-docs-icon-carat-down-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -4220px}.work-docs-icon-carat-down-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -4220px}.work-docs-icon-carat-down-212f3e-24x24{width:24px;height:24px;background-position:-422px -4220px}.work-docs-icon-carat-down-0e72a3-24x24{width:24px;height:24px;background-position:-674px -4220px}.work-docs-icon-carat-down-808184-24x24{width:24px;height:24px;background-position:-296px -4220px}.work-docs-icon-carat-down-ffffff-24x24{width:24px;height:24px;background-position:-44px -4220px}.work-docs-icon-carat-down-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -4220px}.work-docs-icon-carat-down-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -4220px}.work-docs-icon-carat-down-212f3e-16x16{width:16px;height:16px;background-position:-388px -4220px}.work-docs-icon-carat-down-0e72a3-16x16{width:16px;height:16px;background-position:-640px -4220px}.work-docs-icon-carat-down-808184-16x16{width:16px;height:16px;background-position:-262px -4220px}.work-docs-icon-carat-down-ffffff-16x16{width:16px;height:16px;background-position:-10px -4220px}.work-docs-icon-carat-left-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -4178px}.work-docs-icon-carat-left-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -4178px}.work-docs-icon-carat-left-212f3e-24x24{width:24px;height:24px;background-position:-422px -4178px}.work-docs-icon-carat-left-0e72a3-24x24{width:24px;height:24px;background-position:-674px -4178px}.work-docs-icon-carat-left-808184-24x24{width:24px;height:24px;background-position:-296px -4178px}.work-docs-icon-carat-left-ffffff-24x24{width:24px;height:24px;background-position:-44px -4178px}.work-docs-icon-carat-left-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -4178px}.work-docs-icon-carat-left-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -4178px}.work-docs-icon-carat-left-212f3e-16x16{width:16px;height:16px;background-position:-388px -4178px}.work-docs-icon-carat-left-0e72a3-16x16{width:16px;height:16px;background-position:-640px -4178px}.work-docs-icon-carat-left-808184-16x16{width:16px;height:16px;background-position:-262px -4178px}.work-docs-icon-carat-left-ffffff-16x16{width:16px;height:16px;background-position:-10px -4178px}.work-docs-icon-checked-round-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -4136px}.work-docs-icon-checked-round-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -4136px}.work-docs-icon-checked-round-212f3e-24x24{width:24px;height:24px;background-position:-422px -4136px}.work-docs-icon-checked-round-0e72a3-24x24{width:24px;height:24px;background-position:-674px -4136px}.work-docs-icon-checked-round-808184-24x24{width:24px;height:24px;background-position:-296px -4136px}.work-docs-icon-checked-round-ffffff-24x24{width:24px;height:24px;background-position:-44px -4136px}.work-docs-icon-checked-round-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -4136px}.work-docs-icon-checked-round-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -4136px}.work-docs-icon-checked-round-212f3e-16x16{width:16px;height:16px;background-position:-388px -4136px}.work-docs-icon-checked-round-0e72a3-16x16{width:16px;height:16px;background-position:-640px -4136px}.work-docs-icon-checked-round-808184-16x16{width:16px;height:16px;background-position:-262px -4136px}.work-docs-icon-checked-round-ffffff-16x16{width:16px;height:16px;background-position:-10px -4136px}.work-docs-icon-unchecked-round-solid-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -4094px}.work-docs-icon-unchecked-round-solid-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -4094px}.work-docs-icon-unchecked-round-solid-212f3e-24x24{width:24px;height:24px;background-position:-422px -4094px}.work-docs-icon-unchecked-round-solid-0e72a3-24x24{width:24px;height:24px;background-position:-674px -4094px}.work-docs-icon-unchecked-round-solid-808184-24x24{width:24px;height:24px;background-position:-296px -4094px}.work-docs-icon-unchecked-round-solid-ffffff-24x24{width:24px;height:24px;background-position:-44px -4094px}.work-docs-icon-unchecked-round-solid-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -4094px}.work-docs-icon-unchecked-round-solid-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -4094px}.work-docs-icon-unchecked-round-solid-212f3e-16x16{width:16px;height:16px;background-position:-388px -4094px}.work-docs-icon-unchecked-round-solid-0e72a3-16x16{width:16px;height:16px;background-position:-640px -4094px}.work-docs-icon-unchecked-round-solid-808184-16x16{width:16px;height:16px;background-position:-262px -4094px}.work-docs-icon-unchecked-round-solid-ffffff-16x16{width:16px;height:16px;background-position:-10px -4094px}.work-docs-icon-mail-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -4052px}.work-docs-icon-mail-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -4052px}.work-docs-icon-mail-212f3e-24x24{width:24px;height:24px;background-position:-422px -4052px}.work-docs-icon-mail-0e72a3-24x24{width:24px;height:24px;background-position:-674px -4053px}.work-docs-icon-mail-808184-24x24{width:24px;height:24px;background-position:-296px -4052px}.work-docs-icon-mail-ffffff-24x24{width:24px;height:24px;background-position:-44px -4052px}.work-docs-icon-mail-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -4052px}.work-docs-icon-mail-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -4052px}.work-docs-icon-mail-212f3e-16x16{width:16px;height:16px;background-position:-388px -4052px}.work-docs-icon-mail-0e72a3-16x16{width:16px;height:16px;background-position:-640px -4052px}.work-docs-icon-mail-808184-16x16{width:16px;height:16px;background-position:-262px -4052px}.work-docs-icon-mail-ffffff-16x16{width:16px;height:16px;background-position:-10px -4052px}.work-docs-icon-cloud-toggle-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -4010px}.work-docs-icon-cloud-toggle-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -4010px}.work-docs-icon-cloud-toggle-212f3e-24x24{width:24px;height:24px;background-position:-422px -4010px}.work-docs-icon-cloud-toggle-0e72a3-24x24{width:24px;height:24px;background-position:-674px -4010px}.work-docs-icon-cloud-toggle-808184-24x24{width:24px;height:24px;background-position:-296px -4010px}.work-docs-icon-cloud-toggle-ffffff-24x24{width:24px;height:24px;background-position:-44px -4010px}.work-docs-icon-cloud-toggle-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -4010px}.work-docs-icon-cloud-toggle-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -4010px}.work-docs-icon-cloud-toggle-212f3e-16x16{width:16px;height:16px;background-position:-388px -4010px}.work-docs-icon-cloud-toggle-0e72a3-16x16{width:16px;height:16px;background-position:-640px -4010px}.work-docs-icon-cloud-toggle-808184-16x16{width:16px;height:16px;background-position:-262px -4010px}.work-docs-icon-cloud-toggle-ffffff-16x16{width:16px;height:16px;background-position:-10px -4010px}.work-docs-icon-cloud-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -3968px}.work-docs-icon-cloud-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -3968px}.work-docs-icon-cloud-212f3e-24x24{width:24px;height:24px;background-position:-422px -3968px}.work-docs-icon-cloud-0e72a3-24x24{width:24px;height:24px;background-position:-674px -3968px}.work-docs-icon-cloud-808184-24x24{width:24px;height:24px;background-position:-296px -3968px}.work-docs-icon-cloud-ffffff-24x24{width:24px;height:24px;background-position:-44px -3968px}.work-docs-icon-cloud-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -3968px}.work-docs-icon-cloud-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -3968px}.work-docs-icon-cloud-212f3e-16x16{width:16px;height:16px;background-position:-388px -3968px}.work-docs-icon-cloud-0e72a3-16x16{width:16px;height:16px;background-position:-640px -3968px}.work-docs-icon-cloud-808184-16x16{width:16px;height:16px;background-position:-262px -3968px}.work-docs-icon-cloud-ffffff-16x16{width:16px;height:16px;background-position:-10px -3968px}.work-docs-icon-close-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -3926px}.work-docs-icon-close-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -3926px}.work-docs-icon-close-212f3e-24x24{width:24px;height:24px;background-position:-422px -3926px}.work-docs-icon-close-0e72a3-24x24{width:24px;height:24px;background-position:-674px -3926px}.work-docs-icon-close-808184-24x24{width:24px;height:24px;background-position:-296px -3926px}.work-docs-icon-close-ffffff-24x24{width:24px;height:24px;background-position:-44px -3926px}.work-docs-icon-close-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -3926px}.work-docs-icon-close-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -3926px}.work-docs-icon-close-212f3e-16x16{width:16px;height:16px;background-position:-388px -3926px}.work-docs-icon-close-0e72a3-16x16{width:16px;height:16px;background-position:-640px -3926px}.work-docs-icon-close-808184-16x16{width:16px;height:16px;background-position:-262px -3926px}.work-docs-icon-close-ffffff-16x16{width:16px;height:16px;background-position:-10px -3926px}.work-docs-icon-share-alternate-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -3884px}.work-docs-icon-share-alternate-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -3884px}.work-docs-icon-share-alternate-212f3e-24x24{width:24px;height:24px;background-position:-422px -3884px}.work-docs-icon-share-alternate-0e72a3-24x24{width:24px;height:24px;background-position:-674px -3884px}.work-docs-icon-share-alternate-808184-24x24{width:24px;height:24px;background-position:-296px -3884px}.work-docs-icon-share-alternate-ffffff-24x24{width:24px;height:24px;background-position:-44px -3884px}.work-docs-icon-share-alternate-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -3884px}.work-docs-icon-share-alternate-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -3884px}.work-docs-icon-share-alternate-212f3e-16x16{width:16px;height:16px;background-position:-388px -3884px}.work-docs-icon-share-alternate-0e72a3-16x16{width:16px;height:16px;background-position:-640px -3884px}.work-docs-icon-share-alternate-808184-16x16{width:16px;height:16px;background-position:-262px -3884px}.work-docs-icon-share-alternate-ffffff-16x16{width:16px;height:16px;background-position:-10px -3884px}.work-docs-icon-from-clipboard-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -3842px}.work-docs-icon-from-clipboard-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -3842px}.work-docs-icon-from-clipboard-212f3e-24x24{width:24px;height:24px;background-position:-422px -3842px}.work-docs-icon-from-clipboard-0e72a3-24x24{width:24px;height:24px;background-position:-674px -3842px}.work-docs-icon-from-clipboard-808184-24x24{width:24px;height:24px;background-position:-296px -3842px}.work-docs-icon-from-clipboard-ffffff-24x24{width:24px;height:24px;background-position:-44px -3842px}.work-docs-icon-from-clipboard-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -3842px}.work-docs-icon-from-clipboard-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -3842px}.work-docs-icon-from-clipboard-212f3e-16x16{width:16px;height:16px;background-position:-388px -3842px}.work-docs-icon-from-clipboard-0e72a3-16x16{width:16px;height:16px;background-position:-640px -3842px}.work-docs-icon-from-clipboard-808184-16x16{width:16px;height:16px;background-position:-262px -3842px}.work-docs-icon-from-clipboard-ffffff-16x16{width:16px;height:16px;background-position:-10px -3842px}.work-docs-icon-to-clipboard-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -3800px}.work-docs-icon-to-clipboard-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -3800px}.work-docs-icon-to-clipboard-212f3e-24x24{width:24px;height:24px;background-position:-422px -3800px}.work-docs-icon-to-clipboard-0e72a3-24x24{width:24px;height:24px;background-position:-674px -3800px}.work-docs-icon-to-clipboard-808184-24x24{width:24px;height:24px;background-position:-296px -3800px}.work-docs-icon-to-clipboard-ffffff-24x24{width:24px;height:24px;background-position:-44px -3800px}.work-docs-icon-to-clipboard-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -3800px}.work-docs-icon-to-clipboard-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -3800px}.work-docs-icon-to-clipboard-212f3e-16x16{width:16px;height:16px;background-position:-388px -3800px}.work-docs-icon-to-clipboard-0e72a3-16x16{width:16px;height:16px;background-position:-640px -3800px}.work-docs-icon-to-clipboard-808184-16x16{width:16px;height:16px;background-position:-262px -3800px}.work-docs-icon-to-clipboard-ffffff-16x16{width:16px;height:16px;background-position:-10px -3800px}.work-docs-icon-attach-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -3758px}.work-docs-icon-attach-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -3758px}.work-docs-icon-attach-212f3e-24x24{width:24px;height:24px;background-position:-422px -3758px}.work-docs-icon-attach-0e72a3-24x24{width:24px;height:24px;background-position:-674px -3758px}.work-docs-icon-attach-808184-24x24{width:24px;height:24px;background-position:-296px -3758px}.work-docs-icon-attach-ffffff-24x24{width:24px;height:24px;background-position:-44px -3758px}.work-docs-icon-attach-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -3758px}.work-docs-icon-attach-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -3758px}.work-docs-icon-attach-212f3e-16x16{width:16px;height:16px;background-position:-388px -3758px}.work-docs-icon-attach-0e72a3-16x16{width:16px;height:16px;background-position:-640px -3758px}.work-docs-icon-attach-808184-16x16{width:16px;height:16px;background-position:-262px -3758px}.work-docs-icon-attach-ffffff-16x16{width:16px;height:16px;background-position:-10px -3758px}.work-docs-icon-close-activity-tray-people-d0d2d3-36x24{width:36px;height:24px;background-position:-170px -3716px}.work-docs-icon-close-activity-tray-people-8ea9c9-36x24{width:36px;height:24px;background-position:-548px -3716px}.work-docs-icon-close-activity-tray-people-212f3e-36x24{width:36px;height:24px;background-position:-422px -3716px}.work-docs-icon-close-activity-tray-people-0e72a3-36x24{width:36px;height:24px;background-position:-674px -3716px}.work-docs-icon-close-activity-tray-people-808184-36x24{width:36px;height:24px;background-position:-296px -3716px}.work-docs-icon-close-activity-tray-people-ffffff-36x24{width:36px;height:24px;background-position:-44px -3716px}.work-docs-icon-close-activity-tray-people-d0d2d3-24x16{width:24px;height:16px;background-position:-136px -3716px}.work-docs-icon-close-activity-tray-people-8ea9c9-24x16{width:24px;height:16px;background-position:-514px -3716px}.work-docs-icon-close-activity-tray-people-212f3e-24x16{width:24px;height:16px;background-position:-388px -3716px}.work-docs-icon-close-activity-tray-people-0e72a3-24x16{width:24px;height:16px;background-position:-640px -3716px}.work-docs-icon-close-activity-tray-people-808184-24x16{width:24px;height:16px;background-position:-262px -3716px}.work-docs-icon-close-activity-tray-people-ffffff-24x16{width:24px;height:16px;background-position:-10px -3716px}.work-docs-icon-open-activity-tray-people-d0d2d3-36x24{width:36px;height:24px;background-position:-170px -3674px}.work-docs-icon-open-activity-tray-people-8ea9c9-36x24{width:36px;height:24px;background-position:-548px -3674px}.work-docs-icon-open-activity-tray-people-212f3e-36x24{width:36px;height:24px;background-position:-422px -3674px}.work-docs-icon-open-activity-tray-people-0e72a3-36x24{width:36px;height:24px;background-position:-674px -3674px}.work-docs-icon-open-activity-tray-people-808184-36x24{width:36px;height:24px;background-position:-296px -3674px}.work-docs-icon-open-activity-tray-people-ffffff-36x24{width:36px;height:24px;background-position:-44px -3674px}.work-docs-icon-open-activity-tray-people-d0d2d3-24x16{width:24px;height:16px;background-position:-136px -3674px}.work-docs-icon-open-activity-tray-people-8ea9c9-24x16{width:24px;height:16px;background-position:-514px -3674px}.work-docs-icon-open-activity-tray-people-212f3e-24x16{width:24px;height:16px;background-position:-388px -3674px}.work-docs-icon-open-activity-tray-people-0e72a3-24x16{width:24px;height:16px;background-position:-640px -3674px}.work-docs-icon-open-activity-tray-people-808184-24x16{width:24px;height:16px;background-position:-262px -3674px}.work-docs-icon-open-activity-tray-people-ffffff-24x16{width:24px;height:16px;background-position:-10px -3674px}.work-docs-icon-info-solid-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -3632px}.work-docs-icon-info-solid-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -3632px}.work-docs-icon-info-solid-212f3e-24x24{width:24px;height:24px;background-position:-422px -3632px}.work-docs-icon-info-solid-0e72a3-24x24{width:24px;height:24px;background-position:-674px -3632px}.work-docs-icon-info-solid-808184-24x24{width:24px;height:24px;background-position:-296px -3632px}.work-docs-icon-info-solid-ffffff-24x24{width:24px;height:24px;background-position:-44px -3632px}.work-docs-icon-info-solid-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -3632px}.work-docs-icon-info-solid-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -3632px}.work-docs-icon-info-solid-212f3e-16x16{width:16px;height:16px;background-position:-388px -3632px}.work-docs-icon-info-solid-0e72a3-16x16{width:16px;height:16px;background-position:-640px -3632px}.work-docs-icon-info-solid-808184-16x16{width:16px;height:16px;background-position:-262px -3632px}.work-docs-icon-info-solid-ffffff-16x16{width:16px;height:16px;background-position:-10px -3632px}.work-docs-icon-info-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -3590px}.work-docs-icon-info-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -3590px}.work-docs-icon-info-212f3e-24x24{width:24px;height:24px;background-position:-422px -3590px}.work-docs-icon-info-0e72a3-24x24{width:24px;height:24px;background-position:-674px -3590px}.work-docs-icon-info-808184-24x24{width:24px;height:24px;background-position:-296px -3590px}.work-docs-icon-info-ffffff-24x24{width:24px;height:24px;background-position:-44px -3590px}.work-docs-icon-info-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -3590px}.work-docs-icon-info-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -3590px}.work-docs-icon-info-212f3e-16x16{width:16px;height:16px;background-position:-388px -3590px}.work-docs-icon-info-0e72a3-16x16{width:16px;height:16px;background-position:-640px -3590px}.work-docs-icon-info-808184-16x16{width:16px;height:16px;background-position:-262px -3590px}.work-docs-icon-info-ffffff-16x16{width:16px;height:16px;background-position:-10px -3590px}.work-docs-icon-activity-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -3548px}.work-docs-icon-activity-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -3548px}.work-docs-icon-activity-212f3e-24x24{width:24px;height:24px;background-position:-422px -3548px}.work-docs-icon-activity-0e72a3-24x24{width:24px;height:24px;background-position:-674px -3548px}.work-docs-icon-activity-808184-24x24{width:24px;height:24px;background-position:-296px -3548px}.work-docs-icon-activity-ffffff-24x24{width:24px;height:24px;background-position:-44px -3548px}.work-docs-icon-activity-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -3548px}.work-docs-icon-activity-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -3548px}.work-docs-icon-activity-212f3e-16x16{width:16px;height:16px;background-position:-388px -3548px}.work-docs-icon-activity-0e72a3-16x16{width:16px;height:16px;background-position:-640px -3548px}.work-docs-icon-activity-808184-16x16{width:16px;height:16px;background-position:-262px -3548px}.work-docs-icon-activity-ffffff-16x16{width:16px;height:16px;background-position:-10px -3548px}.work-docs-icon-upload-to-cloud-0e72a3-24x24{width:24px;height:24px;background-position:-674px -3506px}.work-docs-icon-upload-to-cloud-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -3506px}.work-docs-icon-upload-to-cloud-212f3e-24x24{width:24px;height:24px;background-position:-422px -3506px}.work-docs-icon-upload-to-cloud-808184-24x24{width:24px;height:24px;background-position:-296px -3506px}.work-docs-icon-upload-to-cloud-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -3506px}.work-docs-icon-upload-to-cloud-ffffff-24x24{width:24px;height:24px;background-position:-44px -3506px}.work-docs-icon-upload-to-cloud-0e72a3-16x16{width:16px;height:16px;background-position:-640px -3506px}.work-docs-icon-upload-to-cloud-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -3506px}.work-docs-icon-upload-to-cloud-212f3e-16x16{width:16px;height:16px;background-position:-388px -3506px}.work-docs-icon-upload-to-cloud-808184-16x16{width:16px;height:16px;background-position:-262px -3506px}.work-docs-icon-upload-to-cloud-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -3506px}.work-docs-icon-upload-to-cloud-ffffff-16x16{width:16px;height:16px;background-position:-10px -3506px}.work-docs-icon-download-from-cloud-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -3464px}.work-docs-icon-download-from-cloud-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -3464px}.work-docs-icon-download-from-cloud-212f3e-24x24{width:24px;height:24px;background-position:-422px -3464px}.work-docs-icon-download-from-cloud-0e72a3-24x24{width:24px;height:24px;background-position:-674px -3464px}.work-docs-icon-download-from-cloud-808184-24x24{width:24px;height:24px;background-position:-296px -3464px}.work-docs-icon-download-from-cloud-ffffff-24x24{width:24px;height:24px;background-position:-44px -3464px}.work-docs-icon-download-from-cloud-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -3464px}.work-docs-icon-download-from-cloud-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -3464px}.work-docs-icon-download-from-cloud-212f3e-16x16{width:16px;height:16px;background-position:-388px -3464px}.work-docs-icon-download-from-cloud-0e72a3-16x16{width:16px;height:16px;background-position:-640px -3464px}.work-docs-icon-download-from-cloud-808184-16x16{width:16px;height:16px;background-position:-262px -3464px}.work-docs-icon-download-from-cloud-ffffff-16x16{width:16px;height:16px;background-position:-10px -3464px}.work-docs-icon-move-0e72a3-24x24{width:24px;height:24px;background-position:-674px -3422px}.work-docs-icon-move-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -3422px}.work-docs-icon-move-212f3e-24x24{width:24px;height:24px;background-position:-422px -3422px}.work-docs-icon-move-808184-24x24{width:24px;height:24px;background-position:-296px -3422px}.work-docs-icon-move-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -3422px}.work-docs-icon-move-ffffff-24x24{width:24px;height:24px;background-position:-44px -3422px}.work-docs-icon-move-0e72a3-16x16{width:16px;height:16px;background-position:-640px -3422px}.work-docs-icon-move-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -3422px}.work-docs-icon-move-212f3e-16x16{width:16px;height:16px;background-position:-388px -3422px}.work-docs-icon-move-808184-16x16{width:16px;height:16px;background-position:-262px -3422px}.work-docs-icon-move-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -3422px}.work-docs-icon-move-ffffff-16x16{width:16px;height:16px;background-position:-10px -3422px}.work-docs-icon-edit-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -3380px}.work-docs-icon-edit-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -3380px}.work-docs-icon-edit-212f3e-24x24{width:24px;height:24px;background-position:-422px -3380px}.work-docs-icon-edit-0e72a3-24x24{width:24px;height:24px;background-position:-674px -3380px}.work-docs-icon-edit-808184-24x24{width:24px;height:24px;background-position:-296px -3380px}.work-docs-icon-edit-ffffff-24x24{width:24px;height:24px;background-position:-44px -3380px}.work-docs-icon-edit-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -3380px}.work-docs-icon-edit-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -3380px}.work-docs-icon-edit-212f3e-16x16{width:16px;height:16px;background-position:-388px -3380px}.work-docs-icon-edit-0e72a3-16x16{width:16px;height:16px;background-position:-640px -3380px}.work-docs-icon-edit-808184-16x16{width:16px;height:16px;background-position:-262px -3380px}.work-docs-icon-edit-ffffff-16x16{width:16px;height:16px;background-position:-10px -3380px}.work-docs-icon-link-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -3338px}.work-docs-icon-link-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -3338px}.work-docs-icon-link-212f3e-24x24{width:24px;height:24px;background-position:-422px -3338px}.work-docs-icon-link-0e72a3-24x24{width:24px;height:24px;background-position:-674px -3338px}.work-docs-icon-link-808184-24x24{width:24px;height:24px;background-position:-296px -3338px}.work-docs-icon-link-ffffff-24x24{width:24px;height:24px;background-position:-44px -3338px}.work-docs-icon-link-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -3338px}.work-docs-icon-link-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -3338px}.work-docs-icon-link-212f3e-16x16{width:16px;height:16px;background-position:-388px -3338px}.work-docs-icon-link-0e72a3-16x16{width:16px;height:16px;background-position:-640px -3338px}.work-docs-icon-link-808184-16x16{width:16px;height:16px;background-position:-262px -3338px}.work-docs-icon-link-ffffff-16x16{width:16px;height:16px;background-position:-10px -3338px}.work-docs-icon-share-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -3296px}.work-docs-icon-share-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -3296px}.work-docs-icon-share-212f3e-24x24{width:24px;height:24px;background-position:-422px -3296px}.work-docs-icon-share-0e72a3-24x24{width:24px;height:24px;background-position:-674px -3296px}.work-docs-icon-share-808184-24x24{width:24px;height:24px;background-position:-296px -3296px}.work-docs-icon-share-ffffff-24x24{width:24px;height:24px;background-position:-44px -3296px}.work-docs-icon-share-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -3296px}.work-docs-icon-share-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -3296px}.work-docs-icon-share-212f3e-16x16{width:16px;height:16px;background-position:-388px -3296px}.work-docs-icon-share-0e72a3-16x16{width:16px;height:16px;background-position:-640px -3296px}.work-docs-icon-share-808184-16x16{width:16px;height:16px;background-position:-262px -3296px}.work-docs-icon-share-ffffff-16x16{width:16px;height:16px;background-position:-10px -3296px}.work-docs-icon-doc-sm-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -3254px}.work-docs-icon-doc-sm-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -3254px}.work-docs-icon-doc-sm-212f3e-24x24{width:24px;height:24px;background-position:-422px -3254px}.work-docs-icon-doc-sm-0e72a3-24x24{width:24px;height:24px;background-position:-674px -3254px}.work-docs-icon-doc-sm-808184-24x24{width:24px;height:24px;background-position:-296px -3254px}.work-docs-icon-doc-sm-ffffff-24x24{width:24px;height:24px;background-position:-44px -3254px}.work-docs-icon-doc-sm-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -3254px}.work-docs-icon-doc-sm-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -3254px}.work-docs-icon-doc-sm-212f3e-16x16{width:16px;height:16px;background-position:-388px -3254px}.work-docs-icon-doc-sm-0e72a3-16x16{width:16px;height:16px;background-position:-640px -3254px}.work-docs-icon-doc-sm-808184-16x16{width:16px;height:16px;background-position:-262px -3254px}.work-docs-icon-doc-sm-ffffff-16x16{width:16px;height:16px;background-position:-10px -3254px}.work-docs-icon-folder-sm-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -3212px}.work-docs-icon-folder-sm-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -3212px}.work-docs-icon-folder-sm-212f3e-24x24{width:24px;height:24px;background-position:-422px -3212px}.work-docs-icon-folder-sm-0e72a3-24x24{width:24px;height:24px;background-position:-674px -3212px}.work-docs-icon-folder-sm-808184-24x24{width:24px;height:24px;background-position:-296px -3212px}.work-docs-icon-folder-sm-ffffff-24x24{width:24px;height:24px;background-position:-44px -3212px}.work-docs-icon-folder-sm-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -3212px}.work-docs-icon-folder-sm-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -3212px}.work-docs-icon-folder-sm-212f3e-16x16{width:16px;height:16px;background-position:-388px -3212px}.work-docs-icon-folder-sm-0e72a3-16x16{width:16px;height:16px;background-position:-640px -3212px}.work-docs-icon-folder-sm-808184-16x16{width:16px;height:16px;background-position:-262px -3212px}.work-docs-icon-folder-sm-ffffff-16x16{width:16px;height:16px;background-position:-10px -3212px}.work-docs-icon-locked-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -3170px}.work-docs-icon-locked-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -3170px}.work-docs-icon-locked-212f3e-24x24{width:24px;height:24px;background-position:-422px -3170px}.work-docs-icon-locked-ffa724-24x24{width:24px;height:24px;background-position:-800px -3170px}.work-docs-icon-locked-0e72a3-24x24{width:24px;height:24px;background-position:-674px -3170px}.work-docs-icon-locked-808184-24x24{width:24px;height:24px;background-position:-296px -3170px}.work-docs-icon-locked-ffffff-24x24{width:24px;height:24px;background-position:-44px -3170px}.work-docs-icon-locked-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -3170px}.work-docs-icon-locked-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -3170px}.work-docs-icon-locked-212f3e-16x16{width:16px;height:16px;background-position:-388px -3170px}.work-docs-icon-locked-ffa724-16x16{width:16px;height:16px;background-position:-766px -3170px}.work-docs-icon-locked-0e72a3-16x16{width:16px;height:16px;background-position:-640px -3170px}.work-docs-icon-locked-808184-16x16{width:16px;height:16px;background-position:-262px -3170px}.work-docs-icon-locked-ffffff-16x16{width:16px;height:16px;background-position:-10px -3170px}.work-docs-icon-unchecked-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -3128px}.work-docs-icon-unchecked-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -3128px}.work-docs-icon-unchecked-212f3e-24x24{width:24px;height:24px;background-position:-422px -3128px}.work-docs-icon-unchecked-0e72a3-24x24{width:24px;height:24px;background-position:-674px -3128px}.work-docs-icon-unchecked-808184-24x24{width:24px;height:24px;background-position:-296px -3128px}.work-docs-icon-unchecked-ffffff-24x24{width:24px;height:24px;background-position:-44px -3128px}.work-docs-icon-unchecked-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -3128px}.work-docs-icon-unchecked-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -3128px}.work-docs-icon-unchecked-212f3e-16x16{width:16px;height:16px;background-position:-388px -3128px}.work-docs-icon-unchecked-0e72a3-16x16{width:16px;height:16px;background-position:-640px -3128px}.work-docs-icon-unchecked-808184-16x16{width:16px;height:16px;background-position:-262px -3128px}.work-docs-icon-unchecked-ffffff-16x16{width:16px;height:16px;background-position:-10px -3128px}.work-docs-icon-checked-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -3086px}.work-docs-icon-checked-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -3086px}.work-docs-icon-checked-212f3e-24x24{width:24px;height:24px;background-position:-422px -3086px}.work-docs-icon-checked-0e72a3-24x24{width:24px;height:24px;background-position:-674px -3086px}.work-docs-icon-checked-808184-24x24{width:24px;height:24px;background-position:-296px -3086px}.work-docs-icon-checked-ffffff-24x24{width:24px;height:24px;background-position:-44px -3086px}.work-docs-icon-checked-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -3086px}.work-docs-icon-checked-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -3086px}.work-docs-icon-checked-212f3e-16x16{width:16px;height:16px;background-position:-388px -3086px}.work-docs-icon-checked-0e72a3-16x16{width:16px;height:16px;background-position:-640px -3086px}.work-docs-icon-checked-808184-16x16{width:16px;height:16px;background-position:-262px -3086px}.work-docs-icon-checked-ffffff-16x16{width:16px;height:16px;background-position:-10px -3086px}.work-docs-icon-checked-solid-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -3044px}.work-docs-icon-checked-solid-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -3044px}.work-docs-icon-checked-solid-212f3e-24x24{width:24px;height:24px;background-position:-422px -3044px}.work-docs-icon-checked-solid-0e72a3-24x24{width:24px;height:24px;background-position:-674px -3044px}.work-docs-icon-checked-solid-808184-24x24{width:24px;height:24px;background-position:-296px -3044px}.work-docs-icon-checked-solid-ffffff-24x24{width:24px;height:24px;background-position:-44px -3044px}.work-docs-icon-checked-solid-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -3044px}.work-docs-icon-checked-solid-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -3044px}.work-docs-icon-checked-solid-212f3e-16x16{width:16px;height:16px;background-position:-388px -3044px}.work-docs-icon-checked-solid-0e72a3-16x16{width:16px;height:16px;background-position:-640px -3044px}.work-docs-icon-checked-solid-808184-16x16{width:16px;height:16px;background-position:-262px -3044px}.work-docs-icon-checked-solid-ffffff-16x16{width:16px;height:16px;background-position:-10px -3044px}.work-docs-icon-trash-sm-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -3002px}.work-docs-icon-trash-sm-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -3002px}.work-docs-icon-trash-sm-212f3e-24x24{width:24px;height:24px;background-position:-422px -3002px}.work-docs-icon-trash-sm-0e72a3-24x24{width:24px;height:24px;background-position:-674px -3002px}.work-docs-icon-trash-sm-808184-24x24{width:24px;height:24px;background-position:-296px -3002px}.work-docs-icon-trash-sm-ffffff-24x24{width:24px;height:24px;background-position:-44px -3002px}.work-docs-icon-trash-sm-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -3002px}.work-docs-icon-trash-sm-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -3002px}.work-docs-icon-trash-sm-212f3e-16x16{width:16px;height:16px;background-position:-388px -3002px}.work-docs-icon-trash-sm-0e72a3-16x16{width:16px;height:16px;background-position:-640px -3002px}.work-docs-icon-trash-sm-808184-16x16{width:16px;height:16px;background-position:-262px -3002px}.work-docs-icon-trash-sm-ffffff-16x16{width:16px;height:16px;background-position:-10px -3002px}.work-docs-icon-add-versions-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -2960px}.work-docs-icon-add-versions-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -2960px}.work-docs-icon-add-versions-212f3e-24x24{width:24px;height:24px;background-position:-422px -2960px}.work-docs-icon-add-versions-0e72a3-24x24{width:24px;height:24px;background-position:-674px -2960px}.work-docs-icon-add-versions-808184-24x24{width:24px;height:24px;background-position:-296px -2960px}.work-docs-icon-add-versions-ffffff-24x24{width:24px;height:24px;background-position:-44px -2960px}.work-docs-icon-add-versions-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -2960px}.work-docs-icon-add-versions-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -2960px}.work-docs-icon-add-versions-212f3e-16x16{width:16px;height:16px;background-position:-388px -2960px}.work-docs-icon-add-versions-0e72a3-16x16{width:16px;height:16px;background-position:-640px -2960px}.work-docs-icon-add-versions-808184-16x16{width:16px;height:16px;background-position:-262px -2960px}.work-docs-icon-add-versions-ffffff-16x16{width:16px;height:16px;background-position:-10px -2960px}.work-docs-icon-versions-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -2918px}.work-docs-icon-versions-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -2918px}.work-docs-icon-versions-212f3e-24x24{width:24px;height:24px;background-position:-422px -2918px}.work-docs-icon-versions-0e72a3-24x24{width:24px;height:24px;background-position:-674px -2918px}.work-docs-icon-versions-808184-24x24{width:24px;height:24px;background-position:-296px -2918px}.work-docs-icon-versions-ffffff-24x24{width:24px;height:24px;background-position:-44px -2918px}.work-docs-icon-versions-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -2918px}.work-docs-icon-versions-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -2918px}.work-docs-icon-versions-212f3e-16x16{width:16px;height:16px;background-position:-388px -2918px}.work-docs-icon-versions-0e72a3-16x16{width:16px;height:16px;background-position:-640px -2918px}.work-docs-icon-versions-808184-16x16{width:16px;height:16px;background-position:-262px -2918px}.work-docs-icon-versions-ffffff-16x16{width:16px;height:16px;background-position:-10px -2918px}.work-docs-icon-doc-lg-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -2876px}.work-docs-icon-doc-lg-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -2876px}.work-docs-icon-doc-lg-212f3e-24x24{width:24px;height:24px;background-position:-422px -2876px}.work-docs-icon-doc-lg-0e72a3-24x24{width:24px;height:24px;background-position:-674px -2876px}.work-docs-icon-doc-lg-808184-24x24{width:24px;height:24px;background-position:-296px -2876px}.work-docs-icon-doc-lg-ffffff-24x24{width:24px;height:24px;background-position:-44px -2876px}.work-docs-icon-doc-lg-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -2876px}.work-docs-icon-doc-lg-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -2876px}.work-docs-icon-doc-lg-212f3e-16x16{width:16px;height:16px;background-position:-388px -2876px}.work-docs-icon-doc-lg-0e72a3-16x16{width:16px;height:16px;background-position:-640px -2876px}.work-docs-icon-doc-lg-808184-16x16{width:16px;height:16px;background-position:-262px -2876px}.work-docs-icon-doc-lg-ffffff-16x16{width:16px;height:16px;background-position:-10px -2876px}.work-docs-icon-folder-lg-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -2834px}.work-docs-icon-folder-lg-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -2834px}.work-docs-icon-folder-lg-212f3e-24x24{width:24px;height:24px;background-position:-422px -2834px}.work-docs-icon-folder-lg-0e72a3-24x24{width:24px;height:24px;background-position:-674px -2834px}.work-docs-icon-folder-lg-808184-24x24{width:24px;height:24px;background-position:-296px -2834px}.work-docs-icon-folder-lg-ffffff-24x24{width:24px;height:24px;background-position:-44px -2834px}.work-docs-icon-folder-lg-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -2834px}.work-docs-icon-folder-lg-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -2834px}.work-docs-icon-folder-lg-212f3e-16x16{width:16px;height:16px;background-position:-388px -2834px}.work-docs-icon-folder-lg-0e72a3-16x16{width:16px;height:16px;background-position:-640px -2834px}.work-docs-icon-folder-lg-808184-16x16{width:16px;height:16px;background-position:-262px -2834px}.work-docs-icon-folder-lg-ffffff-16x16{width:16px;height:16px;background-position:-10px -2834px}.work-docs-icon-hamburger-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -2792px}.work-docs-icon-hamburger-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -2792px}.work-docs-icon-hamburger-212f3e-24x24{width:24px;height:24px;background-position:-422px -2792px}.work-docs-icon-hamburger-0e72a3-24x24{width:24px;height:24px;background-position:-674px -2792px}.work-docs-icon-hamburger-808184-24x24{width:24px;height:24px;background-position:-296px -2792px}.work-docs-icon-hamburger-ffffff-24x24{width:24px;height:24px;background-position:-44px -2792px}.work-docs-icon-hamburger-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -2792px}.work-docs-icon-hamburger-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -2792px}.work-docs-icon-hamburger-212f3e-16x16{width:16px;height:16px;background-position:-388px -2792px}.work-docs-icon-hamburger-0e72a3-16x16{width:16px;height:16px;background-position:-640px -2792px}.work-docs-icon-hamburger-808184-16x16{width:16px;height:16px;background-position:-262px -2792px}.work-docs-icon-hamburger-ffffff-16x16{width:16px;height:16px;background-position:-10px -2792px}.work-docs-icon-back-d0d2d3-36x24{width:36px;height:24px;background-position:-170px -2750px}.work-docs-icon-back-8ea9c9-36x24{width:36px;height:24px;background-position:-548px -2750px}.work-docs-icon-back-212f3e-36x24{width:36px;height:24px;background-position:-422px -2750px}.work-docs-icon-back-0e72a3-36x24{width:36px;height:24px;background-position:-674px -2750px}.work-docs-icon-back-808184-36x24{width:36px;height:24px;background-position:-296px -2750px}.work-docs-icon-back-ffffff-36x24{width:36px;height:24px;background-position:-44px -2750px}.work-docs-icon-back-d0d2d3-24x16{width:24px;height:16px;background-position:-136px -2750px}.work-docs-icon-back-8ea9c9-24x16{width:24px;height:16px;background-position:-514px -2750px}.work-docs-icon-back-212f3e-24x16{width:24px;height:16px;background-position:-388px -2750px}.work-docs-icon-back-0e72a3-24x16{width:24px;height:16px;background-position:-640px -2750px}.work-docs-icon-back-808184-24x16{width:24px;height:16px;background-position:-262px -2750px}.work-docs-icon-back-ffffff-24x16{width:24px;height:16px;background-position:-10px -2750px}.work-docs-icon-tray-control-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -2708px}.work-docs-icon-tray-control-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -2708px}.work-docs-icon-tray-control-212f3e-24x24{width:24px;height:24px;background-position:-422px -2708px}.work-docs-icon-tray-control-0e72a3-24x24{width:24px;height:24px;background-position:-674px -2708px}.work-docs-icon-tray-control-808184-24x24{width:24px;height:24px;background-position:-296px -2708px}.work-docs-icon-tray-control-ffffff-24x24{width:24px;height:24px;background-position:-44px -2708px}.work-docs-icon-tray-control-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -2708px}.work-docs-icon-tray-control-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -2708px}.work-docs-icon-tray-control-212f3e-16x16{width:16px;height:16px;background-position:-388px -2708px}.work-docs-icon-tray-control-0e72a3-16x16{width:16px;height:16px;background-position:-640px -2708px}.work-docs-icon-tray-control-808184-16x16{width:16px;height:16px;background-position:-262px -2708px}.work-docs-icon-tray-control-ffffff-16x16{width:16px;height:16px;background-position:-10px -2708px}.work-docs-icon-bug-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -2666px}.work-docs-icon-bug-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -2666px}.work-docs-icon-bug-212f3e-24x24{width:24px;height:24px;background-position:-422px -2666px}.work-docs-icon-bug-0e72a3-24x24{width:24px;height:24px;background-position:-674px -2666px}.work-docs-icon-bug-808184-24x24{width:24px;height:24px;background-position:-296px -2666px}.work-docs-icon-bug-ffffff-24x24{width:24px;height:24px;background-position:-44px -2666px}.work-docs-icon-bug-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -2666px}.work-docs-icon-bug-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -2666px}.work-docs-icon-bug-212f3e-16x16{width:16px;height:16px;background-position:-388px -2666px}.work-docs-icon-bug-0e72a3-16x16{width:16px;height:16px;background-position:-640px -2666px}.work-docs-icon-bug-808184-16x16{width:16px;height:16px;background-position:-262px -2666px}.work-docs-icon-bug-ffffff-16x16{width:16px;height:16px;background-position:-10px -2666px}.work-docs-icon-list-view-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -2624px}.work-docs-icon-list-view-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -2624px}.work-docs-icon-list-view-212f3e-24x24{width:24px;height:24px;background-position:-422px -2624px}.work-docs-icon-list-view-0e72a3-24x24{width:24px;height:24px;background-position:-674px -2624px}.work-docs-icon-list-view-808184-24x24{width:24px;height:24px;background-position:-296px -2624px}.work-docs-icon-list-view-ffffff-24x24{width:24px;height:24px;background-position:-44px -2624px}.work-docs-icon-list-view-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -2624px}.work-docs-icon-list-view-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -2624px}.work-docs-icon-list-view-212f3e-16x16{width:16px;height:16px;background-position:-388px -2624px}.work-docs-icon-list-view-0e72a3-16x16{width:16px;height:16px;background-position:-640px -2624px}.work-docs-icon-list-view-808184-16x16{width:16px;height:16px;background-position:-262px -2624px}.work-docs-icon-list-view-ffffff-16x16{width:16px;height:16px;background-position:-10px -2624px}.work-docs-icon-icon-view-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -2582px}.work-docs-icon-icon-view-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -2582px}.work-docs-icon-icon-view-212f3e-24x24{width:24px;height:24px;background-position:-422px -2582px}.work-docs-icon-icon-view-0e72a3-24x24{width:24px;height:24px;background-position:-674px -2582px}.work-docs-icon-icon-view-808184-24x24{width:24px;height:24px;background-position:-296px -2582px}.work-docs-icon-icon-view-ffffff-24x24{width:24px;height:24px;background-position:-44px -2582px}.work-docs-icon-icon-view-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -2582px}.work-docs-icon-icon-view-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -2582px}.work-docs-icon-icon-view-212f3e-16x16{width:16px;height:16px;background-position:-388px -2582px}.work-docs-icon-icon-view-0e72a3-16x16{width:16px;height:16px;background-position:-640px -2582px}.work-docs-icon-icon-view-808184-16x16{width:16px;height:16px;background-position:-262px -2582px}.work-docs-icon-icon-view-ffffff-16x16{width:16px;height:16px;background-position:-10px -2582px}.work-docs-icon-remove-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -2540px}.work-docs-icon-remove-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -2540px}.work-docs-icon-remove-212f3e-24x24{width:24px;height:24px;background-position:-422px -2540px}.work-docs-icon-remove-0e72a3-24x24{width:24px;height:24px;background-position:-674px -2540px}.work-docs-icon-remove-808184-24x24{width:24px;height:24px;background-position:-296px -2540px}.work-docs-icon-remove-ffffff-24x24{width:24px;height:24px;background-position:-44px -2540px}.work-docs-icon-remove-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -2540px}.work-docs-icon-remove-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -2540px}.work-docs-icon-remove-212f3e-16x16{width:16px;height:16px;background-position:-388px -2540px}.work-docs-icon-remove-0e72a3-16x16{width:16px;height:16px;background-position:-640px -2540px}.work-docs-icon-remove-808184-16x16{width:16px;height:16px;background-position:-262px -2540px}.work-docs-icon-remove-ffffff-16x16{width:16px;height:16px;background-position:-10px -2540px}.work-docs-icon-add-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -2498px}.work-docs-icon-add-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -2498px}.work-docs-icon-add-212f3e-24x24{width:24px;height:24px;background-position:-422px -2498px}.work-docs-icon-add-0e72a3-24x24{width:24px;height:24px;background-position:-674px -2498px}.work-docs-icon-add-808184-24x24{width:24px;height:24px;background-position:-296px -2498px}.work-docs-icon-add-ffffff-24x24{width:24px;height:24px;background-position:-44px -2498px}.work-docs-icon-add-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -2498px}.work-docs-icon-add-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -2498px}.work-docs-icon-add-212f3e-16x16{width:16px;height:16px;background-position:-388px -2498px}.work-docs-icon-add-0e72a3-16x16{width:16px;height:16px;background-position:-640px -2498px}.work-docs-icon-add-808184-16x16{width:16px;height:16px;background-position:-262px -2498px}.work-docs-icon-add-ffffff-16x16{width:16px;height:16px;background-position:-10px -2498px}.work-docs-icon-add-folder-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -2456px}.work-docs-icon-add-folder-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -2456px}.work-docs-icon-add-folder-212f3e-24x24{width:24px;height:24px;background-position:-422px -2456px}.work-docs-icon-add-folder-0e72a3-24x24{width:24px;height:24px;background-position:-674px -2456px}.work-docs-icon-add-folder-808184-24x24{width:24px;height:24px;background-position:-296px -2456px}.work-docs-icon-add-folder-ffffff-24x24{width:24px;height:24px;background-position:-44px -2456px}.work-docs-icon-add-folder-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -2456px}.work-docs-icon-add-folder-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -2456px}.work-docs-icon-add-folder-212f3e-16x16{width:16px;height:16px;background-position:-388px -2456px}.work-docs-icon-add-folder-0e72a3-16x16{width:16px;height:16px;background-position:-640px -2456px}.work-docs-icon-add-folder-808184-16x16{width:16px;height:16px;background-position:-262px -2456px}.work-docs-icon-add-folder-ffffff-16x16{width:16px;height:16px;background-position:-10px -2456px}.work-docs-icon-comments-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -2414px}.work-docs-icon-comments-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -2414px}.work-docs-icon-comments-212f3e-24x24{width:24px;height:24px;background-position:-422px -2414px}.work-docs-icon-comments-0e72a3-24x24{width:24px;height:24px;background-position:-674px -2414px}.work-docs-icon-comments-808184-24x24{width:24px;height:24px;background-position:-296px -2414px}.work-docs-icon-comments-ffffff-24x24{width:24px;height:24px;background-position:-44px -2414px}.work-docs-icon-comments-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -2414px}.work-docs-icon-comments-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -2414px}.work-docs-icon-comments-212f3e-16x16{width:16px;height:16px;background-position:-388px -2414px}.work-docs-icon-comments-0e72a3-16x16{width:16px;height:16px;background-position:-640px -2414px}.work-docs-icon-comments-808184-16x16{width:16px;height:16px;background-position:-262px -2414px}.work-docs-icon-comments-ffffff-16x16{width:16px;height:16px;background-position:-10px -2414px}.work-docs-icon-search-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -2372px}.work-docs-icon-search-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -2372px}.work-docs-icon-search-212f3e-24x24{width:24px;height:24px;background-position:-422px -2372px}.work-docs-icon-search-0e72a3-24x24{width:24px;height:24px;background-position:-674px -2372px}.work-docs-icon-search-808184-24x24{width:24px;height:24px;background-position:-296px -2372px}.work-docs-icon-search-ffffff-24x24{width:24px;height:24px;background-position:-44px -2372px}.work-docs-icon-search-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -2372px}.work-docs-icon-search-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -2372px}.work-docs-icon-search-212f3e-16x16{width:16px;height:16px;background-position:-388px -2372px}.work-docs-icon-search-0e72a3-16x16{width:16px;height:16px;background-position:-640px -2372px}.work-docs-icon-search-808184-16x16{width:16px;height:16px;background-position:-262px -2372px}.work-docs-icon-search-ffffff-16x16{width:16px;height:16px;background-position:-10px -2372px}.work-docs-icon-device-offline-documents-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -2330px}.work-docs-icon-device-offline-documents-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -2330px}.work-docs-icon-device-offline-documents-212f3e-24x24{width:24px;height:24px;background-position:-422px -2330px}.work-docs-icon-device-offline-documents-0e72a3-24x24{width:24px;height:24px;background-position:-674px -2330px}.work-docs-icon-device-offline-documents-808184-24x24{width:24px;height:24px;background-position:-296px -2330px}.work-docs-icon-device-offline-documents-ffffff-24x24{width:24px;height:24px;background-position:-44px -2330px}.work-docs-icon-device-offline-documents-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -2330px}.work-docs-icon-device-offline-documents-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -2330px}.work-docs-icon-device-offline-documents-212f3e-16x16{width:16px;height:16px;background-position:-388px -2330px}.work-docs-icon-device-offline-documents-0e72a3-16x16{width:16px;height:16px;background-position:-640px -2330px}.work-docs-icon-device-offline-documents-808184-16x16{width:16px;height:16px;background-position:-262px -2330px}.work-docs-icon-device-offline-documents-ffffff-16x16{width:16px;height:16px;background-position:-10px -2330px}.work-docs-icon-filled-offline-documents-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -2288px}.work-docs-icon-filled-offline-documents-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -2288px}.work-docs-icon-filled-offline-documents-212f3e-24x24{width:24px;height:24px;background-position:-422px -2288px}.work-docs-icon-filled-offline-documents-0e72a3-24x24{width:24px;height:24px;background-position:-674px -2288px}.work-docs-icon-filled-offline-documents-808184-24x24{width:24px;height:24px;background-position:-296px -2288px}.work-docs-icon-filled-offline-documents-ffffff-24x24{width:24px;height:24px;background-position:-44px -2288px}.work-docs-icon-filled-offline-documents-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -2288px}.work-docs-icon-filled-offline-documents-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -2288px}.work-docs-icon-filled-offline-documents-212f3e-16x16{width:16px;height:16px;background-position:-388px -2288px}.work-docs-icon-filled-offline-documents-0e72a3-16x16{width:16px;height:16px;background-position:-640px -2288px}.work-docs-icon-filled-offline-documents-808184-16x16{width:16px;height:16px;background-position:-262px -2288px}.work-docs-icon-filled-offline-documents-ffffff-16x16{width:16px;height:16px;background-position:-10px -2288px}.work-docs-icon-offline-documents-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -2246px}.work-docs-icon-offline-documents-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -2246px}.work-docs-icon-offline-documents-212f3e-24x24{width:24px;height:24px;background-position:-422px -2246px}.work-docs-icon-offline-documents-0e72a3-24x24{width:24px;height:24px;background-position:-674px -2246px}.work-docs-icon-offline-documents-808184-24x24{width:24px;height:24px;background-position:-296px -2246px}.work-docs-icon-offline-documents-ffffff-24x24{width:24px;height:24px;background-position:-44px -2246px}.work-docs-icon-offline-documents-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -2246px}.work-docs-icon-offline-documents-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -2246px}.work-docs-icon-offline-documents-212f3e-16x16{width:16px;height:16px;background-position:-388px -2246px}.work-docs-icon-offline-documents-0e72a3-16x16{width:16px;height:16px;background-position:-640px -2246px}.work-docs-icon-offline-documents-808184-16x16{width:16px;height:16px;background-position:-262px -2246px}.work-docs-icon-offline-documents-ffffff-16x16{width:16px;height:16px;background-position:-10px -2246px}.work-docs-icon-settings-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -2204px}.work-docs-icon-settings-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -2204px}.work-docs-icon-settings-212f3e-24x24{width:24px;height:24px;background-position:-422px -2204px}.work-docs-icon-settings-0e72a3-24x24{width:24px;height:24px;background-position:-674px -2204px}.work-docs-icon-settings-808184-24x24{width:24px;height:24px;background-position:-296px -2204px}.work-docs-icon-settings-ffffff-24x24{width:24px;height:24px;background-position:-44px -2204px}.work-docs-icon-settings-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -2204px}.work-docs-icon-settings-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -2204px}.work-docs-icon-settings-212f3e-16x16{width:16px;height:16px;background-position:-388px -2204px}.work-docs-icon-settings-0e72a3-16x16{width:16px;height:16px;background-position:-640px -2204px}.work-docs-icon-settings-808184-16x16{width:16px;height:16px;background-position:-262px -2204px}.work-docs-icon-settings-ffffff-16x16{width:16px;height:16px;background-position:-10px -2204px}.work-docs-icon-log-out-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -2162px}.work-docs-icon-log-out-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -2162px}.work-docs-icon-log-out-212f3e-24x24{width:24px;height:24px;background-position:-422px -2162px}.work-docs-icon-log-out-0e72a3-24x24{width:24px;height:24px;background-position:-674px -2162px}.work-docs-icon-log-out-808184-24x24{width:24px;height:24px;background-position:-296px -2162px}.work-docs-icon-log-out-ffffff-24x24{width:24px;height:24px;background-position:-44px -2162px}.work-docs-icon-log-out-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -2162px}.work-docs-icon-log-out-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -2162px}.work-docs-icon-log-out-212f3e-16x16{width:16px;height:16px;background-position:-388px -2162px}.work-docs-icon-log-out-0e72a3-16x16{width:16px;height:16px;background-position:-640px -2162px}.work-docs-icon-log-out-808184-16x16{width:16px;height:16px;background-position:-262px -2162px}.work-docs-icon-log-out-ffffff-16x16{width:16px;height:16px;background-position:-10px -2162px}.work-docs-icon-download-apps-0e72a3-24x24{width:24px;height:24px;background-position:-674px -2120px}.work-docs-icon-download-apps-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -2120px}.work-docs-icon-download-apps-212f3e-24x24{width:24px;height:24px;background-position:-422px -2120px}.work-docs-icon-download-apps-808184-24x24{width:24px;height:24px;background-position:-296px -2120px}.work-docs-icon-download-apps-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -2120px}.work-docs-icon-download-apps-ffffff-24x24{width:24px;height:24px;background-position:-44px -2120px}.work-docs-icon-download-apps-0e72a3-16x16{width:16px;height:16px;background-position:-640px -2120px}.work-docs-icon-download-apps-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -2120px}.work-docs-icon-download-apps-212f3e-16x16{width:16px;height:16px;background-position:-388px -2120px}.work-docs-icon-download-apps-808184-16x16{width:16px;height:16px;background-position:-262px -2120px}.work-docs-icon-download-apps-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -2120px}.work-docs-icon-download-apps-ffffff-16x16{width:16px;height:16px;background-position:-10px -2120px}.work-docs-icon-profile-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -2078px}.work-docs-icon-profile-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -2078px}.work-docs-icon-profile-212f3e-24x24{width:24px;height:24px;background-position:-422px -2078px}.work-docs-icon-profile-0e72a3-24x24{width:24px;height:24px;background-position:-674px -2078px}.work-docs-icon-profile-808184-24x24{width:24px;height:24px;background-position:-296px -2078px}.work-docs-icon-profile-ffffff-24x24{width:24px;height:24px;background-position:-44px -2078px}.work-docs-icon-profile-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -2078px}.work-docs-icon-profile-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -2078px}.work-docs-icon-profile-212f3e-16x16{width:16px;height:16px;background-position:-388px -2078px}.work-docs-icon-profile-0e72a3-16x16{width:16px;height:16px;background-position:-640px -2078px}.work-docs-icon-profile-808184-16x16{width:16px;height:16px;background-position:-262px -2078px}.work-docs-icon-profile-ffffff-16x16{width:16px;height:16px;background-position:-10px -2078px}.work-docs-icon-trash-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -2036px}.work-docs-icon-trash-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -2036px}.work-docs-icon-trash-212f3e-24x24{width:24px;height:24px;background-position:-422px -2036px}.work-docs-icon-trash-0e72a3-24x24{width:24px;height:24px;background-position:-674px -2036px}.work-docs-icon-trash-808184-24x24{width:24px;height:24px;background-position:-296px -2036px}.work-docs-icon-trash-ffffff-24x24{width:24px;height:24px;background-position:-44px -2036px}.work-docs-icon-trash-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -2036px}.work-docs-icon-trash-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -2036px}.work-docs-icon-trash-212f3e-16x16{width:16px;height:16px;background-position:-388px -2036px}.work-docs-icon-trash-0e72a3-16x16{width:16px;height:16px;background-position:-640px -2036px}.work-docs-icon-trash-808184-16x16{width:16px;height:16px;background-position:-262px -2036px}.work-docs-icon-trash-ffffff-16x16{width:16px;height:16px;background-position:-10px -2036px}.work-docs-icon-out-for-review-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -1994px}.work-docs-icon-out-for-review-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -1994px}.work-docs-icon-out-for-review-212f3e-24x24{width:24px;height:24px;background-position:-422px -1994px}.work-docs-icon-out-for-review-0e72a3-24x24{width:24px;height:24px;background-position:-674px -1994px}.work-docs-icon-out-for-review-808184-24x24{width:24px;height:24px;background-position:-296px -1994px}.work-docs-icon-out-for-review-ffffff-24x24{width:24px;height:24px;background-position:-44px -1994px}.work-docs-icon-out-for-review-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -1994px}.work-docs-icon-out-for-review-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -1994px}.work-docs-icon-out-for-review-212f3e-16x16{width:16px;height:16px;background-position:-388px -1994px}.work-docs-icon-out-for-review-0e72a3-16x16{width:16px;height:16px;background-position:-640px -1994px}.work-docs-icon-out-for-review-808184-16x16{width:16px;height:16px;background-position:-262px -1994px}.work-docs-icon-out-for-review-ffffff-16x16{width:16px;height:16px;background-position:-10px -1994px}.work-docs-icon-awaiting-feedback-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -1952px}.work-docs-icon-awaiting-feedback-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -1952px}.work-docs-icon-awaiting-feedback-212f3e-24x24{width:24px;height:24px;background-position:-422px -1952px}.work-docs-icon-awaiting-feedback-0e72a3-24x24{width:24px;height:24px;background-position:-674px -1952px}.work-docs-icon-awaiting-feedback-808184-24x24{width:24px;height:24px;background-position:-296px -1952px}.work-docs-icon-awaiting-feedback-ffffff-24x24{width:24px;height:24px;background-position:-44px -1952px}.work-docs-icon-awaiting-feedback-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -1952px}.work-docs-icon-awaiting-feedback-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -1952px}.work-docs-icon-awaiting-feedback-212f3e-16x16{width:16px;height:16px;background-position:-388px -1952px}.work-docs-icon-awaiting-feedback-0e72a3-16x16{width:16px;height:16px;background-position:-640px -1952px}.work-docs-icon-awaiting-feedback-808184-16x16{width:16px;height:16px;background-position:-262px -1952px}.work-docs-icon-awaiting-feedback-ffffff-16x16{width:16px;height:16px;background-position:-10px -1952px}.work-docs-icon-shared-with-me-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -1910px}.work-docs-icon-shared-with-me-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -1910px}.work-docs-icon-shared-with-me-212f3e-24x24{width:24px;height:24px;background-position:-422px -1910px}.work-docs-icon-shared-with-me-0e72a3-24x24{width:24px;height:24px;background-position:-674px -1910px}.work-docs-icon-shared-with-me-808184-24x24{width:24px;height:24px;background-position:-296px -1910px}.work-docs-icon-shared-with-me-ffffff-24x24{width:24px;height:24px;background-position:-44px -1910px}.work-docs-icon-shared-with-me-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -1910px}.work-docs-icon-shared-with-me-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -1910px}.work-docs-icon-shared-with-me-212f3e-16x16{width:16px;height:16px;background-position:-388px -1910px}.work-docs-icon-shared-with-me-0e72a3-16x16{width:16px;height:16px;background-position:-640px -1910px}.work-docs-icon-shared-with-me-808184-16x16{width:16px;height:16px;background-position:-262px -1910px}.work-docs-icon-shared-with-me-ffffff-16x16{width:16px;height:16px;background-position:-10px -1910px}.work-docs-icon-my-documents-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -1868px}.work-docs-icon-my-documents-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -1868px}.work-docs-icon-my-documents-212f3e-24x24{width:24px;height:24px;background-position:-422px -1868px}.work-docs-icon-my-documents-0e72a3-24x24{width:24px;height:24px;background-position:-674px -1868px}.work-docs-icon-my-documents-808184-24x24{width:24px;height:24px;background-position:-296px -1868px}.work-docs-icon-my-documents-ffffff-24x24{width:24px;height:24px;background-position:-44px -1868px}.work-docs-icon-my-documents-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -1868px}.work-docs-icon-my-documents-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -1868px}.work-docs-icon-my-documents-212f3e-16x16{width:16px;height:16px;background-position:-388px -1868px}.work-docs-icon-my-documents-0e72a3-16x16{width:16px;height:16px;background-position:-640px -1868px}.work-docs-icon-my-documents-808184-16x16{width:16px;height:16px;background-position:-262px -1868px}.work-docs-icon-my-documents-ffffff-16x16{width:16px;height:16px;background-position:-10px -1868px}.work-docs-icon-comments-xl-bold-d0d2d3-64x64{width:64px;height:64px;background-position:-178px -1794px}.work-docs-icon-comments-xl-bold-8ea9c9-64x64{width:64px;height:64px;background-position:-556px -1794px}.work-docs-icon-comments-xl-bold-212f3e-64x64{width:64px;height:64px;background-position:-430px -1794px}.work-docs-icon-comments-xl-bold-0e72a3-64x64{width:64px;height:64px;background-position:-682px -1794px}.work-docs-icon-comments-xl-bold-808184-64x64{width:64px;height:64px;background-position:-304px -1794px}.work-docs-icon-comments-xl-bold-ffffff-64x64{width:64px;height:64px;background-position:-52px -1794px}.work-docs-icon-comments-xl-bold-d0d2d3-32x32{width:32px;height:32px;background-position:-136px -1794px}.work-docs-icon-comments-xl-bold-8ea9c9-32x32{width:32px;height:32px;background-position:-514px -1794px}.work-docs-icon-comments-xl-bold-212f3e-32x32{width:32px;height:32px;background-position:-388px -1794px}.work-docs-icon-comments-xl-bold-0e72a3-32x32{width:32px;height:32px;background-position:-640px -1794px}.work-docs-icon-comments-xl-bold-808184-32x32{width:32px;height:32px;background-position:-262px -1794px}.work-docs-icon-comments-xl-bold-ffffff-32x32{width:32px;height:32px;background-position:-10px -1794px}.work-docs-icon-comments-xl-d0d2d3-64x64{width:64px;height:64px;background-position:-178px -1720px}.work-docs-icon-comments-xl-8ea9c9-64x64{width:64px;height:64px;background-position:-556px -1720px}.work-docs-icon-comments-xl-212f3e-64x64{width:64px;height:64px;background-position:-430px -1720px}.work-docs-icon-comments-xl-0e72a3-64x64{width:64px;height:64px;background-position:-682px -1720px}.work-docs-icon-comments-xl-808184-64x64{width:64px;height:64px;background-position:-304px -1720px}.work-docs-icon-comments-xl-ffffff-64x64{width:64px;height:64px;background-position:-52px -1720px}.work-docs-icon-comments-xl-d0d2d3-32x32{width:32px;height:32px;background-position:-136px -1720px}.work-docs-icon-comments-xl-8ea9c9-32x32{width:32px;height:32px;background-position:-514px -1720px}.work-docs-icon-comments-xl-212f3e-32x32{width:32px;height:32px;background-position:-388px -1720px}.work-docs-icon-comments-xl-0e72a3-32x32{width:32px;height:32px;background-position:-640px -1720px}.work-docs-icon-comments-xl-808184-32x32{width:32px;height:32px;background-position:-262px -1720px}.work-docs-icon-comments-xl-ffffff-32x32{width:32px;height:32px;background-position:-10px -1720px}.work-docs-icon-search-xl-bold-d0d2d3-64x64{width:64px;height:64px;background-position:-178px -1646px}.work-docs-icon-search-xl-bold-8ea9c9-64x64{width:64px;height:64px;background-position:-556px -1646px}.work-docs-icon-search-xl-bold-212f3e-64x64{width:64px;height:64px;background-position:-430px -1646px}.work-docs-icon-search-xl-bold-0e72a3-64x64{width:64px;height:64px;background-position:-682px -1646px}.work-docs-icon-search-xl-bold-808184-64x64{width:64px;height:64px;background-position:-304px -1646px}.work-docs-icon-search-xl-bold-ffffff-64x64{width:64px;height:64px;background-position:-52px -1646px}.work-docs-icon-search-xl-bold-d0d2d3-32x32{width:32px;height:32px;background-position:-136px -1646px}.work-docs-icon-search-xl-bold-8ea9c9-32x32{width:32px;height:32px;background-position:-514px -1646px}.work-docs-icon-search-xl-bold-212f3e-32x32{width:32px;height:32px;background-position:-388px -1646px}.work-docs-icon-search-xl-bold-0e72a3-32x32{width:32px;height:32px;background-position:-640px -1646px}.work-docs-icon-search-xl-bold-808184-32x32{width:32px;height:32px;background-position:-262px -1646px}.work-docs-icon-search-xl-bold-ffffff-32x32{width:32px;height:32px;background-position:-10px -1646px}.work-docs-icon-search-xl-d0d2d3-64x64{width:64px;height:64px;background-position:-178px -1572px}.work-docs-icon-search-xl-8ea9c9-64x64{width:64px;height:64px;background-position:-556px -1572px}.work-docs-icon-search-xl-212f3e-64x64{width:64px;height:64px;background-position:-430px -1572px}.work-docs-icon-search-xl-0e72a3-64x64{width:64px;height:64px;background-position:-682px -1572px}.work-docs-icon-search-xl-808184-64x64{width:64px;height:64px;background-position:-304px -1572px}.work-docs-icon-search-xl-ffffff-64x64{width:64px;height:64px;background-position:-52px -1572px}.work-docs-icon-search-xl-d0d2d3-32x32{width:32px;height:32px;background-position:-136px -1572px}.work-docs-icon-search-xl-8ea9c9-32x32{width:32px;height:32px;background-position:-514px -1572px}.work-docs-icon-search-xl-212f3e-32x32{width:32px;height:32px;background-position:-388px -1572px}.work-docs-icon-search-xl-0e72a3-32x32{width:32px;height:32px;background-position:-640px -1572px}.work-docs-icon-search-xl-808184-32x32{width:32px;height:32px;background-position:-262px -1572px}.work-docs-icon-search-xl-ffffff-32x32{width:32px;height:32px;background-position:-10px -1572px}.work-docs-icon-offline-documents-xl-bold-d0d2d3-64x64{width:64px;height:64px;background-position:-178px -1498px}.work-docs-icon-offline-documents-xl-bold-8ea9c9-64x64{width:64px;height:64px;background-position:-556px -1498px}.work-docs-icon-offline-documents-xl-bold-212f3e-64x64{width:64px;height:64px;background-position:-430px -1498px}.work-docs-icon-offline-documents-xl-bold-0e72a3-64x64{width:64px;height:64px;background-position:-682px -1498px}.work-docs-icon-offline-documents-xl-bold-808184-64x64{width:64px;height:64px;background-position:-304px -1498px}.work-docs-icon-offline-documents-xl-bold-ffffff-64x64{width:64px;height:64px;background-position:-52px -1498px}.work-docs-icon-offline-documents-xl-bold-d0d2d3-32x32{width:32px;height:32px;background-position:-136px -1498px}.work-docs-icon-offline-documents-xl-bold-8ea9c9-32x32{width:32px;height:32px;background-position:-514px -1498px}.work-docs-icon-offline-documents-xl-bold-212f3e-32x32{width:32px;height:32px;background-position:-388px -1498px}.work-docs-icon-offline-documents-xl-bold-0e72a3-32x32{width:32px;height:32px;background-position:-640px -1498px}.work-docs-icon-offline-documents-xl-bold-808184-32x32{width:32px;height:32px;background-position:-262px -1498px}.work-docs-icon-offline-documents-xl-bold-ffffff-32x32{width:32px;height:32px;background-position:-10px -1498px}.work-docs-icon-offline-documents-xl-d0d2d3-64x64{width:64px;height:64px;background-position:-178px -1424px}.work-docs-icon-offline-documents-xl-8ea9c9-64x64{width:64px;height:64px;background-position:-556px -1424px}.work-docs-icon-offline-documents-xl-212f3e-64x64{width:64px;height:64px;background-position:-430px -1424px}.work-docs-icon-offline-documents-xl-0e72a3-64x64{width:64px;height:64px;background-position:-682px -1424px}.work-docs-icon-offline-documents-xl-808184-64x64{width:64px;height:64px;background-position:-304px -1424px}.work-docs-icon-offline-documents-xl-ffffff-64x64{width:64px;height:64px;background-position:-52px -1424px}.work-docs-icon-offline-documents-xl-d0d2d3-32x32{width:32px;height:32px;background-position:-136px -1424px}.work-docs-icon-offline-documents-xl-8ea9c9-32x32{width:32px;height:32px;background-position:-514px -1424px}.work-docs-icon-offline-documents-xl-212f3e-32x32{width:32px;height:32px;background-position:-388px -1424px}.work-docs-icon-offline-documents-xl-0e72a3-32x32{width:32px;height:32px;background-position:-640px -1424px}.work-docs-icon-offline-documents-xl-808184-32x32{width:32px;height:32px;background-position:-262px -1424px}.work-docs-icon-offline-documents-xl-ffffff-32x32{width:32px;height:32px;background-position:-10px -1424px}.work-docs-icon-settings-xl-bold-d0d2d3-64x64{width:64px;height:64px;background-position:-178px -1350px}.work-docs-icon-settings-xl-bold-8ea9c9-64x64{width:64px;height:64px;background-position:-556px -1350px}.work-docs-icon-settings-xl-bold-212f3e-64x64{width:64px;height:64px;background-position:-430px -1350px}.work-docs-icon-settings-xl-bold-0e72a3-64x64{width:64px;height:64px;background-position:-682px -1350px}.work-docs-icon-settings-xl-bold-808184-64x64{width:64px;height:64px;background-position:-304px -1350px}.work-docs-icon-settings-xl-bold-ffffff-64x64{width:64px;height:64px;background-position:-52px -1350px}.work-docs-icon-settings-xl-bold-d0d2d3-32x32{width:32px;height:32px;background-position:-136px -1350px}.work-docs-icon-settings-xl-bold-8ea9c9-32x32{width:32px;height:32px;background-position:-514px -1350px}.work-docs-icon-settings-xl-bold-212f3e-32x32{width:32px;height:32px;background-position:-388px -1350px}.work-docs-icon-settings-xl-bold-0e72a3-32x32{width:32px;height:32px;background-position:-640px -1350px}.work-docs-icon-settings-xl-bold-808184-32x32{width:32px;height:32px;background-position:-262px -1350px}.work-docs-icon-settings-xl-bold-ffffff-32x32{width:32px;height:32px;background-position:-10px -1350px}.work-docs-icon-settings-xl-d0d2d3-65x64{width:65px;height:64px;background-position:-177px -1276px}.work-docs-icon-settings-xl-8ea9c9-65x64{width:65px;height:64px;background-position:-555px -1276px}.work-docs-icon-settings-xl-212f3e-65x64{width:65px;height:64px;background-position:-429px -1276px}.work-docs-icon-settings-xl-0e72a3-65x64{width:65px;height:64px;background-position:-681px -1276px}.work-docs-icon-settings-xl-808184-65x64{width:65px;height:64px;background-position:-303px -1276px}.work-docs-icon-settings-xl-ffffff-65x64{width:65px;height:64px;background-position:-51px -1276px}.work-docs-icon-settings-xl-d0d2d3-32x32{width:32px;height:32px;background-position:-136px -1276px}.work-docs-icon-settings-xl-8ea9c9-32x32{width:32px;height:32px;background-position:-514px -1276px}.work-docs-icon-settings-xl-212f3e-32x32{width:32px;height:32px;background-position:-388px -1276px}.work-docs-icon-settings-xl-0e72a3-32x32{width:32px;height:32px;background-position:-640px -1276px}.work-docs-icon-settings-xl-808184-32x32{width:32px;height:32px;background-position:-262px -1276px}.work-docs-icon-settings-xl-ffffff-32x32{width:32px;height:32px;background-position:-10px -1276px}.work-docs-icon-log-out-xl-bold-d0d2d3-64x64{width:64px;height:64px;background-position:-178px -1202px}.work-docs-icon-log-out-xl-bold-8ea9c9-64x64{width:64px;height:64px;background-position:-556px -1202px}.work-docs-icon-log-out-xl-bold-212f3e-64x64{width:64px;height:64px;background-position:-430px -1202px}.work-docs-icon-log-out-xl-bold-0e72a3-64x64{width:64px;height:64px;background-position:-682px -1202px}.work-docs-icon-log-out-xl-bold-808184-64x64{width:64px;height:64px;background-position:-304px -1202px}.work-docs-icon-log-out-xl-bold-ffffff-64x64{width:64px;height:64px;background-position:-52px -1202px}.work-docs-icon-log-out-xl-bold-d0d2d3-32x32{width:32px;height:32px;background-position:-136px -1202px}.work-docs-icon-log-out-xl-bold-8ea9c9-32x32{width:32px;height:32px;background-position:-514px -1202px}.work-docs-icon-log-out-xl-bold-212f3e-32x32{width:32px;height:32px;background-position:-388px -1202px}.work-docs-icon-log-out-xl-bold-0e72a3-32x32{width:32px;height:32px;background-position:-640px -1202px}.work-docs-icon-log-out-xl-bold-808184-32x32{width:32px;height:32px;background-position:-262px -1202px}.work-docs-icon-log-out-xl-bold-ffffff-32x32{width:32px;height:32px;background-position:-10px -1202px}.work-docs-icon-log-out-xl-d0d2d3-64x64{width:64px;height:64px;background-position:-178px -1128px}.work-docs-icon-log-out-xl-8ea9c9-64x64{width:64px;height:64px;background-position:-556px -1128px}.work-docs-icon-log-out-xl-212f3e-64x64{width:64px;height:64px;background-position:-430px -1128px}.work-docs-icon-log-out-xl-0e72a3-64x64{width:64px;height:64px;background-position:-682px -1128px}.work-docs-icon-log-out-xl-808184-64x64{width:64px;height:64px;background-position:-304px -1128px}.work-docs-icon-log-out-xl-ffffff-64x64{width:64px;height:64px;background-position:-52px -1128px}.work-docs-icon-log-out-xl-d0d2d3-32x32{width:32px;height:32px;background-position:-136px -1128px}.work-docs-icon-log-out-xl-8ea9c9-32x32{width:32px;height:32px;background-position:-514px -1128px}.work-docs-icon-log-out-xl-212f3e-32x32{width:32px;height:32px;background-position:-388px -1128px}.work-docs-icon-log-out-xl-0e72a3-32x32{width:32px;height:32px;background-position:-640px -1128px}.work-docs-icon-log-out-xl-808184-32x32{width:32px;height:32px;background-position:-262px -1128px}.work-docs-icon-log-out-xl-ffffff-32x32{width:32px;height:32px;background-position:-10px -1128px}.work-docs-icon-download-apps-xl-bold-0e72a3-64x64{width:64px;height:64px;background-position:-682px -1054px}.work-docs-icon-download-apps-xl-bold-0e72a3-32x32{width:32px;height:32px;background-position:-640px -1054px}.work-docs-icon-download-apps-xl-bold-8ea9c9-64x64{width:64px;height:64px;background-position:-556px -1054px}.work-docs-icon-download-apps-xl-bold-8ea9c9-32x32{width:32px;height:32px;background-position:-514px -1054px}.work-docs-icon-download-apps-xl-bold-212f3e-64x64{width:64px;height:64px;background-position:-430px -1054px}.work-docs-icon-download-apps-xl-bold-212f3e-32x32{width:32px;height:32px;background-position:-388px -1054px}.work-docs-icon-download-apps-xl-bold-808184-64x64{width:64px;height:64px;background-position:-304px -1054px}.work-docs-icon-download-apps-xl-bold-808184-32x32{width:32px;height:32px;background-position:-262px -1054px}.work-docs-icon-download-apps-xl-bold-d0d2d3-64x64{width:64px;height:64px;background-position:-178px -1054px}.work-docs-icon-download-apps-xl-bold-ffffff-64x64{width:64px;height:64px;background-position:-52px -1054px}.work-docs-icon-download-apps-xl-bold-d0d2d3-32x32{width:32px;height:32px;background-position:-136px -1054px}.work-docs-icon-download-apps-xl-bold-ffffff-32x32{width:32px;height:32px;background-position:-10px -1054px}.work-docs-icon-download-apps-xl-0e72a3-64x64{width:64px;height:64px;background-position:-682px -980px}.work-docs-icon-download-apps-xl-0e72a3-32x32{width:32px;height:32px;background-position:-640px -980px}.work-docs-icon-download-apps-xl-8ea9c9-64x64{width:64px;height:64px;background-position:-556px -980px}.work-docs-icon-download-apps-xl-8ea9c9-32x32{width:32px;height:32px;background-position:-514px -980px}.work-docs-icon-download-apps-xl-212f3e-64x64{width:64px;height:64px;background-position:-430px -980px}.work-docs-icon-download-apps-xl-212f3e-32x32{width:32px;height:32px;background-position:-388px -980px}.work-docs-icon-download-apps-xl-808184-64x64{width:64px;height:64px;background-position:-304px -980px}.work-docs-icon-download-apps-xl-d0d2d3-64x64{width:64px;height:64px;background-position:-178px -980px}.work-docs-icon-download-apps-xl-ffffff-64x64{width:64px;height:64px;background-position:-52px -980px}.work-docs-icon-download-apps-xl-808184-32x32{width:32px;height:32px;background-position:-262px -980px}.work-docs-icon-download-apps-xl-d0d2d3-32x32{width:32px;height:32px;background-position:-136px -980px}.work-docs-icon-download-apps-xl-ffffff-32x32{width:32px;height:32px;background-position:-10px -980px}.work-docs-icon-profile-xl-bold-d0d2d3-64x64{width:64px;height:64px;background-position:-178px -906px}.work-docs-icon-profile-xl-bold-8ea9c9-64x64{width:64px;height:64px;background-position:-556px -906px}.work-docs-icon-profile-xl-bold-212f3e-64x64{width:64px;height:64px;background-position:-430px -906px}.work-docs-icon-profile-xl-bold-0e72a3-64x64{width:64px;height:64px;background-position:-682px -906px}.work-docs-icon-profile-xl-bold-808184-64x64{width:64px;height:64px;background-position:-304px -906px}.work-docs-icon-profile-xl-bold-ffffff-64x64{width:64px;height:64px;background-position:-52px -906px}.work-docs-icon-profile-xl-bold-d0d2d3-32x32{width:32px;height:32px;background-position:-136px -906px}.work-docs-icon-profile-xl-bold-8ea9c9-32x32{width:32px;height:32px;background-position:-514px -906px}.work-docs-icon-profile-xl-bold-212f3e-32x32{width:32px;height:32px;background-position:-388px -906px}.work-docs-icon-profile-xl-bold-0e72a3-32x32{width:32px;height:32px;background-position:-640px -906px}.work-docs-icon-profile-xl-bold-808184-32x32{width:32px;height:32px;background-position:-262px -906px}.work-docs-icon-profile-xl-bold-ffffff-32x32{width:32px;height:32px;background-position:-10px -906px}.work-docs-icon-profile-xl-d0d2d3-64x64{width:64px;height:64px;background-position:-178px -832px}.work-docs-icon-profile-xl-8ea9c9-64x64{width:64px;height:64px;background-position:-556px -832px}.work-docs-icon-profile-xl-212f3e-64x64{width:64px;height:64px;background-position:-430px -832px}.work-docs-icon-profile-xl-0e72a3-64x64{width:64px;height:64px;background-position:-682px -832px}.work-docs-icon-profile-xl-808184-64x64{width:64px;height:64px;background-position:-304px -832px}.work-docs-icon-profile-xl-ffffff-64x64{width:64px;height:64px;background-position:-52px -832px}.work-docs-icon-profile-xl-d0d2d3-32x32{width:32px;height:32px;background-position:-136px -832px}.work-docs-icon-profile-xl-8ea9c9-32x32{width:32px;height:32px;background-position:-514px -832px}.work-docs-icon-profile-xl-212f3e-32x32{width:32px;height:32px;background-position:-388px -832px}.work-docs-icon-profile-xl-0e72a3-32x32{width:32px;height:32px;background-position:-640px -832px}.work-docs-icon-profile-xl-808184-32x32{width:32px;height:32px;background-position:-262px -832px}.work-docs-icon-profile-xl-ffffff-32x32{width:32px;height:32px;background-position:-10px -832px}.work-docs-icon-trash-xl-bold-d0d2d3-64x64{width:64px;height:64px;background-position:-178px -758px}.work-docs-icon-trash-xl-bold-8ea9c9-64x64{width:64px;height:64px;background-position:-556px -758px}.work-docs-icon-trash-xl-bold-212f3e-64x64{width:64px;height:64px;background-position:-430px -758px}.work-docs-icon-trash-xl-bold-0e72a3-64x64{width:64px;height:64px;background-position:-682px -758px}.work-docs-icon-trash-xl-bold-808184-64x64{width:64px;height:64px;background-position:-304px -758px}.work-docs-icon-trash-xl-bold-ffffff-64x64{width:64px;height:64px;background-position:-52px -758px}.work-docs-icon-trash-xl-bold-d0d2d3-32x32{width:32px;height:32px;background-position:-136px -758px}.work-docs-icon-trash-xl-bold-8ea9c9-32x32{width:32px;height:32px;background-position:-514px -758px}.work-docs-icon-trash-xl-bold-212f3e-32x32{width:32px;height:32px;background-position:-388px -758px}.work-docs-icon-trash-xl-bold-0e72a3-32x32{width:32px;height:32px;background-position:-640px -758px}.work-docs-icon-trash-xl-bold-808184-32x32{width:32px;height:32px;background-position:-262px -758px}.work-docs-icon-trash-xl-bold-ffffff-32x32{width:32px;height:32px;background-position:-10px -758px}.work-docs-icon-trash-xl-d0d2d3-64x64{width:64px;height:64px;background-position:-178px -684px}.work-docs-icon-trash-xl-8ea9c9-64x64{width:64px;height:64px;background-position:-556px -684px}.work-docs-icon-trash-xl-212f3e-64x64{width:64px;height:64px;background-position:-430px -684px}.work-docs-icon-trash-xl-0e72a3-64x64{width:64px;height:64px;background-position:-682px -684px}.work-docs-icon-trash-xl-808184-64x64{width:64px;height:64px;background-position:-304px -684px}.work-docs-icon-trash-xl-ffffff-64x64{width:64px;height:64px;background-position:-52px -684px}.work-docs-icon-trash-xl-d0d2d3-32x32{width:32px;height:32px;background-position:-136px -684px}.work-docs-icon-trash-xl-8ea9c9-32x32{width:32px;height:32px;background-position:-514px -684px}.work-docs-icon-trash-xl-212f3e-32x32{width:32px;height:32px;background-position:-388px -684px}.work-docs-icon-trash-xl-0e72a3-32x32{width:32px;height:32px;background-position:-640px -684px}.work-docs-icon-trash-xl-808184-32x32{width:32px;height:32px;background-position:-262px -684px}.work-docs-icon-trash-xl-ffffff-32x32{width:32px;height:32px;background-position:-10px -684px}.work-docs-icon-out-for-review-xl-bold-d0d2d3-64x64{width:64px;height:64px;background-position:-178px -610px}.work-docs-icon-out-for-review-xl-bold-8ea9c9-64x64{width:64px;height:64px;background-position:-556px -610px}.work-docs-icon-out-for-review-xl-bold-212f3e-64x64{width:64px;height:64px;background-position:-430px -610px}.work-docs-icon-out-for-review-xl-bold-0e72a3-64x64{width:64px;height:64px;background-position:-682px -610px}.work-docs-icon-out-for-review-xl-bold-808184-64x64{width:64px;height:64px;background-position:-304px -610px}.work-docs-icon-out-for-review-xl-bold-ffffff-64x64{width:64px;height:64px;background-position:-52px -610px}.work-docs-icon-out-for-review-xl-bold-d0d2d3-32x32{width:32px;height:32px;background-position:-136px -610px}.work-docs-icon-out-for-review-xl-bold-8ea9c9-32x32{width:32px;height:32px;background-position:-514px -610px}.work-docs-icon-out-for-review-xl-bold-212f3e-32x32{width:32px;height:32px;background-position:-388px -610px}.work-docs-icon-out-for-review-xl-bold-0e72a3-32x32{width:32px;height:32px;background-position:-640px -610px}.work-docs-icon-out-for-review-xl-bold-808184-32x32{width:32px;height:32px;background-position:-262px -610px}.work-docs-icon-out-for-review-xl-bold-ffffff-32x32{width:32px;height:32px;background-position:-10px -610px}.work-docs-icon-out-for-review-xl-d0d2d3-64x64{width:64px;height:64px;background-position:-178px -536px}.work-docs-icon-out-for-review-xl-8ea9c9-64x64{width:64px;height:64px;background-position:-556px -536px}.work-docs-icon-out-for-review-xl-212f3e-64x64{width:64px;height:64px;background-position:-430px -536px}.work-docs-icon-out-for-review-xl-0e72a3-64x64{width:64px;height:64px;background-position:-682px -536px}.work-docs-icon-out-for-review-xl-808184-64x64{width:64px;height:64px;background-position:-304px -536px}.work-docs-icon-out-for-review-xl-ffffff-64x64{width:64px;height:64px;background-position:-52px -536px}.work-docs-icon-out-for-review-xl-d0d2d3-32x32{width:32px;height:32px;background-position:-136px -536px}.work-docs-icon-out-for-review-xl-8ea9c9-32x32{width:32px;height:32px;background-position:-514px -536px}.work-docs-icon-out-for-review-xl-212f3e-32x32{width:32px;height:32px;background-position:-388px -536px}.work-docs-icon-out-for-review-xl-0e72a3-32x32{width:32px;height:32px;background-position:-640px -536px}.work-docs-icon-out-for-review-xl-808184-32x32{width:32px;height:32px;background-position:-262px -536px}.work-docs-icon-out-for-review-xl-ffffff-32x32{width:32px;height:32px;background-position:-10px -536px}.work-docs-icon-awaiting-feedback-xl-bold-d0d2d3-64x64{width:64px;height:64px;background-position:-178px -462px}.work-docs-icon-awaiting-feedback-xl-bold-8ea9c9-64x64{width:64px;height:64px;background-position:-556px -462px}.work-docs-icon-awaiting-feedback-xl-bold-212f3e-64x64{width:64px;height:64px;background-position:-430px -462px}.work-docs-icon-awaiting-feedback-xl-bold-0e72a3-64x64{width:64px;height:64px;background-position:-682px -462px}.work-docs-icon-awaiting-feedback-xl-bold-808184-64x64{width:64px;height:64px;background-position:-304px -462px}.work-docs-icon-awaiting-feedback-xl-bold-ffffff-64x64{width:64px;height:64px;background-position:-52px -462px}.work-docs-icon-awaiting-feedback-xl-bold-d0d2d3-32x32{width:32px;height:32px;background-position:-136px -462px}.work-docs-icon-awaiting-feedback-xl-bold-8ea9c9-32x32{width:32px;height:32px;background-position:-514px -462px}.work-docs-icon-awaiting-feedback-xl-bold-212f3e-32x32{width:32px;height:32px;background-position:-388px -462px}.work-docs-icon-awaiting-feedback-xl-bold-0e72a3-32x32{width:32px;height:32px;background-position:-640px -462px}.work-docs-icon-awaiting-feedback-xl-bold-808184-32x32{width:32px;height:32px;background-position:-262px -462px}.work-docs-icon-awaiting-feedback-xl-bold-ffffff-32x32{width:32px;height:32px;background-position:-10px -462px}.work-docs-icon-awaiting-feedback-xl-d0d2d3-64x64{width:64px;height:64px;background-position:-178px -388px}.work-docs-icon-awaiting-feedback-xl-8ea9c9-64x64{width:64px;height:64px;background-position:-556px -388px}.work-docs-icon-awaiting-feedback-xl-212f3e-64x64{width:64px;height:64px;background-position:-430px -388px}.work-docs-icon-awaiting-feedback-xl-0e72a3-64x64{width:64px;height:64px;background-position:-682px -388px}.work-docs-icon-awaiting-feedback-xl-808184-64x64{width:64px;height:64px;background-position:-304px -388px}.work-docs-icon-awaiting-feedback-xl-ffffff-64x64{width:64px;height:64px;background-position:-52px -388px}.work-docs-icon-awaiting-feedback-xl-d0d2d3-32x32{width:32px;height:32px;background-position:-136px -388px}.work-docs-icon-awaiting-feedback-xl-8ea9c9-32x32{width:32px;height:32px;background-position:-514px -388px}.work-docs-icon-awaiting-feedback-xl-212f3e-32x32{width:32px;height:32px;background-position:-388px -388px}.work-docs-icon-awaiting-feedback-xl-0e72a3-32x32{width:32px;height:32px;background-position:-640px -388px}.work-docs-icon-awaiting-feedback-xl-808184-32x32{width:32px;height:32px;background-position:-262px -388px}.work-docs-icon-awaiting-feedback-xl-ffffff-32x32{width:32px;height:32px;background-position:-10px -388px}.work-docs-icon-shared-with-me-xl-bold-d0d2d3-64x64{width:64px;height:64px;background-position:-178px -314px}.work-docs-icon-shared-with-me-xl-bold-8ea9c9-64x64{width:64px;height:64px;background-position:-556px -314px}.work-docs-icon-shared-with-me-xl-bold-212f3e-64x64{width:64px;height:64px;background-position:-430px -314px}.work-docs-icon-shared-with-me-xl-bold-0e72a3-64x64{width:64px;height:64px;background-position:-682px -314px}.work-docs-icon-shared-with-me-xl-bold-808184-64x64{width:64px;height:64px;background-position:-304px -314px}.work-docs-icon-shared-with-me-xl-bold-ffffff-64x64{width:64px;height:64px;background-position:-52px -314px}.work-docs-icon-shared-with-me-xl-bold-d0d2d3-32x32{width:32px;height:32px;background-position:-136px -314px}.work-docs-icon-shared-with-me-xl-bold-8ea9c9-32x32{width:32px;height:32px;background-position:-514px -314px}.work-docs-icon-shared-with-me-xl-bold-212f3e-32x32{width:32px;height:32px;background-position:-388px -314px}.work-docs-icon-shared-with-me-xl-bold-0e72a3-32x32{width:32px;height:32px;background-position:-640px -314px}.work-docs-icon-shared-with-me-xl-bold-808184-32x32{width:32px;height:32px;background-position:-262px -314px}.work-docs-icon-shared-with-me-xl-bold-ffffff-32x32{width:32px;height:32px;background-position:-10px -314px}.work-docs-icon-shared-with-me-xl-d0d2d3-64x64{width:64px;height:64px;background-position:-178px -240px}.work-docs-icon-shared-with-me-xl-8ea9c9-64x64{width:64px;height:64px;background-position:-556px -240px}.work-docs-icon-shared-with-me-xl-212f3e-64x64{width:64px;height:64px;background-position:-430px -240px}.work-docs-icon-shared-with-me-xl-0e72a3-64x64{width:64px;height:64px;background-position:-682px -240px}.work-docs-icon-shared-with-me-xl-808184-64x64{width:64px;height:64px;background-position:-304px -240px}.work-docs-icon-shared-with-me-xl-ffffff-64x64{width:64px;height:64px;background-position:-52px -240px}.work-docs-icon-shared-with-me-xl-d0d2d3-32x32{width:32px;height:32px;background-position:-136px -240px}.work-docs-icon-shared-with-me-xl-8ea9c9-32x32{width:32px;height:32px;background-position:-514px -240px}.work-docs-icon-shared-with-me-xl-212f3e-32x32{width:32px;height:32px;background-position:-388px -240px}.work-docs-icon-shared-with-me-xl-0e72a3-32x32{width:32px;height:32px;background-position:-640px -240px}.work-docs-icon-shared-with-me-xl-808184-32x32{width:32px;height:32px;background-position:-262px -240px}.work-docs-icon-shared-with-me-xl-ffffff-32x32{width:32px;height:32px;background-position:-10px -240px}.work-docs-icon-my-documents-xl-bold-d0d2d3-64x64{width:64px;height:64px;background-position:-178px -166px}.work-docs-icon-my-documents-xl-bold-8ea9c9-64x64{width:64px;height:64px;background-position:-556px -166px}.work-docs-icon-my-documents-xl-bold-212f3e-64x64{width:64px;height:64px;background-position:-430px -166px}.work-docs-icon-my-documents-xl-bold-0e72a3-64x64{width:64px;height:64px;background-position:-682px -166px}.work-docs-icon-my-documents-xl-bold-808184-64x64{width:64px;height:64px;background-position:-304px -166px}.work-docs-icon-my-documents-xl-bold-ffffff-64x64{width:64px;height:64px;background-position:-52px -166px}.work-docs-icon-my-documents-xl-bold-d0d2d3-32x32{width:32px;height:32px;background-position:-136px -166px}.work-docs-icon-my-documents-xl-bold-8ea9c9-32x32{width:32px;height:32px;background-position:-514px -166px}.work-docs-icon-my-documents-xl-bold-212f3e-32x32{width:32px;height:32px;background-position:-388px -166px}.work-docs-icon-my-documents-xl-bold-0e72a3-32x32{width:32px;height:32px;background-position:-640px -166px}.work-docs-icon-my-documents-xl-bold-808184-32x32{width:32px;height:32px;background-position:-262px -166px}.work-docs-icon-my-documents-xl-bold-ffffff-32x32{width:32px;height:32px;background-position:-10px -166px}.work-docs-icon-my-documents-xl-d0d2d3-64x64{width:64px;height:64px;background-position:-178px -92px}.work-docs-icon-my-documents-xl-8ea9c9-64x64{width:64px;height:64px;background-position:-556px -92px}.work-docs-icon-my-documents-xl-212f3e-64x64{width:64px;height:64px;background-position:-430px -92px}.work-docs-icon-my-documents-xl-0e72a3-64x64{width:64px;height:64px;background-position:-682px -92px}.work-docs-icon-my-documents-xl-808184-64x64{width:64px;height:64px;background-position:-304px -92px}.work-docs-icon-my-documents-xl-ffffff-64x64{width:64px;height:64px;background-position:-52px -92px}.work-docs-icon-my-documents-xl-d0d2d3-32x32{width:32px;height:32px;background-position:-136px -92px}.work-docs-icon-my-documents-xl-8ea9c9-32x32{width:32px;height:32px;background-position:-514px -92px}.work-docs-icon-my-documents-xl-212f3e-32x32{width:32px;height:32px;background-position:-388px -92px}.work-docs-icon-my-documents-xl-0e72a3-32x32{width:32px;height:32px;background-position:-640px -92px}.work-docs-icon-my-documents-xl-808184-32x32{width:32px;height:32px;background-position:-262px -92px}.work-docs-icon-my-documents-xl-ffffff-32x32{width:32px;height:32px;background-position:-10px -92px}.work-docs-icon-no-preview-212f3e-72x72{width:72px;height:72px;background-position:-174px -10px}.work-docs-icon-remove-me-from-share-alternate-212f3e-72x72{width:72px;height:72px;background-position:-666px -10px}.work-docs-icon-locked-212f3e-72x72{width:72px;height:72px;background-position:-584px -10px}.work-docs-icon-open-folder-212f3e-72x72{width:72px;height:72px;background-position:-502px -10px}.work-docs-icon-session-expired-212f3e-72x72{width:72px;height:72px;background-position:-420px -10px}.work-docs-icon-progress-0e72a3-72x72{width:72px;height:72px;background-position:-338px -10px}.work-docs-icon-progress-212f3e-72x72{width:72px;height:72px;background-position:-256px -10px}.work-docs-icon-broken-link-212f3e-72x72{width:72px;height:72px;background-position:-92px -10px}.work-docs-icon-upload-to-cloud-212f3e-72x72{width:72px;height:72px;background-position:-10px -10px}.browser-ie .work-docs-icon-group-3-9x11,.browser-ie .work-docs-icon-pdf-0e72a3-16x17,.browser-ie .work-docs-icon-pdf-0e72a3-24x25,.browser-ie .work-docs-icon-pdf-8ea9c9-16x17,.browser-ie .work-docs-icon-pdf-8ea9c9-24x25,.browser-ie .work-docs-icon-pdf-d0d2d3-16x17,.browser-ie .work-docs-icon-pdf-d0d2d3-24x25,.browser-ie .work-docs-icon-pdf-ffffff-16x17,.browser-ie .work-docs-icon-pdf-ffffff-24x25,.browser-ie .work-docs-icon-pdf-212f3e-16x17,.browser-ie .work-docs-icon-pdf-212f3e-24x25,.browser-ie .work-docs-icon-pdf-787982-16x17,.browser-ie .work-docs-icon-text-0e72a3-24x24,.browser-ie .work-docs-icon-text-0e72a3-16x16,.browser-ie .work-docs-icon-text-ffffff-17x22,.browser-ie .work-docs-icon-text-ffffff-16x16,.browser-ie .work-docs-icon-text-d0d2d3-24x24,.browser-ie .work-docs-icon-text-d0d2d3-16x16,.browser-ie .work-docs-icon-text-787982-24x24,.browser-ie .work-docs-icon-text-787982-16x16,.browser-ie .work-docs-icon-text-212f3e-24x24,.browser-ie .work-docs-icon-text-212f3e-16x16,.browser-ie .work-docs-icon-text-8ea9c9-17x22,.browser-ie .work-docs-icon-text-8ea9c9-11x15,.browser-ie .work-docs-icon-star-empty-8ea9c9-24x24,.browser-ie .work-docs-icon-star-empty-8ea9c9-16x16,.browser-ie .work-docs-icon-star-empty-0e72a3-24x24,.browser-ie .work-docs-icon-star-empty-0e72a3-16x16,.browser-ie .work-docs-icon-star-empty-ffffff-24x24,.browser-ie .work-docs-icon-star-empty-ffffff-16x16,.browser-ie .work-docs-icon-star-empty-d0d2d3-24x24,.browser-ie .work-docs-icon-star-empty-d0d2d3-16x16,.browser-ie .work-docs-icon-star-empty-808184-24x24,.browser-ie .work-docs-icon-star-empty-808184-16x16,.browser-ie .work-docs-icon-star-empty-212f3e-24x24,.browser-ie .work-docs-icon-star-empty-212f3e-16x16,.browser-ie .work-docs-icon-star-8ea9c9-24x24,.browser-ie .work-docs-icon-star-8ea9c9-16x16,.browser-ie .work-docs-icon-star-0e72a3-24x24,.browser-ie .work-docs-icon-star-0e72a3-16x16,.browser-ie .work-docs-icon-star-ffffff-24x24,.browser-ie .work-docs-icon-star-ffffff-16x16,.browser-ie .work-docs-icon-star-d0d2d3-24x24,.browser-ie .work-docs-icon-star-d0d2d3-16x16,.browser-ie .work-docs-icon-star-808184-24x24,.browser-ie .work-docs-icon-star-808184-17x16,.browser-ie .work-docs-icon-star-212f3e-24x24,.browser-ie .work-docs-icon-star-212f3e-17x16,.browser-ie .work-docs-icon-private-8ea9c9-24x24,.browser-ie .work-docs-icon-private-8ea9c9-16x16,.browser-ie .work-docs-icon-private-0e72a3-24x24,.browser-ie .work-docs-icon-private-0e72a3-16x16,.browser-ie .work-docs-icon-private-ffffff-24x24,.browser-ie .work-docs-icon-private-ffffff-16x16,.browser-ie .work-docs-icon-private-d0d2d3-24x24,.browser-ie .work-docs-icon-private-d0d2d3-16x16,.browser-ie .work-docs-icon-private-808184-24x24,.browser-ie .work-docs-icon-private-808184-16x16,.browser-ie .work-docs-icon-private-212f3e-24x24,.browser-ie .work-docs-icon-private-212f3e-16x16,.browser-ie .work-docs-icon-request-check-in-0e72a3-24x24,.browser-ie .work-docs-icon-request-check-in-0e72a3-16x16,.browser-ie .work-docs-icon-request-check-in-8ea9c9-24x24,.browser-ie .work-docs-icon-request-check-in-8ea9c9-16x16,.browser-ie .work-docs-icon-request-check-in-212f3e-24x24,.browser-ie .work-docs-icon-request-check-in-212f3e-16x16,.browser-ie .work-docs-icon-request-check-in-808184-24x24,.browser-ie .work-docs-icon-request-check-in-808184-16x16,.browser-ie .work-docs-icon-request-check-in-d0d2d3-24x24,.browser-ie .work-docs-icon-request-check-in-d0d2d3-16x16,.browser-ie .work-docs-icon-request-check-in-ffffff-24x24,.browser-ie .work-docs-icon-request-check-in-ffffff-16x16,.browser-ie .work-docs-icon-discard-check-out-0e72a3-24x24,.browser-ie .work-docs-icon-discard-check-out-0e72a3-16x16,.browser-ie .work-docs-icon-discard-check-out-8ea9c9-24x24,.browser-ie .work-docs-icon-discard-check-out-8ea9c9-16x16,.browser-ie .work-docs-icon-discard-check-out-212f3e-24x24,.browser-ie .work-docs-icon-discard-check-out-212f3e-16x16,.browser-ie .work-docs-icon-discard-check-out-808184-24x24,.browser-ie .work-docs-icon-discard-check-out-808184-16x16,.browser-ie .work-docs-icon-discard-check-out-d0d2d3-24x24,.browser-ie .work-docs-icon-discard-check-out-d0d2d3-16x16,.browser-ie .work-docs-icon-discard-check-out-ffffff-24x24,.browser-ie .work-docs-icon-discard-check-out-ffffff-16x16,.browser-ie .work-docs-icon-check-in-0e72a3-24x24,.browser-ie .work-docs-icon-check-in-0e72a3-16x16,.browser-ie .work-docs-icon-check-in-8ea9c9-24x24,.browser-ie .work-docs-icon-check-in-8ea9c9-16x16,.browser-ie .work-docs-icon-check-in-212f3e-24x24,.browser-ie .work-docs-icon-check-in-212f3e-16x16,.browser-ie .work-docs-icon-check-in-808184-24x24,.browser-ie .work-docs-icon-check-in-808184-16x16,.browser-ie .work-docs-icon-check-in-d0d2d3-24x24,.browser-ie .work-docs-icon-check-in-d0d2d3-16x16,.browser-ie .work-docs-icon-check-in-ffffff-24x24,.browser-ie .work-docs-icon-check-in-ffffff-16x16,.browser-ie .work-docs-icon-check-out-0e72a3-24x24,.browser-ie .work-docs-icon-check-out-0e72a3-16x16,.browser-ie .work-docs-icon-check-out-8ea9c9-24x24,.browser-ie .work-docs-icon-check-out-8ea9c9-16x16,.browser-ie .work-docs-icon-check-out-212f3e-24x24,.browser-ie .work-docs-icon-check-out-212f3e-16x16,.browser-ie .work-docs-icon-check-out-808184-24x24,.browser-ie .work-docs-icon-check-out-808184-16x16,.browser-ie .work-docs-icon-check-out-d0d2d3-24x24,.browser-ie .work-docs-icon-check-out-d0d2d3-16x16,.browser-ie .work-docs-icon-check-out-ffffff-24x24,.browser-ie .work-docs-icon-check-out-ffffff-16x16,.browser-ie .work-docs-icon-help-0e72a3-24x24,.browser-ie .work-docs-icon-help-0e72a3-16x16,.browser-ie .work-docs-icon-help-8ea9c9-24x24,.browser-ie .work-docs-icon-help-8ea9c9-16x16,.browser-ie .work-docs-icon-help-212f3e-24x24,.browser-ie .work-docs-icon-help-212f3e-16x16,.browser-ie .work-docs-icon-help-808184-24x24,.browser-ie .work-docs-icon-help-808184-16x16,.browser-ie .work-docs-icon-help-d0d2d3-24x24,.browser-ie .work-docs-icon-help-d0d2d3-16x16,.browser-ie .work-docs-icon-help-ffffff-24x24,.browser-ie .work-docs-icon-help-ffffff-16x16,.browser-ie .work-docs-icon-help-solid-0e72a3-24x24,.browser-ie .work-docs-icon-help-solid-0e72a3-16x16,.browser-ie .work-docs-icon-help-solid-8ea9c9-24x24,.browser-ie .work-docs-icon-help-solid-8ea9c9-16x16,.browser-ie .work-docs-icon-help-solid-212f3e-24x24,.browser-ie .work-docs-icon-help-solid-212f3e-16x16,.browser-ie .work-docs-icon-help-solid-808184-24x24,.browser-ie .work-docs-icon-help-solid-808184-16x16,.browser-ie .work-docs-icon-help-solid-d0d2d3-24x24,.browser-ie .work-docs-icon-help-solid-d0d2d3-16x16,.browser-ie .work-docs-icon-help-solid-ffffff-24x24,.browser-ie .work-docs-icon-help-solid-ffffff-16x16,.browser-ie .work-docs-icon-mention-0e72a3-24x24,.browser-ie .work-docs-icon-mention-0e72a3-16x16,.browser-ie .work-docs-icon-mention-8ea9c9-24x24,.browser-ie .work-docs-icon-mention-8ea9c9-16x16,.browser-ie .work-docs-icon-mention-212f3e-24x24,.browser-ie .work-docs-icon-mention-212f3e-16x16,.browser-ie .work-docs-icon-mention-808184-24x24,.browser-ie .work-docs-icon-mention-808184-16x16,.browser-ie .work-docs-icon-mention-d0d2d3-24x24,.browser-ie .work-docs-icon-mention-d0d2d3-16x16,.browser-ie .work-docs-icon-mention-ffffff-24x24,.browser-ie .work-docs-icon-mention-ffffff-16x16,.browser-ie .work-docs-icon-decline-feedback-0e72a3-24x24,.browser-ie .work-docs-icon-decline-feedback-0e72a3-16x16,.browser-ie .work-docs-icon-decline-feedback-8ea9c9-24x24,.browser-ie .work-docs-icon-decline-feedback-8ea9c9-16x16,.browser-ie .work-docs-icon-decline-feedback-212f3e-24x24,.browser-ie .work-docs-icon-decline-feedback-212f3e-16x16,.browser-ie .work-docs-icon-decline-feedback-808184-24x24,.browser-ie .work-docs-icon-decline-feedback-808184-16x16,.browser-ie .work-docs-icon-decline-feedback-d0d2d3-24x24,.browser-ie .work-docs-icon-decline-feedback-ffffff-24x24,.browser-ie .work-docs-icon-decline-feedback-d0d2d3-16x16,.browser-ie .work-docs-icon-decline-feedback-ffffff-16x16,.browser-ie .work-docs-icon-disable-feedback-0e72a3-24x24,.browser-ie .work-docs-icon-disable-feedback-0e72a3-16x16,.browser-ie .work-docs-icon-disable-feedback-8ea9c9-24x24,.browser-ie .work-docs-icon-disable-feedback-8ea9c9-16x16,.browser-ie .work-docs-icon-disable-feedback-212f3e-24x24,.browser-ie .work-docs-icon-disable-feedback-212f3e-16x16,.browser-ie .work-docs-icon-disable-feedback-808184-24x24,.browser-ie .work-docs-icon-disable-feedback-808184-16x16,.browser-ie .work-docs-icon-disable-feedback-d0d2d3-24x24,.browser-ie .work-docs-icon-disable-feedback-ffffff-24x24,.browser-ie .work-docs-icon-disable-feedback-d0d2d3-16x16,.browser-ie .work-docs-icon-disable-feedback-ffffff-16x16,.browser-ie .work-docs-icon-enable-feedback-0e72a3-24x24,.browser-ie .work-docs-icon-enable-feedback-0e72a3-16x16,.browser-ie .work-docs-icon-enable-feedback-8ea9c9-24x24,.browser-ie .work-docs-icon-enable-feedback-8ea9c9-16x16,.browser-ie .work-docs-icon-enable-feedback-212f3e-24x24,.browser-ie .work-docs-icon-enable-feedback-212f3e-16x16,.browser-ie .work-docs-icon-enable-feedback-808184-24x24,.browser-ie .work-docs-icon-enable-feedback-808184-16x16,.browser-ie .work-docs-icon-enable-feedback-d0d2d3-24x24,.browser-ie .work-docs-icon-enable-feedback-ffffff-24x24,.browser-ie .work-docs-icon-enable-feedback-d0d2d3-16x16,.browser-ie .work-docs-icon-enable-feedback-ffffff-16x16,.browser-ie .work-docs-icon-disabled-feedback-alternate-0e72a3-24x24,.browser-ie .work-docs-icon-disabled-feedback-alternate-0e72a3-16x16,.browser-ie .work-docs-icon-disabled-feedback-alternate-8ea9c9-24x24,.browser-ie .work-docs-icon-disabled-feedback-alternate-8ea9c9-16x16,.browser-ie .work-docs-icon-disabled-feedback-alternate-212f3e-24x24,.browser-ie .work-docs-icon-disabled-feedback-alternate-212f3e-16x16,.browser-ie .work-docs-icon-disabled-feedback-alternate-808184-24x24,.browser-ie .work-docs-icon-disabled-feedback-alternate-808184-16x16,.browser-ie .work-docs-icon-disabled-feedback-alternate-d0d2d3-24x24,.browser-ie .work-docs-icon-disabled-feedback-alternate-ffffff-24x24,.browser-ie .work-docs-icon-disabled-feedback-alternate-d0d2d3-16x16,.browser-ie .work-docs-icon-disabled-feedback-alternate-ffffff-16x16,.browser-ie .work-docs-icon-disabled-feedback-0e72a3-24x24,.browser-ie .work-docs-icon-disabled-feedback-0e72a3-16x16,.browser-ie .work-docs-icon-disabled-feedback-8ea9c9-24x24,.browser-ie .work-docs-icon-disabled-feedback-8ea9c9-16x16,.browser-ie .work-docs-icon-disabled-feedback-212f3e-24x24,.browser-ie .work-docs-icon-disabled-feedback-212f3e-16x16,.browser-ie .work-docs-icon-disabled-feedback-808184-24x24,.browser-ie .work-docs-icon-disabled-feedback-808184-16x16,.browser-ie .work-docs-icon-disabled-feedback-d0d2d3-24x24,.browser-ie .work-docs-icon-disabled-feedback-ffffff-24x24,.browser-ie .work-docs-icon-disabled-feedback-d0d2d3-16x16,.browser-ie .work-docs-icon-disabled-feedback-ffffff-16x16,.browser-ie .work-docs-icon-private-feedback-indicator-ffa724-24x24,.browser-ie .work-docs-icon-private-feedback-indicator-ffa724-16x16,.browser-ie .work-docs-icon-private-feedback-indicator-0e72a3-24x24,.browser-ie .work-docs-icon-private-feedback-indicator-0e72a3-16x16,.browser-ie .work-docs-icon-private-feedback-indicator-8ea9c9-24x24,.browser-ie .work-docs-icon-private-feedback-indicator-8ea9c9-16x16,.browser-ie .work-docs-icon-private-feedback-indicator-212f3e-24x24,.browser-ie .work-docs-icon-private-feedback-indicator-212f3e-16x16,.browser-ie .work-docs-icon-private-feedback-indicator-808184-24x24,.browser-ie .work-docs-icon-private-feedback-indicator-808184-16x16,.browser-ie .work-docs-icon-private-feedback-indicator-d0d2d3-24x24,.browser-ie .work-docs-icon-private-feedback-indicator-ffffff-24x24,.browser-ie .work-docs-icon-private-feedback-indicator-d0d2d3-16x16,.browser-ie .work-docs-icon-private-feedback-indicator-ffffff-16x16,.browser-ie .work-docs-icon-unlocked-0e72a3-24x24,.browser-ie .work-docs-icon-unlocked-0e72a3-16x16,.browser-ie .work-docs-icon-unlocked-8ea9c9-24x24,.browser-ie .work-docs-icon-unlocked-8ea9c9-16x16,.browser-ie .work-docs-icon-unlocked-212f3e-24x24,.browser-ie .work-docs-icon-unlocked-212f3e-16x16,.browser-ie .work-docs-icon-unlocked-808184-24x24,.browser-ie .work-docs-icon-unlocked-808184-16x16,.browser-ie .work-docs-icon-unlocked-d0d2d3-24x24,.browser-ie .work-docs-icon-unlocked-d0d2d3-16x16,.browser-ie .work-docs-icon-unlocked-ffffff-24x24,.browser-ie .work-docs-icon-unlocked-ffffff-16x16,.browser-ie .work-docs-icon-video-alternate-0e72a3-24x24,.browser-ie .work-docs-icon-video-alternate-0e72a3-16x16,.browser-ie .work-docs-icon-video-alternate-8ea9c9-24x24,.browser-ie .work-docs-icon-video-alternate-8ea9c9-16x16,.browser-ie .work-docs-icon-video-alternate-212f3e-24x24,.browser-ie .work-docs-icon-video-alternate-212f3e-16x16,.browser-ie .work-docs-icon-video-alternate-808184-24x24,.browser-ie .work-docs-icon-video-alternate-808184-16x16,.browser-ie .work-docs-icon-video-alternate-d0d2d3-24x24,.browser-ie .work-docs-icon-video-alternate-ffffff-24x24,.browser-ie .work-docs-icon-video-alternate-d0d2d3-16x16,.browser-ie .work-docs-icon-video-alternate-ffffff-16x16,.browser-ie .work-docs-icon-video-0e72a3-24x24,.browser-ie .work-docs-icon-video-0e72a3-16x16,.browser-ie .work-docs-icon-video-8ea9c9-24x24,.browser-ie .work-docs-icon-video-8ea9c9-16x16,.browser-ie .work-docs-icon-video-212f3e-24x24,.browser-ie .work-docs-icon-video-212f3e-16x16,.browser-ie .work-docs-icon-video-808184-24x24,.browser-ie .work-docs-icon-video-808184-16x16,.browser-ie .work-docs-icon-video-d0d2d3-24x24,.browser-ie .work-docs-icon-video-ffffff-24x24,.browser-ie .work-docs-icon-video-d0d2d3-16x16,.browser-ie .work-docs-icon-video-ffffff-16x16,.browser-ie .work-docs-icon-filter-0e72a3-24x24,.browser-ie .work-docs-icon-filter-0e72a3-16x16,.browser-ie .work-docs-icon-filter-8ea9c9-24x24,.browser-ie .work-docs-icon-filter-8ea9c9-16x16,.browser-ie .work-docs-icon-filter-212f3e-24x24,.browser-ie .work-docs-icon-filter-212f3e-16x16,.browser-ie .work-docs-icon-filter-808184-24x24,.browser-ie .work-docs-icon-filter-808184-16x16,.browser-ie .work-docs-icon-filter-d0d2d3-24x24,.browser-ie .work-docs-icon-filter-ffffff-24x24,.browser-ie .work-docs-icon-filter-d0d2d3-16x16,.browser-ie .work-docs-icon-filter-ffffff-16x16,.browser-ie .work-docs-icon-add-document-0e72a3-24x24,.browser-ie .work-docs-icon-add-document-0e72a3-16x16,.browser-ie .work-docs-icon-add-document-8ea9c9-24x24,.browser-ie .work-docs-icon-add-document-8ea9c9-16x16,.browser-ie .work-docs-icon-add-document-212f3e-24x24,.browser-ie .work-docs-icon-add-document-212f3e-16x16,.browser-ie .work-docs-icon-add-document-808184-24x24,.browser-ie .work-docs-icon-add-document-808184-16x16,.browser-ie .work-docs-icon-add-document-d0d2d3-24x24,.browser-ie .work-docs-icon-add-document-ffffff-24x24,.browser-ie .work-docs-icon-add-document-d0d2d3-16x16,.browser-ie .work-docs-icon-add-document-ffffff-16x16,.browser-ie .work-docs-icon-download-with-comments-0e72a3-24x24,.browser-ie .work-docs-icon-download-with-comments-0e72a3-16x16,.browser-ie .work-docs-icon-download-with-comments-8ea9c9-24x24,.browser-ie .work-docs-icon-download-with-comments-8ea9c9-16x16,.browser-ie .work-docs-icon-download-with-comments-212f3e-24x24,.browser-ie .work-docs-icon-download-with-comments-212f3e-16x16,.browser-ie .work-docs-icon-download-with-comments-808184-24x24,.browser-ie .work-docs-icon-download-with-comments-808184-16x16,.browser-ie .work-docs-icon-download-with-comments-d0d2d3-24x24,.browser-ie .work-docs-icon-download-with-comments-ffffff-24x24,.browser-ie .work-docs-icon-download-with-comments-d0d2d3-16x16,.browser-ie .work-docs-icon-download-with-comments-ffffff-16x16,.browser-ie .work-docs-icon-remove-me-from-share-alternate-0e72a3-24x24,.browser-ie .work-docs-icon-remove-me-from-share-alternate-0e72a3-16x16,.browser-ie .work-docs-icon-remove-me-from-share-alternate-8ea9c9-24x24,.browser-ie .work-docs-icon-remove-me-from-share-alternate-8ea9c9-16x16,.browser-ie .work-docs-icon-remove-me-from-share-alternate-212f3e-24x24,.browser-ie .work-docs-icon-remove-me-from-share-alternate-212f3e-16x16,.browser-ie .work-docs-icon-remove-me-from-share-alternate-808184-24x24,.browser-ie .work-docs-icon-remove-me-from-share-alternate-808184-16x16,.browser-ie .work-docs-icon-remove-me-from-share-alternate-d0d2d3-24x24,.browser-ie .work-docs-icon-remove-me-from-share-alternate-ffffff-24x24,.browser-ie .work-docs-icon-remove-me-from-share-alternate-d0d2d3-16x16,.browser-ie .work-docs-icon-remove-me-from-share-alternate-ffffff-16x16,.browser-ie .work-docs-icon-remove-me-from-share-0e72a3-24x24,.browser-ie .work-docs-icon-remove-me-from-share-0e72a3-16x16,.browser-ie .work-docs-icon-remove-me-from-share-8ea9c9-24x24,.browser-ie .work-docs-icon-remove-me-from-share-8ea9c9-16x16,.browser-ie .work-docs-icon-remove-me-from-share-212f3e-24x24,.browser-ie .work-docs-icon-remove-me-from-share-212f3e-16x16,.browser-ie .work-docs-icon-remove-me-from-share-808184-24x24,.browser-ie .work-docs-icon-remove-me-from-share-808184-16x16,.browser-ie .work-docs-icon-remove-me-from-share-d0d2d3-24x24,.browser-ie .work-docs-icon-remove-me-from-share-ffffff-24x24,.browser-ie .work-docs-icon-remove-me-from-share-d0d2d3-16x16,.browser-ie .work-docs-icon-remove-me-from-share-ffffff-16x16,.browser-ie .work-docs-icon-transfer-owner-0e72a3-24x24,.browser-ie .work-docs-icon-transfer-owner-0e72a3-16x16,.browser-ie .work-docs-icon-transfer-owner-8ea9c9-24x24,.browser-ie .work-docs-icon-transfer-owner-8ea9c9-16x16,.browser-ie .work-docs-icon-transfer-owner-212f3e-24x24,.browser-ie .work-docs-icon-transfer-owner-212f3e-16x16,.browser-ie .work-docs-icon-transfer-owner-808184-24x24,.browser-ie .work-docs-icon-transfer-owner-808184-16x16,.browser-ie .work-docs-icon-transfer-owner-d0d2d3-24x24,.browser-ie .work-docs-icon-transfer-owner-ffffff-24x24,.browser-ie .work-docs-icon-transfer-owner-d0d2d3-16x16,.browser-ie .work-docs-icon-transfer-owner-ffffff-16x16,.browser-ie .work-docs-icon-sort-0e72a3-24x24,.browser-ie .work-docs-icon-sort-0e72a3-16x16,.browser-ie .work-docs-icon-sort-8ea9c9-24x24,.browser-ie .work-docs-icon-sort-8ea9c9-16x16,.browser-ie .work-docs-icon-sort-212f3e-24x24,.browser-ie .work-docs-icon-sort-212f3e-16x16,.browser-ie .work-docs-icon-sort-808184-24x24,.browser-ie .work-docs-icon-sort-808184-16x16,.browser-ie .work-docs-icon-sort-d0d2d3-24x24,.browser-ie .work-docs-icon-sort-ffffff-24x24,.browser-ie .work-docs-icon-sort-d0d2d3-16x16,.browser-ie .work-docs-icon-sort-ffffff-16x16,.browser-ie .work-docs-icon-download-mobile-0e72a3-24x24,.browser-ie .work-docs-icon-download-mobile-0e72a3-16x16,.browser-ie .work-docs-icon-download-mobile-8ea9c9-24x24,.browser-ie .work-docs-icon-download-mobile-8ea9c9-16x16,.browser-ie .work-docs-icon-download-mobile-212f3e-24x24,.browser-ie .work-docs-icon-download-mobile-212f3e-16x16,.browser-ie .work-docs-icon-download-mobile-808184-24x24,.browser-ie .work-docs-icon-download-mobile-808184-16x16,.browser-ie .work-docs-icon-download-mobile-d0d2d3-24x24,.browser-ie .work-docs-icon-download-mobile-ffffff-24x24,.browser-ie .work-docs-icon-download-mobile-d0d2d3-16x16,.browser-ie .work-docs-icon-download-mobile-ffffff-16x16,.browser-ie .work-docs-icon-download-sync-client-0e72a3-24x24,.browser-ie .work-docs-icon-download-sync-client-0e72a3-16x16,.browser-ie .work-docs-icon-download-sync-client-8ea9c9-24x24,.browser-ie .work-docs-icon-download-sync-client-8ea9c9-16x16,.browser-ie .work-docs-icon-download-sync-client-212f3e-24x24,.browser-ie .work-docs-icon-download-sync-client-212f3e-16x16,.browser-ie .work-docs-icon-download-sync-client-808184-24x24,.browser-ie .work-docs-icon-download-sync-client-808184-16x16,.browser-ie .work-docs-icon-download-sync-client-d0d2d3-24x24,.browser-ie .work-docs-icon-download-sync-client-ffffff-24x24,.browser-ie .work-docs-icon-download-sync-client-d0d2d3-16x16,.browser-ie .work-docs-icon-download-sync-client-ffffff-16x16,.browser-ie .work-docs-icon-admin-0e72a3-24x24,.browser-ie .work-docs-icon-admin-0e72a3-16x16,.browser-ie .work-docs-icon-admin-8ea9c9-24x24,.browser-ie .work-docs-icon-admin-8ea9c9-16x16,.browser-ie .work-docs-icon-admin-212f3e-24x24,.browser-ie .work-docs-icon-admin-212f3e-16x16,.browser-ie .work-docs-icon-admin-808184-24x24,.browser-ie .work-docs-icon-admin-808184-16x16,.browser-ie .work-docs-icon-admin-d0d2d3-24x24,.browser-ie .work-docs-icon-admin-ffffff-24x24,.browser-ie .work-docs-icon-admin-d0d2d3-16x16,.browser-ie .work-docs-icon-admin-ffffff-16x16,.browser-ie .work-docs-icon-check-inactive-0e72a3-24x24,.browser-ie .work-docs-icon-check-inactive-0e72a3-16x16,.browser-ie .work-docs-icon-check-inactive-8ea9c9-24x24,.browser-ie .work-docs-icon-check-inactive-8ea9c9-16x16,.browser-ie .work-docs-icon-check-inactive-212f3e-24x24,.browser-ie .work-docs-icon-check-inactive-212f3e-16x16,.browser-ie .work-docs-icon-check-inactive-808184-24x24,.browser-ie .work-docs-icon-check-inactive-808184-16x16,.browser-ie .work-docs-icon-check-inactive-d0d2d3-24x24,.browser-ie .work-docs-icon-check-inactive-d0d2d3-16x16,.browser-ie .work-docs-icon-check-inactive-ffffff-24x24,.browser-ie .work-docs-icon-check-inactive-ffffff-16x16,.browser-ie .work-docs-icon-radio-inactive-0e72a3-24x24,.browser-ie .work-docs-icon-radio-inactive-0e72a3-16x16,.browser-ie .work-docs-icon-radio-inactive-8ea9c9-24x24,.browser-ie .work-docs-icon-radio-inactive-8ea9c9-16x16,.browser-ie .work-docs-icon-radio-inactive-212f3e-24x24,.browser-ie .work-docs-icon-radio-inactive-212f3e-16x16,.browser-ie .work-docs-icon-radio-inactive-808184-24x24,.browser-ie .work-docs-icon-radio-inactive-808184-16x16,.browser-ie .work-docs-icon-radio-inactive-d0d2d3-24x24,.browser-ie .work-docs-icon-radio-inactive-d0d2d3-16x16,.browser-ie .work-docs-icon-radio-inactive-ffffff-24x24,.browser-ie .work-docs-icon-radio-inactive-ffffff-16x16,.browser-ie .work-docs-icon-remove-from-share-0e72a3-24x24,.browser-ie .work-docs-icon-remove-from-share-0e72a3-16x16,.browser-ie .work-docs-icon-edit-file-0e72a3-24x24,.browser-ie .work-docs-icon-edit-file-0e72a3-16x16,.browser-ie .work-docs-icon-edit-file-8ea9c9-24x24,.browser-ie .work-docs-icon-edit-file-8ea9c9-16x16,.browser-ie .work-docs-icon-edit-file-212f3e-24x24,.browser-ie .work-docs-icon-edit-file-212f3e-16x16,.browser-ie .work-docs-icon-edit-file-808184-24x24,.browser-ie .work-docs-icon-edit-file-808184-16x16,.browser-ie .work-docs-icon-edit-file-d0d2d3-24x24,.browser-ie .work-docs-icon-edit-file-d0d2d3-16x16,.browser-ie .work-docs-icon-edit-file-ffffff-24x24,.browser-ie .work-docs-icon-edit-file-ffffff-16x16,.browser-ie .work-docs-icon-broken-link-0e72a3-24x24,.browser-ie .work-docs-icon-broken-link-0e72a3-16x16,.browser-ie .work-docs-icon-remove-from-share-8ea9c9-24x24,.browser-ie .work-docs-icon-remove-from-share-8ea9c9-16x16,.browser-ie .work-docs-icon-broken-link-8ea9c9-24x24,.browser-ie .work-docs-icon-broken-link-8ea9c9-16x16,.browser-ie .work-docs-icon-remove-from-share-212f3e-24x24,.browser-ie .work-docs-icon-remove-from-share-212f3e-16x16,.browser-ie .work-docs-icon-broken-link-212f3e-24x24,.browser-ie .work-docs-icon-broken-link-212f3e-16x16,.browser-ie .work-docs-icon-remove-from-share-808184-24x24,.browser-ie .work-docs-icon-remove-from-share-808184-16x16,.browser-ie .work-docs-icon-broken-link-808184-24x24,.browser-ie .work-docs-icon-broken-link-808184-16x16,.browser-ie .work-docs-icon-remove-from-share-d0d2d3-24x24,.browser-ie .work-docs-icon-remove-from-share-d0d2d3-16x16,.browser-ie .work-docs-icon-remove-from-share-ffffff-24x24,.browser-ie .work-docs-icon-remove-from-share-ffffff-16x16,.browser-ie .work-docs-icon-broken-link-d0d2d3-24x24,.browser-ie .work-docs-icon-broken-link-d0d2d3-16x16,.browser-ie .work-docs-icon-broken-link-ffffff-24x24,.browser-ie .work-docs-icon-broken-link-ffffff-16x16,.browser-ie .work-docs-icon-no-preview-0e72a3-24x24,.browser-ie .work-docs-icon-no-preview-0e72a3-16x16,.browser-ie .work-docs-icon-session-expired-0e72a3-24x24,.browser-ie .work-docs-icon-session-expired-0e72a3-16x16,.browser-ie .work-docs-icon-no-preview-8ea9c9-24x24,.browser-ie .work-docs-icon-no-preview-8ea9c9-16x16,.browser-ie .work-docs-icon-session-expired-8ea9c9-24x24,.browser-ie .work-docs-icon-session-expired-8ea9c9-16x16,.browser-ie .work-docs-icon-no-preview-212f3e-24x24,.browser-ie .work-docs-icon-no-preview-212f3e-16x16,.browser-ie .work-docs-icon-session-expired-212f3e-24x24,.browser-ie .work-docs-icon-session-expired-212f3e-16x16,.browser-ie .work-docs-icon-no-preview-808184-24x24,.browser-ie .work-docs-icon-no-preview-808184-16x16,.browser-ie .work-docs-icon-session-expired-808184-24x24,.browser-ie .work-docs-icon-session-expired-808184-16x16,.browser-ie .work-docs-icon-no-preview-d0d2d3-24x24,.browser-ie .work-docs-icon-no-preview-d0d2d3-16x16,.browser-ie .work-docs-icon-no-preview-ffffff-24x24,.browser-ie .work-docs-icon-no-preview-ffffff-16x16,.browser-ie .work-docs-icon-session-expired-d0d2d3-24x24,.browser-ie .work-docs-icon-session-expired-d0d2d3-16x16,.browser-ie .work-docs-icon-session-expired-ffffff-24x24,.browser-ie .work-docs-icon-session-expired-ffffff-16x16,.browser-ie .work-docs-icon-leave-full-screen-0e72a3-24x24,.browser-ie .work-docs-icon-leave-full-screen-0e72a3-16x16,.browser-ie .work-docs-icon-leave-full-screen-8ea9c9-24x24,.browser-ie .work-docs-icon-leave-full-screen-8ea9c9-16x16,.browser-ie .work-docs-icon-leave-full-screen-212f3e-24x24,.browser-ie .work-docs-icon-leave-full-screen-212f3e-16x16,.browser-ie .work-docs-icon-leave-full-screen-808184-24x24,.browser-ie .work-docs-icon-leave-full-screen-808184-16x16,.browser-ie .work-docs-icon-leave-full-screen-d0d2d3-24x24,.browser-ie .work-docs-icon-leave-full-screen-ffffff-24x24,.browser-ie .work-docs-icon-leave-full-screen-d0d2d3-16x16,.browser-ie .work-docs-icon-leave-full-screen-ffffff-16x16,.browser-ie .work-docs-icon-full-screen-0e72a3-24x24,.browser-ie .work-docs-icon-full-screen-0e72a3-16x16,.browser-ie .work-docs-icon-full-screen-8ea9c9-24x24,.browser-ie .work-docs-icon-full-screen-8ea9c9-16x16,.browser-ie .work-docs-icon-full-screen-212f3e-24x24,.browser-ie .work-docs-icon-full-screen-212f3e-16x16,.browser-ie .work-docs-icon-full-screen-808184-24x24,.browser-ie .work-docs-icon-full-screen-808184-16x16,.browser-ie .work-docs-icon-full-screen-d0d2d3-24x24,.browser-ie .work-docs-icon-full-screen-ffffff-24x24,.browser-ie .work-docs-icon-full-screen-d0d2d3-16x16,.browser-ie .work-docs-icon-full-screen-ffffff-16x16,.browser-ie .work-docs-icon-pdf-bf1e0f-24x24,.browser-ie .work-docs-icon-pdf-bf1e0f-16x16,.browser-ie .work-docs-icon-powerpoint-dd5c27-24x24,.browser-ie .work-docs-icon-powerpoint-dd5c27-16x16,.browser-ie .work-docs-icon-excel-0e7d4f-24x24,.browser-ie .work-docs-icon-excel-0e7d4f-16x16,.browser-ie .work-docs-icon-word-276887-24x24,.browser-ie .work-docs-icon-word-276887-16x16,.browser-ie .work-docs-icon-add-person-0e72a3-24x24,.browser-ie .work-docs-icon-add-person-0e72a3-16x16,.browser-ie .work-docs-icon-achieve-0e72a3-24x24,.browser-ie .work-docs-icon-achieve-0e72a3-16x16,.browser-ie .work-docs-icon-pdf-0e72a3-24x24,.browser-ie .work-docs-icon-pdf-0e72a3-16x16,.browser-ie .work-docs-icon-powerpoint-0e72a3-24x24,.browser-ie .work-docs-icon-powerpoint-0e72a3-16x16,.browser-ie .work-docs-icon-excel-0e72a3-24x24,.browser-ie .work-docs-icon-excel-0e72a3-263x16,.browser-ie .work-docs-icon-word-0e72a3-24x24,.browser-ie .work-docs-icon-word-0e72a3-16x16,.browser-ie .work-docs-icon-default-0e72a3-24x24,.browser-ie .work-docs-icon-default-0e72a3-16x16,.browser-ie .work-docs-icon-close-alternate-0e72a3-24x24,.browser-ie .work-docs-icon-close-alternate-0e72a3-16x16,.browser-ie .work-docs-icon-calendar-0e72a3-24x24,.browser-ie .work-docs-icon-calendar-0e72a3-16x16,.browser-ie .work-docs-icon-link-alternate-0e72a3-24x24,.browser-ie .work-docs-icon-link-alternate-0e72a3-16x16,.browser-ie .work-docs-icon-check-press-0e72a3-24x24,.browser-ie .work-docs-icon-check-press-0e72a3-16x16,.browser-ie .work-docs-icon-check-off-0e72a3-24x24,.browser-ie .work-docs-icon-check-off-0e72a3-16x16,.browser-ie .work-docs-icon-radio-selected-0e72a3-24x24,.browser-ie .work-docs-icon-radio-selected-0e72a3-16x16,.browser-ie .work-docs-icon-radio-press-0e72a3-24x24,.browser-ie .work-docs-icon-radio-press-0e72a3-16x16,.browser-ie .work-docs-icon-radio-off-0e72a3-24x24,.browser-ie .work-docs-icon-radio-off-0e72a3-16x16,.browser-ie .work-docs-icon-refresh-0e72a3-24x24,.browser-ie .work-docs-icon-refresh-0e72a3-16x16,.browser-ie .work-docs-icon-progress-0e72a3-24x24,.browser-ie .work-docs-icon-progress-0e72a3-16x16,.browser-ie .work-docs-icon-reply-0e72a3-24x24,.browser-ie .work-docs-icon-reply-0e72a3-16x16,.browser-ie .work-docs-icon-people-0e72a3-24x24,.browser-ie .work-docs-icon-people-0e72a3-16x16,.browser-ie .work-docs-icon-add-person-8ea9c9-24x24,.browser-ie .work-docs-icon-add-person-8ea9c9-16x16,.browser-ie .work-docs-icon-achieve-8ea9c9-24x24,.browser-ie .work-docs-icon-achieve-8ea9c9-16x16,.browser-ie .work-docs-icon-pdf-8ea9c9-24x24,.browser-ie .work-docs-icon-pdf-8ea9c9-16x16,.browser-ie .work-docs-icon-powerpoint-8ea9c9-24x24,.browser-ie .work-docs-icon-powerpoint-8ea9c9-16x16,.browser-ie .work-docs-icon-excel-8ea9c9-24x24,.browser-ie .work-docs-icon-excel-8ea9c9-138x16,.browser-ie .work-docs-icon-word-8ea9c9-24x24,.browser-ie .work-docs-icon-word-8ea9c9-16x16,.browser-ie .work-docs-icon-default-8ea9c9-24x24,.browser-ie .work-docs-icon-default-8ea9c9-16x16,.browser-ie .work-docs-icon-close-alternate-8ea9c9-24x24,.browser-ie .work-docs-icon-close-alternate-8ea9c9-16x16,.browser-ie .work-docs-icon-calendar-8ea9c9-24x24,.browser-ie .work-docs-icon-calendar-8ea9c9-16x16,.browser-ie .work-docs-icon-link-alternate-8ea9c9-24x24,.browser-ie .work-docs-icon-link-alternate-8ea9c9-16x16,.browser-ie .work-docs-icon-check-press-8ea9c9-24x24,.browser-ie .work-docs-icon-check-press-8ea9c9-16x16,.browser-ie .work-docs-icon-check-off-8ea9c9-24x24,.browser-ie .work-docs-icon-check-off-8ea9c9-16x16,.browser-ie .work-docs-icon-radio-selected-8ea9c9-24x24,.browser-ie .work-docs-icon-radio-selected-8ea9c9-16x16,.browser-ie .work-docs-icon-radio-press-8ea9c9-24x24,.browser-ie .work-docs-icon-radio-press-8ea9c9-16x16,.browser-ie .work-docs-icon-radio-off-8ea9c9-24x24,.browser-ie .work-docs-icon-radio-off-8ea9c9-16x16,.browser-ie .work-docs-icon-refresh-8ea9c9-24x24,.browser-ie .work-docs-icon-refresh-8ea9c9-16x16,.browser-ie .work-docs-icon-progress-8ea9c9-24x24,.browser-ie .work-docs-icon-progress-8ea9c9-16x16,.browser-ie .work-docs-icon-reply-8ea9c9-24x24,.browser-ie .work-docs-icon-reply-8ea9c9-16x16,.browser-ie .work-docs-icon-people-8ea9c9-24x24,.browser-ie .work-docs-icon-people-8ea9c9-16x16,.browser-ie .work-docs-icon-add-person-212f3e-24x24,.browser-ie .work-docs-icon-add-person-212f3e-16x16,.browser-ie .work-docs-icon-achieve-212f3e-24x24,.browser-ie .work-docs-icon-achieve-212f3e-16x16,.browser-ie .work-docs-icon-pdf-212f3e-24x24,.browser-ie .work-docs-icon-pdf-212f3e-16x16,.browser-ie .work-docs-icon-powerpoint-212f3e-24x24,.browser-ie .work-docs-icon-powerpoint-212f3e-16x16,.browser-ie .work-docs-icon-excel-212f3e-24x24,.browser-ie .work-docs-icon-excel-212f3e-138x16,.browser-ie .work-docs-icon-word-212f3e-24x24,.browser-ie .work-docs-icon-word-212f3e-16x16,.browser-ie .work-docs-icon-default-212f3e-24x24,.browser-ie .work-docs-icon-default-212f3e-16x16,.browser-ie .work-docs-icon-close-alternate-212f3e-24x24,.browser-ie .work-docs-icon-close-alternate-212f3e-16x16,.browser-ie .work-docs-icon-calendar-212f3e-24x24,.browser-ie .work-docs-icon-calendar-212f3e-16x16,.browser-ie .work-docs-icon-link-alternate-212f3e-24x24,.browser-ie .work-docs-icon-link-alternate-212f3e-16x16,.browser-ie .work-docs-icon-check-press-212f3e-24x24,.browser-ie .work-docs-icon-check-press-212f3e-16x16,.browser-ie .work-docs-icon-check-off-212f3e-24x24,.browser-ie .work-docs-icon-check-off-212f3e-16x16,.browser-ie .work-docs-icon-radio-selected-212f3e-24x24,.browser-ie .work-docs-icon-radio-selected-212f3e-16x16,.browser-ie .work-docs-icon-radio-press-212f3e-24x24,.browser-ie .work-docs-icon-radio-press-212f3e-16x16,.browser-ie .work-docs-icon-radio-off-212f3e-24x24,.browser-ie .work-docs-icon-radio-off-212f3e-16x16,.browser-ie .work-docs-icon-refresh-212f3e-24x24,.browser-ie .work-docs-icon-refresh-212f3e-16x16,.browser-ie .work-docs-icon-progress-212f3e-24x24,.browser-ie .work-docs-icon-progress-212f3e-16x16,.browser-ie .work-docs-icon-reply-212f3e-24x24,.browser-ie .work-docs-icon-reply-212f3e-16x16,.browser-ie .work-docs-icon-people-212f3e-24x24,.browser-ie .work-docs-icon-people-212f3e-16x16,.browser-ie .work-docs-icon-add-person-808184-24x24,.browser-ie .work-docs-icon-add-person-d0d2d3-24x24,.browser-ie .work-docs-icon-add-person-ffffff-24x24,.browser-ie .work-docs-icon-add-person-808184-16x16,.browser-ie .work-docs-icon-add-person-d0d2d3-16x16,.browser-ie .work-docs-icon-add-person-ffffff-16x16,.browser-ie .work-docs-icon-achieve-808184-24x24,.browser-ie .work-docs-icon-achieve-d0d2d3-24x24,.browser-ie .work-docs-icon-achieve-ffffff-24x24,.browser-ie .work-docs-icon-achieve-808184-16x16,.browser-ie .work-docs-icon-achieve-d0d2d3-16x16,.browser-ie .work-docs-icon-achieve-ffffff-16x16,.browser-ie .work-docs-icon-pdf-787982-24x25,.browser-ie .work-docs-icon-pdf-d0d2d3-24x24,.browser-ie .work-docs-icon-pdf-ffffff-24x24,.browser-ie .work-docs-icon-pdf-d0d2d3-16x16,.browser-ie .work-docs-icon-pdf-ffffff-16x16,.browser-ie .work-docs-icon-powerpoint-808184-24x24,.browser-ie .work-docs-icon-powerpoint-d0d2d3-24x24,.browser-ie .work-docs-icon-powerpoint-ffffff-24x24,.browser-ie .work-docs-icon-powerpoint-808184-16x16,.browser-ie .work-docs-icon-powerpoint-d0d2d3-16x16,.browser-ie .work-docs-icon-powerpoint-ffffff-16x16,.browser-ie .work-docs-icon-excel-808184-261x24,.browser-ie .work-docs-icon-excel-d0d2d3-143x24,.browser-ie .work-docs-icon-excel-ffffff-24x24,.browser-ie .work-docs-icon-excel-808184-16x16,.browser-ie .work-docs-icon-excel-d0d2d3-16x16,.browser-ie .work-docs-icon-excel-ffffff-16x16,.browser-ie .work-docs-icon-word-808184-24x24,.browser-ie .work-docs-icon-word-d0d2d3-24x24,.browser-ie .work-docs-icon-word-ffffff-24x24,.browser-ie .work-docs-icon-word-808184-16x16,.browser-ie .work-docs-icon-word-d0d2d3-16x16,.browser-ie .work-docs-icon-word-ffffff-16x16,.browser-ie .work-docs-icon-image-0e72a3-24x24,.browser-ie .work-docs-icon-image-0e72a3-16x16,.browser-ie .work-docs-icon-image-8ea9c9-24x24,.browser-ie .work-docs-icon-image-8ea9c9-16x16,.browser-ie .work-docs-icon-image-212f3e-24x24,.browser-ie .work-docs-icon-image-212f3e-16x16,.browser-ie .work-docs-icon-image-808184-24x24,.browser-ie .work-docs-icon-image-808184-16x16,.browser-ie .work-docs-icon-image-d0d2d3-24x24,.browser-ie .work-docs-icon-image-ffffff-24x24,.browser-ie .work-docs-icon-image-d0d2d3-16x16,.browser-ie .work-docs-icon-image-ffffff-16x16,.browser-ie .work-docs-icon-default-808184-24x24,.browser-ie .work-docs-icon-default-d0d2d3-24x24,.browser-ie .work-docs-icon-default-ffffff-24x24,.browser-ie .work-docs-icon-default-808184-16x16,.browser-ie .work-docs-icon-default-d0d2d3-16x16,.browser-ie .work-docs-icon-default-ffffff-16x16,.browser-ie .work-docs-icon-close-alternate-808184-24x24,.browser-ie .work-docs-icon-close-alternate-d0d2d3-24x24,.browser-ie .work-docs-icon-close-alternate-ffffff-24x24,.browser-ie .work-docs-icon-close-alternate-808184-16x16,.browser-ie .work-docs-icon-close-alternate-d0d2d3-16x16,.browser-ie .work-docs-icon-close-alternate-ffffff-16x16,.browser-ie .work-docs-icon-calendar-808184-24x24,.browser-ie .work-docs-icon-calendar-d0d2d3-24x24,.browser-ie .work-docs-icon-calendar-ffffff-24x24,.browser-ie .work-docs-icon-calendar-808184-16x16,.browser-ie .work-docs-icon-calendar-d0d2d3-16x16,.browser-ie .work-docs-icon-calendar-ffffff-16x16,.browser-ie .work-docs-icon-link-alternate-808184-24x24,.browser-ie .work-docs-icon-link-alternate-d0d2d3-24x24,.browser-ie .work-docs-icon-link-alternate-ffffff-24x24,.browser-ie .work-docs-icon-link-alternate-808184-16x16,.browser-ie .work-docs-icon-link-alternate-d0d2d3-16x16,.browser-ie .work-docs-icon-link-alternate-ffffff-16x16,.browser-ie .work-docs-icon-check-selected-0e72a3-24x24,.browser-ie .work-docs-icon-check-selected-0e72a3-16x16,.browser-ie .work-docs-icon-check-selected-8ea9c9-24x24,.browser-ie .work-docs-icon-check-selected-8ea9c9-16x16,.browser-ie .work-docs-icon-check-selected-212f3e-24x24,.browser-ie .work-docs-icon-check-selected-212f3e-16x16,.browser-ie .work-docs-icon-check-selected-808184-24x24,.browser-ie .work-docs-icon-check-selected-808184-16x16,.browser-ie .work-docs-icon-check-selected-d0d2d3-24x24,.browser-ie .work-docs-icon-check-selected-ffffff-24x24,.browser-ie .work-docs-icon-check-selected-d0d2d3-16x16,.browser-ie .work-docs-icon-check-selected-ffffff-16x16,.browser-ie .work-docs-icon-check-press-808184-24x24,.browser-ie .work-docs-icon-check-press-d0d2d3-24x24,.browser-ie .work-docs-icon-check-press-ffffff-24x24,.browser-ie .work-docs-icon-check-press-808184-16x16,.browser-ie .work-docs-icon-check-press-d0d2d3-16x16,.browser-ie .work-docs-icon-check-press-ffffff-16x16,.browser-ie .work-docs-icon-check-off-808184-24x24,.browser-ie .work-docs-icon-check-off-d0d2d3-24x24,.browser-ie .work-docs-icon-check-off-ffffff-24x24,.browser-ie .work-docs-icon-check-off-808184-16x16,.browser-ie .work-docs-icon-check-off-d0d2d3-16x16,.browser-ie .work-docs-icon-check-off-ffffff-16x16,.browser-ie .work-docs-icon-radio-selected-808184-24x24,.browser-ie .work-docs-icon-radio-selected-d0d2d3-24x24,.browser-ie .work-docs-icon-radio-selected-ffffff-24x24,.browser-ie .work-docs-icon-radio-selected-808184-16x16,.browser-ie .work-docs-icon-radio-selected-d0d2d3-16x16,.browser-ie .work-docs-icon-radio-selected-ffffff-16x16,.browser-ie .work-docs-icon-radio-press-808184-24x24,.browser-ie .work-docs-icon-radio-press-d0d2d3-24x24,.browser-ie .work-docs-icon-radio-press-ffffff-24x24,.browser-ie .work-docs-icon-radio-press-808184-16x16,.browser-ie .work-docs-icon-radio-press-d0d2d3-16x16,.browser-ie .work-docs-icon-radio-press-ffffff-16x16,.browser-ie .work-docs-icon-radio-off-808184-24x24,.browser-ie .work-docs-icon-radio-off-d0d2d3-24x24,.browser-ie .work-docs-icon-radio-off-ffffff-24x24,.browser-ie .work-docs-icon-radio-off-808184-16x16,.browser-ie .work-docs-icon-radio-off-d0d2d3-16x16,.browser-ie .work-docs-icon-radio-off-ffffff-16x16,.browser-ie .work-docs-icon-refresh-alternate-0e72a3-24x24,.browser-ie .work-docs-icon-refresh-alternate-8ea9c9-24x24,.browser-ie .work-docs-icon-refresh-alternate-212f3e-24x24,.browser-ie .work-docs-icon-refresh-alternate-808184-24x24,.browser-ie .work-docs-icon-refresh-alternate-d0d2d3-24x24,.browser-ie .work-docs-icon-refresh-alternate-ffffff-24x24,.browser-ie .work-docs-icon-refresh-alternate-0e72a3-16x16,.browser-ie .work-docs-icon-refresh-alternate-8ea9c9-16x16,.browser-ie .work-docs-icon-refresh-alternate-212f3e-16x16,.browser-ie .work-docs-icon-refresh-alternate-808184-16x16,.browser-ie .work-docs-icon-refresh-alternate-d0d2d3-16x16,.browser-ie .work-docs-icon-refresh-alternate-ffffff-16x16,.browser-ie .work-docs-icon-refresh-808184-24x24,.browser-ie .work-docs-icon-refresh-d0d2d3-24x24,.browser-ie .work-docs-icon-refresh-ffffff-24x24,.browser-ie .work-docs-icon-refresh-808184-16x16,.browser-ie .work-docs-icon-refresh-d0d2d3-16x16,.browser-ie .work-docs-icon-refresh-ffffff-16x16,.browser-ie .work-docs-icon-progress-808184-24x24,.browser-ie .work-docs-icon-progress-d0d2d3-24x24,.browser-ie .work-docs-icon-progress-ffffff-24x24,.browser-ie .work-docs-icon-progress-808184-16x16,.browser-ie .work-docs-icon-progress-d0d2d3-16x16,.browser-ie .work-docs-icon-progress-ffffff-16x16,.browser-ie .work-docs-icon-reply-808184-24x24,.browser-ie .work-docs-icon-reply-d0d2d3-24x24,.browser-ie .work-docs-icon-reply-ffffff-24x24,.browser-ie .work-docs-icon-reply-808184-16x16,.browser-ie .work-docs-icon-reply-d0d2d3-16x16,.browser-ie .work-docs-icon-reply-ffffff-16x16,.browser-ie .work-docs-icon-people-808184-24x24,.browser-ie .work-docs-icon-people-d0d2d3-24x24,.browser-ie .work-docs-icon-people-ffffff-24x24,.browser-ie .work-docs-icon-people-808184-16x16,.browser-ie .work-docs-icon-people-d0d2d3-16x16,.browser-ie .work-docs-icon-people-ffffff-16x16,.browser-ie .work-docs-icon-restore-0e72a3-24x24,.browser-ie .work-docs-icon-restore-8ea9c9-24x24,.browser-ie .work-docs-icon-restore-212f3e-24x24,.browser-ie .work-docs-icon-restore-808184-24x24,.browser-ie .work-docs-icon-restore-d0d2d3-24x24,.browser-ie .work-docs-icon-restore-ffffff-24x24,.browser-ie .work-docs-icon-restore-0e72a3-16x16,.browser-ie .work-docs-icon-restore-8ea9c9-16x16,.browser-ie .work-docs-icon-restore-212f3e-16x16,.browser-ie .work-docs-icon-restore-808184-16x16,.browser-ie .work-docs-icon-restore-d0d2d3-16x16,.browser-ie .work-docs-icon-restore-ffffff-16x16,.browser-ie .work-docs-icon-arrows-right-0e72a3-24x24,.browser-ie .work-docs-icon-arrows-right-8ea9c9-24x24,.browser-ie .work-docs-icon-arrows-right-212f3e-24x24,.browser-ie .work-docs-icon-arrows-right-808184-24x24,.browser-ie .work-docs-icon-arrows-right-d0d2d3-24x24,.browser-ie .work-docs-icon-arrows-right-ffffff-24x24,.browser-ie .work-docs-icon-arrows-right-0e72a3-16x16,.browser-ie .work-docs-icon-arrows-right-8ea9c9-16x16,.browser-ie .work-docs-icon-arrows-right-212f3e-16x16,.browser-ie .work-docs-icon-arrows-right-808184-16x16,.browser-ie .work-docs-icon-arrows-right-d0d2d3-16x16,.browser-ie .work-docs-icon-arrows-right-ffffff-16x16,.browser-ie .work-docs-icon-arrows-left-0e72a3-24x24,.browser-ie .work-docs-icon-arrows-left-8ea9c9-24x24,.browser-ie .work-docs-icon-arrows-left-212f3e-24x24,.browser-ie .work-docs-icon-arrows-left-808184-24x24,.browser-ie .work-docs-icon-arrows-left-d0d2d3-24x24,.browser-ie .work-docs-icon-arrows-left-ffffff-24x24,.browser-ie .work-docs-icon-arrows-left-0e72a3-16x16,.browser-ie .work-docs-icon-arrows-left-8ea9c9-16x16,.browser-ie .work-docs-icon-arrows-left-212f3e-16x16,.browser-ie .work-docs-icon-arrows-left-808184-16x16,.browser-ie .work-docs-icon-arrows-left-d0d2d3-16x16,.browser-ie .work-docs-icon-arrows-left-ffffff-16x16,.browser-ie .work-docs-icon-ellipsis-0e72a3-24x24,.browser-ie .work-docs-icon-ellipsis-8ea9c9-24x24,.browser-ie .work-docs-icon-ellipsis-212f3e-24x24,.browser-ie .work-docs-icon-ellipsis-808184-24x24,.browser-ie .work-docs-icon-ellipsis-d0d2d3-24x24,.browser-ie .work-docs-icon-ellipsis-ffffff-24x24,.browser-ie .work-docs-icon-ellipsis-0e72a3-16x16,.browser-ie .work-docs-icon-ellipsis-8ea9c9-16x16,.browser-ie .work-docs-icon-ellipsis-212f3e-16x16,.browser-ie .work-docs-icon-ellipsis-808184-16x16,.browser-ie .work-docs-icon-ellipsis-d0d2d3-16x16,.browser-ie .work-docs-icon-ellipsis-ffffff-16x16,.browser-ie .work-docs-icon-minus-0e72a3-24x24,.browser-ie .work-docs-icon-minus-8ea9c9-24x24,.browser-ie .work-docs-icon-minus-212f3e-24x24,.browser-ie .work-docs-icon-minus-808184-24x24,.browser-ie .work-docs-icon-minus-d0d2d3-24x24,.browser-ie .work-docs-icon-minus-ffffff-24x24,.browser-ie .work-docs-icon-minus-0e72a3-16x16,.browser-ie .work-docs-icon-minus-8ea9c9-16x16,.browser-ie .work-docs-icon-minus-212f3e-16x16,.browser-ie .work-docs-icon-minus-808184-16x16,.browser-ie .work-docs-icon-minus-d0d2d3-16x16,.browser-ie .work-docs-icon-minus-ffffff-16x16,.browser-ie .work-docs-icon-plus-0e72a3-24x24,.browser-ie .work-docs-icon-plus-8ea9c9-24x24,.browser-ie .work-docs-icon-plus-212f3e-24x24,.browser-ie .work-docs-icon-plus-808184-24x24,.browser-ie .work-docs-icon-plus-d0d2d3-24x24,.browser-ie .work-docs-icon-plus-ffffff-24x24,.browser-ie .work-docs-icon-plus-0e72a3-16x16,.browser-ie .work-docs-icon-plus-8ea9c9-16x16,.browser-ie .work-docs-icon-plus-212f3e-16x16,.browser-ie .work-docs-icon-plus-808184-16x16,.browser-ie .work-docs-icon-plus-d0d2d3-16x16,.browser-ie .work-docs-icon-plus-ffffff-16x16,.browser-ie .work-docs-icon-notifications-ffffff-16x16,.browser-ie .work-docs-icon-notifications-ffffff-24x24,.browser-ie .work-docs-icon-notifications-0e72a3-24x24,.browser-ie .work-docs-icon-notifications-0e72a3-16x16,.browser-ie .work-docs-icon-notifications-8ea9c9-24x24,.browser-ie .work-docs-icon-notifications-8ea9c9-16x16,.browser-ie .work-docs-icon-notifications-212f3e-24x24,.browser-ie .work-docs-icon-notifications-212f3e-16x16,.browser-ie .work-docs-icon-notifications-808184-24x24,.browser-ie .work-docs-icon-notifications-808184-16x16,.browser-ie .work-docs-icon-notifications-d0d2d3-24x24,.browser-ie .work-docs-icon-notifications-d0d2d3-16x16,.browser-ie .work-docs-icon-zoom-out-0e72a3-24x24,.browser-ie .work-docs-icon-zoom-out-0e72a3-16x16,.browser-ie .work-docs-icon-zoom-out-8ea9c9-24x24,.browser-ie .work-docs-icon-zoom-out-8ea9c9-16x16,.browser-ie .work-docs-icon-zoom-out-212f3e-24x24,.browser-ie .work-docs-icon-zoom-out-212f3e-16x16,.browser-ie .work-docs-icon-zoom-out-808184-24x24,.browser-ie .work-docs-icon-zoom-out-808184-16x16,.browser-ie .work-docs-icon-zoom-out-d0d2d3-24x24,.browser-ie .work-docs-icon-zoom-out-d0d2d3-16x16,.browser-ie .work-docs-icon-zoom-out-ffffff-24x24,.browser-ie .work-docs-icon-zoom-out-ffffff-16x16,.browser-ie .work-docs-icon-zoom-in-0e72a3-24x24,.browser-ie .work-docs-icon-zoom-in-0e72a3-16x16,.browser-ie .work-docs-icon-zoom-in-8ea9c9-24x24,.browser-ie .work-docs-icon-zoom-in-8ea9c9-16x16,.browser-ie .work-docs-icon-zoom-in-212f3e-24x24,.browser-ie .work-docs-icon-zoom-in-212f3e-16x16,.browser-ie .work-docs-icon-zoom-in-808184-24x24,.browser-ie .work-docs-icon-zoom-in-808184-16x16,.browser-ie .work-docs-icon-zoom-in-d0d2d3-24x24,.browser-ie .work-docs-icon-zoom-in-d0d2d3-16x16,.browser-ie .work-docs-icon-zoom-in-ffffff-24x24,.browser-ie .work-docs-icon-zoom-in-ffffff-16x16,.browser-ie .work-docs-icon-page-down-0e72a3-24x24,.browser-ie .work-docs-icon-page-down-0e72a3-16x16,.browser-ie .work-docs-icon-page-down-8ea9c9-24x24,.browser-ie .work-docs-icon-page-down-8ea9c9-16x16,.browser-ie .work-docs-icon-page-down-212f3e-24x24,.browser-ie .work-docs-icon-page-down-212f3e-16x16,.browser-ie .work-docs-icon-page-down-808184-24x24,.browser-ie .work-docs-icon-page-down-808184-16x16,.browser-ie .work-docs-icon-page-down-d0d2d3-24x24,.browser-ie .work-docs-icon-page-down-d0d2d3-16x16,.browser-ie .work-docs-icon-page-down-ffffff-24x24,.browser-ie .work-docs-icon-page-down-ffffff-16x16,.browser-ie .work-docs-icon-page-up-0e72a3-24x24,.browser-ie .work-docs-icon-page-up-0e72a3-16x16,.browser-ie .work-docs-icon-page-up-8ea9c9-24x24,.browser-ie .work-docs-icon-page-up-8ea9c9-16x16,.browser-ie .work-docs-icon-page-up-212f3e-24x24,.browser-ie .work-docs-icon-page-up-212f3e-16x16,.browser-ie .work-docs-icon-page-up-808184-24x24,.browser-ie .work-docs-icon-page-up-808184-16x16,.browser-ie .work-docs-icon-page-up-d0d2d3-24x24,.browser-ie .work-docs-icon-page-up-d0d2d3-16x16,.browser-ie .work-docs-icon-page-up-ffffff-24x24,.browser-ie .work-docs-icon-page-up-ffffff-16x16,.browser-ie .work-docs-icon-carat-right-lg-d0d2d3-24x24,.browser-ie .work-docs-icon-carat-right-lg-8ea9c9-24x24,.browser-ie .work-docs-icon-carat-right-lg-212f3e-24x24,.browser-ie .work-docs-icon-carat-right-lg-0e72a3-24x24,.browser-ie .work-docs-icon-carat-right-lg-808184-24x24,.browser-ie .work-docs-icon-carat-right-lg-ffffff-24x24,.browser-ie .work-docs-icon-carat-right-lg-d0d2d3-16x16,.browser-ie .work-docs-icon-carat-right-lg-8ea9c9-16x16,.browser-ie .work-docs-icon-carat-right-lg-212f3e-16x16,.browser-ie .work-docs-icon-carat-right-lg-0e72a3-16x16,.browser-ie .work-docs-icon-carat-right-lg-808184-16x16,.browser-ie .work-docs-icon-carat-right-lg-ffffff-16x16,.browser-ie .work-docs-icon-carat-up-lg-d0d2d3-24x24,.browser-ie .work-docs-icon-carat-up-lg-8ea9c9-24x24,.browser-ie .work-docs-icon-carat-up-lg-212f3e-24x24,.browser-ie .work-docs-icon-carat-up-lg-0e72a3-24x24,.browser-ie .work-docs-icon-carat-up-lg-808184-24x24,.browser-ie .work-docs-icon-carat-up-lg-ffffff-24x24,.browser-ie .work-docs-icon-carat-up-lg-d0d2d3-16x16,.browser-ie .work-docs-icon-carat-up-lg-8ea9c9-16x16,.browser-ie .work-docs-icon-carat-up-lg-212f3e-16x16,.browser-ie .work-docs-icon-carat-up-lg-0e72a3-16x16,.browser-ie .work-docs-icon-carat-up-lg-808184-16x16,.browser-ie .work-docs-icon-carat-up-lg-ffffff-16x16,.browser-ie .work-docs-icon-carat-down-lg-d0d2d3-24x24,.browser-ie .work-docs-icon-carat-down-lg-8ea9c9-24x24,.browser-ie .work-docs-icon-carat-down-lg-212f3e-24x24,.browser-ie .work-docs-icon-carat-down-lg-0e72a3-24x24,.browser-ie .work-docs-icon-carat-down-lg-808184-24x24,.browser-ie .work-docs-icon-carat-down-lg-ffffff-24x24,.browser-ie .work-docs-icon-carat-down-lg-d0d2d3-16x16,.browser-ie .work-docs-icon-carat-down-lg-8ea9c9-16x16,.browser-ie .work-docs-icon-carat-down-lg-212f3e-16x16,.browser-ie .work-docs-icon-carat-down-lg-0e72a3-16x16,.browser-ie .work-docs-icon-carat-down-lg-808184-16x16,.browser-ie .work-docs-icon-carat-down-lg-ffffff-16x16,.browser-ie .work-docs-icon-carat-left-lg-d0d2d3-24x24,.browser-ie .work-docs-icon-carat-left-lg-8ea9c9-24x24,.browser-ie .work-docs-icon-carat-left-lg-212f3e-24x24,.browser-ie .work-docs-icon-carat-left-lg-0e72a3-24x24,.browser-ie .work-docs-icon-carat-left-lg-808184-24x24,.browser-ie .work-docs-icon-carat-left-lg-ffffff-24x24,.browser-ie .work-docs-icon-carat-left-lg-d0d2d3-16x16,.browser-ie .work-docs-icon-carat-left-lg-8ea9c9-16x16,.browser-ie .work-docs-icon-carat-left-lg-212f3e-16x16,.browser-ie .work-docs-icon-carat-left-lg-0e72a3-16x16,.browser-ie .work-docs-icon-carat-left-lg-808184-16x16,.browser-ie .work-docs-icon-carat-left-lg-ffffff-16x16,.browser-ie .work-docs-icon-unchecked-round-d0d2d3-24x24,.browser-ie .work-docs-icon-unchecked-round-8ea9c9-24x24,.browser-ie .work-docs-icon-unchecked-round-212f3e-24x24,.browser-ie .work-docs-icon-unchecked-round-0e72a3-24x24,.browser-ie .work-docs-icon-unchecked-round-808184-24x24,.browser-ie .work-docs-icon-unchecked-round-ffffff-24x24,.browser-ie .work-docs-icon-unchecked-round-d0d2d3-16x16,.browser-ie .work-docs-icon-unchecked-round-8ea9c9-16x16,.browser-ie .work-docs-icon-unchecked-round-212f3e-16x16,.browser-ie .work-docs-icon-unchecked-round-0e72a3-16x16,.browser-ie .work-docs-icon-unchecked-round-808184-16x16,.browser-ie .work-docs-icon-unchecked-round-ffffff-16x16,.browser-ie .work-docs-icon-close-activity-tray-d0d2d3-36x24,.browser-ie .work-docs-icon-close-activity-tray-8ea9c9-36x24,.browser-ie .work-docs-icon-close-activity-tray-212f3e-36x24,.browser-ie .work-docs-icon-close-activity-tray-0e72a3-36x24,.browser-ie .work-docs-icon-close-activity-tray-808184-36x24,.browser-ie .work-docs-icon-close-activity-tray-ffffff-36x24,.browser-ie .work-docs-icon-close-activity-tray-d0d2d3-24x16,.browser-ie .work-docs-icon-close-activity-tray-8ea9c9-24x16,.browser-ie .work-docs-icon-close-activity-tray-212f3e-24x16,.browser-ie .work-docs-icon-close-activity-tray-0e72a3-24x16,.browser-ie .work-docs-icon-close-activity-tray-808184-24x16,.browser-ie .work-docs-icon-close-activity-tray-ffffff-24x16,.browser-ie .work-docs-icon-open-activity-tray-chat-d0d2d3-37x24,.browser-ie .work-docs-icon-open-activity-tray-chat-8ea9c9-37x24,.browser-ie .work-docs-icon-open-activity-tray-chat-212f3e-37x24,.browser-ie .work-docs-icon-open-activity-tray-chat-0e72a3-37x24,.browser-ie .work-docs-icon-open-activity-tray-chat-808184-37x24,.browser-ie .work-docs-icon-open-activity-tray-chat-ffffff-37x24,.browser-ie .work-docs-icon-open-activity-tray-chat-d0d2d3-24x16,.browser-ie .work-docs-icon-open-activity-tray-chat-8ea9c9-24x16,.browser-ie .work-docs-icon-open-activity-tray-chat-212f3e-24x16,.browser-ie .work-docs-icon-open-activity-tray-chat-0e72a3-24x16,.browser-ie .work-docs-icon-open-activity-tray-chat-808184-24x16,.browser-ie .work-docs-icon-open-activity-tray-chat-ffffff-24x16,.browser-ie .work-docs-icon-open-folder-d0d2d3-24x24,.browser-ie .work-docs-icon-open-folder-8ea9c9-24x24,.browser-ie .work-docs-icon-open-folder-212f3e-24x24,.browser-ie .work-docs-icon-open-folder-0e72a3-24x24,.browser-ie .work-docs-icon-open-folder-808184-24x24,.browser-ie .work-docs-icon-open-folder-ffffff-24x24,.browser-ie .work-docs-icon-open-folder-d0d2d3-16x16,.browser-ie .work-docs-icon-open-folder-8ea9c9-16x16,.browser-ie .work-docs-icon-open-folder-212f3e-16x16,.browser-ie .work-docs-icon-open-folder-0e72a3-16x16,.browser-ie .work-docs-icon-open-folder-808184-16x16,.browser-ie .work-docs-icon-open-folder-ffffff-16x16,.browser-ie .work-docs-icon-carat-right-d0d2d3-24x24,.browser-ie .work-docs-icon-carat-right-8ea9c9-24x24,.browser-ie .work-docs-icon-carat-right-212f3e-24x24,.browser-ie .work-docs-icon-carat-right-0e72a3-24x24,.browser-ie .work-docs-icon-carat-right-808184-24x24,.browser-ie .work-docs-icon-carat-right-ffffff-24x24,.browser-ie .work-docs-icon-carat-right-d0d2d3-16x16,.browser-ie .work-docs-icon-carat-right-8ea9c9-16x16,.browser-ie .work-docs-icon-carat-right-212f3e-16x16,.browser-ie .work-docs-icon-carat-right-0e72a3-16x16,.browser-ie .work-docs-icon-carat-right-808184-16x16,.browser-ie .work-docs-icon-carat-right-ffffff-16x16,.browser-ie .work-docs-icon-carat-up-d0d2d3-24x24,.browser-ie .work-docs-icon-carat-up-8ea9c9-24x24,.browser-ie .work-docs-icon-carat-up-212f3e-24x24,.browser-ie .work-docs-icon-carat-up-0e72a3-24x24,.browser-ie .work-docs-icon-carat-up-808184-24x24,.browser-ie .work-docs-icon-carat-up-ffffff-24x24,.browser-ie .work-docs-icon-carat-up-d0d2d3-16x16,.browser-ie .work-docs-icon-carat-up-8ea9c9-16x16,.browser-ie .work-docs-icon-carat-up-212f3e-16x16,.browser-ie .work-docs-icon-carat-up-0e72a3-16x16,.browser-ie .work-docs-icon-carat-up-808184-16x16,.browser-ie .work-docs-icon-carat-up-ffffff-16x16,.browser-ie .work-docs-icon-carat-down-d0d2d3-24x24,.browser-ie .work-docs-icon-carat-down-8ea9c9-24x24,.browser-ie .work-docs-icon-carat-down-212f3e-24x24,.browser-ie .work-docs-icon-carat-down-0e72a3-24x24,.browser-ie .work-docs-icon-carat-down-808184-24x24,.browser-ie .work-docs-icon-carat-down-ffffff-24x24,.browser-ie .work-docs-icon-carat-down-d0d2d3-16x16,.browser-ie .work-docs-icon-carat-down-8ea9c9-16x16,.browser-ie .work-docs-icon-carat-down-212f3e-16x16,.browser-ie .work-docs-icon-carat-down-0e72a3-16x16,.browser-ie .work-docs-icon-carat-down-808184-16x16,.browser-ie .work-docs-icon-carat-down-ffffff-16x16,.browser-ie .work-docs-icon-carat-left-d0d2d3-24x24,.browser-ie .work-docs-icon-carat-left-8ea9c9-24x24,.browser-ie .work-docs-icon-carat-left-212f3e-24x24,.browser-ie .work-docs-icon-carat-left-0e72a3-24x24,.browser-ie .work-docs-icon-carat-left-808184-24x24,.browser-ie .work-docs-icon-carat-left-ffffff-24x24,.browser-ie .work-docs-icon-carat-left-d0d2d3-16x16,.browser-ie .work-docs-icon-carat-left-8ea9c9-16x16,.browser-ie .work-docs-icon-carat-left-212f3e-16x16,.browser-ie .work-docs-icon-carat-left-0e72a3-16x16,.browser-ie .work-docs-icon-carat-left-808184-16x16,.browser-ie .work-docs-icon-carat-left-ffffff-16x16,.browser-ie .work-docs-icon-checked-round-d0d2d3-24x24,.browser-ie .work-docs-icon-checked-round-8ea9c9-24x24,.browser-ie .work-docs-icon-checked-round-212f3e-24x24,.browser-ie .work-docs-icon-checked-round-0e72a3-24x24,.browser-ie .work-docs-icon-checked-round-808184-24x24,.browser-ie .work-docs-icon-checked-round-ffffff-24x24,.browser-ie .work-docs-icon-checked-round-d0d2d3-16x16,.browser-ie .work-docs-icon-checked-round-8ea9c9-16x16,.browser-ie .work-docs-icon-checked-round-212f3e-16x16,.browser-ie .work-docs-icon-checked-round-0e72a3-16x16,.browser-ie .work-docs-icon-checked-round-808184-16x16,.browser-ie .work-docs-icon-checked-round-ffffff-16x16,.browser-ie .work-docs-icon-unchecked-round-solid-d0d2d3-24x24,.browser-ie .work-docs-icon-unchecked-round-solid-8ea9c9-24x24,.browser-ie .work-docs-icon-unchecked-round-solid-212f3e-24x24,.browser-ie .work-docs-icon-unchecked-round-solid-0e72a3-24x24,.browser-ie .work-docs-icon-unchecked-round-solid-808184-24x24,.browser-ie .work-docs-icon-unchecked-round-solid-ffffff-24x24,.browser-ie .work-docs-icon-unchecked-round-solid-d0d2d3-16x16,.browser-ie .work-docs-icon-unchecked-round-solid-8ea9c9-16x16,.browser-ie .work-docs-icon-unchecked-round-solid-212f3e-16x16,.browser-ie .work-docs-icon-unchecked-round-solid-0e72a3-16x16,.browser-ie .work-docs-icon-unchecked-round-solid-808184-16x16,.browser-ie .work-docs-icon-unchecked-round-solid-ffffff-16x16,.browser-ie .work-docs-icon-mail-d0d2d3-24x24,.browser-ie .work-docs-icon-mail-8ea9c9-24x24,.browser-ie .work-docs-icon-mail-212f3e-24x24,.browser-ie .work-docs-icon-mail-0e72a3-24x24,.browser-ie .work-docs-icon-mail-808184-24x24,.browser-ie .work-docs-icon-mail-ffffff-24x24,.browser-ie .work-docs-icon-mail-d0d2d3-16x16,.browser-ie .work-docs-icon-mail-8ea9c9-16x16,.browser-ie .work-docs-icon-mail-212f3e-16x16,.browser-ie .work-docs-icon-mail-0e72a3-16x16,.browser-ie .work-docs-icon-mail-808184-16x16,.browser-ie .work-docs-icon-mail-ffffff-16x16,.browser-ie .work-docs-icon-cloud-toggle-d0d2d3-24x24,.browser-ie .work-docs-icon-cloud-toggle-8ea9c9-24x24,.browser-ie .work-docs-icon-cloud-toggle-212f3e-24x24,.browser-ie .work-docs-icon-cloud-toggle-0e72a3-24x24,.browser-ie .work-docs-icon-cloud-toggle-808184-24x24,.browser-ie .work-docs-icon-cloud-toggle-ffffff-24x24,.browser-ie .work-docs-icon-cloud-toggle-d0d2d3-16x16,.browser-ie .work-docs-icon-cloud-toggle-8ea9c9-16x16,.browser-ie .work-docs-icon-cloud-toggle-212f3e-16x16,.browser-ie .work-docs-icon-cloud-toggle-0e72a3-16x16,.browser-ie .work-docs-icon-cloud-toggle-808184-16x16,.browser-ie .work-docs-icon-cloud-toggle-ffffff-16x16,.browser-ie .work-docs-icon-cloud-d0d2d3-24x24,.browser-ie .work-docs-icon-cloud-8ea9c9-24x24,.browser-ie .work-docs-icon-cloud-212f3e-24x24,.browser-ie .work-docs-icon-cloud-0e72a3-24x24,.browser-ie .work-docs-icon-cloud-808184-24x24,.browser-ie .work-docs-icon-cloud-ffffff-24x24,.browser-ie .work-docs-icon-cloud-d0d2d3-16x16,.browser-ie .work-docs-icon-cloud-8ea9c9-16x16,.browser-ie .work-docs-icon-cloud-212f3e-16x16,.browser-ie .work-docs-icon-cloud-0e72a3-16x16,.browser-ie .work-docs-icon-cloud-808184-16x16,.browser-ie .work-docs-icon-cloud-ffffff-16x16,.browser-ie .work-docs-icon-close-d0d2d3-24x24,.browser-ie .work-docs-icon-close-8ea9c9-24x24,.browser-ie .work-docs-icon-close-212f3e-24x24,.browser-ie .work-docs-icon-close-0e72a3-24x24,.browser-ie .work-docs-icon-close-808184-24x24,.browser-ie .work-docs-icon-close-ffffff-24x24,.browser-ie .work-docs-icon-close-d0d2d3-16x16,.browser-ie .work-docs-icon-close-8ea9c9-16x16,.browser-ie .work-docs-icon-close-212f3e-16x16,.browser-ie .work-docs-icon-close-0e72a3-16x16,.browser-ie .work-docs-icon-close-808184-16x16,.browser-ie .work-docs-icon-close-ffffff-16x16,.browser-ie .work-docs-icon-share-alternate-d0d2d3-24x24,.browser-ie .work-docs-icon-share-alternate-8ea9c9-24x24,.browser-ie .work-docs-icon-share-alternate-212f3e-24x24,.browser-ie .work-docs-icon-share-alternate-0e72a3-24x24,.browser-ie .work-docs-icon-share-alternate-808184-24x24,.browser-ie .work-docs-icon-share-alternate-ffffff-24x24,.browser-ie .work-docs-icon-share-alternate-d0d2d3-16x16,.browser-ie .work-docs-icon-share-alternate-8ea9c9-16x16,.browser-ie .work-docs-icon-share-alternate-212f3e-16x16,.browser-ie .work-docs-icon-share-alternate-0e72a3-16x16,.browser-ie .work-docs-icon-share-alternate-808184-16x16,.browser-ie .work-docs-icon-share-alternate-ffffff-16x16,.browser-ie .work-docs-icon-from-clipboard-d0d2d3-24x24,.browser-ie .work-docs-icon-from-clipboard-8ea9c9-24x24,.browser-ie .work-docs-icon-from-clipboard-212f3e-24x24,.browser-ie .work-docs-icon-from-clipboard-0e72a3-24x24,.browser-ie .work-docs-icon-from-clipboard-808184-24x24,.browser-ie .work-docs-icon-from-clipboard-ffffff-24x24,.browser-ie .work-docs-icon-from-clipboard-d0d2d3-16x16,.browser-ie .work-docs-icon-from-clipboard-8ea9c9-16x16,.browser-ie .work-docs-icon-from-clipboard-212f3e-16x16,.browser-ie .work-docs-icon-from-clipboard-0e72a3-16x16,.browser-ie .work-docs-icon-from-clipboard-808184-16x16,.browser-ie .work-docs-icon-from-clipboard-ffffff-16x16,.browser-ie .work-docs-icon-to-clipboard-d0d2d3-24x24,.browser-ie .work-docs-icon-to-clipboard-8ea9c9-24x24,.browser-ie .work-docs-icon-to-clipboard-212f3e-24x24,.browser-ie .work-docs-icon-to-clipboard-0e72a3-24x24,.browser-ie .work-docs-icon-to-clipboard-808184-24x24,.browser-ie .work-docs-icon-to-clipboard-ffffff-24x24,.browser-ie .work-docs-icon-to-clipboard-d0d2d3-16x16,.browser-ie .work-docs-icon-to-clipboard-8ea9c9-16x16,.browser-ie .work-docs-icon-to-clipboard-212f3e-16x16,.browser-ie .work-docs-icon-to-clipboard-0e72a3-16x16,.browser-ie .work-docs-icon-to-clipboard-808184-16x16,.browser-ie .work-docs-icon-to-clipboard-ffffff-16x16,.browser-ie .work-docs-icon-attach-d0d2d3-24x24,.browser-ie .work-docs-icon-attach-8ea9c9-24x24,.browser-ie .work-docs-icon-attach-212f3e-24x24,.browser-ie .work-docs-icon-attach-0e72a3-24x24,.browser-ie .work-docs-icon-attach-808184-24x24,.browser-ie .work-docs-icon-attach-ffffff-24x24,.browser-ie .work-docs-icon-attach-d0d2d3-16x16,.browser-ie .work-docs-icon-attach-8ea9c9-16x16,.browser-ie .work-docs-icon-attach-212f3e-16x16,.browser-ie .work-docs-icon-attach-0e72a3-16x16,.browser-ie .work-docs-icon-attach-808184-16x16,.browser-ie .work-docs-icon-attach-ffffff-16x16,.browser-ie .work-docs-icon-close-activity-tray-people-d0d2d3-36x24,.browser-ie .work-docs-icon-close-activity-tray-people-8ea9c9-36x24,.browser-ie .work-docs-icon-close-activity-tray-people-212f3e-36x24,.browser-ie .work-docs-icon-close-activity-tray-people-0e72a3-36x24,.browser-ie .work-docs-icon-close-activity-tray-people-808184-36x24,.browser-ie .work-docs-icon-close-activity-tray-people-ffffff-36x24,.browser-ie .work-docs-icon-close-activity-tray-people-d0d2d3-24x16,.browser-ie .work-docs-icon-close-activity-tray-people-8ea9c9-24x16,.browser-ie .work-docs-icon-close-activity-tray-people-212f3e-24x16,.browser-ie .work-docs-icon-close-activity-tray-people-0e72a3-24x16,.browser-ie .work-docs-icon-close-activity-tray-people-808184-24x16,.browser-ie .work-docs-icon-close-activity-tray-people-ffffff-24x16,.browser-ie .work-docs-icon-open-activity-tray-people-d0d2d3-36x24,.browser-ie .work-docs-icon-open-activity-tray-people-8ea9c9-36x24,.browser-ie .work-docs-icon-open-activity-tray-people-212f3e-36x24,.browser-ie .work-docs-icon-open-activity-tray-people-0e72a3-36x24,.browser-ie .work-docs-icon-open-activity-tray-people-808184-36x24,.browser-ie .work-docs-icon-open-activity-tray-people-ffffff-36x24,.browser-ie .work-docs-icon-open-activity-tray-people-d0d2d3-24x16,.browser-ie .work-docs-icon-open-activity-tray-people-8ea9c9-24x16,.browser-ie .work-docs-icon-open-activity-tray-people-212f3e-24x16,.browser-ie .work-docs-icon-open-activity-tray-people-0e72a3-24x16,.browser-ie .work-docs-icon-open-activity-tray-people-808184-24x16,.browser-ie .work-docs-icon-open-activity-tray-people-ffffff-24x16,.browser-ie .work-docs-icon-info-solid-d0d2d3-24x24,.browser-ie .work-docs-icon-info-solid-8ea9c9-24x24,.browser-ie .work-docs-icon-info-solid-212f3e-24x24,.browser-ie .work-docs-icon-info-solid-0e72a3-24x24,.browser-ie .work-docs-icon-info-solid-808184-24x24,.browser-ie .work-docs-icon-info-solid-ffffff-24x24,.browser-ie .work-docs-icon-info-solid-d0d2d3-16x16,.browser-ie .work-docs-icon-info-solid-8ea9c9-16x16,.browser-ie .work-docs-icon-info-solid-212f3e-16x16,.browser-ie .work-docs-icon-info-solid-0e72a3-16x16,.browser-ie .work-docs-icon-info-solid-808184-16x16,.browser-ie .work-docs-icon-info-solid-ffffff-16x16,.browser-ie .work-docs-icon-info-d0d2d3-24x24,.browser-ie .work-docs-icon-info-8ea9c9-24x24,.browser-ie .work-docs-icon-info-212f3e-24x24,.browser-ie .work-docs-icon-info-0e72a3-24x24,.browser-ie .work-docs-icon-info-808184-24x24,.browser-ie .work-docs-icon-info-ffffff-24x24,.browser-ie .work-docs-icon-info-d0d2d3-16x16,.browser-ie .work-docs-icon-info-8ea9c9-16x16,.browser-ie .work-docs-icon-info-212f3e-16x16,.browser-ie .work-docs-icon-info-0e72a3-16x16,.browser-ie .work-docs-icon-info-808184-16x16,.browser-ie .work-docs-icon-info-ffffff-16x16,.browser-ie .work-docs-icon-activity-d0d2d3-24x24,.browser-ie .work-docs-icon-activity-8ea9c9-24x24,.browser-ie .work-docs-icon-activity-212f3e-24x24,.browser-ie .work-docs-icon-activity-0e72a3-24x24,.browser-ie .work-docs-icon-activity-808184-24x24,.browser-ie .work-docs-icon-activity-ffffff-24x24,.browser-ie .work-docs-icon-activity-d0d2d3-16x16,.browser-ie .work-docs-icon-activity-8ea9c9-16x16,.browser-ie .work-docs-icon-activity-212f3e-16x16,.browser-ie .work-docs-icon-activity-0e72a3-16x16,.browser-ie .work-docs-icon-activity-808184-16x16,.browser-ie .work-docs-icon-activity-ffffff-16x16,.browser-ie .work-docs-icon-upload-to-cloud-0e72a3-24x24,.browser-ie .work-docs-icon-upload-to-cloud-8ea9c9-24x24,.browser-ie .work-docs-icon-upload-to-cloud-212f3e-24x24,.browser-ie .work-docs-icon-upload-to-cloud-808184-24x24,.browser-ie .work-docs-icon-upload-to-cloud-d0d2d3-24x24,.browser-ie .work-docs-icon-upload-to-cloud-ffffff-24x24,.browser-ie .work-docs-icon-upload-to-cloud-0e72a3-16x16,.browser-ie .work-docs-icon-upload-to-cloud-8ea9c9-16x16,.browser-ie .work-docs-icon-upload-to-cloud-212f3e-16x16,.browser-ie .work-docs-icon-upload-to-cloud-808184-16x16,.browser-ie .work-docs-icon-upload-to-cloud-d0d2d3-16x16,.browser-ie .work-docs-icon-upload-to-cloud-ffffff-16x16,.browser-ie .work-docs-icon-download-from-cloud-d0d2d3-24x24,.browser-ie .work-docs-icon-download-from-cloud-8ea9c9-24x24,.browser-ie .work-docs-icon-download-from-cloud-212f3e-24x24,.browser-ie .work-docs-icon-download-from-cloud-0e72a3-24x24,.browser-ie .work-docs-icon-download-from-cloud-808184-24x24,.browser-ie .work-docs-icon-download-from-cloud-ffffff-24x24,.browser-ie .work-docs-icon-download-from-cloud-d0d2d3-16x16,.browser-ie .work-docs-icon-download-from-cloud-8ea9c9-16x16,.browser-ie .work-docs-icon-download-from-cloud-212f3e-16x16,.browser-ie .work-docs-icon-download-from-cloud-0e72a3-16x16,.browser-ie .work-docs-icon-download-from-cloud-808184-16x16,.browser-ie .work-docs-icon-download-from-cloud-ffffff-16x16,.browser-ie .work-docs-icon-move-0e72a3-24x24,.browser-ie .work-docs-icon-move-8ea9c9-24x24,.browser-ie .work-docs-icon-move-212f3e-24x24,.browser-ie .work-docs-icon-move-808184-24x24,.browser-ie .work-docs-icon-move-d0d2d3-24x24,.browser-ie .work-docs-icon-move-ffffff-24x24,.browser-ie .work-docs-icon-move-0e72a3-16x16,.browser-ie .work-docs-icon-move-8ea9c9-16x16,.browser-ie .work-docs-icon-move-212f3e-16x16,.browser-ie .work-docs-icon-move-808184-16x16,.browser-ie .work-docs-icon-move-d0d2d3-16x16,.browser-ie .work-docs-icon-move-ffffff-16x16,.browser-ie .work-docs-icon-edit-d0d2d3-24x24,.browser-ie .work-docs-icon-edit-8ea9c9-24x24,.browser-ie .work-docs-icon-edit-212f3e-24x24,.browser-ie .work-docs-icon-edit-0e72a3-24x24,.browser-ie .work-docs-icon-edit-808184-24x24,.browser-ie .work-docs-icon-edit-ffffff-24x24,.browser-ie .work-docs-icon-edit-d0d2d3-16x16,.browser-ie .work-docs-icon-edit-8ea9c9-16x16,.browser-ie .work-docs-icon-edit-212f3e-16x16,.browser-ie .work-docs-icon-edit-0e72a3-16x16,.browser-ie .work-docs-icon-edit-808184-16x16,.browser-ie .work-docs-icon-edit-ffffff-16x16,.browser-ie .work-docs-icon-link-d0d2d3-24x24,.browser-ie .work-docs-icon-link-8ea9c9-24x24,.browser-ie .work-docs-icon-link-212f3e-24x24,.browser-ie .work-docs-icon-link-0e72a3-24x24,.browser-ie .work-docs-icon-link-808184-24x24,.browser-ie .work-docs-icon-link-ffffff-24x24,.browser-ie .work-docs-icon-link-d0d2d3-16x16,.browser-ie .work-docs-icon-link-8ea9c9-16x16,.browser-ie .work-docs-icon-link-212f3e-16x16,.browser-ie .work-docs-icon-link-0e72a3-16x16,.browser-ie .work-docs-icon-link-808184-16x16,.browser-ie .work-docs-icon-link-ffffff-16x16,.browser-ie .work-docs-icon-share-d0d2d3-24x24,.browser-ie .work-docs-icon-share-8ea9c9-24x24,.browser-ie .work-docs-icon-share-212f3e-24x24,.browser-ie .work-docs-icon-share-0e72a3-24x24,.browser-ie .work-docs-icon-share-808184-24x24,.browser-ie .work-docs-icon-share-ffffff-24x24,.browser-ie .work-docs-icon-share-d0d2d3-16x16,.browser-ie .work-docs-icon-share-8ea9c9-16x16,.browser-ie .work-docs-icon-share-212f3e-16x16,.browser-ie .work-docs-icon-share-0e72a3-16x16,.browser-ie .work-docs-icon-share-808184-16x16,.browser-ie .work-docs-icon-share-ffffff-16x16,.browser-ie .work-docs-icon-doc-sm-d0d2d3-24x24,.browser-ie .work-docs-icon-doc-sm-8ea9c9-24x24,.browser-ie .work-docs-icon-doc-sm-212f3e-24x24,.browser-ie .work-docs-icon-doc-sm-0e72a3-24x24,.browser-ie .work-docs-icon-doc-sm-808184-24x24,.browser-ie .work-docs-icon-doc-sm-ffffff-24x24,.browser-ie .work-docs-icon-doc-sm-d0d2d3-16x16,.browser-ie .work-docs-icon-doc-sm-8ea9c9-16x16,.browser-ie .work-docs-icon-doc-sm-212f3e-16x16,.browser-ie .work-docs-icon-doc-sm-0e72a3-16x16,.browser-ie .work-docs-icon-doc-sm-808184-16x16,.browser-ie .work-docs-icon-doc-sm-ffffff-16x16,.browser-ie .work-docs-icon-folder-sm-d0d2d3-24x24,.browser-ie .work-docs-icon-folder-sm-8ea9c9-24x24,.browser-ie .work-docs-icon-folder-sm-212f3e-24x24,.browser-ie .work-docs-icon-folder-sm-0e72a3-24x24,.browser-ie .work-docs-icon-folder-sm-808184-24x24,.browser-ie .work-docs-icon-folder-sm-ffffff-24x24,.browser-ie .work-docs-icon-folder-sm-d0d2d3-16x16,.browser-ie .work-docs-icon-folder-sm-8ea9c9-16x16,.browser-ie .work-docs-icon-folder-sm-212f3e-16x16,.browser-ie .work-docs-icon-folder-sm-0e72a3-16x16,.browser-ie .work-docs-icon-folder-sm-808184-16x16,.browser-ie .work-docs-icon-folder-sm-ffffff-16x16,.browser-ie .work-docs-icon-locked-d0d2d3-24x24,.browser-ie .work-docs-icon-locked-8ea9c9-24x24,.browser-ie .work-docs-icon-locked-212f3e-24x24,.browser-ie .work-docs-icon-locked-ffa724-24x24,.browser-ie .work-docs-icon-locked-0e72a3-24x24,.browser-ie .work-docs-icon-locked-808184-24x24,.browser-ie .work-docs-icon-locked-ffffff-24x24,.browser-ie .work-docs-icon-locked-d0d2d3-16x16,.browser-ie .work-docs-icon-locked-8ea9c9-16x16,.browser-ie .work-docs-icon-locked-212f3e-16x16,.browser-ie .work-docs-icon-locked-ffa724-16x16,.browser-ie .work-docs-icon-locked-0e72a3-16x16,.browser-ie .work-docs-icon-locked-808184-16x16,.browser-ie .work-docs-icon-locked-ffffff-16x16,.browser-ie .work-docs-icon-unchecked-d0d2d3-24x24,.browser-ie .work-docs-icon-unchecked-8ea9c9-24x24,.browser-ie .work-docs-icon-unchecked-212f3e-24x24,.browser-ie .work-docs-icon-unchecked-0e72a3-24x24,.browser-ie .work-docs-icon-unchecked-808184-24x24,.browser-ie .work-docs-icon-unchecked-ffffff-24x24,.browser-ie .work-docs-icon-unchecked-d0d2d3-16x16,.browser-ie .work-docs-icon-unchecked-8ea9c9-16x16,.browser-ie .work-docs-icon-unchecked-212f3e-16x16,.browser-ie .work-docs-icon-unchecked-0e72a3-16x16,.browser-ie .work-docs-icon-unchecked-808184-16x16,.browser-ie .work-docs-icon-unchecked-ffffff-16x16,.browser-ie .work-docs-icon-checked-d0d2d3-24x24,.browser-ie .work-docs-icon-checked-8ea9c9-24x24,.browser-ie .work-docs-icon-checked-212f3e-24x24,.browser-ie .work-docs-icon-checked-0e72a3-24x24,.browser-ie .work-docs-icon-checked-808184-24x24,.browser-ie .work-docs-icon-checked-ffffff-24x24,.browser-ie .work-docs-icon-checked-d0d2d3-16x16,.browser-ie .work-docs-icon-checked-8ea9c9-16x16,.browser-ie .work-docs-icon-checked-212f3e-16x16,.browser-ie .work-docs-icon-checked-0e72a3-16x16,.browser-ie .work-docs-icon-checked-808184-16x16,.browser-ie .work-docs-icon-checked-ffffff-16x16,.browser-ie .work-docs-icon-checked-solid-d0d2d3-24x24,.browser-ie .work-docs-icon-checked-solid-8ea9c9-24x24,.browser-ie .work-docs-icon-checked-solid-212f3e-24x24,.browser-ie .work-docs-icon-checked-solid-0e72a3-24x24,.browser-ie .work-docs-icon-checked-solid-808184-24x24,.browser-ie .work-docs-icon-checked-solid-ffffff-24x24,.browser-ie .work-docs-icon-checked-solid-d0d2d3-16x16,.browser-ie .work-docs-icon-checked-solid-8ea9c9-16x16,.browser-ie .work-docs-icon-checked-solid-212f3e-16x16,.browser-ie .work-docs-icon-checked-solid-0e72a3-16x16,.browser-ie .work-docs-icon-checked-solid-808184-16x16,.browser-ie .work-docs-icon-checked-solid-ffffff-16x16,.browser-ie .work-docs-icon-trash-sm-d0d2d3-24x24,.browser-ie .work-docs-icon-trash-sm-8ea9c9-24x24,.browser-ie .work-docs-icon-trash-sm-212f3e-24x24,.browser-ie .work-docs-icon-trash-sm-0e72a3-24x24,.browser-ie .work-docs-icon-trash-sm-808184-24x24,.browser-ie .work-docs-icon-trash-sm-ffffff-24x24,.browser-ie .work-docs-icon-trash-sm-d0d2d3-16x16,.browser-ie .work-docs-icon-trash-sm-8ea9c9-16x16,.browser-ie .work-docs-icon-trash-sm-212f3e-16x16,.browser-ie .work-docs-icon-trash-sm-0e72a3-16x16,.browser-ie .work-docs-icon-trash-sm-808184-16x16,.browser-ie .work-docs-icon-trash-sm-ffffff-16x16,.browser-ie .work-docs-icon-add-versions-d0d2d3-24x24,.browser-ie .work-docs-icon-add-versions-8ea9c9-24x24,.browser-ie .work-docs-icon-add-versions-212f3e-24x24,.browser-ie .work-docs-icon-add-versions-0e72a3-24x24,.browser-ie .work-docs-icon-add-versions-808184-24x24,.browser-ie .work-docs-icon-add-versions-ffffff-24x24,.browser-ie .work-docs-icon-add-versions-d0d2d3-16x16,.browser-ie .work-docs-icon-add-versions-8ea9c9-16x16,.browser-ie .work-docs-icon-add-versions-212f3e-16x16,.browser-ie .work-docs-icon-add-versions-0e72a3-16x16,.browser-ie .work-docs-icon-add-versions-808184-16x16,.browser-ie .work-docs-icon-add-versions-ffffff-16x16,.browser-ie .work-docs-icon-versions-d0d2d3-24x24,.browser-ie .work-docs-icon-versions-8ea9c9-24x24,.browser-ie .work-docs-icon-versions-212f3e-24x24,.browser-ie .work-docs-icon-versions-0e72a3-24x24,.browser-ie .work-docs-icon-versions-808184-24x24,.browser-ie .work-docs-icon-versions-ffffff-24x24,.browser-ie .work-docs-icon-versions-d0d2d3-16x16,.browser-ie .work-docs-icon-versions-8ea9c9-16x16,.browser-ie .work-docs-icon-versions-212f3e-16x16,.browser-ie .work-docs-icon-versions-0e72a3-16x16,.browser-ie .work-docs-icon-versions-808184-16x16,.browser-ie .work-docs-icon-versions-ffffff-16x16,.browser-ie .work-docs-icon-doc-lg-d0d2d3-24x24,.browser-ie .work-docs-icon-doc-lg-8ea9c9-24x24,.browser-ie .work-docs-icon-doc-lg-212f3e-24x24,.browser-ie .work-docs-icon-doc-lg-0e72a3-24x24,.browser-ie .work-docs-icon-doc-lg-808184-24x24,.browser-ie .work-docs-icon-doc-lg-ffffff-24x24,.browser-ie .work-docs-icon-doc-lg-d0d2d3-16x16,.browser-ie .work-docs-icon-doc-lg-8ea9c9-16x16,.browser-ie .work-docs-icon-doc-lg-212f3e-16x16,.browser-ie .work-docs-icon-doc-lg-0e72a3-16x16,.browser-ie .work-docs-icon-doc-lg-808184-16x16,.browser-ie .work-docs-icon-doc-lg-ffffff-16x16,.browser-ie .work-docs-icon-folder-lg-d0d2d3-24x24,.browser-ie .work-docs-icon-folder-lg-8ea9c9-24x24,.browser-ie .work-docs-icon-folder-lg-212f3e-24x24,.browser-ie .work-docs-icon-folder-lg-0e72a3-24x24,.browser-ie .work-docs-icon-folder-lg-808184-24x24,.browser-ie .work-docs-icon-folder-lg-ffffff-24x24,.browser-ie .work-docs-icon-folder-lg-d0d2d3-16x16,.browser-ie .work-docs-icon-folder-lg-8ea9c9-16x16,.browser-ie .work-docs-icon-folder-lg-212f3e-16x16,.browser-ie .work-docs-icon-folder-lg-0e72a3-16x16,.browser-ie .work-docs-icon-folder-lg-808184-16x16,.browser-ie .work-docs-icon-folder-lg-ffffff-16x16,.browser-ie .work-docs-icon-hamburger-d0d2d3-24x24,.browser-ie .work-docs-icon-hamburger-8ea9c9-24x24,.browser-ie .work-docs-icon-hamburger-212f3e-24x24,.browser-ie .work-docs-icon-hamburger-0e72a3-24x24,.browser-ie .work-docs-icon-hamburger-808184-24x24,.browser-ie .work-docs-icon-hamburger-ffffff-24x24,.browser-ie .work-docs-icon-hamburger-d0d2d3-16x16,.browser-ie .work-docs-icon-hamburger-8ea9c9-16x16,.browser-ie .work-docs-icon-hamburger-212f3e-16x16,.browser-ie .work-docs-icon-hamburger-0e72a3-16x16,.browser-ie .work-docs-icon-hamburger-808184-16x16,.browser-ie .work-docs-icon-hamburger-ffffff-16x16,.browser-ie .work-docs-icon-back-d0d2d3-36x24,.browser-ie .work-docs-icon-back-8ea9c9-36x24,.browser-ie .work-docs-icon-back-212f3e-36x24,.browser-ie .work-docs-icon-back-0e72a3-36x24,.browser-ie .work-docs-icon-back-808184-36x24,.browser-ie .work-docs-icon-back-ffffff-36x24,.browser-ie .work-docs-icon-back-d0d2d3-24x16,.browser-ie .work-docs-icon-back-8ea9c9-24x16,.browser-ie .work-docs-icon-back-212f3e-24x16,.browser-ie .work-docs-icon-back-0e72a3-24x16,.browser-ie .work-docs-icon-back-808184-24x16,.browser-ie .work-docs-icon-back-ffffff-24x16,.browser-ie .work-docs-icon-tray-control-d0d2d3-24x24,.browser-ie .work-docs-icon-tray-control-8ea9c9-24x24,.browser-ie .work-docs-icon-tray-control-212f3e-24x24,.browser-ie .work-docs-icon-tray-control-0e72a3-24x24,.browser-ie .work-docs-icon-tray-control-808184-24x24,.browser-ie .work-docs-icon-tray-control-ffffff-24x24,.browser-ie .work-docs-icon-tray-control-d0d2d3-16x16,.browser-ie .work-docs-icon-tray-control-8ea9c9-16x16,.browser-ie .work-docs-icon-tray-control-212f3e-16x16,.browser-ie .work-docs-icon-tray-control-0e72a3-16x16,.browser-ie .work-docs-icon-tray-control-808184-16x16,.browser-ie .work-docs-icon-tray-control-ffffff-16x16,.browser-ie .work-docs-icon-bug-d0d2d3-24x24,.browser-ie .work-docs-icon-bug-8ea9c9-24x24,.browser-ie .work-docs-icon-bug-212f3e-24x24,.browser-ie .work-docs-icon-bug-0e72a3-24x24,.browser-ie .work-docs-icon-bug-808184-24x24,.browser-ie .work-docs-icon-bug-ffffff-24x24,.browser-ie .work-docs-icon-bug-d0d2d3-16x16,.browser-ie .work-docs-icon-bug-8ea9c9-16x16,.browser-ie .work-docs-icon-bug-212f3e-16x16,.browser-ie .work-docs-icon-bug-0e72a3-16x16,.browser-ie .work-docs-icon-bug-808184-16x16,.browser-ie .work-docs-icon-bug-ffffff-16x16,.browser-ie .work-docs-icon-list-view-d0d2d3-24x24,.browser-ie .work-docs-icon-list-view-8ea9c9-24x24,.browser-ie .work-docs-icon-list-view-212f3e-24x24,.browser-ie .work-docs-icon-list-view-0e72a3-24x24,.browser-ie .work-docs-icon-list-view-808184-24x24,.browser-ie .work-docs-icon-list-view-ffffff-24x24,.browser-ie .work-docs-icon-list-view-d0d2d3-16x16,.browser-ie .work-docs-icon-list-view-8ea9c9-16x16,.browser-ie .work-docs-icon-list-view-212f3e-16x16,.browser-ie .work-docs-icon-list-view-0e72a3-16x16,.browser-ie .work-docs-icon-list-view-808184-16x16,.browser-ie .work-docs-icon-list-view-ffffff-16x16,.browser-ie .work-docs-icon-icon-view-d0d2d3-24x24,.browser-ie .work-docs-icon-icon-view-8ea9c9-24x24,.browser-ie .work-docs-icon-icon-view-212f3e-24x24,.browser-ie .work-docs-icon-icon-view-0e72a3-24x24,.browser-ie .work-docs-icon-icon-view-808184-24x24,.browser-ie .work-docs-icon-icon-view-ffffff-24x24,.browser-ie .work-docs-icon-icon-view-d0d2d3-16x16,.browser-ie .work-docs-icon-icon-view-8ea9c9-16x16,.browser-ie .work-docs-icon-icon-view-212f3e-16x16,.browser-ie .work-docs-icon-icon-view-0e72a3-16x16,.browser-ie .work-docs-icon-icon-view-808184-16x16,.browser-ie .work-docs-icon-icon-view-ffffff-16x16,.browser-ie .work-docs-icon-remove-d0d2d3-24x24,.browser-ie .work-docs-icon-remove-8ea9c9-24x24,.browser-ie .work-docs-icon-remove-212f3e-24x24,.browser-ie .work-docs-icon-remove-0e72a3-24x24,.browser-ie .work-docs-icon-remove-808184-24x24,.browser-ie .work-docs-icon-remove-ffffff-24x24,.browser-ie .work-docs-icon-remove-d0d2d3-16x16,.browser-ie .work-docs-icon-remove-8ea9c9-16x16,.browser-ie .work-docs-icon-remove-212f3e-16x16,.browser-ie .work-docs-icon-remove-0e72a3-16x16,.browser-ie .work-docs-icon-remove-808184-16x16,.browser-ie .work-docs-icon-remove-ffffff-16x16,.browser-ie .work-docs-icon-add-d0d2d3-24x24,.browser-ie .work-docs-icon-add-8ea9c9-24x24,.browser-ie .work-docs-icon-add-212f3e-24x24,.browser-ie .work-docs-icon-add-0e72a3-24x24,.browser-ie .work-docs-icon-add-808184-24x24,.browser-ie .work-docs-icon-add-ffffff-24x24,.browser-ie .work-docs-icon-add-d0d2d3-16x16,.browser-ie .work-docs-icon-add-8ea9c9-16x16,.browser-ie .work-docs-icon-add-212f3e-16x16,.browser-ie .work-docs-icon-add-0e72a3-16x16,.browser-ie .work-docs-icon-add-808184-16x16,.browser-ie .work-docs-icon-add-ffffff-16x16,.browser-ie .work-docs-icon-add-folder-d0d2d3-24x24,.browser-ie .work-docs-icon-add-folder-8ea9c9-24x24,.browser-ie .work-docs-icon-add-folder-212f3e-24x24,.browser-ie .work-docs-icon-add-folder-0e72a3-24x24,.browser-ie .work-docs-icon-add-folder-808184-24x24,.browser-ie .work-docs-icon-add-folder-ffffff-24x24,.browser-ie .work-docs-icon-add-folder-d0d2d3-16x16,.browser-ie .work-docs-icon-add-folder-8ea9c9-16x16,.browser-ie .work-docs-icon-add-folder-212f3e-16x16,.browser-ie .work-docs-icon-add-folder-0e72a3-16x16,.browser-ie .work-docs-icon-add-folder-808184-16x16,.browser-ie .work-docs-icon-add-folder-ffffff-16x16,.browser-ie .work-docs-icon-comments-d0d2d3-24x24,.browser-ie .work-docs-icon-comments-8ea9c9-24x24,.browser-ie .work-docs-icon-comments-212f3e-24x24,.browser-ie .work-docs-icon-comments-0e72a3-24x24,.browser-ie .work-docs-icon-comments-808184-24x24,.browser-ie .work-docs-icon-comments-ffffff-24x24,.browser-ie .work-docs-icon-comments-d0d2d3-16x16,.browser-ie .work-docs-icon-comments-8ea9c9-16x16,.browser-ie .work-docs-icon-comments-212f3e-16x16,.browser-ie .work-docs-icon-comments-0e72a3-16x16,.browser-ie .work-docs-icon-comments-808184-16x16,.browser-ie .work-docs-icon-comments-ffffff-16x16,.browser-ie .work-docs-icon-search-d0d2d3-24x24,.browser-ie .work-docs-icon-search-8ea9c9-24x24,.browser-ie .work-docs-icon-search-212f3e-24x24,.browser-ie .work-docs-icon-search-0e72a3-24x24,.browser-ie .work-docs-icon-search-808184-24x24,.browser-ie .work-docs-icon-search-ffffff-24x24,.browser-ie .work-docs-icon-search-d0d2d3-16x16,.browser-ie .work-docs-icon-search-8ea9c9-16x16,.browser-ie .work-docs-icon-search-212f3e-16x16,.browser-ie .work-docs-icon-search-0e72a3-16x16,.browser-ie .work-docs-icon-search-808184-16x16,.browser-ie .work-docs-icon-search-ffffff-16x16,.browser-ie .work-docs-icon-device-offline-documents-d0d2d3-24x24,.browser-ie .work-docs-icon-device-offline-documents-8ea9c9-24x24,.browser-ie .work-docs-icon-device-offline-documents-212f3e-24x24,.browser-ie .work-docs-icon-device-offline-documents-0e72a3-24x24,.browser-ie .work-docs-icon-device-offline-documents-808184-24x24,.browser-ie .work-docs-icon-device-offline-documents-ffffff-24x24,.browser-ie .work-docs-icon-device-offline-documents-d0d2d3-16x16,.browser-ie .work-docs-icon-device-offline-documents-8ea9c9-16x16,.browser-ie .work-docs-icon-device-offline-documents-212f3e-16x16,.browser-ie .work-docs-icon-device-offline-documents-0e72a3-16x16,.browser-ie .work-docs-icon-device-offline-documents-808184-16x16,.browser-ie .work-docs-icon-device-offline-documents-ffffff-16x16,.browser-ie .work-docs-icon-filled-offline-documents-d0d2d3-24x24,.browser-ie .work-docs-icon-filled-offline-documents-8ea9c9-24x24,.browser-ie .work-docs-icon-filled-offline-documents-212f3e-24x24,.browser-ie .work-docs-icon-filled-offline-documents-0e72a3-24x24,.browser-ie .work-docs-icon-filled-offline-documents-808184-24x24,.browser-ie .work-docs-icon-filled-offline-documents-ffffff-24x24,.browser-ie .work-docs-icon-filled-offline-documents-d0d2d3-16x16,.browser-ie .work-docs-icon-filled-offline-documents-8ea9c9-16x16,.browser-ie .work-docs-icon-filled-offline-documents-212f3e-16x16,.browser-ie .work-docs-icon-filled-offline-documents-0e72a3-16x16,.browser-ie .work-docs-icon-filled-offline-documents-808184-16x16,.browser-ie .work-docs-icon-filled-offline-documents-ffffff-16x16,.browser-ie .work-docs-icon-offline-documents-d0d2d3-24x24,.browser-ie .work-docs-icon-offline-documents-8ea9c9-24x24,.browser-ie .work-docs-icon-offline-documents-212f3e-24x24,.browser-ie .work-docs-icon-offline-documents-0e72a3-24x24,.browser-ie .work-docs-icon-offline-documents-808184-24x24,.browser-ie .work-docs-icon-offline-documents-ffffff-24x24,.browser-ie .work-docs-icon-offline-documents-d0d2d3-16x16,.browser-ie .work-docs-icon-offline-documents-8ea9c9-16x16,.browser-ie .work-docs-icon-offline-documents-212f3e-16x16,.browser-ie .work-docs-icon-offline-documents-0e72a3-16x16,.browser-ie .work-docs-icon-offline-documents-808184-16x16,.browser-ie .work-docs-icon-offline-documents-ffffff-16x16,.browser-ie .work-docs-icon-settings-d0d2d3-24x24,.browser-ie .work-docs-icon-settings-8ea9c9-24x24,.browser-ie .work-docs-icon-settings-212f3e-24x24,.browser-ie .work-docs-icon-settings-0e72a3-24x24,.browser-ie .work-docs-icon-settings-808184-24x24,.browser-ie .work-docs-icon-settings-ffffff-24x24,.browser-ie .work-docs-icon-settings-d0d2d3-16x16,.browser-ie .work-docs-icon-settings-8ea9c9-16x16,.browser-ie .work-docs-icon-settings-212f3e-16x16,.browser-ie .work-docs-icon-settings-0e72a3-16x16,.browser-ie .work-docs-icon-settings-808184-16x16,.browser-ie .work-docs-icon-settings-ffffff-16x16,.browser-ie .work-docs-icon-log-out-d0d2d3-24x24,.browser-ie .work-docs-icon-log-out-8ea9c9-24x24,.browser-ie .work-docs-icon-log-out-212f3e-24x24,.browser-ie .work-docs-icon-log-out-0e72a3-24x24,.browser-ie .work-docs-icon-log-out-808184-24x24,.browser-ie .work-docs-icon-log-out-ffffff-24x24,.browser-ie .work-docs-icon-log-out-d0d2d3-16x16,.browser-ie .work-docs-icon-log-out-8ea9c9-16x16,.browser-ie .work-docs-icon-log-out-212f3e-16x16,.browser-ie .work-docs-icon-log-out-0e72a3-16x16,.browser-ie .work-docs-icon-log-out-808184-16x16,.browser-ie .work-docs-icon-log-out-ffffff-16x16,.browser-ie .work-docs-icon-download-apps-0e72a3-24x24,.browser-ie .work-docs-icon-download-apps-8ea9c9-24x24,.browser-ie .work-docs-icon-download-apps-212f3e-24x24,.browser-ie .work-docs-icon-download-apps-808184-24x24,.browser-ie .work-docs-icon-download-apps-d0d2d3-24x24,.browser-ie .work-docs-icon-download-apps-ffffff-24x24,.browser-ie .work-docs-icon-download-apps-0e72a3-16x16,.browser-ie .work-docs-icon-download-apps-8ea9c9-16x16,.browser-ie .work-docs-icon-download-apps-212f3e-16x16,.browser-ie .work-docs-icon-download-apps-808184-16x16,.browser-ie .work-docs-icon-download-apps-d0d2d3-16x16,.browser-ie .work-docs-icon-download-apps-ffffff-16x16,.browser-ie .work-docs-icon-profile-d0d2d3-24x24,.browser-ie .work-docs-icon-profile-8ea9c9-24x24,.browser-ie .work-docs-icon-profile-212f3e-24x24,.browser-ie .work-docs-icon-profile-0e72a3-24x24,.browser-ie .work-docs-icon-profile-808184-24x24,.browser-ie .work-docs-icon-profile-ffffff-24x24,.browser-ie .work-docs-icon-profile-d0d2d3-16x16,.browser-ie .work-docs-icon-profile-8ea9c9-16x16,.browser-ie .work-docs-icon-profile-212f3e-16x16,.browser-ie .work-docs-icon-profile-0e72a3-16x16,.browser-ie .work-docs-icon-profile-808184-16x16,.browser-ie .work-docs-icon-profile-ffffff-16x16,.browser-ie .work-docs-icon-trash-d0d2d3-24x24,.browser-ie .work-docs-icon-trash-8ea9c9-24x24,.browser-ie .work-docs-icon-trash-212f3e-24x24,.browser-ie .work-docs-icon-trash-0e72a3-24x24,.browser-ie .work-docs-icon-trash-808184-24x24,.browser-ie .work-docs-icon-trash-ffffff-24x24,.browser-ie .work-docs-icon-trash-d0d2d3-16x16,.browser-ie .work-docs-icon-trash-8ea9c9-16x16,.browser-ie .work-docs-icon-trash-212f3e-16x16,.browser-ie .work-docs-icon-trash-0e72a3-16x16,.browser-ie .work-docs-icon-trash-808184-16x16,.browser-ie .work-docs-icon-trash-ffffff-16x16,.browser-ie .work-docs-icon-out-for-review-d0d2d3-24x24,.browser-ie .work-docs-icon-out-for-review-8ea9c9-24x24,.browser-ie .work-docs-icon-out-for-review-212f3e-24x24,.browser-ie .work-docs-icon-out-for-review-0e72a3-24x24,.browser-ie .work-docs-icon-out-for-review-808184-24x24,.browser-ie .work-docs-icon-out-for-review-ffffff-24x24,.browser-ie .work-docs-icon-out-for-review-d0d2d3-16x16,.browser-ie .work-docs-icon-out-for-review-8ea9c9-16x16,.browser-ie .work-docs-icon-out-for-review-212f3e-16x16,.browser-ie .work-docs-icon-out-for-review-0e72a3-16x16,.browser-ie .work-docs-icon-out-for-review-808184-16x16,.browser-ie .work-docs-icon-out-for-review-ffffff-16x16,.browser-ie .work-docs-icon-awaiting-feedback-d0d2d3-24x24,.browser-ie .work-docs-icon-awaiting-feedback-8ea9c9-24x24,.browser-ie .work-docs-icon-awaiting-feedback-212f3e-24x24,.browser-ie .work-docs-icon-awaiting-feedback-0e72a3-24x24,.browser-ie .work-docs-icon-awaiting-feedback-808184-24x24,.browser-ie .work-docs-icon-awaiting-feedback-ffffff-24x24,.browser-ie .work-docs-icon-awaiting-feedback-d0d2d3-16x16,.browser-ie .work-docs-icon-awaiting-feedback-8ea9c9-16x16,.browser-ie .work-docs-icon-awaiting-feedback-212f3e-16x16,.browser-ie .work-docs-icon-awaiting-feedback-0e72a3-16x16,.browser-ie .work-docs-icon-awaiting-feedback-808184-16x16,.browser-ie .work-docs-icon-awaiting-feedback-ffffff-16x16,.browser-ie .work-docs-icon-shared-with-me-d0d2d3-24x24,.browser-ie .work-docs-icon-shared-with-me-8ea9c9-24x24,.browser-ie .work-docs-icon-shared-with-me-212f3e-24x24,.browser-ie .work-docs-icon-shared-with-me-0e72a3-24x24,.browser-ie .work-docs-icon-shared-with-me-808184-24x24,.browser-ie .work-docs-icon-shared-with-me-ffffff-24x24,.browser-ie .work-docs-icon-shared-with-me-d0d2d3-16x16,.browser-ie .work-docs-icon-shared-with-me-8ea9c9-16x16,.browser-ie .work-docs-icon-shared-with-me-212f3e-16x16,.browser-ie .work-docs-icon-shared-with-me-0e72a3-16x16,.browser-ie .work-docs-icon-shared-with-me-808184-16x16,.browser-ie .work-docs-icon-shared-with-me-ffffff-16x16,.browser-ie .work-docs-icon-my-documents-d0d2d3-24x24,.browser-ie .work-docs-icon-my-documents-8ea9c9-24x24,.browser-ie .work-docs-icon-my-documents-212f3e-24x24,.browser-ie .work-docs-icon-my-documents-0e72a3-24x24,.browser-ie .work-docs-icon-my-documents-808184-24x24,.browser-ie .work-docs-icon-my-documents-ffffff-24x24,.browser-ie .work-docs-icon-my-documents-d0d2d3-16x16,.browser-ie .work-docs-icon-my-documents-8ea9c9-16x16,.browser-ie .work-docs-icon-my-documents-212f3e-16x16,.browser-ie .work-docs-icon-my-documents-0e72a3-16x16,.browser-ie .work-docs-icon-my-documents-808184-16x16,.browser-ie .work-docs-icon-my-documents-ffffff-16x16,.browser-ie .work-docs-icon-comments-xl-bold-d0d2d3-64x64,.browser-ie .work-docs-icon-comments-xl-bold-8ea9c9-64x64,.browser-ie .work-docs-icon-comments-xl-bold-212f3e-64x64,.browser-ie .work-docs-icon-comments-xl-bold-0e72a3-64x64,.browser-ie .work-docs-icon-comments-xl-bold-808184-64x64,.browser-ie .work-docs-icon-comments-xl-bold-ffffff-64x64,.browser-ie .work-docs-icon-comments-xl-bold-d0d2d3-32x32,.browser-ie .work-docs-icon-comments-xl-bold-8ea9c9-32x32,.browser-ie .work-docs-icon-comments-xl-bold-212f3e-32x32,.browser-ie .work-docs-icon-comments-xl-bold-0e72a3-32x32,.browser-ie .work-docs-icon-comments-xl-bold-808184-32x32,.browser-ie .work-docs-icon-comments-xl-bold-ffffff-32x32,.browser-ie .work-docs-icon-comments-xl-d0d2d3-64x64,.browser-ie .work-docs-icon-comments-xl-8ea9c9-64x64,.browser-ie .work-docs-icon-comments-xl-212f3e-64x64,.browser-ie .work-docs-icon-comments-xl-0e72a3-64x64,.browser-ie .work-docs-icon-comments-xl-808184-64x64,.browser-ie .work-docs-icon-comments-xl-ffffff-64x64,.browser-ie .work-docs-icon-comments-xl-d0d2d3-32x32,.browser-ie .work-docs-icon-comments-xl-8ea9c9-32x32,.browser-ie .work-docs-icon-comments-xl-212f3e-32x32,.browser-ie .work-docs-icon-comments-xl-0e72a3-32x32,.browser-ie .work-docs-icon-comments-xl-808184-32x32,.browser-ie .work-docs-icon-comments-xl-ffffff-32x32,.browser-ie .work-docs-icon-search-xl-bold-d0d2d3-64x64,.browser-ie .work-docs-icon-search-xl-bold-8ea9c9-64x64,.browser-ie .work-docs-icon-search-xl-bold-212f3e-64x64,.browser-ie .work-docs-icon-search-xl-bold-0e72a3-64x64,.browser-ie .work-docs-icon-search-xl-bold-808184-64x64,.browser-ie .work-docs-icon-search-xl-bold-ffffff-64x64,.browser-ie .work-docs-icon-search-xl-bold-d0d2d3-32x32,.browser-ie .work-docs-icon-search-xl-bold-8ea9c9-32x32,.browser-ie .work-docs-icon-search-xl-bold-212f3e-32x32,.browser-ie .work-docs-icon-search-xl-bold-0e72a3-32x32,.browser-ie .work-docs-icon-search-xl-bold-808184-32x32,.browser-ie .work-docs-icon-search-xl-bold-ffffff-32x32,.browser-ie .work-docs-icon-search-xl-d0d2d3-64x64,.browser-ie .work-docs-icon-search-xl-8ea9c9-64x64,.browser-ie .work-docs-icon-search-xl-212f3e-64x64,.browser-ie .work-docs-icon-search-xl-0e72a3-64x64,.browser-ie .work-docs-icon-search-xl-808184-64x64,.browser-ie .work-docs-icon-search-xl-ffffff-64x64,.browser-ie .work-docs-icon-search-xl-d0d2d3-32x32,.browser-ie .work-docs-icon-search-xl-8ea9c9-32x32,.browser-ie .work-docs-icon-search-xl-212f3e-32x32,.browser-ie .work-docs-icon-search-xl-0e72a3-32x32,.browser-ie .work-docs-icon-search-xl-808184-32x32,.browser-ie .work-docs-icon-search-xl-ffffff-32x32,.browser-ie .work-docs-icon-offline-documents-xl-bold-d0d2d3-64x64,.browser-ie .work-docs-icon-offline-documents-xl-bold-8ea9c9-64x64,.browser-ie .work-docs-icon-offline-documents-xl-bold-212f3e-64x64,.browser-ie .work-docs-icon-offline-documents-xl-bold-0e72a3-64x64,.browser-ie .work-docs-icon-offline-documents-xl-bold-808184-64x64,.browser-ie .work-docs-icon-offline-documents-xl-bold-ffffff-64x64,.browser-ie .work-docs-icon-offline-documents-xl-bold-d0d2d3-32x32,.browser-ie .work-docs-icon-offline-documents-xl-bold-8ea9c9-32x32,.browser-ie .work-docs-icon-offline-documents-xl-bold-212f3e-32x32,.browser-ie .work-docs-icon-offline-documents-xl-bold-0e72a3-32x32,.browser-ie .work-docs-icon-offline-documents-xl-bold-808184-32x32,.browser-ie .work-docs-icon-offline-documents-xl-bold-ffffff-32x32,.browser-ie .work-docs-icon-offline-documents-xl-d0d2d3-64x64,.browser-ie .work-docs-icon-offline-documents-xl-8ea9c9-64x64,.browser-ie .work-docs-icon-offline-documents-xl-212f3e-64x64,.browser-ie .work-docs-icon-offline-documents-xl-0e72a3-64x64,.browser-ie .work-docs-icon-offline-documents-xl-808184-64x64,.browser-ie .work-docs-icon-offline-documents-xl-ffffff-64x64,.browser-ie .work-docs-icon-offline-documents-xl-d0d2d3-32x32,.browser-ie .work-docs-icon-offline-documents-xl-8ea9c9-32x32,.browser-ie .work-docs-icon-offline-documents-xl-212f3e-32x32,.browser-ie .work-docs-icon-offline-documents-xl-0e72a3-32x32,.browser-ie .work-docs-icon-offline-documents-xl-808184-32x32,.browser-ie .work-docs-icon-offline-documents-xl-ffffff-32x32,.browser-ie .work-docs-icon-settings-xl-bold-d0d2d3-64x64,.browser-ie .work-docs-icon-settings-xl-bold-8ea9c9-64x64,.browser-ie .work-docs-icon-settings-xl-bold-212f3e-64x64,.browser-ie .work-docs-icon-settings-xl-bold-0e72a3-64x64,.browser-ie .work-docs-icon-settings-xl-bold-808184-64x64,.browser-ie .work-docs-icon-settings-xl-bold-ffffff-64x64,.browser-ie .work-docs-icon-settings-xl-bold-d0d2d3-32x32,.browser-ie .work-docs-icon-settings-xl-bold-8ea9c9-32x32,.browser-ie .work-docs-icon-settings-xl-bold-212f3e-32x32,.browser-ie .work-docs-icon-settings-xl-bold-0e72a3-32x32,.browser-ie .work-docs-icon-settings-xl-bold-808184-32x32,.browser-ie .work-docs-icon-settings-xl-bold-ffffff-32x32,.browser-ie .work-docs-icon-settings-xl-d0d2d3-65x64,.browser-ie .work-docs-icon-settings-xl-8ea9c9-65x64,.browser-ie .work-docs-icon-settings-xl-212f3e-65x64,.browser-ie .work-docs-icon-settings-xl-0e72a3-65x64,.browser-ie .work-docs-icon-settings-xl-808184-65x64,.browser-ie .work-docs-icon-settings-xl-ffffff-65x64,.browser-ie .work-docs-icon-settings-xl-d0d2d3-32x32,.browser-ie .work-docs-icon-settings-xl-8ea9c9-32x32,.browser-ie .work-docs-icon-settings-xl-212f3e-32x32,.browser-ie .work-docs-icon-settings-xl-0e72a3-32x32,.browser-ie .work-docs-icon-settings-xl-808184-32x32,.browser-ie .work-docs-icon-settings-xl-ffffff-32x32,.browser-ie .work-docs-icon-log-out-xl-bold-d0d2d3-64x64,.browser-ie .work-docs-icon-log-out-xl-bold-8ea9c9-64x64,.browser-ie .work-docs-icon-log-out-xl-bold-212f3e-64x64,.browser-ie .work-docs-icon-log-out-xl-bold-0e72a3-64x64,.browser-ie .work-docs-icon-log-out-xl-bold-808184-64x64,.browser-ie .work-docs-icon-log-out-xl-bold-ffffff-64x64,.browser-ie .work-docs-icon-log-out-xl-bold-d0d2d3-32x32,.browser-ie .work-docs-icon-log-out-xl-bold-8ea9c9-32x32,.browser-ie .work-docs-icon-log-out-xl-bold-212f3e-32x32,.browser-ie .work-docs-icon-log-out-xl-bold-0e72a3-32x32,.browser-ie .work-docs-icon-log-out-xl-bold-808184-32x32,.browser-ie .work-docs-icon-log-out-xl-bold-ffffff-32x32,.browser-ie .work-docs-icon-log-out-xl-d0d2d3-64x64,.browser-ie .work-docs-icon-log-out-xl-8ea9c9-64x64,.browser-ie .work-docs-icon-log-out-xl-212f3e-64x64,.browser-ie .work-docs-icon-log-out-xl-0e72a3-64x64,.browser-ie .work-docs-icon-log-out-xl-808184-64x64,.browser-ie .work-docs-icon-log-out-xl-ffffff-64x64,.browser-ie .work-docs-icon-log-out-xl-d0d2d3-32x32,.browser-ie .work-docs-icon-log-out-xl-8ea9c9-32x32,.browser-ie .work-docs-icon-log-out-xl-212f3e-32x32,.browser-ie .work-docs-icon-log-out-xl-0e72a3-32x32,.browser-ie .work-docs-icon-log-out-xl-808184-32x32,.browser-ie .work-docs-icon-log-out-xl-ffffff-32x32,.browser-ie .work-docs-icon-download-apps-xl-bold-0e72a3-64x64,.browser-ie .work-docs-icon-download-apps-xl-bold-0e72a3-32x32,.browser-ie .work-docs-icon-download-apps-xl-bold-8ea9c9-64x64,.browser-ie .work-docs-icon-download-apps-xl-bold-8ea9c9-32x32,.browser-ie .work-docs-icon-download-apps-xl-bold-212f3e-64x64,.browser-ie .work-docs-icon-download-apps-xl-bold-212f3e-32x32,.browser-ie .work-docs-icon-download-apps-xl-bold-808184-64x64,.browser-ie .work-docs-icon-download-apps-xl-bold-808184-32x32,.browser-ie .work-docs-icon-download-apps-xl-bold-d0d2d3-64x64,.browser-ie .work-docs-icon-download-apps-xl-bold-ffffff-64x64,.browser-ie .work-docs-icon-download-apps-xl-bold-d0d2d3-32x32,.browser-ie .work-docs-icon-download-apps-xl-bold-ffffff-32x32,.browser-ie .work-docs-icon-download-apps-xl-0e72a3-64x64,.browser-ie .work-docs-icon-download-apps-xl-0e72a3-32x32,.browser-ie .work-docs-icon-download-apps-xl-8ea9c9-64x64,.browser-ie .work-docs-icon-download-apps-xl-8ea9c9-32x32,.browser-ie .work-docs-icon-download-apps-xl-212f3e-64x64,.browser-ie .work-docs-icon-download-apps-xl-212f3e-32x32,.browser-ie .work-docs-icon-download-apps-xl-808184-64x64,.browser-ie .work-docs-icon-download-apps-xl-d0d2d3-64x64,.browser-ie .work-docs-icon-download-apps-xl-ffffff-64x64,.browser-ie .work-docs-icon-download-apps-xl-808184-32x32,.browser-ie .work-docs-icon-download-apps-xl-d0d2d3-32x32,.browser-ie .work-docs-icon-download-apps-xl-ffffff-32x32,.browser-ie .work-docs-icon-profile-xl-bold-d0d2d3-64x64,.browser-ie .work-docs-icon-profile-xl-bold-8ea9c9-64x64,.browser-ie .work-docs-icon-profile-xl-bold-212f3e-64x64,.browser-ie .work-docs-icon-profile-xl-bold-0e72a3-64x64,.browser-ie .work-docs-icon-profile-xl-bold-808184-64x64,.browser-ie .work-docs-icon-profile-xl-bold-ffffff-64x64,.browser-ie .work-docs-icon-profile-xl-bold-d0d2d3-32x32,.browser-ie .work-docs-icon-profile-xl-bold-8ea9c9-32x32,.browser-ie .work-docs-icon-profile-xl-bold-212f3e-32x32,.browser-ie .work-docs-icon-profile-xl-bold-0e72a3-32x32,.browser-ie .work-docs-icon-profile-xl-bold-808184-32x32,.browser-ie .work-docs-icon-profile-xl-bold-ffffff-32x32,.browser-ie .work-docs-icon-profile-xl-d0d2d3-64x64,.browser-ie .work-docs-icon-profile-xl-8ea9c9-64x64,.browser-ie .work-docs-icon-profile-xl-212f3e-64x64,.browser-ie .work-docs-icon-profile-xl-0e72a3-64x64,.browser-ie .work-docs-icon-profile-xl-808184-64x64,.browser-ie .work-docs-icon-profile-xl-ffffff-64x64,.browser-ie .work-docs-icon-profile-xl-d0d2d3-32x32,.browser-ie .work-docs-icon-profile-xl-8ea9c9-32x32,.browser-ie .work-docs-icon-profile-xl-212f3e-32x32,.browser-ie .work-docs-icon-profile-xl-0e72a3-32x32,.browser-ie .work-docs-icon-profile-xl-808184-32x32,.browser-ie .work-docs-icon-profile-xl-ffffff-32x32,.browser-ie .work-docs-icon-trash-xl-bold-d0d2d3-64x64,.browser-ie .work-docs-icon-trash-xl-bold-8ea9c9-64x64,.browser-ie .work-docs-icon-trash-xl-bold-212f3e-64x64,.browser-ie .work-docs-icon-trash-xl-bold-0e72a3-64x64,.browser-ie .work-docs-icon-trash-xl-bold-808184-64x64,.browser-ie .work-docs-icon-trash-xl-bold-ffffff-64x64,.browser-ie .work-docs-icon-trash-xl-bold-d0d2d3-32x32,.browser-ie .work-docs-icon-trash-xl-bold-8ea9c9-32x32,.browser-ie .work-docs-icon-trash-xl-bold-212f3e-32x32,.browser-ie .work-docs-icon-trash-xl-bold-0e72a3-32x32,.browser-ie .work-docs-icon-trash-xl-bold-808184-32x32,.browser-ie .work-docs-icon-trash-xl-bold-ffffff-32x32,.browser-ie .work-docs-icon-trash-xl-d0d2d3-64x64,.browser-ie .work-docs-icon-trash-xl-8ea9c9-64x64,.browser-ie .work-docs-icon-trash-xl-212f3e-64x64,.browser-ie .work-docs-icon-trash-xl-0e72a3-64x64,.browser-ie .work-docs-icon-trash-xl-808184-64x64,.browser-ie .work-docs-icon-trash-xl-ffffff-64x64,.browser-ie .work-docs-icon-trash-xl-d0d2d3-32x32,.browser-ie .work-docs-icon-trash-xl-8ea9c9-32x32,.browser-ie .work-docs-icon-trash-xl-212f3e-32x32,.browser-ie .work-docs-icon-trash-xl-0e72a3-32x32,.browser-ie .work-docs-icon-trash-xl-808184-32x32,.browser-ie .work-docs-icon-trash-xl-ffffff-32x32,.browser-ie .work-docs-icon-out-for-review-xl-bold-d0d2d3-64x64,.browser-ie .work-docs-icon-out-for-review-xl-bold-8ea9c9-64x64,.browser-ie .work-docs-icon-out-for-review-xl-bold-212f3e-64x64,.browser-ie .work-docs-icon-out-for-review-xl-bold-0e72a3-64x64,.browser-ie .work-docs-icon-out-for-review-xl-bold-808184-64x64,.browser-ie .work-docs-icon-out-for-review-xl-bold-ffffff-64x64,.browser-ie .work-docs-icon-out-for-review-xl-bold-d0d2d3-32x32,.browser-ie .work-docs-icon-out-for-review-xl-bold-8ea9c9-32x32,.browser-ie .work-docs-icon-out-for-review-xl-bold-212f3e-32x32,.browser-ie .work-docs-icon-out-for-review-xl-bold-0e72a3-32x32,.browser-ie .work-docs-icon-out-for-review-xl-bold-808184-32x32,.browser-ie .work-docs-icon-out-for-review-xl-bold-ffffff-32x32,.browser-ie .work-docs-icon-out-for-review-xl-d0d2d3-64x64,.browser-ie .work-docs-icon-out-for-review-xl-8ea9c9-64x64,.browser-ie .work-docs-icon-out-for-review-xl-212f3e-64x64,.browser-ie .work-docs-icon-out-for-review-xl-0e72a3-64x64,.browser-ie .work-docs-icon-out-for-review-xl-808184-64x64,.browser-ie .work-docs-icon-out-for-review-xl-ffffff-64x64,.browser-ie .work-docs-icon-out-for-review-xl-d0d2d3-32x32,.browser-ie .work-docs-icon-out-for-review-xl-8ea9c9-32x32,.browser-ie .work-docs-icon-out-for-review-xl-212f3e-32x32,.browser-ie .work-docs-icon-out-for-review-xl-0e72a3-32x32,.browser-ie .work-docs-icon-out-for-review-xl-808184-32x32,.browser-ie .work-docs-icon-out-for-review-xl-ffffff-32x32,.browser-ie .work-docs-icon-awaiting-feedback-xl-bold-d0d2d3-64x64,.browser-ie .work-docs-icon-awaiting-feedback-xl-bold-8ea9c9-64x64,.browser-ie .work-docs-icon-awaiting-feedback-xl-bold-212f3e-64x64,.browser-ie .work-docs-icon-awaiting-feedback-xl-bold-0e72a3-64x64,.browser-ie .work-docs-icon-awaiting-feedback-xl-bold-808184-64x64,.browser-ie .work-docs-icon-awaiting-feedback-xl-bold-ffffff-64x64,.browser-ie .work-docs-icon-awaiting-feedback-xl-bold-d0d2d3-32x32,.browser-ie .work-docs-icon-awaiting-feedback-xl-bold-8ea9c9-32x32,.browser-ie .work-docs-icon-awaiting-feedback-xl-bold-212f3e-32x32,.browser-ie .work-docs-icon-awaiting-feedback-xl-bold-0e72a3-32x32,.browser-ie .work-docs-icon-awaiting-feedback-xl-bold-808184-32x32,.browser-ie .work-docs-icon-awaiting-feedback-xl-bold-ffffff-32x32,.browser-ie .work-docs-icon-awaiting-feedback-xl-d0d2d3-64x64,.browser-ie .work-docs-icon-awaiting-feedback-xl-8ea9c9-64x64,.browser-ie .work-docs-icon-awaiting-feedback-xl-212f3e-64x64,.browser-ie .work-docs-icon-awaiting-feedback-xl-0e72a3-64x64,.browser-ie .work-docs-icon-awaiting-feedback-xl-808184-64x64,.browser-ie .work-docs-icon-awaiting-feedback-xl-ffffff-64x64,.browser-ie .work-docs-icon-awaiting-feedback-xl-d0d2d3-32x32,.browser-ie .work-docs-icon-awaiting-feedback-xl-8ea9c9-32x32,.browser-ie .work-docs-icon-awaiting-feedback-xl-212f3e-32x32,.browser-ie .work-docs-icon-awaiting-feedback-xl-0e72a3-32x32,.browser-ie .work-docs-icon-awaiting-feedback-xl-808184-32x32,.browser-ie .work-docs-icon-awaiting-feedback-xl-ffffff-32x32,.browser-ie .work-docs-icon-shared-with-me-xl-bold-d0d2d3-64x64,.browser-ie .work-docs-icon-shared-with-me-xl-bold-8ea9c9-64x64,.browser-ie .work-docs-icon-shared-with-me-xl-bold-212f3e-64x64,.browser-ie .work-docs-icon-shared-with-me-xl-bold-0e72a3-64x64,.browser-ie .work-docs-icon-shared-with-me-xl-bold-808184-64x64,.browser-ie .work-docs-icon-shared-with-me-xl-bold-ffffff-64x64,.browser-ie .work-docs-icon-shared-with-me-xl-bold-d0d2d3-32x32,.browser-ie .work-docs-icon-shared-with-me-xl-bold-8ea9c9-32x32,.browser-ie .work-docs-icon-shared-with-me-xl-bold-212f3e-32x32,.browser-ie .work-docs-icon-shared-with-me-xl-bold-0e72a3-32x32,.browser-ie .work-docs-icon-shared-with-me-xl-bold-808184-32x32,.browser-ie .work-docs-icon-shared-with-me-xl-bold-ffffff-32x32,.browser-ie .work-docs-icon-shared-with-me-xl-d0d2d3-64x64,.browser-ie .work-docs-icon-shared-with-me-xl-8ea9c9-64x64,.browser-ie .work-docs-icon-shared-with-me-xl-212f3e-64x64,.browser-ie .work-docs-icon-shared-with-me-xl-0e72a3-64x64,.browser-ie .work-docs-icon-shared-with-me-xl-808184-64x64,.browser-ie .work-docs-icon-shared-with-me-xl-ffffff-64x64,.browser-ie .work-docs-icon-shared-with-me-xl-d0d2d3-32x32,.browser-ie .work-docs-icon-shared-with-me-xl-8ea9c9-32x32,.browser-ie .work-docs-icon-shared-with-me-xl-212f3e-32x32,.browser-ie .work-docs-icon-shared-with-me-xl-0e72a3-32x32,.browser-ie .work-docs-icon-shared-with-me-xl-808184-32x32,.browser-ie .work-docs-icon-shared-with-me-xl-ffffff-32x32,.browser-ie .work-docs-icon-my-documents-xl-bold-d0d2d3-64x64,.browser-ie .work-docs-icon-my-documents-xl-bold-8ea9c9-64x64,.browser-ie .work-docs-icon-my-documents-xl-bold-212f3e-64x64,.browser-ie .work-docs-icon-my-documents-xl-bold-0e72a3-64x64,.browser-ie .work-docs-icon-my-documents-xl-bold-808184-64x64,.browser-ie .work-docs-icon-my-documents-xl-bold-ffffff-64x64,.browser-ie .work-docs-icon-my-documents-xl-bold-d0d2d3-32x32,.browser-ie .work-docs-icon-my-documents-xl-bold-8ea9c9-32x32,.browser-ie .work-docs-icon-my-documents-xl-bold-212f3e-32x32,.browser-ie .work-docs-icon-my-documents-xl-bold-0e72a3-32x32,.browser-ie .work-docs-icon-my-documents-xl-bold-808184-32x32,.browser-ie .work-docs-icon-my-documents-xl-bold-ffffff-32x32,.browser-ie .work-docs-icon-my-documents-xl-d0d2d3-64x64,.browser-ie .work-docs-icon-my-documents-xl-8ea9c9-64x64,.browser-ie .work-docs-icon-my-documents-xl-212f3e-64x64,.browser-ie .work-docs-icon-my-documents-xl-0e72a3-64x64,.browser-ie .work-docs-icon-my-documents-xl-808184-64x64,.browser-ie .work-docs-icon-my-documents-xl-ffffff-64x64,.browser-ie .work-docs-icon-my-documents-xl-d0d2d3-32x32,.browser-ie .work-docs-icon-my-documents-xl-8ea9c9-32x32,.browser-ie .work-docs-icon-my-documents-xl-212f3e-32x32,.browser-ie .work-docs-icon-my-documents-xl-0e72a3-32x32,.browser-ie .work-docs-icon-my-documents-xl-808184-32x32,.browser-ie .work-docs-icon-my-documents-xl-ffffff-32x32,.browser-ie .work-docs-icon-no-preview-212f3e-72x72,.browser-ie .work-docs-icon-remove-me-from-share-alternate-212f3e-72x72,.browser-ie .work-docs-icon-locked-212f3e-72x72,.browser-ie .work-docs-icon-open-folder-212f3e-72x72,.browser-ie .work-docs-icon-session-expired-212f3e-72x72,.browser-ie .work-docs-icon-progress-0e72a3-72x72,.browser-ie .work-docs-icon-progress-212f3e-72x72,.browser-ie .work-docs-icon-broken-link-212f3e-72x72,.browser-ie .work-docs-icon-upload-to-cloud-212f3e-72x72{background-repeat:no-repeat;background-image:url(images/work-docs-icon_20170824_6dfb7ee3beb8db770a1f5f94fe5b1bcb.png);background-size:1000px 7800px}.browser-non-ie .work-docs-icon-group-3-9x11,.browser-non-ie .work-docs-icon-pdf-0e72a3-16x17,.browser-non-ie .work-docs-icon-pdf-0e72a3-24x25,.browser-non-ie .work-docs-icon-pdf-8ea9c9-16x17,.browser-non-ie .work-docs-icon-pdf-8ea9c9-24x25,.browser-non-ie .work-docs-icon-pdf-d0d2d3-16x17,.browser-non-ie .work-docs-icon-pdf-d0d2d3-24x25,.browser-non-ie .work-docs-icon-pdf-ffffff-16x17,.browser-non-ie .work-docs-icon-pdf-ffffff-24x25,.browser-non-ie .work-docs-icon-pdf-212f3e-16x17,.browser-non-ie .work-docs-icon-pdf-212f3e-24x25,.browser-non-ie .work-docs-icon-pdf-787982-16x17,.browser-non-ie .work-docs-icon-text-0e72a3-24x24,.browser-non-ie .work-docs-icon-text-0e72a3-16x16,.browser-non-ie .work-docs-icon-text-ffffff-17x22,.browser-non-ie .work-docs-icon-text-ffffff-16x16,.browser-non-ie .work-docs-icon-text-d0d2d3-24x24,.browser-non-ie .work-docs-icon-text-d0d2d3-16x16,.browser-non-ie .work-docs-icon-text-787982-24x24,.browser-non-ie .work-docs-icon-text-787982-16x16,.browser-non-ie .work-docs-icon-text-212f3e-24x24,.browser-non-ie .work-docs-icon-text-212f3e-16x16,.browser-non-ie .work-docs-icon-text-8ea9c9-17x22,.browser-non-ie .work-docs-icon-text-8ea9c9-11x15,.browser-non-ie .work-docs-icon-star-empty-8ea9c9-24x24,.browser-non-ie .work-docs-icon-star-empty-8ea9c9-16x16,.browser-non-ie .work-docs-icon-star-empty-0e72a3-24x24,.browser-non-ie .work-docs-icon-star-empty-0e72a3-16x16,.browser-non-ie .work-docs-icon-star-empty-ffffff-24x24,.browser-non-ie .work-docs-icon-star-empty-ffffff-16x16,.browser-non-ie .work-docs-icon-star-empty-d0d2d3-24x24,.browser-non-ie .work-docs-icon-star-empty-d0d2d3-16x16,.browser-non-ie .work-docs-icon-star-empty-808184-24x24,.browser-non-ie .work-docs-icon-star-empty-808184-16x16,.browser-non-ie .work-docs-icon-star-empty-212f3e-24x24,.browser-non-ie .work-docs-icon-star-empty-212f3e-16x16,.browser-non-ie .work-docs-icon-star-8ea9c9-24x24,.browser-non-ie .work-docs-icon-star-8ea9c9-16x16,.browser-non-ie .work-docs-icon-star-0e72a3-24x24,.browser-non-ie .work-docs-icon-star-0e72a3-16x16,.browser-non-ie .work-docs-icon-star-ffffff-24x24,.browser-non-ie .work-docs-icon-star-ffffff-16x16,.browser-non-ie .work-docs-icon-star-d0d2d3-24x24,.browser-non-ie .work-docs-icon-star-d0d2d3-16x16,.browser-non-ie .work-docs-icon-star-808184-24x24,.browser-non-ie .work-docs-icon-star-808184-17x16,.browser-non-ie .work-docs-icon-star-212f3e-24x24,.browser-non-ie .work-docs-icon-star-212f3e-17x16,.browser-non-ie .work-docs-icon-private-8ea9c9-24x24,.browser-non-ie .work-docs-icon-private-8ea9c9-16x16,.browser-non-ie .work-docs-icon-private-0e72a3-24x24,.browser-non-ie .work-docs-icon-private-0e72a3-16x16,.browser-non-ie .work-docs-icon-private-ffffff-24x24,.browser-non-ie .work-docs-icon-private-ffffff-16x16,.browser-non-ie .work-docs-icon-private-d0d2d3-24x24,.browser-non-ie .work-docs-icon-private-d0d2d3-16x16,.browser-non-ie .work-docs-icon-private-808184-24x24,.browser-non-ie .work-docs-icon-private-808184-16x16,.browser-non-ie .work-docs-icon-private-212f3e-24x24,.browser-non-ie .work-docs-icon-private-212f3e-16x16,.browser-non-ie .work-docs-icon-request-check-in-0e72a3-24x24,.browser-non-ie .work-docs-icon-request-check-in-0e72a3-16x16,.browser-non-ie .work-docs-icon-request-check-in-8ea9c9-24x24,.browser-non-ie .work-docs-icon-request-check-in-8ea9c9-16x16,.browser-non-ie .work-docs-icon-request-check-in-212f3e-24x24,.browser-non-ie .work-docs-icon-request-check-in-212f3e-16x16,.browser-non-ie .work-docs-icon-request-check-in-808184-24x24,.browser-non-ie .work-docs-icon-request-check-in-808184-16x16,.browser-non-ie .work-docs-icon-request-check-in-d0d2d3-24x24,.browser-non-ie .work-docs-icon-request-check-in-d0d2d3-16x16,.browser-non-ie .work-docs-icon-request-check-in-ffffff-24x24,.browser-non-ie .work-docs-icon-request-check-in-ffffff-16x16,.browser-non-ie .work-docs-icon-discard-check-out-0e72a3-24x24,.browser-non-ie .work-docs-icon-discard-check-out-0e72a3-16x16,.browser-non-ie .work-docs-icon-discard-check-out-8ea9c9-24x24,.browser-non-ie .work-docs-icon-discard-check-out-8ea9c9-16x16,.browser-non-ie .work-docs-icon-discard-check-out-212f3e-24x24,.browser-non-ie .work-docs-icon-discard-check-out-212f3e-16x16,.browser-non-ie .work-docs-icon-discard-check-out-808184-24x24,.browser-non-ie .work-docs-icon-discard-check-out-808184-16x16,.browser-non-ie .work-docs-icon-discard-check-out-d0d2d3-24x24,.browser-non-ie .work-docs-icon-discard-check-out-d0d2d3-16x16,.browser-non-ie .work-docs-icon-discard-check-out-ffffff-24x24,.browser-non-ie .work-docs-icon-discard-check-out-ffffff-16x16,.browser-non-ie .work-docs-icon-check-in-0e72a3-24x24,.browser-non-ie .work-docs-icon-check-in-0e72a3-16x16,.browser-non-ie .work-docs-icon-check-in-8ea9c9-24x24,.browser-non-ie .work-docs-icon-check-in-8ea9c9-16x16,.browser-non-ie .work-docs-icon-check-in-212f3e-24x24,.browser-non-ie .work-docs-icon-check-in-212f3e-16x16,.browser-non-ie .work-docs-icon-check-in-808184-24x24,.browser-non-ie .work-docs-icon-check-in-808184-16x16,.browser-non-ie .work-docs-icon-check-in-d0d2d3-24x24,.browser-non-ie .work-docs-icon-check-in-d0d2d3-16x16,.browser-non-ie .work-docs-icon-check-in-ffffff-24x24,.browser-non-ie .work-docs-icon-check-in-ffffff-16x16,.browser-non-ie .work-docs-icon-check-out-0e72a3-24x24,.browser-non-ie .work-docs-icon-check-out-0e72a3-16x16,.browser-non-ie .work-docs-icon-check-out-8ea9c9-24x24,.browser-non-ie .work-docs-icon-check-out-8ea9c9-16x16,.browser-non-ie .work-docs-icon-check-out-212f3e-24x24,.browser-non-ie .work-docs-icon-check-out-212f3e-16x16,.browser-non-ie .work-docs-icon-check-out-808184-24x24,.browser-non-ie .work-docs-icon-check-out-808184-16x16,.browser-non-ie .work-docs-icon-check-out-d0d2d3-24x24,.browser-non-ie .work-docs-icon-check-out-d0d2d3-16x16,.browser-non-ie .work-docs-icon-check-out-ffffff-24x24,.browser-non-ie .work-docs-icon-check-out-ffffff-16x16,.browser-non-ie .work-docs-icon-help-0e72a3-24x24,.browser-non-ie .work-docs-icon-help-0e72a3-16x16,.browser-non-ie .work-docs-icon-help-8ea9c9-24x24,.browser-non-ie .work-docs-icon-help-8ea9c9-16x16,.browser-non-ie .work-docs-icon-help-212f3e-24x24,.browser-non-ie .work-docs-icon-help-212f3e-16x16,.browser-non-ie .work-docs-icon-help-808184-24x24,.browser-non-ie .work-docs-icon-help-808184-16x16,.browser-non-ie .work-docs-icon-help-d0d2d3-24x24,.browser-non-ie .work-docs-icon-help-d0d2d3-16x16,.browser-non-ie .work-docs-icon-help-ffffff-24x24,.browser-non-ie .work-docs-icon-help-ffffff-16x16,.browser-non-ie .work-docs-icon-help-solid-0e72a3-24x24,.browser-non-ie .work-docs-icon-help-solid-0e72a3-16x16,.browser-non-ie .work-docs-icon-help-solid-8ea9c9-24x24,.browser-non-ie .work-docs-icon-help-solid-8ea9c9-16x16,.browser-non-ie .work-docs-icon-help-solid-212f3e-24x24,.browser-non-ie .work-docs-icon-help-solid-212f3e-16x16,.browser-non-ie .work-docs-icon-help-solid-808184-24x24,.browser-non-ie .work-docs-icon-help-solid-808184-16x16,.browser-non-ie .work-docs-icon-help-solid-d0d2d3-24x24,.browser-non-ie .work-docs-icon-help-solid-d0d2d3-16x16,.browser-non-ie .work-docs-icon-help-solid-ffffff-24x24,.browser-non-ie .work-docs-icon-help-solid-ffffff-16x16,.browser-non-ie .work-docs-icon-mention-0e72a3-24x24,.browser-non-ie .work-docs-icon-mention-0e72a3-16x16,.browser-non-ie .work-docs-icon-mention-8ea9c9-24x24,.browser-non-ie .work-docs-icon-mention-8ea9c9-16x16,.browser-non-ie .work-docs-icon-mention-212f3e-24x24,.browser-non-ie .work-docs-icon-mention-212f3e-16x16,.browser-non-ie .work-docs-icon-mention-808184-24x24,.browser-non-ie .work-docs-icon-mention-808184-16x16,.browser-non-ie .work-docs-icon-mention-d0d2d3-24x24,.browser-non-ie .work-docs-icon-mention-d0d2d3-16x16,.browser-non-ie .work-docs-icon-mention-ffffff-24x24,.browser-non-ie .work-docs-icon-mention-ffffff-16x16,.browser-non-ie .work-docs-icon-decline-feedback-0e72a3-24x24,.browser-non-ie .work-docs-icon-decline-feedback-0e72a3-16x16,.browser-non-ie .work-docs-icon-decline-feedback-8ea9c9-24x24,.browser-non-ie .work-docs-icon-decline-feedback-8ea9c9-16x16,.browser-non-ie .work-docs-icon-decline-feedback-212f3e-24x24,.browser-non-ie .work-docs-icon-decline-feedback-212f3e-16x16,.browser-non-ie .work-docs-icon-decline-feedback-808184-24x24,.browser-non-ie .work-docs-icon-decline-feedback-808184-16x16,.browser-non-ie .work-docs-icon-decline-feedback-d0d2d3-24x24,.browser-non-ie .work-docs-icon-decline-feedback-ffffff-24x24,.browser-non-ie .work-docs-icon-decline-feedback-d0d2d3-16x16,.browser-non-ie .work-docs-icon-decline-feedback-ffffff-16x16,.browser-non-ie .work-docs-icon-disable-feedback-0e72a3-24x24,.browser-non-ie .work-docs-icon-disable-feedback-0e72a3-16x16,.browser-non-ie .work-docs-icon-disable-feedback-8ea9c9-24x24,.browser-non-ie .work-docs-icon-disable-feedback-8ea9c9-16x16,.browser-non-ie .work-docs-icon-disable-feedback-212f3e-24x24,.browser-non-ie .work-docs-icon-disable-feedback-212f3e-16x16,.browser-non-ie .work-docs-icon-disable-feedback-808184-24x24,.browser-non-ie .work-docs-icon-disable-feedback-808184-16x16,.browser-non-ie .work-docs-icon-disable-feedback-d0d2d3-24x24,.browser-non-ie .work-docs-icon-disable-feedback-ffffff-24x24,.browser-non-ie .work-docs-icon-disable-feedback-d0d2d3-16x16,.browser-non-ie .work-docs-icon-disable-feedback-ffffff-16x16,.browser-non-ie .work-docs-icon-enable-feedback-0e72a3-24x24,.browser-non-ie .work-docs-icon-enable-feedback-0e72a3-16x16,.browser-non-ie .work-docs-icon-enable-feedback-8ea9c9-24x24,.browser-non-ie .work-docs-icon-enable-feedback-8ea9c9-16x16,.browser-non-ie .work-docs-icon-enable-feedback-212f3e-24x24,.browser-non-ie .work-docs-icon-enable-feedback-212f3e-16x16,.browser-non-ie .work-docs-icon-enable-feedback-808184-24x24,.browser-non-ie .work-docs-icon-enable-feedback-808184-16x16,.browser-non-ie .work-docs-icon-enable-feedback-d0d2d3-24x24,.browser-non-ie .work-docs-icon-enable-feedback-ffffff-24x24,.browser-non-ie .work-docs-icon-enable-feedback-d0d2d3-16x16,.browser-non-ie .work-docs-icon-enable-feedback-ffffff-16x16,.browser-non-ie .work-docs-icon-disabled-feedback-alternate-0e72a3-24x24,.browser-non-ie .work-docs-icon-disabled-feedback-alternate-0e72a3-16x16,.browser-non-ie .work-docs-icon-disabled-feedback-alternate-8ea9c9-24x24,.browser-non-ie .work-docs-icon-disabled-feedback-alternate-8ea9c9-16x16,.browser-non-ie .work-docs-icon-disabled-feedback-alternate-212f3e-24x24,.browser-non-ie .work-docs-icon-disabled-feedback-alternate-212f3e-16x16,.browser-non-ie .work-docs-icon-disabled-feedback-alternate-808184-24x24,.browser-non-ie .work-docs-icon-disabled-feedback-alternate-808184-16x16,.browser-non-ie .work-docs-icon-disabled-feedback-alternate-d0d2d3-24x24,.browser-non-ie .work-docs-icon-disabled-feedback-alternate-ffffff-24x24,.browser-non-ie .work-docs-icon-disabled-feedback-alternate-d0d2d3-16x16,.browser-non-ie .work-docs-icon-disabled-feedback-alternate-ffffff-16x16,.browser-non-ie .work-docs-icon-disabled-feedback-0e72a3-24x24,.browser-non-ie .work-docs-icon-disabled-feedback-0e72a3-16x16,.browser-non-ie .work-docs-icon-disabled-feedback-8ea9c9-24x24,.browser-non-ie .work-docs-icon-disabled-feedback-8ea9c9-16x16,.browser-non-ie .work-docs-icon-disabled-feedback-212f3e-24x24,.browser-non-ie .work-docs-icon-disabled-feedback-212f3e-16x16,.browser-non-ie .work-docs-icon-disabled-feedback-808184-24x24,.browser-non-ie .work-docs-icon-disabled-feedback-808184-16x16,.browser-non-ie .work-docs-icon-disabled-feedback-d0d2d3-24x24,.browser-non-ie .work-docs-icon-disabled-feedback-ffffff-24x24,.browser-non-ie .work-docs-icon-disabled-feedback-d0d2d3-16x16,.browser-non-ie .work-docs-icon-disabled-feedback-ffffff-16x16,.browser-non-ie .work-docs-icon-private-feedback-indicator-ffa724-24x24,.browser-non-ie .work-docs-icon-private-feedback-indicator-ffa724-16x16,.browser-non-ie .work-docs-icon-private-feedback-indicator-0e72a3-24x24,.browser-non-ie .work-docs-icon-private-feedback-indicator-0e72a3-16x16,.browser-non-ie .work-docs-icon-private-feedback-indicator-8ea9c9-24x24,.browser-non-ie .work-docs-icon-private-feedback-indicator-8ea9c9-16x16,.browser-non-ie .work-docs-icon-private-feedback-indicator-212f3e-24x24,.browser-non-ie .work-docs-icon-private-feedback-indicator-212f3e-16x16,.browser-non-ie .work-docs-icon-private-feedback-indicator-808184-24x24,.browser-non-ie .work-docs-icon-private-feedback-indicator-808184-16x16,.browser-non-ie .work-docs-icon-private-feedback-indicator-d0d2d3-24x24,.browser-non-ie .work-docs-icon-private-feedback-indicator-ffffff-24x24,.browser-non-ie .work-docs-icon-private-feedback-indicator-d0d2d3-16x16,.browser-non-ie .work-docs-icon-private-feedback-indicator-ffffff-16x16,.browser-non-ie .work-docs-icon-unlocked-0e72a3-24x24,.browser-non-ie .work-docs-icon-unlocked-0e72a3-16x16,.browser-non-ie .work-docs-icon-unlocked-8ea9c9-24x24,.browser-non-ie .work-docs-icon-unlocked-8ea9c9-16x16,.browser-non-ie .work-docs-icon-unlocked-212f3e-24x24,.browser-non-ie .work-docs-icon-unlocked-212f3e-16x16,.browser-non-ie .work-docs-icon-unlocked-808184-24x24,.browser-non-ie .work-docs-icon-unlocked-808184-16x16,.browser-non-ie .work-docs-icon-unlocked-d0d2d3-24x24,.browser-non-ie .work-docs-icon-unlocked-d0d2d3-16x16,.browser-non-ie .work-docs-icon-unlocked-ffffff-24x24,.browser-non-ie .work-docs-icon-unlocked-ffffff-16x16,.browser-non-ie .work-docs-icon-video-alternate-0e72a3-24x24,.browser-non-ie .work-docs-icon-video-alternate-0e72a3-16x16,.browser-non-ie .work-docs-icon-video-alternate-8ea9c9-24x24,.browser-non-ie .work-docs-icon-video-alternate-8ea9c9-16x16,.browser-non-ie .work-docs-icon-video-alternate-212f3e-24x24,.browser-non-ie .work-docs-icon-video-alternate-212f3e-16x16,.browser-non-ie .work-docs-icon-video-alternate-808184-24x24,.browser-non-ie .work-docs-icon-video-alternate-808184-16x16,.browser-non-ie .work-docs-icon-video-alternate-d0d2d3-24x24,.browser-non-ie .work-docs-icon-video-alternate-ffffff-24x24,.browser-non-ie .work-docs-icon-video-alternate-d0d2d3-16x16,.browser-non-ie .work-docs-icon-video-alternate-ffffff-16x16,.browser-non-ie .work-docs-icon-video-0e72a3-24x24,.browser-non-ie .work-docs-icon-video-0e72a3-16x16,.browser-non-ie .work-docs-icon-video-8ea9c9-24x24,.browser-non-ie .work-docs-icon-video-8ea9c9-16x16,.browser-non-ie .work-docs-icon-video-212f3e-24x24,.browser-non-ie .work-docs-icon-video-212f3e-16x16,.browser-non-ie .work-docs-icon-video-808184-24x24,.browser-non-ie .work-docs-icon-video-808184-16x16,.browser-non-ie .work-docs-icon-video-d0d2d3-24x24,.browser-non-ie .work-docs-icon-video-ffffff-24x24,.browser-non-ie .work-docs-icon-video-d0d2d3-16x16,.browser-non-ie .work-docs-icon-video-ffffff-16x16,.browser-non-ie .work-docs-icon-filter-0e72a3-24x24,.browser-non-ie .work-docs-icon-filter-0e72a3-16x16,.browser-non-ie .work-docs-icon-filter-8ea9c9-24x24,.browser-non-ie .work-docs-icon-filter-8ea9c9-16x16,.browser-non-ie .work-docs-icon-filter-212f3e-24x24,.browser-non-ie .work-docs-icon-filter-212f3e-16x16,.browser-non-ie .work-docs-icon-filter-808184-24x24,.browser-non-ie .work-docs-icon-filter-808184-16x16,.browser-non-ie .work-docs-icon-filter-d0d2d3-24x24,.browser-non-ie .work-docs-icon-filter-ffffff-24x24,.browser-non-ie .work-docs-icon-filter-d0d2d3-16x16,.browser-non-ie .work-docs-icon-filter-ffffff-16x16,.browser-non-ie .work-docs-icon-add-document-0e72a3-24x24,.browser-non-ie .work-docs-icon-add-document-0e72a3-16x16,.browser-non-ie .work-docs-icon-add-document-8ea9c9-24x24,.browser-non-ie .work-docs-icon-add-document-8ea9c9-16x16,.browser-non-ie .work-docs-icon-add-document-212f3e-24x24,.browser-non-ie .work-docs-icon-add-document-212f3e-16x16,.browser-non-ie .work-docs-icon-add-document-808184-24x24,.browser-non-ie .work-docs-icon-add-document-808184-16x16,.browser-non-ie .work-docs-icon-add-document-d0d2d3-24x24,.browser-non-ie .work-docs-icon-add-document-ffffff-24x24,.browser-non-ie .work-docs-icon-add-document-d0d2d3-16x16,.browser-non-ie .work-docs-icon-add-document-ffffff-16x16,.browser-non-ie .work-docs-icon-download-with-comments-0e72a3-24x24,.browser-non-ie .work-docs-icon-download-with-comments-0e72a3-16x16,.browser-non-ie .work-docs-icon-download-with-comments-8ea9c9-24x24,.browser-non-ie .work-docs-icon-download-with-comments-8ea9c9-16x16,.browser-non-ie .work-docs-icon-download-with-comments-212f3e-24x24,.browser-non-ie .work-docs-icon-download-with-comments-212f3e-16x16,.browser-non-ie .work-docs-icon-download-with-comments-808184-24x24,.browser-non-ie .work-docs-icon-download-with-comments-808184-16x16,.browser-non-ie .work-docs-icon-download-with-comments-d0d2d3-24x24,.browser-non-ie .work-docs-icon-download-with-comments-ffffff-24x24,.browser-non-ie .work-docs-icon-download-with-comments-d0d2d3-16x16,.browser-non-ie .work-docs-icon-download-with-comments-ffffff-16x16,.browser-non-ie .work-docs-icon-remove-me-from-share-alternate-0e72a3-24x24,.browser-non-ie .work-docs-icon-remove-me-from-share-alternate-0e72a3-16x16,.browser-non-ie .work-docs-icon-remove-me-from-share-alternate-8ea9c9-24x24,.browser-non-ie .work-docs-icon-remove-me-from-share-alternate-8ea9c9-16x16,.browser-non-ie .work-docs-icon-remove-me-from-share-alternate-212f3e-24x24,.browser-non-ie .work-docs-icon-remove-me-from-share-alternate-212f3e-16x16,.browser-non-ie .work-docs-icon-remove-me-from-share-alternate-808184-24x24,.browser-non-ie .work-docs-icon-remove-me-from-share-alternate-808184-16x16,.browser-non-ie .work-docs-icon-remove-me-from-share-alternate-d0d2d3-24x24,.browser-non-ie .work-docs-icon-remove-me-from-share-alternate-ffffff-24x24,.browser-non-ie .work-docs-icon-remove-me-from-share-alternate-d0d2d3-16x16,.browser-non-ie .work-docs-icon-remove-me-from-share-alternate-ffffff-16x16,.browser-non-ie .work-docs-icon-remove-me-from-share-0e72a3-24x24,.browser-non-ie .work-docs-icon-remove-me-from-share-0e72a3-16x16,.browser-non-ie .work-docs-icon-remove-me-from-share-8ea9c9-24x24,.browser-non-ie .work-docs-icon-remove-me-from-share-8ea9c9-16x16,.browser-non-ie .work-docs-icon-remove-me-from-share-212f3e-24x24,.browser-non-ie .work-docs-icon-remove-me-from-share-212f3e-16x16,.browser-non-ie .work-docs-icon-remove-me-from-share-808184-24x24,.browser-non-ie .work-docs-icon-remove-me-from-share-808184-16x16,.browser-non-ie .work-docs-icon-remove-me-from-share-d0d2d3-24x24,.browser-non-ie .work-docs-icon-remove-me-from-share-ffffff-24x24,.browser-non-ie .work-docs-icon-remove-me-from-share-d0d2d3-16x16,.browser-non-ie .work-docs-icon-remove-me-from-share-ffffff-16x16,.browser-non-ie .work-docs-icon-transfer-owner-0e72a3-24x24,.browser-non-ie .work-docs-icon-transfer-owner-0e72a3-16x16,.browser-non-ie .work-docs-icon-transfer-owner-8ea9c9-24x24,.browser-non-ie .work-docs-icon-transfer-owner-8ea9c9-16x16,.browser-non-ie .work-docs-icon-transfer-owner-212f3e-24x24,.browser-non-ie .work-docs-icon-transfer-owner-212f3e-16x16,.browser-non-ie .work-docs-icon-transfer-owner-808184-24x24,.browser-non-ie .work-docs-icon-transfer-owner-808184-16x16,.browser-non-ie .work-docs-icon-transfer-owner-d0d2d3-24x24,.browser-non-ie .work-docs-icon-transfer-owner-ffffff-24x24,.browser-non-ie .work-docs-icon-transfer-owner-d0d2d3-16x16,.browser-non-ie .work-docs-icon-transfer-owner-ffffff-16x16,.browser-non-ie .work-docs-icon-sort-0e72a3-24x24,.browser-non-ie .work-docs-icon-sort-0e72a3-16x16,.browser-non-ie .work-docs-icon-sort-8ea9c9-24x24,.browser-non-ie .work-docs-icon-sort-8ea9c9-16x16,.browser-non-ie .work-docs-icon-sort-212f3e-24x24,.browser-non-ie .work-docs-icon-sort-212f3e-16x16,.browser-non-ie .work-docs-icon-sort-808184-24x24,.browser-non-ie .work-docs-icon-sort-808184-16x16,.browser-non-ie .work-docs-icon-sort-d0d2d3-24x24,.browser-non-ie .work-docs-icon-sort-ffffff-24x24,.browser-non-ie .work-docs-icon-sort-d0d2d3-16x16,.browser-non-ie .work-docs-icon-sort-ffffff-16x16,.browser-non-ie .work-docs-icon-download-mobile-0e72a3-24x24,.browser-non-ie .work-docs-icon-download-mobile-0e72a3-16x16,.browser-non-ie .work-docs-icon-download-mobile-8ea9c9-24x24,.browser-non-ie .work-docs-icon-download-mobile-8ea9c9-16x16,.browser-non-ie .work-docs-icon-download-mobile-212f3e-24x24,.browser-non-ie .work-docs-icon-download-mobile-212f3e-16x16,.browser-non-ie .work-docs-icon-download-mobile-808184-24x24,.browser-non-ie .work-docs-icon-download-mobile-808184-16x16,.browser-non-ie .work-docs-icon-download-mobile-d0d2d3-24x24,.browser-non-ie .work-docs-icon-download-mobile-ffffff-24x24,.browser-non-ie .work-docs-icon-download-mobile-d0d2d3-16x16,.browser-non-ie .work-docs-icon-download-mobile-ffffff-16x16,.browser-non-ie .work-docs-icon-download-sync-client-0e72a3-24x24,.browser-non-ie .work-docs-icon-download-sync-client-0e72a3-16x16,.browser-non-ie .work-docs-icon-download-sync-client-8ea9c9-24x24,.browser-non-ie .work-docs-icon-download-sync-client-8ea9c9-16x16,.browser-non-ie .work-docs-icon-download-sync-client-212f3e-24x24,.browser-non-ie .work-docs-icon-download-sync-client-212f3e-16x16,.browser-non-ie .work-docs-icon-download-sync-client-808184-24x24,.browser-non-ie .work-docs-icon-download-sync-client-808184-16x16,.browser-non-ie .work-docs-icon-download-sync-client-d0d2d3-24x24,.browser-non-ie .work-docs-icon-download-sync-client-ffffff-24x24,.browser-non-ie .work-docs-icon-download-sync-client-d0d2d3-16x16,.browser-non-ie .work-docs-icon-download-sync-client-ffffff-16x16,.browser-non-ie .work-docs-icon-admin-0e72a3-24x24,.browser-non-ie .work-docs-icon-admin-0e72a3-16x16,.browser-non-ie .work-docs-icon-admin-8ea9c9-24x24,.browser-non-ie .work-docs-icon-admin-8ea9c9-16x16,.browser-non-ie .work-docs-icon-admin-212f3e-24x24,.browser-non-ie .work-docs-icon-admin-212f3e-16x16,.browser-non-ie .work-docs-icon-admin-808184-24x24,.browser-non-ie .work-docs-icon-admin-808184-16x16,.browser-non-ie .work-docs-icon-admin-d0d2d3-24x24,.browser-non-ie .work-docs-icon-admin-ffffff-24x24,.browser-non-ie .work-docs-icon-admin-d0d2d3-16x16,.browser-non-ie .work-docs-icon-admin-ffffff-16x16,.browser-non-ie .work-docs-icon-check-inactive-0e72a3-24x24,.browser-non-ie .work-docs-icon-check-inactive-0e72a3-16x16,.browser-non-ie .work-docs-icon-check-inactive-8ea9c9-24x24,.browser-non-ie .work-docs-icon-check-inactive-8ea9c9-16x16,.browser-non-ie .work-docs-icon-check-inactive-212f3e-24x24,.browser-non-ie .work-docs-icon-check-inactive-212f3e-16x16,.browser-non-ie .work-docs-icon-check-inactive-808184-24x24,.browser-non-ie .work-docs-icon-check-inactive-808184-16x16,.browser-non-ie .work-docs-icon-check-inactive-d0d2d3-24x24,.browser-non-ie .work-docs-icon-check-inactive-d0d2d3-16x16,.browser-non-ie .work-docs-icon-check-inactive-ffffff-24x24,.browser-non-ie .work-docs-icon-check-inactive-ffffff-16x16,.browser-non-ie .work-docs-icon-radio-inactive-0e72a3-24x24,.browser-non-ie .work-docs-icon-radio-inactive-0e72a3-16x16,.browser-non-ie .work-docs-icon-radio-inactive-8ea9c9-24x24,.browser-non-ie .work-docs-icon-radio-inactive-8ea9c9-16x16,.browser-non-ie .work-docs-icon-radio-inactive-212f3e-24x24,.browser-non-ie .work-docs-icon-radio-inactive-212f3e-16x16,.browser-non-ie .work-docs-icon-radio-inactive-808184-24x24,.browser-non-ie .work-docs-icon-radio-inactive-808184-16x16,.browser-non-ie .work-docs-icon-radio-inactive-d0d2d3-24x24,.browser-non-ie .work-docs-icon-radio-inactive-d0d2d3-16x16,.browser-non-ie .work-docs-icon-radio-inactive-ffffff-24x24,.browser-non-ie .work-docs-icon-radio-inactive-ffffff-16x16,.browser-non-ie .work-docs-icon-remove-from-share-0e72a3-24x24,.browser-non-ie .work-docs-icon-remove-from-share-0e72a3-16x16,.browser-non-ie .work-docs-icon-edit-file-0e72a3-24x24,.browser-non-ie .work-docs-icon-edit-file-0e72a3-16x16,.browser-non-ie .work-docs-icon-edit-file-8ea9c9-24x24,.browser-non-ie .work-docs-icon-edit-file-8ea9c9-16x16,.browser-non-ie .work-docs-icon-edit-file-212f3e-24x24,.browser-non-ie .work-docs-icon-edit-file-212f3e-16x16,.browser-non-ie .work-docs-icon-edit-file-808184-24x24,.browser-non-ie .work-docs-icon-edit-file-808184-16x16,.browser-non-ie .work-docs-icon-edit-file-d0d2d3-24x24,.browser-non-ie .work-docs-icon-edit-file-d0d2d3-16x16,.browser-non-ie .work-docs-icon-edit-file-ffffff-24x24,.browser-non-ie .work-docs-icon-edit-file-ffffff-16x16,.browser-non-ie .work-docs-icon-broken-link-0e72a3-24x24,.browser-non-ie .work-docs-icon-broken-link-0e72a3-16x16,.browser-non-ie .work-docs-icon-remove-from-share-8ea9c9-24x24,.browser-non-ie .work-docs-icon-remove-from-share-8ea9c9-16x16,.browser-non-ie .work-docs-icon-broken-link-8ea9c9-24x24,.browser-non-ie .work-docs-icon-broken-link-8ea9c9-16x16,.browser-non-ie .work-docs-icon-remove-from-share-212f3e-24x24,.browser-non-ie .work-docs-icon-remove-from-share-212f3e-16x16,.browser-non-ie .work-docs-icon-broken-link-212f3e-24x24,.browser-non-ie .work-docs-icon-broken-link-212f3e-16x16,.browser-non-ie .work-docs-icon-remove-from-share-808184-24x24,.browser-non-ie .work-docs-icon-remove-from-share-808184-16x16,.browser-non-ie .work-docs-icon-broken-link-808184-24x24,.browser-non-ie .work-docs-icon-broken-link-808184-16x16,.browser-non-ie .work-docs-icon-remove-from-share-d0d2d3-24x24,.browser-non-ie .work-docs-icon-remove-from-share-d0d2d3-16x16,.browser-non-ie .work-docs-icon-remove-from-share-ffffff-24x24,.browser-non-ie .work-docs-icon-remove-from-share-ffffff-16x16,.browser-non-ie .work-docs-icon-broken-link-d0d2d3-24x24,.browser-non-ie .work-docs-icon-broken-link-d0d2d3-16x16,.browser-non-ie .work-docs-icon-broken-link-ffffff-24x24,.browser-non-ie .work-docs-icon-broken-link-ffffff-16x16,.browser-non-ie .work-docs-icon-no-preview-0e72a3-24x24,.browser-non-ie .work-docs-icon-no-preview-0e72a3-16x16,.browser-non-ie .work-docs-icon-session-expired-0e72a3-24x24,.browser-non-ie .work-docs-icon-session-expired-0e72a3-16x16,.browser-non-ie .work-docs-icon-no-preview-8ea9c9-24x24,.browser-non-ie .work-docs-icon-no-preview-8ea9c9-16x16,.browser-non-ie .work-docs-icon-session-expired-8ea9c9-24x24,.browser-non-ie .work-docs-icon-session-expired-8ea9c9-16x16,.browser-non-ie .work-docs-icon-no-preview-212f3e-24x24,.browser-non-ie .work-docs-icon-no-preview-212f3e-16x16,.browser-non-ie .work-docs-icon-session-expired-212f3e-24x24,.browser-non-ie .work-docs-icon-session-expired-212f3e-16x16,.browser-non-ie .work-docs-icon-no-preview-808184-24x24,.browser-non-ie .work-docs-icon-no-preview-808184-16x16,.browser-non-ie .work-docs-icon-session-expired-808184-24x24,.browser-non-ie .work-docs-icon-session-expired-808184-16x16,.browser-non-ie .work-docs-icon-no-preview-d0d2d3-24x24,.browser-non-ie .work-docs-icon-no-preview-d0d2d3-16x16,.browser-non-ie .work-docs-icon-no-preview-ffffff-24x24,.browser-non-ie .work-docs-icon-no-preview-ffffff-16x16,.browser-non-ie .work-docs-icon-session-expired-d0d2d3-24x24,.browser-non-ie .work-docs-icon-session-expired-d0d2d3-16x16,.browser-non-ie .work-docs-icon-session-expired-ffffff-24x24,.browser-non-ie .work-docs-icon-session-expired-ffffff-16x16,.browser-non-ie .work-docs-icon-leave-full-screen-0e72a3-24x24,.browser-non-ie .work-docs-icon-leave-full-screen-0e72a3-16x16,.browser-non-ie .work-docs-icon-leave-full-screen-8ea9c9-24x24,.browser-non-ie .work-docs-icon-leave-full-screen-8ea9c9-16x16,.browser-non-ie .work-docs-icon-leave-full-screen-212f3e-24x24,.browser-non-ie .work-docs-icon-leave-full-screen-212f3e-16x16,.browser-non-ie .work-docs-icon-leave-full-screen-808184-24x24,.browser-non-ie .work-docs-icon-leave-full-screen-808184-16x16,.browser-non-ie .work-docs-icon-leave-full-screen-d0d2d3-24x24,.browser-non-ie .work-docs-icon-leave-full-screen-ffffff-24x24,.browser-non-ie .work-docs-icon-leave-full-screen-d0d2d3-16x16,.browser-non-ie .work-docs-icon-leave-full-screen-ffffff-16x16,.browser-non-ie .work-docs-icon-full-screen-0e72a3-24x24,.browser-non-ie .work-docs-icon-full-screen-0e72a3-16x16,.browser-non-ie .work-docs-icon-full-screen-8ea9c9-24x24,.browser-non-ie .work-docs-icon-full-screen-8ea9c9-16x16,.browser-non-ie .work-docs-icon-full-screen-212f3e-24x24,.browser-non-ie .work-docs-icon-full-screen-212f3e-16x16,.browser-non-ie .work-docs-icon-full-screen-808184-24x24,.browser-non-ie .work-docs-icon-full-screen-808184-16x16,.browser-non-ie .work-docs-icon-full-screen-d0d2d3-24x24,.browser-non-ie .work-docs-icon-full-screen-ffffff-24x24,.browser-non-ie .work-docs-icon-full-screen-d0d2d3-16x16,.browser-non-ie .work-docs-icon-full-screen-ffffff-16x16,.browser-non-ie .work-docs-icon-pdf-bf1e0f-24x24,.browser-non-ie .work-docs-icon-pdf-bf1e0f-16x16,.browser-non-ie .work-docs-icon-powerpoint-dd5c27-24x24,.browser-non-ie .work-docs-icon-powerpoint-dd5c27-16x16,.browser-non-ie .work-docs-icon-excel-0e7d4f-24x24,.browser-non-ie .work-docs-icon-excel-0e7d4f-16x16,.browser-non-ie .work-docs-icon-word-276887-24x24,.browser-non-ie .work-docs-icon-word-276887-16x16,.browser-non-ie .work-docs-icon-add-person-0e72a3-24x24,.browser-non-ie .work-docs-icon-add-person-0e72a3-16x16,.browser-non-ie .work-docs-icon-achieve-0e72a3-24x24,.browser-non-ie .work-docs-icon-achieve-0e72a3-16x16,.browser-non-ie .work-docs-icon-pdf-0e72a3-24x24,.browser-non-ie .work-docs-icon-pdf-0e72a3-16x16,.browser-non-ie .work-docs-icon-powerpoint-0e72a3-24x24,.browser-non-ie .work-docs-icon-powerpoint-0e72a3-16x16,.browser-non-ie .work-docs-icon-excel-0e72a3-24x24,.browser-non-ie .work-docs-icon-excel-0e72a3-263x16,.browser-non-ie .work-docs-icon-word-0e72a3-24x24,.browser-non-ie .work-docs-icon-word-0e72a3-16x16,.browser-non-ie .work-docs-icon-default-0e72a3-24x24,.browser-non-ie .work-docs-icon-default-0e72a3-16x16,.browser-non-ie .work-docs-icon-close-alternate-0e72a3-24x24,.browser-non-ie .work-docs-icon-close-alternate-0e72a3-16x16,.browser-non-ie .work-docs-icon-calendar-0e72a3-24x24,.browser-non-ie .work-docs-icon-calendar-0e72a3-16x16,.browser-non-ie .work-docs-icon-link-alternate-0e72a3-24x24,.browser-non-ie .work-docs-icon-link-alternate-0e72a3-16x16,.browser-non-ie .work-docs-icon-check-press-0e72a3-24x24,.browser-non-ie .work-docs-icon-check-press-0e72a3-16x16,.browser-non-ie .work-docs-icon-check-off-0e72a3-24x24,.browser-non-ie .work-docs-icon-check-off-0e72a3-16x16,.browser-non-ie .work-docs-icon-radio-selected-0e72a3-24x24,.browser-non-ie .work-docs-icon-radio-selected-0e72a3-16x16,.browser-non-ie .work-docs-icon-radio-press-0e72a3-24x24,.browser-non-ie .work-docs-icon-radio-press-0e72a3-16x16,.browser-non-ie .work-docs-icon-radio-off-0e72a3-24x24,.browser-non-ie .work-docs-icon-radio-off-0e72a3-16x16,.browser-non-ie .work-docs-icon-refresh-0e72a3-24x24,.browser-non-ie .work-docs-icon-refresh-0e72a3-16x16,.browser-non-ie .work-docs-icon-progress-0e72a3-24x24,.browser-non-ie .work-docs-icon-progress-0e72a3-16x16,.browser-non-ie .work-docs-icon-reply-0e72a3-24x24,.browser-non-ie .work-docs-icon-reply-0e72a3-16x16,.browser-non-ie .work-docs-icon-people-0e72a3-24x24,.browser-non-ie .work-docs-icon-people-0e72a3-16x16,.browser-non-ie .work-docs-icon-add-person-8ea9c9-24x24,.browser-non-ie .work-docs-icon-add-person-8ea9c9-16x16,.browser-non-ie .work-docs-icon-achieve-8ea9c9-24x24,.browser-non-ie .work-docs-icon-achieve-8ea9c9-16x16,.browser-non-ie .work-docs-icon-pdf-8ea9c9-24x24,.browser-non-ie .work-docs-icon-pdf-8ea9c9-16x16,.browser-non-ie .work-docs-icon-powerpoint-8ea9c9-24x24,.browser-non-ie .work-docs-icon-powerpoint-8ea9c9-16x16,.browser-non-ie .work-docs-icon-excel-8ea9c9-24x24,.browser-non-ie .work-docs-icon-excel-8ea9c9-138x16,.browser-non-ie .work-docs-icon-word-8ea9c9-24x24,.browser-non-ie .work-docs-icon-word-8ea9c9-16x16,.browser-non-ie .work-docs-icon-default-8ea9c9-24x24,.browser-non-ie .work-docs-icon-default-8ea9c9-16x16,.browser-non-ie .work-docs-icon-close-alternate-8ea9c9-24x24,.browser-non-ie .work-docs-icon-close-alternate-8ea9c9-16x16,.browser-non-ie .work-docs-icon-calendar-8ea9c9-24x24,.browser-non-ie .work-docs-icon-calendar-8ea9c9-16x16,.browser-non-ie .work-docs-icon-link-alternate-8ea9c9-24x24,.browser-non-ie .work-docs-icon-link-alternate-8ea9c9-16x16,.browser-non-ie .work-docs-icon-check-press-8ea9c9-24x24,.browser-non-ie .work-docs-icon-check-press-8ea9c9-16x16,.browser-non-ie .work-docs-icon-check-off-8ea9c9-24x24,.browser-non-ie .work-docs-icon-check-off-8ea9c9-16x16,.browser-non-ie .work-docs-icon-radio-selected-8ea9c9-24x24,.browser-non-ie .work-docs-icon-radio-selected-8ea9c9-16x16,.browser-non-ie .work-docs-icon-radio-press-8ea9c9-24x24,.browser-non-ie .work-docs-icon-radio-press-8ea9c9-16x16,.browser-non-ie .work-docs-icon-radio-off-8ea9c9-24x24,.browser-non-ie .work-docs-icon-radio-off-8ea9c9-16x16,.browser-non-ie .work-docs-icon-refresh-8ea9c9-24x24,.browser-non-ie .work-docs-icon-refresh-8ea9c9-16x16,.browser-non-ie .work-docs-icon-progress-8ea9c9-24x24,.browser-non-ie .work-docs-icon-progress-8ea9c9-16x16,.browser-non-ie .work-docs-icon-reply-8ea9c9-24x24,.browser-non-ie .work-docs-icon-reply-8ea9c9-16x16,.browser-non-ie .work-docs-icon-people-8ea9c9-24x24,.browser-non-ie .work-docs-icon-people-8ea9c9-16x16,.browser-non-ie .work-docs-icon-add-person-212f3e-24x24,.browser-non-ie .work-docs-icon-add-person-212f3e-16x16,.browser-non-ie .work-docs-icon-achieve-212f3e-24x24,.browser-non-ie .work-docs-icon-achieve-212f3e-16x16,.browser-non-ie .work-docs-icon-pdf-212f3e-24x24,.browser-non-ie .work-docs-icon-pdf-212f3e-16x16,.browser-non-ie .work-docs-icon-powerpoint-212f3e-24x24,.browser-non-ie .work-docs-icon-powerpoint-212f3e-16x16,.browser-non-ie .work-docs-icon-excel-212f3e-24x24,.browser-non-ie .work-docs-icon-excel-212f3e-138x16,.browser-non-ie .work-docs-icon-word-212f3e-24x24,.browser-non-ie .work-docs-icon-word-212f3e-16x16,.browser-non-ie .work-docs-icon-default-212f3e-24x24,.browser-non-ie .work-docs-icon-default-212f3e-16x16,.browser-non-ie .work-docs-icon-close-alternate-212f3e-24x24,.browser-non-ie .work-docs-icon-close-alternate-212f3e-16x16,.browser-non-ie .work-docs-icon-calendar-212f3e-24x24,.browser-non-ie .work-docs-icon-calendar-212f3e-16x16,.browser-non-ie .work-docs-icon-link-alternate-212f3e-24x24,.browser-non-ie .work-docs-icon-link-alternate-212f3e-16x16,.browser-non-ie .work-docs-icon-check-press-212f3e-24x24,.browser-non-ie .work-docs-icon-check-press-212f3e-16x16,.browser-non-ie .work-docs-icon-check-off-212f3e-24x24,.browser-non-ie .work-docs-icon-check-off-212f3e-16x16,.browser-non-ie .work-docs-icon-radio-selected-212f3e-24x24,.browser-non-ie .work-docs-icon-radio-selected-212f3e-16x16,.browser-non-ie .work-docs-icon-radio-press-212f3e-24x24,.browser-non-ie .work-docs-icon-radio-press-212f3e-16x16,.browser-non-ie .work-docs-icon-radio-off-212f3e-24x24,.browser-non-ie .work-docs-icon-radio-off-212f3e-16x16,.browser-non-ie .work-docs-icon-refresh-212f3e-24x24,.browser-non-ie .work-docs-icon-refresh-212f3e-16x16,.browser-non-ie .work-docs-icon-progress-212f3e-24x24,.browser-non-ie .work-docs-icon-progress-212f3e-16x16,.browser-non-ie .work-docs-icon-reply-212f3e-24x24,.browser-non-ie .work-docs-icon-reply-212f3e-16x16,.browser-non-ie .work-docs-icon-people-212f3e-24x24,.browser-non-ie .work-docs-icon-people-212f3e-16x16,.browser-non-ie .work-docs-icon-add-person-808184-24x24,.browser-non-ie .work-docs-icon-add-person-d0d2d3-24x24,.browser-non-ie .work-docs-icon-add-person-ffffff-24x24,.browser-non-ie .work-docs-icon-add-person-808184-16x16,.browser-non-ie .work-docs-icon-add-person-d0d2d3-16x16,.browser-non-ie .work-docs-icon-add-person-ffffff-16x16,.browser-non-ie .work-docs-icon-achieve-808184-24x24,.browser-non-ie .work-docs-icon-achieve-d0d2d3-24x24,.browser-non-ie .work-docs-icon-achieve-ffffff-24x24,.browser-non-ie .work-docs-icon-achieve-808184-16x16,.browser-non-ie .work-docs-icon-achieve-d0d2d3-16x16,.browser-non-ie .work-docs-icon-achieve-ffffff-16x16,.browser-non-ie .work-docs-icon-pdf-787982-24x25,.browser-non-ie .work-docs-icon-pdf-d0d2d3-24x24,.browser-non-ie .work-docs-icon-pdf-ffffff-24x24,.browser-non-ie .work-docs-icon-pdf-d0d2d3-16x16,.browser-non-ie .work-docs-icon-pdf-ffffff-16x16,.browser-non-ie .work-docs-icon-powerpoint-808184-24x24,.browser-non-ie .work-docs-icon-powerpoint-d0d2d3-24x24,.browser-non-ie .work-docs-icon-powerpoint-ffffff-24x24,.browser-non-ie .work-docs-icon-powerpoint-808184-16x16,.browser-non-ie .work-docs-icon-powerpoint-d0d2d3-16x16,.browser-non-ie .work-docs-icon-powerpoint-ffffff-16x16,.browser-non-ie .work-docs-icon-excel-808184-261x24,.browser-non-ie .work-docs-icon-excel-d0d2d3-143x24,.browser-non-ie .work-docs-icon-excel-ffffff-24x24,.browser-non-ie .work-docs-icon-excel-808184-16x16,.browser-non-ie .work-docs-icon-excel-d0d2d3-16x16,.browser-non-ie .work-docs-icon-excel-ffffff-16x16,.browser-non-ie .work-docs-icon-word-808184-24x24,.browser-non-ie .work-docs-icon-word-d0d2d3-24x24,.browser-non-ie .work-docs-icon-word-ffffff-24x24,.browser-non-ie .work-docs-icon-word-808184-16x16,.browser-non-ie .work-docs-icon-word-d0d2d3-16x16,.browser-non-ie .work-docs-icon-word-ffffff-16x16,.browser-non-ie .work-docs-icon-image-0e72a3-24x24,.browser-non-ie .work-docs-icon-image-0e72a3-16x16,.browser-non-ie .work-docs-icon-image-8ea9c9-24x24,.browser-non-ie .work-docs-icon-image-8ea9c9-16x16,.browser-non-ie .work-docs-icon-image-212f3e-24x24,.browser-non-ie .work-docs-icon-image-212f3e-16x16,.browser-non-ie .work-docs-icon-image-808184-24x24,.browser-non-ie .work-docs-icon-image-808184-16x16,.browser-non-ie .work-docs-icon-image-d0d2d3-24x24,.browser-non-ie .work-docs-icon-image-ffffff-24x24,.browser-non-ie .work-docs-icon-image-d0d2d3-16x16,.browser-non-ie .work-docs-icon-image-ffffff-16x16,.browser-non-ie .work-docs-icon-default-808184-24x24,.browser-non-ie .work-docs-icon-default-d0d2d3-24x24,.browser-non-ie .work-docs-icon-default-ffffff-24x24,.browser-non-ie .work-docs-icon-default-808184-16x16,.browser-non-ie .work-docs-icon-default-d0d2d3-16x16,.browser-non-ie .work-docs-icon-default-ffffff-16x16,.browser-non-ie .work-docs-icon-close-alternate-808184-24x24,.browser-non-ie .work-docs-icon-close-alternate-d0d2d3-24x24,.browser-non-ie .work-docs-icon-close-alternate-ffffff-24x24,.browser-non-ie .work-docs-icon-close-alternate-808184-16x16,.browser-non-ie .work-docs-icon-close-alternate-d0d2d3-16x16,.browser-non-ie .work-docs-icon-close-alternate-ffffff-16x16,.browser-non-ie .work-docs-icon-calendar-808184-24x24,.browser-non-ie .work-docs-icon-calendar-d0d2d3-24x24,.browser-non-ie .work-docs-icon-calendar-ffffff-24x24,.browser-non-ie .work-docs-icon-calendar-808184-16x16,.browser-non-ie .work-docs-icon-calendar-d0d2d3-16x16,.browser-non-ie .work-docs-icon-calendar-ffffff-16x16,.browser-non-ie .work-docs-icon-link-alternate-808184-24x24,.browser-non-ie .work-docs-icon-link-alternate-d0d2d3-24x24,.browser-non-ie .work-docs-icon-link-alternate-ffffff-24x24,.browser-non-ie .work-docs-icon-link-alternate-808184-16x16,.browser-non-ie .work-docs-icon-link-alternate-d0d2d3-16x16,.browser-non-ie .work-docs-icon-link-alternate-ffffff-16x16,.browser-non-ie .work-docs-icon-check-selected-0e72a3-24x24,.browser-non-ie .work-docs-icon-check-selected-0e72a3-16x16,.browser-non-ie .work-docs-icon-check-selected-8ea9c9-24x24,.browser-non-ie .work-docs-icon-check-selected-8ea9c9-16x16,.browser-non-ie .work-docs-icon-check-selected-212f3e-24x24,.browser-non-ie .work-docs-icon-check-selected-212f3e-16x16,.browser-non-ie .work-docs-icon-check-selected-808184-24x24,.browser-non-ie .work-docs-icon-check-selected-808184-16x16,.browser-non-ie .work-docs-icon-check-selected-d0d2d3-24x24,.browser-non-ie .work-docs-icon-check-selected-ffffff-24x24,.browser-non-ie .work-docs-icon-check-selected-d0d2d3-16x16,.browser-non-ie .work-docs-icon-check-selected-ffffff-16x16,.browser-non-ie .work-docs-icon-check-press-808184-24x24,.browser-non-ie .work-docs-icon-check-press-d0d2d3-24x24,.browser-non-ie .work-docs-icon-check-press-ffffff-24x24,.browser-non-ie .work-docs-icon-check-press-808184-16x16,.browser-non-ie .work-docs-icon-check-press-d0d2d3-16x16,.browser-non-ie .work-docs-icon-check-press-ffffff-16x16,.browser-non-ie .work-docs-icon-check-off-808184-24x24,.browser-non-ie .work-docs-icon-check-off-d0d2d3-24x24,.browser-non-ie .work-docs-icon-check-off-ffffff-24x24,.browser-non-ie .work-docs-icon-check-off-808184-16x16,.browser-non-ie .work-docs-icon-check-off-d0d2d3-16x16,.browser-non-ie .work-docs-icon-check-off-ffffff-16x16,.browser-non-ie .work-docs-icon-radio-selected-808184-24x24,.browser-non-ie .work-docs-icon-radio-selected-d0d2d3-24x24,.browser-non-ie .work-docs-icon-radio-selected-ffffff-24x24,.browser-non-ie .work-docs-icon-radio-selected-808184-16x16,.browser-non-ie .work-docs-icon-radio-selected-d0d2d3-16x16,.browser-non-ie .work-docs-icon-radio-selected-ffffff-16x16,.browser-non-ie .work-docs-icon-radio-press-808184-24x24,.browser-non-ie .work-docs-icon-radio-press-d0d2d3-24x24,.browser-non-ie .work-docs-icon-radio-press-ffffff-24x24,.browser-non-ie .work-docs-icon-radio-press-808184-16x16,.browser-non-ie .work-docs-icon-radio-press-d0d2d3-16x16,.browser-non-ie .work-docs-icon-radio-press-ffffff-16x16,.browser-non-ie .work-docs-icon-radio-off-808184-24x24,.browser-non-ie .work-docs-icon-radio-off-d0d2d3-24x24,.browser-non-ie .work-docs-icon-radio-off-ffffff-24x24,.browser-non-ie .work-docs-icon-radio-off-808184-16x16,.browser-non-ie .work-docs-icon-radio-off-d0d2d3-16x16,.browser-non-ie .work-docs-icon-radio-off-ffffff-16x16,.browser-non-ie .work-docs-icon-refresh-alternate-0e72a3-24x24,.browser-non-ie .work-docs-icon-refresh-alternate-8ea9c9-24x24,.browser-non-ie .work-docs-icon-refresh-alternate-212f3e-24x24,.browser-non-ie .work-docs-icon-refresh-alternate-808184-24x24,.browser-non-ie .work-docs-icon-refresh-alternate-d0d2d3-24x24,.browser-non-ie .work-docs-icon-refresh-alternate-ffffff-24x24,.browser-non-ie .work-docs-icon-refresh-alternate-0e72a3-16x16,.browser-non-ie .work-docs-icon-refresh-alternate-8ea9c9-16x16,.browser-non-ie .work-docs-icon-refresh-alternate-212f3e-16x16,.browser-non-ie .work-docs-icon-refresh-alternate-808184-16x16,.browser-non-ie .work-docs-icon-refresh-alternate-d0d2d3-16x16,.browser-non-ie .work-docs-icon-refresh-alternate-ffffff-16x16,.browser-non-ie .work-docs-icon-refresh-808184-24x24,.browser-non-ie .work-docs-icon-refresh-d0d2d3-24x24,.browser-non-ie .work-docs-icon-refresh-ffffff-24x24,.browser-non-ie .work-docs-icon-refresh-808184-16x16,.browser-non-ie .work-docs-icon-refresh-d0d2d3-16x16,.browser-non-ie .work-docs-icon-refresh-ffffff-16x16,.browser-non-ie .work-docs-icon-progress-808184-24x24,.browser-non-ie .work-docs-icon-progress-d0d2d3-24x24,.browser-non-ie .work-docs-icon-progress-ffffff-24x24,.browser-non-ie .work-docs-icon-progress-808184-16x16,.browser-non-ie .work-docs-icon-progress-d0d2d3-16x16,.browser-non-ie .work-docs-icon-progress-ffffff-16x16,.browser-non-ie .work-docs-icon-reply-808184-24x24,.browser-non-ie .work-docs-icon-reply-d0d2d3-24x24,.browser-non-ie .work-docs-icon-reply-ffffff-24x24,.browser-non-ie .work-docs-icon-reply-808184-16x16,.browser-non-ie .work-docs-icon-reply-d0d2d3-16x16,.browser-non-ie .work-docs-icon-reply-ffffff-16x16,.browser-non-ie .work-docs-icon-people-808184-24x24,.browser-non-ie .work-docs-icon-people-d0d2d3-24x24,.browser-non-ie .work-docs-icon-people-ffffff-24x24,.browser-non-ie .work-docs-icon-people-808184-16x16,.browser-non-ie .work-docs-icon-people-d0d2d3-16x16,.browser-non-ie .work-docs-icon-people-ffffff-16x16,.browser-non-ie .work-docs-icon-restore-0e72a3-24x24,.browser-non-ie .work-docs-icon-restore-8ea9c9-24x24,.browser-non-ie .work-docs-icon-restore-212f3e-24x24,.browser-non-ie .work-docs-icon-restore-808184-24x24,.browser-non-ie .work-docs-icon-restore-d0d2d3-24x24,.browser-non-ie .work-docs-icon-restore-ffffff-24x24,.browser-non-ie .work-docs-icon-restore-0e72a3-16x16,.browser-non-ie .work-docs-icon-restore-8ea9c9-16x16,.browser-non-ie .work-docs-icon-restore-212f3e-16x16,.browser-non-ie .work-docs-icon-restore-808184-16x16,.browser-non-ie .work-docs-icon-restore-d0d2d3-16x16,.browser-non-ie .work-docs-icon-restore-ffffff-16x16,.browser-non-ie .work-docs-icon-arrows-right-0e72a3-24x24,.browser-non-ie .work-docs-icon-arrows-right-8ea9c9-24x24,.browser-non-ie .work-docs-icon-arrows-right-212f3e-24x24,.browser-non-ie .work-docs-icon-arrows-right-808184-24x24,.browser-non-ie .work-docs-icon-arrows-right-d0d2d3-24x24,.browser-non-ie .work-docs-icon-arrows-right-ffffff-24x24,.browser-non-ie .work-docs-icon-arrows-right-0e72a3-16x16,.browser-non-ie .work-docs-icon-arrows-right-8ea9c9-16x16,.browser-non-ie .work-docs-icon-arrows-right-212f3e-16x16,.browser-non-ie .work-docs-icon-arrows-right-808184-16x16,.browser-non-ie .work-docs-icon-arrows-right-d0d2d3-16x16,.browser-non-ie .work-docs-icon-arrows-right-ffffff-16x16,.browser-non-ie .work-docs-icon-arrows-left-0e72a3-24x24,.browser-non-ie .work-docs-icon-arrows-left-8ea9c9-24x24,.browser-non-ie .work-docs-icon-arrows-left-212f3e-24x24,.browser-non-ie .work-docs-icon-arrows-left-808184-24x24,.browser-non-ie .work-docs-icon-arrows-left-d0d2d3-24x24,.browser-non-ie .work-docs-icon-arrows-left-ffffff-24x24,.browser-non-ie .work-docs-icon-arrows-left-0e72a3-16x16,.browser-non-ie .work-docs-icon-arrows-left-8ea9c9-16x16,.browser-non-ie .work-docs-icon-arrows-left-212f3e-16x16,.browser-non-ie .work-docs-icon-arrows-left-808184-16x16,.browser-non-ie .work-docs-icon-arrows-left-d0d2d3-16x16,.browser-non-ie .work-docs-icon-arrows-left-ffffff-16x16,.browser-non-ie .work-docs-icon-ellipsis-0e72a3-24x24,.browser-non-ie .work-docs-icon-ellipsis-8ea9c9-24x24,.browser-non-ie .work-docs-icon-ellipsis-212f3e-24x24,.browser-non-ie .work-docs-icon-ellipsis-808184-24x24,.browser-non-ie .work-docs-icon-ellipsis-d0d2d3-24x24,.browser-non-ie .work-docs-icon-ellipsis-ffffff-24x24,.browser-non-ie .work-docs-icon-ellipsis-0e72a3-16x16,.browser-non-ie .work-docs-icon-ellipsis-8ea9c9-16x16,.browser-non-ie .work-docs-icon-ellipsis-212f3e-16x16,.browser-non-ie .work-docs-icon-ellipsis-808184-16x16,.browser-non-ie .work-docs-icon-ellipsis-d0d2d3-16x16,.browser-non-ie .work-docs-icon-ellipsis-ffffff-16x16,.browser-non-ie .work-docs-icon-minus-0e72a3-24x24,.browser-non-ie .work-docs-icon-minus-8ea9c9-24x24,.browser-non-ie .work-docs-icon-minus-212f3e-24x24,.browser-non-ie .work-docs-icon-minus-808184-24x24,.browser-non-ie .work-docs-icon-minus-d0d2d3-24x24,.browser-non-ie .work-docs-icon-minus-ffffff-24x24,.browser-non-ie .work-docs-icon-minus-0e72a3-16x16,.browser-non-ie .work-docs-icon-minus-8ea9c9-16x16,.browser-non-ie .work-docs-icon-minus-212f3e-16x16,.browser-non-ie .work-docs-icon-minus-808184-16x16,.browser-non-ie .work-docs-icon-minus-d0d2d3-16x16,.browser-non-ie .work-docs-icon-minus-ffffff-16x16,.browser-non-ie .work-docs-icon-plus-0e72a3-24x24,.browser-non-ie .work-docs-icon-plus-8ea9c9-24x24,.browser-non-ie .work-docs-icon-plus-212f3e-24x24,.browser-non-ie .work-docs-icon-plus-808184-24x24,.browser-non-ie .work-docs-icon-plus-d0d2d3-24x24,.browser-non-ie .work-docs-icon-plus-ffffff-24x24,.browser-non-ie .work-docs-icon-plus-0e72a3-16x16,.browser-non-ie .work-docs-icon-plus-8ea9c9-16x16,.browser-non-ie .work-docs-icon-plus-212f3e-16x16,.browser-non-ie .work-docs-icon-plus-808184-16x16,.browser-non-ie .work-docs-icon-plus-d0d2d3-16x16,.browser-non-ie .work-docs-icon-plus-ffffff-16x16,.browser-non-ie .work-docs-icon-notifications-ffffff-16x16,.browser-non-ie .work-docs-icon-notifications-ffffff-24x24,.browser-non-ie .work-docs-icon-notifications-0e72a3-24x24,.browser-non-ie .work-docs-icon-notifications-0e72a3-16x16,.browser-non-ie .work-docs-icon-notifications-8ea9c9-24x24,.browser-non-ie .work-docs-icon-notifications-8ea9c9-16x16,.browser-non-ie .work-docs-icon-notifications-212f3e-24x24,.browser-non-ie .work-docs-icon-notifications-212f3e-16x16,.browser-non-ie .work-docs-icon-notifications-808184-24x24,.browser-non-ie .work-docs-icon-notifications-808184-16x16,.browser-non-ie .work-docs-icon-notifications-d0d2d3-24x24,.browser-non-ie .work-docs-icon-notifications-d0d2d3-16x16,.browser-non-ie .work-docs-icon-zoom-out-0e72a3-24x24,.browser-non-ie .work-docs-icon-zoom-out-0e72a3-16x16,.browser-non-ie .work-docs-icon-zoom-out-8ea9c9-24x24,.browser-non-ie .work-docs-icon-zoom-out-8ea9c9-16x16,.browser-non-ie .work-docs-icon-zoom-out-212f3e-24x24,.browser-non-ie .work-docs-icon-zoom-out-212f3e-16x16,.browser-non-ie .work-docs-icon-zoom-out-808184-24x24,.browser-non-ie .work-docs-icon-zoom-out-808184-16x16,.browser-non-ie .work-docs-icon-zoom-out-d0d2d3-24x24,.browser-non-ie .work-docs-icon-zoom-out-d0d2d3-16x16,.browser-non-ie .work-docs-icon-zoom-out-ffffff-24x24,.browser-non-ie .work-docs-icon-zoom-out-ffffff-16x16,.browser-non-ie .work-docs-icon-zoom-in-0e72a3-24x24,.browser-non-ie .work-docs-icon-zoom-in-0e72a3-16x16,.browser-non-ie .work-docs-icon-zoom-in-8ea9c9-24x24,.browser-non-ie .work-docs-icon-zoom-in-8ea9c9-16x16,.browser-non-ie .work-docs-icon-zoom-in-212f3e-24x24,.browser-non-ie .work-docs-icon-zoom-in-212f3e-16x16,.browser-non-ie .work-docs-icon-zoom-in-808184-24x24,.browser-non-ie .work-docs-icon-zoom-in-808184-16x16,.browser-non-ie .work-docs-icon-zoom-in-d0d2d3-24x24,.browser-non-ie .work-docs-icon-zoom-in-d0d2d3-16x16,.browser-non-ie .work-docs-icon-zoom-in-ffffff-24x24,.browser-non-ie .work-docs-icon-zoom-in-ffffff-16x16,.browser-non-ie .work-docs-icon-page-down-0e72a3-24x24,.browser-non-ie .work-docs-icon-page-down-0e72a3-16x16,.browser-non-ie .work-docs-icon-page-down-8ea9c9-24x24,.browser-non-ie .work-docs-icon-page-down-8ea9c9-16x16,.browser-non-ie .work-docs-icon-page-down-212f3e-24x24,.browser-non-ie .work-docs-icon-page-down-212f3e-16x16,.browser-non-ie .work-docs-icon-page-down-808184-24x24,.browser-non-ie .work-docs-icon-page-down-808184-16x16,.browser-non-ie .work-docs-icon-page-down-d0d2d3-24x24,.browser-non-ie .work-docs-icon-page-down-d0d2d3-16x16,.browser-non-ie .work-docs-icon-page-down-ffffff-24x24,.browser-non-ie .work-docs-icon-page-down-ffffff-16x16,.browser-non-ie .work-docs-icon-page-up-0e72a3-24x24,.browser-non-ie .work-docs-icon-page-up-0e72a3-16x16,.browser-non-ie .work-docs-icon-page-up-8ea9c9-24x24,.browser-non-ie .work-docs-icon-page-up-8ea9c9-16x16,.browser-non-ie .work-docs-icon-page-up-212f3e-24x24,.browser-non-ie .work-docs-icon-page-up-212f3e-16x16,.browser-non-ie .work-docs-icon-page-up-808184-24x24,.browser-non-ie .work-docs-icon-page-up-808184-16x16,.browser-non-ie .work-docs-icon-page-up-d0d2d3-24x24,.browser-non-ie .work-docs-icon-page-up-d0d2d3-16x16,.browser-non-ie .work-docs-icon-page-up-ffffff-24x24,.browser-non-ie .work-docs-icon-page-up-ffffff-16x16,.browser-non-ie .work-docs-icon-carat-right-lg-d0d2d3-24x24,.browser-non-ie .work-docs-icon-carat-right-lg-8ea9c9-24x24,.browser-non-ie .work-docs-icon-carat-right-lg-212f3e-24x24,.browser-non-ie .work-docs-icon-carat-right-lg-0e72a3-24x24,.browser-non-ie .work-docs-icon-carat-right-lg-808184-24x24,.browser-non-ie .work-docs-icon-carat-right-lg-ffffff-24x24,.browser-non-ie .work-docs-icon-carat-right-lg-d0d2d3-16x16,.browser-non-ie .work-docs-icon-carat-right-lg-8ea9c9-16x16,.browser-non-ie .work-docs-icon-carat-right-lg-212f3e-16x16,.browser-non-ie .work-docs-icon-carat-right-lg-0e72a3-16x16,.browser-non-ie .work-docs-icon-carat-right-lg-808184-16x16,.browser-non-ie .work-docs-icon-carat-right-lg-ffffff-16x16,.browser-non-ie .work-docs-icon-carat-up-lg-d0d2d3-24x24,.browser-non-ie .work-docs-icon-carat-up-lg-8ea9c9-24x24,.browser-non-ie .work-docs-icon-carat-up-lg-212f3e-24x24,.browser-non-ie .work-docs-icon-carat-up-lg-0e72a3-24x24,.browser-non-ie .work-docs-icon-carat-up-lg-808184-24x24,.browser-non-ie .work-docs-icon-carat-up-lg-ffffff-24x24,.browser-non-ie .work-docs-icon-carat-up-lg-d0d2d3-16x16,.browser-non-ie .work-docs-icon-carat-up-lg-8ea9c9-16x16,.browser-non-ie .work-docs-icon-carat-up-lg-212f3e-16x16,.browser-non-ie .work-docs-icon-carat-up-lg-0e72a3-16x16,.browser-non-ie .work-docs-icon-carat-up-lg-808184-16x16,.browser-non-ie .work-docs-icon-carat-up-lg-ffffff-16x16,.browser-non-ie .work-docs-icon-carat-down-lg-d0d2d3-24x24,.browser-non-ie .work-docs-icon-carat-down-lg-8ea9c9-24x24,.browser-non-ie .work-docs-icon-carat-down-lg-212f3e-24x24,.browser-non-ie .work-docs-icon-carat-down-lg-0e72a3-24x24,.browser-non-ie .work-docs-icon-carat-down-lg-808184-24x24,.browser-non-ie .work-docs-icon-carat-down-lg-ffffff-24x24,.browser-non-ie .work-docs-icon-carat-down-lg-d0d2d3-16x16,.browser-non-ie .work-docs-icon-carat-down-lg-8ea9c9-16x16,.browser-non-ie .work-docs-icon-carat-down-lg-212f3e-16x16,.browser-non-ie .work-docs-icon-carat-down-lg-0e72a3-16x16,.browser-non-ie .work-docs-icon-carat-down-lg-808184-16x16,.browser-non-ie .work-docs-icon-carat-down-lg-ffffff-16x16,.browser-non-ie .work-docs-icon-carat-left-lg-d0d2d3-24x24,.browser-non-ie .work-docs-icon-carat-left-lg-8ea9c9-24x24,.browser-non-ie .work-docs-icon-carat-left-lg-212f3e-24x24,.browser-non-ie .work-docs-icon-carat-left-lg-0e72a3-24x24,.browser-non-ie .work-docs-icon-carat-left-lg-808184-24x24,.browser-non-ie .work-docs-icon-carat-left-lg-ffffff-24x24,.browser-non-ie .work-docs-icon-carat-left-lg-d0d2d3-16x16,.browser-non-ie .work-docs-icon-carat-left-lg-8ea9c9-16x16,.browser-non-ie .work-docs-icon-carat-left-lg-212f3e-16x16,.browser-non-ie .work-docs-icon-carat-left-lg-0e72a3-16x16,.browser-non-ie .work-docs-icon-carat-left-lg-808184-16x16,.browser-non-ie .work-docs-icon-carat-left-lg-ffffff-16x16,.browser-non-ie .work-docs-icon-unchecked-round-d0d2d3-24x24,.browser-non-ie .work-docs-icon-unchecked-round-8ea9c9-24x24,.browser-non-ie .work-docs-icon-unchecked-round-212f3e-24x24,.browser-non-ie .work-docs-icon-unchecked-round-0e72a3-24x24,.browser-non-ie .work-docs-icon-unchecked-round-808184-24x24,.browser-non-ie .work-docs-icon-unchecked-round-ffffff-24x24,.browser-non-ie .work-docs-icon-unchecked-round-d0d2d3-16x16,.browser-non-ie .work-docs-icon-unchecked-round-8ea9c9-16x16,.browser-non-ie .work-docs-icon-unchecked-round-212f3e-16x16,.browser-non-ie .work-docs-icon-unchecked-round-0e72a3-16x16,.browser-non-ie .work-docs-icon-unchecked-round-808184-16x16,.browser-non-ie .work-docs-icon-unchecked-round-ffffff-16x16,.browser-non-ie .work-docs-icon-close-activity-tray-d0d2d3-36x24,.browser-non-ie .work-docs-icon-close-activity-tray-8ea9c9-36x24,.browser-non-ie .work-docs-icon-close-activity-tray-212f3e-36x24,.browser-non-ie .work-docs-icon-close-activity-tray-0e72a3-36x24,.browser-non-ie .work-docs-icon-close-activity-tray-808184-36x24,.browser-non-ie .work-docs-icon-close-activity-tray-ffffff-36x24,.browser-non-ie .work-docs-icon-close-activity-tray-d0d2d3-24x16,.browser-non-ie .work-docs-icon-close-activity-tray-8ea9c9-24x16,.browser-non-ie .work-docs-icon-close-activity-tray-212f3e-24x16,.browser-non-ie .work-docs-icon-close-activity-tray-0e72a3-24x16,.browser-non-ie .work-docs-icon-close-activity-tray-808184-24x16,.browser-non-ie .work-docs-icon-close-activity-tray-ffffff-24x16,.browser-non-ie .work-docs-icon-open-activity-tray-chat-d0d2d3-37x24,.browser-non-ie .work-docs-icon-open-activity-tray-chat-8ea9c9-37x24,.browser-non-ie .work-docs-icon-open-activity-tray-chat-212f3e-37x24,.browser-non-ie .work-docs-icon-open-activity-tray-chat-0e72a3-37x24,.browser-non-ie .work-docs-icon-open-activity-tray-chat-808184-37x24,.browser-non-ie .work-docs-icon-open-activity-tray-chat-ffffff-37x24,.browser-non-ie .work-docs-icon-open-activity-tray-chat-d0d2d3-24x16,.browser-non-ie .work-docs-icon-open-activity-tray-chat-8ea9c9-24x16,.browser-non-ie .work-docs-icon-open-activity-tray-chat-212f3e-24x16,.browser-non-ie .work-docs-icon-open-activity-tray-chat-0e72a3-24x16,.browser-non-ie .work-docs-icon-open-activity-tray-chat-808184-24x16,.browser-non-ie .work-docs-icon-open-activity-tray-chat-ffffff-24x16,.browser-non-ie .work-docs-icon-open-folder-d0d2d3-24x24,.browser-non-ie .work-docs-icon-open-folder-8ea9c9-24x24,.browser-non-ie .work-docs-icon-open-folder-212f3e-24x24,.browser-non-ie .work-docs-icon-open-folder-0e72a3-24x24,.browser-non-ie .work-docs-icon-open-folder-808184-24x24,.browser-non-ie .work-docs-icon-open-folder-ffffff-24x24,.browser-non-ie .work-docs-icon-open-folder-d0d2d3-16x16,.browser-non-ie .work-docs-icon-open-folder-8ea9c9-16x16,.browser-non-ie .work-docs-icon-open-folder-212f3e-16x16,.browser-non-ie .work-docs-icon-open-folder-0e72a3-16x16,.browser-non-ie .work-docs-icon-open-folder-808184-16x16,.browser-non-ie .work-docs-icon-open-folder-ffffff-16x16,.browser-non-ie .work-docs-icon-carat-right-d0d2d3-24x24,.browser-non-ie .work-docs-icon-carat-right-8ea9c9-24x24,.browser-non-ie .work-docs-icon-carat-right-212f3e-24x24,.browser-non-ie .work-docs-icon-carat-right-0e72a3-24x24,.browser-non-ie .work-docs-icon-carat-right-808184-24x24,.browser-non-ie .work-docs-icon-carat-right-ffffff-24x24,.browser-non-ie .work-docs-icon-carat-right-d0d2d3-16x16,.browser-non-ie .work-docs-icon-carat-right-8ea9c9-16x16,.browser-non-ie .work-docs-icon-carat-right-212f3e-16x16,.browser-non-ie .work-docs-icon-carat-right-0e72a3-16x16,.browser-non-ie .work-docs-icon-carat-right-808184-16x16,.browser-non-ie .work-docs-icon-carat-right-ffffff-16x16,.browser-non-ie .work-docs-icon-carat-up-d0d2d3-24x24,.browser-non-ie .work-docs-icon-carat-up-8ea9c9-24x24,.browser-non-ie .work-docs-icon-carat-up-212f3e-24x24,.browser-non-ie .work-docs-icon-carat-up-0e72a3-24x24,.browser-non-ie .work-docs-icon-carat-up-808184-24x24,.browser-non-ie .work-docs-icon-carat-up-ffffff-24x24,.browser-non-ie .work-docs-icon-carat-up-d0d2d3-16x16,.browser-non-ie .work-docs-icon-carat-up-8ea9c9-16x16,.browser-non-ie .work-docs-icon-carat-up-212f3e-16x16,.browser-non-ie .work-docs-icon-carat-up-0e72a3-16x16,.browser-non-ie .work-docs-icon-carat-up-808184-16x16,.browser-non-ie .work-docs-icon-carat-up-ffffff-16x16,.browser-non-ie .work-docs-icon-carat-down-d0d2d3-24x24,.browser-non-ie .work-docs-icon-carat-down-8ea9c9-24x24,.browser-non-ie .work-docs-icon-carat-down-212f3e-24x24,.browser-non-ie .work-docs-icon-carat-down-0e72a3-24x24,.browser-non-ie .work-docs-icon-carat-down-808184-24x24,.browser-non-ie .work-docs-icon-carat-down-ffffff-24x24,.browser-non-ie .work-docs-icon-carat-down-d0d2d3-16x16,.browser-non-ie .work-docs-icon-carat-down-8ea9c9-16x16,.browser-non-ie .work-docs-icon-carat-down-212f3e-16x16,.browser-non-ie .work-docs-icon-carat-down-0e72a3-16x16,.browser-non-ie .work-docs-icon-carat-down-808184-16x16,.browser-non-ie .work-docs-icon-carat-down-ffffff-16x16,.browser-non-ie .work-docs-icon-carat-left-d0d2d3-24x24,.browser-non-ie .work-docs-icon-carat-left-8ea9c9-24x24,.browser-non-ie .work-docs-icon-carat-left-212f3e-24x24,.browser-non-ie .work-docs-icon-carat-left-0e72a3-24x24,.browser-non-ie .work-docs-icon-carat-left-808184-24x24,.browser-non-ie .work-docs-icon-carat-left-ffffff-24x24,.browser-non-ie .work-docs-icon-carat-left-d0d2d3-16x16,.browser-non-ie .work-docs-icon-carat-left-8ea9c9-16x16,.browser-non-ie .work-docs-icon-carat-left-212f3e-16x16,.browser-non-ie .work-docs-icon-carat-left-0e72a3-16x16,.browser-non-ie .work-docs-icon-carat-left-808184-16x16,.browser-non-ie .work-docs-icon-carat-left-ffffff-16x16,.browser-non-ie .work-docs-icon-checked-round-d0d2d3-24x24,.browser-non-ie .work-docs-icon-checked-round-8ea9c9-24x24,.browser-non-ie .work-docs-icon-checked-round-212f3e-24x24,.browser-non-ie .work-docs-icon-checked-round-0e72a3-24x24,.browser-non-ie .work-docs-icon-checked-round-808184-24x24,.browser-non-ie .work-docs-icon-checked-round-ffffff-24x24,.browser-non-ie .work-docs-icon-checked-round-d0d2d3-16x16,.browser-non-ie .work-docs-icon-checked-round-8ea9c9-16x16,.browser-non-ie .work-docs-icon-checked-round-212f3e-16x16,.browser-non-ie .work-docs-icon-checked-round-0e72a3-16x16,.browser-non-ie .work-docs-icon-checked-round-808184-16x16,.browser-non-ie .work-docs-icon-checked-round-ffffff-16x16,.browser-non-ie .work-docs-icon-unchecked-round-solid-d0d2d3-24x24,.browser-non-ie .work-docs-icon-unchecked-round-solid-8ea9c9-24x24,.browser-non-ie .work-docs-icon-unchecked-round-solid-212f3e-24x24,.browser-non-ie .work-docs-icon-unchecked-round-solid-0e72a3-24x24,.browser-non-ie .work-docs-icon-unchecked-round-solid-808184-24x24,.browser-non-ie .work-docs-icon-unchecked-round-solid-ffffff-24x24,.browser-non-ie .work-docs-icon-unchecked-round-solid-d0d2d3-16x16,.browser-non-ie .work-docs-icon-unchecked-round-solid-8ea9c9-16x16,.browser-non-ie .work-docs-icon-unchecked-round-solid-212f3e-16x16,.browser-non-ie .work-docs-icon-unchecked-round-solid-0e72a3-16x16,.browser-non-ie .work-docs-icon-unchecked-round-solid-808184-16x16,.browser-non-ie .work-docs-icon-unchecked-round-solid-ffffff-16x16,.browser-non-ie .work-docs-icon-mail-d0d2d3-24x24,.browser-non-ie .work-docs-icon-mail-8ea9c9-24x24,.browser-non-ie .work-docs-icon-mail-212f3e-24x24,.browser-non-ie .work-docs-icon-mail-0e72a3-24x24,.browser-non-ie .work-docs-icon-mail-808184-24x24,.browser-non-ie .work-docs-icon-mail-ffffff-24x24,.browser-non-ie .work-docs-icon-mail-d0d2d3-16x16,.browser-non-ie .work-docs-icon-mail-8ea9c9-16x16,.browser-non-ie .work-docs-icon-mail-212f3e-16x16,.browser-non-ie .work-docs-icon-mail-0e72a3-16x16,.browser-non-ie .work-docs-icon-mail-808184-16x16,.browser-non-ie .work-docs-icon-mail-ffffff-16x16,.browser-non-ie .work-docs-icon-cloud-toggle-d0d2d3-24x24,.browser-non-ie .work-docs-icon-cloud-toggle-8ea9c9-24x24,.browser-non-ie .work-docs-icon-cloud-toggle-212f3e-24x24,.browser-non-ie .work-docs-icon-cloud-toggle-0e72a3-24x24,.browser-non-ie .work-docs-icon-cloud-toggle-808184-24x24,.browser-non-ie .work-docs-icon-cloud-toggle-ffffff-24x24,.browser-non-ie .work-docs-icon-cloud-toggle-d0d2d3-16x16,.browser-non-ie .work-docs-icon-cloud-toggle-8ea9c9-16x16,.browser-non-ie .work-docs-icon-cloud-toggle-212f3e-16x16,.browser-non-ie .work-docs-icon-cloud-toggle-0e72a3-16x16,.browser-non-ie .work-docs-icon-cloud-toggle-808184-16x16,.browser-non-ie .work-docs-icon-cloud-toggle-ffffff-16x16,.browser-non-ie .work-docs-icon-cloud-d0d2d3-24x24,.browser-non-ie .work-docs-icon-cloud-8ea9c9-24x24,.browser-non-ie .work-docs-icon-cloud-212f3e-24x24,.browser-non-ie .work-docs-icon-cloud-0e72a3-24x24,.browser-non-ie .work-docs-icon-cloud-808184-24x24,.browser-non-ie .work-docs-icon-cloud-ffffff-24x24,.browser-non-ie .work-docs-icon-cloud-d0d2d3-16x16,.browser-non-ie .work-docs-icon-cloud-8ea9c9-16x16,.browser-non-ie .work-docs-icon-cloud-212f3e-16x16,.browser-non-ie .work-docs-icon-cloud-0e72a3-16x16,.browser-non-ie .work-docs-icon-cloud-808184-16x16,.browser-non-ie .work-docs-icon-cloud-ffffff-16x16,.browser-non-ie .work-docs-icon-close-d0d2d3-24x24,.browser-non-ie .work-docs-icon-close-8ea9c9-24x24,.browser-non-ie .work-docs-icon-close-212f3e-24x24,.browser-non-ie .work-docs-icon-close-0e72a3-24x24,.browser-non-ie .work-docs-icon-close-808184-24x24,.browser-non-ie .work-docs-icon-close-ffffff-24x24,.browser-non-ie .work-docs-icon-close-d0d2d3-16x16,.browser-non-ie .work-docs-icon-close-8ea9c9-16x16,.browser-non-ie .work-docs-icon-close-212f3e-16x16,.browser-non-ie .work-docs-icon-close-0e72a3-16x16,.browser-non-ie .work-docs-icon-close-808184-16x16,.browser-non-ie .work-docs-icon-close-ffffff-16x16,.browser-non-ie .work-docs-icon-share-alternate-d0d2d3-24x24,.browser-non-ie .work-docs-icon-share-alternate-8ea9c9-24x24,.browser-non-ie .work-docs-icon-share-alternate-212f3e-24x24,.browser-non-ie .work-docs-icon-share-alternate-0e72a3-24x24,.browser-non-ie .work-docs-icon-share-alternate-808184-24x24,.browser-non-ie .work-docs-icon-share-alternate-ffffff-24x24,.browser-non-ie .work-docs-icon-share-alternate-d0d2d3-16x16,.browser-non-ie .work-docs-icon-share-alternate-8ea9c9-16x16,.browser-non-ie .work-docs-icon-share-alternate-212f3e-16x16,.browser-non-ie .work-docs-icon-share-alternate-0e72a3-16x16,.browser-non-ie .work-docs-icon-share-alternate-808184-16x16,.browser-non-ie .work-docs-icon-share-alternate-ffffff-16x16,.browser-non-ie .work-docs-icon-from-clipboard-d0d2d3-24x24,.browser-non-ie .work-docs-icon-from-clipboard-8ea9c9-24x24,.browser-non-ie .work-docs-icon-from-clipboard-212f3e-24x24,.browser-non-ie .work-docs-icon-from-clipboard-0e72a3-24x24,.browser-non-ie .work-docs-icon-from-clipboard-808184-24x24,.browser-non-ie .work-docs-icon-from-clipboard-ffffff-24x24,.browser-non-ie .work-docs-icon-from-clipboard-d0d2d3-16x16,.browser-non-ie .work-docs-icon-from-clipboard-8ea9c9-16x16,.browser-non-ie .work-docs-icon-from-clipboard-212f3e-16x16,.browser-non-ie .work-docs-icon-from-clipboard-0e72a3-16x16,.browser-non-ie .work-docs-icon-from-clipboard-808184-16x16,.browser-non-ie .work-docs-icon-from-clipboard-ffffff-16x16,.browser-non-ie .work-docs-icon-to-clipboard-d0d2d3-24x24,.browser-non-ie .work-docs-icon-to-clipboard-8ea9c9-24x24,.browser-non-ie .work-docs-icon-to-clipboard-212f3e-24x24,.browser-non-ie .work-docs-icon-to-clipboard-0e72a3-24x24,.browser-non-ie .work-docs-icon-to-clipboard-808184-24x24,.browser-non-ie .work-docs-icon-to-clipboard-ffffff-24x24,.browser-non-ie .work-docs-icon-to-clipboard-d0d2d3-16x16,.browser-non-ie .work-docs-icon-to-clipboard-8ea9c9-16x16,.browser-non-ie .work-docs-icon-to-clipboard-212f3e-16x16,.browser-non-ie .work-docs-icon-to-clipboard-0e72a3-16x16,.browser-non-ie .work-docs-icon-to-clipboard-808184-16x16,.browser-non-ie .work-docs-icon-to-clipboard-ffffff-16x16,.browser-non-ie .work-docs-icon-attach-d0d2d3-24x24,.browser-non-ie .work-docs-icon-attach-8ea9c9-24x24,.browser-non-ie .work-docs-icon-attach-212f3e-24x24,.browser-non-ie .work-docs-icon-attach-0e72a3-24x24,.browser-non-ie .work-docs-icon-attach-808184-24x24,.browser-non-ie .work-docs-icon-attach-ffffff-24x24,.browser-non-ie .work-docs-icon-attach-d0d2d3-16x16,.browser-non-ie .work-docs-icon-attach-8ea9c9-16x16,.browser-non-ie .work-docs-icon-attach-212f3e-16x16,.browser-non-ie .work-docs-icon-attach-0e72a3-16x16,.browser-non-ie .work-docs-icon-attach-808184-16x16,.browser-non-ie .work-docs-icon-attach-ffffff-16x16,.browser-non-ie .work-docs-icon-close-activity-tray-people-d0d2d3-36x24,.browser-non-ie .work-docs-icon-close-activity-tray-people-8ea9c9-36x24,.browser-non-ie .work-docs-icon-close-activity-tray-people-212f3e-36x24,.browser-non-ie .work-docs-icon-close-activity-tray-people-0e72a3-36x24,.browser-non-ie .work-docs-icon-close-activity-tray-people-808184-36x24,.browser-non-ie .work-docs-icon-close-activity-tray-people-ffffff-36x24,.browser-non-ie .work-docs-icon-close-activity-tray-people-d0d2d3-24x16,.browser-non-ie .work-docs-icon-close-activity-tray-people-8ea9c9-24x16,.browser-non-ie .work-docs-icon-close-activity-tray-people-212f3e-24x16,.browser-non-ie .work-docs-icon-close-activity-tray-people-0e72a3-24x16,.browser-non-ie .work-docs-icon-close-activity-tray-people-808184-24x16,.browser-non-ie .work-docs-icon-close-activity-tray-people-ffffff-24x16,.browser-non-ie .work-docs-icon-open-activity-tray-people-d0d2d3-36x24,.browser-non-ie .work-docs-icon-open-activity-tray-people-8ea9c9-36x24,.browser-non-ie .work-docs-icon-open-activity-tray-people-212f3e-36x24,.browser-non-ie .work-docs-icon-open-activity-tray-people-0e72a3-36x24,.browser-non-ie .work-docs-icon-open-activity-tray-people-808184-36x24,.browser-non-ie .work-docs-icon-open-activity-tray-people-ffffff-36x24,.browser-non-ie .work-docs-icon-open-activity-tray-people-d0d2d3-24x16,.browser-non-ie .work-docs-icon-open-activity-tray-people-8ea9c9-24x16,.browser-non-ie .work-docs-icon-open-activity-tray-people-212f3e-24x16,.browser-non-ie .work-docs-icon-open-activity-tray-people-0e72a3-24x16,.browser-non-ie .work-docs-icon-open-activity-tray-people-808184-24x16,.browser-non-ie .work-docs-icon-open-activity-tray-people-ffffff-24x16,.browser-non-ie .work-docs-icon-info-solid-d0d2d3-24x24,.browser-non-ie .work-docs-icon-info-solid-8ea9c9-24x24,.browser-non-ie .work-docs-icon-info-solid-212f3e-24x24,.browser-non-ie .work-docs-icon-info-solid-0e72a3-24x24,.browser-non-ie .work-docs-icon-info-solid-808184-24x24,.browser-non-ie .work-docs-icon-info-solid-ffffff-24x24,.browser-non-ie .work-docs-icon-info-solid-d0d2d3-16x16,.browser-non-ie .work-docs-icon-info-solid-8ea9c9-16x16,.browser-non-ie .work-docs-icon-info-solid-212f3e-16x16,.browser-non-ie .work-docs-icon-info-solid-0e72a3-16x16,.browser-non-ie .work-docs-icon-info-solid-808184-16x16,.browser-non-ie .work-docs-icon-info-solid-ffffff-16x16,.browser-non-ie .work-docs-icon-info-d0d2d3-24x24,.browser-non-ie .work-docs-icon-info-8ea9c9-24x24,.browser-non-ie .work-docs-icon-info-212f3e-24x24,.browser-non-ie .work-docs-icon-info-0e72a3-24x24,.browser-non-ie .work-docs-icon-info-808184-24x24,.browser-non-ie .work-docs-icon-info-ffffff-24x24,.browser-non-ie .work-docs-icon-info-d0d2d3-16x16,.browser-non-ie .work-docs-icon-info-8ea9c9-16x16,.browser-non-ie .work-docs-icon-info-212f3e-16x16,.browser-non-ie .work-docs-icon-info-0e72a3-16x16,.browser-non-ie .work-docs-icon-info-808184-16x16,.browser-non-ie .work-docs-icon-info-ffffff-16x16,.browser-non-ie .work-docs-icon-activity-d0d2d3-24x24,.browser-non-ie .work-docs-icon-activity-8ea9c9-24x24,.browser-non-ie .work-docs-icon-activity-212f3e-24x24,.browser-non-ie .work-docs-icon-activity-0e72a3-24x24,.browser-non-ie .work-docs-icon-activity-808184-24x24,.browser-non-ie .work-docs-icon-activity-ffffff-24x24,.browser-non-ie .work-docs-icon-activity-d0d2d3-16x16,.browser-non-ie .work-docs-icon-activity-8ea9c9-16x16,.browser-non-ie .work-docs-icon-activity-212f3e-16x16,.browser-non-ie .work-docs-icon-activity-0e72a3-16x16,.browser-non-ie .work-docs-icon-activity-808184-16x16,.browser-non-ie .work-docs-icon-activity-ffffff-16x16,.browser-non-ie .work-docs-icon-upload-to-cloud-0e72a3-24x24,.browser-non-ie .work-docs-icon-upload-to-cloud-8ea9c9-24x24,.browser-non-ie .work-docs-icon-upload-to-cloud-212f3e-24x24,.browser-non-ie .work-docs-icon-upload-to-cloud-808184-24x24,.browser-non-ie .work-docs-icon-upload-to-cloud-d0d2d3-24x24,.browser-non-ie .work-docs-icon-upload-to-cloud-ffffff-24x24,.browser-non-ie .work-docs-icon-upload-to-cloud-0e72a3-16x16,.browser-non-ie .work-docs-icon-upload-to-cloud-8ea9c9-16x16,.browser-non-ie .work-docs-icon-upload-to-cloud-212f3e-16x16,.browser-non-ie .work-docs-icon-upload-to-cloud-808184-16x16,.browser-non-ie .work-docs-icon-upload-to-cloud-d0d2d3-16x16,.browser-non-ie .work-docs-icon-upload-to-cloud-ffffff-16x16,.browser-non-ie .work-docs-icon-download-from-cloud-d0d2d3-24x24,.browser-non-ie .work-docs-icon-download-from-cloud-8ea9c9-24x24,.browser-non-ie .work-docs-icon-download-from-cloud-212f3e-24x24,.browser-non-ie .work-docs-icon-download-from-cloud-0e72a3-24x24,.browser-non-ie .work-docs-icon-download-from-cloud-808184-24x24,.browser-non-ie .work-docs-icon-download-from-cloud-ffffff-24x24,.browser-non-ie .work-docs-icon-download-from-cloud-d0d2d3-16x16,.browser-non-ie .work-docs-icon-download-from-cloud-8ea9c9-16x16,.browser-non-ie .work-docs-icon-download-from-cloud-212f3e-16x16,.browser-non-ie .work-docs-icon-download-from-cloud-0e72a3-16x16,.browser-non-ie .work-docs-icon-download-from-cloud-808184-16x16,.browser-non-ie .work-docs-icon-download-from-cloud-ffffff-16x16,.browser-non-ie .work-docs-icon-move-0e72a3-24x24,.browser-non-ie .work-docs-icon-move-8ea9c9-24x24,.browser-non-ie .work-docs-icon-move-212f3e-24x24,.browser-non-ie .work-docs-icon-move-808184-24x24,.browser-non-ie .work-docs-icon-move-d0d2d3-24x24,.browser-non-ie .work-docs-icon-move-ffffff-24x24,.browser-non-ie .work-docs-icon-move-0e72a3-16x16,.browser-non-ie .work-docs-icon-move-8ea9c9-16x16,.browser-non-ie .work-docs-icon-move-212f3e-16x16,.browser-non-ie .work-docs-icon-move-808184-16x16,.browser-non-ie .work-docs-icon-move-d0d2d3-16x16,.browser-non-ie .work-docs-icon-move-ffffff-16x16,.browser-non-ie .work-docs-icon-edit-d0d2d3-24x24,.browser-non-ie .work-docs-icon-edit-8ea9c9-24x24,.browser-non-ie .work-docs-icon-edit-212f3e-24x24,.browser-non-ie .work-docs-icon-edit-0e72a3-24x24,.browser-non-ie .work-docs-icon-edit-808184-24x24,.browser-non-ie .work-docs-icon-edit-ffffff-24x24,.browser-non-ie .work-docs-icon-edit-d0d2d3-16x16,.browser-non-ie .work-docs-icon-edit-8ea9c9-16x16,.browser-non-ie .work-docs-icon-edit-212f3e-16x16,.browser-non-ie .work-docs-icon-edit-0e72a3-16x16,.browser-non-ie .work-docs-icon-edit-808184-16x16,.browser-non-ie .work-docs-icon-edit-ffffff-16x16,.browser-non-ie .work-docs-icon-link-d0d2d3-24x24,.browser-non-ie .work-docs-icon-link-8ea9c9-24x24,.browser-non-ie .work-docs-icon-link-212f3e-24x24,.browser-non-ie .work-docs-icon-link-0e72a3-24x24,.browser-non-ie .work-docs-icon-link-808184-24x24,.browser-non-ie .work-docs-icon-link-ffffff-24x24,.browser-non-ie .work-docs-icon-link-d0d2d3-16x16,.browser-non-ie .work-docs-icon-link-8ea9c9-16x16,.browser-non-ie .work-docs-icon-link-212f3e-16x16,.browser-non-ie .work-docs-icon-link-0e72a3-16x16,.browser-non-ie .work-docs-icon-link-808184-16x16,.browser-non-ie .work-docs-icon-link-ffffff-16x16,.browser-non-ie .work-docs-icon-share-d0d2d3-24x24,.browser-non-ie .work-docs-icon-share-8ea9c9-24x24,.browser-non-ie .work-docs-icon-share-212f3e-24x24,.browser-non-ie .work-docs-icon-share-0e72a3-24x24,.browser-non-ie .work-docs-icon-share-808184-24x24,.browser-non-ie .work-docs-icon-share-ffffff-24x24,.browser-non-ie .work-docs-icon-share-d0d2d3-16x16,.browser-non-ie .work-docs-icon-share-8ea9c9-16x16,.browser-non-ie .work-docs-icon-share-212f3e-16x16,.browser-non-ie .work-docs-icon-share-0e72a3-16x16,.browser-non-ie .work-docs-icon-share-808184-16x16,.browser-non-ie .work-docs-icon-share-ffffff-16x16,.browser-non-ie .work-docs-icon-doc-sm-d0d2d3-24x24,.browser-non-ie .work-docs-icon-doc-sm-8ea9c9-24x24,.browser-non-ie .work-docs-icon-doc-sm-212f3e-24x24,.browser-non-ie .work-docs-icon-doc-sm-0e72a3-24x24,.browser-non-ie .work-docs-icon-doc-sm-808184-24x24,.browser-non-ie .work-docs-icon-doc-sm-ffffff-24x24,.browser-non-ie .work-docs-icon-doc-sm-d0d2d3-16x16,.browser-non-ie .work-docs-icon-doc-sm-8ea9c9-16x16,.browser-non-ie .work-docs-icon-doc-sm-212f3e-16x16,.browser-non-ie .work-docs-icon-doc-sm-0e72a3-16x16,.browser-non-ie .work-docs-icon-doc-sm-808184-16x16,.browser-non-ie .work-docs-icon-doc-sm-ffffff-16x16,.browser-non-ie .work-docs-icon-folder-sm-d0d2d3-24x24,.browser-non-ie .work-docs-icon-folder-sm-8ea9c9-24x24,.browser-non-ie .work-docs-icon-folder-sm-212f3e-24x24,.browser-non-ie .work-docs-icon-folder-sm-0e72a3-24x24,.browser-non-ie .work-docs-icon-folder-sm-808184-24x24,.browser-non-ie .work-docs-icon-folder-sm-ffffff-24x24,.browser-non-ie .work-docs-icon-folder-sm-d0d2d3-16x16,.browser-non-ie .work-docs-icon-folder-sm-8ea9c9-16x16,.browser-non-ie .work-docs-icon-folder-sm-212f3e-16x16,.browser-non-ie .work-docs-icon-folder-sm-0e72a3-16x16,.browser-non-ie .work-docs-icon-folder-sm-808184-16x16,.browser-non-ie .work-docs-icon-folder-sm-ffffff-16x16,.browser-non-ie .work-docs-icon-locked-d0d2d3-24x24,.browser-non-ie .work-docs-icon-locked-8ea9c9-24x24,.browser-non-ie .work-docs-icon-locked-212f3e-24x24,.browser-non-ie .work-docs-icon-locked-ffa724-24x24,.browser-non-ie .work-docs-icon-locked-0e72a3-24x24,.browser-non-ie .work-docs-icon-locked-808184-24x24,.browser-non-ie .work-docs-icon-locked-ffffff-24x24,.browser-non-ie .work-docs-icon-locked-d0d2d3-16x16,.browser-non-ie .work-docs-icon-locked-8ea9c9-16x16,.browser-non-ie .work-docs-icon-locked-212f3e-16x16,.browser-non-ie .work-docs-icon-locked-ffa724-16x16,.browser-non-ie .work-docs-icon-locked-0e72a3-16x16,.browser-non-ie .work-docs-icon-locked-808184-16x16,.browser-non-ie .work-docs-icon-locked-ffffff-16x16,.browser-non-ie .work-docs-icon-unchecked-d0d2d3-24x24,.browser-non-ie .work-docs-icon-unchecked-8ea9c9-24x24,.browser-non-ie .work-docs-icon-unchecked-212f3e-24x24,.browser-non-ie .work-docs-icon-unchecked-0e72a3-24x24,.browser-non-ie .work-docs-icon-unchecked-808184-24x24,.browser-non-ie .work-docs-icon-unchecked-ffffff-24x24,.browser-non-ie .work-docs-icon-unchecked-d0d2d3-16x16,.browser-non-ie .work-docs-icon-unchecked-8ea9c9-16x16,.browser-non-ie .work-docs-icon-unchecked-212f3e-16x16,.browser-non-ie .work-docs-icon-unchecked-0e72a3-16x16,.browser-non-ie .work-docs-icon-unchecked-808184-16x16,.browser-non-ie .work-docs-icon-unchecked-ffffff-16x16,.browser-non-ie .work-docs-icon-checked-d0d2d3-24x24,.browser-non-ie .work-docs-icon-checked-8ea9c9-24x24,.browser-non-ie .work-docs-icon-checked-212f3e-24x24,.browser-non-ie .work-docs-icon-checked-0e72a3-24x24,.browser-non-ie .work-docs-icon-checked-808184-24x24,.browser-non-ie .work-docs-icon-checked-ffffff-24x24,.browser-non-ie .work-docs-icon-checked-d0d2d3-16x16,.browser-non-ie .work-docs-icon-checked-8ea9c9-16x16,.browser-non-ie .work-docs-icon-checked-212f3e-16x16,.browser-non-ie .work-docs-icon-checked-0e72a3-16x16,.browser-non-ie .work-docs-icon-checked-808184-16x16,.browser-non-ie .work-docs-icon-checked-ffffff-16x16,.browser-non-ie .work-docs-icon-checked-solid-d0d2d3-24x24,.browser-non-ie .work-docs-icon-checked-solid-8ea9c9-24x24,.browser-non-ie .work-docs-icon-checked-solid-212f3e-24x24,.browser-non-ie .work-docs-icon-checked-solid-0e72a3-24x24,.browser-non-ie .work-docs-icon-checked-solid-808184-24x24,.browser-non-ie .work-docs-icon-checked-solid-ffffff-24x24,.browser-non-ie .work-docs-icon-checked-solid-d0d2d3-16x16,.browser-non-ie .work-docs-icon-checked-solid-8ea9c9-16x16,.browser-non-ie .work-docs-icon-checked-solid-212f3e-16x16,.browser-non-ie .work-docs-icon-checked-solid-0e72a3-16x16,.browser-non-ie .work-docs-icon-checked-solid-808184-16x16,.browser-non-ie .work-docs-icon-checked-solid-ffffff-16x16,.browser-non-ie .work-docs-icon-trash-sm-d0d2d3-24x24,.browser-non-ie .work-docs-icon-trash-sm-8ea9c9-24x24,.browser-non-ie .work-docs-icon-trash-sm-212f3e-24x24,.browser-non-ie .work-docs-icon-trash-sm-0e72a3-24x24,.browser-non-ie .work-docs-icon-trash-sm-808184-24x24,.browser-non-ie .work-docs-icon-trash-sm-ffffff-24x24,.browser-non-ie .work-docs-icon-trash-sm-d0d2d3-16x16,.browser-non-ie .work-docs-icon-trash-sm-8ea9c9-16x16,.browser-non-ie .work-docs-icon-trash-sm-212f3e-16x16,.browser-non-ie .work-docs-icon-trash-sm-0e72a3-16x16,.browser-non-ie .work-docs-icon-trash-sm-808184-16x16,.browser-non-ie .work-docs-icon-trash-sm-ffffff-16x16,.browser-non-ie .work-docs-icon-add-versions-d0d2d3-24x24,.browser-non-ie .work-docs-icon-add-versions-8ea9c9-24x24,.browser-non-ie .work-docs-icon-add-versions-212f3e-24x24,.browser-non-ie .work-docs-icon-add-versions-0e72a3-24x24,.browser-non-ie .work-docs-icon-add-versions-808184-24x24,.browser-non-ie .work-docs-icon-add-versions-ffffff-24x24,.browser-non-ie .work-docs-icon-add-versions-d0d2d3-16x16,.browser-non-ie .work-docs-icon-add-versions-8ea9c9-16x16,.browser-non-ie .work-docs-icon-add-versions-212f3e-16x16,.browser-non-ie .work-docs-icon-add-versions-0e72a3-16x16,.browser-non-ie .work-docs-icon-add-versions-808184-16x16,.browser-non-ie .work-docs-icon-add-versions-ffffff-16x16,.browser-non-ie .work-docs-icon-versions-d0d2d3-24x24,.browser-non-ie .work-docs-icon-versions-8ea9c9-24x24,.browser-non-ie .work-docs-icon-versions-212f3e-24x24,.browser-non-ie .work-docs-icon-versions-0e72a3-24x24,.browser-non-ie .work-docs-icon-versions-808184-24x24,.browser-non-ie .work-docs-icon-versions-ffffff-24x24,.browser-non-ie .work-docs-icon-versions-d0d2d3-16x16,.browser-non-ie .work-docs-icon-versions-8ea9c9-16x16,.browser-non-ie .work-docs-icon-versions-212f3e-16x16,.browser-non-ie .work-docs-icon-versions-0e72a3-16x16,.browser-non-ie .work-docs-icon-versions-808184-16x16,.browser-non-ie .work-docs-icon-versions-ffffff-16x16,.browser-non-ie .work-docs-icon-doc-lg-d0d2d3-24x24,.browser-non-ie .work-docs-icon-doc-lg-8ea9c9-24x24,.browser-non-ie .work-docs-icon-doc-lg-212f3e-24x24,.browser-non-ie .work-docs-icon-doc-lg-0e72a3-24x24,.browser-non-ie .work-docs-icon-doc-lg-808184-24x24,.browser-non-ie .work-docs-icon-doc-lg-ffffff-24x24,.browser-non-ie .work-docs-icon-doc-lg-d0d2d3-16x16,.browser-non-ie .work-docs-icon-doc-lg-8ea9c9-16x16,.browser-non-ie .work-docs-icon-doc-lg-212f3e-16x16,.browser-non-ie .work-docs-icon-doc-lg-0e72a3-16x16,.browser-non-ie .work-docs-icon-doc-lg-808184-16x16,.browser-non-ie .work-docs-icon-doc-lg-ffffff-16x16,.browser-non-ie .work-docs-icon-folder-lg-d0d2d3-24x24,.browser-non-ie .work-docs-icon-folder-lg-8ea9c9-24x24,.browser-non-ie .work-docs-icon-folder-lg-212f3e-24x24,.browser-non-ie .work-docs-icon-folder-lg-0e72a3-24x24,.browser-non-ie .work-docs-icon-folder-lg-808184-24x24,.browser-non-ie .work-docs-icon-folder-lg-ffffff-24x24,.browser-non-ie .work-docs-icon-folder-lg-d0d2d3-16x16,.browser-non-ie .work-docs-icon-folder-lg-8ea9c9-16x16,.browser-non-ie .work-docs-icon-folder-lg-212f3e-16x16,.browser-non-ie .work-docs-icon-folder-lg-0e72a3-16x16,.browser-non-ie .work-docs-icon-folder-lg-808184-16x16,.browser-non-ie .work-docs-icon-folder-lg-ffffff-16x16,.browser-non-ie .work-docs-icon-hamburger-d0d2d3-24x24,.browser-non-ie .work-docs-icon-hamburger-8ea9c9-24x24,.browser-non-ie .work-docs-icon-hamburger-212f3e-24x24,.browser-non-ie .work-docs-icon-hamburger-0e72a3-24x24,.browser-non-ie .work-docs-icon-hamburger-808184-24x24,.browser-non-ie .work-docs-icon-hamburger-ffffff-24x24,.browser-non-ie .work-docs-icon-hamburger-d0d2d3-16x16,.browser-non-ie .work-docs-icon-hamburger-8ea9c9-16x16,.browser-non-ie .work-docs-icon-hamburger-212f3e-16x16,.browser-non-ie .work-docs-icon-hamburger-0e72a3-16x16,.browser-non-ie .work-docs-icon-hamburger-808184-16x16,.browser-non-ie .work-docs-icon-hamburger-ffffff-16x16,.browser-non-ie .work-docs-icon-back-d0d2d3-36x24,.browser-non-ie .work-docs-icon-back-8ea9c9-36x24,.browser-non-ie .work-docs-icon-back-212f3e-36x24,.browser-non-ie .work-docs-icon-back-0e72a3-36x24,.browser-non-ie .work-docs-icon-back-808184-36x24,.browser-non-ie .work-docs-icon-back-ffffff-36x24,.browser-non-ie .work-docs-icon-back-d0d2d3-24x16,.browser-non-ie .work-docs-icon-back-8ea9c9-24x16,.browser-non-ie .work-docs-icon-back-212f3e-24x16,.browser-non-ie .work-docs-icon-back-0e72a3-24x16,.browser-non-ie .work-docs-icon-back-808184-24x16,.browser-non-ie .work-docs-icon-back-ffffff-24x16,.browser-non-ie .work-docs-icon-tray-control-d0d2d3-24x24,.browser-non-ie .work-docs-icon-tray-control-8ea9c9-24x24,.browser-non-ie .work-docs-icon-tray-control-212f3e-24x24,.browser-non-ie .work-docs-icon-tray-control-0e72a3-24x24,.browser-non-ie .work-docs-icon-tray-control-808184-24x24,.browser-non-ie .work-docs-icon-tray-control-ffffff-24x24,.browser-non-ie .work-docs-icon-tray-control-d0d2d3-16x16,.browser-non-ie .work-docs-icon-tray-control-8ea9c9-16x16,.browser-non-ie .work-docs-icon-tray-control-212f3e-16x16,.browser-non-ie .work-docs-icon-tray-control-0e72a3-16x16,.browser-non-ie .work-docs-icon-tray-control-808184-16x16,.browser-non-ie .work-docs-icon-tray-control-ffffff-16x16,.browser-non-ie .work-docs-icon-bug-d0d2d3-24x24,.browser-non-ie .work-docs-icon-bug-8ea9c9-24x24,.browser-non-ie .work-docs-icon-bug-212f3e-24x24,.browser-non-ie .work-docs-icon-bug-0e72a3-24x24,.browser-non-ie .work-docs-icon-bug-808184-24x24,.browser-non-ie .work-docs-icon-bug-ffffff-24x24,.browser-non-ie .work-docs-icon-bug-d0d2d3-16x16,.browser-non-ie .work-docs-icon-bug-8ea9c9-16x16,.browser-non-ie .work-docs-icon-bug-212f3e-16x16,.browser-non-ie .work-docs-icon-bug-0e72a3-16x16,.browser-non-ie .work-docs-icon-bug-808184-16x16,.browser-non-ie .work-docs-icon-bug-ffffff-16x16,.browser-non-ie .work-docs-icon-list-view-d0d2d3-24x24,.browser-non-ie .work-docs-icon-list-view-8ea9c9-24x24,.browser-non-ie .work-docs-icon-list-view-212f3e-24x24,.browser-non-ie .work-docs-icon-list-view-0e72a3-24x24,.browser-non-ie .work-docs-icon-list-view-808184-24x24,.browser-non-ie .work-docs-icon-list-view-ffffff-24x24,.browser-non-ie .work-docs-icon-list-view-d0d2d3-16x16,.browser-non-ie .work-docs-icon-list-view-8ea9c9-16x16,.browser-non-ie .work-docs-icon-list-view-212f3e-16x16,.browser-non-ie .work-docs-icon-list-view-0e72a3-16x16,.browser-non-ie .work-docs-icon-list-view-808184-16x16,.browser-non-ie .work-docs-icon-list-view-ffffff-16x16,.browser-non-ie .work-docs-icon-icon-view-d0d2d3-24x24,.browser-non-ie .work-docs-icon-icon-view-8ea9c9-24x24,.browser-non-ie .work-docs-icon-icon-view-212f3e-24x24,.browser-non-ie .work-docs-icon-icon-view-0e72a3-24x24,.browser-non-ie .work-docs-icon-icon-view-808184-24x24,.browser-non-ie .work-docs-icon-icon-view-ffffff-24x24,.browser-non-ie .work-docs-icon-icon-view-d0d2d3-16x16,.browser-non-ie .work-docs-icon-icon-view-8ea9c9-16x16,.browser-non-ie .work-docs-icon-icon-view-212f3e-16x16,.browser-non-ie .work-docs-icon-icon-view-0e72a3-16x16,.browser-non-ie .work-docs-icon-icon-view-808184-16x16,.browser-non-ie .work-docs-icon-icon-view-ffffff-16x16,.browser-non-ie .work-docs-icon-remove-d0d2d3-24x24,.browser-non-ie .work-docs-icon-remove-8ea9c9-24x24,.browser-non-ie .work-docs-icon-remove-212f3e-24x24,.browser-non-ie .work-docs-icon-remove-0e72a3-24x24,.browser-non-ie .work-docs-icon-remove-808184-24x24,.browser-non-ie .work-docs-icon-remove-ffffff-24x24,.browser-non-ie .work-docs-icon-remove-d0d2d3-16x16,.browser-non-ie .work-docs-icon-remove-8ea9c9-16x16,.browser-non-ie .work-docs-icon-remove-212f3e-16x16,.browser-non-ie .work-docs-icon-remove-0e72a3-16x16,.browser-non-ie .work-docs-icon-remove-808184-16x16,.browser-non-ie .work-docs-icon-remove-ffffff-16x16,.browser-non-ie .work-docs-icon-add-d0d2d3-24x24,.browser-non-ie .work-docs-icon-add-8ea9c9-24x24,.browser-non-ie .work-docs-icon-add-212f3e-24x24,.browser-non-ie .work-docs-icon-add-0e72a3-24x24,.browser-non-ie .work-docs-icon-add-808184-24x24,.browser-non-ie .work-docs-icon-add-ffffff-24x24,.browser-non-ie .work-docs-icon-add-d0d2d3-16x16,.browser-non-ie .work-docs-icon-add-8ea9c9-16x16,.browser-non-ie .work-docs-icon-add-212f3e-16x16,.browser-non-ie .work-docs-icon-add-0e72a3-16x16,.browser-non-ie .work-docs-icon-add-808184-16x16,.browser-non-ie .work-docs-icon-add-ffffff-16x16,.browser-non-ie .work-docs-icon-add-folder-d0d2d3-24x24,.browser-non-ie .work-docs-icon-add-folder-8ea9c9-24x24,.browser-non-ie .work-docs-icon-add-folder-212f3e-24x24,.browser-non-ie .work-docs-icon-add-folder-0e72a3-24x24,.browser-non-ie .work-docs-icon-add-folder-808184-24x24,.browser-non-ie .work-docs-icon-add-folder-ffffff-24x24,.browser-non-ie .work-docs-icon-add-folder-d0d2d3-16x16,.browser-non-ie .work-docs-icon-add-folder-8ea9c9-16x16,.browser-non-ie .work-docs-icon-add-folder-212f3e-16x16,.browser-non-ie .work-docs-icon-add-folder-0e72a3-16x16,.browser-non-ie .work-docs-icon-add-folder-808184-16x16,.browser-non-ie .work-docs-icon-add-folder-ffffff-16x16,.browser-non-ie .work-docs-icon-comments-d0d2d3-24x24,.browser-non-ie .work-docs-icon-comments-8ea9c9-24x24,.browser-non-ie .work-docs-icon-comments-212f3e-24x24,.browser-non-ie .work-docs-icon-comments-0e72a3-24x24,.browser-non-ie .work-docs-icon-comments-808184-24x24,.browser-non-ie .work-docs-icon-comments-ffffff-24x24,.browser-non-ie .work-docs-icon-comments-d0d2d3-16x16,.browser-non-ie .work-docs-icon-comments-8ea9c9-16x16,.browser-non-ie .work-docs-icon-comments-212f3e-16x16,.browser-non-ie .work-docs-icon-comments-0e72a3-16x16,.browser-non-ie .work-docs-icon-comments-808184-16x16,.browser-non-ie .work-docs-icon-comments-ffffff-16x16,.browser-non-ie .work-docs-icon-search-d0d2d3-24x24,.browser-non-ie .work-docs-icon-search-8ea9c9-24x24,.browser-non-ie .work-docs-icon-search-212f3e-24x24,.browser-non-ie .work-docs-icon-search-0e72a3-24x24,.browser-non-ie .work-docs-icon-search-808184-24x24,.browser-non-ie .work-docs-icon-search-ffffff-24x24,.browser-non-ie .work-docs-icon-search-d0d2d3-16x16,.browser-non-ie .work-docs-icon-search-8ea9c9-16x16,.browser-non-ie .work-docs-icon-search-212f3e-16x16,.browser-non-ie .work-docs-icon-search-0e72a3-16x16,.browser-non-ie .work-docs-icon-search-808184-16x16,.browser-non-ie .work-docs-icon-search-ffffff-16x16,.browser-non-ie .work-docs-icon-device-offline-documents-d0d2d3-24x24,.browser-non-ie .work-docs-icon-device-offline-documents-8ea9c9-24x24,.browser-non-ie .work-docs-icon-device-offline-documents-212f3e-24x24,.browser-non-ie .work-docs-icon-device-offline-documents-0e72a3-24x24,.browser-non-ie .work-docs-icon-device-offline-documents-808184-24x24,.browser-non-ie .work-docs-icon-device-offline-documents-ffffff-24x24,.browser-non-ie .work-docs-icon-device-offline-documents-d0d2d3-16x16,.browser-non-ie .work-docs-icon-device-offline-documents-8ea9c9-16x16,.browser-non-ie .work-docs-icon-device-offline-documents-212f3e-16x16,.browser-non-ie .work-docs-icon-device-offline-documents-0e72a3-16x16,.browser-non-ie .work-docs-icon-device-offline-documents-808184-16x16,.browser-non-ie .work-docs-icon-device-offline-documents-ffffff-16x16,.browser-non-ie .work-docs-icon-filled-offline-documents-d0d2d3-24x24,.browser-non-ie .work-docs-icon-filled-offline-documents-8ea9c9-24x24,.browser-non-ie .work-docs-icon-filled-offline-documents-212f3e-24x24,.browser-non-ie .work-docs-icon-filled-offline-documents-0e72a3-24x24,.browser-non-ie .work-docs-icon-filled-offline-documents-808184-24x24,.browser-non-ie .work-docs-icon-filled-offline-documents-ffffff-24x24,.browser-non-ie .work-docs-icon-filled-offline-documents-d0d2d3-16x16,.browser-non-ie .work-docs-icon-filled-offline-documents-8ea9c9-16x16,.browser-non-ie .work-docs-icon-filled-offline-documents-212f3e-16x16,.browser-non-ie .work-docs-icon-filled-offline-documents-0e72a3-16x16,.browser-non-ie .work-docs-icon-filled-offline-documents-808184-16x16,.browser-non-ie .work-docs-icon-filled-offline-documents-ffffff-16x16,.browser-non-ie .work-docs-icon-offline-documents-d0d2d3-24x24,.browser-non-ie .work-docs-icon-offline-documents-8ea9c9-24x24,.browser-non-ie .work-docs-icon-offline-documents-212f3e-24x24,.browser-non-ie .work-docs-icon-offline-documents-0e72a3-24x24,.browser-non-ie .work-docs-icon-offline-documents-808184-24x24,.browser-non-ie .work-docs-icon-offline-documents-ffffff-24x24,.browser-non-ie .work-docs-icon-offline-documents-d0d2d3-16x16,.browser-non-ie .work-docs-icon-offline-documents-8ea9c9-16x16,.browser-non-ie .work-docs-icon-offline-documents-212f3e-16x16,.browser-non-ie .work-docs-icon-offline-documents-0e72a3-16x16,.browser-non-ie .work-docs-icon-offline-documents-808184-16x16,.browser-non-ie .work-docs-icon-offline-documents-ffffff-16x16,.browser-non-ie .work-docs-icon-settings-d0d2d3-24x24,.browser-non-ie .work-docs-icon-settings-8ea9c9-24x24,.browser-non-ie .work-docs-icon-settings-212f3e-24x24,.browser-non-ie .work-docs-icon-settings-0e72a3-24x24,.browser-non-ie .work-docs-icon-settings-808184-24x24,.browser-non-ie .work-docs-icon-settings-ffffff-24x24,.browser-non-ie .work-docs-icon-settings-d0d2d3-16x16,.browser-non-ie .work-docs-icon-settings-8ea9c9-16x16,.browser-non-ie .work-docs-icon-settings-212f3e-16x16,.browser-non-ie .work-docs-icon-settings-0e72a3-16x16,.browser-non-ie .work-docs-icon-settings-808184-16x16,.browser-non-ie .work-docs-icon-settings-ffffff-16x16,.browser-non-ie .work-docs-icon-log-out-d0d2d3-24x24,.browser-non-ie .work-docs-icon-log-out-8ea9c9-24x24,.browser-non-ie .work-docs-icon-log-out-212f3e-24x24,.browser-non-ie .work-docs-icon-log-out-0e72a3-24x24,.browser-non-ie .work-docs-icon-log-out-808184-24x24,.browser-non-ie .work-docs-icon-log-out-ffffff-24x24,.browser-non-ie .work-docs-icon-log-out-d0d2d3-16x16,.browser-non-ie .work-docs-icon-log-out-8ea9c9-16x16,.browser-non-ie .work-docs-icon-log-out-212f3e-16x16,.browser-non-ie .work-docs-icon-log-out-0e72a3-16x16,.browser-non-ie .work-docs-icon-log-out-808184-16x16,.browser-non-ie .work-docs-icon-log-out-ffffff-16x16,.browser-non-ie .work-docs-icon-download-apps-0e72a3-24x24,.browser-non-ie .work-docs-icon-download-apps-8ea9c9-24x24,.browser-non-ie .work-docs-icon-download-apps-212f3e-24x24,.browser-non-ie .work-docs-icon-download-apps-808184-24x24,.browser-non-ie .work-docs-icon-download-apps-d0d2d3-24x24,.browser-non-ie .work-docs-icon-download-apps-ffffff-24x24,.browser-non-ie .work-docs-icon-download-apps-0e72a3-16x16,.browser-non-ie .work-docs-icon-download-apps-8ea9c9-16x16,.browser-non-ie .work-docs-icon-download-apps-212f3e-16x16,.browser-non-ie .work-docs-icon-download-apps-808184-16x16,.browser-non-ie .work-docs-icon-download-apps-d0d2d3-16x16,.browser-non-ie .work-docs-icon-download-apps-ffffff-16x16,.browser-non-ie .work-docs-icon-profile-d0d2d3-24x24,.browser-non-ie .work-docs-icon-profile-8ea9c9-24x24,.browser-non-ie .work-docs-icon-profile-212f3e-24x24,.browser-non-ie .work-docs-icon-profile-0e72a3-24x24,.browser-non-ie .work-docs-icon-profile-808184-24x24,.browser-non-ie .work-docs-icon-profile-ffffff-24x24,.browser-non-ie .work-docs-icon-profile-d0d2d3-16x16,.browser-non-ie .work-docs-icon-profile-8ea9c9-16x16,.browser-non-ie .work-docs-icon-profile-212f3e-16x16,.browser-non-ie .work-docs-icon-profile-0e72a3-16x16,.browser-non-ie .work-docs-icon-profile-808184-16x16,.browser-non-ie .work-docs-icon-profile-ffffff-16x16,.browser-non-ie .work-docs-icon-trash-d0d2d3-24x24,.browser-non-ie .work-docs-icon-trash-8ea9c9-24x24,.browser-non-ie .work-docs-icon-trash-212f3e-24x24,.browser-non-ie .work-docs-icon-trash-0e72a3-24x24,.browser-non-ie .work-docs-icon-trash-808184-24x24,.browser-non-ie .work-docs-icon-trash-ffffff-24x24,.browser-non-ie .work-docs-icon-trash-d0d2d3-16x16,.browser-non-ie .work-docs-icon-trash-8ea9c9-16x16,.browser-non-ie .work-docs-icon-trash-212f3e-16x16,.browser-non-ie .work-docs-icon-trash-0e72a3-16x16,.browser-non-ie .work-docs-icon-trash-808184-16x16,.browser-non-ie .work-docs-icon-trash-ffffff-16x16,.browser-non-ie .work-docs-icon-out-for-review-d0d2d3-24x24,.browser-non-ie .work-docs-icon-out-for-review-8ea9c9-24x24,.browser-non-ie .work-docs-icon-out-for-review-212f3e-24x24,.browser-non-ie .work-docs-icon-out-for-review-0e72a3-24x24,.browser-non-ie .work-docs-icon-out-for-review-808184-24x24,.browser-non-ie .work-docs-icon-out-for-review-ffffff-24x24,.browser-non-ie .work-docs-icon-out-for-review-d0d2d3-16x16,.browser-non-ie .work-docs-icon-out-for-review-8ea9c9-16x16,.browser-non-ie .work-docs-icon-out-for-review-212f3e-16x16,.browser-non-ie .work-docs-icon-out-for-review-0e72a3-16x16,.browser-non-ie .work-docs-icon-out-for-review-808184-16x16,.browser-non-ie .work-docs-icon-out-for-review-ffffff-16x16,.browser-non-ie .work-docs-icon-awaiting-feedback-d0d2d3-24x24,.browser-non-ie .work-docs-icon-awaiting-feedback-8ea9c9-24x24,.browser-non-ie .work-docs-icon-awaiting-feedback-212f3e-24x24,.browser-non-ie .work-docs-icon-awaiting-feedback-0e72a3-24x24,.browser-non-ie .work-docs-icon-awaiting-feedback-808184-24x24,.browser-non-ie .work-docs-icon-awaiting-feedback-ffffff-24x24,.browser-non-ie .work-docs-icon-awaiting-feedback-d0d2d3-16x16,.browser-non-ie .work-docs-icon-awaiting-feedback-8ea9c9-16x16,.browser-non-ie .work-docs-icon-awaiting-feedback-212f3e-16x16,.browser-non-ie .work-docs-icon-awaiting-feedback-0e72a3-16x16,.browser-non-ie .work-docs-icon-awaiting-feedback-808184-16x16,.browser-non-ie .work-docs-icon-awaiting-feedback-ffffff-16x16,.browser-non-ie .work-docs-icon-shared-with-me-d0d2d3-24x24,.browser-non-ie .work-docs-icon-shared-with-me-8ea9c9-24x24,.browser-non-ie .work-docs-icon-shared-with-me-212f3e-24x24,.browser-non-ie .work-docs-icon-shared-with-me-0e72a3-24x24,.browser-non-ie .work-docs-icon-shared-with-me-808184-24x24,.browser-non-ie .work-docs-icon-shared-with-me-ffffff-24x24,.browser-non-ie .work-docs-icon-shared-with-me-d0d2d3-16x16,.browser-non-ie .work-docs-icon-shared-with-me-8ea9c9-16x16,.browser-non-ie .work-docs-icon-shared-with-me-212f3e-16x16,.browser-non-ie .work-docs-icon-shared-with-me-0e72a3-16x16,.browser-non-ie .work-docs-icon-shared-with-me-808184-16x16,.browser-non-ie .work-docs-icon-shared-with-me-ffffff-16x16,.browser-non-ie .work-docs-icon-my-documents-d0d2d3-24x24,.browser-non-ie .work-docs-icon-my-documents-8ea9c9-24x24,.browser-non-ie .work-docs-icon-my-documents-212f3e-24x24,.browser-non-ie .work-docs-icon-my-documents-0e72a3-24x24,.browser-non-ie .work-docs-icon-my-documents-808184-24x24,.browser-non-ie .work-docs-icon-my-documents-ffffff-24x24,.browser-non-ie .work-docs-icon-my-documents-d0d2d3-16x16,.browser-non-ie .work-docs-icon-my-documents-8ea9c9-16x16,.browser-non-ie .work-docs-icon-my-documents-212f3e-16x16,.browser-non-ie .work-docs-icon-my-documents-0e72a3-16x16,.browser-non-ie .work-docs-icon-my-documents-808184-16x16,.browser-non-ie .work-docs-icon-my-documents-ffffff-16x16,.browser-non-ie .work-docs-icon-comments-xl-bold-d0d2d3-64x64,.browser-non-ie .work-docs-icon-comments-xl-bold-8ea9c9-64x64,.browser-non-ie .work-docs-icon-comments-xl-bold-212f3e-64x64,.browser-non-ie .work-docs-icon-comments-xl-bold-0e72a3-64x64,.browser-non-ie .work-docs-icon-comments-xl-bold-808184-64x64,.browser-non-ie .work-docs-icon-comments-xl-bold-ffffff-64x64,.browser-non-ie .work-docs-icon-comments-xl-bold-d0d2d3-32x32,.browser-non-ie .work-docs-icon-comments-xl-bold-8ea9c9-32x32,.browser-non-ie .work-docs-icon-comments-xl-bold-212f3e-32x32,.browser-non-ie .work-docs-icon-comments-xl-bold-0e72a3-32x32,.browser-non-ie .work-docs-icon-comments-xl-bold-808184-32x32,.browser-non-ie .work-docs-icon-comments-xl-bold-ffffff-32x32,.browser-non-ie .work-docs-icon-comments-xl-d0d2d3-64x64,.browser-non-ie .work-docs-icon-comments-xl-8ea9c9-64x64,.browser-non-ie .work-docs-icon-comments-xl-212f3e-64x64,.browser-non-ie .work-docs-icon-comments-xl-0e72a3-64x64,.browser-non-ie .work-docs-icon-comments-xl-808184-64x64,.browser-non-ie .work-docs-icon-comments-xl-ffffff-64x64,.browser-non-ie .work-docs-icon-comments-xl-d0d2d3-32x32,.browser-non-ie .work-docs-icon-comments-xl-8ea9c9-32x32,.browser-non-ie .work-docs-icon-comments-xl-212f3e-32x32,.browser-non-ie .work-docs-icon-comments-xl-0e72a3-32x32,.browser-non-ie .work-docs-icon-comments-xl-808184-32x32,.browser-non-ie .work-docs-icon-comments-xl-ffffff-32x32,.browser-non-ie .work-docs-icon-search-xl-bold-d0d2d3-64x64,.browser-non-ie .work-docs-icon-search-xl-bold-8ea9c9-64x64,.browser-non-ie .work-docs-icon-search-xl-bold-212f3e-64x64,.browser-non-ie .work-docs-icon-search-xl-bold-0e72a3-64x64,.browser-non-ie .work-docs-icon-search-xl-bold-808184-64x64,.browser-non-ie .work-docs-icon-search-xl-bold-ffffff-64x64,.browser-non-ie .work-docs-icon-search-xl-bold-d0d2d3-32x32,.browser-non-ie .work-docs-icon-search-xl-bold-8ea9c9-32x32,.browser-non-ie .work-docs-icon-search-xl-bold-212f3e-32x32,.browser-non-ie .work-docs-icon-search-xl-bold-0e72a3-32x32,.browser-non-ie .work-docs-icon-search-xl-bold-808184-32x32,.browser-non-ie .work-docs-icon-search-xl-bold-ffffff-32x32,.browser-non-ie .work-docs-icon-search-xl-d0d2d3-64x64,.browser-non-ie .work-docs-icon-search-xl-8ea9c9-64x64,.browser-non-ie .work-docs-icon-search-xl-212f3e-64x64,.browser-non-ie .work-docs-icon-search-xl-0e72a3-64x64,.browser-non-ie .work-docs-icon-search-xl-808184-64x64,.browser-non-ie .work-docs-icon-search-xl-ffffff-64x64,.browser-non-ie .work-docs-icon-search-xl-d0d2d3-32x32,.browser-non-ie .work-docs-icon-search-xl-8ea9c9-32x32,.browser-non-ie .work-docs-icon-search-xl-212f3e-32x32,.browser-non-ie .work-docs-icon-search-xl-0e72a3-32x32,.browser-non-ie .work-docs-icon-search-xl-808184-32x32,.browser-non-ie .work-docs-icon-search-xl-ffffff-32x32,.browser-non-ie .work-docs-icon-offline-documents-xl-bold-d0d2d3-64x64,.browser-non-ie .work-docs-icon-offline-documents-xl-bold-8ea9c9-64x64,.browser-non-ie .work-docs-icon-offline-documents-xl-bold-212f3e-64x64,.browser-non-ie .work-docs-icon-offline-documents-xl-bold-0e72a3-64x64,.browser-non-ie .work-docs-icon-offline-documents-xl-bold-808184-64x64,.browser-non-ie .work-docs-icon-offline-documents-xl-bold-ffffff-64x64,.browser-non-ie .work-docs-icon-offline-documents-xl-bold-d0d2d3-32x32,.browser-non-ie .work-docs-icon-offline-documents-xl-bold-8ea9c9-32x32,.browser-non-ie .work-docs-icon-offline-documents-xl-bold-212f3e-32x32,.browser-non-ie .work-docs-icon-offline-documents-xl-bold-0e72a3-32x32,.browser-non-ie .work-docs-icon-offline-documents-xl-bold-808184-32x32,.browser-non-ie .work-docs-icon-offline-documents-xl-bold-ffffff-32x32,.browser-non-ie .work-docs-icon-offline-documents-xl-d0d2d3-64x64,.browser-non-ie .work-docs-icon-offline-documents-xl-8ea9c9-64x64,.browser-non-ie .work-docs-icon-offline-documents-xl-212f3e-64x64,.browser-non-ie .work-docs-icon-offline-documents-xl-0e72a3-64x64,.browser-non-ie .work-docs-icon-offline-documents-xl-808184-64x64,.browser-non-ie .work-docs-icon-offline-documents-xl-ffffff-64x64,.browser-non-ie .work-docs-icon-offline-documents-xl-d0d2d3-32x32,.browser-non-ie .work-docs-icon-offline-documents-xl-8ea9c9-32x32,.browser-non-ie .work-docs-icon-offline-documents-xl-212f3e-32x32,.browser-non-ie .work-docs-icon-offline-documents-xl-0e72a3-32x32,.browser-non-ie .work-docs-icon-offline-documents-xl-808184-32x32,.browser-non-ie .work-docs-icon-offline-documents-xl-ffffff-32x32,.browser-non-ie .work-docs-icon-settings-xl-bold-d0d2d3-64x64,.browser-non-ie .work-docs-icon-settings-xl-bold-8ea9c9-64x64,.browser-non-ie .work-docs-icon-settings-xl-bold-212f3e-64x64,.browser-non-ie .work-docs-icon-settings-xl-bold-0e72a3-64x64,.browser-non-ie .work-docs-icon-settings-xl-bold-808184-64x64,.browser-non-ie .work-docs-icon-settings-xl-bold-ffffff-64x64,.browser-non-ie .work-docs-icon-settings-xl-bold-d0d2d3-32x32,.browser-non-ie .work-docs-icon-settings-xl-bold-8ea9c9-32x32,.browser-non-ie .work-docs-icon-settings-xl-bold-212f3e-32x32,.browser-non-ie .work-docs-icon-settings-xl-bold-0e72a3-32x32,.browser-non-ie .work-docs-icon-settings-xl-bold-808184-32x32,.browser-non-ie .work-docs-icon-settings-xl-bold-ffffff-32x32,.browser-non-ie .work-docs-icon-settings-xl-d0d2d3-65x64,.browser-non-ie .work-docs-icon-settings-xl-8ea9c9-65x64,.browser-non-ie .work-docs-icon-settings-xl-212f3e-65x64,.browser-non-ie .work-docs-icon-settings-xl-0e72a3-65x64,.browser-non-ie .work-docs-icon-settings-xl-808184-65x64,.browser-non-ie .work-docs-icon-settings-xl-ffffff-65x64,.browser-non-ie .work-docs-icon-settings-xl-d0d2d3-32x32,.browser-non-ie .work-docs-icon-settings-xl-8ea9c9-32x32,.browser-non-ie .work-docs-icon-settings-xl-212f3e-32x32,.browser-non-ie .work-docs-icon-settings-xl-0e72a3-32x32,.browser-non-ie .work-docs-icon-settings-xl-808184-32x32,.browser-non-ie .work-docs-icon-settings-xl-ffffff-32x32,.browser-non-ie .work-docs-icon-log-out-xl-bold-d0d2d3-64x64,.browser-non-ie .work-docs-icon-log-out-xl-bold-8ea9c9-64x64,.browser-non-ie .work-docs-icon-log-out-xl-bold-212f3e-64x64,.browser-non-ie .work-docs-icon-log-out-xl-bold-0e72a3-64x64,.browser-non-ie .work-docs-icon-log-out-xl-bold-808184-64x64,.browser-non-ie .work-docs-icon-log-out-xl-bold-ffffff-64x64,.browser-non-ie .work-docs-icon-log-out-xl-bold-d0d2d3-32x32,.browser-non-ie .work-docs-icon-log-out-xl-bold-8ea9c9-32x32,.browser-non-ie .work-docs-icon-log-out-xl-bold-212f3e-32x32,.browser-non-ie .work-docs-icon-log-out-xl-bold-0e72a3-32x32,.browser-non-ie .work-docs-icon-log-out-xl-bold-808184-32x32,.browser-non-ie .work-docs-icon-log-out-xl-bold-ffffff-32x32,.browser-non-ie .work-docs-icon-log-out-xl-d0d2d3-64x64,.browser-non-ie .work-docs-icon-log-out-xl-8ea9c9-64x64,.browser-non-ie .work-docs-icon-log-out-xl-212f3e-64x64,.browser-non-ie .work-docs-icon-log-out-xl-0e72a3-64x64,.browser-non-ie .work-docs-icon-log-out-xl-808184-64x64,.browser-non-ie .work-docs-icon-log-out-xl-ffffff-64x64,.browser-non-ie .work-docs-icon-log-out-xl-d0d2d3-32x32,.browser-non-ie .work-docs-icon-log-out-xl-8ea9c9-32x32,.browser-non-ie .work-docs-icon-log-out-xl-212f3e-32x32,.browser-non-ie .work-docs-icon-log-out-xl-0e72a3-32x32,.browser-non-ie .work-docs-icon-log-out-xl-808184-32x32,.browser-non-ie .work-docs-icon-log-out-xl-ffffff-32x32,.browser-non-ie .work-docs-icon-download-apps-xl-bold-0e72a3-64x64,.browser-non-ie .work-docs-icon-download-apps-xl-bold-0e72a3-32x32,.browser-non-ie .work-docs-icon-download-apps-xl-bold-8ea9c9-64x64,.browser-non-ie .work-docs-icon-download-apps-xl-bold-8ea9c9-32x32,.browser-non-ie .work-docs-icon-download-apps-xl-bold-212f3e-64x64,.browser-non-ie .work-docs-icon-download-apps-xl-bold-212f3e-32x32,.browser-non-ie .work-docs-icon-download-apps-xl-bold-808184-64x64,.browser-non-ie .work-docs-icon-download-apps-xl-bold-808184-32x32,.browser-non-ie .work-docs-icon-download-apps-xl-bold-d0d2d3-64x64,.browser-non-ie .work-docs-icon-download-apps-xl-bold-ffffff-64x64,.browser-non-ie .work-docs-icon-download-apps-xl-bold-d0d2d3-32x32,.browser-non-ie .work-docs-icon-download-apps-xl-bold-ffffff-32x32,.browser-non-ie .work-docs-icon-download-apps-xl-0e72a3-64x64,.browser-non-ie .work-docs-icon-download-apps-xl-0e72a3-32x32,.browser-non-ie .work-docs-icon-download-apps-xl-8ea9c9-64x64,.browser-non-ie .work-docs-icon-download-apps-xl-8ea9c9-32x32,.browser-non-ie .work-docs-icon-download-apps-xl-212f3e-64x64,.browser-non-ie .work-docs-icon-download-apps-xl-212f3e-32x32,.browser-non-ie .work-docs-icon-download-apps-xl-808184-64x64,.browser-non-ie .work-docs-icon-download-apps-xl-d0d2d3-64x64,.browser-non-ie .work-docs-icon-download-apps-xl-ffffff-64x64,.browser-non-ie .work-docs-icon-download-apps-xl-808184-32x32,.browser-non-ie .work-docs-icon-download-apps-xl-d0d2d3-32x32,.browser-non-ie .work-docs-icon-download-apps-xl-ffffff-32x32,.browser-non-ie .work-docs-icon-profile-xl-bold-d0d2d3-64x64,.browser-non-ie .work-docs-icon-profile-xl-bold-8ea9c9-64x64,.browser-non-ie .work-docs-icon-profile-xl-bold-212f3e-64x64,.browser-non-ie .work-docs-icon-profile-xl-bold-0e72a3-64x64,.browser-non-ie .work-docs-icon-profile-xl-bold-808184-64x64,.browser-non-ie .work-docs-icon-profile-xl-bold-ffffff-64x64,.browser-non-ie .work-docs-icon-profile-xl-bold-d0d2d3-32x32,.browser-non-ie .work-docs-icon-profile-xl-bold-8ea9c9-32x32,.browser-non-ie .work-docs-icon-profile-xl-bold-212f3e-32x32,.browser-non-ie .work-docs-icon-profile-xl-bold-0e72a3-32x32,.browser-non-ie .work-docs-icon-profile-xl-bold-808184-32x32,.browser-non-ie .work-docs-icon-profile-xl-bold-ffffff-32x32,.browser-non-ie .work-docs-icon-profile-xl-d0d2d3-64x64,.browser-non-ie .work-docs-icon-profile-xl-8ea9c9-64x64,.browser-non-ie .work-docs-icon-profile-xl-212f3e-64x64,.browser-non-ie .work-docs-icon-profile-xl-0e72a3-64x64,.browser-non-ie .work-docs-icon-profile-xl-808184-64x64,.browser-non-ie .work-docs-icon-profile-xl-ffffff-64x64,.browser-non-ie .work-docs-icon-profile-xl-d0d2d3-32x32,.browser-non-ie .work-docs-icon-profile-xl-8ea9c9-32x32,.browser-non-ie .work-docs-icon-profile-xl-212f3e-32x32,.browser-non-ie .work-docs-icon-profile-xl-0e72a3-32x32,.browser-non-ie .work-docs-icon-profile-xl-808184-32x32,.browser-non-ie .work-docs-icon-profile-xl-ffffff-32x32,.browser-non-ie .work-docs-icon-trash-xl-bold-d0d2d3-64x64,.browser-non-ie .work-docs-icon-trash-xl-bold-8ea9c9-64x64,.browser-non-ie .work-docs-icon-trash-xl-bold-212f3e-64x64,.browser-non-ie .work-docs-icon-trash-xl-bold-0e72a3-64x64,.browser-non-ie .work-docs-icon-trash-xl-bold-808184-64x64,.browser-non-ie .work-docs-icon-trash-xl-bold-ffffff-64x64,.browser-non-ie .work-docs-icon-trash-xl-bold-d0d2d3-32x32,.browser-non-ie .work-docs-icon-trash-xl-bold-8ea9c9-32x32,.browser-non-ie .work-docs-icon-trash-xl-bold-212f3e-32x32,.browser-non-ie .work-docs-icon-trash-xl-bold-0e72a3-32x32,.browser-non-ie .work-docs-icon-trash-xl-bold-808184-32x32,.browser-non-ie .work-docs-icon-trash-xl-bold-ffffff-32x32,.browser-non-ie .work-docs-icon-trash-xl-d0d2d3-64x64,.browser-non-ie .work-docs-icon-trash-xl-8ea9c9-64x64,.browser-non-ie .work-docs-icon-trash-xl-212f3e-64x64,.browser-non-ie .work-docs-icon-trash-xl-0e72a3-64x64,.browser-non-ie .work-docs-icon-trash-xl-808184-64x64,.browser-non-ie .work-docs-icon-trash-xl-ffffff-64x64,.browser-non-ie .work-docs-icon-trash-xl-d0d2d3-32x32,.browser-non-ie .work-docs-icon-trash-xl-8ea9c9-32x32,.browser-non-ie .work-docs-icon-trash-xl-212f3e-32x32,.browser-non-ie .work-docs-icon-trash-xl-0e72a3-32x32,.browser-non-ie .work-docs-icon-trash-xl-808184-32x32,.browser-non-ie .work-docs-icon-trash-xl-ffffff-32x32,.browser-non-ie .work-docs-icon-out-for-review-xl-bold-d0d2d3-64x64,.browser-non-ie .work-docs-icon-out-for-review-xl-bold-8ea9c9-64x64,.browser-non-ie .work-docs-icon-out-for-review-xl-bold-212f3e-64x64,.browser-non-ie .work-docs-icon-out-for-review-xl-bold-0e72a3-64x64,.browser-non-ie .work-docs-icon-out-for-review-xl-bold-808184-64x64,.browser-non-ie .work-docs-icon-out-for-review-xl-bold-ffffff-64x64,.browser-non-ie .work-docs-icon-out-for-review-xl-bold-d0d2d3-32x32,.browser-non-ie .work-docs-icon-out-for-review-xl-bold-8ea9c9-32x32,.browser-non-ie .work-docs-icon-out-for-review-xl-bold-212f3e-32x32,.browser-non-ie .work-docs-icon-out-for-review-xl-bold-0e72a3-32x32,.browser-non-ie .work-docs-icon-out-for-review-xl-bold-808184-32x32,.browser-non-ie .work-docs-icon-out-for-review-xl-bold-ffffff-32x32,.browser-non-ie .work-docs-icon-out-for-review-xl-d0d2d3-64x64,.browser-non-ie .work-docs-icon-out-for-review-xl-8ea9c9-64x64,.browser-non-ie .work-docs-icon-out-for-review-xl-212f3e-64x64,.browser-non-ie .work-docs-icon-out-for-review-xl-0e72a3-64x64,.browser-non-ie .work-docs-icon-out-for-review-xl-808184-64x64,.browser-non-ie .work-docs-icon-out-for-review-xl-ffffff-64x64,.browser-non-ie .work-docs-icon-out-for-review-xl-d0d2d3-32x32,.browser-non-ie .work-docs-icon-out-for-review-xl-8ea9c9-32x32,.browser-non-ie .work-docs-icon-out-for-review-xl-212f3e-32x32,.browser-non-ie .work-docs-icon-out-for-review-xl-0e72a3-32x32,.browser-non-ie .work-docs-icon-out-for-review-xl-808184-32x32,.browser-non-ie .work-docs-icon-out-for-review-xl-ffffff-32x32,.browser-non-ie .work-docs-icon-awaiting-feedback-xl-bold-d0d2d3-64x64,.browser-non-ie .work-docs-icon-awaiting-feedback-xl-bold-8ea9c9-64x64,.browser-non-ie .work-docs-icon-awaiting-feedback-xl-bold-212f3e-64x64,.browser-non-ie .work-docs-icon-awaiting-feedback-xl-bold-0e72a3-64x64,.browser-non-ie .work-docs-icon-awaiting-feedback-xl-bold-808184-64x64,.browser-non-ie .work-docs-icon-awaiting-feedback-xl-bold-ffffff-64x64,.browser-non-ie .work-docs-icon-awaiting-feedback-xl-bold-d0d2d3-32x32,.browser-non-ie .work-docs-icon-awaiting-feedback-xl-bold-8ea9c9-32x32,.browser-non-ie .work-docs-icon-awaiting-feedback-xl-bold-212f3e-32x32,.browser-non-ie .work-docs-icon-awaiting-feedback-xl-bold-0e72a3-32x32,.browser-non-ie .work-docs-icon-awaiting-feedback-xl-bold-808184-32x32,.browser-non-ie .work-docs-icon-awaiting-feedback-xl-bold-ffffff-32x32,.browser-non-ie .work-docs-icon-awaiting-feedback-xl-d0d2d3-64x64,.browser-non-ie .work-docs-icon-awaiting-feedback-xl-8ea9c9-64x64,.browser-non-ie .work-docs-icon-awaiting-feedback-xl-212f3e-64x64,.browser-non-ie .work-docs-icon-awaiting-feedback-xl-0e72a3-64x64,.browser-non-ie .work-docs-icon-awaiting-feedback-xl-808184-64x64,.browser-non-ie .work-docs-icon-awaiting-feedback-xl-ffffff-64x64,.browser-non-ie .work-docs-icon-awaiting-feedback-xl-d0d2d3-32x32,.browser-non-ie .work-docs-icon-awaiting-feedback-xl-8ea9c9-32x32,.browser-non-ie .work-docs-icon-awaiting-feedback-xl-212f3e-32x32,.browser-non-ie .work-docs-icon-awaiting-feedback-xl-0e72a3-32x32,.browser-non-ie .work-docs-icon-awaiting-feedback-xl-808184-32x32,.browser-non-ie .work-docs-icon-awaiting-feedback-xl-ffffff-32x32,.browser-non-ie .work-docs-icon-shared-with-me-xl-bold-d0d2d3-64x64,.browser-non-ie .work-docs-icon-shared-with-me-xl-bold-8ea9c9-64x64,.browser-non-ie .work-docs-icon-shared-with-me-xl-bold-212f3e-64x64,.browser-non-ie .work-docs-icon-shared-with-me-xl-bold-0e72a3-64x64,.browser-non-ie .work-docs-icon-shared-with-me-xl-bold-808184-64x64,.browser-non-ie .work-docs-icon-shared-with-me-xl-bold-ffffff-64x64,.browser-non-ie .work-docs-icon-shared-with-me-xl-bold-d0d2d3-32x32,.browser-non-ie .work-docs-icon-shared-with-me-xl-bold-8ea9c9-32x32,.browser-non-ie .work-docs-icon-shared-with-me-xl-bold-212f3e-32x32,.browser-non-ie .work-docs-icon-shared-with-me-xl-bold-0e72a3-32x32,.browser-non-ie .work-docs-icon-shared-with-me-xl-bold-808184-32x32,.browser-non-ie .work-docs-icon-shared-with-me-xl-bold-ffffff-32x32,.browser-non-ie .work-docs-icon-shared-with-me-xl-d0d2d3-64x64,.browser-non-ie .work-docs-icon-shared-with-me-xl-8ea9c9-64x64,.browser-non-ie .work-docs-icon-shared-with-me-xl-212f3e-64x64,.browser-non-ie .work-docs-icon-shared-with-me-xl-0e72a3-64x64,.browser-non-ie .work-docs-icon-shared-with-me-xl-808184-64x64,.browser-non-ie .work-docs-icon-shared-with-me-xl-ffffff-64x64,.browser-non-ie .work-docs-icon-shared-with-me-xl-d0d2d3-32x32,.browser-non-ie .work-docs-icon-shared-with-me-xl-8ea9c9-32x32,.browser-non-ie .work-docs-icon-shared-with-me-xl-212f3e-32x32,.browser-non-ie .work-docs-icon-shared-with-me-xl-0e72a3-32x32,.browser-non-ie .work-docs-icon-shared-with-me-xl-808184-32x32,.browser-non-ie .work-docs-icon-shared-with-me-xl-ffffff-32x32,.browser-non-ie .work-docs-icon-my-documents-xl-bold-d0d2d3-64x64,.browser-non-ie .work-docs-icon-my-documents-xl-bold-8ea9c9-64x64,.browser-non-ie .work-docs-icon-my-documents-xl-bold-212f3e-64x64,.browser-non-ie .work-docs-icon-my-documents-xl-bold-0e72a3-64x64,.browser-non-ie .work-docs-icon-my-documents-xl-bold-808184-64x64,.browser-non-ie .work-docs-icon-my-documents-xl-bold-ffffff-64x64,.browser-non-ie .work-docs-icon-my-documents-xl-bold-d0d2d3-32x32,.browser-non-ie .work-docs-icon-my-documents-xl-bold-8ea9c9-32x32,.browser-non-ie .work-docs-icon-my-documents-xl-bold-212f3e-32x32,.browser-non-ie .work-docs-icon-my-documents-xl-bold-0e72a3-32x32,.browser-non-ie .work-docs-icon-my-documents-xl-bold-808184-32x32,.browser-non-ie .work-docs-icon-my-documents-xl-bold-ffffff-32x32,.browser-non-ie .work-docs-icon-my-documents-xl-d0d2d3-64x64,.browser-non-ie .work-docs-icon-my-documents-xl-8ea9c9-64x64,.browser-non-ie .work-docs-icon-my-documents-xl-212f3e-64x64,.browser-non-ie .work-docs-icon-my-documents-xl-0e72a3-64x64,.browser-non-ie .work-docs-icon-my-documents-xl-808184-64x64,.browser-non-ie .work-docs-icon-my-documents-xl-ffffff-64x64,.browser-non-ie .work-docs-icon-my-documents-xl-d0d2d3-32x32,.browser-non-ie .work-docs-icon-my-documents-xl-8ea9c9-32x32,.browser-non-ie .work-docs-icon-my-documents-xl-212f3e-32x32,.browser-non-ie .work-docs-icon-my-documents-xl-0e72a3-32x32,.browser-non-ie .work-docs-icon-my-documents-xl-808184-32x32,.browser-non-ie .work-docs-icon-my-documents-xl-ffffff-32x32,.browser-non-ie .work-docs-icon-no-preview-212f3e-72x72,.browser-non-ie .work-docs-icon-remove-me-from-share-alternate-212f3e-72x72,.browser-non-ie .work-docs-icon-locked-212f3e-72x72,.browser-non-ie .work-docs-icon-open-folder-212f3e-72x72,.browser-non-ie .work-docs-icon-session-expired-212f3e-72x72,.browser-non-ie .work-docs-icon-progress-0e72a3-72x72,.browser-non-ie .work-docs-icon-progress-212f3e-72x72,.browser-non-ie .work-docs-icon-broken-link-212f3e-72x72,.browser-non-ie .work-docs-icon-upload-to-cloud-212f3e-72x72{background-repeat:no-repeat;background-image:url(images/work-docs-icon_20170824_6dfb7ee3beb8db770a1f5f94fe5b1bcb.png);background-image:url(images/work-docs-icon_20170824_942bcb98741c074e27d335cfe689ee1c.svg),linear-gradient(transparent, transparent);background-size:1000px 7800px}
/*!
 * Bootstrap v3.3.7 (http://getbootstrap.com)
 * Copyright 2011-2016 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
}
body {
  margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],
template {
  display: none;
}
a {
  background-color: transparent;
}
a:active,
a:hover {
  outline: 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
h1 {
  margin: .67em 0;
  font-size: 2em;
}
mark {
  color: #000;
  background: #ff0;
}
small {
  font-size: 80%;
}
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}
sup {
  top: -.5em;
}
sub {
  bottom: -.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 1em 40px;
}
hr {
  height: 0;
  -webkit-box-sizing: content-box;
     -moz-box-sizing: content-box;
          box-sizing: content-box;
}
pre {
  overflow: auto;
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font: inherit;
  color: inherit;
}
button {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}
input {
  line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[type="search"] {
  -webkit-box-sizing: content-box;
     -moz-box-sizing: content-box;
          box-sizing: content-box;
  -webkit-appearance: textfield;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
fieldset {
  padding: .35em .625em .75em;
  margin: 0 2px;
  border: 1px solid #c0c0c0;
}
legend {
  padding: 0;
  border: 0;
}
textarea {
  overflow: auto;
}
optgroup {
  font-weight: bold;
}
table {
  border-spacing: 0;
  border-collapse: collapse;
}
td,
th {
  padding: 0;
}
/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print {
  *,
  *:before,
  *:after {
    color: #000 !important;
    text-shadow: none !important;
    background: transparent !important;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999;

    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  .navbar {
    display: none;
  }
  .btn > .caret,
  .dropup > .btn > .caret {
    border-top-color: #000 !important;
  }
  .label {
    border: 1px solid #000;
  }
  .table {
    border-collapse: collapse !important;
  }
  .table td,
  .table th {
    background-color: #fff !important;
  }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #ddd !important;
  }
}
@font-face {
  font-family: 'Glyphicons Halflings';

  src: url(fonts/glyphicons-halflings-regular_f4769f9bdb7466be65088239c12046d1.eot);
  src: url(fonts/glyphicons-halflings-regular_f4769f9bdb7466be65088239c12046d1.eot?#iefix) format('embedded-opentype'), url(fonts/glyphicons-halflings-regular_448c34a56d699c29117adc64c43affeb.woff2) format('woff2'), url(fonts/glyphicons-halflings-regular_fa2772327f55d8198301fdb8bcfc8158.woff) format('woff'), url(fonts/glyphicons-halflings-regular_e18bbf611f2a2e43afc071aa2f4e1512.ttf) format('truetype'), url(fonts/glyphicons-halflings-regular_89889688147bd7575d6327160d64e760.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: "*";
}
.glyphicon-plus:before {
  content: "+";
}
.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";
}
.glyphicon-cd:before {
  content: "\E201";
}
.glyphicon-save-file:before {
  content: "\E202";
}
.glyphicon-open-file:before {
  content: "\E203";
}
.glyphicon-level-up:before {
  content: "\E204";
}
.glyphicon-copy:before {
  content: "\E205";
}
.glyphicon-paste:before {
  content: "\E206";
}
.glyphicon-alert:before {
  content: "\E209";
}
.glyphicon-equalizer:before {
  content: "\E210";
}
.glyphicon-king:before {
  content: "\E211";
}
.glyphicon-queen:before {
  content: "\E212";
}
.glyphicon-pawn:before {
  content: "\E213";
}
.glyphicon-bishop:before {
  content: "\E214";
}
.glyphicon-knight:before {
  content: "\E215";
}
.glyphicon-baby-formula:before {
  content: "\E216";
}
.glyphicon-tent:before {
  content: "\26FA";
}
.glyphicon-blackboard:before {
  content: "\E218";
}
.glyphicon-bed:before {
  content: "\E219";
}
.glyphicon-apple:before {
  content: "\F8FF";
}
.glyphicon-erase:before {
  content: "\E221";
}
.glyphicon-hourglass:before {
  content: "\231B";
}
.glyphicon-lamp:before {
  content: "\E223";
}
.glyphicon-duplicate:before {
  content: "\E224";
}
.glyphicon-piggy-bank:before {
  content: "\E225";
}
.glyphicon-scissors:before {
  content: "\E226";
}
.glyphicon-bitcoin:before {
  content: "\E227";
}
.glyphicon-btc:before {
  content: "\E227";
}
.glyphicon-xbt:before {
  content: "\E227";
}
.glyphicon-yen:before {
  content: "\A5";
}
.glyphicon-jpy:before {
  content: "\A5";
}
.glyphicon-ruble:before {
  content: "\20BD";
}
.glyphicon-rub:before {
  content: "\20BD";
}
.glyphicon-scale:before {
  content: "\E230";
}
.glyphicon-ice-lolly:before {
  content: "\E231";
}
.glyphicon-ice-lolly-tasted:before {
  content: "\E232";
}
.glyphicon-education:before {
  content: "\E233";
}
.glyphicon-option-horizontal:before {
  content: "\E234";
}
.glyphicon-option-vertical:before {
  content: "\E235";
}
.glyphicon-menu-hamburger:before {
  content: "\E236";
}
.glyphicon-modal-window:before {
  content: "\E237";
}
.glyphicon-oil:before {
  content: "\E238";
}
.glyphicon-grain:before {
  content: "\E239";
}
.glyphicon-sunglasses:before {
  content: "\E240";
}
.glyphicon-text-size:before {
  content: "\E241";
}
.glyphicon-text-color:before {
  content: "\E242";
}
.glyphicon-text-background:before {
  content: "\E243";
}
.glyphicon-object-align-top:before {
  content: "\E244";
}
.glyphicon-object-align-bottom:before {
  content: "\E245";
}
.glyphicon-object-align-horizontal:before {
  content: "\E246";
}
.glyphicon-object-align-left:before {
  content: "\E247";
}
.glyphicon-object-align-vertical:before {
  content: "\E248";
}
.glyphicon-object-align-right:before {
  content: "\E249";
}
.glyphicon-triangle-right:before {
  content: "\E250";
}
.glyphicon-triangle-left:before {
  content: "\E251";
}
.glyphicon-triangle-bottom:before {
  content: "\E252";
}
.glyphicon-triangle-top:before {
  content: "\E253";
}
.glyphicon-console:before {
  content: "\E254";
}
.glyphicon-superscript:before {
  content: "\E255";
}
.glyphicon-subscript:before {
  content: "\E256";
}
.glyphicon-menu-left:before {
  content: "\E257";
}
.glyphicon-menu-right:before {
  content: "\E258";
}
.glyphicon-menu-down:before {
  content: "\E259";
}
.glyphicon-menu-up:before {
  content: "\E260";
}
* {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
*:before,
*:after {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
html {
  font-size: 10px;

  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.42857143;
  color: #333;
  background-color: #fff;
}
input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
a {
  color: #337ab7;
  text-decoration: none;
}
a:hover,
a:focus {
  color: #23527c;
  text-decoration: underline;
}
a:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
figure {
  margin: 0;
}
img {
  vertical-align: middle;
}
.img-responsive,
.thumbnail > img,
.thumbnail a > img,
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  display: block;
  max-width: 100%;
  height: auto;
}
.img-rounded {
  border-radius: 6px;
}
.img-thumbnail {
  display: inline-block;
  max-width: 100%;
  height: auto;
  padding: 4px;
  line-height: 1.42857143;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: all .2s ease-in-out;
       -o-transition: all .2s ease-in-out;
          transition: all .2s ease-in-out;
}
.img-circle {
  border-radius: 50%;
}
hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eee;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}
[role="button"] {
  cursor: pointer;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small,
.h1 small,
.h2 small,
.h3 small,
.h4 small,
.h5 small,
.h6 small,
h1 .small,
h2 .small,
h3 .small,
h4 .small,
h5 .small,
h6 .small,
.h1 .small,
.h2 .small,
.h3 .small,
.h4 .small,
.h5 .small,
.h6 .small {
  font-weight: normal;
  line-height: 1;
  color: #777;
}
h1,
.h1,
h2,
.h2,
h3,
.h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}
h1 small,
.h1 small,
h2 small,
.h2 small,
h3 small,
.h3 small,
h1 .small,
.h1 .small,
h2 .small,
.h2 .small,
h3 .small,
.h3 .small {
  font-size: 65%;
}
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin-top: 10px;
  margin-bottom: 10px;
}
h4 small,
.h4 small,
h5 small,
.h5 small,
h6 small,
.h6 small,
h4 .small,
.h4 .small,
h5 .small,
.h5 .small,
h6 .small,
.h6 .small {
  font-size: 75%;
}
h1,
.h1 {
  font-size: 36px;
}
h2,
.h2 {
  font-size: 30px;
}
h3,
.h3 {
  font-size: 24px;
}
h4,
.h4 {
  font-size: 18px;
}
h5,
.h5 {
  font-size: 14px;
}
h6,
.h6 {
  font-size: 12px;
}
p {
  margin: 0 0 10px;
}
.lead {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .lead {
    font-size: 21px;
  }
}
small,
.small {
  font-size: 85%;
}
mark,
.mark {
  padding: .2em;
  background-color: #fcf8e3;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
}
.text-nowrap {
  white-space: nowrap;
}
.text-lowercase {
  text-transform: lowercase;
}
.text-uppercase {
  text-transform: uppercase;
}
.text-capitalize {
  text-transform: capitalize;
}
.text-muted {
  color: #777;
}
.text-primary {
  color: #337ab7;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #286090;
}
.text-success {
  color: #3c763d;
}
a.text-success:hover,
a.text-success:focus {
  color: #2b542c;
}
.text-info {
  color: #31708f;
}
a.text-info:hover,
a.text-info:focus {
  color: #245269;
}
.text-warning {
  color: #8a6d3b;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #66512c;
}
.text-danger {
  color: #a94442;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #843534;
}
.bg-primary {
  color: #fff;
  background-color: #337ab7;
}
a.bg-primary:hover,
a.bg-primary:focus {
  background-color: #286090;
}
.bg-success {
  background-color: #dff0d8;
}
a.bg-success:hover,
a.bg-success:focus {
  background-color: #c1e2b3;
}
.bg-info {
  background-color: #d9edf7;
}
a.bg-info:hover,
a.bg-info:focus {
  background-color: #afd9ee;
}
.bg-warning {
  background-color: #fcf8e3;
}
a.bg-warning:hover,
a.bg-warning:focus {
  background-color: #f7ecb5;
}
.bg-danger {
  background-color: #f2dede;
}
a.bg-danger:hover,
a.bg-danger:focus {
  background-color: #e4b9b9;
}
.page-header {
  padding-bottom: 9px;
  margin: 40px 0 20px;
  border-bottom: 1px solid #eee;
}
ul,
ol {
  margin-top: 0;
  margin-bottom: 10px;
}
ul ul,
ol ul,
ul ol,
ol ol {
  margin-bottom: 0;
}
.list-unstyled {
  padding-left: 0;
  list-style: none;
}
.list-inline {
  padding-left: 0;
  margin-left: -5px;
  list-style: none;
}
.list-inline > li {
  display: inline-block;
  padding-right: 5px;
  padding-left: 5px;
}
dl {
  margin-top: 0;
  margin-bottom: 20px;
}
dt,
dd {
  line-height: 1.42857143;
}
dt {
  font-weight: bold;
}
dd {
  margin-left: 0;
}
@media (min-width: 768px) {
  .dl-horizontal dt {
    float: left;
    width: 160px;
    overflow: hidden;
    clear: left;
    text-align: right;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .dl-horizontal dd {
    margin-left: 180px;
  }
}
abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #777;
}
.initialism {
  font-size: 90%;
  text-transform: uppercase;
}
blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  font-size: 17.5px;
  border-left: 5px solid #eee;
}
blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
  margin-bottom: 0;
}
blockquote footer,
blockquote small,
blockquote .small {
  display: block;
  font-size: 80%;
  line-height: 1.42857143;
  color: #777;
}
blockquote footer:before,
blockquote small:before,
blockquote .small:before {
  content: '\2014   \A0';
}
.blockquote-reverse,
blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  text-align: right;
  border-right: 5px solid #eee;
  border-left: 0;
}
.blockquote-reverse footer:before,
blockquote.pull-right footer:before,
.blockquote-reverse small:before,
blockquote.pull-right small:before,
.blockquote-reverse .small:before,
blockquote.pull-right .small:before {
  content: '';
}
.blockquote-reverse footer:after,
blockquote.pull-right footer:after,
.blockquote-reverse small:after,
blockquote.pull-right small:after,
.blockquote-reverse .small:after,
blockquote.pull-right .small:after {
  content: '\A0   \2014';
}
address {
  margin-bottom: 20px;
  font-style: normal;
  line-height: 1.42857143;
}
code,
kbd,
pre,
samp {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}
code {
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  background-color: #f9f2f4;
  border-radius: 4px;
}
kbd {
  padding: 2px 4px;
  font-size: 90%;
  color: #fff;
  background-color: #333;
  border-radius: 3px;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25);
          box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25);
}
kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: bold;
  -webkit-box-shadow: none;
          box-shadow: none;
}
pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.42857143;
  color: #333;
  word-break: break-all;
  word-wrap: break-word;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 4px;
}
pre code {
  padding: 0;
  font-size: inherit;
  color: inherit;
  white-space: pre-wrap;
  background-color: transparent;
  border-radius: 0;
}
.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}
.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
.container-fluid {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.row {
  margin-right: -15px;
  margin-left: -15px;
}
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left;
}
.col-xs-12 {
  width: 100%;
}
.col-xs-11 {
  width: 91.66666667%;
}
.col-xs-10 {
  width: 83.33333333%;
}
.col-xs-9 {
  width: 75%;
}
.col-xs-8 {
  width: 66.66666667%;
}
.col-xs-7 {
  width: 58.33333333%;
}
.col-xs-6 {
  width: 50%;
}
.col-xs-5 {
  width: 41.66666667%;
}
.col-xs-4 {
  width: 33.33333333%;
}
.col-xs-3 {
  width: 25%;
}
.col-xs-2 {
  width: 16.66666667%;
}
.col-xs-1 {
  width: 8.33333333%;
}
.col-xs-pull-12 {
  right: 100%;
}
.col-xs-pull-11 {
  right: 91.66666667%;
}
.col-xs-pull-10 {
  right: 83.33333333%;
}
.col-xs-pull-9 {
  right: 75%;
}
.col-xs-pull-8 {
  right: 66.66666667%;
}
.col-xs-pull-7 {
  right: 58.33333333%;
}
.col-xs-pull-6 {
  right: 50%;
}
.col-xs-pull-5 {
  right: 41.66666667%;
}
.col-xs-pull-4 {
  right: 33.33333333%;
}
.col-xs-pull-3 {
  right: 25%;
}
.col-xs-pull-2 {
  right: 16.66666667%;
}
.col-xs-pull-1 {
  right: 8.33333333%;
}
.col-xs-pull-0 {
  right: auto;
}
.col-xs-push-12 {
  left: 100%;
}
.col-xs-push-11 {
  left: 91.66666667%;
}
.col-xs-push-10 {
  left: 83.33333333%;
}
.col-xs-push-9 {
  left: 75%;
}
.col-xs-push-8 {
  left: 66.66666667%;
}
.col-xs-push-7 {
  left: 58.33333333%;
}
.col-xs-push-6 {
  left: 50%;
}
.col-xs-push-5 {
  left: 41.66666667%;
}
.col-xs-push-4 {
  left: 33.33333333%;
}
.col-xs-push-3 {
  left: 25%;
}
.col-xs-push-2 {
  left: 16.66666667%;
}
.col-xs-push-1 {
  left: 8.33333333%;
}
.col-xs-push-0 {
  left: auto;
}
.col-xs-offset-12 {
  margin-left: 100%;
}
.col-xs-offset-11 {
  margin-left: 91.66666667%;
}
.col-xs-offset-10 {
  margin-left: 83.33333333%;
}
.col-xs-offset-9 {
  margin-left: 75%;
}
.col-xs-offset-8 {
  margin-left: 66.66666667%;
}
.col-xs-offset-7 {
  margin-left: 58.33333333%;
}
.col-xs-offset-6 {
  margin-left: 50%;
}
.col-xs-offset-5 {
  margin-left: 41.66666667%;
}
.col-xs-offset-4 {
  margin-left: 33.33333333%;
}
.col-xs-offset-3 {
  margin-left: 25%;
}
.col-xs-offset-2 {
  margin-left: 16.66666667%;
}
.col-xs-offset-1 {
  margin-left: 8.33333333%;
}
.col-xs-offset-0 {
  margin-left: 0;
}
@media (min-width: 768px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.66666667%;
  }
  .col-sm-10 {
    width: 83.33333333%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66666667%;
  }
  .col-sm-7 {
    width: 58.33333333%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.66666667%;
  }
  .col-sm-4 {
    width: 33.33333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.66666667%;
  }
  .col-sm-1 {
    width: 8.33333333%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-pull-11 {
    right: 91.66666667%;
  }
  .col-sm-pull-10 {
    right: 83.33333333%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-8 {
    right: 66.66666667%;
  }
  .col-sm-pull-7 {
    right: 58.33333333%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-5 {
    right: 41.66666667%;
  }
  .col-sm-pull-4 {
    right: 33.33333333%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-2 {
    right: 16.66666667%;
  }
  .col-sm-pull-1 {
    right: 8.33333333%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-push-11 {
    left: 91.66666667%;
  }
  .col-sm-push-10 {
    left: 83.33333333%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-8 {
    left: 66.66666667%;
  }
  .col-sm-push-7 {
    left: 58.33333333%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-5 {
    left: 41.66666667%;
  }
  .col-sm-push-4 {
    left: 33.33333333%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-2 {
    left: 16.66666667%;
  }
  .col-sm-push-1 {
    left: 8.33333333%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-0 {
    margin-left: 0;
  }
}
@media (min-width: 992px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-11 {
    width: 91.66666667%;
  }
  .col-md-10 {
    width: 83.33333333%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-8 {
    width: 66.66666667%;
  }
  .col-md-7 {
    width: 58.33333333%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-5 {
    width: 41.66666667%;
  }
  .col-md-4 {
    width: 33.33333333%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-2 {
    width: 16.66666667%;
  }
  .col-md-1 {
    width: 8.33333333%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-pull-11 {
    right: 91.66666667%;
  }
  .col-md-pull-10 {
    right: 83.33333333%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-8 {
    right: 66.66666667%;
  }
  .col-md-pull-7 {
    right: 58.33333333%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-5 {
    right: 41.66666667%;
  }
  .col-md-pull-4 {
    right: 33.33333333%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-2 {
    right: 16.66666667%;
  }
  .col-md-pull-1 {
    right: 8.33333333%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-push-11 {
    left: 91.66666667%;
  }
  .col-md-push-10 {
    left: 83.33333333%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-8 {
    left: 66.66666667%;
  }
  .col-md-push-7 {
    left: 58.33333333%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-5 {
    left: 41.66666667%;
  }
  .col-md-push-4 {
    left: 33.33333333%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-2 {
    left: 16.66666667%;
  }
  .col-md-push-1 {
    left: 8.33333333%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-0 {
    margin-left: 0;
  }
}
@media (min-width: 1200px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-11 {
    width: 91.66666667%;
  }
  .col-lg-10 {
    width: 83.33333333%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-8 {
    width: 66.66666667%;
  }
  .col-lg-7 {
    width: 58.33333333%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-5 {
    width: 41.66666667%;
  }
  .col-lg-4 {
    width: 33.33333333%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-2 {
    width: 16.66666667%;
  }
  .col-lg-1 {
    width: 8.33333333%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-pull-11 {
    right: 91.66666667%;
  }
  .col-lg-pull-10 {
    right: 83.33333333%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-8 {
    right: 66.66666667%;
  }
  .col-lg-pull-7 {
    right: 58.33333333%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-5 {
    right: 41.66666667%;
  }
  .col-lg-pull-4 {
    right: 33.33333333%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-2 {
    right: 16.66666667%;
  }
  .col-lg-pull-1 {
    right: 8.33333333%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-push-11 {
    left: 91.66666667%;
  }
  .col-lg-push-10 {
    left: 83.33333333%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-8 {
    left: 66.66666667%;
  }
  .col-lg-push-7 {
    left: 58.33333333%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-5 {
    left: 41.66666667%;
  }
  .col-lg-push-4 {
    left: 33.33333333%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-2 {
    left: 16.66666667%;
  }
  .col-lg-push-1 {
    left: 8.33333333%;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-lg-offset-0 {
    margin-left: 0;
  }
}
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-of-type(odd) {
  background-color: #f9f9f9;
}
.table-hover > tbody > tr:hover {
  background-color: #f5f5f5;
}
table col[class*="col-"] {
  position: static;
  display: table-column;
  float: none;
}
table td[class*="col-"],
table th[class*="col-"] {
  position: static;
  display: table-cell;
  float: none;
}
.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 {
  min-height: .01%;
  overflow-x: auto;
}
@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;
  }
}
fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}
legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
  font-size: 21px;
  line-height: inherit;
  color: #333;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}
label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: bold;
}
input[type="search"] {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
input[type="radio"],
input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  line-height: normal;
}
input[type="file"] {
  display: block;
}
input[type="range"] {
  display: block;
  width: 100%;
}
select[multiple],
select[size] {
  height: auto;
}
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
output {
  display: block;
  padding-top: 7px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
}
.form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
       -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
          transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
          box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
}
.form-control::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #999;
}
.form-control::-webkit-input-placeholder {
  color: #999;
}
.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  background-color: #eee;
  opacity: 1;
}
.form-control[disabled],
fieldset[disabled] .form-control {
  cursor: not-allowed;
}
textarea.form-control {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: none;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input[type="date"].form-control,
  input[type="time"].form-control,
  input[type="datetime-local"].form-control,
  input[type="month"].form-control {
    line-height: 34px;
  }
  input[type="date"].input-sm,
  input[type="time"].input-sm,
  input[type="datetime-local"].input-sm,
  input[type="month"].input-sm,
  .input-group-sm input[type="date"],
  .input-group-sm input[type="time"],
  .input-group-sm input[type="datetime-local"],
  .input-group-sm input[type="month"] {
    line-height: 30px;
  }
  input[type="date"].input-lg,
  input[type="time"].input-lg,
  input[type="datetime-local"].input-lg,
  input[type="month"].input-lg,
  .input-group-lg input[type="date"],
  .input-group-lg input[type="time"],
  .input-group-lg input[type="datetime-local"],
  .input-group-lg input[type="month"] {
    line-height: 46px;
  }
}
.form-group {
  margin-bottom: 15px;
}
.radio,
.checkbox {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}
.radio label,
.checkbox label {
  min-height: 20px;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: normal;
  cursor: pointer;
}
.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
  position: absolute;
  margin-top: 4px \9;
  margin-left: -20px;
}
.radio + .radio,
.checkbox + .checkbox {
  margin-top: -5px;
}
.radio-inline,
.checkbox-inline {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: normal;
  vertical-align: middle;
  cursor: pointer;
}
.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px;
}
input[type="radio"][disabled],
input[type="checkbox"][disabled],
input[type="radio"].disabled,
input[type="checkbox"].disabled,
fieldset[disabled] input[type="radio"],
fieldset[disabled] input[type="checkbox"] {
  cursor: not-allowed;
}
.radio-inline.disabled,
.checkbox-inline.disabled,
fieldset[disabled] .radio-inline,
fieldset[disabled] .checkbox-inline {
  cursor: not-allowed;
}
.radio.disabled label,
.checkbox.disabled label,
fieldset[disabled] .radio label,
fieldset[disabled] .checkbox label {
  cursor: not-allowed;
}
.form-control-static {
  min-height: 34px;
  padding-top: 7px;
  padding-bottom: 7px;
  margin-bottom: 0;
}
.form-control-static.input-lg,
.form-control-static.input-sm {
  padding-right: 0;
  padding-left: 0;
}
.input-sm {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
select.input-sm {
  height: 30px;
  line-height: 30px;
}
textarea.input-sm,
select[multiple].input-sm {
  height: auto;
}
.form-group-sm .form-control {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.form-group-sm select.form-control {
  height: 30px;
  line-height: 30px;
}
.form-group-sm textarea.form-control,
.form-group-sm select[multiple].form-control {
  height: auto;
}
.form-group-sm .form-control-static {
  height: 30px;
  min-height: 32px;
  padding: 6px 10px;
  font-size: 12px;
  line-height: 1.5;
}
.input-lg {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
select.input-lg {
  height: 46px;
  line-height: 46px;
}
textarea.input-lg,
select[multiple].input-lg {
  height: auto;
}
.form-group-lg .form-control {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
.form-group-lg select.form-control {
  height: 46px;
  line-height: 46px;
}
.form-group-lg textarea.form-control,
.form-group-lg select[multiple].form-control {
  height: auto;
}
.form-group-lg .form-control-static {
  height: 46px;
  min-height: 38px;
  padding: 11px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}
.has-feedback {
  position: relative;
}
.has-feedback .form-control {
  padding-right: 42.5px;
}
.form-control-feedback {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  pointer-events: none;
}
.input-lg + .form-control-feedback,
.input-group-lg + .form-control-feedback,
.form-group-lg .form-control + .form-control-feedback {
  width: 46px;
  height: 46px;
  line-height: 46px;
}
.input-sm + .form-control-feedback,
.input-group-sm + .form-control-feedback,
.form-group-sm .form-control + .form-control-feedback {
  width: 30px;
  height: 30px;
  line-height: 30px;
}
.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline,
.has-success.radio label,
.has-success.checkbox label,
.has-success.radio-inline label,
.has-success.checkbox-inline label {
  color: #3c763d;
}
.has-success .form-control {
  border-color: #3c763d;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}
.has-success .form-control:focus {
  border-color: #2b542c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168;
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168;
}
.has-success .input-group-addon {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #3c763d;
}
.has-success .form-control-feedback {
  color: #3c763d;
}
.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline,
.has-warning.radio label,
.has-warning.checkbox label,
.has-warning.radio-inline label,
.has-warning.checkbox-inline label {
  color: #8a6d3b;
}
.has-warning .form-control {
  border-color: #8a6d3b;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}
.has-warning .form-control:focus {
  border-color: #66512c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b;
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b;
}
.has-warning .input-group-addon {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #8a6d3b;
}
.has-warning .form-control-feedback {
  color: #8a6d3b;
}
.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline,
.has-error.radio label,
.has-error.checkbox label,
.has-error.radio-inline label,
.has-error.checkbox-inline label {
  color: #a94442;
}
.has-error .form-control {
  border-color: #a94442;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}
.has-error .form-control:focus {
  border-color: #843534;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
}
.has-error .input-group-addon {
  color: #a94442;
  background-color: #f2dede;
  border-color: #a94442;
}
.has-error .form-control-feedback {
  color: #a94442;
}
.has-feedback label ~ .form-control-feedback {
  top: 25px;
}
.has-feedback label.sr-only ~ .form-control-feedback {
  top: 0;
}
.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #737373;
}
@media (min-width: 768px) {
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .form-control-static {
    display: inline-block;
  }
  .form-inline .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  .form-inline .input-group .input-group-addon,
  .form-inline .input-group .input-group-btn,
  .form-inline .input-group .form-control {
    width: auto;
  }
  .form-inline .input-group > .form-control {
    width: 100%;
  }
  .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .radio,
  .form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .radio label,
  .form-inline .checkbox label {
    padding-left: 0;
  }
  .form-inline .radio input[type="radio"],
  .form-inline .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }
  .form-inline .has-feedback .form-control-feedback {
    top: 0;
  }
}
.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
  padding-top: 7px;
  margin-top: 0;
  margin-bottom: 0;
}
.form-horizontal .radio,
.form-horizontal .checkbox {
  min-height: 27px;
}
.form-horizontal .form-group {
  margin-right: -15px;
  margin-left: -15px;
}
@media (min-width: 768px) {
  .form-horizontal .control-label {
    padding-top: 7px;
    margin-bottom: 0;
    text-align: right;
  }
}
.form-horizontal .has-feedback .form-control-feedback {
  right: 15px;
}
@media (min-width: 768px) {
  .form-horizontal .form-group-lg .control-label {
    padding-top: 11px;
    font-size: 18px;
  }
}
@media (min-width: 768px) {
  .form-horizontal .form-group-sm .control-label {
    padding-top: 6px;
    font-size: 12px;
  }
}
.btn {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
  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 {
  background-image: none;
  outline: 0;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
          box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
}
.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  cursor: not-allowed;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
          box-shadow: none;
  opacity: .65;
}
a.btn.disabled,
fieldset[disabled] a.btn {
  pointer-events: none;
}
.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
}
.btn-default:focus,
.btn-default.focus {
  color: #333;
  background-color: #e6e6e6;
  border-color: #8c8c8c;
}
.btn-default:hover {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}
.btn-default:active:hover,
.btn-default.active:hover,
.open > .dropdown-toggle.btn-default:hover,
.btn-default:active:focus,
.btn-default.active:focus,
.open > .dropdown-toggle.btn-default:focus,
.btn-default:active.focus,
.btn-default.active.focus,
.open > .dropdown-toggle.btn-default.focus {
  color: #333;
  background-color: #d4d4d4;
  border-color: #8c8c8c;
}
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  background-image: none;
}
.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 {
  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:focus,
.btn-primary.focus {
  color: #fff;
  background-color: #286090;
  border-color: #122b40;
}
.btn-primary:hover {
  color: #fff;
  background-color: #286090;
  border-color: #204d74;
}
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  color: #fff;
  background-color: #286090;
  border-color: #204d74;
}
.btn-primary:active:hover,
.btn-primary.active:hover,
.open > .dropdown-toggle.btn-primary:hover,
.btn-primary:active:focus,
.btn-primary.active:focus,
.open > .dropdown-toggle.btn-primary:focus,
.btn-primary:active.focus,
.btn-primary.active.focus,
.open > .dropdown-toggle.btn-primary.focus {
  color: #fff;
  background-color: #204d74;
  border-color: #122b40;
}
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  background-image: none;
}
.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 {
  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:focus,
.btn-success.focus {
  color: #fff;
  background-color: #449d44;
  border-color: #255625;
}
.btn-success:hover {
  color: #fff;
  background-color: #449d44;
  border-color: #398439;
}
.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
  color: #fff;
  background-color: #449d44;
  border-color: #398439;
}
.btn-success:active:hover,
.btn-success.active:hover,
.open > .dropdown-toggle.btn-success:hover,
.btn-success:active:focus,
.btn-success.active:focus,
.open > .dropdown-toggle.btn-success:focus,
.btn-success:active.focus,
.btn-success.active.focus,
.open > .dropdown-toggle.btn-success.focus {
  color: #fff;
  background-color: #398439;
  border-color: #255625;
}
.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
  background-image: none;
}
.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 {
  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:focus,
.btn-info.focus {
  color: #fff;
  background-color: #31b0d5;
  border-color: #1b6d85;
}
.btn-info:hover {
  color: #fff;
  background-color: #31b0d5;
  border-color: #269abc;
}
.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
  color: #fff;
  background-color: #31b0d5;
  border-color: #269abc;
}
.btn-info:active:hover,
.btn-info.active:hover,
.open > .dropdown-toggle.btn-info:hover,
.btn-info:active:focus,
.btn-info.active:focus,
.open > .dropdown-toggle.btn-info:focus,
.btn-info:active.focus,
.btn-info.active.focus,
.open > .dropdown-toggle.btn-info.focus {
  color: #fff;
  background-color: #269abc;
  border-color: #1b6d85;
}
.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
  background-image: none;
}
.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 {
  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:focus,
.btn-warning.focus {
  color: #fff;
  background-color: #ec971f;
  border-color: #985f0d;
}
.btn-warning:hover {
  color: #fff;
  background-color: #ec971f;
  border-color: #d58512;
}
.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
  color: #fff;
  background-color: #ec971f;
  border-color: #d58512;
}
.btn-warning:active:hover,
.btn-warning.active:hover,
.open > .dropdown-toggle.btn-warning:hover,
.btn-warning:active:focus,
.btn-warning.active:focus,
.open > .dropdown-toggle.btn-warning:focus,
.btn-warning:active.focus,
.btn-warning.active.focus,
.open > .dropdown-toggle.btn-warning.focus {
  color: #fff;
  background-color: #d58512;
  border-color: #985f0d;
}
.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
  background-image: none;
}
.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 {
  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:focus,
.btn-danger.focus {
  color: #fff;
  background-color: #c9302c;
  border-color: #761c19;
}
.btn-danger:hover {
  color: #fff;
  background-color: #c9302c;
  border-color: #ac2925;
}
.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
  color: #fff;
  background-color: #c9302c;
  border-color: #ac2925;
}
.btn-danger:active:hover,
.btn-danger.active:hover,
.open > .dropdown-toggle.btn-danger:hover,
.btn-danger:active:focus,
.btn-danger.active:focus,
.open > .dropdown-toggle.btn-danger:focus,
.btn-danger:active.focus,
.btn-danger.active.focus,
.open > .dropdown-toggle.btn-danger.focus {
  color: #fff;
  background-color: #ac2925;
  border-color: #761c19;
}
.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
  background-image: none;
}
.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 {
  background-color: #d9534f;
  border-color: #d43f3a;
}
.btn-danger .badge {
  color: #d9534f;
  background-color: #fff;
}
.btn-link {
  font-weight: normal;
  color: #337ab7;
  border-radius: 0;
}
.btn-link,
.btn-link:active,
.btn-link.active,
.btn-link[disabled],
fieldset[disabled] .btn-link {
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.btn-link,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
  border-color: transparent;
}
.btn-link:hover,
.btn-link:focus {
  color: #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,
.btn-group-lg > .btn {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
.btn-sm,
.btn-group-sm > .btn {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.btn-xs,
.btn-group-xs > .btn {
  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%;
}
.fade {
  opacity: 0;
  -webkit-transition: opacity .15s linear;
       -o-transition: opacity .15s linear;
          transition: opacity .15s linear;
}
.fade.in {
  opacity: 1;
}
.collapse {
  display: none;
}
.collapse.in {
  display: block;
}
tr.collapse.in {
  display: table-row;
}
tbody.collapse.in {
  display: table-row-group;
}
.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition-timing-function: ease;
       -o-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-duration: .35s;
       -o-transition-duration: .35s;
          transition-duration: .35s;
  -webkit-transition-property: height, visibility;
       -o-transition-property: height, visibility;
          transition-property: height, visibility;
}
.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-top: 4px solid \9;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}
.dropup,
.dropdown {
  position: relative;
}
.dropdown-toggle:focus {
  outline: 0;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  font-size: 14px;
  text-align: left;
  list-style: none;
  background-color: #fff;
  -webkit-background-clip: padding-box;
          background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, .15);
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
          box-shadow: 0 6px 12px rgba(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 dashed;
  border-bottom: 4px solid \9;
}
.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 2px;
}
@media (min-width: 768px) {
  .navbar-right .dropdown-menu {
    right: 0;
    left: auto;
  }
  .navbar-right .dropdown-menu-left {
    right: auto;
    left: 0;
  }
}
.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  float: left;
}
.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover,
.btn-group > .btn:focus,
.btn-group-vertical > .btn:focus,
.btn-group > .btn:active,
.btn-group-vertical > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn.active {
  z-index: 2;
}
.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group {
  margin-left: -1px;
}
.btn-toolbar {
  margin-left: -5px;
}
.btn-toolbar .btn,
.btn-toolbar .btn-group,
.btn-toolbar .input-group {
  float: left;
}
.btn-toolbar > .btn,
.btn-toolbar > .btn-group,
.btn-toolbar > .input-group {
  margin-left: 5px;
}
.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0;
}
.btn-group > .btn:first-child {
  margin-left: 0;
}
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group > .btn-group {
  float: left;
}
.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0;
}
.btn-group > .btn + .dropdown-toggle {
  padding-right: 8px;
  padding-left: 8px;
}
.btn-group > .btn-lg + .dropdown-toggle {
  padding-right: 12px;
  padding-left: 12px;
}
.btn-group.open .dropdown-toggle {
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
          box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
}
.btn-group.open .dropdown-toggle.btn-link {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.btn .caret {
  margin-left: 0;
}
.btn-lg .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0;
}
.dropup .btn-lg .caret {
  border-width: 0 5px 5px;
}
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
}
.btn-group-vertical > .btn-group > .btn {
  float: none;
}
.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0;
}
.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.btn-group-vertical > .btn:first-child:not(:last-child) {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn:last-child:not(:first-child) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
}
.btn-group-justified > .btn,
.btn-group-justified > .btn-group {
  display: table-cell;
  float: none;
  width: 1%;
}
.btn-group-justified > .btn-group .btn {
  width: 100%;
}
.btn-group-justified > .btn-group .dropdown-menu {
  left: auto;
}
[data-toggle="buttons"] > .btn input[type="radio"],
[data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
[data-toggle="buttons"] > .btn input[type="checkbox"],
[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}
.input-group[class*="col-"] {
  float: none;
  padding-right: 0;
  padding-left: 0;
}
.input-group .form-control {
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0;
}
.input-group .form-control:focus {
  z-index: 3;
}
.input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
select.input-group-lg > .form-control,
select.input-group-lg > .input-group-addon,
select.input-group-lg > .input-group-btn > .btn {
  height: 46px;
  line-height: 46px;
}
textarea.input-group-lg > .form-control,
textarea.input-group-lg > .input-group-addon,
textarea.input-group-lg > .input-group-btn > .btn,
select[multiple].input-group-lg > .form-control,
select[multiple].input-group-lg > .input-group-addon,
select[multiple].input-group-lg > .input-group-btn > .btn {
  height: auto;
}
.input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
select.input-group-sm > .form-control,
select.input-group-sm > .input-group-addon,
select.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  line-height: 30px;
}
textarea.input-group-sm > .form-control,
textarea.input-group-sm > .input-group-addon,
textarea.input-group-sm > .input-group-btn > .btn,
select[multiple].input-group-sm > .form-control,
select[multiple].input-group-sm > .input-group-addon,
select[multiple].input-group-sm > .input-group-btn > .btn {
  height: auto;
}
.input-group-addon,
.input-group-btn,
.input-group .form-control {
  display: table-cell;
}
.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child),
.input-group .form-control:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.input-group-addon,
.input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
}
.input-group-addon {
  padding: 6px 12px;
  font-size: 14px;
  font-weight: normal;
  line-height: 1;
  color: #555;
  text-align: center;
  background-color: #eee;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.input-group-addon.input-sm {
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 3px;
}
.input-group-addon.input-lg {
  padding: 10px 16px;
  font-size: 18px;
  border-radius: 6px;
}
.input-group-addon input[type="radio"],
.input-group-addon input[type="checkbox"] {
  margin-top: 0;
}
.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group > .btn,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group-addon:first-child {
  border-right: 0;
}
.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group > .btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child),
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group-addon:last-child {
  border-left: 0;
}
.input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap;
}
.input-group-btn > .btn {
  position: relative;
}
.input-group-btn > .btn + .btn {
  margin-left: -1px;
}
.input-group-btn > .btn:hover,
.input-group-btn > .btn:focus,
.input-group-btn > .btn:active {
  z-index: 2;
}
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group {
  margin-right: -1px;
}
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group {
  z-index: 2;
  margin-left: -1px;
}
.nav {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.nav > li {
  position: relative;
  display: block;
}
.nav > li > a {
  position: relative;
  display: block;
  padding: 10px 15px;
}
.nav > li > a:hover,
.nav > li > a:focus {
  text-decoration: none;
  background-color: #eee;
}
.nav > li.disabled > a {
  color: #777;
}
.nav > li.disabled > a:hover,
.nav > li.disabled > a:focus {
  color: #777;
  text-decoration: none;
  cursor: not-allowed;
  background-color: transparent;
}
.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
  background-color: #eee;
  border-color: #337ab7;
}
.nav .nav-divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.nav > li > a > img {
  max-width: none;
}
.nav-tabs {
  border-bottom: 1px solid #ddd;
}
.nav-tabs > li {
  float: left;
  margin-bottom: -1px;
}
.nav-tabs > li > a {
  margin-right: 2px;
  line-height: 1.42857143;
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0;
}
.nav-tabs > li > a:hover {
  border-color: #eee #eee #ddd;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  color: #555;
  cursor: default;
  background-color: #fff;
  border: 1px solid #ddd;
  border-bottom-color: transparent;
}
.nav-tabs.nav-justified {
  width: 100%;
  border-bottom: 0;
}
.nav-tabs.nav-justified > li {
  float: none;
}
.nav-tabs.nav-justified > li > a {
  margin-bottom: 5px;
  text-align: center;
}
.nav-tabs.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
@media (min-width: 768px) {
  .nav-tabs.nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  .nav-tabs.nav-justified > li > a {
    margin-bottom: 0;
  }
}
.nav-tabs.nav-justified > li > a {
  margin-right: 0;
  border-radius: 4px;
}
.nav-tabs.nav-justified > .active > a,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:focus {
  border: 1px solid #ddd;
}
@media (min-width: 768px) {
  .nav-tabs.nav-justified > li > a {
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0;
  }
  .nav-tabs.nav-justified > .active > a,
  .nav-tabs.nav-justified > .active > a:hover,
  .nav-tabs.nav-justified > .active > a:focus {
    border-bottom-color: #fff;
  }
}
.nav-pills > li {
  float: left;
}
.nav-pills > li > a {
  border-radius: 4px;
}
.nav-pills > li + li {
  margin-left: 2px;
}
.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus {
  color: #fff;
  background-color: #337ab7;
}
.nav-stacked > li {
  float: none;
}
.nav-stacked > li + li {
  margin-top: 2px;
  margin-left: 0;
}
.nav-justified {
  width: 100%;
}
.nav-justified > li {
  float: none;
}
.nav-justified > li > a {
  margin-bottom: 5px;
  text-align: center;
}
.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
@media (min-width: 768px) {
  .nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  .nav-justified > li > a {
    margin-bottom: 0;
  }
}
.nav-tabs-justified {
  border-bottom: 0;
}
.nav-tabs-justified > li > a {
  margin-right: 0;
  border-radius: 4px;
}
.nav-tabs-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus {
  border: 1px solid #ddd;
}
@media (min-width: 768px) {
  .nav-tabs-justified > li > a {
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0;
  }
  .nav-tabs-justified > .active > a,
  .nav-tabs-justified > .active > a:hover,
  .nav-tabs-justified > .active > a:focus {
    border-bottom-color: #fff;
  }
}
.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.navbar {
  position: relative;
  min-height: 50px;
  margin-bottom: 20px;
  border: 1px solid transparent;
}
@media (min-width: 768px) {
  .navbar {
    border-radius: 4px;
  }
}
@media (min-width: 768px) {
  .navbar-header {
    float: left;
  }
}
.navbar-collapse {
  padding-right: 15px;
  padding-left: 15px;
  overflow-x: visible;
  -webkit-overflow-scrolling: touch;
  border-top: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
}
.navbar-collapse.in {
  overflow-y: auto;
}
@media (min-width: 768px) {
  .navbar-collapse {
    width: auto;
    border-top: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .navbar-collapse.collapse {
    display: block !important;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important;
  }
  .navbar-collapse.in {
    overflow-y: visible;
  }
  .navbar-fixed-top .navbar-collapse,
  .navbar-static-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    padding-right: 0;
    padding-left: 0;
  }
}
.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
  max-height: 340px;
}
@media (max-device-width: 480px) and (orientation: landscape) {
  .navbar-fixed-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    max-height: 200px;
  }
}
.container > .navbar-header,
.container-fluid > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-collapse {
  margin-right: -15px;
  margin-left: -15px;
}
@media (min-width: 768px) {
  .container > .navbar-header,
  .container-fluid > .navbar-header,
  .container > .navbar-collapse,
  .container-fluid > .navbar-collapse {
    margin-right: 0;
    margin-left: 0;
  }
}
.navbar-static-top {
  z-index: 1000;
  border-width: 0 0 1px;
}
@media (min-width: 768px) {
  .navbar-static-top {
    border-radius: 0;
  }
}
.navbar-fixed-top,
.navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
}
@media (min-width: 768px) {
  .navbar-fixed-top,
  .navbar-fixed-bottom {
    border-radius: 0;
  }
}
.navbar-fixed-top {
  top: 0;
  border-width: 0 0 1px;
}
.navbar-fixed-bottom {
  bottom: 0;
  margin-bottom: 0;
  border-width: 1px 0 0;
}
.navbar-brand {
  float: left;
  height: 50px;
  padding: 15px 15px;
  font-size: 18px;
  line-height: 20px;
}
.navbar-brand:hover,
.navbar-brand:focus {
  text-decoration: none;
}
.navbar-brand > img {
  display: block;
}
@media (min-width: 768px) {
  .navbar > .container .navbar-brand,
  .navbar > .container-fluid .navbar-brand {
    margin-left: -15px;
  }
}
.navbar-toggle {
  position: relative;
  float: right;
  padding: 9px 10px;
  margin-top: 8px;
  margin-right: 15px;
  margin-bottom: 8px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}
.navbar-toggle:focus {
  outline: 0;
}
.navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
}
.navbar-toggle .icon-bar + .icon-bar {
  margin-top: 4px;
}
@media (min-width: 768px) {
  .navbar-toggle {
    display: none;
  }
}
.navbar-nav {
  margin: 7.5px -15px;
}
.navbar-nav > li > a {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 20px;
}
@media (max-width: 767px) {
  .navbar-nav .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .navbar-nav .open .dropdown-menu > li > a,
  .navbar-nav .open .dropdown-menu .dropdown-header {
    padding: 5px 15px 5px 25px;
  }
  .navbar-nav .open .dropdown-menu > li > a {
    line-height: 20px;
  }
  .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-nav .open .dropdown-menu > li > a:focus {
    background-image: none;
  }
}
@media (min-width: 768px) {
  .navbar-nav {
    float: left;
    margin: 0;
  }
  .navbar-nav > li {
    float: left;
  }
  .navbar-nav > li > a {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.navbar-form {
  padding: 10px 15px;
  margin-top: 8px;
  margin-right: -15px;
  margin-bottom: 8px;
  margin-left: -15px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);
}
@media (min-width: 768px) {
  .navbar-form .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .navbar-form .form-control-static {
    display: inline-block;
  }
  .navbar-form .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  .navbar-form .input-group .input-group-addon,
  .navbar-form .input-group .input-group-btn,
  .navbar-form .input-group .form-control {
    width: auto;
  }
  .navbar-form .input-group > .form-control {
    width: 100%;
  }
  .navbar-form .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .radio,
  .navbar-form .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .radio label,
  .navbar-form .checkbox label {
    padding-left: 0;
  }
  .navbar-form .radio input[type="radio"],
  .navbar-form .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }
  .navbar-form .has-feedback .form-control-feedback {
    top: 0;
  }
}
@media (max-width: 767px) {
  .navbar-form .form-group {
    margin-bottom: 5px;
  }
  .navbar-form .form-group:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .navbar-form {
    width: auto;
    padding-top: 0;
    padding-bottom: 0;
    margin-right: 0;
    margin-left: 0;
    border: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
.navbar-nav > li > .dropdown-menu {
  margin-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  margin-bottom: 0;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.navbar-btn {
  margin-top: 8px;
  margin-bottom: 8px;
}
.navbar-btn.btn-sm {
  margin-top: 10px;
  margin-bottom: 10px;
}
.navbar-btn.btn-xs {
  margin-top: 14px;
  margin-bottom: 14px;
}
.navbar-text {
  margin-top: 15px;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .navbar-text {
    float: left;
    margin-right: 15px;
    margin-left: 15px;
  }
}
@media (min-width: 768px) {
  .navbar-left {
    float: left !important;
  }
  .navbar-right {
    float: right !important;
    margin-right: -15px;
  }
  .navbar-right ~ .navbar-right {
    margin-right: 0;
  }
}
.navbar-default {
  background-color: #f8f8f8;
  border-color: #e7e7e7;
}
.navbar-default .navbar-brand {
  color: #777;
}
.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
  color: #5e5e5e;
  background-color: transparent;
}
.navbar-default .navbar-text {
  color: #777;
}
.navbar-default .navbar-nav > li > a {
  color: #777;
}
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
  color: #333;
  background-color: transparent;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
  color: #555;
  background-color: #e7e7e7;
}
.navbar-default .navbar-nav > .disabled > a,
.navbar-default .navbar-nav > .disabled > a:hover,
.navbar-default .navbar-nav > .disabled > a:focus {
  color: #ccc;
  background-color: transparent;
}
.navbar-default .navbar-toggle {
  border-color: #ddd;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
  background-color: #ddd;
}
.navbar-default .navbar-toggle .icon-bar {
  background-color: #888;
}
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
  border-color: #e7e7e7;
}
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
  color: #555;
  background-color: #e7e7e7;
}
@media (max-width: 767px) {
  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #777;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #333;
    background-color: transparent;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #555;
    background-color: #e7e7e7;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #ccc;
    background-color: transparent;
  }
}
.navbar-default .navbar-link {
  color: #777;
}
.navbar-default .navbar-link:hover {
  color: #333;
}
.navbar-default .btn-link {
  color: #777;
}
.navbar-default .btn-link:hover,
.navbar-default .btn-link:focus {
  color: #333;
}
.navbar-default .btn-link[disabled]:hover,
fieldset[disabled] .navbar-default .btn-link:hover,
.navbar-default .btn-link[disabled]:focus,
fieldset[disabled] .navbar-default .btn-link:focus {
  color: #ccc;
}
.navbar-inverse {
  background-color: #222;
  border-color: #080808;
}
.navbar-inverse .navbar-brand {
  color: #9d9d9d;
}
.navbar-inverse .navbar-brand:hover,
.navbar-inverse .navbar-brand:focus {
  color: #fff;
  background-color: transparent;
}
.navbar-inverse .navbar-text {
  color: #9d9d9d;
}
.navbar-inverse .navbar-nav > li > a {
  color: #9d9d9d;
}
.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus {
  color: #fff;
  background-color: transparent;
}
.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:hover,
.navbar-inverse .navbar-nav > .active > a:focus {
  color: #fff;
  background-color: #080808;
}
.navbar-inverse .navbar-nav > .disabled > a,
.navbar-inverse .navbar-nav > .disabled > a:hover,
.navbar-inverse .navbar-nav > .disabled > a:focus {
  color: #444;
  background-color: transparent;
}
.navbar-inverse .navbar-toggle {
  border-color: #333;
}
.navbar-inverse .navbar-toggle:hover,
.navbar-inverse .navbar-toggle:focus {
  background-color: #333;
}
.navbar-inverse .navbar-toggle .icon-bar {
  background-color: #fff;
}
.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
  border-color: #101010;
}
.navbar-inverse .navbar-nav > .open > a,
.navbar-inverse .navbar-nav > .open > a:hover,
.navbar-inverse .navbar-nav > .open > a:focus {
  color: #fff;
  background-color: #080808;
}
@media (max-width: 767px) {
  .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
    border-color: #080808;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
    background-color: #080808;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
    color: #9d9d9d;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #fff;
    background-color: transparent;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #fff;
    background-color: #080808;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #444;
    background-color: transparent;
  }
}
.navbar-inverse .navbar-link {
  color: #9d9d9d;
}
.navbar-inverse .navbar-link:hover {
  color: #fff;
}
.navbar-inverse .btn-link {
  color: #9d9d9d;
}
.navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link:focus {
  color: #fff;
}
.navbar-inverse .btn-link[disabled]:hover,
fieldset[disabled] .navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link[disabled]:focus,
fieldset[disabled] .navbar-inverse .btn-link:focus {
  color: #444;
}
.breadcrumb {
  padding: 8px 15px;
  margin-bottom: 20px;
  list-style: none;
  background-color: #f5f5f5;
  border-radius: 4px;
}
.breadcrumb > li {
  display: inline-block;
}
.breadcrumb > li + li:before {
  padding: 0 5px;
  color: #ccc;
  content: "/\A0";
}
.breadcrumb > .active {
  color: #777;
}
.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;
  margin-left: -1px;
  line-height: 1.42857143;
  color: #337ab7;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
  z-index: 2;
  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: 3;
  color: #fff;
  cursor: default;
  background-color: #337ab7;
  border-color: #337ab7;
}
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: #777;
  cursor: not-allowed;
  background-color: #fff;
  border-color: #ddd;
}
.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
}
.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
.pager {
  padding-left: 0;
  margin: 20px 0;
  text-align: center;
  list-style: none;
}
.pager li {
  display: inline;
}
.pager li > a,
.pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 15px;
}
.pager li > a:hover,
.pager li > a:focus {
  text-decoration: none;
  background-color: #eee;
}
.pager .next > a,
.pager .next > span {
  float: right;
}
.pager .previous > a,
.pager .previous > span {
  float: left;
}
.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
  color: #777;
  cursor: not-allowed;
  background-color: #fff;
}
.label {
  display: inline;
  padding: .2em .6em .3em;
  font-size: 75%;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: .25em;
}
a.label:hover,
a.label:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
.label:empty {
  display: none;
}
.btn .label {
  position: relative;
  top: -1px;
}
.label-default {
  background-color: #777;
}
.label-default[href]:hover,
.label-default[href]:focus {
  background-color: #5e5e5e;
}
.label-primary {
  background-color: #337ab7;
}
.label-primary[href]:hover,
.label-primary[href]:focus {
  background-color: #286090;
}
.label-success {
  background-color: #5cb85c;
}
.label-success[href]:hover,
.label-success[href]:focus {
  background-color: #449d44;
}
.label-info {
  background-color: #5bc0de;
}
.label-info[href]:hover,
.label-info[href]:focus {
  background-color: #31b0d5;
}
.label-warning {
  background-color: #f0ad4e;
}
.label-warning[href]:hover,
.label-warning[href]:focus {
  background-color: #ec971f;
}
.label-danger {
  background-color: #d9534f;
}
.label-danger[href]:hover,
.label-danger[href]:focus {
  background-color: #c9302c;
}
.badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  background-color: #777;
  border-radius: 10px;
}
.badge:empty {
  display: none;
}
.btn .badge {
  position: relative;
  top: -1px;
}
.btn-xs .badge,
.btn-group-xs > .btn .badge {
  top: 0;
  padding: 1px 5px;
}
a.badge:hover,
a.badge:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
.list-group-item.active > .badge,
.nav-pills > .active > a > .badge {
  color: #337ab7;
  background-color: #fff;
}
.list-group-item > .badge {
  float: right;
}
.list-group-item > .badge + .badge {
  margin-right: 5px;
}
.nav-pills > li > a > .badge {
  margin-left: 3px;
}
.jumbotron {
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  color: inherit;
  background-color: #eee;
}
.jumbotron h1,
.jumbotron .h1 {
  color: inherit;
}
.jumbotron p {
  margin-bottom: 15px;
  font-size: 21px;
  font-weight: 200;
}
.jumbotron > hr {
  border-top-color: #d5d5d5;
}
.container .jumbotron,
.container-fluid .jumbotron {
  padding-right: 15px;
  padding-left: 15px;
  border-radius: 6px;
}
.jumbotron .container {
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .jumbotron {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .container .jumbotron,
  .container-fluid .jumbotron {
    padding-right: 60px;
    padding-left: 60px;
  }
  .jumbotron h1,
  .jumbotron .h1 {
    font-size: 63px;
  }
}
.thumbnail {
  display: block;
  padding: 4px;
  margin-bottom: 20px;
  line-height: 1.42857143;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: border .2s ease-in-out;
       -o-transition: border .2s ease-in-out;
          transition: border .2s ease-in-out;
}
.thumbnail > img,
.thumbnail a > img {
  margin-right: auto;
  margin-left: auto;
}
a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
  border-color: #337ab7;
}
.thumbnail .caption {
  padding: 9px;
  color: #333;
}
.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}
.alert h4 {
  margin-top: 0;
  color: inherit;
}
.alert .alert-link {
  font-weight: bold;
}
.alert > p,
.alert > ul {
  margin-bottom: 0;
}
.alert > p + p {
  margin-top: 5px;
}
.alert-dismissable,
.alert-dismissible {
  padding-right: 35px;
}
.alert-dismissable .close,
.alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}
.alert-success {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}
.alert-success hr {
  border-top-color: #c9e2b3;
}
.alert-success .alert-link {
  color: #2b542c;
}
.alert-info {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}
.alert-info hr {
  border-top-color: #a6e1ec;
}
.alert-info .alert-link {
  color: #245269;
}
.alert-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}
.alert-warning hr {
  border-top-color: #f7e1b5;
}
.alert-warning .alert-link {
  color: #66512c;
}
.alert-danger {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}
.alert-danger hr {
  border-top-color: #e4b9c0;
}
.alert-danger .alert-link {
  color: #843534;
}
@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
@-o-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
.progress {
  height: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  background-color: #f5f5f5;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
          box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
}
.progress-bar {
  float: left;
  width: 0;
  height: 100%;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  text-align: center;
  background-color: #337ab7;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
          box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
  -webkit-transition: width .6s ease;
       -o-transition: width .6s ease;
          transition: width .6s ease;
}
.progress-striped .progress-bar,
.progress-bar-striped {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  -webkit-background-size: 40px 40px;
          background-size: 40px 40px;
}
.progress.active .progress-bar,
.progress-bar.active {
  -webkit-animation: progress-bar-stripes 2s linear infinite;
       -o-animation: progress-bar-stripes 2s linear infinite;
          animation: progress-bar-stripes 2s linear infinite;
}
.progress-bar-success {
  background-color: #5cb85c;
}
.progress-striped .progress-bar-success {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}
.progress-bar-info {
  background-color: #5bc0de;
}
.progress-striped .progress-bar-info {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}
.progress-bar-warning {
  background-color: #f0ad4e;
}
.progress-striped .progress-bar-warning {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}
.progress-bar-danger {
  background-color: #d9534f;
}
.progress-striped .progress-bar-danger {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}
.media {
  margin-top: 15px;
}
.media:first-child {
  margin-top: 0;
}
.media,
.media-body {
  overflow: hidden;
  zoom: 1;
}
.media-body {
  width: 10000px;
}
.media-object {
  display: block;
}
.media-object.img-thumbnail {
  max-width: none;
}
.media-right,
.media > .pull-right {
  padding-left: 10px;
}
.media-left,
.media > .pull-left {
  padding-right: 10px;
}
.media-left,
.media-right,
.media-body {
  display: table-cell;
  vertical-align: top;
}
.media-middle {
  vertical-align: middle;
}
.media-bottom {
  vertical-align: bottom;
}
.media-heading {
  margin-top: 0;
  margin-bottom: 5px;
}
.media-list {
  padding-left: 0;
  list-style: none;
}
.list-group {
  padding-left: 0;
  margin-bottom: 20px;
}
.list-group-item {
  position: relative;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid #ddd;
}
.list-group-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
a.list-group-item,
button.list-group-item {
  color: #555;
}
a.list-group-item .list-group-item-heading,
button.list-group-item .list-group-item-heading {
  color: #333;
}
a.list-group-item:hover,
button.list-group-item:hover,
a.list-group-item:focus,
button.list-group-item:focus {
  color: #555;
  text-decoration: none;
  background-color: #f5f5f5;
}
button.list-group-item {
  width: 100%;
  text-align: left;
}
.list-group-item.disabled,
.list-group-item.disabled:hover,
.list-group-item.disabled:focus {
  color: #777;
  cursor: not-allowed;
  background-color: #eee;
}
.list-group-item.disabled .list-group-item-heading,
.list-group-item.disabled:hover .list-group-item-heading,
.list-group-item.disabled:focus .list-group-item-heading {
  color: inherit;
}
.list-group-item.disabled .list-group-item-text,
.list-group-item.disabled:hover .list-group-item-text,
.list-group-item.disabled:focus .list-group-item-text {
  color: #777;
}
.list-group-item.active,
.list-group-item.active:hover,
.list-group-item.active:focus {
  z-index: 2;
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7;
}
.list-group-item.active .list-group-item-heading,
.list-group-item.active:hover .list-group-item-heading,
.list-group-item.active:focus .list-group-item-heading,
.list-group-item.active .list-group-item-heading > small,
.list-group-item.active:hover .list-group-item-heading > small,
.list-group-item.active:focus .list-group-item-heading > small,
.list-group-item.active .list-group-item-heading > .small,
.list-group-item.active:hover .list-group-item-heading > .small,
.list-group-item.active:focus .list-group-item-heading > .small {
  color: inherit;
}
.list-group-item.active .list-group-item-text,
.list-group-item.active:hover .list-group-item-text,
.list-group-item.active:focus .list-group-item-text {
  color: #c7ddef;
}
.list-group-item-success {
  color: #3c763d;
  background-color: #dff0d8;
}
a.list-group-item-success,
button.list-group-item-success {
  color: #3c763d;
}
a.list-group-item-success .list-group-item-heading,
button.list-group-item-success .list-group-item-heading {
  color: inherit;
}
a.list-group-item-success:hover,
button.list-group-item-success:hover,
a.list-group-item-success:focus,
button.list-group-item-success:focus {
  color: #3c763d;
  background-color: #d0e9c6;
}
a.list-group-item-success.active,
button.list-group-item-success.active,
a.list-group-item-success.active:hover,
button.list-group-item-success.active:hover,
a.list-group-item-success.active:focus,
button.list-group-item-success.active:focus {
  color: #fff;
  background-color: #3c763d;
  border-color: #3c763d;
}
.list-group-item-info {
  color: #31708f;
  background-color: #d9edf7;
}
a.list-group-item-info,
button.list-group-item-info {
  color: #31708f;
}
a.list-group-item-info .list-group-item-heading,
button.list-group-item-info .list-group-item-heading {
  color: inherit;
}
a.list-group-item-info:hover,
button.list-group-item-info:hover,
a.list-group-item-info:focus,
button.list-group-item-info:focus {
  color: #31708f;
  background-color: #c4e3f3;
}
a.list-group-item-info.active,
button.list-group-item-info.active,
a.list-group-item-info.active:hover,
button.list-group-item-info.active:hover,
a.list-group-item-info.active:focus,
button.list-group-item-info.active:focus {
  color: #fff;
  background-color: #31708f;
  border-color: #31708f;
}
.list-group-item-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
}
a.list-group-item-warning,
button.list-group-item-warning {
  color: #8a6d3b;
}
a.list-group-item-warning .list-group-item-heading,
button.list-group-item-warning .list-group-item-heading {
  color: inherit;
}
a.list-group-item-warning:hover,
button.list-group-item-warning:hover,
a.list-group-item-warning:focus,
button.list-group-item-warning:focus {
  color: #8a6d3b;
  background-color: #faf2cc;
}
a.list-group-item-warning.active,
button.list-group-item-warning.active,
a.list-group-item-warning.active:hover,
button.list-group-item-warning.active:hover,
a.list-group-item-warning.active:focus,
button.list-group-item-warning.active:focus {
  color: #fff;
  background-color: #8a6d3b;
  border-color: #8a6d3b;
}
.list-group-item-danger {
  color: #a94442;
  background-color: #f2dede;
}
a.list-group-item-danger,
button.list-group-item-danger {
  color: #a94442;
}
a.list-group-item-danger .list-group-item-heading,
button.list-group-item-danger .list-group-item-heading {
  color: inherit;
}
a.list-group-item-danger:hover,
button.list-group-item-danger:hover,
a.list-group-item-danger:focus,
button.list-group-item-danger:focus {
  color: #a94442;
  background-color: #ebcccc;
}
a.list-group-item-danger.active,
button.list-group-item-danger.active,
a.list-group-item-danger.active:hover,
button.list-group-item-danger.active:hover,
a.list-group-item-danger.active:focus,
button.list-group-item-danger.active:focus {
  color: #fff;
  background-color: #a94442;
  border-color: #a94442;
}
.list-group-item-heading {
  margin-top: 0;
  margin-bottom: 5px;
}
.list-group-item-text {
  margin-bottom: 0;
  line-height: 1.3;
}
.panel {
  margin-bottom: 20px;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
          box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
}
.panel-body {
  padding: 15px;
}
.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-left-radius: 3px;
  border-top-right-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,
.panel-title > small,
.panel-title > .small,
.panel-title > small > a,
.panel-title > .small > 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-left-radius: 3px;
  border-top-right-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 > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0;
}
.list-group + .panel-footer {
  border-top-width: 0;
}
.panel > .table,
.panel > .table-responsive > .table,
.panel > .panel-collapse > .table {
  margin-bottom: 0;
}
.panel > .table caption,
.panel > .table-responsive > .table caption,
.panel > .panel-collapse > .table caption {
  padding-right: 15px;
  padding-left: 15px;
}
.panel > .table:first-child,
.panel > .table-responsive:first-child > .table:first-child {
  border-top-left-radius: 3px;
  border-top-right-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-right-radius: 3px;
  border-bottom-left-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 {
  margin-bottom: 0;
  border: 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;
}
.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.embed-responsive-16by9 {
  padding-bottom: 56.25%;
}
.embed-responsive-4by3 {
  padding-bottom: 75%;
}
.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
}
.well blockquote {
  border-color: #ddd;
  border-color: rgba(0, 0, 0, .15);
}
.well-lg {
  padding: 24px;
  border-radius: 6px;
}
.well-sm {
  padding: 9px;
  border-radius: 3px;
}
.close {
  float: right;
  font-size: 21px;
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  filter: alpha(opacity=20);
  opacity: .2;
}
.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  filter: alpha(opacity=50);
  opacity: .5;
}
button.close {
  -webkit-appearance: none;
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
}
.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 {
  -webkit-transition: -webkit-transform .3s ease-out;
       -o-transition:      -o-transform .3s ease-out;
          transition:         transform .3s ease-out;
  -webkit-transform: translate(0, -25%);
      -ms-transform: translate(0, -25%);
       -o-transform: translate(0, -25%);
          transform: translate(0, -25%);
}
.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
       -o-transform: translate(0, 0);
          transform: translate(0, 0);
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}
.modal-content {
  position: relative;
  background-color: #fff;
  -webkit-background-clip: padding-box;
          background-clip: padding-box;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, .2);
  border-radius: 6px;
  outline: 0;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
          box-shadow: 0 3px 9px rgba(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 {
  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, .5);
            box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
  }
  .modal-sm {
    width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg {
    width: 900px;
  }
}
.center-modal.modal {
  text-align: center;
}

@media screen and (min-width: 768px) { 
  .center-modal.modal:before {
    display: inline-block;
    vertical-align: middle;
    content: " ";
    height: 100%;
  }
}

.center-modal .modal-dialog {
  display: inline-block;
  text-align: left;
  vertical-align: middle;
}

.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: normal;
  line-height: 1.42857143;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  white-space: normal;
  filter: alpha(opacity=0);
  opacity: 0;

  line-break: auto;
}
.tooltip.in {
  filter: alpha(opacity=90);
  opacity: .9;
}
.tooltip.top {
  padding: 5px 0;
  margin-top: -3px;
}
.tooltip.right {
  padding: 0 5px;
  margin-left: 3px;
}
.tooltip.bottom {
  padding: 5px 0;
  margin-top: 3px;
}
.tooltip.left {
  padding: 0 5px;
  margin-left: -3px;
}
.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  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 {
  right: 5px;
  bottom: 0;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  left: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000;
}
.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000;
}
.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  right: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  left: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  max-width: 276px;
  padding: 1px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  line-height: 1.42857143;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  white-space: normal;
  background-color: #fff;
  -webkit-background-clip: padding-box;
          background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, .2);
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
          box-shadow: 0 5px 10px rgba(0, 0, 0, .2);

  line-break: auto;
}
.popover.top {
  margin-top: -10px;
}
.popover.right {
  margin-left: 10px;
}
.popover.bottom {
  margin-top: 10px;
}
.popover.left {
  margin-left: -10px;
}
.popover-title {
  padding: 8px 14px;
  margin: 0;
  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 {
  content: "";
  border-width: 10px;
}
.popover.top > .arrow {
  bottom: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-color: #999;
  border-top-color: rgba(0, 0, 0, .25);
  border-bottom-width: 0;
}
.popover.top > .arrow:after {
  bottom: 1px;
  margin-left: -10px;
  content: " ";
  border-top-color: #fff;
  border-bottom-width: 0;
}
.popover.right > .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-right-color: #999;
  border-right-color: rgba(0, 0, 0, .25);
  border-left-width: 0;
}
.popover.right > .arrow:after {
  bottom: -10px;
  left: 1px;
  content: " ";
  border-right-color: #fff;
  border-left-width: 0;
}
.popover.bottom > .arrow {
  top: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #999;
  border-bottom-color: rgba(0, 0, 0, .25);
}
.popover.bottom > .arrow:after {
  top: 1px;
  margin-left: -10px;
  content: " ";
  border-top-width: 0;
  border-bottom-color: #fff;
}
.popover.left > .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #999;
  border-left-color: rgba(0, 0, 0, .25);
}
.popover.left > .arrow:after {
  right: 1px;
  bottom: -10px;
  content: " ";
  border-right-width: 0;
  border-left-color: #fff;
}
.carousel {
  position: relative;
}
.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.carousel-inner > .item {
  position: relative;
  display: none;
  -webkit-transition: .6s ease-in-out left;
       -o-transition: .6s ease-in-out left;
          transition: .6s ease-in-out left;
}
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  line-height: 1;
}
@media all and (transform-3d), (-webkit-transform-3d) {
  .carousel-inner > .item {
    -webkit-transition: -webkit-transform .6s ease-in-out;
         -o-transition:      -o-transform .6s ease-in-out;
            transition:         transform .6s ease-in-out;

    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    -webkit-perspective: 1000px;
            perspective: 1000px;
  }
  .carousel-inner > .item.next,
  .carousel-inner > .item.active.right {
    left: 0;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
  }
  .carousel-inner > .item.prev,
  .carousel-inner > .item.active.left {
    left: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
  .carousel-inner > .item.next.left,
  .carousel-inner > .item.prev.right,
  .carousel-inner > .item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
  display: block;
}
.carousel-inner > .active {
  left: 0;
}
.carousel-inner > .next,
.carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%;
}
.carousel-inner > .next {
  left: 100%;
}
.carousel-inner > .prev {
  left: -100%;
}
.carousel-inner > .next.left,
.carousel-inner > .prev.right {
  left: 0;
}
.carousel-inner > .active.left {
  left: -100%;
}
.carousel-inner > .active.right {
  left: 100%;
}
.carousel-control {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 15%;
  font-size: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
  background-color: rgba(0, 0, 0, 0);
  filter: alpha(opacity=50);
  opacity: .5;
}
.carousel-control.left {
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
  background-image:      -o-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, .0001)));
  background-image:         linear-gradient(to right, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
  background-repeat: repeat-x;
}
.carousel-control.right {
  right: 0;
  left: auto;
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
  background-image:      -o-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .0001)), to(rgba(0, 0, 0, .5)));
  background-image:         linear-gradient(to right, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
  background-repeat: repeat-x;
}
.carousel-control:hover,
.carousel-control:focus {
  color: #fff;
  text-decoration: none;
  filter: alpha(opacity=90);
  outline: 0;
  opacity: .9;
}
.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: inline-block;
  margin-top: -10px;
}
.carousel-control .icon-prev,
.carousel-control .glyphicon-chevron-left {
  left: 50%;
  margin-left: -10px;
}
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-right {
  right: 50%;
  margin-right: -10px;
}
.carousel-control .icon-prev,
.carousel-control .icon-next {
  width: 20px;
  height: 20px;
  font-family: serif;
  line-height: 1;
}
.carousel-control .icon-prev:before {
  content: '\2039';
}
.carousel-control .icon-next:before {
  content: '\203A';
}
.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  padding-left: 0;
  margin-left: -30%;
  text-align: center;
  list-style: none;
}
.carousel-indicators li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 1px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #000 \9;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #fff;
  border-radius: 10px;
}
.carousel-indicators .active {
  width: 12px;
  height: 12px;
  margin: 0;
  background-color: #fff;
}
.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
}
.carousel-caption .btn {
  text-shadow: none;
}
@media screen and (min-width: 768px) {
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -10px;
    font-size: 30px;
  }
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .icon-prev {
    margin-left: -10px;
  }
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-next {
    margin-right: -10px;
  }
  .carousel-caption {
    right: 20%;
    left: 20%;
    padding-bottom: 30px;
  }
  .carousel-indicators {
    bottom: 20px;
  }
}
.clearfix:before,
.clearfix:after,
.dl-horizontal dd:before,
.dl-horizontal dd:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after,
.form-horizontal .form-group:before,
.form-horizontal .form-group:after,
.btn-toolbar:before,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:before,
.btn-group-vertical > .btn-group:after,
.nav:before,
.nav:after,
.navbar:before,
.navbar:after,
.navbar-header:before,
.navbar-header:after,
.navbar-collapse:before,
.navbar-collapse:after,
.pager:before,
.pager:after,
.panel-body:before,
.panel-body:after,
.modal-header:before,
.modal-header:after,
.modal-footer:before,
.modal-footer:after {
  display: table;
  content: " ";
}
.clearfix:after,
.dl-horizontal dd:after,
.container:after,
.container-fluid:after,
.row:after,
.form-horizontal .form-group:after,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:after,
.nav:after,
.navbar:after,
.navbar-header:after,
.navbar-collapse:after,
.pager:after,
.panel-body:after,
.modal-header:after,
.modal-footer:after {
  clear: both;
}
.center-block {
  display: block;
  margin-right: auto;
  margin-left: auto;
}
.pull-right {
  float: right !important;
}
.pull-left {
  float: left !important;
}
.hide {
  display: none !important;
}
.show {
  display: block !important;
}
.invisible {
  visibility: hidden;
}
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.hidden {
  display: none !important;
}
.affix {
  position: fixed;
}
@-ms-viewport {
  width: device-width;
}
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
  display: none !important;
}
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}
@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }
  table.visible-xs {
    display: table !important;
  }
  tr.visible-xs {
    display: table-row !important;
  }
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }
  table.visible-sm {
    display: table !important;
  }
  tr.visible-sm {
    display: table-row !important;
  }
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }
  table.visible-md {
    display: table !important;
  }
  tr.visible-md {
    display: table-row !important;
  }
  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }
  table.visible-lg {
    display: table !important;
  }
  tr.visible-lg {
    display: table-row !important;
  }
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-block {
    display: block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}
@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}
.visible-print {
  display: none !important;
}
@media print {
  .visible-print {
    display: block !important;
  }
  table.visible-print {
    display: table !important;
  }
  tr.visible-print {
    display: table-row !important;
  }
  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
}
.visible-print-block {
  display: none !important;
}
@media print {
  .visible-print-block {
    display: block !important;
  }
}
.visible-print-inline {
  display: none !important;
}
@media print {
  .visible-print-inline {
    display: inline !important;
  }
}
.visible-print-inline-block {
  display: none !important;
}
@media print {
  .visible-print-inline-block {
    display: inline-block !important;
  }
}
@media print {
  .hidden-print {
    display: none !important;
  }
}

/*!
 * Bootstrap v3.3.7 (http://getbootstrap.com)
 * Copyright 2011-2016 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
.btn-default,
.btn-primary,
.btn-success,
.btn-info,
.btn-warning,
.btn-danger {
  text-shadow: 0 -1px 0 rgba(0, 0, 0, .2);
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075);
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075);
}
.btn-default:active,
.btn-primary:active,
.btn-success:active,
.btn-info:active,
.btn-warning:active,
.btn-danger:active,
.btn-default.active,
.btn-primary.active,
.btn-success.active,
.btn-info.active,
.btn-warning.active,
.btn-danger.active {
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
          box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
}
.btn-default.disabled,
.btn-primary.disabled,
.btn-success.disabled,
.btn-info.disabled,
.btn-warning.disabled,
.btn-danger.disabled,
.btn-default[disabled],
.btn-primary[disabled],
.btn-success[disabled],
.btn-info[disabled],
.btn-warning[disabled],
.btn-danger[disabled],
fieldset[disabled] .btn-default,
fieldset[disabled] .btn-primary,
fieldset[disabled] .btn-success,
fieldset[disabled] .btn-info,
fieldset[disabled] .btn-warning,
fieldset[disabled] .btn-danger {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.btn-default .badge,
.btn-primary .badge,
.btn-success .badge,
.btn-info .badge,
.btn-warning .badge,
.btn-danger .badge {
  text-shadow: none;
}
.btn:active,
.btn.active {
  background-image: none;
}
.btn-default {
  text-shadow: 0 1px 0 #fff;
  background-image: -webkit-linear-gradient(top, #fff 0%, #e0e0e0 100%);
  background-image:      -o-linear-gradient(top, #fff 0%, #e0e0e0 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#e0e0e0));
  background-image:         linear-gradient(to bottom, #fff 0%, #e0e0e0 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe0e0e0', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  background-repeat: repeat-x;
  border-color: #dbdbdb;
  border-color: #ccc;
}
.btn-default:hover,
.btn-default:focus {
  background-color: #e0e0e0;
  background-position: 0 -15px;
}
.btn-default:active,
.btn-default.active {
  background-color: #e0e0e0;
  border-color: #dbdbdb;
}
.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: #e0e0e0;
  background-image: none;
}
.btn-primary {
  background-image: -webkit-linear-gradient(top, #337ab7 0%, #265a88 100%);
  background-image:      -o-linear-gradient(top, #337ab7 0%, #265a88 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#265a88));
  background-image:         linear-gradient(to bottom, #337ab7 0%, #265a88 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff265a88', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  background-repeat: repeat-x;
  border-color: #245580;
}
.btn-primary:hover,
.btn-primary:focus {
  background-color: #265a88;
  background-position: 0 -15px;
}
.btn-primary:active,
.btn-primary.active {
  background-color: #265a88;
  border-color: #245580;
}
.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: #265a88;
  background-image: none;
}
.btn-success {
  background-image: -webkit-linear-gradient(top, #5cb85c 0%, #419641 100%);
  background-image:      -o-linear-gradient(top, #5cb85c 0%, #419641 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#5cb85c), to(#419641));
  background-image:         linear-gradient(to bottom, #5cb85c 0%, #419641 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff419641', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  background-repeat: repeat-x;
  border-color: #3e8f3e;
}
.btn-success:hover,
.btn-success:focus {
  background-color: #419641;
  background-position: 0 -15px;
}
.btn-success:active,
.btn-success.active {
  background-color: #419641;
  border-color: #3e8f3e;
}
.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: #419641;
  background-image: none;
}
.btn-info {
  background-image: -webkit-linear-gradient(top, #5bc0de 0%, #2aabd2 100%);
  background-image:      -o-linear-gradient(top, #5bc0de 0%, #2aabd2 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#5bc0de), to(#2aabd2));
  background-image:         linear-gradient(to bottom, #5bc0de 0%, #2aabd2 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  background-repeat: repeat-x;
  border-color: #28a4c9;
}
.btn-info:hover,
.btn-info:focus {
  background-color: #2aabd2;
  background-position: 0 -15px;
}
.btn-info:active,
.btn-info.active {
  background-color: #2aabd2;
  border-color: #28a4c9;
}
.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: #2aabd2;
  background-image: none;
}
.btn-warning {
  background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #eb9316 100%);
  background-image:      -o-linear-gradient(top, #f0ad4e 0%, #eb9316 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f0ad4e), to(#eb9316));
  background-image:         linear-gradient(to bottom, #f0ad4e 0%, #eb9316 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffeb9316', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  background-repeat: repeat-x;
  border-color: #e38d13;
}
.btn-warning:hover,
.btn-warning:focus {
  background-color: #eb9316;
  background-position: 0 -15px;
}
.btn-warning:active,
.btn-warning.active {
  background-color: #eb9316;
  border-color: #e38d13;
}
.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: #eb9316;
  background-image: none;
}
.btn-danger {
  background-image: -webkit-linear-gradient(top, #d9534f 0%, #c12e2a 100%);
  background-image:      -o-linear-gradient(top, #d9534f 0%, #c12e2a 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#d9534f), to(#c12e2a));
  background-image:         linear-gradient(to bottom, #d9534f 0%, #c12e2a 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc12e2a', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  background-repeat: repeat-x;
  border-color: #b92c28;
}
.btn-danger:hover,
.btn-danger:focus {
  background-color: #c12e2a;
  background-position: 0 -15px;
}
.btn-danger:active,
.btn-danger.active {
  background-color: #c12e2a;
  border-color: #b92c28;
}
.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: #c12e2a;
  background-image: none;
}
.thumbnail,
.img-thumbnail {
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .075);
          box-shadow: 0 1px 2px rgba(0, 0, 0, .075);
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
  background-color: #e8e8e8;
  background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
  background-image:      -o-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#e8e8e8));
  background-image:         linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);
  background-repeat: repeat-x;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
  background-color: #2e6da4;
  background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
  background-image:      -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4));
  background-image:         linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);
  background-repeat: repeat-x;
}
.navbar-default {
  background-image: -webkit-linear-gradient(top, #fff 0%, #f8f8f8 100%);
  background-image:      -o-linear-gradient(top, #fff 0%, #f8f8f8 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f8f8f8));
  background-image:         linear-gradient(to bottom, #fff 0%, #f8f8f8 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff8f8f8', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  background-repeat: repeat-x;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 5px rgba(0, 0, 0, .075);
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 5px rgba(0, 0, 0, .075);
}
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .active > a {
  background-image: -webkit-linear-gradient(top, #dbdbdb 0%, #e2e2e2 100%);
  background-image:      -o-linear-gradient(top, #dbdbdb 0%, #e2e2e2 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#dbdbdb), to(#e2e2e2));
  background-image:         linear-gradient(to bottom, #dbdbdb 0%, #e2e2e2 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdbdbdb', endColorstr='#ffe2e2e2', GradientType=0);
  background-repeat: repeat-x;
  -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, .075);
          box-shadow: inset 0 3px 9px rgba(0, 0, 0, .075);
}
.navbar-brand,
.navbar-nav > li > a {
  text-shadow: 0 1px 0 rgba(255, 255, 255, .25);
}
.navbar-inverse {
  background-image: -webkit-linear-gradient(top, #3c3c3c 0%, #222 100%);
  background-image:      -o-linear-gradient(top, #3c3c3c 0%, #222 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#3c3c3c), to(#222));
  background-image:         linear-gradient(to bottom, #3c3c3c 0%, #222 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff222222', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  background-repeat: repeat-x;
  border-radius: 4px;
}
.navbar-inverse .navbar-nav > .open > a,
.navbar-inverse .navbar-nav > .active > a {
  background-image: -webkit-linear-gradient(top, #080808 0%, #0f0f0f 100%);
  background-image:      -o-linear-gradient(top, #080808 0%, #0f0f0f 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#080808), to(#0f0f0f));
  background-image:         linear-gradient(to bottom, #080808 0%, #0f0f0f 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff080808', endColorstr='#ff0f0f0f', GradientType=0);
  background-repeat: repeat-x;
  -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, .25);
          box-shadow: inset 0 3px 9px rgba(0, 0, 0, .25);
}
.navbar-inverse .navbar-brand,
.navbar-inverse .navbar-nav > li > a {
  text-shadow: 0 -1px 0 rgba(0, 0, 0, .25);
}
.navbar-static-top,
.navbar-fixed-top,
.navbar-fixed-bottom {
  border-radius: 0;
}
@media (max-width: 767px) {
  .navbar .navbar-nav .open .dropdown-menu > .active > a,
  .navbar .navbar-nav .open .dropdown-menu > .active > a:hover,
  .navbar .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #fff;
    background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
    background-image:      -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4));
    background-image:         linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);
    background-repeat: repeat-x;
  }
}
.alert {
  text-shadow: 0 1px 0 rgba(255, 255, 255, .2);
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25), 0 1px 2px rgba(0, 0, 0, .05);
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25), 0 1px 2px rgba(0, 0, 0, .05);
}
.alert-success {
  background-image: -webkit-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);
  background-image:      -o-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#dff0d8), to(#c8e5bc));
  background-image:         linear-gradient(to bottom, #dff0d8 0%, #c8e5bc 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0);
  background-repeat: repeat-x;
  border-color: #b2dba1;
}
.alert-info {
  background-image: -webkit-linear-gradient(top, #d9edf7 0%, #b9def0 100%);
  background-image:      -o-linear-gradient(top, #d9edf7 0%, #b9def0 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#d9edf7), to(#b9def0));
  background-image:         linear-gradient(to bottom, #d9edf7 0%, #b9def0 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0);
  background-repeat: repeat-x;
  border-color: #9acfea;
}
.alert-warning {
  background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);
  background-image:      -o-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fcf8e3), to(#f8efc0));
  background-image:         linear-gradient(to bottom, #fcf8e3 0%, #f8efc0 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0);
  background-repeat: repeat-x;
  border-color: #f5e79e;
}
.alert-danger {
  background-image: -webkit-linear-gradient(top, #f2dede 0%, #e7c3c3 100%);
  background-image:      -o-linear-gradient(top, #f2dede 0%, #e7c3c3 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f2dede), to(#e7c3c3));
  background-image:         linear-gradient(to bottom, #f2dede 0%, #e7c3c3 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0);
  background-repeat: repeat-x;
  border-color: #dca7a7;
}
.progress {
  background-image: -webkit-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%);
  background-image:      -o-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ebebeb), to(#f5f5f5));
  background-image:         linear-gradient(to bottom, #ebebeb 0%, #f5f5f5 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0);
  background-repeat: repeat-x;
}
.progress-bar {
  background-image: -webkit-linear-gradient(top, #337ab7 0%, #286090 100%);
  background-image:      -o-linear-gradient(top, #337ab7 0%, #286090 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#286090));
  background-image:         linear-gradient(to bottom, #337ab7 0%, #286090 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff286090', GradientType=0);
  background-repeat: repeat-x;
}
.progress-bar-success {
  background-image: -webkit-linear-gradient(top, #5cb85c 0%, #449d44 100%);
  background-image:      -o-linear-gradient(top, #5cb85c 0%, #449d44 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#5cb85c), to(#449d44));
  background-image:         linear-gradient(to bottom, #5cb85c 0%, #449d44 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0);
  background-repeat: repeat-x;
}
.progress-bar-info {
  background-image: -webkit-linear-gradient(top, #5bc0de 0%, #31b0d5 100%);
  background-image:      -o-linear-gradient(top, #5bc0de 0%, #31b0d5 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#5bc0de), to(#31b0d5));
  background-image:         linear-gradient(to bottom, #5bc0de 0%, #31b0d5 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0);
  background-repeat: repeat-x;
}
.progress-bar-warning {
  background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #ec971f 100%);
  background-image:      -o-linear-gradient(top, #f0ad4e 0%, #ec971f 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f0ad4e), to(#ec971f));
  background-image:         linear-gradient(to bottom, #f0ad4e 0%, #ec971f 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0);
  background-repeat: repeat-x;
}
.progress-bar-danger {
  background-image: -webkit-linear-gradient(top, #d9534f 0%, #c9302c 100%);
  background-image:      -o-linear-gradient(top, #d9534f 0%, #c9302c 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#d9534f), to(#c9302c));
  background-image:         linear-gradient(to bottom, #d9534f 0%, #c9302c 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0);
  background-repeat: repeat-x;
}
.progress-bar-striped {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}
.list-group {
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .075);
          box-shadow: 0 1px 2px rgba(0, 0, 0, .075);
}
.list-group-item.active,
.list-group-item.active:hover,
.list-group-item.active:focus {
  text-shadow: 0 -1px 0 #286090;
  background-image: -webkit-linear-gradient(top, #337ab7 0%, #2b669a 100%);
  background-image:      -o-linear-gradient(top, #337ab7 0%, #2b669a 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2b669a));
  background-image:         linear-gradient(to bottom, #337ab7 0%, #2b669a 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2b669a', GradientType=0);
  background-repeat: repeat-x;
  border-color: #2b669a;
}
.list-group-item.active .badge,
.list-group-item.active:hover .badge,
.list-group-item.active:focus .badge {
  text-shadow: none;
}
.panel {
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
          box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
}
.panel-default > .panel-heading {
  background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
  background-image:      -o-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#e8e8e8));
  background-image:         linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);
  background-repeat: repeat-x;
}
.panel-primary > .panel-heading {
  background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
  background-image:      -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4));
  background-image:         linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);
  background-repeat: repeat-x;
}
.panel-success > .panel-heading {
  background-image: -webkit-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%);
  background-image:      -o-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#dff0d8), to(#d0e9c6));
  background-image:         linear-gradient(to bottom, #dff0d8 0%, #d0e9c6 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffd0e9c6', GradientType=0);
  background-repeat: repeat-x;
}
.panel-info > .panel-heading {
  background-image: -webkit-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%);
  background-image:      -o-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#d9edf7), to(#c4e3f3));
  background-image:         linear-gradient(to bottom, #d9edf7 0%, #c4e3f3 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffc4e3f3', GradientType=0);
  background-repeat: repeat-x;
}
.panel-warning > .panel-heading {
  background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%);
  background-image:      -o-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fcf8e3), to(#faf2cc));
  background-image:         linear-gradient(to bottom, #fcf8e3 0%, #faf2cc 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fffaf2cc', GradientType=0);
  background-repeat: repeat-x;
}
.panel-danger > .panel-heading {
  background-image: -webkit-linear-gradient(top, #f2dede 0%, #ebcccc 100%);
  background-image:      -o-linear-gradient(top, #f2dede 0%, #ebcccc 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f2dede), to(#ebcccc));
  background-image:         linear-gradient(to bottom, #f2dede 0%, #ebcccc 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffebcccc', GradientType=0);
  background-repeat: repeat-x;
}
.well {
  background-image: -webkit-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%);
  background-image:      -o-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#e8e8e8), to(#f5f5f5));
  background-image:         linear-gradient(to bottom, #e8e8e8 0%, #f5f5f5 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8', endColorstr='#fff5f5f5', GradientType=0);
  background-repeat: repeat-x;
  border-color: #dcdcdc;
  -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, .05), 0 1px 0 rgba(255, 255, 255, .1);
          box-shadow: inset 0 1px 3px rgba(0, 0, 0, .05), 0 1px 0 rgba(255, 255, 255, .1);
}

.atwho-view{position:absolute;top:0;left:0;display:none;margin-top:18px;background:#fff;color:#000;border:1px solid #ddd;border-radius:3px;box-shadow:0 0 5px rgba(0,0,0,.1);min-width:120px;z-index:11110 !important}.atwho-view .atwho-header{padding:5px;margin:5px;cursor:pointer;border-bottom:solid 1px #eaeff1;color:#6f8092;font-size:11px;font-weight:bold}.atwho-view .atwho-header .small{color:#6f8092;float:right;padding-top:2px;margin-right:-5px;font-size:12px;font-weight:normal}.atwho-view .atwho-header:hover{cursor:default}.atwho-view .cur{background:#36f;color:#fff}.atwho-view .cur small{color:#fff}.atwho-view strong{color:#36f}.atwho-view .cur strong{color:#fff;font:bold}.atwho-view ul{list-style:none;padding:0;margin:auto;max-height:200px;overflow-y:auto}.atwho-view ul li{display:block;padding:5px 10px;border-bottom:1px solid #ddd;cursor:pointer}.atwho-view small{font-size:smaller;color:#777;font-weight:normal}/*!
 *  Font Awesome 3.2.1
 *  the iconic font designed for Bootstrap
 *  ------------------------------------------------------------------------------
 *  The full suite of pictographic icons, examples, and documentation can be
 *  found at http://fontawesome.io.  Stay up to date on Twitter at
 *  http://twitter.com/fontawesome.
 *
 *  License
 *  ------------------------------------------------------------------------------
 *  - The Font Awesome font is licensed under SIL OFL 1.1 -
 *    http://scripts.sil.org/OFL
 *  - Font Awesome CSS, LESS, and SASS files are licensed under MIT License -
 *    http://opensource.org/licenses/mit-license.html
 *  - Font Awesome documentation licensed under CC BY 3.0 -
 *    http://creativecommons.org/licenses/by/3.0/
 *  - Attribution is no longer required in Font Awesome 3.0, but much appreciated:
 *    "Font Awesome by Dave Gandy - http://fontawesome.io"
 *
 *  Author - Dave Gandy
 *  ------------------------------------------------------------------------------
 *  Email: dave@fontawesome.io
 *  Twitter: http://twitter.com/byscuits
 *  Work: Lead Product Designer @ Kyruus - http://kyruus.com
 */@font-face{font-family:"FontAwesome";src:url(fonts/fontawesome-webfont_5ae23ad29b67289a1375d2043e289c52.eot);src:url(fonts/fontawesome-webfont_5ae23ad29b67289a1375d2043e289c52.eot?#iefix&v=3.2.1) format("embedded-opentype"),url(fonts/fontawesome-webfont_b683029bafe0305ac2234038a03e1541.woff) format("woff"),url(fonts/fontawesome-webfont_8cca2f02b0af2da365ff4d1755f29146.ttf) format("truetype"),url(fonts/fontawesome-webfont_f99a231ed57ee113b50b1c3e9f9fcdc3.svg#fontawesomeregular?v=3.2.1) format("svg");font-weight:normal;font-style:normal}[class^=icon-],[class*=" icon-"]{font-family:FontAwesome;font-weight:normal;font-style:normal;text-decoration:inherit;-webkit-font-smoothing:antialiased;*margin-right:.3em}[class^=icon-]:before,[class*=" icon-"]:before{text-decoration:inherit;display:inline-block;speak:none}.icon-large:before{vertical-align:-10%;font-size:1.3333333333em}a [class^=icon-],a [class*=" icon-"]{display:inline}[class^=icon-].icon-fixed-width,[class*=" icon-"].icon-fixed-width{display:inline-block;width:1.1428571429em;text-align:right;padding-right:.2857142857em}[class^=icon-].icon-fixed-width.icon-large,[class*=" icon-"].icon-fixed-width.icon-large{width:1.4285714286em}.icons-ul{margin-left:2.1428571429em;list-style-type:none}.icons-ul>li{position:relative}.icons-ul .icon-li{position:absolute;left:-2.1428571429em;width:2.1428571429em;text-align:center;line-height:inherit}[class^=icon-].hide,[class*=" icon-"].hide{display:none}.icon-muted{color:#eee}.icon-light{color:#fff}.icon-dark{color:#333}.icon-border{border:solid 1px #eee;padding:.2em .25em .15em;border-radius:3px}.icon-2x{font-size:2em}.icon-2x.icon-border{border-width:2px;border-radius:4px}.icon-3x{font-size:3em}.icon-3x.icon-border{border-width:3px;border-radius:5px}.icon-4x{font-size:4em}.icon-4x.icon-border{border-width:4px;border-radius:6px}.icon-5x{font-size:5em}.icon-5x.icon-border{border-width:5px;border-radius:7px}.pull-right{float:right}.pull-left{float:left}[class^=icon-].pull-left,[class*=" icon-"].pull-left{margin-right:.3em}[class^=icon-].pull-right,[class*=" icon-"].pull-right{margin-left:.3em}[class^=icon-],[class*=" icon-"]{display:inline;width:auto;height:auto;line-height:normal;vertical-align:baseline;background-image:none;background-position:0% 0%;background-repeat:repeat;margin-top:0}.icon-white,.nav-pills>.active>a>[class^=icon-],.nav-pills>.active>a>[class*=" icon-"],.nav-list>.active>a>[class^=icon-],.nav-list>.active>a>[class*=" icon-"],.navbar-inverse .nav>.active>a>[class^=icon-],.navbar-inverse .nav>.active>a>[class*=" icon-"],.dropdown-menu>li>a:hover>[class^=icon-],.dropdown-menu>li>a:hover>[class*=" icon-"],.dropdown-menu>.active>a>[class^=icon-],.dropdown-menu>.active>a>[class*=" icon-"],.dropdown-submenu:hover>a>[class^=icon-],.dropdown-submenu:hover>a>[class*=" icon-"]{background-image:none}.btn [class^=icon-].icon-large,.btn [class*=" icon-"].icon-large,.nav [class^=icon-].icon-large,.nav [class*=" icon-"].icon-large{line-height:.9em}.btn [class^=icon-].icon-spin,.btn [class^=icon-].spin-icon,.btn [class*=" icon-"].icon-spin,.btn [class*=" icon-"].spin-icon,.nav [class^=icon-].icon-spin,.nav [class^=icon-].spin-icon,.nav [class*=" icon-"].icon-spin,.nav [class*=" icon-"].spin-icon{display:inline-block}.nav-tabs [class^=icon-],.nav-tabs [class^=icon-].icon-large,.nav-tabs [class*=" icon-"],.nav-tabs [class*=" icon-"].icon-large,.nav-pills [class^=icon-],.nav-pills [class^=icon-].icon-large,.nav-pills [class*=" icon-"],.nav-pills [class*=" icon-"].icon-large{line-height:.9em}.btn [class^=icon-].pull-left.icon-2x,.btn [class^=icon-].pull-right.icon-2x,.btn [class*=" icon-"].pull-left.icon-2x,.btn [class*=" icon-"].pull-right.icon-2x{margin-top:.18em}.btn [class^=icon-].icon-spin.icon-large,.btn [class^=icon-].icon-large.spin-icon,.btn [class*=" icon-"].icon-spin.icon-large,.btn [class*=" icon-"].icon-large.spin-icon{line-height:.8em}.btn.btn-small [class^=icon-].pull-left.icon-2x,.btn.btn-small [class^=icon-].pull-right.icon-2x,.btn.btn-small [class*=" icon-"].pull-left.icon-2x,.btn.btn-small [class*=" icon-"].pull-right.icon-2x{margin-top:.25em}.btn.btn-large [class^=icon-],.btn.btn-large [class*=" icon-"]{margin-top:0}.btn.btn-large [class^=icon-].pull-left.icon-2x,.btn.btn-large [class^=icon-].pull-right.icon-2x,.btn.btn-large [class*=" icon-"].pull-left.icon-2x,.btn.btn-large [class*=" icon-"].pull-right.icon-2x{margin-top:.05em}.btn.btn-large [class^=icon-].pull-left.icon-2x,.btn.btn-large [class*=" icon-"].pull-left.icon-2x{margin-right:.2em}.btn.btn-large [class^=icon-].pull-right.icon-2x,.btn.btn-large [class*=" icon-"].pull-right.icon-2x{margin-left:.2em}.nav-list [class^=icon-],.nav-list [class*=" icon-"]{line-height:inherit}.icon-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:-35%}.icon-stack [class^=icon-],.icon-stack [class*=" icon-"]{display:block;text-align:center;position:absolute;width:100%;height:100%;font-size:1em;line-height:inherit;*line-height:2em}.icon-stack .icon-stack-base{font-size:2em;*line-height:1em}.icon-spin,.spin-icon{display:inline-block;-moz-animation:spin 2s infinite linear;-o-animation:spin 2s infinite linear;-webkit-animation:spin 2s infinite linear;animation:spin 2s infinite linear}a .icon-stack,a .icon-spin,a .spin-icon{display:inline-block;text-decoration:none}@-moz-keyframes spin{0%{-moz-transform:rotate(0deg)}100%{-moz-transform:rotate(359deg)}}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg)}}@-o-keyframes spin{0%{-o-transform:rotate(0deg)}100%{-o-transform:rotate(359deg)}}@-ms-keyframes spin{0%{-ms-transform:rotate(0deg)}100%{-ms-transform:rotate(359deg)}}@keyframes spin{0%{transform:rotate(0deg)}100%{transform:rotate(359deg)}}.icon-rotate-90:before{-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1)}.icon-rotate-180:before{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2)}.icon-rotate-270:before{-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3)}.icon-flip-horizontal:before{-webkit-transform:scale(-1, 1);-moz-transform:scale(-1, 1);-ms-transform:scale(-1, 1);-o-transform:scale(-1, 1);transform:scale(-1, 1)}.icon-flip-vertical:before{-webkit-transform:scale(1, -1);-moz-transform:scale(1, -1);-ms-transform:scale(1, -1);-o-transform:scale(1, -1);transform:scale(1, -1)}a .icon-rotate-90:before,a .icon-rotate-180:before,a .icon-rotate-270:before,a .icon-flip-horizontal:before,a .icon-flip-vertical:before{display:inline-block}.icon-glass:before{content:"\F000"}.icon-music:before{content:"\F001"}.icon-search:before{content:"\F002"}.icon-envelope-alt:before{content:"\F003"}.icon-heart:before{content:"\F004"}.icon-star:before{content:"\F005"}.icon-star-empty:before{content:"\F006"}.icon-user:before{content:"\F007"}.icon-film:before{content:"\F008"}.icon-th-large:before{content:"\F009"}.icon-th:before{content:"\F00A"}.icon-th-list:before{content:"\F00B"}.icon-ok:before{content:"\F00C"}.icon-remove:before{content:"\F00D"}.icon-zoom-in:before{content:"\F00E"}.icon-zoom-out:before{content:"\F010"}.icon-power-off:before,.icon-off:before{content:"\F011"}.icon-signal:before{content:"\F012"}.icon-gear:before,.icon-cog:before{content:"\F013"}.icon-trash:before{content:"\F014"}.icon-home:before{content:"\F015"}.icon-file-alt:before{content:"\F016"}.icon-time:before{content:"\F017"}.icon-road:before{content:"\F018"}.icon-download-alt:before{content:"\F019"}.icon-download:before{content:"\F01A"}.icon-upload:before{content:"\F01B"}.icon-inbox:before{content:"\F01C"}.icon-play-circle:before{content:"\F01D"}.icon-rotate-right:before,.icon-repeat:before{content:"\F01E"}.icon-refresh:before{content:"\F021"}.icon-list-alt:before{content:"\F022"}.icon-lock:before{content:"\F023"}.icon-flag:before{content:"\F024"}.icon-headphones:before{content:"\F025"}.icon-volume-off:before{content:"\F026"}.icon-volume-down:before{content:"\F027"}.icon-volume-up:before{content:"\F028"}.icon-qrcode:before{content:"\F029"}.icon-barcode:before{content:"\F02A"}.icon-tag:before{content:"\F02B"}.icon-tags:before{content:"\F02C"}.icon-book:before{content:"\F02D"}.icon-bookmark:before{content:"\F02E"}.icon-print:before{content:"\F02F"}.icon-camera:before{content:"\F030"}.icon-font:before{content:"\F031"}.icon-bold:before{content:"\F032"}.icon-italic:before{content:"\F033"}.icon-text-height:before{content:"\F034"}.icon-text-width:before{content:"\F035"}.icon-align-left:before{content:"\F036"}.icon-align-center:before{content:"\F037"}.icon-align-right:before{content:"\F038"}.icon-align-justify:before{content:"\F039"}.icon-list:before{content:"\F03A"}.icon-indent-left:before{content:"\F03B"}.icon-indent-right:before{content:"\F03C"}.icon-facetime-video:before{content:"\F03D"}.icon-picture:before{content:"\F03E"}.icon-pencil:before{content:"\F040"}.icon-map-marker:before{content:"\F041"}.icon-adjust:before{content:"\F042"}.icon-tint:before{content:"\F043"}.icon-edit:before{content:"\F044"}.icon-share:before{content:"\F045"}.icon-check:before{content:"\F046"}.icon-move:before{content:"\F047"}.icon-step-backward:before{content:"\F048"}.icon-fast-backward:before{content:"\F049"}.icon-backward:before{content:"\F04A"}.icon-play:before{content:"\F04B"}.icon-pause:before{content:"\F04C"}.icon-stop:before{content:"\F04D"}.icon-forward:before{content:"\F04E"}.icon-fast-forward:before{content:"\F050"}.icon-step-forward:before{content:"\F051"}.icon-eject:before{content:"\F052"}.icon-chevron-left:before{content:"\F053"}.icon-chevron-right:before{content:"\F054"}.icon-plus-sign:before{content:"\F055"}.icon-minus-sign:before{content:"\F056"}.icon-remove-sign:before{content:"\F057"}.icon-ok-sign:before{content:"\F058"}.icon-question-sign:before{content:"\F059"}.icon-info-sign:before{content:"\F05A"}.icon-screenshot:before{content:"\F05B"}.icon-remove-circle:before{content:"\F05C"}.icon-ok-circle:before{content:"\F05D"}.icon-ban-circle:before{content:"\F05E"}.icon-arrow-left:before{content:"\F060"}.icon-arrow-right:before{content:"\F061"}.icon-arrow-up:before{content:"\F062"}.icon-arrow-down:before{content:"\F063"}.icon-mail-forward:before,.icon-share-alt:before{content:"\F064"}.icon-resize-full:before{content:"\F065"}.icon-resize-small:before{content:"\F066"}.icon-plus:before{content:"\F067"}.icon-minus:before{content:"\F068"}.icon-asterisk:before{content:"\F069"}.icon-exclamation-sign:before{content:"\F06A"}.icon-gift:before{content:"\F06B"}.icon-leaf:before{content:"\F06C"}.icon-fire:before{content:"\F06D"}.icon-eye-open:before{content:"\F06E"}.icon-eye-close:before{content:"\F070"}.icon-warning-sign:before{content:"\F071"}.icon-plane:before{content:"\F072"}.icon-calendar:before{content:"\F073"}.icon-random:before{content:"\F074"}.icon-comment:before{content:"\F075"}.icon-magnet:before{content:"\F076"}.icon-chevron-up:before{content:"\F077"}.icon-chevron-down:before{content:"\F078"}.icon-retweet:before{content:"\F079"}.icon-shopping-cart:before{content:"\F07A"}.icon-folder-close:before{content:"\F07B"}.icon-folder-open:before{content:"\F07C"}.icon-resize-vertical:before{content:"\F07D"}.icon-resize-horizontal:before{content:"\F07E"}.icon-bar-chart:before{content:"\F080"}.icon-twitter-sign:before{content:"\F081"}.icon-facebook-sign:before{content:"\F082"}.icon-camera-retro:before{content:"\F083"}.icon-key:before{content:"\F084"}.icon-gears:before,.icon-cogs:before{content:"\F085"}.icon-comments:before{content:"\F086"}.icon-thumbs-up-alt:before{content:"\F087"}.icon-thumbs-down-alt:before{content:"\F088"}.icon-star-half:before{content:"\F089"}.icon-heart-empty:before{content:"\F08A"}.icon-signout:before{content:"\F08B"}.icon-linkedin-sign:before{content:"\F08C"}.icon-pushpin:before{content:"\F08D"}.icon-external-link:before{content:"\F08E"}.icon-signin:before{content:"\F090"}.icon-trophy:before{content:"\F091"}.icon-github-sign:before{content:"\F092"}.icon-upload-alt:before{content:"\F093"}.icon-lemon:before{content:"\F094"}.icon-phone:before{content:"\F095"}.icon-unchecked:before,.icon-check-empty:before{content:"\F096"}.icon-bookmark-empty:before{content:"\F097"}.icon-phone-sign:before{content:"\F098"}.icon-twitter:before{content:"\F099"}.icon-facebook:before{content:"\F09A"}.icon-github:before{content:"\F09B"}.icon-unlock:before{content:"\F09C"}.icon-credit-card:before{content:"\F09D"}.icon-rss:before{content:"\F09E"}.icon-hdd:before{content:"\F0A0"}.icon-bullhorn:before{content:"\F0A1"}.icon-bell:before{content:"\F0A2"}.icon-certificate:before{content:"\F0A3"}.icon-hand-right:before{content:"\F0A4"}.icon-hand-left:before{content:"\F0A5"}.icon-hand-up:before{content:"\F0A6"}.icon-hand-down:before{content:"\F0A7"}.icon-circle-arrow-left:before{content:"\F0A8"}.icon-circle-arrow-right:before{content:"\F0A9"}.icon-circle-arrow-up:before{content:"\F0AA"}.icon-circle-arrow-down:before{content:"\F0AB"}.icon-globe:before{content:"\F0AC"}.icon-wrench:before{content:"\F0AD"}.icon-tasks:before{content:"\F0AE"}.icon-filter:before{content:"\F0B0"}.icon-briefcase:before{content:"\F0B1"}.icon-fullscreen:before{content:"\F0B2"}.icon-group:before{content:"\F0C0"}.icon-link:before{content:"\F0C1"}.icon-cloud:before{content:"\F0C2"}.icon-beaker:before{content:"\F0C3"}.icon-cut:before{content:"\F0C4"}.icon-copy:before{content:"\F0C5"}.icon-paperclip:before,.icon-paper-clip:before{content:"\F0C6"}.icon-save:before{content:"\F0C7"}.icon-sign-blank:before{content:"\F0C8"}.icon-reorder:before{content:"\F0C9"}.icon-list-ul:before{content:"\F0CA"}.icon-list-ol:before{content:"\F0CB"}.icon-strikethrough:before{content:"\F0CC"}.icon-underline:before{content:"\F0CD"}.icon-table:before{content:"\F0CE"}.icon-magic:before{content:"\F0D0"}.icon-truck:before{content:"\F0D1"}.icon-pinterest:before{content:"\F0D2"}.icon-pinterest-sign:before{content:"\F0D3"}.icon-google-plus-sign:before{content:"\F0D4"}.icon-google-plus:before{content:"\F0D5"}.icon-money:before{content:"\F0D6"}.icon-caret-down:before{content:"\F0D7"}.icon-caret-up:before{content:"\F0D8"}.icon-caret-left:before{content:"\F0D9"}.icon-caret-right:before{content:"\F0DA"}.icon-columns:before{content:"\F0DB"}.icon-sort:before{content:"\F0DC"}.icon-sort-down:before{content:"\F0DD"}.icon-sort-up:before{content:"\F0DE"}.icon-envelope:before{content:"\F0E0"}.icon-linkedin:before{content:"\F0E1"}.icon-rotate-left:before,.icon-undo:before{content:"\F0E2"}.icon-legal:before{content:"\F0E3"}.icon-dashboard:before{content:"\F0E4"}.icon-comment-alt:before{content:"\F0E5"}.icon-comments-alt:before{content:"\F0E6"}.icon-bolt:before{content:"\F0E7"}.icon-sitemap:before{content:"\F0E8"}.icon-umbrella:before{content:"\F0E9"}.icon-paste:before{content:"\F0EA"}.icon-lightbulb:before{content:"\F0EB"}.icon-exchange:before{content:"\F0EC"}.icon-cloud-download:before{content:"\F0ED"}.icon-cloud-upload:before{content:"\F0EE"}.icon-user-md:before{content:"\F0F0"}.icon-stethoscope:before{content:"\F0F1"}.icon-suitcase:before{content:"\F0F2"}.icon-bell-alt:before{content:"\F0F3"}.icon-coffee:before{content:"\F0F4"}.icon-food:before{content:"\F0F5"}.icon-file-text-alt:before{content:"\F0F6"}.icon-building:before{content:"\F0F7"}.icon-hospital:before{content:"\F0F8"}.icon-ambulance:before{content:"\F0F9"}.icon-medkit:before{content:"\F0FA"}.icon-fighter-jet:before{content:"\F0FB"}.icon-beer:before{content:"\F0FC"}.icon-h-sign:before{content:"\F0FD"}.icon-plus-sign-alt:before{content:"\F0FE"}.icon-double-angle-left:before{content:"\F100"}.icon-double-angle-right:before{content:"\F101"}.icon-double-angle-up:before{content:"\F102"}.icon-double-angle-down:before{content:"\F103"}.icon-angle-left:before{content:"\F104"}.icon-angle-right:before{content:"\F105"}.icon-angle-up:before{content:"\F106"}.icon-angle-down:before{content:"\F107"}.icon-desktop:before{content:"\F108"}.icon-laptop:before{content:"\F109"}.icon-tablet:before{content:"\F10A"}.icon-mobile-phone:before{content:"\F10B"}.icon-circle-blank:before{content:"\F10C"}.icon-quote-left:before{content:"\F10D"}.icon-quote-right:before{content:"\F10E"}.icon-spinner:before{content:"\F110"}.icon-circle:before{content:"\F111"}.icon-mail-reply:before,.icon-reply:before{content:"\F112"}.icon-github-alt:before{content:"\F113"}.icon-folder-close-alt:before{content:"\F114"}.icon-folder-open-alt:before{content:"\F115"}.icon-expand-alt:before{content:"\F116"}.icon-collapse-alt:before{content:"\F117"}.icon-smile:before{content:"\F118"}.icon-frown:before{content:"\F119"}.icon-meh:before{content:"\F11A"}.icon-gamepad:before{content:"\F11B"}.icon-keyboard:before{content:"\F11C"}.icon-flag-alt:before{content:"\F11D"}.icon-flag-checkered:before{content:"\F11E"}.icon-terminal:before{content:"\F120"}.icon-code:before{content:"\F121"}.icon-reply-all:before{content:"\F122"}.icon-mail-reply-all:before{content:"\F122"}.icon-star-half-full:before,.icon-star-half-empty:before{content:"\F123"}.icon-location-arrow:before{content:"\F124"}.icon-crop:before{content:"\F125"}.icon-code-fork:before{content:"\F126"}.icon-unlink:before{content:"\F127"}.icon-question:before{content:"\F128"}.icon-info:before{content:"\F129"}.icon-exclamation:before{content:"\F12A"}.icon-superscript:before{content:"\F12B"}.icon-subscript:before{content:"\F12C"}.icon-eraser:before{content:"\F12D"}.icon-puzzle-piece:before{content:"\F12E"}.icon-microphone:before{content:"\F130"}.icon-microphone-off:before{content:"\F131"}.icon-shield:before{content:"\F132"}.icon-calendar-empty:before{content:"\F133"}.icon-fire-extinguisher:before{content:"\F134"}.icon-rocket:before{content:"\F135"}.icon-maxcdn:before{content:"\F136"}.icon-chevron-sign-left:before{content:"\F137"}.icon-chevron-sign-right:before{content:"\F138"}.icon-chevron-sign-up:before{content:"\F139"}.icon-chevron-sign-down:before{content:"\F13A"}.icon-html5:before{content:"\F13B"}.icon-css3:before{content:"\F13C"}.icon-anchor:before{content:"\F13D"}.icon-unlock-alt:before{content:"\F13E"}.icon-bullseye:before{content:"\F140"}.icon-ellipsis-horizontal:before{content:"\F141"}.icon-ellipsis-vertical:before{content:"\F142"}.icon-rss-sign:before{content:"\F143"}.icon-play-sign:before{content:"\F144"}.icon-ticket:before{content:"\F145"}.icon-minus-sign-alt:before{content:"\F146"}.icon-check-minus:before{content:"\F147"}.icon-level-up:before{content:"\F148"}.icon-level-down:before{content:"\F149"}.icon-check-sign:before{content:"\F14A"}.icon-edit-sign:before{content:"\F14B"}.icon-external-link-sign:before{content:"\F14C"}.icon-share-sign:before{content:"\F14D"}.icon-compass:before{content:"\F14E"}.icon-collapse:before{content:"\F150"}.icon-collapse-top:before{content:"\F151"}.icon-expand:before{content:"\F152"}.icon-euro:before,.icon-eur:before{content:"\F153"}.icon-gbp:before{content:"\F154"}.icon-dollar:before,.icon-usd:before{content:"\F155"}.icon-rupee:before,.icon-inr:before{content:"\F156"}.icon-yen:before,.icon-jpy:before{content:"\F157"}.icon-renminbi:before,.icon-cny:before{content:"\F158"}.icon-won:before,.icon-krw:before{content:"\F159"}.icon-bitcoin:before,.icon-btc:before{content:"\F15A"}.icon-file:before{content:"\F15B"}.icon-file-text:before{content:"\F15C"}.icon-sort-by-alphabet:before{content:"\F15D"}.icon-sort-by-alphabet-alt:before{content:"\F15E"}.icon-sort-by-attributes:before{content:"\F160"}.icon-sort-by-attributes-alt:before{content:"\F161"}.icon-sort-by-order:before{content:"\F162"}.icon-sort-by-order-alt:before{content:"\F163"}.icon-thumbs-up:before{content:"\F164"}.icon-thumbs-down:before{content:"\F165"}.icon-youtube-sign:before{content:"\F166"}.icon-youtube:before{content:"\F167"}.icon-xing:before{content:"\F168"}.icon-xing-sign:before{content:"\F169"}.icon-youtube-play:before{content:"\F16A"}.icon-dropbox:before{content:"\F16B"}.icon-stackexchange:before{content:"\F16C"}.icon-instagram:before{content:"\F16D"}.icon-flickr:before{content:"\F16E"}.icon-adn:before{content:"\F170"}.icon-bitbucket:before{content:"\F171"}.icon-bitbucket-sign:before{content:"\F172"}.icon-tumblr:before{content:"\F173"}.icon-tumblr-sign:before{content:"\F174"}.icon-long-arrow-down:before{content:"\F175"}.icon-long-arrow-up:before{content:"\F176"}.icon-long-arrow-left:before{content:"\F177"}.icon-long-arrow-right:before{content:"\F178"}.icon-apple:before{content:"\F179"}.icon-windows:before{content:"\F17A"}.icon-android:before{content:"\F17B"}.icon-linux:before{content:"\F17C"}.icon-dribbble:before{content:"\F17D"}.icon-skype:before{content:"\F17E"}.icon-foursquare:before{content:"\F180"}.icon-trello:before{content:"\F181"}.icon-female:before{content:"\F182"}.icon-male:before{content:"\F183"}.icon-gittip:before{content:"\F184"}.icon-sun:before{content:"\F185"}.icon-moon:before{content:"\F186"}.icon-archive:before{content:"\F187"}.icon-bug:before{content:"\F188"}.icon-vk:before{content:"\F189"}.icon-weibo:before{content:"\F18A"}.icon-renren:before{content:"\F18B"}#smartbanner{position:absolute;left:0;top:-82px;border-bottom:1px solid #e8e8e8;width:100%;height:78px;font-family:"Helvetica Neue",sans-serif;background:-webkit-linear-gradient(top, #f4f4f4 0%, #cdcdcd 100%);background-image:-ms-linear-gradient(top, #F4F4F4 0%, #CDCDCD 100%);background-image:-moz-linear-gradient(top, #F4F4F4 0%, #CDCDCD 100%);box-shadow:0 1px 2px rgba(0,0,0,.5);z-index:9998;-webkit-font-smoothing:antialiased;overflow:hidden;-webkit-text-size-adjust:none}#smartbanner,html.sb-animation{-webkit-transition:all .3s ease}#smartbanner .sb-container{margin:0 auto}#smartbanner .sb-close{position:absolute;left:5px;top:5px;display:block;border:2px solid #fff;width:14px;height:14px;font-family:"ArialRoundedMTBold",Arial;font-size:15px;line-height:15px;text-align:center;color:#fff;background:#070707;text-decoration:none;text-shadow:none;border-radius:14px;box-shadow:0 2px 3px rgba(0,0,0,.4);-webkit-font-smoothing:subpixel-antialiased}#smartbanner .sb-close:active{font-size:13px;color:#aaa}#smartbanner .sb-icon{position:absolute;left:30px;top:10px;display:block;width:57px;height:57px;background:rgba(0,0,0,.6);background-size:cover;border-radius:10px;box-shadow:0 1px 3px rgba(0,0,0,.3)}#smartbanner.no-icon .sb-icon{display:none}#smartbanner .sb-info{position:absolute;left:98px;top:18px;width:44%;font-size:11px;line-height:1.2em;font-weight:bold;color:#6a6a6a;text-shadow:0 1px 0 rgba(255,255,255,.8)}#smartbanner #smartbanner.no-icon .sb-info{left:34px}#smartbanner .sb-info strong{display:block;font-size:13px;color:#4d4d4d;line-height:18px}#smartbanner .sb-info>span{display:block}#smartbanner .sb-info em{font-style:normal;text-transform:uppercase}#smartbanner .sb-button{position:absolute;right:20px;top:24px;border:1px solid #bfbfbf;padding:0 10px;min-width:10%;font-size:14px;line-height:24px;text-align:center;font-weight:bold;color:#6a6a6a;background:-webkit-linear-gradient(top, #efefef 0%, #dcdcdc 100%);text-transform:uppercase;text-decoration:none;text-shadow:0 1px 0 rgba(255,255,255,.8);border-radius:3px;box-shadow:0 1px 0 rgba(255,255,255,.6),0 1px 0 rgba(255,255,255,.7) inset}#smartbanner .sb-button:active,#smartbanner .sb-button:hover{background:-webkit-linear-gradient(top, #dcdcdc 0%, #efefef 100%)}#smartbanner .sb-icon.gloss:after{content:"";position:absolute;left:0;top:-1px;border-top:1px solid rgba(255,255,255,.8);width:100%;height:50%;background:-webkit-linear-gradient(top, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.2) 100%);border-radius:10px 10px 12px 12px}#smartbanner.android{border-color:#212228;background:#3d3d3d url("data:image/gif;base64,R0lGODlhCAAIAIABAFVVVf///yH5BAEHAAEALAAAAAAIAAgAAAINRG4XudroGJBRsYcxKAA7");border-top:5px solid #88b131;box-shadow:none}#smartbanner.android .sb-close{border:0;width:17px;height:17px;line-height:17px;color:#b1b1b3;background:#1c1e21;text-shadow:0 1px 1px #000;box-shadow:0 1px 2px rgba(0,0,0,.8) inset,0 1px 1px rgba(255,255,255,.3)}#smartbanner.android .sb-close:active{color:#eee}#smartbanner.android .sb-info{color:#ccc;text-shadow:0 1px 2px #000}#smartbanner.android .sb-info strong{color:#fff}#smartbanner.android .sb-button{min-width:12%;border:1px solid #dddcdc;padding:1px;color:#d1d1d1;background:none;border-radius:0;box-shadow:none}#smartbanner.android .sb-button span{text-align:center;display:block;padding:0 10px;background-color:#42b6c9;background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#42B6C9), to(#39A9BB));background-image:-moz-linear-gradient(top, #42B6C9, #39A9BB);text-transform:none;text-shadow:none;box-shadow:none}#smartbanner.android .sb-button:active,#smartbanner.android .sb-button:hover{background:none}#smartbanner.android .sb-button:active span,#smartbanner.android .sb-button:hover span{background:#2ac7e1}#smartbanner.windows .sb-icon{border-radius:0px}body,html{height:100%;position:relative}*,body,button,input,textarea,select{text-rendering:optimizeLegibility}body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td{margin:0;padding:0}table{border-collapse:collapse;border-spacing:0}fieldset,img{border:0}address,caption,cite,code,dfn,th,var{font-style:normal;font-weight:normal}ol,ul{list-style:none}caption,th{text-align:left}q:before,q:after{content:""}abbr,acronym{border:0}/*! jQuery UI - v1.11.4 - 2015-03-11
* http://jqueryui.com
* Includes: core.css, accordion.css, autocomplete.css, button.css, datepicker.css, dialog.css, draggable.css, menu.css, progressbar.css, resizable.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Trebuchet%20MS%2CTahoma%2CVerdana%2CArial%2Csans-serif&fwDefault=bold&fsDefault=1.1em&cornerRadius=4px&bgColorHeader=f6a828&bgTextureHeader=gloss_wave&bgImgOpacityHeader=35&borderColorHeader=e78f08&fcHeader=ffffff&iconColorHeader=ffffff&bgColorContent=eeeeee&bgTextureContent=highlight_soft&bgImgOpacityContent=100&borderColorContent=dddddd&fcContent=333333&iconColorContent=222222&bgColorDefault=f6f6f6&bgTextureDefault=glass&bgImgOpacityDefault=100&borderColorDefault=cccccc&fcDefault=1c94c4&iconColorDefault=ef8c08&bgColorHover=fdf5ce&bgTextureHover=glass&bgImgOpacityHover=100&borderColorHover=fbcb09&fcHover=c77405&iconColorHover=ef8c08&bgColorActive=ffffff&bgTextureActive=glass&bgImgOpacityActive=65&borderColorActive=fbd850&fcActive=eb8f00&iconColorActive=ef8c08&bgColorHighlight=ffe45c&bgTextureHighlight=highlight_soft&bgImgOpacityHighlight=75&borderColorHighlight=fed22f&fcHighlight=363636&iconColorHighlight=228ef1&bgColorError=b81900&bgTextureError=diagonals_thick&bgImgOpacityError=18&borderColorError=cd0a0a&fcError=ffffff&iconColorError=ffd27a&bgColorOverlay=666666&bgTextureOverlay=diagonals_thick&bgImgOpacityOverlay=20&opacityOverlay=50&bgColorShadow=000000&bgTextureShadow=flat&bgImgOpacityShadow=10&opacityShadow=20&thicknessShadow=5px&offsetTopShadow=-5px&offsetLeftShadow=-5px&cornerRadiusShadow=5px
* Copyright 2015 jQuery Foundation and other contributors; Licensed MIT */.ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:before,.ui-helper-clearfix:after{content:"";display:table;border-collapse:collapse}.ui-helper-clearfix:after{clear:both}.ui-helper-clearfix{min-height:0}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-front{z-index:100}.ui-state-disabled{cursor:default !important}.ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}.ui-accordion .ui-accordion-header{display:block;cursor:pointer;position:relative;margin:2px 0 0 0;padding:.5em .5em .5em .7em;min-height:0;font-size:100%}.ui-accordion .ui-accordion-icons{padding-left:2.2em}.ui-accordion .ui-accordion-icons .ui-accordion-icons{padding-left:2.2em}.ui-accordion .ui-accordion-header .ui-accordion-header-icon{position:absolute;left:.5em;top:50%;margin-top:-8px}.ui-accordion .ui-accordion-content{padding:1em 2.2em;border-top:0;overflow:auto}.ui-autocomplete{position:absolute;top:0;left:0;cursor:default}.ui-button{display:inline-block;position:relative;padding:0;line-height:normal;margin-right:.1em;cursor:pointer;vertical-align:middle;text-align:center;overflow:visible}.ui-button,.ui-button:link,.ui-button:visited,.ui-button:hover,.ui-button:active{text-decoration:none}.ui-button-icon-only{width:2.2em}button.ui-button-icon-only{width:2.4em}.ui-button-icons-only{width:3.4em}button.ui-button-icons-only{width:3.7em}.ui-button .ui-button-text{display:block;line-height:normal}.ui-button-text-only .ui-button-text{padding:.4em 1em}.ui-button-icon-only .ui-button-text,.ui-button-icons-only .ui-button-text{padding:.4em;text-indent:-9999999px}.ui-button-text-icon-primary .ui-button-text,.ui-button-text-icons .ui-button-text{padding:.4em 1em .4em 2.1em}.ui-button-text-icon-secondary .ui-button-text,.ui-button-text-icons .ui-button-text{padding:.4em 2.1em .4em 1em}.ui-button-text-icons .ui-button-text{padding-left:2.1em;padding-right:2.1em}input.ui-button{padding:.4em 1em}.ui-button-icon-only .ui-icon,.ui-button-text-icon-primary .ui-icon,.ui-button-text-icon-secondary .ui-icon,.ui-button-text-icons .ui-icon,.ui-button-icons-only .ui-icon{position:absolute;top:50%;margin-top:-8px}.ui-button-icon-only .ui-icon{left:50%;margin-left:-8px}.ui-button-text-icon-primary .ui-button-icon-primary,.ui-button-text-icons .ui-button-icon-primary,.ui-button-icons-only .ui-button-icon-primary{left:.5em}.ui-button-text-icon-secondary .ui-button-icon-secondary,.ui-button-text-icons .ui-button-icon-secondary,.ui-button-icons-only .ui-button-icon-secondary{right:.5em}.ui-buttonset{margin-right:7px}.ui-buttonset .ui-button{margin-left:0;margin-right:-0.3em}input.ui-button::-moz-focus-inner,button.ui-button::-moz-focus-inner{border:0;padding:0}.ui-datepicker{width:17em;padding:.2em .2em 0;display:none}.ui-datepicker .ui-datepicker-header{position:relative;padding:.2em 0}.ui-datepicker .ui-datepicker-prev,.ui-datepicker .ui-datepicker-next{position:absolute;top:2px;width:1.8em;height:1.8em}.ui-datepicker .ui-datepicker-prev-hover,.ui-datepicker .ui-datepicker-next-hover{top:1px}.ui-datepicker .ui-datepicker-prev{left:2px}.ui-datepicker .ui-datepicker-next{right:2px}.ui-datepicker .ui-datepicker-prev-hover{left:1px}.ui-datepicker .ui-datepicker-next-hover{right:1px}.ui-datepicker .ui-datepicker-prev span,.ui-datepicker .ui-datepicker-next span{display:block;position:absolute;left:50%;margin-left:-8px;top:50%;margin-top:-8px}.ui-datepicker .ui-datepicker-title{margin:0 2.3em;line-height:1.8em;text-align:center}.ui-datepicker .ui-datepicker-title select{font-size:1em;margin:1px 0}.ui-datepicker select.ui-datepicker-month,.ui-datepicker select.ui-datepicker-year{width:45%}.ui-datepicker table{width:100%;font-size:.9em;border-collapse:collapse;margin:0 0 .4em}.ui-datepicker th{padding:.7em .3em;text-align:center;font-weight:bold;border:0}.ui-datepicker td{border:0;padding:1px}.ui-datepicker td span,.ui-datepicker td a{display:block;padding:.2em;text-align:right;text-decoration:none}.ui-datepicker .ui-datepicker-buttonpane{background-image:none;margin:.7em 0 0 0;padding:0 .2em;border-left:0;border-right:0;border-bottom:0}.ui-datepicker .ui-datepicker-buttonpane button{float:right;margin:.5em .2em .4em;cursor:pointer;padding:.2em .6em .3em .6em;width:auto;overflow:visible}.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current{float:left}.ui-datepicker.ui-datepicker-multi{width:auto}.ui-datepicker-multi .ui-datepicker-group{float:left}.ui-datepicker-multi .ui-datepicker-group table{width:95%;margin:0 auto .4em}.ui-datepicker-multi-2 .ui-datepicker-group{width:50%}.ui-datepicker-multi-3 .ui-datepicker-group{width:33.3%}.ui-datepicker-multi-4 .ui-datepicker-group{width:25%}.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header{border-left-width:0}.ui-datepicker-multi .ui-datepicker-buttonpane{clear:left}.ui-datepicker-row-break{clear:both;width:100%;font-size:0}.ui-datepicker-rtl{direction:rtl}.ui-datepicker-rtl .ui-datepicker-prev{right:2px;left:auto}.ui-datepicker-rtl .ui-datepicker-next{left:2px;right:auto}.ui-datepicker-rtl .ui-datepicker-prev:hover{right:1px;left:auto}.ui-datepicker-rtl .ui-datepicker-next:hover{left:1px;right:auto}.ui-datepicker-rtl .ui-datepicker-buttonpane{clear:right}.ui-datepicker-rtl .ui-datepicker-buttonpane button{float:left}.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,.ui-datepicker-rtl .ui-datepicker-group{float:right}.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header{border-right-width:0;border-left-width:1px}.ui-dialog{overflow:hidden;position:absolute;top:0;left:0;padding:.2em;outline:0}.ui-dialog .ui-dialog-titlebar{padding:.4em 1em;position:relative}.ui-dialog .ui-dialog-title{float:left;margin:.1em 0;white-space:nowrap;width:90%;overflow:hidden;text-overflow:ellipsis}.ui-dialog .ui-dialog-titlebar-close{position:absolute;right:.3em;top:50%;width:20px;margin:-10px 0 0 0;padding:1px;height:20px}.ui-dialog .ui-dialog-content{position:relative;border:0;padding:.5em 1em;background:none;overflow:auto}.ui-dialog .ui-dialog-buttonpane{text-align:left;border-width:1px 0 0 0;background-image:none;margin-top:.5em;padding:.3em 1em .5em .4em}.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset{float:right}.ui-dialog .ui-dialog-buttonpane button{margin:.5em .4em .5em 0;cursor:pointer}.ui-dialog .ui-resizable-se{width:12px;height:12px;right:-5px;bottom:-5px;background-position:16px 16px}.ui-draggable .ui-dialog-titlebar{cursor:move}.ui-draggable-handle{-ms-touch-action:none;touch-action:none}.ui-menu{list-style:none;padding:0;margin:0;display:block;outline:none}.ui-menu .ui-menu{position:absolute}.ui-menu .ui-menu-item{position:relative;margin:0;padding:3px 1em 3px .4em;cursor:pointer;min-height:0;list-style-image:url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7")}.ui-menu .ui-menu-divider{margin:5px 0;height:0;font-size:0;line-height:0;border-width:1px 0 0 0}.ui-menu .ui-state-focus,.ui-menu .ui-state-active{margin:-1px}.ui-menu-icons{position:relative}.ui-menu-icons .ui-menu-item{padding-left:2em}.ui-menu .ui-icon{position:absolute;top:0;bottom:0;left:.2em;margin:auto 0}.ui-menu .ui-menu-icon{left:auto;right:0}.ui-progressbar{height:2em;text-align:left;overflow:hidden}.ui-progressbar .ui-progressbar-value{margin:-1px;height:100%}.ui-progressbar .ui-progressbar-overlay{background:url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==");height:100%;filter:alpha(opacity=25);opacity:.25}.ui-progressbar-indeterminate .ui-progressbar-value{background-image:none}.ui-resizable{position:relative}.ui-resizable-handle{position:absolute;font-size:.1px;display:block;-ms-touch-action:none;touch-action:none}.ui-resizable-disabled .ui-resizable-handle,.ui-resizable-autohide .ui-resizable-handle{display:none}.ui-resizable-n{cursor:n-resize;height:7px;width:100%;top:-5px;left:0}.ui-resizable-s{cursor:s-resize;height:7px;width:100%;bottom:-5px;left:0}.ui-resizable-e{cursor:e-resize;width:7px;right:-5px;top:0;height:100%}.ui-resizable-w{cursor:w-resize;width:7px;left:-5px;top:0;height:100%}.ui-resizable-se{cursor:se-resize;width:12px;height:12px;right:1px;bottom:1px}.ui-resizable-sw{cursor:sw-resize;width:9px;height:9px;left:-5px;bottom:-5px}.ui-resizable-nw{cursor:nw-resize;width:9px;height:9px;left:-5px;top:-5px}.ui-resizable-ne{cursor:ne-resize;width:9px;height:9px;right:-5px;top:-5px}.ui-selectable{-ms-touch-action:none;touch-action:none}.ui-selectable-helper{position:absolute;z-index:100;border:1px dotted #000}.ui-selectmenu-menu{padding:0;margin:0;position:absolute;top:0;left:0;display:none}.ui-selectmenu-menu .ui-menu{overflow:auto;overflow-x:hidden;padding-bottom:1px}.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup{font-size:1em;font-weight:bold;line-height:1.5;padding:2px .4em;margin:.5em 0 0 0;height:auto;border:0}.ui-selectmenu-open{display:block}.ui-selectmenu-button{display:inline-block;overflow:hidden;position:relative;text-decoration:none;cursor:pointer}.ui-selectmenu-button span.ui-icon{right:.5em;left:auto;margin-top:-8px;position:absolute;top:50%}.ui-selectmenu-button span.ui-selectmenu-text{text-align:left;padding:.4em 2.1em .4em 1em;display:block;line-height:1.4;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.ui-slider{position:relative;text-align:left}.ui-slider .ui-slider-handle{position:absolute;z-index:2;width:1.2em;height:1.2em;cursor:default;-ms-touch-action:none;touch-action:none}.ui-slider .ui-slider-range{position:absolute;z-index:1;font-size:.7em;display:block;border:0;background-position:0 0}.ui-slider.ui-state-disabled .ui-slider-handle,.ui-slider.ui-state-disabled .ui-slider-range{filter:inherit}.ui-slider-horizontal{height:.8em}.ui-slider-horizontal .ui-slider-handle{top:-0.3em;margin-left:-0.6em}.ui-slider-horizontal .ui-slider-range{top:0;height:100%}.ui-slider-horizontal .ui-slider-range-min{left:0}.ui-slider-horizontal .ui-slider-range-max{right:0}.ui-slider-vertical{width:.8em;height:100px}.ui-slider-vertical .ui-slider-handle{left:-0.3em;margin-left:0;margin-bottom:-0.6em}.ui-slider-vertical .ui-slider-range{left:0;width:100%}.ui-slider-vertical .ui-slider-range-min{bottom:0}.ui-slider-vertical .ui-slider-range-max{top:0}.ui-sortable-handle{-ms-touch-action:none;touch-action:none}.ui-spinner{position:relative;display:inline-block;overflow:hidden;padding:0;vertical-align:middle}.ui-spinner-input{border:none;background:none;color:inherit;padding:0;margin:.2em 0;vertical-align:middle;margin-left:.4em;margin-right:22px}.ui-spinner-button{width:16px;height:50%;font-size:.5em;padding:0;margin:0;text-align:center;position:absolute;cursor:default;display:block;overflow:hidden;right:0}.ui-spinner a.ui-spinner-button{border-top:none;border-bottom:none;border-right:none}.ui-spinner .ui-icon{position:absolute;margin-top:-8px;top:50%;left:0}.ui-spinner-up{top:0}.ui-spinner-down{bottom:0}.ui-spinner .ui-icon-triangle-1-s{background-position:-65px -16px}.ui-tabs{position:relative;padding:.2em}.ui-tabs .ui-tabs-nav{margin:0;padding:.2em .2em 0}.ui-tabs .ui-tabs-nav li{list-style:none;float:left;position:relative;top:0;margin:1px .2em 0 0;border-bottom-width:0;padding:0;white-space:nowrap}.ui-tabs .ui-tabs-nav .ui-tabs-anchor{float:left;padding:.5em 1em;text-decoration:none}.ui-tabs .ui-tabs-nav li.ui-tabs-active{margin-bottom:-1px;padding-bottom:1px}.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor{cursor:text}.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor{cursor:pointer}.ui-tabs .ui-tabs-panel{display:block;border-width:0;padding:1em 1.4em;background:none}.ui-tooltip{padding:8px;position:absolute;z-index:9999;max-width:300px;-webkit-box-shadow:0 0 5px #aaa;box-shadow:0 0 5px #aaa}body .ui-tooltip{border-width:2px}.ui-widget{font-family:Trebuchet MS,Tahoma,Verdana,Arial,sans-serif;font-size:1.1em}.ui-widget .ui-widget{font-size:1em}.ui-widget input,.ui-widget select,.ui-widget textarea,.ui-widget button{font-family:Trebuchet MS,Tahoma,Verdana,Arial,sans-serif;font-size:1em}.ui-widget-content{border:1px solid #ddd;background:#eee url(images/ui-bg_highlight-soft_100_eeeeee_1x100_a000402dda6a91d023350f113604c09b.png) 50% top repeat-x;color:#333}.ui-widget-content a{color:#333}.ui-widget-header{border:1px solid #e78f08;background:#f6a828 url(images/ui-bg_gloss-wave_35_f6a828_500x100_e8ffc200d8522cb3f314ef7313a18f5a.png) 50% 50% repeat-x;color:#fff;font-weight:bold}.ui-widget-header a{color:#fff}.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default{border:1px solid #ccc;background:#f6f6f6 url(images/ui-bg_glass_100_f6f6f6_1x400_54064d41a49fe243986fecfc9ec046e7.png) 50% 50% repeat-x;font-weight:bold;color:#1c94c4}.ui-state-default a,.ui-state-default a:link,.ui-state-default a:visited{color:#1c94c4;text-decoration:none}.ui-state-hover,.ui-widget-content .ui-state-hover,.ui-widget-header .ui-state-hover,.ui-state-focus,.ui-widget-content .ui-state-focus,.ui-widget-header .ui-state-focus{border:1px solid #fbcb09;background:#fdf5ce url(images/ui-bg_glass_100_fdf5ce_1x400_332ec194bd7357cb91329af979e396ae.png) 50% 50% repeat-x;font-weight:bold;color:#c77405}.ui-state-hover a,.ui-state-hover a:hover,.ui-state-hover a:link,.ui-state-hover a:visited,.ui-state-focus a,.ui-state-focus a:hover,.ui-state-focus a:link,.ui-state-focus a:visited{color:#c77405;text-decoration:none}.ui-state-active,.ui-widget-content .ui-state-active,.ui-widget-header .ui-state-active{border:1px solid #fbd850;background:#fff url(images/ui-bg_glass_65_ffffff_1x400_f480b208e508b20d5b652898d489dc43.png) 50% 50% repeat-x;font-weight:bold;color:#eb8f00}.ui-state-active a,.ui-state-active a:link,.ui-state-active a:visited{color:#eb8f00;text-decoration:none}.ui-state-highlight,.ui-widget-content .ui-state-highlight,.ui-widget-header .ui-state-highlight{border:1px solid #fed22f;background:#ffe45c url(images/ui-bg_highlight-soft_75_ffe45c_1x100_9a8f7e2a56ba13b2501705f95a24eb84.png) 50% top repeat-x;color:#363636}.ui-state-highlight a,.ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a{color:#363636}.ui-state-error,.ui-widget-content .ui-state-error,.ui-widget-header .ui-state-error{border:1px solid #cd0a0a;background:#b81900 url(images/ui-bg_diagonals-thick_18_b81900_40x40_592779e1e4a8aa19fe709b34050d3142.png) 50% 50% repeat;color:#fff}.ui-state-error a,.ui-widget-content .ui-state-error a,.ui-widget-header .ui-state-error a{color:#fff}.ui-state-error-text,.ui-widget-content .ui-state-error-text,.ui-widget-header .ui-state-error-text{color:#fff}.ui-priority-primary,.ui-widget-content .ui-priority-primary,.ui-widget-header .ui-priority-primary{font-weight:bold}.ui-priority-secondary,.ui-widget-content .ui-priority-secondary,.ui-widget-header .ui-priority-secondary{opacity:.7;filter:Alpha(Opacity=70);font-weight:normal}.ui-state-disabled,.ui-widget-content .ui-state-disabled,.ui-widget-header .ui-state-disabled{opacity:.35;filter:Alpha(Opacity=35);background-image:none}.ui-state-disabled .ui-icon{filter:Alpha(Opacity=35)}.ui-icon{width:16px;height:16px}.ui-icon,.ui-widget-content .ui-icon{background-image:url(images/ui-icons_222222_256x240_4c27b34156b7a3776f31cc456ca01c10.png)}.ui-widget-header .ui-icon{background-image:url(images/ui-icons_ffffff_256x240_a19fe1b2d726e920c12e43a65df9039a.png)}.ui-state-default .ui-icon{background-image:url(images/ui-icons_ef8c08_256x240_772a64d6df4b93d230e9b38e1ab7522a.png)}.ui-state-hover .ui-icon,.ui-state-focus .ui-icon{background-image:url(images/ui-icons_ef8c08_256x240_772a64d6df4b93d230e9b38e1ab7522a.png)}.ui-state-active .ui-icon{background-image:url(images/ui-icons_ef8c08_256x240_772a64d6df4b93d230e9b38e1ab7522a.png)}.ui-state-highlight .ui-icon{background-image:url(images/ui-icons_228ef1_256x240_2f257489d9600ddf56d195a179ebc9df.png)}.ui-state-error .ui-icon,.ui-state-error-text .ui-icon{background-image:url(images/ui-icons_ffd27a_256x240_6686d21b904e18b100210169bb1c04ad.png)}.ui-icon-blank{background-position:16px 16px}.ui-icon-carat-1-n{background-position:0 0}.ui-icon-carat-1-ne{background-position:-16px 0}.ui-icon-carat-1-e{background-position:-32px 0}.ui-icon-carat-1-se{background-position:-48px 0}.ui-icon-carat-1-s{background-position:-64px 0}.ui-icon-carat-1-sw{background-position:-80px 0}.ui-icon-carat-1-w{background-position:-96px 0}.ui-icon-carat-1-nw{background-position:-112px 0}.ui-icon-carat-2-n-s{background-position:-128px 0}.ui-icon-carat-2-e-w{background-position:-144px 0}.ui-icon-triangle-1-n{background-position:0 -16px}.ui-icon-triangle-1-ne{background-position:-16px -16px}.ui-icon-triangle-1-e{background-position:-32px -16px}.ui-icon-triangle-1-se{background-position:-48px -16px}.ui-icon-triangle-1-s{background-position:-64px -16px}.ui-icon-triangle-1-sw{background-position:-80px -16px}.ui-icon-triangle-1-w{background-position:-96px -16px}.ui-icon-triangle-1-nw{background-position:-112px -16px}.ui-icon-triangle-2-n-s{background-position:-128px -16px}.ui-icon-triangle-2-e-w{background-position:-144px -16px}.ui-icon-arrow-1-n{background-position:0 -32px}.ui-icon-arrow-1-ne{background-position:-16px -32px}.ui-icon-arrow-1-e{background-position:-32px -32px}.ui-icon-arrow-1-se{background-position:-48px -32px}.ui-icon-arrow-1-s{background-position:-64px -32px}.ui-icon-arrow-1-sw{background-position:-80px -32px}.ui-icon-arrow-1-w{background-position:-96px -32px}.ui-icon-arrow-1-nw{background-position:-112px -32px}.ui-icon-arrow-2-n-s{background-position:-128px -32px}.ui-icon-arrow-2-ne-sw{background-position:-144px -32px}.ui-icon-arrow-2-e-w{background-position:-160px -32px}.ui-icon-arrow-2-se-nw{background-position:-176px -32px}.ui-icon-arrowstop-1-n{background-position:-192px -32px}.ui-icon-arrowstop-1-e{background-position:-208px -32px}.ui-icon-arrowstop-1-s{background-position:-224px -32px}.ui-icon-arrowstop-1-w{background-position:-240px -32px}.ui-icon-arrowthick-1-n{background-position:0 -48px}.ui-icon-arrowthick-1-ne{background-position:-16px -48px}.ui-icon-arrowthick-1-e{background-position:-32px -48px}.ui-icon-arrowthick-1-se{background-position:-48px -48px}.ui-icon-arrowthick-1-s{background-position:-64px -48px}.ui-icon-arrowthick-1-sw{background-position:-80px -48px}.ui-icon-arrowthick-1-w{background-position:-96px -48px}.ui-icon-arrowthick-1-nw{background-position:-112px -48px}.ui-icon-arrowthick-2-n-s{background-position:-128px -48px}.ui-icon-arrowthick-2-ne-sw{background-position:-144px -48px}.ui-icon-arrowthick-2-e-w{background-position:-160px -48px}.ui-icon-arrowthick-2-se-nw{background-position:-176px -48px}.ui-icon-arrowthickstop-1-n{background-position:-192px -48px}.ui-icon-arrowthickstop-1-e{background-position:-208px -48px}.ui-icon-arrowthickstop-1-s{background-position:-224px -48px}.ui-icon-arrowthickstop-1-w{background-position:-240px -48px}.ui-icon-arrowreturnthick-1-w{background-position:0 -64px}.ui-icon-arrowreturnthick-1-n{background-position:-16px -64px}.ui-icon-arrowreturnthick-1-e{background-position:-32px -64px}.ui-icon-arrowreturnthick-1-s{background-position:-48px -64px}.ui-icon-arrowreturn-1-w{background-position:-64px -64px}.ui-icon-arrowreturn-1-n{background-position:-80px -64px}.ui-icon-arrowreturn-1-e{background-position:-96px -64px}.ui-icon-arrowreturn-1-s{background-position:-112px -64px}.ui-icon-arrowrefresh-1-w{background-position:-128px -64px}.ui-icon-arrowrefresh-1-n{background-position:-144px -64px}.ui-icon-arrowrefresh-1-e{background-position:-160px -64px}.ui-icon-arrowrefresh-1-s{background-position:-176px -64px}.ui-icon-arrow-4{background-position:0 -80px}.ui-icon-arrow-4-diag{background-position:-16px -80px}.ui-icon-extlink{background-position:-32px -80px}.ui-icon-newwin{background-position:-48px -80px}.ui-icon-refresh{background-position:-64px -80px}.ui-icon-shuffle{background-position:-80px -80px}.ui-icon-transfer-e-w{background-position:-96px -80px}.ui-icon-transferthick-e-w{background-position:-112px -80px}.ui-icon-folder-collapsed{background-position:0 -96px}.ui-icon-folder-open{background-position:-16px -96px}.ui-icon-document{background-position:-32px -96px}.ui-icon-document-b{background-position:-48px -96px}.ui-icon-note{background-position:-64px -96px}.ui-icon-mail-closed{background-position:-80px -96px}.ui-icon-mail-open{background-position:-96px -96px}.ui-icon-suitcase{background-position:-112px -96px}.ui-icon-comment{background-position:-128px -96px}.ui-icon-person{background-position:-144px -96px}.ui-icon-print{background-position:-160px -96px}.ui-icon-trash{background-position:-176px -96px}.ui-icon-locked{background-position:-192px -96px}.ui-icon-unlocked{background-position:-208px -96px}.ui-icon-bookmark{background-position:-224px -96px}.ui-icon-tag{background-position:-240px -96px}.ui-icon-home{background-position:0 -112px}.ui-icon-flag{background-position:-16px -112px}.ui-icon-calendar{background-position:-32px -112px}.ui-icon-cart{background-position:-48px -112px}.ui-icon-pencil{background-position:-64px -112px}.ui-icon-clock{background-position:-80px -112px}.ui-icon-disk{background-position:-96px -112px}.ui-icon-calculator{background-position:-112px -112px}.ui-icon-zoomin{background-position:-128px -112px}.ui-icon-zoomout{background-position:-144px -112px}.ui-icon-search{background-position:-160px -112px}.ui-icon-wrench{background-position:-176px -112px}.ui-icon-gear{background-position:-192px -112px}.ui-icon-heart{background-position:-208px -112px}.ui-icon-star{background-position:-224px -112px}.ui-icon-link{background-position:-240px -112px}.ui-icon-cancel{background-position:0 -128px}.ui-icon-plus{background-position:-16px -128px}.ui-icon-plusthick{background-position:-32px -128px}.ui-icon-minus{background-position:-48px -128px}.ui-icon-minusthick{background-position:-64px -128px}.ui-icon-close{background-position:-80px -128px}.ui-icon-closethick{background-position:-96px -128px}.ui-icon-key{background-position:-112px -128px}.ui-icon-lightbulb{background-position:-128px -128px}.ui-icon-scissors{background-position:-144px -128px}.ui-icon-clipboard{background-position:-160px -128px}.ui-icon-copy{background-position:-176px -128px}.ui-icon-contact{background-position:-192px -128px}.ui-icon-image{background-position:-208px -128px}.ui-icon-video{background-position:-224px -128px}.ui-icon-script{background-position:-240px -128px}.ui-icon-alert{background-position:0 -144px}.ui-icon-info{background-position:-16px -144px}.ui-icon-notice{background-position:-32px -144px}.ui-icon-help{background-position:-48px -144px}.ui-icon-check{background-position:-64px -144px}.ui-icon-bullet{background-position:-80px -144px}.ui-icon-radio-on{background-position:-96px -144px}.ui-icon-radio-off{background-position:-112px -144px}.ui-icon-pin-w{background-position:-128px -144px}.ui-icon-pin-s{background-position:-144px -144px}.ui-icon-play{background-position:0 -160px}.ui-icon-pause{background-position:-16px -160px}.ui-icon-seek-next{background-position:-32px -160px}.ui-icon-seek-prev{background-position:-48px -160px}.ui-icon-seek-end{background-position:-64px -160px}.ui-icon-seek-start{background-position:-80px -160px}.ui-icon-seek-first{background-position:-80px -160px}.ui-icon-stop{background-position:-96px -160px}.ui-icon-eject{background-position:-112px -160px}.ui-icon-volume-off{background-position:-128px -160px}.ui-icon-volume-on{background-position:-144px -160px}.ui-icon-power{background-position:0 -176px}.ui-icon-signal-diag{background-position:-16px -176px}.ui-icon-signal{background-position:-32px -176px}.ui-icon-battery-0{background-position:-48px -176px}.ui-icon-battery-1{background-position:-64px -176px}.ui-icon-battery-2{background-position:-80px -176px}.ui-icon-battery-3{background-position:-96px -176px}.ui-icon-circle-plus{background-position:0 -192px}.ui-icon-circle-minus{background-position:-16px -192px}.ui-icon-circle-close{background-position:-32px -192px}.ui-icon-circle-triangle-e{background-position:-48px -192px}.ui-icon-circle-triangle-s{background-position:-64px -192px}.ui-icon-circle-triangle-w{background-position:-80px -192px}.ui-icon-circle-triangle-n{background-position:-96px -192px}.ui-icon-circle-arrow-e{background-position:-112px -192px}.ui-icon-circle-arrow-s{background-position:-128px -192px}.ui-icon-circle-arrow-w{background-position:-144px -192px}.ui-icon-circle-arrow-n{background-position:-160px -192px}.ui-icon-circle-zoomin{background-position:-176px -192px}.ui-icon-circle-zoomout{background-position:-192px -192px}.ui-icon-circle-check{background-position:-208px -192px}.ui-icon-circlesmall-plus{background-position:0 -208px}.ui-icon-circlesmall-minus{background-position:-16px -208px}.ui-icon-circlesmall-close{background-position:-32px -208px}.ui-icon-squaresmall-plus{background-position:-48px -208px}.ui-icon-squaresmall-minus{background-position:-64px -208px}.ui-icon-squaresmall-close{background-position:-80px -208px}.ui-icon-grip-dotted-vertical{background-position:0 -224px}.ui-icon-grip-dotted-horizontal{background-position:-16px -224px}.ui-icon-grip-solid-vertical{background-position:-32px -224px}.ui-icon-grip-solid-horizontal{background-position:-48px -224px}.ui-icon-gripsmall-diagonal-se{background-position:-64px -224px}.ui-icon-grip-diagonal-se{background-position:-80px -224px}.ui-corner-all,.ui-corner-top,.ui-corner-left,.ui-corner-tl{border-top-left-radius:4px}.ui-corner-all,.ui-corner-top,.ui-corner-right,.ui-corner-tr{border-top-right-radius:4px}.ui-corner-all,.ui-corner-bottom,.ui-corner-left,.ui-corner-bl{border-bottom-left-radius:4px}.ui-corner-all,.ui-corner-bottom,.ui-corner-right,.ui-corner-br{border-bottom-right-radius:4px}.ui-widget-overlay{background:#666 url(images/ui-bg_diagonals-thick_20_666666_40x40_ad50c108697ff83dd558748e1c9ea7f8.png) 50% 50% repeat;opacity:.5;filter:Alpha(Opacity=50)}.ui-widget-shadow{margin:-5px 0 0 -5px;padding:5px;background:#000 url(images/ui-bg_flat_10_000000_40x100_70838ab03f80181fa093b46a5fbadffd.png) 50% 50% repeat-x;opacity:.2;filter:Alpha(Opacity=20);border-radius:5px}@font-face{font-family:Amazon-Ember;src:url(fonts/AmazonEmber_Rg_aa2c038a59a052c27320e0e6a7d95eb2.woff) format("woff");font-weight:normal}@font-face{font-family:Amazon-Ember;src:url(fonts/AmazonEmber_Bd_ec3ba4f621d048f74d82d7a1a9a1ed6f.woff) format("woff");font-weight:bold}@font-face{font-family:Amazon-Ember;src:url(fonts/AmazonEmber_Lt_10e2c707d7b9b67785b031faf0e951e8.woff) format("woff");font-weight:300}@font-face{font-family:Amazon-Ember;src:url(fonts/AmazonEmber_Md_c12961ead0254db82f632722dd059cf4.woff) format("woff");font-weight:500}@font-face{font-family:Office-Code-Pro;src:url(fonts/OfficeCodePro-Regular_568927fbb1f39b727ae03f4658933bca.woff) format("woff")}[class^=icon-],[class*=" icon-"]{font-size:16px;vertical-align:sub}.wd-color-class-a2{color:#e0e0e0}.wd-color-class-a3{color:#b1b3b5}.wd-color-class-a4{color:#808184}.wd-color-class-d1{color:#1b8de2}.wd-text-b10,.people-entry .comment-count-badge{font-family:Amazon-Ember;font-size:10px;font-weight:bold}.wd-text-b12,#search-menu-modal .body .option-header,.search-result,#profile-div #profile-account-title,#profile-title-bar,#admin-title-bar,#analytics-title-bar,#generic-title-bar,#admin-wd-title-bar,.share-link-modal .settings-body .setting-name,.share-link-modal .link-access-level .access-legend{font-family:Amazon-Ember;font-size:13px;font-weight:bold}.wd-text-b14,#notification .ballon .title,.preview-btn{font-family:Amazon-Ember;font-size:14px;font-weight:bold}.wd-text-b16,.share-link-modal .modal-header .modal-title{font-family:Amazon-Ember;font-size:16px;font-weight:bold}.wd-text-r14,.search .search-text::placeholder,.search .search-text,.main-menu-text,.profile-pic.profile-pic-small,.profile-pic,#profile-div .profile-property-key,did-you-know-message,h2.document-error,.tour-text,.tour-title,.share-link-modal .settings-body input,.modal-body h3,.modal-header h3,.modal-header,.feedback-input-container .notification-contributors,.feedback-input-container .private-section{font-family:Amazon-Ember;font-size:14px;font-weight:normal}.wd-text-r12,.rainier-modal-header .subtitle,#notification .ballon .footer,#notification .ballon,.info-box,.people-entry,.person-entry-permission-view,#admin-div .admin-description,#admin-div .admin-section-header,#admin-div .admin-section-body,#admin-div .admin-section,#search-menu-modal .footer button,#search-menu-modal .body div.start-date label,#search-menu-modal .body div.end-date label,#search-menu-modal .body .option-label,.breadcrumb-item,.menu-text-disabled,.menu-text,.menu-bar,.tooltip-inner,.popover-content,select,input[type=file],#analytics-div .activity-aux-info,#analytics-div .analytics-section,#analytics-div .filter-button .close-icon,#analytics-div .results-for-text,#profile-div .logout-link,#profile-div .profile-account-auth-preferences,#profile-div .profile-time-zone,#profile-div .profile-preferred-language,#profile-div .profile-language-key,#profile-div .profile-timezone-key,#profile-div .profile-storage-key,#profile-div .admin-open-control-panel,#profile-div .admin-title,#profile-div .profile-change-password,#profile-div .profile-password-key,#profile-div .profile-email-key,#profile-div .profile-user-sku-upgrade-account,#profile-div .profile-user-sku,#profile-div .profile-role,#profile-div .profile-sitename,#profile-div .profile-username,#profile-div .profile-email,#profile-div .profile-fullname,#profile-div .upload-photo-button,.checkin-modal textarea,.filelist .col-task-actions .dropdown-button,#browse-sort .th,.admin-storage-modal .storage-limit-size,.admin .list-group,.share-link-modal .modal-footer input#share-link,.share-link-modal .access-level-detail,.share-modal .timeinput span input[type=text],.share-modal .timeinput,.share-modal input.chars-remaining,.share-modal .non-contributor-message,.share-modal .message-area,.share-modal .owner-role,.share-modal .check-box label,.share-modal .deadline-box,.share-modal .share-link-option,.share-modal .feedback-option,.share-modal .personal-message,.share-modal .right-button .role-text,.share-modal .right-button,.share-modal #linkList .muted,.share-modal input[type=text],.email-list .ellipsis,.email-list .email .contributorLabel,.email-list .email .notContributorLabel,.modal-footer .btn,.modal-body,.feedback-input-container .cancel-button,.feedback-input-container .submit-button,.feedback-input-container textarea,.people-entry .text .muted,.group-info,.filter-text,.sidebar-title-bar,.sidebar-page-title-container .text-wrapper,#feedback-container .version-header-container,#feedback-container .attribute-marker .attribute-text,#feedback-container .attribute-marker .attribute-icon,#feedback-container .feedback-submit,#feedback-container .leave-overall-comment-container,#feedback-container .check-out-doc-feedback-limitation,#feedback-filter-menu .checkbox-group-header,#feedback-filter-menu,.people-panel-buttons .send-message-text,.people-panel-buttons,.request-access-container .cancel-button,.request-access-container .submit-button,.request-access-container textarea,table.ui-datepicker-calendar,.ui-datepicker th,.ui-datepicker td,.btn,.btn:visited,.recovery-modal input[type=text],.dropdown-menu li>a,.dropdown-menu li>label,#security .sidebar-margin,.wd-button-white,.wd-button-grey,.wd-button-blue,.wd-blue-link{font-family:Amazon-Ember;font-size:13px;font-weight:normal}.wd-text-r9,#profile-div .storage_used_text,.file-count{font-family:Amazon-Ember;font-size:10px;font-weight:normal}.wd-text-l14,.main-menu-text-unbold,.profile-name{font-family:Amazon-Ember;font-size:14px;font-weight:300}.wd-text-l12{font-family:Amazon-Ember;font-size:13px;font-weight:300}.wd-text-l18,.request-file-container .already-request-message,.request-file-container .request-message{font-family:Amazon-Ember;font-size:18px;font-weight:300}.wd-text-m12{font-family:Amazon-Ember;font-size:13px;font-weight:500}.wd-text-m14{font-family:Amazon-Ember;font-size:14px;font-weight:500}.wd-text-o12{font-family:Office-Code-Pro;font-size:13px}.arrow-up,*[uib-dropdown] *[uib-dropdown-toggle][aria-expanded=true] .dropdown-arrow{width:0;height:0;border-left:5px solid rgba(0,0,0,0);border-right:5px solid rgba(0,0,0,0);border-bottom:5px solid #808184}.arrow-down,*[uib-dropdown] *[uib-dropdown-toggle][aria-expanded=false] .dropdown-arrow{width:0;height:0;border-left:5px solid rgba(0,0,0,0);border-right:5px solid rgba(0,0,0,0);border-top:5px solid #808184}.btn.btn-secondary{background-color:#7d7e81}span.no-break-word{white-space:nowrap}.table-rainier{height:100%}.table-rainier .header-row{color:#777984;background:#fafafa;font-size:13px;-webkit-box-shadow:1px 0px 1px #e6e4e4,-1px 0px 1px 0px #e6e4e4;-moz-box-shadow:1px 0px 1px #e6e4e4,-1px 0px 1px 0px #e6e4e4;box-shadow:1px 0px 1px #e6e4e4,-1px 0px 1px 0px #e6e4e4}.table-rainier .col-icon{margin-left:5px;vertical-align:top}.table-rainier .col{padding:10px 0px;display:inline-block;width:30%;white-space:nowrap;text-overflow:ellipsis}.table-rainier .col:first-child{padding-left:10px}.table-rainier .no-data-section{text-align:center}.table-rainier .table-body,.table-rainier .no-data-section{color:#404041;margin:0px;background-color:#fff;-webkit-box-shadow:1px -1px 1px #e6e4e4,-1px 1px 1px #e6e4e4;-moz-box-shadow:1px -1px 1px #e6e4e4,-1px 1px 1px #e6e4e4;box-shadow:1px -1px 1px #e6e4e4,-1px 1px 1px #e6e4e4}.table-rainier .table-row{display:block;position:relative;-webkit-box-shadow:inset 0px -1px #e0e0e0;-moz-box-shadow:inset 0px -1px #e0e0e0;box-shadow:inset 0px -1px #e0e0e0}.wd-blue-link{color:#1b8de2}.wd-blue-link:hover{color:#0079da}.wd-blue-link:active{color:#0079da}.wd-blue-link:focus{color:#0079da}.wd-blue-link[disabled],.wd-blue-link.disabled-link{color:#e0e0e0;cursor:not-allowed}.wd-button-blue{display:inline-block;color:#fff;background-color:#1b8de2;padding:6px 10px 4px 10px;border:1px solid #0d83db;border-radius:2px;line-height:normal}.wd-button-blue:hover,.wd-button-blue:focus{background-color:#0d83db}.wd-button-blue:active{background-color:#0d83db}.wd-button-blue:focus{outline:0}.wd-button-blue[disabled],.wd-button-blue.disabled-button{color:#e0e0e0;background-color:#f6f6f7;border:1px solid #e0e0e0;cursor:not-allowed}.wd-button-blue+.dropdown-menu-right{right:-1px}.wd-button-grey{display:inline-block;color:#404041;background-color:#f6f6f7;padding:6px 10px 4px 10px;border:1px solid #e0e0e0;border-radius:2px;line-height:normal}.wd-button-grey:hover{border:1px solid #b1b3b5}.wd-button-grey:focus{outline:0}.wd-button-grey:active{background-color:#e0e0e0;border:1px solid #b1b3b5}.wd-button-grey[disabled],.wd-button-grey.disabled-button{color:#e0e0e0;background-color:#f6f6f7;border:1px solid #e0e0e0;cursor:not-allowed}.wd-button-grey+.dropdown-menu-right{right:-1px}.wd-button-white{display:inline-block;color:#404041;background-color:#fff;padding:6px 10px 4px 10px;border:1px solid #e0e0e0;border-radius:2px;line-height:normal}.wd-button-white:hover{border:1px solid #b1b3b5}.wd-button-white:focus{outline:0}.wd-button-white:active{background-color:#e0e0e0;border:1px solid #b1b3b5}.wd-button-white[disabled],.wd-button-white.disabled-button{color:#e0e0e0;background-color:#f6f6f7;border:1px solid #e0e0e0;cursor:not-allowed}.wd-button-white+.dropdown-menu-right{right:-1px}.drop-down-arrow{vertical-align:sub;margin-left:10px;font-size:14px}.work-docs-icon-group-3-9x11{width:9px;height:11px;background-position:-52px -6121px}.work-docs-icon-pdf-0e72a3-16x17{width:16px;height:17px;background-position:-641px -6196px}.work-docs-icon-pdf-0e72a3-24x25{width:24px;height:25px;background-position:-674px -6196px}.work-docs-icon-pdf-8ea9c9-16x17{width:16px;height:17px;background-position:-515px -6196px}.work-docs-icon-pdf-8ea9c9-24x25{width:24px;height:25px;background-position:-548px -6196px}.work-docs-icon-pdf-d0d2d3-16x17{width:16px;height:17px;background-position:-137px -6196px}.work-docs-icon-pdf-d0d2d3-24x25{width:24px;height:25px;background-position:-170px -6196px}.work-docs-icon-pdf-ffffff-16x17{width:16px;height:17px;background-position:-11px -6196px}.work-docs-icon-pdf-ffffff-24x25{width:24px;height:25px;background-position:-44px -6196px}.work-docs-icon-pdf-212f3e-16x17{width:16px;height:17px;background-position:-389px -6196px}.work-docs-icon-pdf-212f3e-24x25{width:24px;height:25px;background-position:-422px -6196px}.work-docs-icon-pdf-787982-16x17{width:16px;height:17px;background-position:-263px -6196px}.work-docs-icon-text-0e72a3-24x24{width:24px;height:24px;background-position:-674px -6028px}.work-docs-icon-text-0e72a3-16x16{width:16px;height:16px;background-position:-640px -6028px}.work-docs-icon-text-ffffff-17x22{width:17px;height:22px;background-position:-49px -6030px}.work-docs-icon-text-ffffff-16x16{width:16px;height:16px;background-position:-10px -6028px}.work-docs-icon-text-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -6028px}.work-docs-icon-text-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -6028px}.work-docs-icon-text-787982-24x24{width:24px;height:24px;background-position:-296px -6028px}.work-docs-icon-text-787982-16x16{width:16px;height:16px;background-position:-262px -6028px}.work-docs-icon-text-212f3e-24x24{width:24px;height:24px;background-position:-422px -6028px}.work-docs-icon-text-212f3e-16x16{width:16px;height:16px;background-position:-388px -6028px}.work-docs-icon-text-8ea9c9-17x22{width:17px;height:22px;background-position:-552px -6030px}.work-docs-icon-text-8ea9c9-11x15{width:11px;height:15px;background-position:-516px -6029px}.work-docs-icon-star-empty-8ea9c9-24x24{width:24px;height:24px;background-position:-547px -7740px}.work-docs-icon-star-empty-8ea9c9-16x16{width:16px;height:16px;background-position:-513px -7740px}.work-docs-icon-star-empty-0e72a3-24x24{width:24px;height:24px;background-position:-673px -7740px}.work-docs-icon-star-empty-0e72a3-16x16{width:16px;height:16px;background-position:-639px -7740px}.work-docs-icon-star-empty-ffffff-24x24,#left-sidebar .active .favorites-icon,#left-sidebar li:hover .favorites-icon,.left-sidebar-minimized .ln-favorites:hover .sprite-icon,.left-sidebar-minimized .ln-favorites.active .sprite-icon{width:24px;height:24px;background-position:-44px -7740px}.work-docs-icon-star-empty-ffffff-16x16{width:16px;height:16px;background-position:-10px -7740px}.work-docs-icon-star-empty-d0d2d3-24x24{width:24px;height:24px;background-position:-169px -7740px}.work-docs-icon-star-empty-d0d2d3-16x16{width:16px;height:16px;background-position:-135px -7740px}.work-docs-icon-star-empty-808184-24x24,#left-sidebar .favorites-icon,.left-sidebar-minimized .ln-favorites .sprite-icon{width:24px;height:24px;background-position:-296px -7740px}.work-docs-icon-star-empty-808184-16x16,.work-docs-icon-no-favorite-0e72a3-24x24{width:16px;height:16px;background-position:-262px -7740px}.work-docs-icon-star-empty-212f3e-24x24{width:24px;height:24px;background-position:-422px -7740px}.work-docs-icon-star-empty-212f3e-16x16{width:16px;height:16px;background-position:-388px -7740px}.work-docs-icon-star-8ea9c9-24x24{width:24px;height:24px;background-position:-547px -7708px}.work-docs-icon-star-8ea9c9-16x16{width:16px;height:16px;background-position:-513px -7708px}.work-docs-icon-star-0e72a3-24x24{width:24px;height:24px;background-position:-673px -7708px}.work-docs-icon-star-0e72a3-16x16,.work-docs-icon-favorite-0e72a3-24x24{width:16px;height:16px;background-position:-639px -7708px}.work-docs-icon-star-ffffff-24x24{width:24px;height:24px;background-position:-44px -7708px}.work-docs-icon-star-ffffff-16x16{width:16px;height:16px;background-position:-10px -7708px}.work-docs-icon-star-d0d2d3-24x24{width:24px;height:24px;background-position:-169px -7708px}.work-docs-icon-star-d0d2d3-16x16{width:16px;height:16px;background-position:-135px -7708px}.work-docs-icon-star-808184-24x24{width:24px;height:24px;background-position:-296px -7708px}.work-docs-icon-star-808184-17x16{width:17px;height:16px;background-position:-262px -7708px}.work-docs-icon-star-212f3e-24x24{width:24px;height:24px;background-position:-422px -7708px}.work-docs-icon-star-212f3e-17x16{width:17px;height:16px;background-position:-388px -7708px}.work-docs-icon-private-8ea9c9-24x24{width:24px;height:24px;background-position:-547px -7668px}.work-docs-icon-private-8ea9c9-16x16{width:16px;height:16px;background-position:-513px -7668px}.work-docs-icon-private-0e72a3-24x24{width:24px;height:24px;background-position:-673px -7668px}.work-docs-icon-private-0e72a3-16x16{width:16px;height:16px;background-position:-639px -7668px}.work-docs-icon-private-ffffff-24x24{width:24px;height:24px;background-position:-44px -7668px}.work-docs-icon-private-ffffff-16x16{width:16px;height:16px;background-position:-10px -7668px}.work-docs-icon-private-d0d2d3-24x24{width:24px;height:24px;background-position:-169px -7668px}.work-docs-icon-private-d0d2d3-16x16{width:16px;height:16px;background-position:-135px -7668px}.work-docs-icon-private-808184-24x24{width:24px;height:24px;background-position:-296px -7668px}.work-docs-icon-private-808184-16x16{width:16px;height:16px;background-position:-262px -7668px}.work-docs-icon-private-212f3e-24x24{width:24px;height:24px;background-position:-422px -7668px}.work-docs-icon-private-212f3e-16x16{width:16px;height:16px;background-position:-388px -7668px}.work-docs-icon-request-check-in-0e72a3-24x24{width:24px;height:24px;background-position:-674px -7624px}.work-docs-icon-request-check-in-0e72a3-16x16{width:16px;height:16px;background-position:-640px -7624px}.work-docs-icon-request-check-in-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -7624px}.work-docs-icon-request-check-in-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -7624px}.work-docs-icon-request-check-in-212f3e-24x24{width:24px;height:24px;background-position:-422px -7624px}.work-docs-icon-request-check-in-212f3e-16x16{width:16px;height:16px;background-position:-388px -7624px}.work-docs-icon-request-check-in-808184-24x24{width:24px;height:24px;background-position:-296px -7624px}.work-docs-icon-request-check-in-808184-16x16{width:16px;height:16px;background-position:-262px -7624px}.work-docs-icon-request-check-in-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -7624px}.work-docs-icon-request-check-in-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -7624px}.work-docs-icon-request-check-in-ffffff-24x24{width:24px;height:24px;background-position:-44px -7624px}.work-docs-icon-request-check-in-ffffff-16x16,.action-icon-request-checkin{width:16px;height:16px;background-position:-10px -7624px}.work-docs-icon-discard-check-out-0e72a3-24x24{width:24px;height:24px;background-position:-674px -7582px}.work-docs-icon-discard-check-out-0e72a3-16x16{width:16px;height:16px;background-position:-640px -7582px}.work-docs-icon-discard-check-out-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -7582px}.work-docs-icon-discard-check-out-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -7582px}.work-docs-icon-discard-check-out-212f3e-24x24{width:24px;height:24px;background-position:-422px -7582px}.work-docs-icon-discard-check-out-212f3e-16x16{width:16px;height:16px;background-position:-388px -7582px}.work-docs-icon-discard-check-out-808184-24x24{width:24px;height:24px;background-position:-296px -7582px}.work-docs-icon-discard-check-out-808184-16x16{width:16px;height:16px;background-position:-262px -7582px}.work-docs-icon-discard-check-out-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -7582px}.work-docs-icon-discard-check-out-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -7582px}.work-docs-icon-discard-check-out-ffffff-24x24{width:24px;height:24px;background-position:-44px -7582px}.work-docs-icon-discard-check-out-ffffff-16x16{width:16px;height:16px;background-position:-10px -7582px}.work-docs-icon-check-in-0e72a3-24x24{width:24px;height:24px;background-position:-674px -7540px}.work-docs-icon-check-in-0e72a3-16x16{width:16px;height:16px;background-position:-640px -7540px}.work-docs-icon-check-in-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -7540px}.work-docs-icon-check-in-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -7540px}.work-docs-icon-check-in-212f3e-24x24{width:24px;height:24px;background-position:-422px -7540px}.work-docs-icon-check-in-212f3e-16x16{width:16px;height:16px;background-position:-388px -7540px}.work-docs-icon-check-in-808184-24x24{width:24px;height:24px;background-position:-296px -7540px}.work-docs-icon-check-in-808184-16x16{width:16px;height:16px;background-position:-262px -7540px}.work-docs-icon-check-in-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -7540px}.work-docs-icon-check-in-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -7540px}.work-docs-icon-check-in-ffffff-24x24{width:24px;height:24px;background-position:-44px -7540px}.work-docs-icon-check-in-ffffff-16x16{width:16px;height:16px;background-position:-10px -7540px}.work-docs-icon-check-out-0e72a3-24x24{width:24px;height:24px;background-position:-674px -7498px}.work-docs-icon-check-out-0e72a3-16x16{width:16px;height:16px;background-position:-640px -7498px}.work-docs-icon-check-out-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -7498px}.work-docs-icon-check-out-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -7498px}.work-docs-icon-check-out-212f3e-24x24{width:24px;height:24px;background-position:-422px -7498px}.work-docs-icon-check-out-212f3e-16x16{width:16px;height:16px;background-position:-388px -7498px}.work-docs-icon-check-out-808184-24x24{width:24px;height:24px;background-position:-296px -7498px}.work-docs-icon-check-out-808184-16x16{width:16px;height:16px;background-position:-262px -7498px}.work-docs-icon-check-out-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -7498px}.work-docs-icon-check-out-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -7498px}.work-docs-icon-check-out-ffffff-24x24{width:24px;height:24px;background-position:-44px -7498px}.work-docs-icon-check-out-ffffff-16x16{width:16px;height:16px;background-position:-10px -7498px}.work-docs-icon-help-0e72a3-24x24,.feedback-input-container .question-mark{width:24px;height:24px;background-position:-674px -7372px}.work-docs-icon-help-0e72a3-16x16{width:16px;height:16px;background-position:-640px -7372px}.work-docs-icon-help-8ea9c9-24x24,.feedback-input-container .question-mark:hover{width:24px;height:24px;background-position:-548px -7372px}.work-docs-icon-help-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -7372px}.work-docs-icon-help-212f3e-24x24{width:24px;height:24px;background-position:-422px -7372px}.work-docs-icon-help-212f3e-16x16{width:16px;height:16px;background-position:-388px -7372px}.work-docs-icon-help-808184-24x24{width:24px;height:24px;background-position:-296px -7372px}.work-docs-icon-help-808184-16x16{width:16px;height:16px;background-position:-262px -7372px}.work-docs-icon-help-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -7372px}.work-docs-icon-help-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -7372px}.work-docs-icon-help-ffffff-24x24{width:24px;height:24px;background-position:-44px -7372px}.work-docs-icon-help-ffffff-16x16{width:16px;height:16px;background-position:-10px -7372px}.work-docs-icon-help-solid-0e72a3-24x24{width:24px;height:24px;background-position:-674px -7414px}.work-docs-icon-help-solid-0e72a3-16x16{width:16px;height:16px;background-position:-640px -7414px}.work-docs-icon-help-solid-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -7414px}.work-docs-icon-help-solid-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -7414px}.work-docs-icon-help-solid-212f3e-24x24{width:24px;height:24px;background-position:-422px -7414px}.work-docs-icon-help-solid-212f3e-16x16{width:16px;height:16px;background-position:-388px -7414px}.work-docs-icon-help-solid-808184-24x24{width:24px;height:24px;background-position:-296px -7414px}.work-docs-icon-help-solid-808184-16x16{width:16px;height:16px;background-position:-262px -7414px}.work-docs-icon-help-solid-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -7414px}.work-docs-icon-help-solid-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -7414px}.work-docs-icon-help-solid-ffffff-24x24{width:24px;height:24px;background-position:-44px -7414px}.work-docs-icon-help-solid-ffffff-16x16{width:16px;height:16px;background-position:-10px -7414px}.work-docs-icon-mention-0e72a3-24x24,.feedback-input-container .at-mention-icon{width:24px;height:24px;background-position:-674px -7456px}.work-docs-icon-mention-0e72a3-16x16{width:16px;height:16px;background-position:-640px -7456px}.work-docs-icon-mention-8ea9c9-24x24,.feedback-input-container .at-mention-icon:hover{width:24px;height:24px;background-position:-548px -7456px}.work-docs-icon-mention-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -7456px}.work-docs-icon-mention-212f3e-24x24{width:24px;height:24px;background-position:-422px -7456px}.work-docs-icon-mention-212f3e-16x16{width:16px;height:16px;background-position:-388px -7456px}.work-docs-icon-mention-808184-24x24{width:24px;height:24px;background-position:-296px -7456px}.work-docs-icon-mention-808184-16x16{width:16px;height:16px;background-position:-262px -7456px}.work-docs-icon-mention-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -7456px}.work-docs-icon-mention-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -7456px}.work-docs-icon-mention-ffffff-24x24{width:24px;height:24px;background-position:-44px -7456px}.work-docs-icon-mention-ffffff-16x16{width:16px;height:16px;background-position:-10px -7456px}.work-docs-icon-decline-feedback-0e72a3-24x24{width:24px;height:24px;background-position:-674px -6574px}.work-docs-icon-decline-feedback-0e72a3-16x16{width:16px;height:16px;background-position:-640px -6574px}.work-docs-icon-decline-feedback-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -6574px}.work-docs-icon-decline-feedback-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -6574px}.work-docs-icon-decline-feedback-212f3e-24x24{width:24px;height:24px;background-position:-422px -6574px}.work-docs-icon-decline-feedback-212f3e-16x16{width:16px;height:16px;background-position:-388px -6574px}.work-docs-icon-decline-feedback-808184-24x24{width:24px;height:24px;background-position:-296px -6574px}.work-docs-icon-decline-feedback-808184-16x16{width:16px;height:16px;background-position:-262px -6574px}.work-docs-icon-decline-feedback-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -6574px}.work-docs-icon-decline-feedback-ffffff-24x24{width:24px;height:24px;background-position:-44px -6574px}.work-docs-icon-decline-feedback-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -6574px}.work-docs-icon-decline-feedback-ffffff-16x16,.action-icon-decline-feedback{width:16px;height:16px;background-position:-10px -6574px}.work-docs-icon-disable-feedback-0e72a3-24x24{width:24px;height:24px;background-position:-674px -7330px}.work-docs-icon-disable-feedback-0e72a3-16x16{width:16px;height:16px;background-position:-640px -7330px}.work-docs-icon-disable-feedback-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -7330px}.work-docs-icon-disable-feedback-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -7330px}.work-docs-icon-disable-feedback-212f3e-24x24{width:24px;height:24px;background-position:-422px -7330px}.work-docs-icon-disable-feedback-212f3e-16x16{width:16px;height:16px;background-position:-388px -7330px}.work-docs-icon-disable-feedback-808184-24x24{width:24px;height:24px;background-position:-296px -7330px}.work-docs-icon-disable-feedback-808184-16x16{width:16px;height:16px;background-position:-262px -7330px}.work-docs-icon-disable-feedback-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -7330px}.work-docs-icon-disable-feedback-ffffff-24x24{width:24px;height:24px;background-position:-44px -7330px}.work-docs-icon-disable-feedback-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -7330px}.work-docs-icon-disable-feedback-ffffff-16x16{width:16px;height:16px;background-position:-10px -7330px}.work-docs-icon-enable-feedback-0e72a3-24x24{width:24px;height:24px;background-position:-674px -7288px}.work-docs-icon-enable-feedback-0e72a3-16x16{width:16px;height:16px;background-position:-640px -7288px}.work-docs-icon-enable-feedback-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -7288px}.work-docs-icon-enable-feedback-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -7288px}.work-docs-icon-enable-feedback-212f3e-24x24{width:24px;height:24px;background-position:-422px -7288px}.work-docs-icon-enable-feedback-212f3e-16x16{width:16px;height:16px;background-position:-388px -7288px}.work-docs-icon-enable-feedback-808184-24x24{width:24px;height:24px;background-position:-296px -7288px}.work-docs-icon-enable-feedback-808184-16x16{width:16px;height:16px;background-position:-262px -7288px}.work-docs-icon-enable-feedback-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -7288px}.work-docs-icon-enable-feedback-ffffff-24x24{width:24px;height:24px;background-position:-44px -7288px}.work-docs-icon-enable-feedback-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -7288px}.work-docs-icon-enable-feedback-ffffff-16x16{width:16px;height:16px;background-position:-10px -7288px}.work-docs-icon-disabled-feedback-alternate-0e72a3-24x24{width:24px;height:24px;background-position:-674px -7246px}.work-docs-icon-disabled-feedback-alternate-0e72a3-16x16{width:16px;height:16px;background-position:-640px -7246px}.work-docs-icon-disabled-feedback-alternate-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -7246px}.work-docs-icon-disabled-feedback-alternate-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -7246px}.work-docs-icon-disabled-feedback-alternate-212f3e-24x24{width:24px;height:24px;background-position:-422px -7246px}.work-docs-icon-disabled-feedback-alternate-212f3e-16x16{width:16px;height:16px;background-position:-388px -7246px}.work-docs-icon-disabled-feedback-alternate-808184-24x24{width:24px;height:24px;background-position:-296px -7246px}.work-docs-icon-disabled-feedback-alternate-808184-16x16{width:16px;height:16px;background-position:-262px -7246px}.work-docs-icon-disabled-feedback-alternate-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -7246px}.work-docs-icon-disabled-feedback-alternate-ffffff-24x24{width:24px;height:24px;background-position:-44px -7246px}.work-docs-icon-disabled-feedback-alternate-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -7246px}.work-docs-icon-disabled-feedback-alternate-ffffff-16x16{width:16px;height:16px;background-position:-10px -7246px}.work-docs-icon-disabled-feedback-0e72a3-24x24{width:24px;height:24px;background-position:-674px -7204px}.work-docs-icon-disabled-feedback-0e72a3-16x16{width:16px;height:16px;background-position:-640px -7204px}.work-docs-icon-disabled-feedback-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -7204px}.work-docs-icon-disabled-feedback-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -7204px}.work-docs-icon-disabled-feedback-212f3e-24x24{width:24px;height:24px;background-position:-422px -7204px}.work-docs-icon-disabled-feedback-212f3e-16x16{width:16px;height:16px;background-position:-388px -7204px}.work-docs-icon-disabled-feedback-808184-24x24{width:24px;height:24px;background-position:-296px -7204px}.work-docs-icon-disabled-feedback-808184-16x16{width:16px;height:16px;background-position:-262px -7204px}.work-docs-icon-disabled-feedback-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -7204px}.work-docs-icon-disabled-feedback-ffffff-24x24{width:24px;height:24px;background-position:-44px -7204px}.work-docs-icon-disabled-feedback-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -7204px}.work-docs-icon-disabled-feedback-ffffff-16x16{width:16px;height:16px;background-position:-10px -7204px}.work-docs-icon-private-feedback-indicator-ffa724-24x24{width:24px;height:24px;background-position:-800px -7162px}.work-docs-icon-private-feedback-indicator-ffa724-16x16{width:16px;height:16px;background-position:-766px -7162px}.work-docs-icon-private-feedback-indicator-0e72a3-24x24{width:24px;height:24px;background-position:-674px -7162px}.work-docs-icon-private-feedback-indicator-0e72a3-16x16{width:16px;height:16px;background-position:-640px -7162px}.work-docs-icon-private-feedback-indicator-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -7162px}.work-docs-icon-private-feedback-indicator-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -7162px}.work-docs-icon-private-feedback-indicator-212f3e-24x24{width:24px;height:24px;background-position:-422px -7162px}.work-docs-icon-private-feedback-indicator-212f3e-16x16{width:16px;height:16px;background-position:-388px -7162px}.work-docs-icon-private-feedback-indicator-808184-24x24{width:24px;height:24px;background-position:-296px -7162px}.work-docs-icon-private-feedback-indicator-808184-16x16{width:16px;height:16px;background-position:-262px -7162px}.work-docs-icon-private-feedback-indicator-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -7162px}.work-docs-icon-private-feedback-indicator-ffffff-24x24{width:24px;height:24px;background-position:-44px -7162px}.work-docs-icon-private-feedback-indicator-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -7162px}.work-docs-icon-private-feedback-indicator-ffffff-16x16{width:16px;height:16px;background-position:-10px -7162px}.work-docs-icon-unlocked-0e72a3-24x24{width:24px;height:24px;background-position:-674px -7120px}.work-docs-icon-unlocked-0e72a3-16x16{width:16px;height:16px;background-position:-640px -7120px}.work-docs-icon-unlocked-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -7120px}.work-docs-icon-unlocked-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -7120px}.work-docs-icon-unlocked-212f3e-24x24{width:24px;height:24px;background-position:-422px -7120px}.work-docs-icon-unlocked-212f3e-16x16{width:16px;height:16px;background-position:-388px -7120px}.work-docs-icon-unlocked-808184-24x24{width:24px;height:24px;background-position:-296px -7120px}.work-docs-icon-unlocked-808184-16x16{width:16px;height:16px;background-position:-262px -7120px}.work-docs-icon-unlocked-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -7120px}.work-docs-icon-unlocked-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -7120px}.work-docs-icon-unlocked-ffffff-24x24{width:24px;height:24px;background-position:-44px -7120px}.work-docs-icon-unlocked-ffffff-16x16,.action-icon-discard-checkout,.action-icon-checkin{width:16px;height:16px;background-position:-10px -7120px}.work-docs-icon-video-alternate-0e72a3-24x24{width:24px;height:24px;background-position:-674px -7078px}.work-docs-icon-video-alternate-0e72a3-16x16{width:16px;height:16px;background-position:-640px -7078px}.work-docs-icon-video-alternate-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -7078px}.work-docs-icon-video-alternate-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -7078px}.work-docs-icon-video-alternate-212f3e-24x24{width:24px;height:24px;background-position:-422px -7078px}.work-docs-icon-video-alternate-212f3e-16x16{width:16px;height:16px;background-position:-388px -7078px}.work-docs-icon-video-alternate-808184-24x24{width:24px;height:24px;background-position:-296px -7078px}.work-docs-icon-video-alternate-808184-16x16{width:16px;height:16px;background-position:-262px -7078px}.work-docs-icon-video-alternate-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -7078px}.work-docs-icon-video-alternate-ffffff-24x24{width:24px;height:24px;background-position:-44px -7078px}.work-docs-icon-video-alternate-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -7078px}.work-docs-icon-video-alternate-ffffff-16x16{width:16px;height:16px;background-position:-10px -7078px}.work-docs-icon-video-0e72a3-24x24{width:24px;height:24px;background-position:-674px -7036px}.work-docs-icon-video-0e72a3-16x16{width:16px;height:16px;background-position:-640px -7036px}.work-docs-icon-video-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -7036px}.work-docs-icon-video-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -7036px}.work-docs-icon-video-212f3e-24x24{width:24px;height:24px;background-position:-422px -7036px}.work-docs-icon-video-212f3e-16x16{width:16px;height:16px;background-position:-388px -7036px}.work-docs-icon-video-808184-24x24{width:24px;height:24px;background-position:-296px -7036px}.work-docs-icon-video-808184-16x16{width:16px;height:16px;background-position:-262px -7036px}.work-docs-icon-video-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -7036px}.work-docs-icon-video-ffffff-24x24{width:24px;height:24px;background-position:-44px -7036px}.work-docs-icon-video-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -7036px}.work-docs-icon-video-ffffff-16x16{width:16px;height:16px;background-position:-10px -7036px}.work-docs-icon-filter-0e72a3-24x24{width:24px;height:24px;background-position:-674px -6994px}.work-docs-icon-filter-0e72a3-16x16,.feedback-filter-icn.active,.feedback-filter-icn:hover{width:16px;height:16px;background-position:-640px -6994px}.work-docs-icon-filter-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -6994px}.work-docs-icon-filter-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -6994px}.work-docs-icon-filter-212f3e-24x24{width:24px;height:24px;background-position:-422px -6994px}.work-docs-icon-filter-212f3e-16x16{width:16px;height:16px;background-position:-388px -6994px}.work-docs-icon-filter-808184-24x24{width:24px;height:24px;background-position:-296px -6994px}.work-docs-icon-filter-808184-16x16{width:16px;height:16px;background-position:-262px -6994px}.work-docs-icon-filter-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -6994px}.work-docs-icon-filter-ffffff-24x24{width:24px;height:24px;background-position:-44px -6994px}.work-docs-icon-filter-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -6994px}.work-docs-icon-filter-ffffff-16x16,.feedback-filter-icn{width:16px;height:16px;background-position:-10px -6994px}.work-docs-icon-add-document-0e72a3-24x24{width:24px;height:24px;background-position:-674px -6952px}.work-docs-icon-add-document-0e72a3-16x16{width:16px;height:16px;background-position:-640px -6952px}.work-docs-icon-add-document-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -6952px}.work-docs-icon-add-document-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -6952px}.work-docs-icon-add-document-212f3e-24x24{width:24px;height:24px;background-position:-422px -6952px}.work-docs-icon-add-document-212f3e-16x16{width:16px;height:16px;background-position:-388px -6952px}.work-docs-icon-add-document-808184-24x24{width:24px;height:24px;background-position:-296px -6952px}.work-docs-icon-add-document-808184-16x16{width:16px;height:16px;background-position:-262px -6952px}.work-docs-icon-add-document-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -6952px}.work-docs-icon-add-document-ffffff-24x24{width:24px;height:24px;background-position:-44px -6952px}.work-docs-icon-add-document-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -6952px}.work-docs-icon-add-document-ffffff-16x16{width:16px;height:16px;background-position:-10px -6952px}.work-docs-icon-download-with-comments-0e72a3-24x24{width:24px;height:24px;background-position:-674px -6910px}.work-docs-icon-download-with-comments-0e72a3-16x16{width:16px;height:16px;background-position:-640px -6910px}.work-docs-icon-download-with-comments-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -6910px}.work-docs-icon-download-with-comments-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -6910px}.work-docs-icon-download-with-comments-212f3e-24x24{width:24px;height:24px;background-position:-422px -6910px}.work-docs-icon-download-with-comments-212f3e-16x16{width:16px;height:16px;background-position:-388px -6910px}.work-docs-icon-download-with-comments-808184-24x24{width:24px;height:24px;background-position:-296px -6910px}.work-docs-icon-download-with-comments-808184-16x16{width:16px;height:16px;background-position:-262px -6910px}.work-docs-icon-download-with-comments-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -6910px}.work-docs-icon-download-with-comments-ffffff-24x24{width:24px;height:24px;background-position:-44px -6910px}.work-docs-icon-download-with-comments-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -6910px}.work-docs-icon-download-with-comments-ffffff-16x16{width:16px;height:16px;background-position:-10px -6910px}.work-docs-icon-remove-me-from-share-alternate-0e72a3-24x24{width:24px;height:24px;background-position:-674px -6868px}.work-docs-icon-remove-me-from-share-alternate-0e72a3-16x16{width:16px;height:16px;background-position:-640px -6868px}.work-docs-icon-remove-me-from-share-alternate-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -6868px}.work-docs-icon-remove-me-from-share-alternate-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -6868px}.work-docs-icon-remove-me-from-share-alternate-212f3e-24x24{width:24px;height:24px;background-position:-422px -6868px}.work-docs-icon-remove-me-from-share-alternate-212f3e-16x16{width:16px;height:16px;background-position:-388px -6868px}.work-docs-icon-remove-me-from-share-alternate-808184-24x24{width:24px;height:24px;background-position:-296px -6868px}.work-docs-icon-remove-me-from-share-alternate-808184-16x16{width:16px;height:16px;background-position:-262px -6868px}.work-docs-icon-remove-me-from-share-alternate-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -6868px}.work-docs-icon-remove-me-from-share-alternate-ffffff-24x24{width:24px;height:24px;background-position:-44px -6868px}.work-docs-icon-remove-me-from-share-alternate-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -6868px}.work-docs-icon-remove-me-from-share-alternate-ffffff-16x16{width:16px;height:16px;background-position:-10px -6868px}.work-docs-icon-remove-me-from-share-0e72a3-24x24{width:24px;height:24px;background-position:-674px -6826px}.work-docs-icon-remove-me-from-share-0e72a3-16x16{width:16px;height:16px;background-position:-640px -6826px}.work-docs-icon-remove-me-from-share-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -6826px}.work-docs-icon-remove-me-from-share-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -6826px}.work-docs-icon-remove-me-from-share-212f3e-24x24{width:24px;height:24px;background-position:-422px -6826px}.work-docs-icon-remove-me-from-share-212f3e-16x16{width:16px;height:16px;background-position:-388px -6826px}.work-docs-icon-remove-me-from-share-808184-24x24{width:24px;height:24px;background-position:-296px -6826px}.work-docs-icon-remove-me-from-share-808184-16x16{width:16px;height:16px;background-position:-262px -6826px}.work-docs-icon-remove-me-from-share-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -6826px}.work-docs-icon-remove-me-from-share-ffffff-24x24{width:24px;height:24px;background-position:-44px -6826px}.work-docs-icon-remove-me-from-share-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -6826px}.work-docs-icon-remove-me-from-share-ffffff-16x16{width:16px;height:16px;background-position:-10px -6826px}.work-docs-icon-transfer-owner-0e72a3-24x24{width:24px;height:24px;background-position:-674px -6784px}.work-docs-icon-transfer-owner-0e72a3-16x16{width:16px;height:16px;background-position:-640px -6784px}.work-docs-icon-transfer-owner-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -6784px}.work-docs-icon-transfer-owner-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -6784px}.work-docs-icon-transfer-owner-212f3e-24x24{width:24px;height:24px;background-position:-422px -6784px}.work-docs-icon-transfer-owner-212f3e-16x16{width:16px;height:16px;background-position:-388px -6784px}.work-docs-icon-transfer-owner-808184-24x24{width:24px;height:24px;background-position:-296px -6784px}.work-docs-icon-transfer-owner-808184-16x16{width:16px;height:16px;background-position:-262px -6784px}.work-docs-icon-transfer-owner-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -6784px}.work-docs-icon-transfer-owner-ffffff-24x24{width:24px;height:24px;background-position:-44px -6784px}.work-docs-icon-transfer-owner-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -6784px}.work-docs-icon-transfer-owner-ffffff-16x16{width:16px;height:16px;background-position:-10px -6784px}.work-docs-icon-sort-0e72a3-24x24{width:24px;height:24px;background-position:-674px -6742px}.work-docs-icon-sort-0e72a3-16x16{width:16px;height:16px;background-position:-640px -6742px}.work-docs-icon-sort-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -6742px}.work-docs-icon-sort-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -6742px}.work-docs-icon-sort-212f3e-24x24{width:24px;height:24px;background-position:-422px -6742px}.work-docs-icon-sort-212f3e-16x16{width:16px;height:16px;background-position:-388px -6742px}.work-docs-icon-sort-808184-24x24{width:24px;height:24px;background-position:-296px -6742px}.work-docs-icon-sort-808184-16x16{width:16px;height:16px;background-position:-262px -6742px}.work-docs-icon-sort-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -6742px}.work-docs-icon-sort-ffffff-24x24{width:24px;height:24px;background-position:-44px -6742px}.work-docs-icon-sort-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -6742px}.work-docs-icon-sort-ffffff-16x16{width:16px;height:16px;background-position:-10px -6742px}.work-docs-icon-download-mobile-0e72a3-24x24{width:24px;height:24px;background-position:-674px -6700px}.work-docs-icon-download-mobile-0e72a3-16x16{width:16px;height:16px;background-position:-640px -6700px}.work-docs-icon-download-mobile-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -6700px}.work-docs-icon-download-mobile-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -6700px}.work-docs-icon-download-mobile-212f3e-24x24{width:24px;height:24px;background-position:-422px -6700px}.work-docs-icon-download-mobile-212f3e-16x16{width:16px;height:16px;background-position:-388px -6700px}.work-docs-icon-download-mobile-808184-24x24,#left-sidebar .download-mobile-app-icon{width:24px;height:24px;background-position:-296px -6700px}.work-docs-icon-download-mobile-808184-16x16{width:16px;height:16px;background-position:-262px -6700px}.work-docs-icon-download-mobile-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -6700px}.work-docs-icon-download-mobile-ffffff-24x24,#left-sidebar .active .download-mobile-app-icon,#left-sidebar li:hover .download-mobile-app-icon{width:24px;height:24px;background-position:-44px -6700px}.work-docs-icon-download-mobile-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -6700px}.work-docs-icon-download-mobile-ffffff-16x16{width:16px;height:16px;background-position:-10px -6700px}.work-docs-icon-download-sync-client-0e72a3-24x24{width:24px;height:24px;background-position:-674px -6658px}.work-docs-icon-download-sync-client-0e72a3-16x16{width:16px;height:16px;background-position:-640px -6658px}.work-docs-icon-download-sync-client-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -6658px}.work-docs-icon-download-sync-client-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -6658px}.work-docs-icon-download-sync-client-212f3e-24x24{width:24px;height:24px;background-position:-422px -6658px}.work-docs-icon-download-sync-client-212f3e-16x16{width:16px;height:16px;background-position:-388px -6658px}.work-docs-icon-download-sync-client-808184-24x24,#left-sidebar .download-sync-app-icon{width:24px;height:24px;background-position:-296px -6658px}.work-docs-icon-download-sync-client-808184-16x16{width:16px;height:16px;background-position:-262px -6658px}.work-docs-icon-download-sync-client-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -6658px}.work-docs-icon-download-sync-client-ffffff-24x24,#left-sidebar .active .download-sync-app-icon,#left-sidebar li:hover .download-sync-app-icon{width:24px;height:24px;background-position:-44px -6658px}.work-docs-icon-download-sync-client-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -6658px}.work-docs-icon-download-sync-client-ffffff-16x16{width:16px;height:16px;background-position:-10px -6658px}.work-docs-icon-admin-0e72a3-24x24{width:24px;height:24px;background-position:-674px -6616px}.work-docs-icon-admin-0e72a3-16x16{width:16px;height:16px;background-position:-640px -6616px}.work-docs-icon-admin-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -6616px}.work-docs-icon-admin-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -6616px}.work-docs-icon-admin-212f3e-24x24{width:24px;height:24px;background-position:-422px -6616px}.work-docs-icon-admin-212f3e-16x16{width:16px;height:16px;background-position:-388px -6616px}.work-docs-icon-admin-808184-24x24,#left-sidebar .administrator-icon,.left-sidebar-minimized .ln-admin .sprite-icon{width:24px;height:24px;background-position:-296px -6616px}.work-docs-icon-admin-808184-16x16{width:16px;height:16px;background-position:-262px -6616px}.work-docs-icon-admin-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -6616px}.work-docs-icon-admin-ffffff-24x24,#left-sidebar .active .administrator-icon,#left-sidebar li:hover .administrator-icon,.left-sidebar-minimized .ln-admin:hover .sprite-icon,.left-sidebar-minimized .ln-admin.active .sprite-icon{width:24px;height:24px;background-position:-44px -6616px}.work-docs-icon-admin-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -6616px}.work-docs-icon-admin-ffffff-16x16{width:16px;height:16px;background-position:-10px -6616px}.work-docs-icon-check-inactive-0e72a3-24x24,input[type=checkbox].wd-blue-checkbox[disabled]+label.wd-blue-checkbox-label{width:24px;height:24px;background-position:-674px -5732px}.work-docs-icon-check-inactive-0e72a3-16x16{width:16px;height:16px;background-position:-640px -5732px}.work-docs-icon-check-inactive-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -5732px}.work-docs-icon-check-inactive-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -5732px}.work-docs-icon-check-inactive-212f3e-24x24{width:24px;height:24px;background-position:-422px -5732px}.work-docs-icon-check-inactive-212f3e-16x16{width:16px;height:16px;background-position:-388px -5732px}.work-docs-icon-check-inactive-808184-24x24{width:24px;height:24px;background-position:-296px -5732px}.work-docs-icon-check-inactive-808184-16x16{width:16px;height:16px;background-position:-262px -5732px}.work-docs-icon-check-inactive-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -5732px}.work-docs-icon-check-inactive-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -5732px}.work-docs-icon-check-inactive-ffffff-24x24{width:24px;height:24px;background-position:-44px -5732px}.work-docs-icon-check-inactive-ffffff-16x16{width:16px;height:16px;background-position:-10px -5732px}.work-docs-icon-radio-inactive-0e72a3-24x24,input[type=radio].wd-blue-radio[disabled]+label.wd-blue-radio-label{width:24px;height:24px;background-position:-674px -5564px}.work-docs-icon-radio-inactive-0e72a3-16x16{width:16px;height:16px;background-position:-640px -5564px}.work-docs-icon-radio-inactive-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -5564px}.work-docs-icon-radio-inactive-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -5564px}.work-docs-icon-radio-inactive-212f3e-24x24{width:24px;height:24px;background-position:-422px -5564px}.work-docs-icon-radio-inactive-212f3e-16x16{width:16px;height:16px;background-position:-388px -5564px}.work-docs-icon-radio-inactive-808184-24x24{width:24px;height:24px;background-position:-296px -5564px}.work-docs-icon-radio-inactive-808184-16x16{width:16px;height:16px;background-position:-262px -5564px}.work-docs-icon-radio-inactive-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -5564px}.work-docs-icon-radio-inactive-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -5564px}.work-docs-icon-radio-inactive-ffffff-24x24{width:24px;height:24px;background-position:-44px -5564px}.work-docs-icon-radio-inactive-ffffff-16x16{width:16px;height:16px;background-position:-10px -5564px}.work-docs-icon-remove-from-share-0e72a3-24x24{width:24px;height:24px;background-position:-674px -6532px}.work-docs-icon-remove-from-share-0e72a3-16x16{width:16px;height:16px;background-position:-640px -6532px}.work-docs-icon-edit-file-0e72a3-24x24{width:24px;height:24px;background-position:-674px -6490px}.work-docs-icon-edit-file-0e72a3-16x16{width:16px;height:16px;background-position:-640px -6490px}.work-docs-icon-edit-file-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -6490px}.work-docs-icon-edit-file-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -6490px}.work-docs-icon-edit-file-212f3e-24x24{width:24px;height:24px;background-position:-422px -6490px}.work-docs-icon-edit-file-212f3e-16x16{width:16px;height:16px;background-position:-388px -6490px}.work-docs-icon-edit-file-808184-24x24{width:24px;height:24px;background-position:-296px -6490px}.work-docs-icon-edit-file-808184-16x16{width:16px;height:16px;background-position:-262px -6490px}.work-docs-icon-edit-file-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -6490px}.work-docs-icon-edit-file-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -6490px}.work-docs-icon-edit-file-ffffff-24x24{width:24px;height:24px;background-position:-44px -6490px}.work-docs-icon-edit-file-ffffff-16x16,.action-icon-edit{width:16px;height:16px;background-position:-10px -6490px}.work-docs-icon-broken-link-0e72a3-24x24{width:24px;height:24px;background-position:-674px -6448px}.work-docs-icon-broken-link-0e72a3-16x16{width:16px;height:16px;background-position:-640px -6448px}.work-docs-icon-remove-from-share-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -6532px}.work-docs-icon-remove-from-share-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -6532px}.work-docs-icon-broken-link-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -6448px}.work-docs-icon-broken-link-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -6448px}.work-docs-icon-remove-from-share-212f3e-24x24{width:24px;height:24px;background-position:-422px -6532px}.work-docs-icon-remove-from-share-212f3e-16x16{width:16px;height:16px;background-position:-388px -6532px}.work-docs-icon-broken-link-212f3e-24x24{width:24px;height:24px;background-position:-422px -6448px}.work-docs-icon-broken-link-212f3e-16x16{width:16px;height:16px;background-position:-388px -6448px}.work-docs-icon-remove-from-share-808184-24x24{width:24px;height:24px;background-position:-296px -6532px}.work-docs-icon-remove-from-share-808184-16x16{width:16px;height:16px;background-position:-262px -6532px}.work-docs-icon-broken-link-808184-24x24{width:24px;height:24px;background-position:-296px -6448px}.work-docs-icon-broken-link-808184-16x16{width:16px;height:16px;background-position:-262px -6448px}.work-docs-icon-remove-from-share-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -6532px}.work-docs-icon-remove-from-share-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -6532px}.work-docs-icon-remove-from-share-ffffff-24x24{width:24px;height:24px;background-position:-44px -6532px}.work-docs-icon-remove-from-share-ffffff-16x16,.action-icon-remove-me-from-share{width:16px;height:16px;background-position:-10px -6532px}.work-docs-icon-broken-link-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -6448px}.work-docs-icon-broken-link-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -6448px}.work-docs-icon-broken-link-ffffff-24x24{width:24px;height:24px;background-position:-44px -6448px}.work-docs-icon-broken-link-ffffff-16x16{width:16px;height:16px;background-position:-10px -6448px}.work-docs-icon-no-preview-0e72a3-24x24{width:24px;height:24px;background-position:-674px -6406px}.work-docs-icon-no-preview-0e72a3-16x16{width:16px;height:16px;background-position:-640px -6406px}.work-docs-icon-session-expired-0e72a3-24x24{width:24px;height:24px;background-position:-674px -6364px}.work-docs-icon-session-expired-0e72a3-16x16{width:16px;height:16px;background-position:-640px -6364px}.work-docs-icon-no-preview-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -6406px}.work-docs-icon-no-preview-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -6406px}.work-docs-icon-session-expired-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -6364px}.work-docs-icon-session-expired-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -6364px}.work-docs-icon-no-preview-212f3e-24x24{width:24px;height:24px;background-position:-422px -6406px}.work-docs-icon-no-preview-212f3e-16x16{width:16px;height:16px;background-position:-388px -6406px}.work-docs-icon-session-expired-212f3e-24x24{width:24px;height:24px;background-position:-422px -6364px}.work-docs-icon-session-expired-212f3e-16x16{width:16px;height:16px;background-position:-388px -6364px}.work-docs-icon-no-preview-808184-24x24{width:24px;height:24px;background-position:-296px -6406px}.work-docs-icon-no-preview-808184-16x16{width:16px;height:16px;background-position:-262px -6406px}.work-docs-icon-session-expired-808184-24x24{width:24px;height:24px;background-position:-296px -6364px}.work-docs-icon-session-expired-808184-16x16{width:16px;height:16px;background-position:-262px -6364px}.work-docs-icon-no-preview-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -6406px}.work-docs-icon-no-preview-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -6406px}.work-docs-icon-no-preview-ffffff-24x24{width:24px;height:24px;background-position:-44px -6406px}.work-docs-icon-no-preview-ffffff-16x16{width:16px;height:16px;background-position:-10px -6406px}.work-docs-icon-session-expired-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -6364px}.work-docs-icon-session-expired-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -6364px}.work-docs-icon-session-expired-ffffff-24x24{width:24px;height:24px;background-position:-44px -6364px}.work-docs-icon-session-expired-ffffff-16x16{width:16px;height:16px;background-position:-10px -6364px}.work-docs-icon-leave-full-screen-0e72a3-24x24{width:24px;height:24px;background-position:-674px -6322px}.work-docs-icon-leave-full-screen-0e72a3-16x16{width:16px;height:16px;background-position:-640px -6322px}.work-docs-icon-leave-full-screen-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -6322px}.work-docs-icon-leave-full-screen-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -6322px}.work-docs-icon-leave-full-screen-212f3e-24x24{width:24px;height:24px;background-position:-422px -6322px}.work-docs-icon-leave-full-screen-212f3e-16x16{width:16px;height:16px;background-position:-388px -6322px}.work-docs-icon-leave-full-screen-808184-24x24{width:24px;height:24px;background-position:-296px -6322px}.work-docs-icon-leave-full-screen-808184-16x16{width:16px;height:16px;background-position:-262px -6322px}.work-docs-icon-leave-full-screen-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -6322px}.work-docs-icon-leave-full-screen-ffffff-24x24{width:24px;height:24px;background-position:-44px -6322px}.work-docs-icon-leave-full-screen-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -6322px}.work-docs-icon-leave-full-screen-ffffff-16x16{width:16px;height:16px;background-position:-10px -6322px}.work-docs-icon-full-screen-0e72a3-24x24{width:24px;height:24px;background-position:-674px -6280px}.work-docs-icon-full-screen-0e72a3-16x16{width:16px;height:16px;background-position:-640px -6280px}.work-docs-icon-full-screen-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -6280px}.work-docs-icon-full-screen-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -6280px}.work-docs-icon-full-screen-212f3e-24x24{width:24px;height:24px;background-position:-422px -6280px}.work-docs-icon-full-screen-212f3e-16x16{width:16px;height:16px;background-position:-388px -6280px}.work-docs-icon-full-screen-808184-24x24{width:24px;height:24px;background-position:-296px -6280px}.work-docs-icon-full-screen-808184-16x16{width:16px;height:16px;background-position:-262px -6280px}.work-docs-icon-full-screen-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -6280px}.work-docs-icon-full-screen-ffffff-24x24{width:24px;height:24px;background-position:-44px -6280px}.work-docs-icon-full-screen-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -6280px}.work-docs-icon-full-screen-ffffff-16x16{width:16px;height:16px;background-position:-10px -6280px}.work-docs-icon-pdf-bf1e0f-24x24{width:24px;height:24px;background-position:-800px -6196px}.work-docs-icon-pdf-bf1e0f-16x16{width:16px;height:16px;background-position:-766px -6196px}.work-docs-icon-powerpoint-dd5c27-24x24{width:24px;height:24px;background-position:-800px -6154px}.work-docs-icon-powerpoint-dd5c27-16x16{width:16px;height:16px;background-position:-766px -6154px}.work-docs-icon-excel-0e7d4f-24x24{width:24px;height:24px;background-position:-800px -6112px}.work-docs-icon-excel-0e7d4f-16x16{width:16px;height:16px;background-position:-766px -6112px}.work-docs-icon-word-276887-24x24{width:24px;height:24px;background-position:-800px -6070px}.work-docs-icon-word-276887-16x16{width:16px;height:16px;background-position:-766px -6070px}.work-docs-icon-add-person-0e72a3-24x24{width:24px;height:24px;background-position:-674px -5902px}.work-docs-icon-add-person-0e72a3-16x16{width:16px;height:16px;background-position:-640px -5902px}.work-docs-icon-achieve-0e72a3-24x24{width:24px;height:24px;background-position:-674px -6238px}.work-docs-icon-achieve-0e72a3-16x16{width:16px;height:16px;background-position:-640px -6238px}.work-docs-icon-pdf-0e72a3-24x24{width:24px;height:24px;background-position:-674px -6196px}.work-docs-icon-pdf-0e72a3-16x16{width:16px;height:16px;background-position:-640px -6196px}.work-docs-icon-powerpoint-0e72a3-24x24{width:24px;height:24px;background-position:-674px -6154px}.work-docs-icon-powerpoint-0e72a3-16x16{width:16px;height:16px;background-position:-640px -6154px}.work-docs-icon-excel-0e72a3-24x24{width:24px;height:24px;background-position:-674px -6112px}.work-docs-icon-excel-0e72a3-263x16{width:263px;height:16px;background-position:-393px -6112px}.work-docs-icon-word-0e72a3-24x24{width:24px;height:24px;background-position:-674px -6070px}.work-docs-icon-word-0e72a3-16x16{width:16px;height:16px;background-position:-640px -6070px}.work-docs-icon-default-0e72a3-24x24{width:24px;height:24px;background-position:-674px -5944px}.work-docs-icon-default-0e72a3-16x16{width:16px;height:16px;background-position:-640px -5944px}.work-docs-icon-close-alternate-0e72a3-24x24{width:24px;height:24px;background-position:-674px -5860px}.work-docs-icon-close-alternate-0e72a3-16x16{width:16px;height:16px;background-position:-640px -5860px}.work-docs-icon-calendar-0e72a3-24x24{width:24px;height:24px;background-position:-674px -5817px}.work-docs-icon-calendar-0e72a3-16x16{width:16px;height:16px;background-position:-640px -5817px}.work-docs-icon-link-alternate-0e72a3-24x24{width:24px;height:24px;background-position:-674px -5774px}.work-docs-icon-link-alternate-0e72a3-16x16{width:16px;height:16px;background-position:-640px -5774px}.work-docs-icon-check-press-0e72a3-24x24,input[type=checkbox].wd-blue-checkbox:active+label.wd-blue-checkbox-label{width:24px;height:24px;background-position:-674px -5648px}.work-docs-icon-check-press-0e72a3-16x16{width:16px;height:16px;background-position:-640px -5648px}.work-docs-icon-check-off-0e72a3-24x24,input[type=checkbox].wd-blue-checkbox+label.wd-blue-checkbox-label{width:24px;height:24px;background-position:-674px -5606px}.work-docs-icon-check-off-0e72a3-16x16{width:16px;height:16px;background-position:-640px -5606px}.work-docs-icon-radio-selected-0e72a3-24x24,input[type=radio].wd-blue-radio:checked+label.wd-blue-radio-label{width:24px;height:24px;background-position:-674px -5522px}.work-docs-icon-radio-selected-0e72a3-16x16{width:16px;height:16px;background-position:-640px -5522px}.work-docs-icon-radio-press-0e72a3-24x24,input[type=radio].wd-blue-radio:active+label.wd-blue-radio-label{width:24px;height:24px;background-position:-674px -5480px}.work-docs-icon-radio-press-0e72a3-16x16{width:16px;height:16px;background-position:-640px -5480px}.work-docs-icon-radio-off-0e72a3-24x24,.wd-blue-radio-label{width:24px;height:24px;background-position:-674px -5438px}.work-docs-icon-radio-off-0e72a3-16x16{width:16px;height:16px;background-position:-640px -5438px}.work-docs-icon-refresh-0e72a3-24x24{width:24px;height:24px;background-position:-674px -5312px}.work-docs-icon-refresh-0e72a3-16x16,.file-browser-title-bar .browser-restore-icon{width:16px;height:16px;background-position:-640px -5312px}.work-docs-icon-progress-0e72a3-24x24{width:24px;height:24px;background-position:-674px -5270px}.work-docs-icon-progress-0e72a3-16x16{width:16px;height:16px;background-position:-640px -5270px}.work-docs-icon-reply-0e72a3-24x24{width:24px;height:24px;background-position:-674px -5228px}.work-docs-icon-reply-0e72a3-16x16{width:16px;height:16px;background-position:-640px -5228px}.work-docs-icon-people-0e72a3-24x24{width:24px;height:24px;background-position:-674px -5186px}.work-docs-icon-people-0e72a3-16x16{width:16px;height:16px;background-position:-640px -5186px}.work-docs-icon-add-person-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -5902px}.work-docs-icon-add-person-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -5902px}.work-docs-icon-achieve-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -6238px}.work-docs-icon-achieve-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -6238px}.work-docs-icon-pdf-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -6196px}.work-docs-icon-pdf-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -6196px}.work-docs-icon-powerpoint-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -6154px}.work-docs-icon-powerpoint-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -6154px}.work-docs-icon-excel-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -6112px}.work-docs-icon-excel-8ea9c9-138x16{width:138px;height:16px;background-position:-514px -6112px}.work-docs-icon-word-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -6070px}.work-docs-icon-word-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -6070px}.work-docs-icon-default-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -5944px}.work-docs-icon-default-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -5944px}.work-docs-icon-close-alternate-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -5860px}.work-docs-icon-close-alternate-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -5860px}.work-docs-icon-calendar-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -5817px}.work-docs-icon-calendar-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -5817px}.work-docs-icon-link-alternate-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -5774px}.work-docs-icon-link-alternate-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -5774px}.work-docs-icon-check-press-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -5648px}.work-docs-icon-check-press-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -5648px}.work-docs-icon-check-off-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -5606px}.work-docs-icon-check-off-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -5606px}.work-docs-icon-radio-selected-8ea9c9-24x24,input[type=radio].wd-blue-radio:checked[disabled]+label.wd-blue-radio-label{width:24px;height:24px;background-position:-548px -5522px}.work-docs-icon-radio-selected-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -5522px}.work-docs-icon-radio-press-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -5480px}.work-docs-icon-radio-press-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -5480px}.work-docs-icon-radio-off-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -5438px}.work-docs-icon-radio-off-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -5438px}.work-docs-icon-refresh-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -5312px}.work-docs-icon-refresh-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -5312px}.work-docs-icon-progress-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -5270px}.work-docs-icon-progress-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -5270px}.work-docs-icon-reply-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -5228px}.work-docs-icon-reply-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -5228px}.work-docs-icon-people-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -5186px}.work-docs-icon-people-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -5186px}.work-docs-icon-add-person-212f3e-24x24{width:24px;height:24px;background-position:-422px -5902px}.work-docs-icon-add-person-212f3e-16x16{width:16px;height:16px;background-position:-388px -5902px}.work-docs-icon-achieve-212f3e-24x24{width:24px;height:24px;background-position:-422px -6238px}.work-docs-icon-achieve-212f3e-16x16{width:16px;height:16px;background-position:-388px -6238px}.work-docs-icon-pdf-212f3e-24x24{width:24px;height:24px;background-position:-422px -6196px}.work-docs-icon-pdf-212f3e-16x16{width:16px;height:16px;background-position:-388px -6196px}.work-docs-icon-powerpoint-212f3e-24x24{width:24px;height:24px;background-position:-422px -6154px}.work-docs-icon-powerpoint-212f3e-16x16{width:16px;height:16px;background-position:-388px -6154px}.work-docs-icon-excel-212f3e-24x24{width:24px;height:24px;background-position:-422px -6112px}.work-docs-icon-excel-212f3e-138x16{width:138px;height:16px;background-position:-388px -6112px}.work-docs-icon-word-212f3e-24x24{width:24px;height:24px;background-position:-422px -6070px}.work-docs-icon-word-212f3e-16x16{width:16px;height:16px;background-position:-388px -6070px}.work-docs-icon-default-212f3e-24x24{width:24px;height:24px;background-position:-422px -5944px}.work-docs-icon-default-212f3e-16x16{width:16px;height:16px;background-position:-388px -5944px}.work-docs-icon-close-alternate-212f3e-24x24{width:24px;height:24px;background-position:-422px -5860px}.work-docs-icon-close-alternate-212f3e-16x16{width:16px;height:16px;background-position:-388px -5860px}.work-docs-icon-calendar-212f3e-24x24{width:24px;height:24px;background-position:-422px -5817px}.work-docs-icon-calendar-212f3e-16x16{width:16px;height:16px;background-position:-388px -5817px}.work-docs-icon-link-alternate-212f3e-24x24{width:24px;height:24px;background-position:-422px -5774px}.work-docs-icon-link-alternate-212f3e-16x16{width:16px;height:16px;background-position:-388px -5774px}.work-docs-icon-check-press-212f3e-24x24{width:24px;height:24px;background-position:-422px -5648px}.work-docs-icon-check-press-212f3e-16x16{width:16px;height:16px;background-position:-388px -5648px}.work-docs-icon-check-off-212f3e-24x24{width:24px;height:24px;background-position:-422px -5606px}.work-docs-icon-check-off-212f3e-16x16{width:16px;height:16px;background-position:-388px -5606px}.work-docs-icon-radio-selected-212f3e-24x24{width:24px;height:24px;background-position:-422px -5522px}.work-docs-icon-radio-selected-212f3e-16x16{width:16px;height:16px;background-position:-388px -5522px}.work-docs-icon-radio-press-212f3e-24x24{width:24px;height:24px;background-position:-422px -5480px}.work-docs-icon-radio-press-212f3e-16x16{width:16px;height:16px;background-position:-388px -5480px}.work-docs-icon-radio-off-212f3e-24x24{width:24px;height:24px;background-position:-422px -5438px}.work-docs-icon-radio-off-212f3e-16x16{width:16px;height:16px;background-position:-388px -5438px}.work-docs-icon-refresh-212f3e-24x24{width:24px;height:24px;background-position:-422px -5312px}.work-docs-icon-refresh-212f3e-16x16{width:16px;height:16px;background-position:-388px -5312px}.work-docs-icon-progress-212f3e-24x24{width:24px;height:24px;background-position:-422px -5270px}.work-docs-icon-progress-212f3e-16x16{width:16px;height:16px;background-position:-388px -5270px}.work-docs-icon-reply-212f3e-24x24{width:24px;height:24px;background-position:-422px -5228px}.work-docs-icon-reply-212f3e-16x16{width:16px;height:16px;background-position:-388px -5228px}.work-docs-icon-people-212f3e-24x24{width:24px;height:24px;background-position:-422px -5186px}.work-docs-icon-people-212f3e-16x16{width:16px;height:16px;background-position:-388px -5186px}.work-docs-icon-add-person-808184-24x24{width:24px;height:24px;background-position:-296px -5902px}.work-docs-icon-add-person-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -5902px}.work-docs-icon-add-person-ffffff-24x24{width:24px;height:24px;background-position:-44px -5902px}.work-docs-icon-add-person-808184-16x16{width:16px;height:16px;background-position:-262px -5902px}.work-docs-icon-add-person-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -5902px}.work-docs-icon-add-person-ffffff-16x16{width:16px;height:16px;background-position:-10px -5902px}.work-docs-icon-achieve-808184-24x24{width:24px;height:24px;background-position:-296px -6238px}.work-docs-icon-achieve-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -6238px}.work-docs-icon-achieve-ffffff-24x24{width:24px;height:24px;background-position:-44px -6238px}.work-docs-icon-achieve-808184-16x16{width:16px;height:16px;background-position:-262px -6238px}.work-docs-icon-achieve-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -6238px}.work-docs-icon-achieve-ffffff-16x16{width:16px;height:16px;background-position:-10px -6238px}.work-docs-icon-pdf-787982-24x25{width:24px;height:25px;background-position:-296px -6196px}.work-docs-icon-pdf-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -6196px}.work-docs-icon-pdf-ffffff-24x24{width:24px;height:24px;background-position:-44px -6196px}.work-docs-icon-pdf-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -6196px}.work-docs-icon-pdf-ffffff-16x16{width:16px;height:16px;background-position:-10px -6196px}.work-docs-icon-powerpoint-808184-24x24{width:24px;height:24px;background-position:-296px -6154px}.work-docs-icon-powerpoint-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -6154px}.work-docs-icon-powerpoint-ffffff-24x24{width:24px;height:24px;background-position:-44px -6154px}.work-docs-icon-powerpoint-808184-16x16{width:16px;height:16px;background-position:-262px -6154px}.work-docs-icon-powerpoint-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -6154px}.work-docs-icon-powerpoint-ffffff-16x16{width:16px;height:16px;background-position:-10px -6154px}.work-docs-icon-excel-808184-261x24{width:261px;height:24px;background-position:-178px -6112px}.work-docs-icon-excel-d0d2d3-143x24{width:143px;height:24px;background-position:-170px -6112px}.work-docs-icon-excel-ffffff-24x24{width:24px;height:24px;background-position:-44px -6112px}.work-docs-icon-excel-808184-16x16{width:16px;height:16px;background-position:-262px -6112px}.work-docs-icon-excel-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -6112px}.work-docs-icon-excel-ffffff-16x16{width:16px;height:16px;background-position:-10px -6112px}.work-docs-icon-word-808184-24x24{width:24px;height:24px;background-position:-296px -6070px}.work-docs-icon-word-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -6070px}.work-docs-icon-word-ffffff-24x24{width:24px;height:24px;background-position:-44px -6070px}.work-docs-icon-word-808184-16x16{width:16px;height:16px;background-position:-262px -6070px}.work-docs-icon-word-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -6070px}.work-docs-icon-word-ffffff-16x16{width:16px;height:16px;background-position:-10px -6070px}.work-docs-icon-image-0e72a3-24x24{width:24px;height:24px;background-position:-674px -5986px}.work-docs-icon-image-0e72a3-16x16{width:16px;height:16px;background-position:-640px -5986px}.work-docs-icon-image-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -5986px}.work-docs-icon-image-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -5986px}.work-docs-icon-image-212f3e-24x24{width:24px;height:24px;background-position:-422px -5986px}.work-docs-icon-image-212f3e-16x16{width:16px;height:16px;background-position:-388px -5986px}.work-docs-icon-image-808184-24x24{width:24px;height:24px;background-position:-296px -5986px}.work-docs-icon-image-808184-16x16{width:16px;height:16px;background-position:-262px -5986px}.work-docs-icon-image-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -5986px}.work-docs-icon-image-ffffff-24x24{width:24px;height:24px;background-position:-44px -5986px}.work-docs-icon-image-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -5986px}.work-docs-icon-image-ffffff-16x16{width:16px;height:16px;background-position:-10px -5986px}.work-docs-icon-default-808184-24x24{width:24px;height:24px;background-position:-296px -5944px}.work-docs-icon-default-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -5944px}.work-docs-icon-default-ffffff-24x24{width:24px;height:24px;background-position:-44px -5944px}.work-docs-icon-default-808184-16x16{width:16px;height:16px;background-position:-262px -5944px}.work-docs-icon-default-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -5944px}.work-docs-icon-default-ffffff-16x16{width:16px;height:16px;background-position:-10px -5944px}.work-docs-icon-close-alternate-808184-24x24{width:24px;height:24px;background-position:-296px -5860px}.work-docs-icon-close-alternate-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -5860px}.work-docs-icon-close-alternate-ffffff-24x24{width:24px;height:24px;background-position:-44px -5860px}.work-docs-icon-close-alternate-808184-16x16{width:16px;height:16px;background-position:-262px -5860px}.work-docs-icon-close-alternate-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -5860px}.work-docs-icon-close-alternate-ffffff-16x16{width:16px;height:16px;background-position:-10px -5860px}.work-docs-icon-calendar-808184-24x24{width:24px;height:24px;background-position:-296px -5817px}.work-docs-icon-calendar-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -5817px}.work-docs-icon-calendar-ffffff-24x24{width:24px;height:24px;background-position:-44px -5817px}.work-docs-icon-calendar-808184-16x16{width:16px;height:16px;background-position:-262px -5817px}.work-docs-icon-calendar-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -5817px}.work-docs-icon-calendar-ffffff-16x16{width:16px;height:16px;background-position:-10px -5817px}.work-docs-icon-link-alternate-808184-24x24{width:24px;height:24px;background-position:-296px -5774px}.work-docs-icon-link-alternate-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -5774px}.work-docs-icon-link-alternate-ffffff-24x24{width:24px;height:24px;background-position:-44px -5774px}.work-docs-icon-link-alternate-808184-16x16{width:16px;height:16px;background-position:-262px -5774px}.work-docs-icon-link-alternate-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -5774px}.work-docs-icon-link-alternate-ffffff-16x16{width:16px;height:16px;background-position:-10px -5774px}.work-docs-icon-check-selected-0e72a3-24x24,input[type=checkbox].wd-blue-checkbox:checked+label.wd-blue-checkbox-label{width:24px;height:24px;background-position:-674px -5690px}.work-docs-icon-check-selected-0e72a3-16x16{width:16px;height:16px;background-position:-640px -5690px}.work-docs-icon-check-selected-8ea9c9-24x24,input[type=checkbox].wd-blue-checkbox:checked[disabled]+label.wd-blue-checkbox-label{width:24px;height:24px;background-position:-548px -5690px}.work-docs-icon-check-selected-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -5690px}.work-docs-icon-check-selected-212f3e-24x24{width:24px;height:24px;background-position:-422px -5690px}.work-docs-icon-check-selected-212f3e-16x16{width:16px;height:16px;background-position:-388px -5690px}.work-docs-icon-check-selected-808184-24x24{width:24px;height:24px;background-position:-296px -5690px}.work-docs-icon-check-selected-808184-16x16{width:16px;height:16px;background-position:-262px -5690px}.work-docs-icon-check-selected-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -5690px}.work-docs-icon-check-selected-ffffff-24x24{width:24px;height:24px;background-position:-44px -5690px}.work-docs-icon-check-selected-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -5690px}.work-docs-icon-check-selected-ffffff-16x16{width:16px;height:16px;background-position:-10px -5690px}.work-docs-icon-check-press-808184-24x24{width:24px;height:24px;background-position:-296px -5648px}.work-docs-icon-check-press-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -5648px}.work-docs-icon-check-press-ffffff-24x24{width:24px;height:24px;background-position:-44px -5648px}.work-docs-icon-check-press-808184-16x16{width:16px;height:16px;background-position:-262px -5648px}.work-docs-icon-check-press-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -5648px}.work-docs-icon-check-press-ffffff-16x16{width:16px;height:16px;background-position:-10px -5648px}.work-docs-icon-check-off-808184-24x24{width:24px;height:24px;background-position:-296px -5606px}.work-docs-icon-check-off-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -5606px}.work-docs-icon-check-off-ffffff-24x24{width:24px;height:24px;background-position:-44px -5606px}.work-docs-icon-check-off-808184-16x16{width:16px;height:16px;background-position:-262px -5606px}.work-docs-icon-check-off-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -5606px}.work-docs-icon-check-off-ffffff-16x16{width:16px;height:16px;background-position:-10px -5606px}.work-docs-icon-radio-selected-808184-24x24{width:24px;height:24px;background-position:-296px -5522px}.work-docs-icon-radio-selected-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -5522px}.work-docs-icon-radio-selected-ffffff-24x24{width:24px;height:24px;background-position:-44px -5522px}.work-docs-icon-radio-selected-808184-16x16{width:16px;height:16px;background-position:-262px -5522px}.work-docs-icon-radio-selected-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -5522px}.work-docs-icon-radio-selected-ffffff-16x16{width:16px;height:16px;background-position:-10px -5522px}.work-docs-icon-radio-press-808184-24x24{width:24px;height:24px;background-position:-296px -5480px}.work-docs-icon-radio-press-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -5480px}.work-docs-icon-radio-press-ffffff-24x24{width:24px;height:24px;background-position:-44px -5480px}.work-docs-icon-radio-press-808184-16x16{width:16px;height:16px;background-position:-262px -5480px}.work-docs-icon-radio-press-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -5480px}.work-docs-icon-radio-press-ffffff-16x16{width:16px;height:16px;background-position:-10px -5480px}.work-docs-icon-radio-off-808184-24x24{width:24px;height:24px;background-position:-296px -5438px}.work-docs-icon-radio-off-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -5438px}.work-docs-icon-radio-off-ffffff-24x24{width:24px;height:24px;background-position:-44px -5438px}.work-docs-icon-radio-off-808184-16x16{width:16px;height:16px;background-position:-262px -5438px}.work-docs-icon-radio-off-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -5438px}.work-docs-icon-radio-off-ffffff-16x16{width:16px;height:16px;background-position:-10px -5438px}.work-docs-icon-refresh-alternate-0e72a3-24x24{width:24px;height:24px;background-position:-674px -5354px}.work-docs-icon-refresh-alternate-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -5354px}.work-docs-icon-refresh-alternate-212f3e-24x24{width:24px;height:24px;background-position:-422px -5354px}.work-docs-icon-refresh-alternate-808184-24x24{width:24px;height:24px;background-position:-296px -5354px}.work-docs-icon-refresh-alternate-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -5354px}.work-docs-icon-refresh-alternate-ffffff-24x24{width:24px;height:24px;background-position:-44px -5354px}.work-docs-icon-refresh-alternate-0e72a3-16x16{width:16px;height:16px;background-position:-640px -5354px}.work-docs-icon-refresh-alternate-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -5354px}.work-docs-icon-refresh-alternate-212f3e-16x16{width:16px;height:16px;background-position:-388px -5354px}.work-docs-icon-refresh-alternate-808184-16x16{width:16px;height:16px;background-position:-262px -5354px}.work-docs-icon-refresh-alternate-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -5354px}.work-docs-icon-refresh-alternate-ffffff-16x16{width:16px;height:16px;background-position:-10px -5354px}.work-docs-icon-refresh-808184-24x24{width:24px;height:24px;background-position:-296px -5312px}.work-docs-icon-refresh-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -5312px}.work-docs-icon-refresh-ffffff-24x24{width:24px;height:24px;background-position:-44px -5312px}.work-docs-icon-refresh-808184-16x16{width:16px;height:16px;background-position:-262px -5312px}.work-docs-icon-refresh-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -5312px}.work-docs-icon-refresh-ffffff-16x16{width:16px;height:16px;background-position:-10px -5312px}.work-docs-icon-progress-808184-24x24{width:24px;height:24px;background-position:-296px -5270px}.work-docs-icon-progress-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -5270px}.work-docs-icon-progress-ffffff-24x24{width:24px;height:24px;background-position:-44px -5270px}.work-docs-icon-progress-808184-16x16{width:16px;height:16px;background-position:-262px -5270px}.work-docs-icon-progress-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -5270px}.work-docs-icon-progress-ffffff-16x16{width:16px;height:16px;background-position:-10px -5270px}.work-docs-icon-reply-808184-24x24{width:24px;height:24px;background-position:-296px -5228px}.work-docs-icon-reply-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -5228px}.work-docs-icon-reply-ffffff-24x24{width:24px;height:24px;background-position:-44px -5228px}.work-docs-icon-reply-808184-16x16{width:16px;height:16px;background-position:-262px -5228px}.work-docs-icon-reply-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -5228px}.work-docs-icon-reply-ffffff-16x16{width:16px;height:16px;background-position:-10px -5228px}.work-docs-icon-people-808184-24x24{width:24px;height:24px;background-position:-296px -5186px}.work-docs-icon-people-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -5186px}.work-docs-icon-people-ffffff-24x24{width:24px;height:24px;background-position:-44px -5186px}.work-docs-icon-people-808184-16x16{width:16px;height:16px;background-position:-262px -5186px}.work-docs-icon-people-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -5186px}.work-docs-icon-people-ffffff-16x16{width:16px;height:16px;background-position:-10px -5186px}.work-docs-icon-restore-0e72a3-24x24{width:24px;height:24px;background-position:-674px -5144px}.work-docs-icon-restore-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -5144px}.work-docs-icon-restore-212f3e-24x24{width:24px;height:24px;background-position:-422px -5144px}.work-docs-icon-restore-808184-24x24{width:24px;height:24px;background-position:-296px -5144px}.work-docs-icon-restore-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -5144px}.work-docs-icon-restore-ffffff-24x24{width:24px;height:24px;background-position:-44px -5144px}.work-docs-icon-restore-0e72a3-16x16{width:16px;height:16px;background-position:-640px -5144px}.work-docs-icon-restore-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -5144px}.work-docs-icon-restore-212f3e-16x16{width:16px;height:16px;background-position:-388px -5144px}.work-docs-icon-restore-808184-16x16{width:16px;height:16px;background-position:-262px -5144px}.work-docs-icon-restore-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -5144px}.work-docs-icon-restore-ffffff-16x16{width:16px;height:16px;background-position:-10px -5144px}.work-docs-icon-arrows-right-0e72a3-24x24{width:24px;height:24px;background-position:-674px -5102px}.work-docs-icon-arrows-right-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -5102px}.work-docs-icon-arrows-right-212f3e-24x24{width:24px;height:24px;background-position:-422px -5102px}.work-docs-icon-arrows-right-808184-24x24{width:24px;height:24px;background-position:-296px -5102px}.work-docs-icon-arrows-right-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -5102px}.work-docs-icon-arrows-right-ffffff-24x24,.expanded-right .side-bar-closepanel-icon{width:24px;height:24px;background-position:-44px -5102px}.work-docs-icon-arrows-right-0e72a3-16x16{width:16px;height:16px;background-position:-640px -5102px}.work-docs-icon-arrows-right-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -5102px}.work-docs-icon-arrows-right-212f3e-16x16{width:16px;height:16px;background-position:-388px -5102px}.work-docs-icon-arrows-right-808184-16x16{width:16px;height:16px;background-position:-262px -5102px}.work-docs-icon-arrows-right-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -5102px}.work-docs-icon-arrows-right-ffffff-16x16{width:16px;height:16px;background-position:-10px -5102px}.work-docs-icon-arrows-left-0e72a3-24x24{width:24px;height:24px;background-position:-674px -5060px}.work-docs-icon-arrows-left-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -5060px}.work-docs-icon-arrows-left-212f3e-24x24{width:24px;height:24px;background-position:-422px -5060px}.work-docs-icon-arrows-left-808184-24x24{width:24px;height:24px;background-position:-296px -5060px}.work-docs-icon-arrows-left-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -5060px}.work-docs-icon-arrows-left-ffffff-24x24{width:24px;height:24px;background-position:-44px -5060px}.work-docs-icon-arrows-left-0e72a3-16x16{width:16px;height:16px;background-position:-640px -5060px}.work-docs-icon-arrows-left-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -5060px}.work-docs-icon-arrows-left-212f3e-16x16{width:16px;height:16px;background-position:-388px -5060px}.work-docs-icon-arrows-left-808184-16x16{width:16px;height:16px;background-position:-262px -5060px}.work-docs-icon-arrows-left-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -5060px}.work-docs-icon-arrows-left-ffffff-16x16{width:16px;height:16px;background-position:-10px -5060px}.work-docs-icon-ellipsis-0e72a3-24x24{width:24px;height:24px;background-position:-674px -5018px}.work-docs-icon-ellipsis-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -5018px}.work-docs-icon-ellipsis-212f3e-24x24{width:24px;height:24px;background-position:-422px -5018px}.work-docs-icon-ellipsis-808184-24x24{width:24px;height:24px;background-position:-296px -5018px}.work-docs-icon-ellipsis-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -5018px}.work-docs-icon-ellipsis-ffffff-24x24{width:24px;height:24px;background-position:-44px -5018px}.work-docs-icon-ellipsis-0e72a3-16x16{width:16px;height:16px;background-position:-640px -5018px}.work-docs-icon-ellipsis-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -5018px}.work-docs-icon-ellipsis-212f3e-16x16{width:16px;height:16px;background-position:-388px -5018px}.work-docs-icon-ellipsis-808184-16x16{width:16px;height:16px;background-position:-262px -5018px}.work-docs-icon-ellipsis-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -5018px}.work-docs-icon-ellipsis-ffffff-16x16{width:16px;height:16px;background-position:-10px -5018px}.work-docs-icon-minus-0e72a3-24x24{width:24px;height:24px;background-position:-674px -4934px}.work-docs-icon-minus-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -4934px}.work-docs-icon-minus-212f3e-24x24{width:24px;height:24px;background-position:-422px -4934px}.work-docs-icon-minus-808184-24x24{width:24px;height:24px;background-position:-296px -4934px}.work-docs-icon-minus-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -4934px}.work-docs-icon-minus-ffffff-24x24{width:24px;height:24px;background-position:-44px -4934px}.work-docs-icon-minus-0e72a3-16x16{width:16px;height:16px;background-position:-640px -4934px}.work-docs-icon-minus-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -4934px}.work-docs-icon-minus-212f3e-16x16{width:16px;height:16px;background-position:-388px -4934px}.work-docs-icon-minus-808184-16x16{width:16px;height:16px;background-position:-262px -4934px}.work-docs-icon-minus-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -4934px}.work-docs-icon-minus-ffffff-16x16{width:16px;height:16px;background-position:-10px -4934px}.work-docs-icon-plus-0e72a3-24x24{width:24px;height:24px;background-position:-674px -4892px}.work-docs-icon-plus-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -4892px}.work-docs-icon-plus-212f3e-24x24{width:24px;height:24px;background-position:-422px -4892px}.work-docs-icon-plus-808184-24x24{width:24px;height:24px;background-position:-296px -4892px}.work-docs-icon-plus-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -4892px}.work-docs-icon-plus-ffffff-24x24{width:24px;height:24px;background-position:-44px -4892px}.work-docs-icon-plus-0e72a3-16x16{width:16px;height:16px;background-position:-640px -4892px}.work-docs-icon-plus-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -4892px}.work-docs-icon-plus-212f3e-16x16{width:16px;height:16px;background-position:-388px -4892px}.work-docs-icon-plus-808184-16x16{width:16px;height:16px;background-position:-262px -4892px}.work-docs-icon-plus-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -4892px}.work-docs-icon-plus-ffffff-16x16{width:16px;height:16px;background-position:-10px -4892px}.work-docs-icon-notifications-ffffff-16x16{width:16px;height:16px;background-position:-10px -4850px}.work-docs-icon-notifications-ffffff-24x24{width:24px;height:24px;background-position:-44px -4850px}.work-docs-icon-notifications-0e72a3-24x24{width:24px;height:24px;background-position:-674px -4850px}.work-docs-icon-notifications-0e72a3-16x16{width:16px;height:16px;background-position:-640px -4850px}.work-docs-icon-notifications-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -4850px}.work-docs-icon-notifications-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -4850px}.work-docs-icon-notifications-212f3e-24x24{width:24px;height:24px;background-position:-422px -4850px}.work-docs-icon-notifications-212f3e-16x16{width:16px;height:16px;background-position:-388px -4850px}.work-docs-icon-notifications-808184-24x24{width:24px;height:24px;background-position:-296px -4850px}.work-docs-icon-notifications-808184-16x16{width:16px;height:16px;background-position:-262px -4850px}.work-docs-icon-notifications-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -4850px}.work-docs-icon-notifications-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -4850px}.work-docs-icon-zoom-out-0e72a3-24x24{width:24px;height:24px;background-position:-674px -4808px}.work-docs-icon-zoom-out-0e72a3-16x16{width:16px;height:16px;background-position:-640px -4808px}.work-docs-icon-zoom-out-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -4808px}.work-docs-icon-zoom-out-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -4808px}.work-docs-icon-zoom-out-212f3e-24x24{width:24px;height:24px;background-position:-422px -4808px}.work-docs-icon-zoom-out-212f3e-16x16{width:16px;height:16px;background-position:-388px -4808px}.work-docs-icon-zoom-out-808184-24x24{width:24px;height:24px;background-position:-296px -4808px}.work-docs-icon-zoom-out-808184-16x16{width:16px;height:16px;background-position:-262px -4808px}.work-docs-icon-zoom-out-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -4808px}.work-docs-icon-zoom-out-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -4808px}.work-docs-icon-zoom-out-ffffff-24x24{width:24px;height:24px;background-position:-44px -4808px}.work-docs-icon-zoom-out-ffffff-16x16{width:16px;height:16px;background-position:-10px -4808px}.work-docs-icon-zoom-in-0e72a3-24x24{width:24px;height:24px;background-position:-674px -4766px}.work-docs-icon-zoom-in-0e72a3-16x16{width:16px;height:16px;background-position:-640px -4766px}.work-docs-icon-zoom-in-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -4766px}.work-docs-icon-zoom-in-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -4766px}.work-docs-icon-zoom-in-212f3e-24x24{width:24px;height:24px;background-position:-422px -4766px}.work-docs-icon-zoom-in-212f3e-16x16{width:16px;height:16px;background-position:-388px -4766px}.work-docs-icon-zoom-in-808184-24x24{width:24px;height:24px;background-position:-296px -4766px}.work-docs-icon-zoom-in-808184-16x16{width:16px;height:16px;background-position:-262px -4766px}.work-docs-icon-zoom-in-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -4766px}.work-docs-icon-zoom-in-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -4766px}.work-docs-icon-zoom-in-ffffff-24x24{width:24px;height:24px;background-position:-44px -4766px}.work-docs-icon-zoom-in-ffffff-16x16{width:16px;height:16px;background-position:-10px -4766px}.work-docs-icon-page-down-0e72a3-24x24{width:24px;height:24px;background-position:-674px -4724px}.work-docs-icon-page-down-0e72a3-16x16{width:16px;height:16px;background-position:-640px -4724px}.work-docs-icon-page-down-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -4724px}.work-docs-icon-page-down-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -4724px}.work-docs-icon-page-down-212f3e-24x24{width:24px;height:24px;background-position:-422px -4724px}.work-docs-icon-page-down-212f3e-16x16{width:16px;height:16px;background-position:-388px -4724px}.work-docs-icon-page-down-808184-24x24{width:24px;height:24px;background-position:-296px -4724px}.work-docs-icon-page-down-808184-16x16{width:16px;height:16px;background-position:-262px -4724px}.work-docs-icon-page-down-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -4724px}.work-docs-icon-page-down-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -4724px}.work-docs-icon-page-down-ffffff-24x24{width:24px;height:24px;background-position:-44px -4724px}.work-docs-icon-page-down-ffffff-16x16{width:16px;height:16px;background-position:-10px -4724px}.work-docs-icon-page-up-0e72a3-24x24{width:24px;height:24px;background-position:-674px -4682px}.work-docs-icon-page-up-0e72a3-16x16{width:16px;height:16px;background-position:-640px -4682px}.work-docs-icon-page-up-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -4682px}.work-docs-icon-page-up-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -4682px}.work-docs-icon-page-up-212f3e-24x24{width:24px;height:24px;background-position:-422px -4682px}.work-docs-icon-page-up-212f3e-16x16{width:16px;height:16px;background-position:-388px -4682px}.work-docs-icon-page-up-808184-24x24{width:24px;height:24px;background-position:-296px -4682px}.work-docs-icon-page-up-808184-16x16{width:16px;height:16px;background-position:-262px -4682px}.work-docs-icon-page-up-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -4682px}.work-docs-icon-page-up-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -4682px}.work-docs-icon-page-up-ffffff-24x24{width:24px;height:24px;background-position:-44px -4682px}.work-docs-icon-page-up-ffffff-16x16{width:16px;height:16px;background-position:-10px -4682px}.work-docs-icon-carat-right-lg-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -4640px}.work-docs-icon-carat-right-lg-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -4640px}.work-docs-icon-carat-right-lg-212f3e-24x24{width:24px;height:24px;background-position:-422px -4640px}.work-docs-icon-carat-right-lg-0e72a3-24x24{width:24px;height:24px;background-position:-674px -4640px}.work-docs-icon-carat-right-lg-808184-24x24{width:24px;height:24px;background-position:-296px -4640px}.work-docs-icon-carat-right-lg-ffffff-24x24{width:24px;height:24px;background-position:-44px -4640px}.work-docs-icon-carat-right-lg-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -4640px}.work-docs-icon-carat-right-lg-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -4640px}.work-docs-icon-carat-right-lg-212f3e-16x16{width:16px;height:16px;background-position:-388px -4640px}.work-docs-icon-carat-right-lg-0e72a3-16x16{width:16px;height:16px;background-position:-640px -4640px}.work-docs-icon-carat-right-lg-808184-16x16{width:16px;height:16px;background-position:-262px -4640px}.work-docs-icon-carat-right-lg-ffffff-16x16{width:16px;height:16px;background-position:-10px -4640px}.work-docs-icon-carat-up-lg-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -4598px}.work-docs-icon-carat-up-lg-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -4598px}.work-docs-icon-carat-up-lg-212f3e-24x24{width:24px;height:24px;background-position:-422px -4598px}.work-docs-icon-carat-up-lg-0e72a3-24x24{width:24px;height:24px;background-position:-674px -4598px}.work-docs-icon-carat-up-lg-808184-24x24{width:24px;height:24px;background-position:-296px -4598px}.work-docs-icon-carat-up-lg-ffffff-24x24{width:24px;height:24px;background-position:-44px -4598px}.work-docs-icon-carat-up-lg-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -4598px}.work-docs-icon-carat-up-lg-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -4598px}.work-docs-icon-carat-up-lg-212f3e-16x16{width:16px;height:16px;background-position:-388px -4598px}.work-docs-icon-carat-up-lg-0e72a3-16x16{width:16px;height:16px;background-position:-640px -4598px}.work-docs-icon-carat-up-lg-808184-16x16{width:16px;height:16px;background-position:-262px -4598px}.work-docs-icon-carat-up-lg-ffffff-16x16{width:16px;height:16px;background-position:-10px -4598px}.work-docs-icon-carat-down-lg-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -4556px}.work-docs-icon-carat-down-lg-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -4556px}.work-docs-icon-carat-down-lg-212f3e-24x24{width:24px;height:24px;background-position:-422px -4556px}.work-docs-icon-carat-down-lg-0e72a3-24x24{width:24px;height:24px;background-position:-674px -4556px}.work-docs-icon-carat-down-lg-808184-24x24{width:24px;height:24px;background-position:-296px -4556px}.work-docs-icon-carat-down-lg-ffffff-24x24{width:24px;height:24px;background-position:-44px -4556px}.work-docs-icon-carat-down-lg-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -4556px}.work-docs-icon-carat-down-lg-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -4556px}.work-docs-icon-carat-down-lg-212f3e-16x16{width:16px;height:16px;background-position:-388px -4556px}.work-docs-icon-carat-down-lg-0e72a3-16x16,.caret{width:16px;height:16px;background-position:-640px -4556px}.work-docs-icon-carat-down-lg-808184-16x16{width:16px;height:16px;background-position:-262px -4556px}.work-docs-icon-carat-down-lg-ffffff-16x16{width:16px;height:16px;background-position:-10px -4556px}.work-docs-icon-carat-left-lg-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -4514px}.work-docs-icon-carat-left-lg-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -4514px}.work-docs-icon-carat-left-lg-212f3e-24x24{width:24px;height:24px;background-position:-422px -4514px}.work-docs-icon-carat-left-lg-0e72a3-24x24{width:24px;height:24px;background-position:-674px -4514px}.work-docs-icon-carat-left-lg-808184-24x24{width:24px;height:24px;background-position:-296px -4514px}.work-docs-icon-carat-left-lg-ffffff-24x24{width:24px;height:24px;background-position:-44px -4514px}.work-docs-icon-carat-left-lg-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -4514px}.work-docs-icon-carat-left-lg-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -4514px}.work-docs-icon-carat-left-lg-212f3e-16x16{width:16px;height:16px;background-position:-388px -4514px}.work-docs-icon-carat-left-lg-0e72a3-16x16{width:16px;height:16px;background-position:-640px -4514px}.work-docs-icon-carat-left-lg-808184-16x16{width:16px;height:16px;background-position:-262px -4514px}.work-docs-icon-carat-left-lg-ffffff-16x16{width:16px;height:16px;background-position:-10px -4514px}.work-docs-icon-unchecked-round-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -4472px}.work-docs-icon-unchecked-round-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -4472px}.work-docs-icon-unchecked-round-212f3e-24x24,input[type=radio].wd-white-radio+label.wd-white-radio-label{width:24px;height:24px;background-position:-422px -4472px}.work-docs-icon-unchecked-round-0e72a3-24x24{width:24px;height:24px;background-position:-674px -4472px}.work-docs-icon-unchecked-round-808184-24x24{width:24px;height:24px;background-position:-296px -4472px}.work-docs-icon-unchecked-round-ffffff-24x24{width:24px;height:24px;background-position:-44px -4472px}.work-docs-icon-unchecked-round-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -4472px}.work-docs-icon-unchecked-round-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -4472px}.work-docs-icon-unchecked-round-212f3e-16x16{width:16px;height:16px;background-position:-388px -4472px}.work-docs-icon-unchecked-round-0e72a3-16x16{width:16px;height:16px;background-position:-640px -4472px}.work-docs-icon-unchecked-round-808184-16x16{width:16px;height:16px;background-position:-262px -4472px}.work-docs-icon-unchecked-round-ffffff-16x16{width:16px;height:16px;background-position:-10px -4472px}.work-docs-icon-close-activity-tray-d0d2d3-36x24{width:36px;height:24px;background-position:-170px -4430px}.work-docs-icon-close-activity-tray-8ea9c9-36x24{width:36px;height:24px;background-position:-548px -4430px}.work-docs-icon-close-activity-tray-212f3e-36x24{width:36px;height:24px;background-position:-422px -4430px}.work-docs-icon-close-activity-tray-0e72a3-36x24{width:36px;height:24px;background-position:-674px -4430px}.work-docs-icon-close-activity-tray-808184-36x24{width:36px;height:24px;background-position:-296px -4430px}.work-docs-icon-close-activity-tray-ffffff-36x24{width:36px;height:24px;background-position:-44px -4430px}.work-docs-icon-close-activity-tray-d0d2d3-24x16{width:24px;height:16px;background-position:-136px -4430px}.work-docs-icon-close-activity-tray-8ea9c9-24x16{width:24px;height:16px;background-position:-514px -4430px}.work-docs-icon-close-activity-tray-212f3e-24x16{width:24px;height:16px;background-position:-388px -4430px}.work-docs-icon-close-activity-tray-0e72a3-24x16{width:24px;height:16px;background-position:-640px -4430px}.work-docs-icon-close-activity-tray-808184-24x16{width:24px;height:16px;background-position:-262px -4430px}.work-docs-icon-close-activity-tray-ffffff-24x16{width:24px;height:16px;background-position:-10px -4430px}.work-docs-icon-open-activity-tray-chat-d0d2d3-37x24{width:37px;height:24px;background-position:-170px -4388px}.work-docs-icon-open-activity-tray-chat-8ea9c9-37x24{width:37px;height:24px;background-position:-548px -4388px}.work-docs-icon-open-activity-tray-chat-212f3e-37x24{width:37px;height:24px;background-position:-422px -4388px}.work-docs-icon-open-activity-tray-chat-0e72a3-37x24{width:37px;height:24px;background-position:-674px -4388px}.work-docs-icon-open-activity-tray-chat-808184-37x24{width:37px;height:24px;background-position:-296px -4388px}.work-docs-icon-open-activity-tray-chat-ffffff-37x24{width:37px;height:24px;background-position:-44px -4388px}.work-docs-icon-open-activity-tray-chat-d0d2d3-24x16{width:24px;height:16px;background-position:-136px -4388px}.work-docs-icon-open-activity-tray-chat-8ea9c9-24x16{width:24px;height:16px;background-position:-514px -4388px}.work-docs-icon-open-activity-tray-chat-212f3e-24x16{width:24px;height:16px;background-position:-388px -4388px}.work-docs-icon-open-activity-tray-chat-0e72a3-24x16{width:24px;height:16px;background-position:-640px -4388px}.work-docs-icon-open-activity-tray-chat-808184-24x16{width:24px;height:16px;background-position:-262px -4388px}.work-docs-icon-open-activity-tray-chat-ffffff-24x16{width:24px;height:16px;background-position:-10px -4388px}.work-docs-icon-open-folder-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -4346px}.work-docs-icon-open-folder-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -4346px}.work-docs-icon-open-folder-212f3e-24x24{width:24px;height:24px;background-position:-422px -4346px}.work-docs-icon-open-folder-0e72a3-24x24{width:24px;height:24px;background-position:-674px -4346px}.work-docs-icon-open-folder-808184-24x24{width:24px;height:24px;background-position:-296px -4346px}.work-docs-icon-open-folder-ffffff-24x24{width:24px;height:24px;background-position:-44px -4346px}.work-docs-icon-open-folder-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -4346px}.work-docs-icon-open-folder-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -4346px}.work-docs-icon-open-folder-212f3e-16x16{width:16px;height:16px;background-position:-388px -4346px}.work-docs-icon-open-folder-0e72a3-16x16{width:16px;height:16px;background-position:-640px -4346px}.work-docs-icon-open-folder-808184-16x16{width:16px;height:16px;background-position:-262px -4346px}.work-docs-icon-open-folder-ffffff-16x16,.action-icon-open{width:16px;height:16px;background-position:-10px -4346px}.work-docs-icon-carat-right-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -4304px}.work-docs-icon-carat-right-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -4304px}.work-docs-icon-carat-right-212f3e-24x24{width:24px;height:24px;background-position:-422px -4304px}.work-docs-icon-carat-right-0e72a3-24x24{width:24px;height:24px;background-position:-674px -4304px}.work-docs-icon-carat-right-808184-24x24{width:24px;height:24px;background-position:-296px -4304px}.work-docs-icon-carat-right-ffffff-24x24{width:24px;height:24px;background-position:-44px -4304px}.work-docs-icon-carat-right-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -4304px}.work-docs-icon-carat-right-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -4304px}.work-docs-icon-carat-right-212f3e-16x16{width:16px;height:16px;background-position:-388px -4304px}.work-docs-icon-carat-right-0e72a3-16x16{width:16px;height:16px;background-position:-640px -4304px}.work-docs-icon-carat-right-808184-16x16{width:16px;height:16px;background-position:-262px -4304px}.work-docs-icon-carat-right-ffffff-16x16{width:16px;height:16px;background-position:-10px -4304px}.work-docs-icon-carat-up-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -4262px}.work-docs-icon-carat-up-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -4262px}.work-docs-icon-carat-up-212f3e-24x24{width:24px;height:24px;background-position:-422px -4262px}.work-docs-icon-carat-up-0e72a3-24x24{width:24px;height:24px;background-position:-674px -4262px}.work-docs-icon-carat-up-808184-24x24{width:24px;height:24px;background-position:-296px -4262px}.work-docs-icon-carat-up-ffffff-24x24{width:24px;height:24px;background-position:-44px -4262px}.work-docs-icon-carat-up-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -4262px}.work-docs-icon-carat-up-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -4262px}.work-docs-icon-carat-up-212f3e-16x16{width:16px;height:16px;background-position:-388px -4262px}.work-docs-icon-carat-up-0e72a3-16x16{width:16px;height:16px;background-position:-640px -4262px}.work-docs-icon-carat-up-808184-16x16{width:16px;height:16px;background-position:-262px -4262px}.work-docs-icon-carat-up-ffffff-16x16{width:16px;height:16px;background-position:-10px -4262px}.work-docs-icon-carat-down-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -4220px}.work-docs-icon-carat-down-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -4220px}.work-docs-icon-carat-down-212f3e-24x24{width:24px;height:24px;background-position:-422px -4220px}.work-docs-icon-carat-down-0e72a3-24x24,#profile-div .profile-dropdown-button .dropdown-icon,.dropdown-toggle-icon,#feedback-filter-menu .filter-dropdown button .dropdown-icon{width:24px;height:24px;background-position:-674px -4220px}.work-docs-icon-carat-down-808184-24x24{width:24px;height:24px;background-position:-296px -4220px}.work-docs-icon-carat-down-ffffff-24x24{width:24px;height:24px;background-position:-44px -4220px}.work-docs-icon-carat-down-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -4220px}.work-docs-icon-carat-down-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -4220px}.work-docs-icon-carat-down-212f3e-16x16{width:16px;height:16px;background-position:-388px -4220px}.work-docs-icon-carat-down-0e72a3-16x16{width:16px;height:16px;background-position:-640px -4220px}.work-docs-icon-carat-down-808184-16x16{width:16px;height:16px;background-position:-262px -4220px}.work-docs-icon-carat-down-ffffff-16x16{width:16px;height:16px;background-position:-10px -4220px}.work-docs-icon-carat-left-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -4178px}.work-docs-icon-carat-left-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -4178px}.work-docs-icon-carat-left-212f3e-24x24{width:24px;height:24px;background-position:-422px -4178px}.work-docs-icon-carat-left-0e72a3-24x24{width:24px;height:24px;background-position:-674px -4178px}.work-docs-icon-carat-left-808184-24x24{width:24px;height:24px;background-position:-296px -4178px}.work-docs-icon-carat-left-ffffff-24x24{width:24px;height:24px;background-position:-44px -4178px}.work-docs-icon-carat-left-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -4178px}.work-docs-icon-carat-left-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -4178px}.work-docs-icon-carat-left-212f3e-16x16{width:16px;height:16px;background-position:-388px -4178px}.work-docs-icon-carat-left-0e72a3-16x16{width:16px;height:16px;background-position:-640px -4178px}.work-docs-icon-carat-left-808184-16x16{width:16px;height:16px;background-position:-262px -4178px}.work-docs-icon-carat-left-ffffff-16x16{width:16px;height:16px;background-position:-10px -4178px}.work-docs-icon-checked-round-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -4136px}.work-docs-icon-checked-round-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -4136px}.work-docs-icon-checked-round-212f3e-24x24{width:24px;height:24px;background-position:-422px -4136px}.work-docs-icon-checked-round-0e72a3-24x24{width:24px;height:24px;background-position:-674px -4136px}.work-docs-icon-checked-round-808184-24x24{width:24px;height:24px;background-position:-296px -4136px}.work-docs-icon-checked-round-ffffff-24x24{width:24px;height:24px;background-position:-44px -4136px}.work-docs-icon-checked-round-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -4136px}.work-docs-icon-checked-round-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -4136px}.work-docs-icon-checked-round-212f3e-16x16{width:16px;height:16px;background-position:-388px -4136px}.work-docs-icon-checked-round-0e72a3-16x16{width:16px;height:16px;background-position:-640px -4136px}.work-docs-icon-checked-round-808184-16x16{width:16px;height:16px;background-position:-262px -4136px}.work-docs-icon-checked-round-ffffff-16x16{width:16px;height:16px;background-position:-10px -4136px}.work-docs-icon-unchecked-round-solid-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -4094px}.work-docs-icon-unchecked-round-solid-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -4094px}.work-docs-icon-unchecked-round-solid-212f3e-24x24,input[type=radio].wd-white-radio:checked+label.wd-white-radio-label{width:24px;height:24px;background-position:-422px -4094px}.work-docs-icon-unchecked-round-solid-0e72a3-24x24{width:24px;height:24px;background-position:-674px -4094px}.work-docs-icon-unchecked-round-solid-808184-24x24{width:24px;height:24px;background-position:-296px -4094px}.work-docs-icon-unchecked-round-solid-ffffff-24x24{width:24px;height:24px;background-position:-44px -4094px}.work-docs-icon-unchecked-round-solid-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -4094px}.work-docs-icon-unchecked-round-solid-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -4094px}.work-docs-icon-unchecked-round-solid-212f3e-16x16{width:16px;height:16px;background-position:-388px -4094px}.work-docs-icon-unchecked-round-solid-0e72a3-16x16{width:16px;height:16px;background-position:-640px -4094px}.work-docs-icon-unchecked-round-solid-808184-16x16{width:16px;height:16px;background-position:-262px -4094px}.work-docs-icon-unchecked-round-solid-ffffff-16x16{width:16px;height:16px;background-position:-10px -4094px}.work-docs-icon-mail-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -4052px}.work-docs-icon-mail-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -4052px}.work-docs-icon-mail-212f3e-24x24{width:24px;height:24px;background-position:-422px -4052px}.work-docs-icon-mail-0e72a3-24x24,#admin-div .invite-user-icon{width:24px;height:24px;background-position:-674px -4053px}.work-docs-icon-mail-808184-24x24{width:24px;height:24px;background-position:-296px -4052px}.work-docs-icon-mail-ffffff-24x24{width:24px;height:24px;background-position:-44px -4052px}.work-docs-icon-mail-d0d2d3-16x16,#admin-div .reinvite-user-icon-disabled{width:16px;height:16px;background-position:-136px -4052px}.work-docs-icon-mail-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -4052px}.work-docs-icon-mail-212f3e-16x16{width:16px;height:16px;background-position:-388px -4052px}.work-docs-icon-mail-0e72a3-16x16,#admin-div .reinvite-user-icon{width:16px;height:16px;background-position:-640px -4052px}.work-docs-icon-mail-808184-16x16{width:16px;height:16px;background-position:-262px -4052px}.work-docs-icon-mail-ffffff-16x16{width:16px;height:16px;background-position:-10px -4052px}.work-docs-icon-cloud-toggle-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -4010px}.work-docs-icon-cloud-toggle-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -4010px}.work-docs-icon-cloud-toggle-212f3e-24x24{width:24px;height:24px;background-position:-422px -4010px}.work-docs-icon-cloud-toggle-0e72a3-24x24{width:24px;height:24px;background-position:-674px -4010px}.work-docs-icon-cloud-toggle-808184-24x24{width:24px;height:24px;background-position:-296px -4010px}.work-docs-icon-cloud-toggle-ffffff-24x24{width:24px;height:24px;background-position:-44px -4010px}.work-docs-icon-cloud-toggle-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -4010px}.work-docs-icon-cloud-toggle-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -4010px}.work-docs-icon-cloud-toggle-212f3e-16x16{width:16px;height:16px;background-position:-388px -4010px}.work-docs-icon-cloud-toggle-0e72a3-16x16{width:16px;height:16px;background-position:-640px -4010px}.work-docs-icon-cloud-toggle-808184-16x16{width:16px;height:16px;background-position:-262px -4010px}.work-docs-icon-cloud-toggle-ffffff-16x16{width:16px;height:16px;background-position:-10px -4010px}.work-docs-icon-cloud-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -3968px}.work-docs-icon-cloud-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -3968px}.work-docs-icon-cloud-212f3e-24x24{width:24px;height:24px;background-position:-422px -3968px}.work-docs-icon-cloud-0e72a3-24x24{width:24px;height:24px;background-position:-674px -3968px}.work-docs-icon-cloud-808184-24x24{width:24px;height:24px;background-position:-296px -3968px}.work-docs-icon-cloud-ffffff-24x24{width:24px;height:24px;background-position:-44px -3968px}.work-docs-icon-cloud-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -3968px}.work-docs-icon-cloud-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -3968px}.work-docs-icon-cloud-212f3e-16x16{width:16px;height:16px;background-position:-388px -3968px}.work-docs-icon-cloud-0e72a3-16x16{width:16px;height:16px;background-position:-640px -3968px}.work-docs-icon-cloud-808184-16x16{width:16px;height:16px;background-position:-262px -3968px}.work-docs-icon-cloud-ffffff-16x16{width:16px;height:16px;background-position:-10px -3968px}.work-docs-icon-close-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -3926px}.work-docs-icon-close-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -3926px}.work-docs-icon-close-212f3e-24x24{width:24px;height:24px;background-position:-422px -3926px}.work-docs-icon-close-0e72a3-24x24{width:24px;height:24px;background-position:-674px -3926px}.work-docs-icon-close-808184-24x24,.message .inner-info .close-icon,.modal-body .close,.modal-header .close{width:24px;height:24px;background-position:-296px -3926px}.work-docs-icon-close-ffffff-24x24,.top-banner .close,.message .close-icon{width:24px;height:24px;background-position:-44px -3926px}.work-docs-icon-close-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -3926px}.work-docs-icon-close-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -3926px}.work-docs-icon-close-212f3e-16x16,#dashboard-div .filter-container .filter-button .close-icon,#analytics-div .filter-button .close-icon,.dyk-wrapper .dyk-close{width:16px;height:16px;background-position:-388px -3926px}.work-docs-icon-close-0e72a3-16x16,#dashboard-div .filter-container .filter-button .close-icon:hover,#analytics-div .filter-button .close-icon:hover,.dyk-wrapper .dyk-close:hover{width:16px;height:16px;background-position:-640px -3926px}.work-docs-icon-close-808184-16x16{width:16px;height:16px;background-position:-262px -3926px}.work-docs-icon-close-ffffff-16x16{width:16px;height:16px;background-position:-10px -3926px}.work-docs-icon-share-alternate-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -3884px}.work-docs-icon-share-alternate-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -3884px}.work-docs-icon-share-alternate-212f3e-24x24{width:24px;height:24px;background-position:-422px -3884px}.work-docs-icon-share-alternate-0e72a3-24x24{width:24px;height:24px;background-position:-674px -3884px}.work-docs-icon-share-alternate-808184-24x24{width:24px;height:24px;background-position:-296px -3884px}.work-docs-icon-share-alternate-ffffff-24x24{width:24px;height:24px;background-position:-44px -3884px}.work-docs-icon-share-alternate-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -3884px}.work-docs-icon-share-alternate-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -3884px}.work-docs-icon-share-alternate-212f3e-16x16{width:16px;height:16px;background-position:-388px -3884px}.work-docs-icon-share-alternate-0e72a3-16x16{width:16px;height:16px;background-position:-640px -3884px}.work-docs-icon-share-alternate-808184-16x16{width:16px;height:16px;background-position:-262px -3884px}.work-docs-icon-share-alternate-ffffff-16x16{width:16px;height:16px;background-position:-10px -3884px}.work-docs-icon-from-clipboard-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -3842px}.work-docs-icon-from-clipboard-8ea9c9-24x24,.feedback-input-container .paste-highlighted:hover{width:24px;height:24px;background-position:-548px -3842px}.work-docs-icon-from-clipboard-212f3e-24x24{width:24px;height:24px;background-position:-422px -3842px}.work-docs-icon-from-clipboard-0e72a3-24x24,.feedback-input-container .paste-highlighted{width:24px;height:24px;background-position:-674px -3842px}.work-docs-icon-from-clipboard-808184-24x24{width:24px;height:24px;background-position:-296px -3842px}.work-docs-icon-from-clipboard-ffffff-24x24{width:24px;height:24px;background-position:-44px -3842px}.work-docs-icon-from-clipboard-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -3842px}.work-docs-icon-from-clipboard-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -3842px}.work-docs-icon-from-clipboard-212f3e-16x16{width:16px;height:16px;background-position:-388px -3842px}.work-docs-icon-from-clipboard-0e72a3-16x16{width:16px;height:16px;background-position:-640px -3842px}.work-docs-icon-from-clipboard-808184-16x16{width:16px;height:16px;background-position:-262px -3842px}.work-docs-icon-from-clipboard-ffffff-16x16{width:16px;height:16px;background-position:-10px -3842px}.work-docs-icon-to-clipboard-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -3800px}.work-docs-icon-to-clipboard-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -3800px}.work-docs-icon-to-clipboard-212f3e-24x24{width:24px;height:24px;background-position:-422px -3800px}.work-docs-icon-to-clipboard-0e72a3-24x24{width:24px;height:24px;background-position:-674px -3800px}.work-docs-icon-to-clipboard-808184-24x24{width:24px;height:24px;background-position:-296px -3800px}.work-docs-icon-to-clipboard-ffffff-24x24{width:24px;height:24px;background-position:-44px -3800px}.work-docs-icon-to-clipboard-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -3800px}.work-docs-icon-to-clipboard-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -3800px}.work-docs-icon-to-clipboard-212f3e-16x16{width:16px;height:16px;background-position:-388px -3800px}.work-docs-icon-to-clipboard-0e72a3-16x16{width:16px;height:16px;background-position:-640px -3800px}.work-docs-icon-to-clipboard-808184-16x16{width:16px;height:16px;background-position:-262px -3800px}.work-docs-icon-to-clipboard-ffffff-16x16{width:16px;height:16px;background-position:-10px -3800px}.work-docs-icon-attach-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -3758px}.work-docs-icon-attach-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -3758px}.work-docs-icon-attach-212f3e-24x24{width:24px;height:24px;background-position:-422px -3758px}.work-docs-icon-attach-0e72a3-24x24{width:24px;height:24px;background-position:-674px -3758px}.work-docs-icon-attach-808184-24x24{width:24px;height:24px;background-position:-296px -3758px}.work-docs-icon-attach-ffffff-24x24{width:24px;height:24px;background-position:-44px -3758px}.work-docs-icon-attach-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -3758px}.work-docs-icon-attach-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -3758px}.work-docs-icon-attach-212f3e-16x16{width:16px;height:16px;background-position:-388px -3758px}.work-docs-icon-attach-0e72a3-16x16{width:16px;height:16px;background-position:-640px -3758px}.work-docs-icon-attach-808184-16x16{width:16px;height:16px;background-position:-262px -3758px}.work-docs-icon-attach-ffffff-16x16{width:16px;height:16px;background-position:-10px -3758px}.work-docs-icon-close-activity-tray-people-d0d2d3-36x24{width:36px;height:24px;background-position:-170px -3716px}.work-docs-icon-close-activity-tray-people-8ea9c9-36x24{width:36px;height:24px;background-position:-548px -3716px}.work-docs-icon-close-activity-tray-people-212f3e-36x24{width:36px;height:24px;background-position:-422px -3716px}.work-docs-icon-close-activity-tray-people-0e72a3-36x24{width:36px;height:24px;background-position:-674px -3716px}.work-docs-icon-close-activity-tray-people-808184-36x24{width:36px;height:24px;background-position:-296px -3716px}.work-docs-icon-close-activity-tray-people-ffffff-36x24{width:36px;height:24px;background-position:-44px -3716px}.work-docs-icon-close-activity-tray-people-d0d2d3-24x16{width:24px;height:16px;background-position:-136px -3716px}.work-docs-icon-close-activity-tray-people-8ea9c9-24x16{width:24px;height:16px;background-position:-514px -3716px}.work-docs-icon-close-activity-tray-people-212f3e-24x16{width:24px;height:16px;background-position:-388px -3716px}.work-docs-icon-close-activity-tray-people-0e72a3-24x16{width:24px;height:16px;background-position:-640px -3716px}.work-docs-icon-close-activity-tray-people-808184-24x16{width:24px;height:16px;background-position:-262px -3716px}.work-docs-icon-close-activity-tray-people-ffffff-24x16{width:24px;height:16px;background-position:-10px -3716px}.work-docs-icon-open-activity-tray-people-d0d2d3-36x24{width:36px;height:24px;background-position:-170px -3674px}.work-docs-icon-open-activity-tray-people-8ea9c9-36x24{width:36px;height:24px;background-position:-548px -3674px}.work-docs-icon-open-activity-tray-people-212f3e-36x24{width:36px;height:24px;background-position:-422px -3674px}.work-docs-icon-open-activity-tray-people-0e72a3-36x24{width:36px;height:24px;background-position:-674px -3674px}.work-docs-icon-open-activity-tray-people-808184-36x24{width:36px;height:24px;background-position:-296px -3674px}.work-docs-icon-open-activity-tray-people-ffffff-36x24{width:36px;height:24px;background-position:-44px -3674px}.work-docs-icon-open-activity-tray-people-d0d2d3-24x16{width:24px;height:16px;background-position:-136px -3674px}.work-docs-icon-open-activity-tray-people-8ea9c9-24x16{width:24px;height:16px;background-position:-514px -3674px}.work-docs-icon-open-activity-tray-people-212f3e-24x16{width:24px;height:16px;background-position:-388px -3674px}.work-docs-icon-open-activity-tray-people-0e72a3-24x16{width:24px;height:16px;background-position:-640px -3674px}.work-docs-icon-open-activity-tray-people-808184-24x16{width:24px;height:16px;background-position:-262px -3674px}.work-docs-icon-open-activity-tray-people-ffffff-24x16{width:24px;height:16px;background-position:-10px -3674px}.work-docs-icon-info-solid-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -3632px}.work-docs-icon-info-solid-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -3632px}.work-docs-icon-info-solid-212f3e-24x24{width:24px;height:24px;background-position:-422px -3632px}.work-docs-icon-info-solid-0e72a3-24x24{width:24px;height:24px;background-position:-674px -3632px}.work-docs-icon-info-solid-808184-24x24{width:24px;height:24px;background-position:-296px -3632px}.work-docs-icon-info-solid-ffffff-24x24{width:24px;height:24px;background-position:-44px -3632px}.work-docs-icon-info-solid-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -3632px}.work-docs-icon-info-solid-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -3632px}.work-docs-icon-info-solid-212f3e-16x16{width:16px;height:16px;background-position:-388px -3632px}.work-docs-icon-info-solid-0e72a3-16x16{width:16px;height:16px;background-position:-640px -3632px}.work-docs-icon-info-solid-808184-16x16{width:16px;height:16px;background-position:-262px -3632px}.work-docs-icon-info-solid-ffffff-16x16{width:16px;height:16px;background-position:-10px -3632px}.work-docs-icon-info-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -3590px}.work-docs-icon-info-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -3590px}.work-docs-icon-info-212f3e-24x24{width:24px;height:24px;background-position:-422px -3590px}.work-docs-icon-info-0e72a3-24x24{width:24px;height:24px;background-position:-674px -3590px}.work-docs-icon-info-808184-24x24{width:24px;height:24px;background-position:-296px -3590px}.work-docs-icon-info-ffffff-24x24{width:24px;height:24px;background-position:-44px -3590px}.work-docs-icon-info-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -3590px}.work-docs-icon-info-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -3590px}.work-docs-icon-info-212f3e-16x16{width:16px;height:16px;background-position:-388px -3590px}.work-docs-icon-info-0e72a3-16x16{width:16px;height:16px;background-position:-640px -3590px}.work-docs-icon-info-808184-16x16{width:16px;height:16px;background-position:-262px -3590px}.work-docs-icon-info-ffffff-16x16{width:16px;height:16px;background-position:-10px -3590px}.work-docs-icon-activity-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -3548px}.work-docs-icon-activity-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -3548px}.work-docs-icon-activity-212f3e-24x24{width:24px;height:24px;background-position:-422px -3548px}.work-docs-icon-activity-0e72a3-24x24{width:24px;height:24px;background-position:-674px -3548px}.work-docs-icon-activity-808184-24x24,#left-sidebar .activities-icon,.left-sidebar-minimized .ln-activities .sprite-icon{width:24px;height:24px;background-position:-296px -3548px}.work-docs-icon-activity-ffffff-24x24,#left-sidebar .active .activities-icon,#left-sidebar li:hover .activities-icon,.left-sidebar-minimized .ln-activities:hover .sprite-icon,.left-sidebar-minimized .ln-activities.active .sprite-icon{width:24px;height:24px;background-position:-44px -3548px}.work-docs-icon-activity-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -3548px}.work-docs-icon-activity-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -3548px}.work-docs-icon-activity-212f3e-16x16{width:16px;height:16px;background-position:-388px -3548px}.work-docs-icon-activity-0e72a3-16x16{width:16px;height:16px;background-position:-640px -3548px}.work-docs-icon-activity-808184-16x16{width:16px;height:16px;background-position:-262px -3548px}.work-docs-icon-activity-ffffff-16x16,.action-icon-activity{width:16px;height:16px;background-position:-10px -3548px}.work-docs-icon-upload-to-cloud-0e72a3-24x24{width:24px;height:24px;background-position:-674px -3506px}.work-docs-icon-upload-to-cloud-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -3506px}.work-docs-icon-upload-to-cloud-212f3e-24x24{width:24px;height:24px;background-position:-422px -3506px}.work-docs-icon-upload-to-cloud-808184-24x24{width:24px;height:24px;background-position:-296px -3506px}.work-docs-icon-upload-to-cloud-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -3506px}.work-docs-icon-upload-to-cloud-ffffff-24x24{width:24px;height:24px;background-position:-44px -3506px}.work-docs-icon-upload-to-cloud-0e72a3-16x16,.browser-plus-icon{width:16px;height:16px;background-position:-640px -3506px}.work-docs-icon-upload-to-cloud-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -3506px}.work-docs-icon-upload-to-cloud-212f3e-16x16{width:16px;height:16px;background-position:-388px -3506px}.work-docs-icon-upload-to-cloud-808184-16x16{width:16px;height:16px;background-position:-262px -3506px}.work-docs-icon-upload-to-cloud-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -3506px}.work-docs-icon-upload-to-cloud-ffffff-16x16{width:16px;height:16px;background-position:-10px -3506px}.work-docs-icon-download-from-cloud-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -3464px}.work-docs-icon-download-from-cloud-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -3464px}.work-docs-icon-download-from-cloud-212f3e-24x24{width:24px;height:24px;background-position:-422px -3464px}.work-docs-icon-download-from-cloud-0e72a3-24x24{width:24px;height:24px;background-position:-674px -3464px}.work-docs-icon-download-from-cloud-808184-24x24{width:24px;height:24px;background-position:-296px -3464px}.work-docs-icon-download-from-cloud-ffffff-24x24{width:24px;height:24px;background-position:-44px -3464px}.work-docs-icon-download-from-cloud-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -3464px}.work-docs-icon-download-from-cloud-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -3464px}.work-docs-icon-download-from-cloud-212f3e-16x16{width:16px;height:16px;background-position:-388px -3464px}.work-docs-icon-download-from-cloud-0e72a3-16x16{width:16px;height:16px;background-position:-640px -3464px}.work-docs-icon-download-from-cloud-808184-16x16{width:16px;height:16px;background-position:-262px -3464px}.work-docs-icon-download-from-cloud-ffffff-16x16,.action-icon-download{width:16px;height:16px;background-position:-10px -3464px}.work-docs-icon-move-0e72a3-24x24{width:24px;height:24px;background-position:-674px -3422px}.work-docs-icon-move-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -3422px}.work-docs-icon-move-212f3e-24x24{width:24px;height:24px;background-position:-422px -3422px}.work-docs-icon-move-808184-24x24{width:24px;height:24px;background-position:-296px -3422px}.work-docs-icon-move-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -3422px}.work-docs-icon-move-ffffff-24x24{width:24px;height:24px;background-position:-44px -3422px}.work-docs-icon-move-0e72a3-16x16{width:16px;height:16px;background-position:-640px -3422px}.work-docs-icon-move-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -3422px}.work-docs-icon-move-212f3e-16x16{width:16px;height:16px;background-position:-388px -3422px}.work-docs-icon-move-808184-16x16{width:16px;height:16px;background-position:-262px -3422px}.work-docs-icon-move-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -3422px}.work-docs-icon-move-ffffff-16x16,.action-icon-move{width:16px;height:16px;background-position:-10px -3422px}.work-docs-icon-edit-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -3380px}.work-docs-icon-edit-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -3380px}.work-docs-icon-edit-212f3e-24x24{width:24px;height:24px;background-position:-422px -3380px}.work-docs-icon-edit-0e72a3-24x24{width:24px;height:24px;background-position:-674px -3380px}.work-docs-icon-edit-808184-24x24{width:24px;height:24px;background-position:-296px -3380px}.work-docs-icon-edit-ffffff-24x24{width:24px;height:24px;background-position:-44px -3380px}.work-docs-icon-edit-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -3380px}.work-docs-icon-edit-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -3380px}.work-docs-icon-edit-212f3e-16x16{width:16px;height:16px;background-position:-388px -3380px}.work-docs-icon-edit-0e72a3-16x16,#admin-div .edit-user-icon{width:16px;height:16px;background-position:-640px -3380px}.work-docs-icon-edit-808184-16x16{width:16px;height:16px;background-position:-262px -3380px}.work-docs-icon-edit-ffffff-16x16,.action-icon-rename{width:16px;height:16px;background-position:-10px -3380px}.work-docs-icon-link-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -3338px}.work-docs-icon-link-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -3338px}.work-docs-icon-link-212f3e-24x24{width:24px;height:24px;background-position:-422px -3338px}.work-docs-icon-link-0e72a3-24x24{width:24px;height:24px;background-position:-674px -3338px}.work-docs-icon-link-808184-24x24{width:24px;height:24px;background-position:-296px -3338px}.work-docs-icon-link-ffffff-24x24{width:24px;height:24px;background-position:-44px -3338px}.work-docs-icon-link-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -3338px}.work-docs-icon-link-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -3338px}.work-docs-icon-link-212f3e-16x16{width:16px;height:16px;background-position:-388px -3338px}.work-docs-icon-link-0e72a3-16x16{width:16px;height:16px;background-position:-640px -3338px}.work-docs-icon-link-808184-16x16{width:16px;height:16px;background-position:-262px -3338px}.work-docs-icon-link-ffffff-16x16{width:16px;height:16px;background-position:-10px -3338px}.work-docs-icon-share-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -3296px}.work-docs-icon-share-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -3296px}.work-docs-icon-share-212f3e-24x24{width:24px;height:24px;background-position:-422px -3296px}.work-docs-icon-share-0e72a3-24x24{width:24px;height:24px;background-position:-674px -3296px}.work-docs-icon-share-808184-24x24,#left-sidebar .shared-with-me-icon,.left-sidebar-minimized .ln-shared-with-me .sprite-icon{width:24px;height:24px;background-position:-296px -3296px}.work-docs-icon-share-ffffff-24x24,#left-sidebar .active .shared-with-me-icon,#left-sidebar li:hover .shared-with-me-icon,.left-sidebar-minimized .ln-shared-with-me:hover .sprite-icon,.left-sidebar-minimized .ln-shared-with-me.active .sprite-icon{width:24px;height:24px;background-position:-44px -3296px}.work-docs-icon-share-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -3296px}.work-docs-icon-share-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -3296px}.work-docs-icon-share-212f3e-16x16{width:16px;height:16px;background-position:-388px -3296px}.work-docs-icon-share-0e72a3-16x16{width:16px;height:16px;background-position:-640px -3296px}.work-docs-icon-share-808184-16x16{width:16px;height:16px;background-position:-262px -3296px}.work-docs-icon-share-ffffff-16x16,.action-icon-share{width:16px;height:16px;background-position:-10px -3296px}.work-docs-icon-doc-sm-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -3254px}.work-docs-icon-doc-sm-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -3254px}.work-docs-icon-doc-sm-212f3e-24x24{width:24px;height:24px;background-position:-422px -3254px}.work-docs-icon-doc-sm-0e72a3-24x24{width:24px;height:24px;background-position:-674px -3254px}.work-docs-icon-doc-sm-808184-24x24{width:24px;height:24px;background-position:-296px -3254px}.work-docs-icon-doc-sm-ffffff-24x24{width:24px;height:24px;background-position:-44px -3254px}.work-docs-icon-doc-sm-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -3254px}.work-docs-icon-doc-sm-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -3254px}.work-docs-icon-doc-sm-212f3e-16x16{width:16px;height:16px;background-position:-388px -3254px}.work-docs-icon-doc-sm-0e72a3-16x16{width:16px;height:16px;background-position:-640px -3254px}.work-docs-icon-doc-sm-808184-16x16{width:16px;height:16px;background-position:-262px -3254px}.work-docs-icon-doc-sm-ffffff-16x16{width:16px;height:16px;background-position:-10px -3254px}.work-docs-icon-folder-sm-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -3212px}.work-docs-icon-folder-sm-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -3212px}.work-docs-icon-folder-sm-212f3e-24x24{width:24px;height:24px;background-position:-422px -3212px}.work-docs-icon-folder-sm-0e72a3-24x24{width:24px;height:24px;background-position:-674px -3212px}.work-docs-icon-folder-sm-808184-24x24{width:24px;height:24px;background-position:-296px -3212px}.work-docs-icon-folder-sm-ffffff-24x24{width:24px;height:24px;background-position:-44px -3212px}.work-docs-icon-folder-sm-d0d2d3-16x16,#admin-div .recovery-bin-icon-disabled{width:16px;height:16px;background-position:-136px -3212px}.work-docs-icon-folder-sm-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -3212px}.work-docs-icon-folder-sm-212f3e-16x16,.sub-folder-list .sub-folder-icon{width:16px;height:16px;background-position:-388px -3212px}.work-docs-icon-folder-sm-0e72a3-16x16,#admin-div .recovery-bin-icon{width:16px;height:16px;background-position:-640px -3212px}.work-docs-icon-folder-sm-808184-16x16{width:16px;height:16px;background-position:-262px -3212px}.work-docs-icon-folder-sm-ffffff-16x16{width:16px;height:16px;background-position:-10px -3212px}.work-docs-icon-locked-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -3170px}.work-docs-icon-locked-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -3170px}.work-docs-icon-locked-212f3e-24x24{width:24px;height:24px;background-position:-422px -3170px}.work-docs-icon-locked-ffa724-24x24{width:24px;height:24px;background-position:-800px -3170px}.work-docs-icon-locked-0e72a3-24x24{width:24px;height:24px;background-position:-674px -3170px}.work-docs-icon-locked-808184-24x24{width:24px;height:24px;background-position:-296px -3170px}.work-docs-icon-locked-ffffff-24x24{width:24px;height:24px;background-position:-44px -3170px}.work-docs-icon-locked-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -3170px}.work-docs-icon-locked-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -3170px}.work-docs-icon-locked-212f3e-16x16{width:16px;height:16px;background-position:-388px -3170px}.work-docs-icon-locked-ffa724-16x16{width:16px;height:16px;background-position:-766px -3170px}.work-docs-icon-locked-0e72a3-16x16{width:16px;height:16px;background-position:-640px -3170px}.work-docs-icon-locked-808184-16x16{width:16px;height:16px;background-position:-262px -3170px}.work-docs-icon-locked-ffffff-16x16,.action-icon-checkout,.action-icon-checkout-open{width:16px;height:16px;background-position:-10px -3170px}.work-docs-icon-unchecked-d0d2d3-24x24,input[type=checkbox].wd-blue2-checkbox+label.wd-blue2-checkbox-label{width:24px;height:24px;background-position:-170px -3128px}.work-docs-icon-unchecked-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -3128px}.work-docs-icon-unchecked-212f3e-24x24{width:24px;height:24px;background-position:-422px -3128px}.work-docs-icon-unchecked-0e72a3-24x24{width:24px;height:24px;background-position:-674px -3128px}.work-docs-icon-unchecked-808184-24x24{width:24px;height:24px;background-position:-296px -3128px}.work-docs-icon-unchecked-ffffff-24x24,input[type=checkbox].wd-white-checkbox+label.wd-white-checkbox-label{width:24px;height:24px;background-position:-44px -3128px}.work-docs-icon-unchecked-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -3128px}.work-docs-icon-unchecked-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -3128px}.work-docs-icon-unchecked-212f3e-16x16{width:16px;height:16px;background-position:-388px -3128px}.work-docs-icon-unchecked-0e72a3-16x16{width:16px;height:16px;background-position:-640px -3128px}.work-docs-icon-unchecked-808184-16x16{width:16px;height:16px;background-position:-262px -3128px}.work-docs-icon-unchecked-ffffff-16x16{width:16px;height:16px;background-position:-10px -3128px}.work-docs-icon-checked-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -3086px}.work-docs-icon-checked-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -3086px}.work-docs-icon-checked-212f3e-24x24{width:24px;height:24px;background-position:-422px -3086px}.work-docs-icon-checked-0e72a3-24x24{width:24px;height:24px;background-position:-674px -3086px}.work-docs-icon-checked-808184-24x24{width:24px;height:24px;background-position:-296px -3086px}.work-docs-icon-checked-ffffff-24x24{width:24px;height:24px;background-position:-44px -3086px}.work-docs-icon-checked-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -3086px}.work-docs-icon-checked-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -3086px}.work-docs-icon-checked-212f3e-16x16{width:16px;height:16px;background-position:-388px -3086px}.work-docs-icon-checked-0e72a3-16x16{width:16px;height:16px;background-position:-640px -3086px}.work-docs-icon-checked-808184-16x16{width:16px;height:16px;background-position:-262px -3086px}.work-docs-icon-checked-ffffff-16x16{width:16px;height:16px;background-position:-10px -3086px}.work-docs-icon-checked-solid-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -3044px}.work-docs-icon-checked-solid-8ea9c9-24x24,input[type=checkbox].wd-blue2-checkbox:checked[disabled]+label.wd-blue2-checkbox-label,input[type=checkbox].wd-blue2-checkbox:checked+label.wd-blue2-checkbox-label{width:24px;height:24px;background-position:-548px -3044px}.work-docs-icon-checked-solid-212f3e-24x24{width:24px;height:24px;background-position:-422px -3044px}.work-docs-icon-checked-solid-0e72a3-24x24{width:24px;height:24px;background-position:-674px -3044px}.work-docs-icon-checked-solid-808184-24x24{width:24px;height:24px;background-position:-296px -3044px}.work-docs-icon-checked-solid-ffffff-24x24,input[type=checkbox].wd-white-checkbox:checked+label.wd-white-checkbox-label{width:24px;height:24px;background-position:-44px -3044px}.work-docs-icon-checked-solid-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -3044px}.work-docs-icon-checked-solid-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -3044px}.work-docs-icon-checked-solid-212f3e-16x16{width:16px;height:16px;background-position:-388px -3044px}.work-docs-icon-checked-solid-0e72a3-16x16{width:16px;height:16px;background-position:-640px -3044px}.work-docs-icon-checked-solid-808184-16x16{width:16px;height:16px;background-position:-262px -3044px}.work-docs-icon-checked-solid-ffffff-16x16{width:16px;height:16px;background-position:-10px -3044px}.work-docs-icon-trash-sm-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -3002px}.work-docs-icon-trash-sm-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -3002px}.work-docs-icon-trash-sm-212f3e-24x24{width:24px;height:24px;background-position:-422px -3002px}.work-docs-icon-trash-sm-0e72a3-24x24{width:24px;height:24px;background-position:-674px -3002px}.work-docs-icon-trash-sm-808184-24x24{width:24px;height:24px;background-position:-296px -3002px}.work-docs-icon-trash-sm-ffffff-24x24{width:24px;height:24px;background-position:-44px -3002px}.work-docs-icon-trash-sm-d0d2d3-16x16,#admin-div .delete-user-icon-disabled{width:16px;height:16px;background-position:-136px -3002px}.work-docs-icon-trash-sm-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -3002px}.work-docs-icon-trash-sm-212f3e-16x16{width:16px;height:16px;background-position:-388px -3002px}.work-docs-icon-trash-sm-0e72a3-16x16,#admin-div .delete-user-icon,.file-browser-title-bar .browser-trash-icon{width:16px;height:16px;background-position:-640px -3002px}.work-docs-icon-trash-sm-808184-16x16{width:16px;height:16px;background-position:-262px -3002px}.work-docs-icon-trash-sm-ffffff-16x16{width:16px;height:16px;background-position:-10px -3002px}.work-docs-icon-add-versions-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -2960px}.work-docs-icon-add-versions-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -2960px}.work-docs-icon-add-versions-212f3e-24x24{width:24px;height:24px;background-position:-422px -2960px}.work-docs-icon-add-versions-0e72a3-24x24{width:24px;height:24px;background-position:-674px -2960px}.work-docs-icon-add-versions-808184-24x24{width:24px;height:24px;background-position:-296px -2960px}.work-docs-icon-add-versions-ffffff-24x24{width:24px;height:24px;background-position:-44px -2960px}.work-docs-icon-add-versions-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -2960px}.work-docs-icon-add-versions-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -2960px}.work-docs-icon-add-versions-212f3e-16x16{width:16px;height:16px;background-position:-388px -2960px}.work-docs-icon-add-versions-0e72a3-16x16{width:16px;height:16px;background-position:-640px -2960px}.work-docs-icon-add-versions-808184-16x16{width:16px;height:16px;background-position:-262px -2960px}.work-docs-icon-add-versions-ffffff-16x16{width:16px;height:16px;background-position:-10px -2960px}.work-docs-icon-versions-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -2918px}.work-docs-icon-versions-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -2918px}.work-docs-icon-versions-212f3e-24x24{width:24px;height:24px;background-position:-422px -2918px}.work-docs-icon-versions-0e72a3-24x24{width:24px;height:24px;background-position:-674px -2918px}.work-docs-icon-versions-808184-24x24{width:24px;height:24px;background-position:-296px -2918px}.work-docs-icon-versions-ffffff-24x24{width:24px;height:24px;background-position:-44px -2918px}.work-docs-icon-versions-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -2918px}.work-docs-icon-versions-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -2918px}.work-docs-icon-versions-212f3e-16x16{width:16px;height:16px;background-position:-388px -2918px}.work-docs-icon-versions-0e72a3-16x16{width:16px;height:16px;background-position:-640px -2918px}.work-docs-icon-versions-808184-16x16{width:16px;height:16px;background-position:-262px -2918px}.work-docs-icon-versions-ffffff-16x16{width:16px;height:16px;background-position:-10px -2918px}.work-docs-icon-doc-lg-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -2876px}.work-docs-icon-doc-lg-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -2876px}.work-docs-icon-doc-lg-212f3e-24x24{width:24px;height:24px;background-position:-422px -2876px}.work-docs-icon-doc-lg-0e72a3-24x24{width:24px;height:24px;background-position:-674px -2876px}.work-docs-icon-doc-lg-808184-24x24{width:24px;height:24px;background-position:-296px -2876px}.work-docs-icon-doc-lg-ffffff-24x24{width:24px;height:24px;background-position:-44px -2876px}.work-docs-icon-doc-lg-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -2876px}.work-docs-icon-doc-lg-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -2876px}.work-docs-icon-doc-lg-212f3e-16x16{width:16px;height:16px;background-position:-388px -2876px}.work-docs-icon-doc-lg-0e72a3-16x16{width:16px;height:16px;background-position:-640px -2876px}.work-docs-icon-doc-lg-808184-16x16{width:16px;height:16px;background-position:-262px -2876px}.work-docs-icon-doc-lg-ffffff-16x16{width:16px;height:16px;background-position:-10px -2876px}.work-docs-icon-folder-lg-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -2834px}.work-docs-icon-folder-lg-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -2834px}.work-docs-icon-folder-lg-212f3e-24x24{width:24px;height:24px;background-position:-422px -2834px}.work-docs-icon-folder-lg-0e72a3-24x24{width:24px;height:24px;background-position:-674px -2834px}.work-docs-icon-folder-lg-808184-24x24{width:24px;height:24px;background-position:-296px -2834px}.work-docs-icon-folder-lg-ffffff-24x24{width:24px;height:24px;background-position:-44px -2834px}.work-docs-icon-folder-lg-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -2834px}.work-docs-icon-folder-lg-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -2834px}.work-docs-icon-folder-lg-212f3e-16x16{width:16px;height:16px;background-position:-388px -2834px}.work-docs-icon-folder-lg-0e72a3-16x16{width:16px;height:16px;background-position:-640px -2834px}.work-docs-icon-folder-lg-808184-16x16{width:16px;height:16px;background-position:-262px -2834px}.work-docs-icon-folder-lg-ffffff-16x16{width:16px;height:16px;background-position:-10px -2834px}.work-docs-icon-hamburger-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -2792px}.work-docs-icon-hamburger-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -2792px}.work-docs-icon-hamburger-212f3e-24x24{width:24px;height:24px;background-position:-422px -2792px}.work-docs-icon-hamburger-0e72a3-24x24{width:24px;height:24px;background-position:-674px -2792px}.work-docs-icon-hamburger-808184-24x24{width:24px;height:24px;background-position:-296px -2792px}.work-docs-icon-hamburger-ffffff-24x24{width:24px;height:24px;background-position:-44px -2792px}.work-docs-icon-hamburger-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -2792px}.work-docs-icon-hamburger-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -2792px}.work-docs-icon-hamburger-212f3e-16x16{width:16px;height:16px;background-position:-388px -2792px}.work-docs-icon-hamburger-0e72a3-16x16{width:16px;height:16px;background-position:-640px -2792px}.work-docs-icon-hamburger-808184-16x16{width:16px;height:16px;background-position:-262px -2792px}.work-docs-icon-hamburger-ffffff-16x16{width:16px;height:16px;background-position:-10px -2792px}.work-docs-icon-back-d0d2d3-36x24{width:36px;height:24px;background-position:-170px -2750px}.work-docs-icon-back-8ea9c9-36x24{width:36px;height:24px;background-position:-548px -2750px}.work-docs-icon-back-212f3e-36x24{width:36px;height:24px;background-position:-422px -2750px}.work-docs-icon-back-0e72a3-36x24{width:36px;height:24px;background-position:-674px -2750px}.work-docs-icon-back-808184-36x24{width:36px;height:24px;background-position:-296px -2750px}.work-docs-icon-back-ffffff-36x24{width:36px;height:24px;background-position:-44px -2750px}.work-docs-icon-back-d0d2d3-24x16{width:24px;height:16px;background-position:-136px -2750px}.work-docs-icon-back-8ea9c9-24x16{width:24px;height:16px;background-position:-514px -2750px}.work-docs-icon-back-212f3e-24x16{width:24px;height:16px;background-position:-388px -2750px}.work-docs-icon-back-0e72a3-24x16,.folder-breadcrumb-back .folder-back-icon{width:24px;height:16px;background-position:-640px -2750px}.work-docs-icon-back-808184-24x16{width:24px;height:16px;background-position:-262px -2750px}.work-docs-icon-back-ffffff-24x16{width:24px;height:16px;background-position:-10px -2750px}.work-docs-icon-tray-control-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -2708px}.work-docs-icon-tray-control-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -2708px}.work-docs-icon-tray-control-212f3e-24x24{width:24px;height:24px;background-position:-422px -2708px}.work-docs-icon-tray-control-0e72a3-24x24{width:24px;height:24px;background-position:-674px -2708px}.work-docs-icon-tray-control-808184-24x24{width:24px;height:24px;background-position:-296px -2708px}.work-docs-icon-tray-control-ffffff-24x24,.left-sidebar-top .left-sidebar-toggle,.right-sidebar-minimized .sidebar-openpanel{width:24px;height:24px;background-position:-44px -2708px}.work-docs-icon-tray-control-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -2708px}.work-docs-icon-tray-control-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -2708px}.work-docs-icon-tray-control-212f3e-16x16{width:16px;height:16px;background-position:-388px -2708px}.work-docs-icon-tray-control-0e72a3-16x16{width:16px;height:16px;background-position:-640px -2708px}.work-docs-icon-tray-control-808184-16x16{width:16px;height:16px;background-position:-262px -2708px}.work-docs-icon-tray-control-ffffff-16x16{width:16px;height:16px;background-position:-10px -2708px}.work-docs-icon-bug-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -2666px}.work-docs-icon-bug-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -2666px}.work-docs-icon-bug-212f3e-24x24{width:24px;height:24px;background-position:-422px -2666px}.work-docs-icon-bug-0e72a3-24x24{width:24px;height:24px;background-position:-674px -2666px}.work-docs-icon-bug-808184-24x24{width:24px;height:24px;background-position:-296px -2666px}.work-docs-icon-bug-ffffff-24x24{width:24px;height:24px;background-position:-44px -2666px}.work-docs-icon-bug-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -2666px}.work-docs-icon-bug-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -2666px}.work-docs-icon-bug-212f3e-16x16{width:16px;height:16px;background-position:-388px -2666px}.work-docs-icon-bug-0e72a3-16x16{width:16px;height:16px;background-position:-640px -2666px}.work-docs-icon-bug-808184-16x16{width:16px;height:16px;background-position:-262px -2666px}.work-docs-icon-bug-ffffff-16x16{width:16px;height:16px;background-position:-10px -2666px}.work-docs-icon-list-view-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -2624px}.work-docs-icon-list-view-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -2624px}.work-docs-icon-list-view-212f3e-24x24,.file-browser-title-bar .browser-list-view{width:24px;height:24px;background-position:-422px -2624px}.work-docs-icon-list-view-0e72a3-24x24,.file-browser-title-bar .title-bar-list .active .browser-list-view{width:24px;height:24px;background-position:-674px -2624px}.work-docs-icon-list-view-808184-24x24{width:24px;height:24px;background-position:-296px -2624px}.work-docs-icon-list-view-ffffff-24x24{width:24px;height:24px;background-position:-44px -2624px}.work-docs-icon-list-view-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -2624px}.work-docs-icon-list-view-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -2624px}.work-docs-icon-list-view-212f3e-16x16{width:16px;height:16px;background-position:-388px -2624px}.work-docs-icon-list-view-0e72a3-16x16{width:16px;height:16px;background-position:-640px -2624px}.work-docs-icon-list-view-808184-16x16{width:16px;height:16px;background-position:-262px -2624px}.work-docs-icon-list-view-ffffff-16x16{width:16px;height:16px;background-position:-10px -2624px}.work-docs-icon-icon-view-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -2582px}.work-docs-icon-icon-view-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -2582px}.work-docs-icon-icon-view-212f3e-24x24,.file-browser-title-bar .browser-thumbnail-view{width:24px;height:24px;background-position:-422px -2582px}.work-docs-icon-icon-view-0e72a3-24x24,.file-browser-title-bar .title-bar-list .active .browser-thumbnail-view{width:24px;height:24px;background-position:-674px -2582px}.work-docs-icon-icon-view-808184-24x24{width:24px;height:24px;background-position:-296px -2582px}.work-docs-icon-icon-view-ffffff-24x24{width:24px;height:24px;background-position:-44px -2582px}.work-docs-icon-icon-view-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -2582px}.work-docs-icon-icon-view-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -2582px}.work-docs-icon-icon-view-212f3e-16x16{width:16px;height:16px;background-position:-388px -2582px}.work-docs-icon-icon-view-0e72a3-16x16{width:16px;height:16px;background-position:-640px -2582px}.work-docs-icon-icon-view-808184-16x16{width:16px;height:16px;background-position:-262px -2582px}.work-docs-icon-icon-view-ffffff-16x16{width:16px;height:16px;background-position:-10px -2582px}.work-docs-icon-remove-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -2540px}.work-docs-icon-remove-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -2540px}.work-docs-icon-remove-212f3e-24x24{width:24px;height:24px;background-position:-422px -2540px}.work-docs-icon-remove-0e72a3-24x24{width:24px;height:24px;background-position:-674px -2540px}.work-docs-icon-remove-808184-24x24{width:24px;height:24px;background-position:-296px -2540px}.work-docs-icon-remove-ffffff-24x24{width:24px;height:24px;background-position:-44px -2540px}.work-docs-icon-remove-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -2540px}.work-docs-icon-remove-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -2540px}.work-docs-icon-remove-212f3e-16x16{width:16px;height:16px;background-position:-388px -2540px}.work-docs-icon-remove-0e72a3-16x16{width:16px;height:16px;background-position:-640px -2540px}.work-docs-icon-remove-808184-16x16{width:16px;height:16px;background-position:-262px -2540px}.work-docs-icon-remove-ffffff-16x16{width:16px;height:16px;background-position:-10px -2540px}.work-docs-icon-add-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -2498px}.work-docs-icon-add-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -2498px}.work-docs-icon-add-212f3e-24x24{width:24px;height:24px;background-position:-422px -2498px}.work-docs-icon-add-0e72a3-24x24{width:24px;height:24px;background-position:-674px -2498px}.work-docs-icon-add-808184-24x24{width:24px;height:24px;background-position:-296px -2498px}.work-docs-icon-add-ffffff-24x24{width:24px;height:24px;background-position:-44px -2498px}.work-docs-icon-add-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -2498px}.work-docs-icon-add-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -2498px}.work-docs-icon-add-212f3e-16x16{width:16px;height:16px;background-position:-388px -2498px}.work-docs-icon-add-0e72a3-16x16{width:16px;height:16px;background-position:-640px -2498px}.work-docs-icon-add-808184-16x16{width:16px;height:16px;background-position:-262px -2498px}.work-docs-icon-add-ffffff-16x16{width:16px;height:16px;background-position:-10px -2498px}.work-docs-icon-add-folder-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -2456px}.work-docs-icon-add-folder-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -2456px}.work-docs-icon-add-folder-212f3e-24x24{width:24px;height:24px;background-position:-422px -2456px}.work-docs-icon-add-folder-0e72a3-24x24{width:24px;height:24px;background-position:-674px -2456px}.work-docs-icon-add-folder-808184-24x24{width:24px;height:24px;background-position:-296px -2456px}.work-docs-icon-add-folder-ffffff-24x24{width:24px;height:24px;background-position:-44px -2456px}.work-docs-icon-add-folder-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -2456px}.work-docs-icon-add-folder-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -2456px}.work-docs-icon-add-folder-212f3e-16x16{width:16px;height:16px;background-position:-388px -2456px}.work-docs-icon-add-folder-0e72a3-16x16,.file-browser-title-bar .browser-create-folder-icon{width:16px;height:16px;background-position:-640px -2456px}.work-docs-icon-add-folder-808184-16x16{width:16px;height:16px;background-position:-262px -2456px}.work-docs-icon-add-folder-ffffff-16x16{width:16px;height:16px;background-position:-10px -2456px}.work-docs-icon-comments-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -2414px}.work-docs-icon-comments-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -2414px}.work-docs-icon-comments-212f3e-24x24{width:24px;height:24px;background-position:-422px -2414px}.work-docs-icon-comments-0e72a3-24x24{width:24px;height:24px;background-position:-674px -2414px}.work-docs-icon-comments-808184-24x24{width:24px;height:24px;background-position:-296px -2414px}.work-docs-icon-comments-ffffff-24x24{width:24px;height:24px;background-position:-44px -2414px}.work-docs-icon-comments-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -2414px}.work-docs-icon-comments-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -2414px}.work-docs-icon-comments-212f3e-16x16{width:16px;height:16px;background-position:-388px -2414px}.work-docs-icon-comments-0e72a3-16x16{width:16px;height:16px;background-position:-640px -2414px}.work-docs-icon-comments-808184-16x16{width:16px;height:16px;background-position:-262px -2414px}.work-docs-icon-comments-ffffff-16x16{width:16px;height:16px;background-position:-10px -2414px}.work-docs-icon-search-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -2372px}.work-docs-icon-search-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -2372px}.work-docs-icon-search-212f3e-24x24{width:24px;height:24px;background-position:-422px -2372px}.work-docs-icon-search-0e72a3-24x24{width:24px;height:24px;background-position:-674px -2372px}.work-docs-icon-search-808184-24x24,.left-sidebar-minimized .ln-search .sprite-icon{width:24px;height:24px;background-position:-296px -2372px}.work-docs-icon-search-ffffff-24x24,.left-sidebar-minimized .ln-search:hover .sprite-icon,.left-sidebar-minimized .ln-search.active .sprite-icon,.left-sidebar-minimized .ln-search.show-item .sprite-icon{width:24px;height:24px;background-position:-44px -2372px}.work-docs-icon-search-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -2372px}.work-docs-icon-search-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -2372px}.work-docs-icon-search-212f3e-16x16{width:16px;height:16px;background-position:-388px -2372px}.work-docs-icon-search-0e72a3-16x16,#admin-div .search-user-icon{width:16px;height:16px;background-position:-640px -2372px}.work-docs-icon-search-808184-16x16{width:16px;height:16px;background-position:-262px -2372px}.work-docs-icon-search-ffffff-16x16{width:16px;height:16px;background-position:-10px -2372px}.work-docs-icon-device-offline-documents-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -2330px}.work-docs-icon-device-offline-documents-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -2330px}.work-docs-icon-device-offline-documents-212f3e-24x24{width:24px;height:24px;background-position:-422px -2330px}.work-docs-icon-device-offline-documents-0e72a3-24x24{width:24px;height:24px;background-position:-674px -2330px}.work-docs-icon-device-offline-documents-808184-24x24{width:24px;height:24px;background-position:-296px -2330px}.work-docs-icon-device-offline-documents-ffffff-24x24{width:24px;height:24px;background-position:-44px -2330px}.work-docs-icon-device-offline-documents-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -2330px}.work-docs-icon-device-offline-documents-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -2330px}.work-docs-icon-device-offline-documents-212f3e-16x16{width:16px;height:16px;background-position:-388px -2330px}.work-docs-icon-device-offline-documents-0e72a3-16x16{width:16px;height:16px;background-position:-640px -2330px}.work-docs-icon-device-offline-documents-808184-16x16{width:16px;height:16px;background-position:-262px -2330px}.work-docs-icon-device-offline-documents-ffffff-16x16{width:16px;height:16px;background-position:-10px -2330px}.work-docs-icon-filled-offline-documents-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -2288px}.work-docs-icon-filled-offline-documents-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -2288px}.work-docs-icon-filled-offline-documents-212f3e-24x24{width:24px;height:24px;background-position:-422px -2288px}.work-docs-icon-filled-offline-documents-0e72a3-24x24{width:24px;height:24px;background-position:-674px -2288px}.work-docs-icon-filled-offline-documents-808184-24x24{width:24px;height:24px;background-position:-296px -2288px}.work-docs-icon-filled-offline-documents-ffffff-24x24{width:24px;height:24px;background-position:-44px -2288px}.work-docs-icon-filled-offline-documents-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -2288px}.work-docs-icon-filled-offline-documents-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -2288px}.work-docs-icon-filled-offline-documents-212f3e-16x16{width:16px;height:16px;background-position:-388px -2288px}.work-docs-icon-filled-offline-documents-0e72a3-16x16{width:16px;height:16px;background-position:-640px -2288px}.work-docs-icon-filled-offline-documents-808184-16x16{width:16px;height:16px;background-position:-262px -2288px}.work-docs-icon-filled-offline-documents-ffffff-16x16{width:16px;height:16px;background-position:-10px -2288px}.work-docs-icon-offline-documents-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -2246px}.work-docs-icon-offline-documents-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -2246px}.work-docs-icon-offline-documents-212f3e-24x24{width:24px;height:24px;background-position:-422px -2246px}.work-docs-icon-offline-documents-0e72a3-24x24{width:24px;height:24px;background-position:-674px -2246px}.work-docs-icon-offline-documents-808184-24x24{width:24px;height:24px;background-position:-296px -2246px}.work-docs-icon-offline-documents-ffffff-24x24{width:24px;height:24px;background-position:-44px -2246px}.work-docs-icon-offline-documents-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -2246px}.work-docs-icon-offline-documents-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -2246px}.work-docs-icon-offline-documents-212f3e-16x16{width:16px;height:16px;background-position:-388px -2246px}.work-docs-icon-offline-documents-0e72a3-16x16{width:16px;height:16px;background-position:-640px -2246px}.work-docs-icon-offline-documents-808184-16x16{width:16px;height:16px;background-position:-262px -2246px}.work-docs-icon-offline-documents-ffffff-16x16{width:16px;height:16px;background-position:-10px -2246px}.work-docs-icon-settings-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -2204px}.work-docs-icon-settings-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -2204px}.work-docs-icon-settings-212f3e-24x24{width:24px;height:24px;background-position:-422px -2204px}.work-docs-icon-settings-0e72a3-24x24{width:24px;height:24px;background-position:-674px -2204px}.work-docs-icon-settings-808184-24x24{width:24px;height:24px;background-position:-296px -2204px}.work-docs-icon-settings-ffffff-24x24{width:24px;height:24px;background-position:-44px -2204px}.work-docs-icon-settings-d0d2d3-16x16,.tab-names .tab-name .file-info-icon{width:16px;height:16px;background-position:-136px -2204px}.work-docs-icon-settings-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -2204px}.work-docs-icon-settings-212f3e-16x16{width:16px;height:16px;background-position:-388px -2204px}.work-docs-icon-settings-0e72a3-16x16{width:16px;height:16px;background-position:-640px -2204px}.work-docs-icon-settings-808184-16x16{width:16px;height:16px;background-position:-262px -2204px}.work-docs-icon-settings-ffffff-16x16,.tab-names .tab-name a:hover .file-info-icon,.tab-names .tab-name a.active .file-info-icon{width:16px;height:16px;background-position:-10px -2204px}.work-docs-icon-log-out-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -2162px}.work-docs-icon-log-out-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -2162px}.work-docs-icon-log-out-212f3e-24x24{width:24px;height:24px;background-position:-422px -2162px}.work-docs-icon-log-out-0e72a3-24x24{width:24px;height:24px;background-position:-674px -2162px}.work-docs-icon-log-out-808184-24x24,#left-sidebar .logout-icon,.left-sidebar-minimized .ln-logout .sprite-icon{width:24px;height:24px;background-position:-296px -2162px}.work-docs-icon-log-out-ffffff-24x24,#left-sidebar .active .logout-icon,#left-sidebar li:hover .logout-icon,.left-sidebar-minimized .ln-logout:hover .sprite-icon,.left-sidebar-minimized .ln-logout.active .sprite-icon{width:24px;height:24px;background-position:-44px -2162px}.work-docs-icon-log-out-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -2162px}.work-docs-icon-log-out-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -2162px}.work-docs-icon-log-out-212f3e-16x16{width:16px;height:16px;background-position:-388px -2162px}.work-docs-icon-log-out-0e72a3-16x16{width:16px;height:16px;background-position:-640px -2162px}.work-docs-icon-log-out-808184-16x16{width:16px;height:16px;background-position:-262px -2162px}.work-docs-icon-log-out-ffffff-16x16{width:16px;height:16px;background-position:-10px -2162px}.work-docs-icon-download-apps-0e72a3-24x24{width:24px;height:24px;background-position:-674px -2120px}.work-docs-icon-download-apps-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -2120px}.work-docs-icon-download-apps-212f3e-24x24{width:24px;height:24px;background-position:-422px -2120px}.work-docs-icon-download-apps-808184-24x24,.left-sidebar-minimized .ln-download-apps .sprite-icon{width:24px;height:24px;background-position:-296px -2120px}.work-docs-icon-download-apps-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -2120px}.work-docs-icon-download-apps-ffffff-24x24,.left-sidebar-minimized .ln-download-apps:hover .sprite-icon,.left-sidebar-minimized .ln-download-apps.active .sprite-icon{width:24px;height:24px;background-position:-44px -2120px}.work-docs-icon-download-apps-0e72a3-16x16{width:16px;height:16px;background-position:-640px -2120px}.work-docs-icon-download-apps-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -2120px}.work-docs-icon-download-apps-212f3e-16x16{width:16px;height:16px;background-position:-388px -2120px}.work-docs-icon-download-apps-808184-16x16{width:16px;height:16px;background-position:-262px -2120px}.work-docs-icon-download-apps-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -2120px}.work-docs-icon-download-apps-ffffff-16x16{width:16px;height:16px;background-position:-10px -2120px}.work-docs-icon-profile-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -2078px}.work-docs-icon-profile-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -2078px}.work-docs-icon-profile-212f3e-24x24{width:24px;height:24px;background-position:-422px -2078px}.work-docs-icon-profile-0e72a3-24x24{width:24px;height:24px;background-position:-674px -2078px}.work-docs-icon-profile-808184-24x24,#left-sidebar .profile-icon,.left-sidebar-minimized .ln-profile .sprite-icon{width:24px;height:24px;background-position:-296px -2078px}.work-docs-icon-profile-ffffff-24x24,#left-sidebar .active .profile-icon,#left-sidebar li:hover .profile-icon,.left-sidebar-minimized .ln-profile:hover .sprite-icon,.left-sidebar-minimized .ln-profile.active .sprite-icon{width:24px;height:24px;background-position:-44px -2078px}.work-docs-icon-profile-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -2078px}.work-docs-icon-profile-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -2078px}.work-docs-icon-profile-212f3e-16x16{width:16px;height:16px;background-position:-388px -2078px}.work-docs-icon-profile-0e72a3-16x16{width:16px;height:16px;background-position:-640px -2078px}.work-docs-icon-profile-808184-16x16{width:16px;height:16px;background-position:-262px -2078px}.work-docs-icon-profile-ffffff-16x16{width:16px;height:16px;background-position:-10px -2078px}.work-docs-icon-trash-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -2036px}.work-docs-icon-trash-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -2036px}.work-docs-icon-trash-212f3e-24x24{width:24px;height:24px;background-position:-422px -2036px}.work-docs-icon-trash-0e72a3-24x24{width:24px;height:24px;background-position:-674px -2036px}.work-docs-icon-trash-808184-24x24,#left-sidebar .recycle-bin-icon,.left-sidebar-minimized .ln-recycled .sprite-icon{width:24px;height:24px;background-position:-296px -2036px}.work-docs-icon-trash-ffffff-24x24,#left-sidebar .active .recycle-bin-icon,#left-sidebar li:hover .recycle-bin-icon,.left-sidebar-minimized .ln-recycled:hover .sprite-icon,.left-sidebar-minimized .ln-recycled.active .sprite-icon{width:24px;height:24px;background-position:-44px -2036px}.work-docs-icon-trash-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -2036px}.work-docs-icon-trash-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -2036px}.work-docs-icon-trash-212f3e-16x16{width:16px;height:16px;background-position:-388px -2036px}.work-docs-icon-trash-0e72a3-16x16,.version-switch-button-link .delete-version-button .version-delete-trash-icon{width:16px;height:16px;background-position:-640px -2036px}.work-docs-icon-trash-808184-16x16{width:16px;height:16px;background-position:-262px -2036px}.work-docs-icon-trash-ffffff-16x16,.action-icon-delete{width:16px;height:16px;background-position:-10px -2036px}.work-docs-icon-out-for-review-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -1994px}.work-docs-icon-out-for-review-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -1994px}.work-docs-icon-out-for-review-212f3e-24x24{width:24px;height:24px;background-position:-422px -1994px}.work-docs-icon-out-for-review-0e72a3-24x24{width:24px;height:24px;background-position:-674px -1994px}.work-docs-icon-out-for-review-808184-24x24,#left-sidebar .out-for-review-icon,.left-sidebar-minimized .ln-out-for-review .sprite-icon{width:24px;height:24px;background-position:-296px -1994px}.work-docs-icon-out-for-review-ffffff-24x24,#left-sidebar .active .out-for-review-icon,#left-sidebar li:hover .out-for-review-icon,.left-sidebar-minimized .ln-out-for-review:hover .sprite-icon,.left-sidebar-minimized .ln-out-for-review.active .sprite-icon{width:24px;height:24px;background-position:-44px -1994px}.work-docs-icon-out-for-review-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -1994px}.work-docs-icon-out-for-review-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -1994px}.work-docs-icon-out-for-review-212f3e-16x16{width:16px;height:16px;background-position:-388px -1994px}.work-docs-icon-out-for-review-0e72a3-16x16{width:16px;height:16px;background-position:-640px -1994px}.work-docs-icon-out-for-review-808184-16x16{width:16px;height:16px;background-position:-262px -1994px}.work-docs-icon-out-for-review-ffffff-16x16{width:16px;height:16px;background-position:-10px -1994px}.work-docs-icon-awaiting-feedback-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -1952px}.work-docs-icon-awaiting-feedback-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -1952px}.work-docs-icon-awaiting-feedback-212f3e-24x24{width:24px;height:24px;background-position:-422px -1952px}.work-docs-icon-awaiting-feedback-0e72a3-24x24{width:24px;height:24px;background-position:-674px -1952px}.work-docs-icon-awaiting-feedback-808184-24x24,#left-sidebar .awaiting-my-feedback-icon,.left-sidebar-minimized .ln-awaiting-feedback .sprite-icon{width:24px;height:24px;background-position:-296px -1952px}.work-docs-icon-awaiting-feedback-ffffff-24x24,#left-sidebar .active .awaiting-my-feedback-icon,#left-sidebar li:hover .awaiting-my-feedback-icon,.left-sidebar-minimized .ln-awaiting-feedback:hover .sprite-icon,.left-sidebar-minimized .ln-awaiting-feedback.active .sprite-icon{width:24px;height:24px;background-position:-44px -1952px}.work-docs-icon-awaiting-feedback-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -1952px}.work-docs-icon-awaiting-feedback-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -1952px}.work-docs-icon-awaiting-feedback-212f3e-16x16{width:16px;height:16px;background-position:-388px -1952px}.work-docs-icon-awaiting-feedback-0e72a3-16x16{width:16px;height:16px;background-position:-640px -1952px}.work-docs-icon-awaiting-feedback-808184-16x16{width:16px;height:16px;background-position:-262px -1952px}.work-docs-icon-awaiting-feedback-ffffff-16x16{width:16px;height:16px;background-position:-10px -1952px}.work-docs-icon-shared-with-me-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -1910px}.work-docs-icon-shared-with-me-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -1910px}.work-docs-icon-shared-with-me-212f3e-24x24{width:24px;height:24px;background-position:-422px -1910px}.work-docs-icon-shared-with-me-0e72a3-24x24{width:24px;height:24px;background-position:-674px -1910px}.work-docs-icon-shared-with-me-808184-24x24{width:24px;height:24px;background-position:-296px -1910px}.work-docs-icon-shared-with-me-ffffff-24x24{width:24px;height:24px;background-position:-44px -1910px}.work-docs-icon-shared-with-me-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -1910px}.work-docs-icon-shared-with-me-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -1910px}.work-docs-icon-shared-with-me-212f3e-16x16{width:16px;height:16px;background-position:-388px -1910px}.work-docs-icon-shared-with-me-0e72a3-16x16{width:16px;height:16px;background-position:-640px -1910px}.work-docs-icon-shared-with-me-808184-16x16{width:16px;height:16px;background-position:-262px -1910px}.work-docs-icon-shared-with-me-ffffff-16x16{width:16px;height:16px;background-position:-10px -1910px}.work-docs-icon-my-documents-d0d2d3-24x24{width:24px;height:24px;background-position:-170px -1868px}.work-docs-icon-my-documents-8ea9c9-24x24{width:24px;height:24px;background-position:-548px -1868px}.work-docs-icon-my-documents-212f3e-24x24{width:24px;height:24px;background-position:-422px -1868px}.work-docs-icon-my-documents-0e72a3-24x24{width:24px;height:24px;background-position:-674px -1868px}.work-docs-icon-my-documents-808184-24x24,#left-sidebar .my-document-icon,.left-sidebar-minimized .ln-my-documents .sprite-icon{width:24px;height:24px;background-position:-296px -1868px}.work-docs-icon-my-documents-ffffff-24x24,#left-sidebar .active .my-document-icon,#left-sidebar li:hover .my-document-icon,.left-sidebar-minimized .ln-my-documents:hover .sprite-icon,.left-sidebar-minimized .ln-my-documents.active .sprite-icon{width:24px;height:24px;background-position:-44px -1868px}.work-docs-icon-my-documents-d0d2d3-16x16{width:16px;height:16px;background-position:-136px -1868px}.work-docs-icon-my-documents-8ea9c9-16x16{width:16px;height:16px;background-position:-514px -1868px}.work-docs-icon-my-documents-212f3e-16x16{width:16px;height:16px;background-position:-388px -1868px}.work-docs-icon-my-documents-0e72a3-16x16{width:16px;height:16px;background-position:-640px -1868px}.work-docs-icon-my-documents-808184-16x16{width:16px;height:16px;background-position:-262px -1868px}.work-docs-icon-my-documents-ffffff-16x16{width:16px;height:16px;background-position:-10px -1868px}.work-docs-icon-comments-xl-bold-d0d2d3-64x64{width:64px;height:64px;background-position:-178px -1794px}.work-docs-icon-comments-xl-bold-8ea9c9-64x64{width:64px;height:64px;background-position:-556px -1794px}.work-docs-icon-comments-xl-bold-212f3e-64x64{width:64px;height:64px;background-position:-430px -1794px}.work-docs-icon-comments-xl-bold-0e72a3-64x64{width:64px;height:64px;background-position:-682px -1794px}.work-docs-icon-comments-xl-bold-808184-64x64{width:64px;height:64px;background-position:-304px -1794px}.work-docs-icon-comments-xl-bold-ffffff-64x64{width:64px;height:64px;background-position:-52px -1794px}.work-docs-icon-comments-xl-bold-d0d2d3-32x32{width:32px;height:32px;background-position:-136px -1794px}.work-docs-icon-comments-xl-bold-8ea9c9-32x32{width:32px;height:32px;background-position:-514px -1794px}.work-docs-icon-comments-xl-bold-212f3e-32x32{width:32px;height:32px;background-position:-388px -1794px}.work-docs-icon-comments-xl-bold-0e72a3-32x32{width:32px;height:32px;background-position:-640px -1794px}.work-docs-icon-comments-xl-bold-808184-32x32{width:32px;height:32px;background-position:-262px -1794px}.work-docs-icon-comments-xl-bold-ffffff-32x32{width:32px;height:32px;background-position:-10px -1794px}.work-docs-icon-comments-xl-d0d2d3-64x64{width:64px;height:64px;background-position:-178px -1720px}.work-docs-icon-comments-xl-8ea9c9-64x64{width:64px;height:64px;background-position:-556px -1720px}.work-docs-icon-comments-xl-212f3e-64x64{width:64px;height:64px;background-position:-430px -1720px}.work-docs-icon-comments-xl-0e72a3-64x64{width:64px;height:64px;background-position:-682px -1720px}.work-docs-icon-comments-xl-808184-64x64{width:64px;height:64px;background-position:-304px -1720px}.work-docs-icon-comments-xl-ffffff-64x64{width:64px;height:64px;background-position:-52px -1720px}.work-docs-icon-comments-xl-d0d2d3-32x32{width:32px;height:32px;background-position:-136px -1720px}.work-docs-icon-comments-xl-8ea9c9-32x32{width:32px;height:32px;background-position:-514px -1720px}.work-docs-icon-comments-xl-212f3e-32x32{width:32px;height:32px;background-position:-388px -1720px}.work-docs-icon-comments-xl-0e72a3-32x32{width:32px;height:32px;background-position:-640px -1720px}.work-docs-icon-comments-xl-808184-32x32{width:32px;height:32px;background-position:-262px -1720px}.work-docs-icon-comments-xl-ffffff-32x32{width:32px;height:32px;background-position:-10px -1720px}.work-docs-icon-search-xl-bold-d0d2d3-64x64{width:64px;height:64px;background-position:-178px -1646px}.work-docs-icon-search-xl-bold-8ea9c9-64x64{width:64px;height:64px;background-position:-556px -1646px}.work-docs-icon-search-xl-bold-212f3e-64x64{width:64px;height:64px;background-position:-430px -1646px}.work-docs-icon-search-xl-bold-0e72a3-64x64{width:64px;height:64px;background-position:-682px -1646px}.work-docs-icon-search-xl-bold-808184-64x64{width:64px;height:64px;background-position:-304px -1646px}.work-docs-icon-search-xl-bold-ffffff-64x64{width:64px;height:64px;background-position:-52px -1646px}.work-docs-icon-search-xl-bold-d0d2d3-32x32{width:32px;height:32px;background-position:-136px -1646px}.work-docs-icon-search-xl-bold-8ea9c9-32x32{width:32px;height:32px;background-position:-514px -1646px}.work-docs-icon-search-xl-bold-212f3e-32x32{width:32px;height:32px;background-position:-388px -1646px}.work-docs-icon-search-xl-bold-0e72a3-32x32{width:32px;height:32px;background-position:-640px -1646px}.work-docs-icon-search-xl-bold-808184-32x32{width:32px;height:32px;background-position:-262px -1646px}.work-docs-icon-search-xl-bold-ffffff-32x32{width:32px;height:32px;background-position:-10px -1646px}.work-docs-icon-search-xl-d0d2d3-64x64{width:64px;height:64px;background-position:-178px -1572px}.work-docs-icon-search-xl-8ea9c9-64x64{width:64px;height:64px;background-position:-556px -1572px}.work-docs-icon-search-xl-212f3e-64x64{width:64px;height:64px;background-position:-430px -1572px}.work-docs-icon-search-xl-0e72a3-64x64{width:64px;height:64px;background-position:-682px -1572px}.work-docs-icon-search-xl-808184-64x64{width:64px;height:64px;background-position:-304px -1572px}.work-docs-icon-search-xl-ffffff-64x64{width:64px;height:64px;background-position:-52px -1572px}.work-docs-icon-search-xl-d0d2d3-32x32{width:32px;height:32px;background-position:-136px -1572px}.work-docs-icon-search-xl-8ea9c9-32x32{width:32px;height:32px;background-position:-514px -1572px}.work-docs-icon-search-xl-212f3e-32x32{width:32px;height:32px;background-position:-388px -1572px}.work-docs-icon-search-xl-0e72a3-32x32{width:32px;height:32px;background-position:-640px -1572px}.work-docs-icon-search-xl-808184-32x32{width:32px;height:32px;background-position:-262px -1572px}.work-docs-icon-search-xl-ffffff-32x32{width:32px;height:32px;background-position:-10px -1572px}.work-docs-icon-offline-documents-xl-bold-d0d2d3-64x64{width:64px;height:64px;background-position:-178px -1498px}.work-docs-icon-offline-documents-xl-bold-8ea9c9-64x64{width:64px;height:64px;background-position:-556px -1498px}.work-docs-icon-offline-documents-xl-bold-212f3e-64x64{width:64px;height:64px;background-position:-430px -1498px}.work-docs-icon-offline-documents-xl-bold-0e72a3-64x64{width:64px;height:64px;background-position:-682px -1498px}.work-docs-icon-offline-documents-xl-bold-808184-64x64{width:64px;height:64px;background-position:-304px -1498px}.work-docs-icon-offline-documents-xl-bold-ffffff-64x64{width:64px;height:64px;background-position:-52px -1498px}.work-docs-icon-offline-documents-xl-bold-d0d2d3-32x32{width:32px;height:32px;background-position:-136px -1498px}.work-docs-icon-offline-documents-xl-bold-8ea9c9-32x32{width:32px;height:32px;background-position:-514px -1498px}.work-docs-icon-offline-documents-xl-bold-212f3e-32x32{width:32px;height:32px;background-position:-388px -1498px}.work-docs-icon-offline-documents-xl-bold-0e72a3-32x32{width:32px;height:32px;background-position:-640px -1498px}.work-docs-icon-offline-documents-xl-bold-808184-32x32{width:32px;height:32px;background-position:-262px -1498px}.work-docs-icon-offline-documents-xl-bold-ffffff-32x32{width:32px;height:32px;background-position:-10px -1498px}.work-docs-icon-offline-documents-xl-d0d2d3-64x64{width:64px;height:64px;background-position:-178px -1424px}.work-docs-icon-offline-documents-xl-8ea9c9-64x64{width:64px;height:64px;background-position:-556px -1424px}.work-docs-icon-offline-documents-xl-212f3e-64x64{width:64px;height:64px;background-position:-430px -1424px}.work-docs-icon-offline-documents-xl-0e72a3-64x64{width:64px;height:64px;background-position:-682px -1424px}.work-docs-icon-offline-documents-xl-808184-64x64{width:64px;height:64px;background-position:-304px -1424px}.work-docs-icon-offline-documents-xl-ffffff-64x64{width:64px;height:64px;background-position:-52px -1424px}.work-docs-icon-offline-documents-xl-d0d2d3-32x32{width:32px;height:32px;background-position:-136px -1424px}.work-docs-icon-offline-documents-xl-8ea9c9-32x32{width:32px;height:32px;background-position:-514px -1424px}.work-docs-icon-offline-documents-xl-212f3e-32x32{width:32px;height:32px;background-position:-388px -1424px}.work-docs-icon-offline-documents-xl-0e72a3-32x32{width:32px;height:32px;background-position:-640px -1424px}.work-docs-icon-offline-documents-xl-808184-32x32{width:32px;height:32px;background-position:-262px -1424px}.work-docs-icon-offline-documents-xl-ffffff-32x32{width:32px;height:32px;background-position:-10px -1424px}.work-docs-icon-settings-xl-bold-d0d2d3-64x64{width:64px;height:64px;background-position:-178px -1350px}.work-docs-icon-settings-xl-bold-8ea9c9-64x64{width:64px;height:64px;background-position:-556px -1350px}.work-docs-icon-settings-xl-bold-212f3e-64x64{width:64px;height:64px;background-position:-430px -1350px}.work-docs-icon-settings-xl-bold-0e72a3-64x64{width:64px;height:64px;background-position:-682px -1350px}.work-docs-icon-settings-xl-bold-808184-64x64{width:64px;height:64px;background-position:-304px -1350px}.work-docs-icon-settings-xl-bold-ffffff-64x64{width:64px;height:64px;background-position:-52px -1350px}.work-docs-icon-settings-xl-bold-d0d2d3-32x32{width:32px;height:32px;background-position:-136px -1350px}.work-docs-icon-settings-xl-bold-8ea9c9-32x32{width:32px;height:32px;background-position:-514px -1350px}.work-docs-icon-settings-xl-bold-212f3e-32x32{width:32px;height:32px;background-position:-388px -1350px}.work-docs-icon-settings-xl-bold-0e72a3-32x32{width:32px;height:32px;background-position:-640px -1350px}.work-docs-icon-settings-xl-bold-808184-32x32{width:32px;height:32px;background-position:-262px -1350px}.work-docs-icon-settings-xl-bold-ffffff-32x32{width:32px;height:32px;background-position:-10px -1350px}.work-docs-icon-settings-xl-d0d2d3-65x64{width:65px;height:64px;background-position:-177px -1276px}.work-docs-icon-settings-xl-8ea9c9-65x64{width:65px;height:64px;background-position:-555px -1276px}.work-docs-icon-settings-xl-212f3e-65x64{width:65px;height:64px;background-position:-429px -1276px}.work-docs-icon-settings-xl-0e72a3-65x64{width:65px;height:64px;background-position:-681px -1276px}.work-docs-icon-settings-xl-808184-65x64{width:65px;height:64px;background-position:-303px -1276px}.work-docs-icon-settings-xl-ffffff-65x64{width:65px;height:64px;background-position:-51px -1276px}.work-docs-icon-settings-xl-d0d2d3-32x32{width:32px;height:32px;background-position:-136px -1276px}.work-docs-icon-settings-xl-8ea9c9-32x32{width:32px;height:32px;background-position:-514px -1276px}.work-docs-icon-settings-xl-212f3e-32x32{width:32px;height:32px;background-position:-388px -1276px}.work-docs-icon-settings-xl-0e72a3-32x32{width:32px;height:32px;background-position:-640px -1276px}.work-docs-icon-settings-xl-808184-32x32{width:32px;height:32px;background-position:-262px -1276px}.work-docs-icon-settings-xl-ffffff-32x32{width:32px;height:32px;background-position:-10px -1276px}.work-docs-icon-log-out-xl-bold-d0d2d3-64x64{width:64px;height:64px;background-position:-178px -1202px}.work-docs-icon-log-out-xl-bold-8ea9c9-64x64{width:64px;height:64px;background-position:-556px -1202px}.work-docs-icon-log-out-xl-bold-212f3e-64x64{width:64px;height:64px;background-position:-430px -1202px}.work-docs-icon-log-out-xl-bold-0e72a3-64x64{width:64px;height:64px;background-position:-682px -1202px}.work-docs-icon-log-out-xl-bold-808184-64x64{width:64px;height:64px;background-position:-304px -1202px}.work-docs-icon-log-out-xl-bold-ffffff-64x64{width:64px;height:64px;background-position:-52px -1202px}.work-docs-icon-log-out-xl-bold-d0d2d3-32x32{width:32px;height:32px;background-position:-136px -1202px}.work-docs-icon-log-out-xl-bold-8ea9c9-32x32{width:32px;height:32px;background-position:-514px -1202px}.work-docs-icon-log-out-xl-bold-212f3e-32x32{width:32px;height:32px;background-position:-388px -1202px}.work-docs-icon-log-out-xl-bold-0e72a3-32x32{width:32px;height:32px;background-position:-640px -1202px}.work-docs-icon-log-out-xl-bold-808184-32x32{width:32px;height:32px;background-position:-262px -1202px}.work-docs-icon-log-out-xl-bold-ffffff-32x32{width:32px;height:32px;background-position:-10px -1202px}.work-docs-icon-log-out-xl-d0d2d3-64x64{width:64px;height:64px;background-position:-178px -1128px}.work-docs-icon-log-out-xl-8ea9c9-64x64{width:64px;height:64px;background-position:-556px -1128px}.work-docs-icon-log-out-xl-212f3e-64x64{width:64px;height:64px;background-position:-430px -1128px}.work-docs-icon-log-out-xl-0e72a3-64x64{width:64px;height:64px;background-position:-682px -1128px}.work-docs-icon-log-out-xl-808184-64x64{width:64px;height:64px;background-position:-304px -1128px}.work-docs-icon-log-out-xl-ffffff-64x64{width:64px;height:64px;background-position:-52px -1128px}.work-docs-icon-log-out-xl-d0d2d3-32x32{width:32px;height:32px;background-position:-136px -1128px}.work-docs-icon-log-out-xl-8ea9c9-32x32{width:32px;height:32px;background-position:-514px -1128px}.work-docs-icon-log-out-xl-212f3e-32x32{width:32px;height:32px;background-position:-388px -1128px}.work-docs-icon-log-out-xl-0e72a3-32x32{width:32px;height:32px;background-position:-640px -1128px}.work-docs-icon-log-out-xl-808184-32x32{width:32px;height:32px;background-position:-262px -1128px}.work-docs-icon-log-out-xl-ffffff-32x32{width:32px;height:32px;background-position:-10px -1128px}.work-docs-icon-download-apps-xl-bold-0e72a3-64x64{width:64px;height:64px;background-position:-682px -1054px}.work-docs-icon-download-apps-xl-bold-0e72a3-32x32{width:32px;height:32px;background-position:-640px -1054px}.work-docs-icon-download-apps-xl-bold-8ea9c9-64x64{width:64px;height:64px;background-position:-556px -1054px}.work-docs-icon-download-apps-xl-bold-8ea9c9-32x32{width:32px;height:32px;background-position:-514px -1054px}.work-docs-icon-download-apps-xl-bold-212f3e-64x64{width:64px;height:64px;background-position:-430px -1054px}.work-docs-icon-download-apps-xl-bold-212f3e-32x32{width:32px;height:32px;background-position:-388px -1054px}.work-docs-icon-download-apps-xl-bold-808184-64x64{width:64px;height:64px;background-position:-304px -1054px}.work-docs-icon-download-apps-xl-bold-808184-32x32{width:32px;height:32px;background-position:-262px -1054px}.work-docs-icon-download-apps-xl-bold-d0d2d3-64x64{width:64px;height:64px;background-position:-178px -1054px}.work-docs-icon-download-apps-xl-bold-ffffff-64x64{width:64px;height:64px;background-position:-52px -1054px}.work-docs-icon-download-apps-xl-bold-d0d2d3-32x32{width:32px;height:32px;background-position:-136px -1054px}.work-docs-icon-download-apps-xl-bold-ffffff-32x32{width:32px;height:32px;background-position:-10px -1054px}.work-docs-icon-download-apps-xl-0e72a3-64x64{width:64px;height:64px;background-position:-682px -980px}.work-docs-icon-download-apps-xl-0e72a3-32x32{width:32px;height:32px;background-position:-640px -980px}.work-docs-icon-download-apps-xl-8ea9c9-64x64{width:64px;height:64px;background-position:-556px -980px}.work-docs-icon-download-apps-xl-8ea9c9-32x32{width:32px;height:32px;background-position:-514px -980px}.work-docs-icon-download-apps-xl-212f3e-64x64{width:64px;height:64px;background-position:-430px -980px}.work-docs-icon-download-apps-xl-212f3e-32x32{width:32px;height:32px;background-position:-388px -980px}.work-docs-icon-download-apps-xl-808184-64x64{width:64px;height:64px;background-position:-304px -980px}.work-docs-icon-download-apps-xl-d0d2d3-64x64{width:64px;height:64px;background-position:-178px -980px}.work-docs-icon-download-apps-xl-ffffff-64x64{width:64px;height:64px;background-position:-52px -980px}.work-docs-icon-download-apps-xl-808184-32x32{width:32px;height:32px;background-position:-262px -980px}.work-docs-icon-download-apps-xl-d0d2d3-32x32{width:32px;height:32px;background-position:-136px -980px}.work-docs-icon-download-apps-xl-ffffff-32x32{width:32px;height:32px;background-position:-10px -980px}.work-docs-icon-profile-xl-bold-d0d2d3-64x64{width:64px;height:64px;background-position:-178px -906px}.work-docs-icon-profile-xl-bold-8ea9c9-64x64{width:64px;height:64px;background-position:-556px -906px}.work-docs-icon-profile-xl-bold-212f3e-64x64{width:64px;height:64px;background-position:-430px -906px}.work-docs-icon-profile-xl-bold-0e72a3-64x64{width:64px;height:64px;background-position:-682px -906px}.work-docs-icon-profile-xl-bold-808184-64x64{width:64px;height:64px;background-position:-304px -906px}.work-docs-icon-profile-xl-bold-ffffff-64x64{width:64px;height:64px;background-position:-52px -906px}.work-docs-icon-profile-xl-bold-d0d2d3-32x32{width:32px;height:32px;background-position:-136px -906px}.work-docs-icon-profile-xl-bold-8ea9c9-32x32{width:32px;height:32px;background-position:-514px -906px}.work-docs-icon-profile-xl-bold-212f3e-32x32{width:32px;height:32px;background-position:-388px -906px}.work-docs-icon-profile-xl-bold-0e72a3-32x32{width:32px;height:32px;background-position:-640px -906px}.work-docs-icon-profile-xl-bold-808184-32x32{width:32px;height:32px;background-position:-262px -906px}.work-docs-icon-profile-xl-bold-ffffff-32x32{width:32px;height:32px;background-position:-10px -906px}.work-docs-icon-profile-xl-d0d2d3-64x64{width:64px;height:64px;background-position:-178px -832px}.work-docs-icon-profile-xl-8ea9c9-64x64{width:64px;height:64px;background-position:-556px -832px}.work-docs-icon-profile-xl-212f3e-64x64{width:64px;height:64px;background-position:-430px -832px}.work-docs-icon-profile-xl-0e72a3-64x64{width:64px;height:64px;background-position:-682px -832px}.work-docs-icon-profile-xl-808184-64x64{width:64px;height:64px;background-position:-304px -832px}.work-docs-icon-profile-xl-ffffff-64x64{width:64px;height:64px;background-position:-52px -832px}.work-docs-icon-profile-xl-d0d2d3-32x32{width:32px;height:32px;background-position:-136px -832px}.work-docs-icon-profile-xl-8ea9c9-32x32{width:32px;height:32px;background-position:-514px -832px}.work-docs-icon-profile-xl-212f3e-32x32{width:32px;height:32px;background-position:-388px -832px}.work-docs-icon-profile-xl-0e72a3-32x32{width:32px;height:32px;background-position:-640px -832px}.work-docs-icon-profile-xl-808184-32x32{width:32px;height:32px;background-position:-262px -832px}.work-docs-icon-profile-xl-ffffff-32x32{width:32px;height:32px;background-position:-10px -832px}.work-docs-icon-trash-xl-bold-d0d2d3-64x64{width:64px;height:64px;background-position:-178px -758px}.work-docs-icon-trash-xl-bold-8ea9c9-64x64{width:64px;height:64px;background-position:-556px -758px}.work-docs-icon-trash-xl-bold-212f3e-64x64{width:64px;height:64px;background-position:-430px -758px}.work-docs-icon-trash-xl-bold-0e72a3-64x64{width:64px;height:64px;background-position:-682px -758px}.work-docs-icon-trash-xl-bold-808184-64x64{width:64px;height:64px;background-position:-304px -758px}.work-docs-icon-trash-xl-bold-ffffff-64x64{width:64px;height:64px;background-position:-52px -758px}.work-docs-icon-trash-xl-bold-d0d2d3-32x32{width:32px;height:32px;background-position:-136px -758px}.work-docs-icon-trash-xl-bold-8ea9c9-32x32{width:32px;height:32px;background-position:-514px -758px}.work-docs-icon-trash-xl-bold-212f3e-32x32{width:32px;height:32px;background-position:-388px -758px}.work-docs-icon-trash-xl-bold-0e72a3-32x32{width:32px;height:32px;background-position:-640px -758px}.work-docs-icon-trash-xl-bold-808184-32x32{width:32px;height:32px;background-position:-262px -758px}.work-docs-icon-trash-xl-bold-ffffff-32x32{width:32px;height:32px;background-position:-10px -758px}.work-docs-icon-trash-xl-d0d2d3-64x64{width:64px;height:64px;background-position:-178px -684px}.work-docs-icon-trash-xl-8ea9c9-64x64{width:64px;height:64px;background-position:-556px -684px}.work-docs-icon-trash-xl-212f3e-64x64{width:64px;height:64px;background-position:-430px -684px}.work-docs-icon-trash-xl-0e72a3-64x64{width:64px;height:64px;background-position:-682px -684px}.work-docs-icon-trash-xl-808184-64x64{width:64px;height:64px;background-position:-304px -684px}.work-docs-icon-trash-xl-ffffff-64x64{width:64px;height:64px;background-position:-52px -684px}.work-docs-icon-trash-xl-d0d2d3-32x32{width:32px;height:32px;background-position:-136px -684px}.work-docs-icon-trash-xl-8ea9c9-32x32{width:32px;height:32px;background-position:-514px -684px}.work-docs-icon-trash-xl-212f3e-32x32{width:32px;height:32px;background-position:-388px -684px}.work-docs-icon-trash-xl-0e72a3-32x32{width:32px;height:32px;background-position:-640px -684px}.work-docs-icon-trash-xl-808184-32x32{width:32px;height:32px;background-position:-262px -684px}.work-docs-icon-trash-xl-ffffff-32x32{width:32px;height:32px;background-position:-10px -684px}.work-docs-icon-out-for-review-xl-bold-d0d2d3-64x64{width:64px;height:64px;background-position:-178px -610px}.work-docs-icon-out-for-review-xl-bold-8ea9c9-64x64{width:64px;height:64px;background-position:-556px -610px}.work-docs-icon-out-for-review-xl-bold-212f3e-64x64{width:64px;height:64px;background-position:-430px -610px}.work-docs-icon-out-for-review-xl-bold-0e72a3-64x64{width:64px;height:64px;background-position:-682px -610px}.work-docs-icon-out-for-review-xl-bold-808184-64x64{width:64px;height:64px;background-position:-304px -610px}.work-docs-icon-out-for-review-xl-bold-ffffff-64x64{width:64px;height:64px;background-position:-52px -610px}.work-docs-icon-out-for-review-xl-bold-d0d2d3-32x32{width:32px;height:32px;background-position:-136px -610px}.work-docs-icon-out-for-review-xl-bold-8ea9c9-32x32{width:32px;height:32px;background-position:-514px -610px}.work-docs-icon-out-for-review-xl-bold-212f3e-32x32{width:32px;height:32px;background-position:-388px -610px}.work-docs-icon-out-for-review-xl-bold-0e72a3-32x32{width:32px;height:32px;background-position:-640px -610px}.work-docs-icon-out-for-review-xl-bold-808184-32x32{width:32px;height:32px;background-position:-262px -610px}.work-docs-icon-out-for-review-xl-bold-ffffff-32x32{width:32px;height:32px;background-position:-10px -610px}.work-docs-icon-out-for-review-xl-d0d2d3-64x64{width:64px;height:64px;background-position:-178px -536px}.work-docs-icon-out-for-review-xl-8ea9c9-64x64{width:64px;height:64px;background-position:-556px -536px}.work-docs-icon-out-for-review-xl-212f3e-64x64{width:64px;height:64px;background-position:-430px -536px}.work-docs-icon-out-for-review-xl-0e72a3-64x64{width:64px;height:64px;background-position:-682px -536px}.work-docs-icon-out-for-review-xl-808184-64x64{width:64px;height:64px;background-position:-304px -536px}.work-docs-icon-out-for-review-xl-ffffff-64x64{width:64px;height:64px;background-position:-52px -536px}.work-docs-icon-out-for-review-xl-d0d2d3-32x32{width:32px;height:32px;background-position:-136px -536px}.work-docs-icon-out-for-review-xl-8ea9c9-32x32{width:32px;height:32px;background-position:-514px -536px}.work-docs-icon-out-for-review-xl-212f3e-32x32{width:32px;height:32px;background-position:-388px -536px}.work-docs-icon-out-for-review-xl-0e72a3-32x32{width:32px;height:32px;background-position:-640px -536px}.work-docs-icon-out-for-review-xl-808184-32x32{width:32px;height:32px;background-position:-262px -536px}.work-docs-icon-out-for-review-xl-ffffff-32x32{width:32px;height:32px;background-position:-10px -536px}.work-docs-icon-awaiting-feedback-xl-bold-d0d2d3-64x64{width:64px;height:64px;background-position:-178px -462px}.work-docs-icon-awaiting-feedback-xl-bold-8ea9c9-64x64{width:64px;height:64px;background-position:-556px -462px}.work-docs-icon-awaiting-feedback-xl-bold-212f3e-64x64{width:64px;height:64px;background-position:-430px -462px}.work-docs-icon-awaiting-feedback-xl-bold-0e72a3-64x64{width:64px;height:64px;background-position:-682px -462px}.work-docs-icon-awaiting-feedback-xl-bold-808184-64x64{width:64px;height:64px;background-position:-304px -462px}.work-docs-icon-awaiting-feedback-xl-bold-ffffff-64x64{width:64px;height:64px;background-position:-52px -462px}.work-docs-icon-awaiting-feedback-xl-bold-d0d2d3-32x32{width:32px;height:32px;background-position:-136px -462px}.work-docs-icon-awaiting-feedback-xl-bold-8ea9c9-32x32{width:32px;height:32px;background-position:-514px -462px}.work-docs-icon-awaiting-feedback-xl-bold-212f3e-32x32{width:32px;height:32px;background-position:-388px -462px}.work-docs-icon-awaiting-feedback-xl-bold-0e72a3-32x32{width:32px;height:32px;background-position:-640px -462px}.work-docs-icon-awaiting-feedback-xl-bold-808184-32x32{width:32px;height:32px;background-position:-262px -462px}.work-docs-icon-awaiting-feedback-xl-bold-ffffff-32x32{width:32px;height:32px;background-position:-10px -462px}.work-docs-icon-awaiting-feedback-xl-d0d2d3-64x64{width:64px;height:64px;background-position:-178px -388px}.work-docs-icon-awaiting-feedback-xl-8ea9c9-64x64{width:64px;height:64px;background-position:-556px -388px}.work-docs-icon-awaiting-feedback-xl-212f3e-64x64{width:64px;height:64px;background-position:-430px -388px}.work-docs-icon-awaiting-feedback-xl-0e72a3-64x64{width:64px;height:64px;background-position:-682px -388px}.work-docs-icon-awaiting-feedback-xl-808184-64x64{width:64px;height:64px;background-position:-304px -388px}.work-docs-icon-awaiting-feedback-xl-ffffff-64x64{width:64px;height:64px;background-position:-52px -388px}.work-docs-icon-awaiting-feedback-xl-d0d2d3-32x32{width:32px;height:32px;background-position:-136px -388px}.work-docs-icon-awaiting-feedback-xl-8ea9c9-32x32{width:32px;height:32px;background-position:-514px -388px}.work-docs-icon-awaiting-feedback-xl-212f3e-32x32{width:32px;height:32px;background-position:-388px -388px}.work-docs-icon-awaiting-feedback-xl-0e72a3-32x32{width:32px;height:32px;background-position:-640px -388px}.work-docs-icon-awaiting-feedback-xl-808184-32x32{width:32px;height:32px;background-position:-262px -388px}.work-docs-icon-awaiting-feedback-xl-ffffff-32x32{width:32px;height:32px;background-position:-10px -388px}.work-docs-icon-shared-with-me-xl-bold-d0d2d3-64x64{width:64px;height:64px;background-position:-178px -314px}.work-docs-icon-shared-with-me-xl-bold-8ea9c9-64x64{width:64px;height:64px;background-position:-556px -314px}.work-docs-icon-shared-with-me-xl-bold-212f3e-64x64{width:64px;height:64px;background-position:-430px -314px}.work-docs-icon-shared-with-me-xl-bold-0e72a3-64x64{width:64px;height:64px;background-position:-682px -314px}.work-docs-icon-shared-with-me-xl-bold-808184-64x64{width:64px;height:64px;background-position:-304px -314px}.work-docs-icon-shared-with-me-xl-bold-ffffff-64x64{width:64px;height:64px;background-position:-52px -314px}.work-docs-icon-shared-with-me-xl-bold-d0d2d3-32x32{width:32px;height:32px;background-position:-136px -314px}.work-docs-icon-shared-with-me-xl-bold-8ea9c9-32x32{width:32px;height:32px;background-position:-514px -314px}.work-docs-icon-shared-with-me-xl-bold-212f3e-32x32{width:32px;height:32px;background-position:-388px -314px}.work-docs-icon-shared-with-me-xl-bold-0e72a3-32x32{width:32px;height:32px;background-position:-640px -314px}.work-docs-icon-shared-with-me-xl-bold-808184-32x32{width:32px;height:32px;background-position:-262px -314px}.work-docs-icon-shared-with-me-xl-bold-ffffff-32x32{width:32px;height:32px;background-position:-10px -314px}.work-docs-icon-shared-with-me-xl-d0d2d3-64x64{width:64px;height:64px;background-position:-178px -240px}.work-docs-icon-shared-with-me-xl-8ea9c9-64x64{width:64px;height:64px;background-position:-556px -240px}.work-docs-icon-shared-with-me-xl-212f3e-64x64{width:64px;height:64px;background-position:-430px -240px}.work-docs-icon-shared-with-me-xl-0e72a3-64x64{width:64px;height:64px;background-position:-682px -240px}.work-docs-icon-shared-with-me-xl-808184-64x64{width:64px;height:64px;background-position:-304px -240px}.work-docs-icon-shared-with-me-xl-ffffff-64x64{width:64px;height:64px;background-position:-52px -240px}.work-docs-icon-shared-with-me-xl-d0d2d3-32x32{width:32px;height:32px;background-position:-136px -240px}.work-docs-icon-shared-with-me-xl-8ea9c9-32x32{width:32px;height:32px;background-position:-514px -240px}.work-docs-icon-shared-with-me-xl-212f3e-32x32{width:32px;height:32px;background-position:-388px -240px}.work-docs-icon-shared-with-me-xl-0e72a3-32x32{width:32px;height:32px;background-position:-640px -240px}.work-docs-icon-shared-with-me-xl-808184-32x32{width:32px;height:32px;background-position:-262px -240px}.work-docs-icon-shared-with-me-xl-ffffff-32x32{width:32px;height:32px;background-position:-10px -240px}.work-docs-icon-my-documents-xl-bold-d0d2d3-64x64{width:64px;height:64px;background-position:-178px -166px}.work-docs-icon-my-documents-xl-bold-8ea9c9-64x64{width:64px;height:64px;background-position:-556px -166px}.work-docs-icon-my-documents-xl-bold-212f3e-64x64{width:64px;height:64px;background-position:-430px -166px}.work-docs-icon-my-documents-xl-bold-0e72a3-64x64{width:64px;height:64px;background-position:-682px -166px}.work-docs-icon-my-documents-xl-bold-808184-64x64{width:64px;height:64px;background-position:-304px -166px}.work-docs-icon-my-documents-xl-bold-ffffff-64x64{width:64px;height:64px;background-position:-52px -166px}.work-docs-icon-my-documents-xl-bold-d0d2d3-32x32{width:32px;height:32px;background-position:-136px -166px}.work-docs-icon-my-documents-xl-bold-8ea9c9-32x32{width:32px;height:32px;background-position:-514px -166px}.work-docs-icon-my-documents-xl-bold-212f3e-32x32{width:32px;height:32px;background-position:-388px -166px}.work-docs-icon-my-documents-xl-bold-0e72a3-32x32{width:32px;height:32px;background-position:-640px -166px}.work-docs-icon-my-documents-xl-bold-808184-32x32{width:32px;height:32px;background-position:-262px -166px}.work-docs-icon-my-documents-xl-bold-ffffff-32x32{width:32px;height:32px;background-position:-10px -166px}.work-docs-icon-my-documents-xl-d0d2d3-64x64{width:64px;height:64px;background-position:-178px -92px}.work-docs-icon-my-documents-xl-8ea9c9-64x64{width:64px;height:64px;background-position:-556px -92px}.work-docs-icon-my-documents-xl-212f3e-64x64{width:64px;height:64px;background-position:-430px -92px}.work-docs-icon-my-documents-xl-0e72a3-64x64{width:64px;height:64px;background-position:-682px -92px}.work-docs-icon-my-documents-xl-808184-64x64{width:64px;height:64px;background-position:-304px -92px}.work-docs-icon-my-documents-xl-ffffff-64x64{width:64px;height:64px;background-position:-52px -92px}.work-docs-icon-my-documents-xl-d0d2d3-32x32{width:32px;height:32px;background-position:-136px -92px}.work-docs-icon-my-documents-xl-8ea9c9-32x32{width:32px;height:32px;background-position:-514px -92px}.work-docs-icon-my-documents-xl-212f3e-32x32{width:32px;height:32px;background-position:-388px -92px}.work-docs-icon-my-documents-xl-0e72a3-32x32{width:32px;height:32px;background-position:-640px -92px}.work-docs-icon-my-documents-xl-808184-32x32{width:32px;height:32px;background-position:-262px -92px}.work-docs-icon-my-documents-xl-ffffff-32x32{width:32px;height:32px;background-position:-10px -92px}.work-docs-icon-no-preview-212f3e-72x72,.no-preview-icon{width:72px;height:72px;background-position:-174px -10px}.work-docs-icon-remove-me-from-share-alternate-212f3e-72x72{width:72px;height:72px;background-position:-666px -10px}.work-docs-icon-locked-212f3e-72x72,.resource-locked-icon{width:72px;height:72px;background-position:-584px -10px}.work-docs-icon-open-folder-212f3e-72x72,.folder-no-file-icon{width:72px;height:72px;background-position:-502px -10px}.work-docs-icon-session-expired-212f3e-72x72,.session-expired-icon{width:72px;height:72px;background-position:-420px -10px}.work-docs-icon-progress-0e72a3-72x72{width:72px;height:72px;background-position:-338px -10px}.work-docs-icon-progress-212f3e-72x72{width:72px;height:72px;background-position:-256px -10px}.work-docs-icon-broken-link-212f3e-72x72,.folder-not-found-icon,.document-unavailable-icon,.no-file-access-icon{width:72px;height:72px;background-position:-92px -10px}.work-docs-icon-upload-to-cloud-212f3e-72x72{width:72px;height:72px;background-position:-10px -10px}.browser-ie .work-docs-icon-group-3-9x11,.browser-ie .work-docs-icon-pdf-0e72a3-16x17,.browser-ie .work-docs-icon-pdf-0e72a3-24x25,.browser-ie .work-docs-icon-pdf-8ea9c9-16x17,.browser-ie .work-docs-icon-pdf-8ea9c9-24x25,.browser-ie .work-docs-icon-pdf-d0d2d3-16x17,.browser-ie .work-docs-icon-pdf-d0d2d3-24x25,.browser-ie .work-docs-icon-pdf-ffffff-16x17,.browser-ie .work-docs-icon-pdf-ffffff-24x25,.browser-ie .work-docs-icon-pdf-212f3e-16x17,.browser-ie .work-docs-icon-pdf-212f3e-24x25,.browser-ie .work-docs-icon-pdf-787982-16x17,.browser-ie .work-docs-icon-text-0e72a3-24x24,.browser-ie .work-docs-icon-text-0e72a3-16x16,.browser-ie .work-docs-icon-text-ffffff-17x22,.browser-ie .work-docs-icon-text-ffffff-16x16,.browser-ie .work-docs-icon-text-d0d2d3-24x24,.browser-ie .work-docs-icon-text-d0d2d3-16x16,.browser-ie .work-docs-icon-text-787982-24x24,.browser-ie .work-docs-icon-text-787982-16x16,.browser-ie .work-docs-icon-text-212f3e-24x24,.browser-ie .work-docs-icon-text-212f3e-16x16,.browser-ie .work-docs-icon-text-8ea9c9-17x22,.browser-ie .work-docs-icon-text-8ea9c9-11x15,.browser-ie .work-docs-icon-star-empty-8ea9c9-24x24,.browser-ie .work-docs-icon-star-empty-8ea9c9-16x16,.browser-ie .work-docs-icon-star-empty-0e72a3-24x24,.browser-ie .work-docs-icon-star-empty-0e72a3-16x16,.browser-ie .work-docs-icon-star-empty-ffffff-24x24,.browser-ie #left-sidebar .active .favorites-icon,#left-sidebar .active .browser-ie .favorites-icon,.browser-ie #left-sidebar li:hover .favorites-icon,#left-sidebar li:hover .browser-ie .favorites-icon,.browser-ie .left-sidebar-minimized .ln-favorites:hover .sprite-icon,.left-sidebar-minimized .ln-favorites:hover .browser-ie .sprite-icon,.browser-ie .left-sidebar-minimized .ln-favorites.active .sprite-icon,.left-sidebar-minimized .ln-favorites.active .browser-ie .sprite-icon,.browser-ie .work-docs-icon-star-empty-ffffff-16x16,.browser-ie .work-docs-icon-star-empty-d0d2d3-24x24,.browser-ie .work-docs-icon-star-empty-d0d2d3-16x16,.browser-ie .work-docs-icon-star-empty-808184-24x24,.browser-ie #left-sidebar .favorites-icon,#left-sidebar .browser-ie .favorites-icon,.browser-ie .left-sidebar-minimized .ln-favorites .sprite-icon,.left-sidebar-minimized .ln-favorites .browser-ie .sprite-icon,.browser-ie .work-docs-icon-star-empty-808184-16x16,.browser-ie .work-docs-icon-no-favorite-0e72a3-24x24,.browser-ie .work-docs-icon-star-empty-212f3e-24x24,.browser-ie .work-docs-icon-star-empty-212f3e-16x16,.browser-ie .work-docs-icon-star-8ea9c9-24x24,.browser-ie .work-docs-icon-star-8ea9c9-16x16,.browser-ie .work-docs-icon-star-0e72a3-24x24,.browser-ie .work-docs-icon-star-0e72a3-16x16,.browser-ie .work-docs-icon-favorite-0e72a3-24x24,.browser-ie .work-docs-icon-star-ffffff-24x24,.browser-ie .work-docs-icon-star-ffffff-16x16,.browser-ie .work-docs-icon-star-d0d2d3-24x24,.browser-ie .work-docs-icon-star-d0d2d3-16x16,.browser-ie .work-docs-icon-star-808184-24x24,.browser-ie .work-docs-icon-star-808184-17x16,.browser-ie .work-docs-icon-star-212f3e-24x24,.browser-ie .work-docs-icon-star-212f3e-17x16,.browser-ie .work-docs-icon-private-8ea9c9-24x24,.browser-ie .work-docs-icon-private-8ea9c9-16x16,.browser-ie .work-docs-icon-private-0e72a3-24x24,.browser-ie .work-docs-icon-private-0e72a3-16x16,.browser-ie .work-docs-icon-private-ffffff-24x24,.browser-ie .work-docs-icon-private-ffffff-16x16,.browser-ie .work-docs-icon-private-d0d2d3-24x24,.browser-ie .work-docs-icon-private-d0d2d3-16x16,.browser-ie .work-docs-icon-private-808184-24x24,.browser-ie .work-docs-icon-private-808184-16x16,.browser-ie .work-docs-icon-private-212f3e-24x24,.browser-ie .work-docs-icon-private-212f3e-16x16,.browser-ie .work-docs-icon-request-check-in-0e72a3-24x24,.browser-ie .work-docs-icon-request-check-in-0e72a3-16x16,.browser-ie .work-docs-icon-request-check-in-8ea9c9-24x24,.browser-ie .work-docs-icon-request-check-in-8ea9c9-16x16,.browser-ie .work-docs-icon-request-check-in-212f3e-24x24,.browser-ie .work-docs-icon-request-check-in-212f3e-16x16,.browser-ie .work-docs-icon-request-check-in-808184-24x24,.browser-ie .work-docs-icon-request-check-in-808184-16x16,.browser-ie .work-docs-icon-request-check-in-d0d2d3-24x24,.browser-ie .work-docs-icon-request-check-in-d0d2d3-16x16,.browser-ie .work-docs-icon-request-check-in-ffffff-24x24,.browser-ie .work-docs-icon-request-check-in-ffffff-16x16,.browser-ie .action-icon-request-checkin,.browser-ie .work-docs-icon-discard-check-out-0e72a3-24x24,.browser-ie .work-docs-icon-discard-check-out-0e72a3-16x16,.browser-ie .work-docs-icon-discard-check-out-8ea9c9-24x24,.browser-ie .work-docs-icon-discard-check-out-8ea9c9-16x16,.browser-ie .work-docs-icon-discard-check-out-212f3e-24x24,.browser-ie .work-docs-icon-discard-check-out-212f3e-16x16,.browser-ie .work-docs-icon-discard-check-out-808184-24x24,.browser-ie .work-docs-icon-discard-check-out-808184-16x16,.browser-ie .work-docs-icon-discard-check-out-d0d2d3-24x24,.browser-ie .work-docs-icon-discard-check-out-d0d2d3-16x16,.browser-ie .work-docs-icon-discard-check-out-ffffff-24x24,.browser-ie .work-docs-icon-discard-check-out-ffffff-16x16,.browser-ie .work-docs-icon-check-in-0e72a3-24x24,.browser-ie .work-docs-icon-check-in-0e72a3-16x16,.browser-ie .work-docs-icon-check-in-8ea9c9-24x24,.browser-ie .work-docs-icon-check-in-8ea9c9-16x16,.browser-ie .work-docs-icon-check-in-212f3e-24x24,.browser-ie .work-docs-icon-check-in-212f3e-16x16,.browser-ie .work-docs-icon-check-in-808184-24x24,.browser-ie .work-docs-icon-check-in-808184-16x16,.browser-ie .work-docs-icon-check-in-d0d2d3-24x24,.browser-ie .work-docs-icon-check-in-d0d2d3-16x16,.browser-ie .work-docs-icon-check-in-ffffff-24x24,.browser-ie .work-docs-icon-check-in-ffffff-16x16,.browser-ie .work-docs-icon-check-out-0e72a3-24x24,.browser-ie .work-docs-icon-check-out-0e72a3-16x16,.browser-ie .work-docs-icon-check-out-8ea9c9-24x24,.browser-ie .work-docs-icon-check-out-8ea9c9-16x16,.browser-ie .work-docs-icon-check-out-212f3e-24x24,.browser-ie .work-docs-icon-check-out-212f3e-16x16,.browser-ie .work-docs-icon-check-out-808184-24x24,.browser-ie .work-docs-icon-check-out-808184-16x16,.browser-ie .work-docs-icon-check-out-d0d2d3-24x24,.browser-ie .work-docs-icon-check-out-d0d2d3-16x16,.browser-ie .work-docs-icon-check-out-ffffff-24x24,.browser-ie .work-docs-icon-check-out-ffffff-16x16,.browser-ie .work-docs-icon-help-0e72a3-24x24,.browser-ie .feedback-input-container .question-mark,.feedback-input-container .browser-ie .question-mark,.browser-ie .work-docs-icon-help-0e72a3-16x16,.browser-ie .work-docs-icon-help-8ea9c9-24x24,.browser-ie .feedback-input-container .question-mark:hover,.feedback-input-container .browser-ie .question-mark:hover,.browser-ie .work-docs-icon-help-8ea9c9-16x16,.browser-ie .work-docs-icon-help-212f3e-24x24,.browser-ie .work-docs-icon-help-212f3e-16x16,.browser-ie .work-docs-icon-help-808184-24x24,.browser-ie .work-docs-icon-help-808184-16x16,.browser-ie .work-docs-icon-help-d0d2d3-24x24,.browser-ie .work-docs-icon-help-d0d2d3-16x16,.browser-ie .work-docs-icon-help-ffffff-24x24,.browser-ie .work-docs-icon-help-ffffff-16x16,.browser-ie .work-docs-icon-help-solid-0e72a3-24x24,.browser-ie .work-docs-icon-help-solid-0e72a3-16x16,.browser-ie .work-docs-icon-help-solid-8ea9c9-24x24,.browser-ie .work-docs-icon-help-solid-8ea9c9-16x16,.browser-ie .work-docs-icon-help-solid-212f3e-24x24,.browser-ie .work-docs-icon-help-solid-212f3e-16x16,.browser-ie .work-docs-icon-help-solid-808184-24x24,.browser-ie .work-docs-icon-help-solid-808184-16x16,.browser-ie .work-docs-icon-help-solid-d0d2d3-24x24,.browser-ie .work-docs-icon-help-solid-d0d2d3-16x16,.browser-ie .work-docs-icon-help-solid-ffffff-24x24,.browser-ie .work-docs-icon-help-solid-ffffff-16x16,.browser-ie .work-docs-icon-mention-0e72a3-24x24,.browser-ie .feedback-input-container .at-mention-icon,.feedback-input-container .browser-ie .at-mention-icon,.browser-ie .work-docs-icon-mention-0e72a3-16x16,.browser-ie .work-docs-icon-mention-8ea9c9-24x24,.browser-ie .feedback-input-container .at-mention-icon:hover,.feedback-input-container .browser-ie .at-mention-icon:hover,.browser-ie .work-docs-icon-mention-8ea9c9-16x16,.browser-ie .work-docs-icon-mention-212f3e-24x24,.browser-ie .work-docs-icon-mention-212f3e-16x16,.browser-ie .work-docs-icon-mention-808184-24x24,.browser-ie .work-docs-icon-mention-808184-16x16,.browser-ie .work-docs-icon-mention-d0d2d3-24x24,.browser-ie .work-docs-icon-mention-d0d2d3-16x16,.browser-ie .work-docs-icon-mention-ffffff-24x24,.browser-ie .work-docs-icon-mention-ffffff-16x16,.browser-ie .work-docs-icon-decline-feedback-0e72a3-24x24,.browser-ie .work-docs-icon-decline-feedback-0e72a3-16x16,.browser-ie .work-docs-icon-decline-feedback-8ea9c9-24x24,.browser-ie .work-docs-icon-decline-feedback-8ea9c9-16x16,.browser-ie .work-docs-icon-decline-feedback-212f3e-24x24,.browser-ie .work-docs-icon-decline-feedback-212f3e-16x16,.browser-ie .work-docs-icon-decline-feedback-808184-24x24,.browser-ie .work-docs-icon-decline-feedback-808184-16x16,.browser-ie .work-docs-icon-decline-feedback-d0d2d3-24x24,.browser-ie .work-docs-icon-decline-feedback-ffffff-24x24,.browser-ie .work-docs-icon-decline-feedback-d0d2d3-16x16,.browser-ie .work-docs-icon-decline-feedback-ffffff-16x16,.browser-ie .action-icon-decline-feedback,.browser-ie .work-docs-icon-disable-feedback-0e72a3-24x24,.browser-ie .work-docs-icon-disable-feedback-0e72a3-16x16,.browser-ie .work-docs-icon-disable-feedback-8ea9c9-24x24,.browser-ie .work-docs-icon-disable-feedback-8ea9c9-16x16,.browser-ie .work-docs-icon-disable-feedback-212f3e-24x24,.browser-ie .work-docs-icon-disable-feedback-212f3e-16x16,.browser-ie .work-docs-icon-disable-feedback-808184-24x24,.browser-ie .work-docs-icon-disable-feedback-808184-16x16,.browser-ie .work-docs-icon-disable-feedback-d0d2d3-24x24,.browser-ie .work-docs-icon-disable-feedback-ffffff-24x24,.browser-ie .work-docs-icon-disable-feedback-d0d2d3-16x16,.browser-ie .work-docs-icon-disable-feedback-ffffff-16x16,.browser-ie .work-docs-icon-enable-feedback-0e72a3-24x24,.browser-ie .work-docs-icon-enable-feedback-0e72a3-16x16,.browser-ie .work-docs-icon-enable-feedback-8ea9c9-24x24,.browser-ie .work-docs-icon-enable-feedback-8ea9c9-16x16,.browser-ie .work-docs-icon-enable-feedback-212f3e-24x24,.browser-ie .work-docs-icon-enable-feedback-212f3e-16x16,.browser-ie .work-docs-icon-enable-feedback-808184-24x24,.browser-ie .work-docs-icon-enable-feedback-808184-16x16,.browser-ie .work-docs-icon-enable-feedback-d0d2d3-24x24,.browser-ie .work-docs-icon-enable-feedback-ffffff-24x24,.browser-ie .work-docs-icon-enable-feedback-d0d2d3-16x16,.browser-ie .work-docs-icon-enable-feedback-ffffff-16x16,.browser-ie .work-docs-icon-disabled-feedback-alternate-0e72a3-24x24,.browser-ie .work-docs-icon-disabled-feedback-alternate-0e72a3-16x16,.browser-ie .work-docs-icon-disabled-feedback-alternate-8ea9c9-24x24,.browser-ie .work-docs-icon-disabled-feedback-alternate-8ea9c9-16x16,.browser-ie .work-docs-icon-disabled-feedback-alternate-212f3e-24x24,.browser-ie .work-docs-icon-disabled-feedback-alternate-212f3e-16x16,.browser-ie .work-docs-icon-disabled-feedback-alternate-808184-24x24,.browser-ie .work-docs-icon-disabled-feedback-alternate-808184-16x16,.browser-ie .work-docs-icon-disabled-feedback-alternate-d0d2d3-24x24,.browser-ie .work-docs-icon-disabled-feedback-alternate-ffffff-24x24,.browser-ie .work-docs-icon-disabled-feedback-alternate-d0d2d3-16x16,.browser-ie .work-docs-icon-disabled-feedback-alternate-ffffff-16x16,.browser-ie .work-docs-icon-disabled-feedback-0e72a3-24x24,.browser-ie .work-docs-icon-disabled-feedback-0e72a3-16x16,.browser-ie .work-docs-icon-disabled-feedback-8ea9c9-24x24,.browser-ie .work-docs-icon-disabled-feedback-8ea9c9-16x16,.browser-ie .work-docs-icon-disabled-feedback-212f3e-24x24,.browser-ie .work-docs-icon-disabled-feedback-212f3e-16x16,.browser-ie .work-docs-icon-disabled-feedback-808184-24x24,.browser-ie .work-docs-icon-disabled-feedback-808184-16x16,.browser-ie .work-docs-icon-disabled-feedback-d0d2d3-24x24,.browser-ie .work-docs-icon-disabled-feedback-ffffff-24x24,.browser-ie .work-docs-icon-disabled-feedback-d0d2d3-16x16,.browser-ie .work-docs-icon-disabled-feedback-ffffff-16x16,.browser-ie .work-docs-icon-private-feedback-indicator-ffa724-24x24,.browser-ie .work-docs-icon-private-feedback-indicator-ffa724-16x16,.browser-ie .work-docs-icon-private-feedback-indicator-0e72a3-24x24,.browser-ie .work-docs-icon-private-feedback-indicator-0e72a3-16x16,.browser-ie .work-docs-icon-private-feedback-indicator-8ea9c9-24x24,.browser-ie .work-docs-icon-private-feedback-indicator-8ea9c9-16x16,.browser-ie .work-docs-icon-private-feedback-indicator-212f3e-24x24,.browser-ie .work-docs-icon-private-feedback-indicator-212f3e-16x16,.browser-ie .work-docs-icon-private-feedback-indicator-808184-24x24,.browser-ie .work-docs-icon-private-feedback-indicator-808184-16x16,.browser-ie .work-docs-icon-private-feedback-indicator-d0d2d3-24x24,.browser-ie .work-docs-icon-private-feedback-indicator-ffffff-24x24,.browser-ie .work-docs-icon-private-feedback-indicator-d0d2d3-16x16,.browser-ie .work-docs-icon-private-feedback-indicator-ffffff-16x16,.browser-ie .work-docs-icon-unlocked-0e72a3-24x24,.browser-ie .work-docs-icon-unlocked-0e72a3-16x16,.browser-ie .work-docs-icon-unlocked-8ea9c9-24x24,.browser-ie .work-docs-icon-unlocked-8ea9c9-16x16,.browser-ie .work-docs-icon-unlocked-212f3e-24x24,.browser-ie .work-docs-icon-unlocked-212f3e-16x16,.browser-ie .work-docs-icon-unlocked-808184-24x24,.browser-ie .work-docs-icon-unlocked-808184-16x16,.browser-ie .work-docs-icon-unlocked-d0d2d3-24x24,.browser-ie .work-docs-icon-unlocked-d0d2d3-16x16,.browser-ie .work-docs-icon-unlocked-ffffff-24x24,.browser-ie .work-docs-icon-unlocked-ffffff-16x16,.browser-ie .action-icon-discard-checkout,.browser-ie .action-icon-checkin,.browser-ie .work-docs-icon-video-alternate-0e72a3-24x24,.browser-ie .work-docs-icon-video-alternate-0e72a3-16x16,.browser-ie .work-docs-icon-video-alternate-8ea9c9-24x24,.browser-ie .work-docs-icon-video-alternate-8ea9c9-16x16,.browser-ie .work-docs-icon-video-alternate-212f3e-24x24,.browser-ie .work-docs-icon-video-alternate-212f3e-16x16,.browser-ie .work-docs-icon-video-alternate-808184-24x24,.browser-ie .work-docs-icon-video-alternate-808184-16x16,.browser-ie .work-docs-icon-video-alternate-d0d2d3-24x24,.browser-ie .work-docs-icon-video-alternate-ffffff-24x24,.browser-ie .work-docs-icon-video-alternate-d0d2d3-16x16,.browser-ie .work-docs-icon-video-alternate-ffffff-16x16,.browser-ie .work-docs-icon-video-0e72a3-24x24,.browser-ie .work-docs-icon-video-0e72a3-16x16,.browser-ie .work-docs-icon-video-8ea9c9-24x24,.browser-ie .work-docs-icon-video-8ea9c9-16x16,.browser-ie .work-docs-icon-video-212f3e-24x24,.browser-ie .work-docs-icon-video-212f3e-16x16,.browser-ie .work-docs-icon-video-808184-24x24,.browser-ie .work-docs-icon-video-808184-16x16,.browser-ie .work-docs-icon-video-d0d2d3-24x24,.browser-ie .work-docs-icon-video-ffffff-24x24,.browser-ie .work-docs-icon-video-d0d2d3-16x16,.browser-ie .work-docs-icon-video-ffffff-16x16,.browser-ie .work-docs-icon-filter-0e72a3-24x24,.browser-ie .work-docs-icon-filter-0e72a3-16x16,.browser-ie .feedback-filter-icn.active,.browser-ie .feedback-filter-icn:hover,.browser-ie .work-docs-icon-filter-8ea9c9-24x24,.browser-ie .work-docs-icon-filter-8ea9c9-16x16,.browser-ie .work-docs-icon-filter-212f3e-24x24,.browser-ie .work-docs-icon-filter-212f3e-16x16,.browser-ie .work-docs-icon-filter-808184-24x24,.browser-ie .work-docs-icon-filter-808184-16x16,.browser-ie .work-docs-icon-filter-d0d2d3-24x24,.browser-ie .work-docs-icon-filter-ffffff-24x24,.browser-ie .work-docs-icon-filter-d0d2d3-16x16,.browser-ie .work-docs-icon-filter-ffffff-16x16,.browser-ie .feedback-filter-icn,.browser-ie .work-docs-icon-add-document-0e72a3-24x24,.browser-ie .work-docs-icon-add-document-0e72a3-16x16,.browser-ie .work-docs-icon-add-document-8ea9c9-24x24,.browser-ie .work-docs-icon-add-document-8ea9c9-16x16,.browser-ie .work-docs-icon-add-document-212f3e-24x24,.browser-ie .work-docs-icon-add-document-212f3e-16x16,.browser-ie .work-docs-icon-add-document-808184-24x24,.browser-ie .work-docs-icon-add-document-808184-16x16,.browser-ie .work-docs-icon-add-document-d0d2d3-24x24,.browser-ie .work-docs-icon-add-document-ffffff-24x24,.browser-ie .work-docs-icon-add-document-d0d2d3-16x16,.browser-ie .work-docs-icon-add-document-ffffff-16x16,.browser-ie .work-docs-icon-download-with-comments-0e72a3-24x24,.browser-ie .work-docs-icon-download-with-comments-0e72a3-16x16,.browser-ie .work-docs-icon-download-with-comments-8ea9c9-24x24,.browser-ie .work-docs-icon-download-with-comments-8ea9c9-16x16,.browser-ie .work-docs-icon-download-with-comments-212f3e-24x24,.browser-ie .work-docs-icon-download-with-comments-212f3e-16x16,.browser-ie .work-docs-icon-download-with-comments-808184-24x24,.browser-ie .work-docs-icon-download-with-comments-808184-16x16,.browser-ie .work-docs-icon-download-with-comments-d0d2d3-24x24,.browser-ie .work-docs-icon-download-with-comments-ffffff-24x24,.browser-ie .work-docs-icon-download-with-comments-d0d2d3-16x16,.browser-ie .work-docs-icon-download-with-comments-ffffff-16x16,.browser-ie .work-docs-icon-remove-me-from-share-alternate-0e72a3-24x24,.browser-ie .work-docs-icon-remove-me-from-share-alternate-0e72a3-16x16,.browser-ie .work-docs-icon-remove-me-from-share-alternate-8ea9c9-24x24,.browser-ie .work-docs-icon-remove-me-from-share-alternate-8ea9c9-16x16,.browser-ie .work-docs-icon-remove-me-from-share-alternate-212f3e-24x24,.browser-ie .work-docs-icon-remove-me-from-share-alternate-212f3e-16x16,.browser-ie .work-docs-icon-remove-me-from-share-alternate-808184-24x24,.browser-ie .work-docs-icon-remove-me-from-share-alternate-808184-16x16,.browser-ie .work-docs-icon-remove-me-from-share-alternate-d0d2d3-24x24,.browser-ie .work-docs-icon-remove-me-from-share-alternate-ffffff-24x24,.browser-ie .work-docs-icon-remove-me-from-share-alternate-d0d2d3-16x16,.browser-ie .work-docs-icon-remove-me-from-share-alternate-ffffff-16x16,.browser-ie .work-docs-icon-remove-me-from-share-0e72a3-24x24,.browser-ie .work-docs-icon-remove-me-from-share-0e72a3-16x16,.browser-ie .work-docs-icon-remove-me-from-share-8ea9c9-24x24,.browser-ie .work-docs-icon-remove-me-from-share-8ea9c9-16x16,.browser-ie .work-docs-icon-remove-me-from-share-212f3e-24x24,.browser-ie .work-docs-icon-remove-me-from-share-212f3e-16x16,.browser-ie .work-docs-icon-remove-me-from-share-808184-24x24,.browser-ie .work-docs-icon-remove-me-from-share-808184-16x16,.browser-ie .work-docs-icon-remove-me-from-share-d0d2d3-24x24,.browser-ie .work-docs-icon-remove-me-from-share-ffffff-24x24,.browser-ie .work-docs-icon-remove-me-from-share-d0d2d3-16x16,.browser-ie .work-docs-icon-remove-me-from-share-ffffff-16x16,.browser-ie .work-docs-icon-transfer-owner-0e72a3-24x24,.browser-ie .work-docs-icon-transfer-owner-0e72a3-16x16,.browser-ie .work-docs-icon-transfer-owner-8ea9c9-24x24,.browser-ie .work-docs-icon-transfer-owner-8ea9c9-16x16,.browser-ie .work-docs-icon-transfer-owner-212f3e-24x24,.browser-ie .work-docs-icon-transfer-owner-212f3e-16x16,.browser-ie .work-docs-icon-transfer-owner-808184-24x24,.browser-ie .work-docs-icon-transfer-owner-808184-16x16,.browser-ie .work-docs-icon-transfer-owner-d0d2d3-24x24,.browser-ie .work-docs-icon-transfer-owner-ffffff-24x24,.browser-ie .work-docs-icon-transfer-owner-d0d2d3-16x16,.browser-ie .work-docs-icon-transfer-owner-ffffff-16x16,.browser-ie .work-docs-icon-sort-0e72a3-24x24,.browser-ie .work-docs-icon-sort-0e72a3-16x16,.browser-ie .work-docs-icon-sort-8ea9c9-24x24,.browser-ie .work-docs-icon-sort-8ea9c9-16x16,.browser-ie .work-docs-icon-sort-212f3e-24x24,.browser-ie .work-docs-icon-sort-212f3e-16x16,.browser-ie .work-docs-icon-sort-808184-24x24,.browser-ie .work-docs-icon-sort-808184-16x16,.browser-ie .work-docs-icon-sort-d0d2d3-24x24,.browser-ie .work-docs-icon-sort-ffffff-24x24,.browser-ie .work-docs-icon-sort-d0d2d3-16x16,.browser-ie .work-docs-icon-sort-ffffff-16x16,.browser-ie .work-docs-icon-download-mobile-0e72a3-24x24,.browser-ie .work-docs-icon-download-mobile-0e72a3-16x16,.browser-ie .work-docs-icon-download-mobile-8ea9c9-24x24,.browser-ie .work-docs-icon-download-mobile-8ea9c9-16x16,.browser-ie .work-docs-icon-download-mobile-212f3e-24x24,.browser-ie .work-docs-icon-download-mobile-212f3e-16x16,.browser-ie .work-docs-icon-download-mobile-808184-24x24,.browser-ie #left-sidebar .download-mobile-app-icon,#left-sidebar .browser-ie .download-mobile-app-icon,.browser-ie .work-docs-icon-download-mobile-808184-16x16,.browser-ie .work-docs-icon-download-mobile-d0d2d3-24x24,.browser-ie .work-docs-icon-download-mobile-ffffff-24x24,.browser-ie #left-sidebar .active .download-mobile-app-icon,#left-sidebar .active .browser-ie .download-mobile-app-icon,.browser-ie #left-sidebar li:hover .download-mobile-app-icon,#left-sidebar li:hover .browser-ie .download-mobile-app-icon,.browser-ie .work-docs-icon-download-mobile-d0d2d3-16x16,.browser-ie .work-docs-icon-download-mobile-ffffff-16x16,.browser-ie .work-docs-icon-download-sync-client-0e72a3-24x24,.browser-ie .work-docs-icon-download-sync-client-0e72a3-16x16,.browser-ie .work-docs-icon-download-sync-client-8ea9c9-24x24,.browser-ie .work-docs-icon-download-sync-client-8ea9c9-16x16,.browser-ie .work-docs-icon-download-sync-client-212f3e-24x24,.browser-ie .work-docs-icon-download-sync-client-212f3e-16x16,.browser-ie .work-docs-icon-download-sync-client-808184-24x24,.browser-ie #left-sidebar .download-sync-app-icon,#left-sidebar .browser-ie .download-sync-app-icon,.browser-ie .work-docs-icon-download-sync-client-808184-16x16,.browser-ie .work-docs-icon-download-sync-client-d0d2d3-24x24,.browser-ie .work-docs-icon-download-sync-client-ffffff-24x24,.browser-ie #left-sidebar .active .download-sync-app-icon,#left-sidebar .active .browser-ie .download-sync-app-icon,.browser-ie #left-sidebar li:hover .download-sync-app-icon,#left-sidebar li:hover .browser-ie .download-sync-app-icon,.browser-ie .work-docs-icon-download-sync-client-d0d2d3-16x16,.browser-ie .work-docs-icon-download-sync-client-ffffff-16x16,.browser-ie .work-docs-icon-admin-0e72a3-24x24,.browser-ie .work-docs-icon-admin-0e72a3-16x16,.browser-ie .work-docs-icon-admin-8ea9c9-24x24,.browser-ie .work-docs-icon-admin-8ea9c9-16x16,.browser-ie .work-docs-icon-admin-212f3e-24x24,.browser-ie .work-docs-icon-admin-212f3e-16x16,.browser-ie .work-docs-icon-admin-808184-24x24,.browser-ie #left-sidebar .administrator-icon,#left-sidebar .browser-ie .administrator-icon,.browser-ie .left-sidebar-minimized .ln-admin .sprite-icon,.left-sidebar-minimized .ln-admin .browser-ie .sprite-icon,.browser-ie .work-docs-icon-admin-808184-16x16,.browser-ie .work-docs-icon-admin-d0d2d3-24x24,.browser-ie .work-docs-icon-admin-ffffff-24x24,.browser-ie #left-sidebar .active .administrator-icon,#left-sidebar .active .browser-ie .administrator-icon,.browser-ie #left-sidebar li:hover .administrator-icon,#left-sidebar li:hover .browser-ie .administrator-icon,.browser-ie .left-sidebar-minimized .ln-admin:hover .sprite-icon,.left-sidebar-minimized .ln-admin:hover .browser-ie .sprite-icon,.browser-ie .left-sidebar-minimized .ln-admin.active .sprite-icon,.left-sidebar-minimized .ln-admin.active .browser-ie .sprite-icon,.browser-ie .work-docs-icon-admin-d0d2d3-16x16,.browser-ie .work-docs-icon-admin-ffffff-16x16,.browser-ie .work-docs-icon-check-inactive-0e72a3-24x24,.browser-ie input[type=checkbox].wd-blue-checkbox[disabled]+label.wd-blue-checkbox-label,.browser-ie .work-docs-icon-check-inactive-0e72a3-16x16,.browser-ie .work-docs-icon-check-inactive-8ea9c9-24x24,.browser-ie .work-docs-icon-check-inactive-8ea9c9-16x16,.browser-ie .work-docs-icon-check-inactive-212f3e-24x24,.browser-ie .work-docs-icon-check-inactive-212f3e-16x16,.browser-ie .work-docs-icon-check-inactive-808184-24x24,.browser-ie .work-docs-icon-check-inactive-808184-16x16,.browser-ie .work-docs-icon-check-inactive-d0d2d3-24x24,.browser-ie .work-docs-icon-check-inactive-d0d2d3-16x16,.browser-ie .work-docs-icon-check-inactive-ffffff-24x24,.browser-ie .work-docs-icon-check-inactive-ffffff-16x16,.browser-ie .work-docs-icon-radio-inactive-0e72a3-24x24,.browser-ie input[type=radio].wd-blue-radio[disabled]+label.wd-blue-radio-label,.browser-ie .work-docs-icon-radio-inactive-0e72a3-16x16,.browser-ie .work-docs-icon-radio-inactive-8ea9c9-24x24,.browser-ie .work-docs-icon-radio-inactive-8ea9c9-16x16,.browser-ie .work-docs-icon-radio-inactive-212f3e-24x24,.browser-ie .work-docs-icon-radio-inactive-212f3e-16x16,.browser-ie .work-docs-icon-radio-inactive-808184-24x24,.browser-ie .work-docs-icon-radio-inactive-808184-16x16,.browser-ie .work-docs-icon-radio-inactive-d0d2d3-24x24,.browser-ie .work-docs-icon-radio-inactive-d0d2d3-16x16,.browser-ie .work-docs-icon-radio-inactive-ffffff-24x24,.browser-ie .work-docs-icon-radio-inactive-ffffff-16x16,.browser-ie .work-docs-icon-remove-from-share-0e72a3-24x24,.browser-ie .work-docs-icon-remove-from-share-0e72a3-16x16,.browser-ie .work-docs-icon-edit-file-0e72a3-24x24,.browser-ie .work-docs-icon-edit-file-0e72a3-16x16,.browser-ie .work-docs-icon-edit-file-8ea9c9-24x24,.browser-ie .work-docs-icon-edit-file-8ea9c9-16x16,.browser-ie .work-docs-icon-edit-file-212f3e-24x24,.browser-ie .work-docs-icon-edit-file-212f3e-16x16,.browser-ie .work-docs-icon-edit-file-808184-24x24,.browser-ie .work-docs-icon-edit-file-808184-16x16,.browser-ie .work-docs-icon-edit-file-d0d2d3-24x24,.browser-ie .work-docs-icon-edit-file-d0d2d3-16x16,.browser-ie .work-docs-icon-edit-file-ffffff-24x24,.browser-ie .work-docs-icon-edit-file-ffffff-16x16,.browser-ie .action-icon-edit,.browser-ie .work-docs-icon-broken-link-0e72a3-24x24,.browser-ie .work-docs-icon-broken-link-0e72a3-16x16,.browser-ie .work-docs-icon-remove-from-share-8ea9c9-24x24,.browser-ie .work-docs-icon-remove-from-share-8ea9c9-16x16,.browser-ie .work-docs-icon-broken-link-8ea9c9-24x24,.browser-ie .work-docs-icon-broken-link-8ea9c9-16x16,.browser-ie .work-docs-icon-remove-from-share-212f3e-24x24,.browser-ie .work-docs-icon-remove-from-share-212f3e-16x16,.browser-ie .work-docs-icon-broken-link-212f3e-24x24,.browser-ie .work-docs-icon-broken-link-212f3e-16x16,.browser-ie .work-docs-icon-remove-from-share-808184-24x24,.browser-ie .work-docs-icon-remove-from-share-808184-16x16,.browser-ie .work-docs-icon-broken-link-808184-24x24,.browser-ie .work-docs-icon-broken-link-808184-16x16,.browser-ie .work-docs-icon-remove-from-share-d0d2d3-24x24,.browser-ie .work-docs-icon-remove-from-share-d0d2d3-16x16,.browser-ie .work-docs-icon-remove-from-share-ffffff-24x24,.browser-ie .work-docs-icon-remove-from-share-ffffff-16x16,.browser-ie .action-icon-remove-me-from-share,.browser-ie .work-docs-icon-broken-link-d0d2d3-24x24,.browser-ie .work-docs-icon-broken-link-d0d2d3-16x16,.browser-ie .work-docs-icon-broken-link-ffffff-24x24,.browser-ie .work-docs-icon-broken-link-ffffff-16x16,.browser-ie .work-docs-icon-no-preview-0e72a3-24x24,.browser-ie .work-docs-icon-no-preview-0e72a3-16x16,.browser-ie .work-docs-icon-session-expired-0e72a3-24x24,.browser-ie .work-docs-icon-session-expired-0e72a3-16x16,.browser-ie .work-docs-icon-no-preview-8ea9c9-24x24,.browser-ie .work-docs-icon-no-preview-8ea9c9-16x16,.browser-ie .work-docs-icon-session-expired-8ea9c9-24x24,.browser-ie .work-docs-icon-session-expired-8ea9c9-16x16,.browser-ie .work-docs-icon-no-preview-212f3e-24x24,.browser-ie .work-docs-icon-no-preview-212f3e-16x16,.browser-ie .work-docs-icon-session-expired-212f3e-24x24,.browser-ie .work-docs-icon-session-expired-212f3e-16x16,.browser-ie .work-docs-icon-no-preview-808184-24x24,.browser-ie .work-docs-icon-no-preview-808184-16x16,.browser-ie .work-docs-icon-session-expired-808184-24x24,.browser-ie .work-docs-icon-session-expired-808184-16x16,.browser-ie .work-docs-icon-no-preview-d0d2d3-24x24,.browser-ie .work-docs-icon-no-preview-d0d2d3-16x16,.browser-ie .work-docs-icon-no-preview-ffffff-24x24,.browser-ie .work-docs-icon-no-preview-ffffff-16x16,.browser-ie .work-docs-icon-session-expired-d0d2d3-24x24,.browser-ie .work-docs-icon-session-expired-d0d2d3-16x16,.browser-ie .work-docs-icon-session-expired-ffffff-24x24,.browser-ie .work-docs-icon-session-expired-ffffff-16x16,.browser-ie .work-docs-icon-leave-full-screen-0e72a3-24x24,.browser-ie .work-docs-icon-leave-full-screen-0e72a3-16x16,.browser-ie .work-docs-icon-leave-full-screen-8ea9c9-24x24,.browser-ie .work-docs-icon-leave-full-screen-8ea9c9-16x16,.browser-ie .work-docs-icon-leave-full-screen-212f3e-24x24,.browser-ie .work-docs-icon-leave-full-screen-212f3e-16x16,.browser-ie .work-docs-icon-leave-full-screen-808184-24x24,.browser-ie .work-docs-icon-leave-full-screen-808184-16x16,.browser-ie .work-docs-icon-leave-full-screen-d0d2d3-24x24,.browser-ie .work-docs-icon-leave-full-screen-ffffff-24x24,.browser-ie .work-docs-icon-leave-full-screen-d0d2d3-16x16,.browser-ie .work-docs-icon-leave-full-screen-ffffff-16x16,.browser-ie .work-docs-icon-full-screen-0e72a3-24x24,.browser-ie .work-docs-icon-full-screen-0e72a3-16x16,.browser-ie .work-docs-icon-full-screen-8ea9c9-24x24,.browser-ie .work-docs-icon-full-screen-8ea9c9-16x16,.browser-ie .work-docs-icon-full-screen-212f3e-24x24,.browser-ie .work-docs-icon-full-screen-212f3e-16x16,.browser-ie .work-docs-icon-full-screen-808184-24x24,.browser-ie .work-docs-icon-full-screen-808184-16x16,.browser-ie .work-docs-icon-full-screen-d0d2d3-24x24,.browser-ie .work-docs-icon-full-screen-ffffff-24x24,.browser-ie .work-docs-icon-full-screen-d0d2d3-16x16,.browser-ie .work-docs-icon-full-screen-ffffff-16x16,.browser-ie .work-docs-icon-pdf-bf1e0f-24x24,.browser-ie .work-docs-icon-pdf-bf1e0f-16x16,.browser-ie .work-docs-icon-powerpoint-dd5c27-24x24,.browser-ie .work-docs-icon-powerpoint-dd5c27-16x16,.browser-ie .work-docs-icon-excel-0e7d4f-24x24,.browser-ie .work-docs-icon-excel-0e7d4f-16x16,.browser-ie .work-docs-icon-word-276887-24x24,.browser-ie .work-docs-icon-word-276887-16x16,.browser-ie .work-docs-icon-add-person-0e72a3-24x24,.browser-ie .work-docs-icon-add-person-0e72a3-16x16,.browser-ie .work-docs-icon-achieve-0e72a3-24x24,.browser-ie .work-docs-icon-achieve-0e72a3-16x16,.browser-ie .work-docs-icon-pdf-0e72a3-24x24,.browser-ie .work-docs-icon-pdf-0e72a3-16x16,.browser-ie .work-docs-icon-powerpoint-0e72a3-24x24,.browser-ie .work-docs-icon-powerpoint-0e72a3-16x16,.browser-ie .work-docs-icon-excel-0e72a3-24x24,.browser-ie .work-docs-icon-excel-0e72a3-263x16,.browser-ie .work-docs-icon-word-0e72a3-24x24,.browser-ie .work-docs-icon-word-0e72a3-16x16,.browser-ie .work-docs-icon-default-0e72a3-24x24,.browser-ie .work-docs-icon-default-0e72a3-16x16,.browser-ie .work-docs-icon-close-alternate-0e72a3-24x24,.browser-ie .work-docs-icon-close-alternate-0e72a3-16x16,.browser-ie .work-docs-icon-calendar-0e72a3-24x24,.browser-ie .work-docs-icon-calendar-0e72a3-16x16,.browser-ie .work-docs-icon-link-alternate-0e72a3-24x24,.browser-ie .work-docs-icon-link-alternate-0e72a3-16x16,.browser-ie .work-docs-icon-check-press-0e72a3-24x24,.browser-ie input[type=checkbox].wd-blue-checkbox:active+label.wd-blue-checkbox-label,.browser-ie .work-docs-icon-check-press-0e72a3-16x16,.browser-ie .work-docs-icon-check-off-0e72a3-24x24,.browser-ie input[type=checkbox].wd-blue-checkbox+label.wd-blue-checkbox-label,.browser-ie .work-docs-icon-check-off-0e72a3-16x16,.browser-ie .work-docs-icon-radio-selected-0e72a3-24x24,.browser-ie input[type=radio].wd-blue-radio:checked+label.wd-blue-radio-label,.browser-ie .work-docs-icon-radio-selected-0e72a3-16x16,.browser-ie .work-docs-icon-radio-press-0e72a3-24x24,.browser-ie input[type=radio].wd-blue-radio:active+label.wd-blue-radio-label,.browser-ie .work-docs-icon-radio-press-0e72a3-16x16,.browser-ie .work-docs-icon-radio-off-0e72a3-24x24,.browser-ie .wd-blue-radio-label,.browser-ie .work-docs-icon-radio-off-0e72a3-16x16,.browser-ie .work-docs-icon-refresh-0e72a3-24x24,.browser-ie .work-docs-icon-refresh-0e72a3-16x16,.browser-ie .file-browser-title-bar .browser-restore-icon,.file-browser-title-bar .browser-ie .browser-restore-icon,.browser-ie .work-docs-icon-progress-0e72a3-24x24,.browser-ie .work-docs-icon-progress-0e72a3-16x16,.browser-ie .work-docs-icon-reply-0e72a3-24x24,.browser-ie .work-docs-icon-reply-0e72a3-16x16,.browser-ie .work-docs-icon-people-0e72a3-24x24,.browser-ie .work-docs-icon-people-0e72a3-16x16,.browser-ie .work-docs-icon-add-person-8ea9c9-24x24,.browser-ie .work-docs-icon-add-person-8ea9c9-16x16,.browser-ie .work-docs-icon-achieve-8ea9c9-24x24,.browser-ie .work-docs-icon-achieve-8ea9c9-16x16,.browser-ie .work-docs-icon-pdf-8ea9c9-24x24,.browser-ie .work-docs-icon-pdf-8ea9c9-16x16,.browser-ie .work-docs-icon-powerpoint-8ea9c9-24x24,.browser-ie .work-docs-icon-powerpoint-8ea9c9-16x16,.browser-ie .work-docs-icon-excel-8ea9c9-24x24,.browser-ie .work-docs-icon-excel-8ea9c9-138x16,.browser-ie .work-docs-icon-word-8ea9c9-24x24,.browser-ie .work-docs-icon-word-8ea9c9-16x16,.browser-ie .work-docs-icon-default-8ea9c9-24x24,.browser-ie .work-docs-icon-default-8ea9c9-16x16,.browser-ie .work-docs-icon-close-alternate-8ea9c9-24x24,.browser-ie .work-docs-icon-close-alternate-8ea9c9-16x16,.browser-ie .work-docs-icon-calendar-8ea9c9-24x24,.browser-ie .work-docs-icon-calendar-8ea9c9-16x16,.browser-ie .work-docs-icon-link-alternate-8ea9c9-24x24,.browser-ie .work-docs-icon-link-alternate-8ea9c9-16x16,.browser-ie .work-docs-icon-check-press-8ea9c9-24x24,.browser-ie .work-docs-icon-check-press-8ea9c9-16x16,.browser-ie .work-docs-icon-check-off-8ea9c9-24x24,.browser-ie .work-docs-icon-check-off-8ea9c9-16x16,.browser-ie .work-docs-icon-radio-selected-8ea9c9-24x24,.browser-ie input[type=radio].wd-blue-radio:checked[disabled]+label.wd-blue-radio-label,.browser-ie .work-docs-icon-radio-selected-8ea9c9-16x16,.browser-ie .work-docs-icon-radio-press-8ea9c9-24x24,.browser-ie .work-docs-icon-radio-press-8ea9c9-16x16,.browser-ie .work-docs-icon-radio-off-8ea9c9-24x24,.browser-ie .work-docs-icon-radio-off-8ea9c9-16x16,.browser-ie .work-docs-icon-refresh-8ea9c9-24x24,.browser-ie .work-docs-icon-refresh-8ea9c9-16x16,.browser-ie .work-docs-icon-progress-8ea9c9-24x24,.browser-ie .work-docs-icon-progress-8ea9c9-16x16,.browser-ie .work-docs-icon-reply-8ea9c9-24x24,.browser-ie .work-docs-icon-reply-8ea9c9-16x16,.browser-ie .work-docs-icon-people-8ea9c9-24x24,.browser-ie .work-docs-icon-people-8ea9c9-16x16,.browser-ie .work-docs-icon-add-person-212f3e-24x24,.browser-ie .work-docs-icon-add-person-212f3e-16x16,.browser-ie .work-docs-icon-achieve-212f3e-24x24,.browser-ie .work-docs-icon-achieve-212f3e-16x16,.browser-ie .work-docs-icon-pdf-212f3e-24x24,.browser-ie .work-docs-icon-pdf-212f3e-16x16,.browser-ie .work-docs-icon-powerpoint-212f3e-24x24,.browser-ie .work-docs-icon-powerpoint-212f3e-16x16,.browser-ie .work-docs-icon-excel-212f3e-24x24,.browser-ie .work-docs-icon-excel-212f3e-138x16,.browser-ie .work-docs-icon-word-212f3e-24x24,.browser-ie .work-docs-icon-word-212f3e-16x16,.browser-ie .work-docs-icon-default-212f3e-24x24,.browser-ie .work-docs-icon-default-212f3e-16x16,.browser-ie .work-docs-icon-close-alternate-212f3e-24x24,.browser-ie .work-docs-icon-close-alternate-212f3e-16x16,.browser-ie .work-docs-icon-calendar-212f3e-24x24,.browser-ie .work-docs-icon-calendar-212f3e-16x16,.browser-ie .work-docs-icon-link-alternate-212f3e-24x24,.browser-ie .work-docs-icon-link-alternate-212f3e-16x16,.browser-ie .work-docs-icon-check-press-212f3e-24x24,.browser-ie .work-docs-icon-check-press-212f3e-16x16,.browser-ie .work-docs-icon-check-off-212f3e-24x24,.browser-ie .work-docs-icon-check-off-212f3e-16x16,.browser-ie .work-docs-icon-radio-selected-212f3e-24x24,.browser-ie .work-docs-icon-radio-selected-212f3e-16x16,.browser-ie .work-docs-icon-radio-press-212f3e-24x24,.browser-ie .work-docs-icon-radio-press-212f3e-16x16,.browser-ie .work-docs-icon-radio-off-212f3e-24x24,.browser-ie .work-docs-icon-radio-off-212f3e-16x16,.browser-ie .work-docs-icon-refresh-212f3e-24x24,.browser-ie .work-docs-icon-refresh-212f3e-16x16,.browser-ie .work-docs-icon-progress-212f3e-24x24,.browser-ie .work-docs-icon-progress-212f3e-16x16,.browser-ie .work-docs-icon-reply-212f3e-24x24,.browser-ie .work-docs-icon-reply-212f3e-16x16,.browser-ie .work-docs-icon-people-212f3e-24x24,.browser-ie .work-docs-icon-people-212f3e-16x16,.browser-ie .work-docs-icon-add-person-808184-24x24,.browser-ie .work-docs-icon-add-person-d0d2d3-24x24,.browser-ie .work-docs-icon-add-person-ffffff-24x24,.browser-ie .work-docs-icon-add-person-808184-16x16,.browser-ie .work-docs-icon-add-person-d0d2d3-16x16,.browser-ie .work-docs-icon-add-person-ffffff-16x16,.browser-ie .work-docs-icon-achieve-808184-24x24,.browser-ie .work-docs-icon-achieve-d0d2d3-24x24,.browser-ie .work-docs-icon-achieve-ffffff-24x24,.browser-ie .work-docs-icon-achieve-808184-16x16,.browser-ie .work-docs-icon-achieve-d0d2d3-16x16,.browser-ie .work-docs-icon-achieve-ffffff-16x16,.browser-ie .work-docs-icon-pdf-787982-24x25,.browser-ie .work-docs-icon-pdf-d0d2d3-24x24,.browser-ie .work-docs-icon-pdf-ffffff-24x24,.browser-ie .work-docs-icon-pdf-d0d2d3-16x16,.browser-ie .work-docs-icon-pdf-ffffff-16x16,.browser-ie .work-docs-icon-powerpoint-808184-24x24,.browser-ie .work-docs-icon-powerpoint-d0d2d3-24x24,.browser-ie .work-docs-icon-powerpoint-ffffff-24x24,.browser-ie .work-docs-icon-powerpoint-808184-16x16,.browser-ie .work-docs-icon-powerpoint-d0d2d3-16x16,.browser-ie .work-docs-icon-powerpoint-ffffff-16x16,.browser-ie .work-docs-icon-excel-808184-261x24,.browser-ie .work-docs-icon-excel-d0d2d3-143x24,.browser-ie .work-docs-icon-excel-ffffff-24x24,.browser-ie .work-docs-icon-excel-808184-16x16,.browser-ie .work-docs-icon-excel-d0d2d3-16x16,.browser-ie .work-docs-icon-excel-ffffff-16x16,.browser-ie .work-docs-icon-word-808184-24x24,.browser-ie .work-docs-icon-word-d0d2d3-24x24,.browser-ie .work-docs-icon-word-ffffff-24x24,.browser-ie .work-docs-icon-word-808184-16x16,.browser-ie .work-docs-icon-word-d0d2d3-16x16,.browser-ie .work-docs-icon-word-ffffff-16x16,.browser-ie .work-docs-icon-image-0e72a3-24x24,.browser-ie .work-docs-icon-image-0e72a3-16x16,.browser-ie .work-docs-icon-image-8ea9c9-24x24,.browser-ie .work-docs-icon-image-8ea9c9-16x16,.browser-ie .work-docs-icon-image-212f3e-24x24,.browser-ie .work-docs-icon-image-212f3e-16x16,.browser-ie .work-docs-icon-image-808184-24x24,.browser-ie .work-docs-icon-image-808184-16x16,.browser-ie .work-docs-icon-image-d0d2d3-24x24,.browser-ie .work-docs-icon-image-ffffff-24x24,.browser-ie .work-docs-icon-image-d0d2d3-16x16,.browser-ie .work-docs-icon-image-ffffff-16x16,.browser-ie .work-docs-icon-default-808184-24x24,.browser-ie .work-docs-icon-default-d0d2d3-24x24,.browser-ie .work-docs-icon-default-ffffff-24x24,.browser-ie .work-docs-icon-default-808184-16x16,.browser-ie .work-docs-icon-default-d0d2d3-16x16,.browser-ie .work-docs-icon-default-ffffff-16x16,.browser-ie .work-docs-icon-close-alternate-808184-24x24,.browser-ie .work-docs-icon-close-alternate-d0d2d3-24x24,.browser-ie .work-docs-icon-close-alternate-ffffff-24x24,.browser-ie .work-docs-icon-close-alternate-808184-16x16,.browser-ie .work-docs-icon-close-alternate-d0d2d3-16x16,.browser-ie .work-docs-icon-close-alternate-ffffff-16x16,.browser-ie .work-docs-icon-calendar-808184-24x24,.browser-ie .work-docs-icon-calendar-d0d2d3-24x24,.browser-ie .work-docs-icon-calendar-ffffff-24x24,.browser-ie .work-docs-icon-calendar-808184-16x16,.browser-ie .work-docs-icon-calendar-d0d2d3-16x16,.browser-ie .work-docs-icon-calendar-ffffff-16x16,.browser-ie .work-docs-icon-link-alternate-808184-24x24,.browser-ie .work-docs-icon-link-alternate-d0d2d3-24x24,.browser-ie .work-docs-icon-link-alternate-ffffff-24x24,.browser-ie .work-docs-icon-link-alternate-808184-16x16,.browser-ie .work-docs-icon-link-alternate-d0d2d3-16x16,.browser-ie .work-docs-icon-link-alternate-ffffff-16x16,.browser-ie .work-docs-icon-check-selected-0e72a3-24x24,.browser-ie input[type=checkbox].wd-blue-checkbox:checked+label.wd-blue-checkbox-label,.browser-ie .work-docs-icon-check-selected-0e72a3-16x16,.browser-ie .work-docs-icon-check-selected-8ea9c9-24x24,.browser-ie input[type=checkbox].wd-blue-checkbox:checked[disabled]+label.wd-blue-checkbox-label,.browser-ie .work-docs-icon-check-selected-8ea9c9-16x16,.browser-ie .work-docs-icon-check-selected-212f3e-24x24,.browser-ie .work-docs-icon-check-selected-212f3e-16x16,.browser-ie .work-docs-icon-check-selected-808184-24x24,.browser-ie .work-docs-icon-check-selected-808184-16x16,.browser-ie .work-docs-icon-check-selected-d0d2d3-24x24,.browser-ie .work-docs-icon-check-selected-ffffff-24x24,.browser-ie .work-docs-icon-check-selected-d0d2d3-16x16,.browser-ie .work-docs-icon-check-selected-ffffff-16x16,.browser-ie .work-docs-icon-check-press-808184-24x24,.browser-ie .work-docs-icon-check-press-d0d2d3-24x24,.browser-ie .work-docs-icon-check-press-ffffff-24x24,.browser-ie .work-docs-icon-check-press-808184-16x16,.browser-ie .work-docs-icon-check-press-d0d2d3-16x16,.browser-ie .work-docs-icon-check-press-ffffff-16x16,.browser-ie .work-docs-icon-check-off-808184-24x24,.browser-ie .work-docs-icon-check-off-d0d2d3-24x24,.browser-ie .work-docs-icon-check-off-ffffff-24x24,.browser-ie .work-docs-icon-check-off-808184-16x16,.browser-ie .work-docs-icon-check-off-d0d2d3-16x16,.browser-ie .work-docs-icon-check-off-ffffff-16x16,.browser-ie .work-docs-icon-radio-selected-808184-24x24,.browser-ie .work-docs-icon-radio-selected-d0d2d3-24x24,.browser-ie .work-docs-icon-radio-selected-ffffff-24x24,.browser-ie .work-docs-icon-radio-selected-808184-16x16,.browser-ie .work-docs-icon-radio-selected-d0d2d3-16x16,.browser-ie .work-docs-icon-radio-selected-ffffff-16x16,.browser-ie .work-docs-icon-radio-press-808184-24x24,.browser-ie .work-docs-icon-radio-press-d0d2d3-24x24,.browser-ie .work-docs-icon-radio-press-ffffff-24x24,.browser-ie .work-docs-icon-radio-press-808184-16x16,.browser-ie .work-docs-icon-radio-press-d0d2d3-16x16,.browser-ie .work-docs-icon-radio-press-ffffff-16x16,.browser-ie .work-docs-icon-radio-off-808184-24x24,.browser-ie .work-docs-icon-radio-off-d0d2d3-24x24,.browser-ie .work-docs-icon-radio-off-ffffff-24x24,.browser-ie .work-docs-icon-radio-off-808184-16x16,.browser-ie .work-docs-icon-radio-off-d0d2d3-16x16,.browser-ie .work-docs-icon-radio-off-ffffff-16x16,.browser-ie .work-docs-icon-refresh-alternate-0e72a3-24x24,.browser-ie .work-docs-icon-refresh-alternate-8ea9c9-24x24,.browser-ie .work-docs-icon-refresh-alternate-212f3e-24x24,.browser-ie .work-docs-icon-refresh-alternate-808184-24x24,.browser-ie .work-docs-icon-refresh-alternate-d0d2d3-24x24,.browser-ie .work-docs-icon-refresh-alternate-ffffff-24x24,.browser-ie .work-docs-icon-refresh-alternate-0e72a3-16x16,.browser-ie .work-docs-icon-refresh-alternate-8ea9c9-16x16,.browser-ie .work-docs-icon-refresh-alternate-212f3e-16x16,.browser-ie .work-docs-icon-refresh-alternate-808184-16x16,.browser-ie .work-docs-icon-refresh-alternate-d0d2d3-16x16,.browser-ie .work-docs-icon-refresh-alternate-ffffff-16x16,.browser-ie .work-docs-icon-refresh-808184-24x24,.browser-ie .work-docs-icon-refresh-d0d2d3-24x24,.browser-ie .work-docs-icon-refresh-ffffff-24x24,.browser-ie .work-docs-icon-refresh-808184-16x16,.browser-ie .work-docs-icon-refresh-d0d2d3-16x16,.browser-ie .work-docs-icon-refresh-ffffff-16x16,.browser-ie .work-docs-icon-progress-808184-24x24,.browser-ie .work-docs-icon-progress-d0d2d3-24x24,.browser-ie .work-docs-icon-progress-ffffff-24x24,.browser-ie .work-docs-icon-progress-808184-16x16,.browser-ie .work-docs-icon-progress-d0d2d3-16x16,.browser-ie .work-docs-icon-progress-ffffff-16x16,.browser-ie .work-docs-icon-reply-808184-24x24,.browser-ie .work-docs-icon-reply-d0d2d3-24x24,.browser-ie .work-docs-icon-reply-ffffff-24x24,.browser-ie .work-docs-icon-reply-808184-16x16,.browser-ie .work-docs-icon-reply-d0d2d3-16x16,.browser-ie .work-docs-icon-reply-ffffff-16x16,.browser-ie .work-docs-icon-people-808184-24x24,.browser-ie .work-docs-icon-people-d0d2d3-24x24,.browser-ie .work-docs-icon-people-ffffff-24x24,.browser-ie .work-docs-icon-people-808184-16x16,.browser-ie .work-docs-icon-people-d0d2d3-16x16,.browser-ie .work-docs-icon-people-ffffff-16x16,.browser-ie .work-docs-icon-restore-0e72a3-24x24,.browser-ie .work-docs-icon-restore-8ea9c9-24x24,.browser-ie .work-docs-icon-restore-212f3e-24x24,.browser-ie .work-docs-icon-restore-808184-24x24,.browser-ie .work-docs-icon-restore-d0d2d3-24x24,.browser-ie .work-docs-icon-restore-ffffff-24x24,.browser-ie .work-docs-icon-restore-0e72a3-16x16,.browser-ie .work-docs-icon-restore-8ea9c9-16x16,.browser-ie .work-docs-icon-restore-212f3e-16x16,.browser-ie .work-docs-icon-restore-808184-16x16,.browser-ie .work-docs-icon-restore-d0d2d3-16x16,.browser-ie .work-docs-icon-restore-ffffff-16x16,.browser-ie .work-docs-icon-arrows-right-0e72a3-24x24,.browser-ie .work-docs-icon-arrows-right-8ea9c9-24x24,.browser-ie .work-docs-icon-arrows-right-212f3e-24x24,.browser-ie .work-docs-icon-arrows-right-808184-24x24,.browser-ie .work-docs-icon-arrows-right-d0d2d3-24x24,.browser-ie .work-docs-icon-arrows-right-ffffff-24x24,.browser-ie .expanded-right .side-bar-closepanel-icon,.expanded-right .browser-ie .side-bar-closepanel-icon,.browser-ie .work-docs-icon-arrows-right-0e72a3-16x16,.browser-ie .work-docs-icon-arrows-right-8ea9c9-16x16,.browser-ie .work-docs-icon-arrows-right-212f3e-16x16,.browser-ie .work-docs-icon-arrows-right-808184-16x16,.browser-ie .work-docs-icon-arrows-right-d0d2d3-16x16,.browser-ie .work-docs-icon-arrows-right-ffffff-16x16,.browser-ie .work-docs-icon-arrows-left-0e72a3-24x24,.browser-ie .work-docs-icon-arrows-left-8ea9c9-24x24,.browser-ie .work-docs-icon-arrows-left-212f3e-24x24,.browser-ie .work-docs-icon-arrows-left-808184-24x24,.browser-ie .work-docs-icon-arrows-left-d0d2d3-24x24,.browser-ie .work-docs-icon-arrows-left-ffffff-24x24,.browser-ie .work-docs-icon-arrows-left-0e72a3-16x16,.browser-ie .work-docs-icon-arrows-left-8ea9c9-16x16,.browser-ie .work-docs-icon-arrows-left-212f3e-16x16,.browser-ie .work-docs-icon-arrows-left-808184-16x16,.browser-ie .work-docs-icon-arrows-left-d0d2d3-16x16,.browser-ie .work-docs-icon-arrows-left-ffffff-16x16,.browser-ie .work-docs-icon-ellipsis-0e72a3-24x24,.browser-ie .work-docs-icon-ellipsis-8ea9c9-24x24,.browser-ie .work-docs-icon-ellipsis-212f3e-24x24,.browser-ie .work-docs-icon-ellipsis-808184-24x24,.browser-ie .work-docs-icon-ellipsis-d0d2d3-24x24,.browser-ie .work-docs-icon-ellipsis-ffffff-24x24,.browser-ie .work-docs-icon-ellipsis-0e72a3-16x16,.browser-ie .work-docs-icon-ellipsis-8ea9c9-16x16,.browser-ie .work-docs-icon-ellipsis-212f3e-16x16,.browser-ie .work-docs-icon-ellipsis-808184-16x16,.browser-ie .work-docs-icon-ellipsis-d0d2d3-16x16,.browser-ie .work-docs-icon-ellipsis-ffffff-16x16,.browser-ie .work-docs-icon-minus-0e72a3-24x24,.browser-ie .work-docs-icon-minus-8ea9c9-24x24,.browser-ie .work-docs-icon-minus-212f3e-24x24,.browser-ie .work-docs-icon-minus-808184-24x24,.browser-ie .work-docs-icon-minus-d0d2d3-24x24,.browser-ie .work-docs-icon-minus-ffffff-24x24,.browser-ie .work-docs-icon-minus-0e72a3-16x16,.browser-ie .work-docs-icon-minus-8ea9c9-16x16,.browser-ie .work-docs-icon-minus-212f3e-16x16,.browser-ie .work-docs-icon-minus-808184-16x16,.browser-ie .work-docs-icon-minus-d0d2d3-16x16,.browser-ie .work-docs-icon-minus-ffffff-16x16,.browser-ie .work-docs-icon-plus-0e72a3-24x24,.browser-ie .work-docs-icon-plus-8ea9c9-24x24,.browser-ie .work-docs-icon-plus-212f3e-24x24,.browser-ie .work-docs-icon-plus-808184-24x24,.browser-ie .work-docs-icon-plus-d0d2d3-24x24,.browser-ie .work-docs-icon-plus-ffffff-24x24,.browser-ie .work-docs-icon-plus-0e72a3-16x16,.browser-ie .work-docs-icon-plus-8ea9c9-16x16,.browser-ie .work-docs-icon-plus-212f3e-16x16,.browser-ie .work-docs-icon-plus-808184-16x16,.browser-ie .work-docs-icon-plus-d0d2d3-16x16,.browser-ie .work-docs-icon-plus-ffffff-16x16,.browser-ie .work-docs-icon-notifications-ffffff-16x16,.browser-ie .work-docs-icon-notifications-ffffff-24x24,.browser-ie .work-docs-icon-notifications-0e72a3-24x24,.browser-ie .work-docs-icon-notifications-0e72a3-16x16,.browser-ie .work-docs-icon-notifications-8ea9c9-24x24,.browser-ie .work-docs-icon-notifications-8ea9c9-16x16,.browser-ie .work-docs-icon-notifications-212f3e-24x24,.browser-ie .work-docs-icon-notifications-212f3e-16x16,.browser-ie .work-docs-icon-notifications-808184-24x24,.browser-ie .work-docs-icon-notifications-808184-16x16,.browser-ie .work-docs-icon-notifications-d0d2d3-24x24,.browser-ie .work-docs-icon-notifications-d0d2d3-16x16,.browser-ie .work-docs-icon-zoom-out-0e72a3-24x24,.browser-ie .work-docs-icon-zoom-out-0e72a3-16x16,.browser-ie .work-docs-icon-zoom-out-8ea9c9-24x24,.browser-ie .work-docs-icon-zoom-out-8ea9c9-16x16,.browser-ie .work-docs-icon-zoom-out-212f3e-24x24,.browser-ie .work-docs-icon-zoom-out-212f3e-16x16,.browser-ie .work-docs-icon-zoom-out-808184-24x24,.browser-ie .work-docs-icon-zoom-out-808184-16x16,.browser-ie .work-docs-icon-zoom-out-d0d2d3-24x24,.browser-ie .work-docs-icon-zoom-out-d0d2d3-16x16,.browser-ie .work-docs-icon-zoom-out-ffffff-24x24,.browser-ie .work-docs-icon-zoom-out-ffffff-16x16,.browser-ie .work-docs-icon-zoom-in-0e72a3-24x24,.browser-ie .work-docs-icon-zoom-in-0e72a3-16x16,.browser-ie .work-docs-icon-zoom-in-8ea9c9-24x24,.browser-ie .work-docs-icon-zoom-in-8ea9c9-16x16,.browser-ie .work-docs-icon-zoom-in-212f3e-24x24,.browser-ie .work-docs-icon-zoom-in-212f3e-16x16,.browser-ie .work-docs-icon-zoom-in-808184-24x24,.browser-ie .work-docs-icon-zoom-in-808184-16x16,.browser-ie .work-docs-icon-zoom-in-d0d2d3-24x24,.browser-ie .work-docs-icon-zoom-in-d0d2d3-16x16,.browser-ie .work-docs-icon-zoom-in-ffffff-24x24,.browser-ie .work-docs-icon-zoom-in-ffffff-16x16,.browser-ie .work-docs-icon-page-down-0e72a3-24x24,.browser-ie .work-docs-icon-page-down-0e72a3-16x16,.browser-ie .work-docs-icon-page-down-8ea9c9-24x24,.browser-ie .work-docs-icon-page-down-8ea9c9-16x16,.browser-ie .work-docs-icon-page-down-212f3e-24x24,.browser-ie .work-docs-icon-page-down-212f3e-16x16,.browser-ie .work-docs-icon-page-down-808184-24x24,.browser-ie .work-docs-icon-page-down-808184-16x16,.browser-ie .work-docs-icon-page-down-d0d2d3-24x24,.browser-ie .work-docs-icon-page-down-d0d2d3-16x16,.browser-ie .work-docs-icon-page-down-ffffff-24x24,.browser-ie .work-docs-icon-page-down-ffffff-16x16,.browser-ie .work-docs-icon-page-up-0e72a3-24x24,.browser-ie .work-docs-icon-page-up-0e72a3-16x16,.browser-ie .work-docs-icon-page-up-8ea9c9-24x24,.browser-ie .work-docs-icon-page-up-8ea9c9-16x16,.browser-ie .work-docs-icon-page-up-212f3e-24x24,.browser-ie .work-docs-icon-page-up-212f3e-16x16,.browser-ie .work-docs-icon-page-up-808184-24x24,.browser-ie .work-docs-icon-page-up-808184-16x16,.browser-ie .work-docs-icon-page-up-d0d2d3-24x24,.browser-ie .work-docs-icon-page-up-d0d2d3-16x16,.browser-ie .work-docs-icon-page-up-ffffff-24x24,.browser-ie .work-docs-icon-page-up-ffffff-16x16,.browser-ie .work-docs-icon-carat-right-lg-d0d2d3-24x24,.browser-ie .work-docs-icon-carat-right-lg-8ea9c9-24x24,.browser-ie .work-docs-icon-carat-right-lg-212f3e-24x24,.browser-ie .work-docs-icon-carat-right-lg-0e72a3-24x24,.browser-ie .work-docs-icon-carat-right-lg-808184-24x24,.browser-ie .work-docs-icon-carat-right-lg-ffffff-24x24,.browser-ie .work-docs-icon-carat-right-lg-d0d2d3-16x16,.browser-ie .work-docs-icon-carat-right-lg-8ea9c9-16x16,.browser-ie .work-docs-icon-carat-right-lg-212f3e-16x16,.browser-ie .work-docs-icon-carat-right-lg-0e72a3-16x16,.browser-ie .work-docs-icon-carat-right-lg-808184-16x16,.browser-ie .work-docs-icon-carat-right-lg-ffffff-16x16,.browser-ie .work-docs-icon-carat-up-lg-d0d2d3-24x24,.browser-ie .work-docs-icon-carat-up-lg-8ea9c9-24x24,.browser-ie .work-docs-icon-carat-up-lg-212f3e-24x24,.browser-ie .work-docs-icon-carat-up-lg-0e72a3-24x24,.browser-ie .work-docs-icon-carat-up-lg-808184-24x24,.browser-ie .work-docs-icon-carat-up-lg-ffffff-24x24,.browser-ie .work-docs-icon-carat-up-lg-d0d2d3-16x16,.browser-ie .work-docs-icon-carat-up-lg-8ea9c9-16x16,.browser-ie .work-docs-icon-carat-up-lg-212f3e-16x16,.browser-ie .work-docs-icon-carat-up-lg-0e72a3-16x16,.browser-ie .work-docs-icon-carat-up-lg-808184-16x16,.browser-ie .work-docs-icon-carat-up-lg-ffffff-16x16,.browser-ie .work-docs-icon-carat-down-lg-d0d2d3-24x24,.browser-ie .work-docs-icon-carat-down-lg-8ea9c9-24x24,.browser-ie .work-docs-icon-carat-down-lg-212f3e-24x24,.browser-ie .work-docs-icon-carat-down-lg-0e72a3-24x24,.browser-ie .work-docs-icon-carat-down-lg-808184-24x24,.browser-ie .work-docs-icon-carat-down-lg-ffffff-24x24,.browser-ie .work-docs-icon-carat-down-lg-d0d2d3-16x16,.browser-ie .work-docs-icon-carat-down-lg-8ea9c9-16x16,.browser-ie .work-docs-icon-carat-down-lg-212f3e-16x16,.browser-ie .work-docs-icon-carat-down-lg-0e72a3-16x16,.browser-ie .caret,.browser-ie .work-docs-icon-carat-down-lg-808184-16x16,.browser-ie .work-docs-icon-carat-down-lg-ffffff-16x16,.browser-ie .work-docs-icon-carat-left-lg-d0d2d3-24x24,.browser-ie .work-docs-icon-carat-left-lg-8ea9c9-24x24,.browser-ie .work-docs-icon-carat-left-lg-212f3e-24x24,.browser-ie .work-docs-icon-carat-left-lg-0e72a3-24x24,.browser-ie .work-docs-icon-carat-left-lg-808184-24x24,.browser-ie .work-docs-icon-carat-left-lg-ffffff-24x24,.browser-ie .work-docs-icon-carat-left-lg-d0d2d3-16x16,.browser-ie .work-docs-icon-carat-left-lg-8ea9c9-16x16,.browser-ie .work-docs-icon-carat-left-lg-212f3e-16x16,.browser-ie .work-docs-icon-carat-left-lg-0e72a3-16x16,.browser-ie .work-docs-icon-carat-left-lg-808184-16x16,.browser-ie .work-docs-icon-carat-left-lg-ffffff-16x16,.browser-ie .work-docs-icon-unchecked-round-d0d2d3-24x24,.browser-ie .work-docs-icon-unchecked-round-8ea9c9-24x24,.browser-ie .work-docs-icon-unchecked-round-212f3e-24x24,.browser-ie input[type=radio].wd-white-radio+label.wd-white-radio-label,.browser-ie .work-docs-icon-unchecked-round-0e72a3-24x24,.browser-ie .work-docs-icon-unchecked-round-808184-24x24,.browser-ie .work-docs-icon-unchecked-round-ffffff-24x24,.browser-ie .work-docs-icon-unchecked-round-d0d2d3-16x16,.browser-ie .work-docs-icon-unchecked-round-8ea9c9-16x16,.browser-ie .work-docs-icon-unchecked-round-212f3e-16x16,.browser-ie .work-docs-icon-unchecked-round-0e72a3-16x16,.browser-ie .work-docs-icon-unchecked-round-808184-16x16,.browser-ie .work-docs-icon-unchecked-round-ffffff-16x16,.browser-ie .work-docs-icon-close-activity-tray-d0d2d3-36x24,.browser-ie .work-docs-icon-close-activity-tray-8ea9c9-36x24,.browser-ie .work-docs-icon-close-activity-tray-212f3e-36x24,.browser-ie .work-docs-icon-close-activity-tray-0e72a3-36x24,.browser-ie .work-docs-icon-close-activity-tray-808184-36x24,.browser-ie .work-docs-icon-close-activity-tray-ffffff-36x24,.browser-ie .work-docs-icon-close-activity-tray-d0d2d3-24x16,.browser-ie .work-docs-icon-close-activity-tray-8ea9c9-24x16,.browser-ie .work-docs-icon-close-activity-tray-212f3e-24x16,.browser-ie .work-docs-icon-close-activity-tray-0e72a3-24x16,.browser-ie .work-docs-icon-close-activity-tray-808184-24x16,.browser-ie .work-docs-icon-close-activity-tray-ffffff-24x16,.browser-ie .work-docs-icon-open-activity-tray-chat-d0d2d3-37x24,.browser-ie .work-docs-icon-open-activity-tray-chat-8ea9c9-37x24,.browser-ie .work-docs-icon-open-activity-tray-chat-212f3e-37x24,.browser-ie .work-docs-icon-open-activity-tray-chat-0e72a3-37x24,.browser-ie .work-docs-icon-open-activity-tray-chat-808184-37x24,.browser-ie .work-docs-icon-open-activity-tray-chat-ffffff-37x24,.browser-ie .work-docs-icon-open-activity-tray-chat-d0d2d3-24x16,.browser-ie .work-docs-icon-open-activity-tray-chat-8ea9c9-24x16,.browser-ie .work-docs-icon-open-activity-tray-chat-212f3e-24x16,.browser-ie .work-docs-icon-open-activity-tray-chat-0e72a3-24x16,.browser-ie .work-docs-icon-open-activity-tray-chat-808184-24x16,.browser-ie .work-docs-icon-open-activity-tray-chat-ffffff-24x16,.browser-ie .work-docs-icon-open-folder-d0d2d3-24x24,.browser-ie .work-docs-icon-open-folder-8ea9c9-24x24,.browser-ie .work-docs-icon-open-folder-212f3e-24x24,.browser-ie .work-docs-icon-open-folder-0e72a3-24x24,.browser-ie .work-docs-icon-open-folder-808184-24x24,.browser-ie .work-docs-icon-open-folder-ffffff-24x24,.browser-ie .work-docs-icon-open-folder-d0d2d3-16x16,.browser-ie .work-docs-icon-open-folder-8ea9c9-16x16,.browser-ie .work-docs-icon-open-folder-212f3e-16x16,.browser-ie .work-docs-icon-open-folder-0e72a3-16x16,.browser-ie .work-docs-icon-open-folder-808184-16x16,.browser-ie .work-docs-icon-open-folder-ffffff-16x16,.browser-ie .action-icon-open,.browser-ie .work-docs-icon-carat-right-d0d2d3-24x24,.browser-ie .work-docs-icon-carat-right-8ea9c9-24x24,.browser-ie .work-docs-icon-carat-right-212f3e-24x24,.browser-ie .work-docs-icon-carat-right-0e72a3-24x24,.browser-ie .work-docs-icon-carat-right-808184-24x24,.browser-ie .work-docs-icon-carat-right-ffffff-24x24,.browser-ie .work-docs-icon-carat-right-d0d2d3-16x16,.browser-ie .work-docs-icon-carat-right-8ea9c9-16x16,.browser-ie .work-docs-icon-carat-right-212f3e-16x16,.browser-ie .work-docs-icon-carat-right-0e72a3-16x16,.browser-ie .work-docs-icon-carat-right-808184-16x16,.browser-ie .work-docs-icon-carat-right-ffffff-16x16,.browser-ie .work-docs-icon-carat-up-d0d2d3-24x24,.browser-ie .work-docs-icon-carat-up-8ea9c9-24x24,.browser-ie .work-docs-icon-carat-up-212f3e-24x24,.browser-ie .work-docs-icon-carat-up-0e72a3-24x24,.browser-ie .work-docs-icon-carat-up-808184-24x24,.browser-ie .work-docs-icon-carat-up-ffffff-24x24,.browser-ie .work-docs-icon-carat-up-d0d2d3-16x16,.browser-ie .work-docs-icon-carat-up-8ea9c9-16x16,.browser-ie .work-docs-icon-carat-up-212f3e-16x16,.browser-ie .work-docs-icon-carat-up-0e72a3-16x16,.browser-ie .work-docs-icon-carat-up-808184-16x16,.browser-ie .work-docs-icon-carat-up-ffffff-16x16,.browser-ie .work-docs-icon-carat-down-d0d2d3-24x24,.browser-ie .work-docs-icon-carat-down-8ea9c9-24x24,.browser-ie .work-docs-icon-carat-down-212f3e-24x24,.browser-ie .work-docs-icon-carat-down-0e72a3-24x24,.browser-ie #profile-div .profile-dropdown-button .dropdown-icon,#profile-div .profile-dropdown-button .browser-ie .dropdown-icon,.browser-ie .dropdown-toggle-icon,.browser-ie #feedback-filter-menu .filter-dropdown button .dropdown-icon,#feedback-filter-menu .filter-dropdown button .browser-ie .dropdown-icon,.browser-ie .work-docs-icon-carat-down-808184-24x24,.browser-ie .work-docs-icon-carat-down-ffffff-24x24,.browser-ie .work-docs-icon-carat-down-d0d2d3-16x16,.browser-ie .work-docs-icon-carat-down-8ea9c9-16x16,.browser-ie .work-docs-icon-carat-down-212f3e-16x16,.browser-ie .work-docs-icon-carat-down-0e72a3-16x16,.browser-ie .work-docs-icon-carat-down-808184-16x16,.browser-ie .work-docs-icon-carat-down-ffffff-16x16,.browser-ie .work-docs-icon-carat-left-d0d2d3-24x24,.browser-ie .work-docs-icon-carat-left-8ea9c9-24x24,.browser-ie .work-docs-icon-carat-left-212f3e-24x24,.browser-ie .work-docs-icon-carat-left-0e72a3-24x24,.browser-ie .work-docs-icon-carat-left-808184-24x24,.browser-ie .work-docs-icon-carat-left-ffffff-24x24,.browser-ie .work-docs-icon-carat-left-d0d2d3-16x16,.browser-ie .work-docs-icon-carat-left-8ea9c9-16x16,.browser-ie .work-docs-icon-carat-left-212f3e-16x16,.browser-ie .work-docs-icon-carat-left-0e72a3-16x16,.browser-ie .work-docs-icon-carat-left-808184-16x16,.browser-ie .work-docs-icon-carat-left-ffffff-16x16,.browser-ie .work-docs-icon-checked-round-d0d2d3-24x24,.browser-ie .work-docs-icon-checked-round-8ea9c9-24x24,.browser-ie .work-docs-icon-checked-round-212f3e-24x24,.browser-ie .work-docs-icon-checked-round-0e72a3-24x24,.browser-ie .work-docs-icon-checked-round-808184-24x24,.browser-ie .work-docs-icon-checked-round-ffffff-24x24,.browser-ie .work-docs-icon-checked-round-d0d2d3-16x16,.browser-ie .work-docs-icon-checked-round-8ea9c9-16x16,.browser-ie .work-docs-icon-checked-round-212f3e-16x16,.browser-ie .work-docs-icon-checked-round-0e72a3-16x16,.browser-ie .work-docs-icon-checked-round-808184-16x16,.browser-ie .work-docs-icon-checked-round-ffffff-16x16,.browser-ie .work-docs-icon-unchecked-round-solid-d0d2d3-24x24,.browser-ie .work-docs-icon-unchecked-round-solid-8ea9c9-24x24,.browser-ie .work-docs-icon-unchecked-round-solid-212f3e-24x24,.browser-ie input[type=radio].wd-white-radio:checked+label.wd-white-radio-label,.browser-ie .work-docs-icon-unchecked-round-solid-0e72a3-24x24,.browser-ie .work-docs-icon-unchecked-round-solid-808184-24x24,.browser-ie .work-docs-icon-unchecked-round-solid-ffffff-24x24,.browser-ie .work-docs-icon-unchecked-round-solid-d0d2d3-16x16,.browser-ie .work-docs-icon-unchecked-round-solid-8ea9c9-16x16,.browser-ie .work-docs-icon-unchecked-round-solid-212f3e-16x16,.browser-ie .work-docs-icon-unchecked-round-solid-0e72a3-16x16,.browser-ie .work-docs-icon-unchecked-round-solid-808184-16x16,.browser-ie .work-docs-icon-unchecked-round-solid-ffffff-16x16,.browser-ie .work-docs-icon-mail-d0d2d3-24x24,.browser-ie .work-docs-icon-mail-8ea9c9-24x24,.browser-ie .work-docs-icon-mail-212f3e-24x24,.browser-ie .work-docs-icon-mail-0e72a3-24x24,.browser-ie #admin-div .invite-user-icon,#admin-div .browser-ie .invite-user-icon,.browser-ie .work-docs-icon-mail-808184-24x24,.browser-ie .work-docs-icon-mail-ffffff-24x24,.browser-ie .work-docs-icon-mail-d0d2d3-16x16,.browser-ie #admin-div .reinvite-user-icon-disabled,#admin-div .browser-ie .reinvite-user-icon-disabled,.browser-ie .work-docs-icon-mail-8ea9c9-16x16,.browser-ie .work-docs-icon-mail-212f3e-16x16,.browser-ie .work-docs-icon-mail-0e72a3-16x16,.browser-ie #admin-div .reinvite-user-icon,#admin-div .browser-ie .reinvite-user-icon,.browser-ie .work-docs-icon-mail-808184-16x16,.browser-ie .work-docs-icon-mail-ffffff-16x16,.browser-ie .work-docs-icon-cloud-toggle-d0d2d3-24x24,.browser-ie .work-docs-icon-cloud-toggle-8ea9c9-24x24,.browser-ie .work-docs-icon-cloud-toggle-212f3e-24x24,.browser-ie .work-docs-icon-cloud-toggle-0e72a3-24x24,.browser-ie .work-docs-icon-cloud-toggle-808184-24x24,.browser-ie .work-docs-icon-cloud-toggle-ffffff-24x24,.browser-ie .work-docs-icon-cloud-toggle-d0d2d3-16x16,.browser-ie .work-docs-icon-cloud-toggle-8ea9c9-16x16,.browser-ie .work-docs-icon-cloud-toggle-212f3e-16x16,.browser-ie .work-docs-icon-cloud-toggle-0e72a3-16x16,.browser-ie .work-docs-icon-cloud-toggle-808184-16x16,.browser-ie .work-docs-icon-cloud-toggle-ffffff-16x16,.browser-ie .work-docs-icon-cloud-d0d2d3-24x24,.browser-ie .work-docs-icon-cloud-8ea9c9-24x24,.browser-ie .work-docs-icon-cloud-212f3e-24x24,.browser-ie .work-docs-icon-cloud-0e72a3-24x24,.browser-ie .work-docs-icon-cloud-808184-24x24,.browser-ie .work-docs-icon-cloud-ffffff-24x24,.browser-ie .work-docs-icon-cloud-d0d2d3-16x16,.browser-ie .work-docs-icon-cloud-8ea9c9-16x16,.browser-ie .work-docs-icon-cloud-212f3e-16x16,.browser-ie .work-docs-icon-cloud-0e72a3-16x16,.browser-ie .work-docs-icon-cloud-808184-16x16,.browser-ie .work-docs-icon-cloud-ffffff-16x16,.browser-ie .work-docs-icon-close-d0d2d3-24x24,.browser-ie .work-docs-icon-close-8ea9c9-24x24,.browser-ie .work-docs-icon-close-212f3e-24x24,.browser-ie .work-docs-icon-close-0e72a3-24x24,.browser-ie .work-docs-icon-close-808184-24x24,.browser-ie .message .inner-info .close-icon,.message .inner-info .browser-ie .close-icon,.browser-ie .modal-body .close,.modal-body .browser-ie .close,.browser-ie .modal-header .close,.modal-header .browser-ie .close,.browser-ie .work-docs-icon-close-ffffff-24x24,.browser-ie .top-banner .close,.top-banner .browser-ie .close,.browser-ie .message .close-icon,.message .browser-ie .close-icon,.browser-ie .work-docs-icon-close-d0d2d3-16x16,.browser-ie .work-docs-icon-close-8ea9c9-16x16,.browser-ie .work-docs-icon-close-212f3e-16x16,.browser-ie #dashboard-div .filter-container .filter-button .close-icon,#dashboard-div .filter-container .filter-button .browser-ie .close-icon,.browser-ie #analytics-div .filter-button .close-icon,#analytics-div .filter-button .browser-ie .close-icon,.browser-ie .dyk-wrapper .dyk-close,.dyk-wrapper .browser-ie .dyk-close,.browser-ie .work-docs-icon-close-0e72a3-16x16,.browser-ie #dashboard-div .filter-container .filter-button .close-icon:hover,#dashboard-div .filter-container .filter-button .browser-ie .close-icon:hover,.browser-ie #analytics-div .filter-button .close-icon:hover,#analytics-div .filter-button .browser-ie .close-icon:hover,.browser-ie .dyk-wrapper .dyk-close:hover,.dyk-wrapper .browser-ie .dyk-close:hover,.browser-ie .work-docs-icon-close-808184-16x16,.browser-ie .work-docs-icon-close-ffffff-16x16,.browser-ie .work-docs-icon-share-alternate-d0d2d3-24x24,.browser-ie .work-docs-icon-share-alternate-8ea9c9-24x24,.browser-ie .work-docs-icon-share-alternate-212f3e-24x24,.browser-ie .work-docs-icon-share-alternate-0e72a3-24x24,.browser-ie .work-docs-icon-share-alternate-808184-24x24,.browser-ie .work-docs-icon-share-alternate-ffffff-24x24,.browser-ie .work-docs-icon-share-alternate-d0d2d3-16x16,.browser-ie .work-docs-icon-share-alternate-8ea9c9-16x16,.browser-ie .work-docs-icon-share-alternate-212f3e-16x16,.browser-ie .work-docs-icon-share-alternate-0e72a3-16x16,.browser-ie .work-docs-icon-share-alternate-808184-16x16,.browser-ie .work-docs-icon-share-alternate-ffffff-16x16,.browser-ie .work-docs-icon-from-clipboard-d0d2d3-24x24,.browser-ie .work-docs-icon-from-clipboard-8ea9c9-24x24,.browser-ie .feedback-input-container .paste-highlighted:hover,.feedback-input-container .browser-ie .paste-highlighted:hover,.browser-ie .work-docs-icon-from-clipboard-212f3e-24x24,.browser-ie .work-docs-icon-from-clipboard-0e72a3-24x24,.browser-ie .feedback-input-container .paste-highlighted,.feedback-input-container .browser-ie .paste-highlighted,.browser-ie .work-docs-icon-from-clipboard-808184-24x24,.browser-ie .work-docs-icon-from-clipboard-ffffff-24x24,.browser-ie .work-docs-icon-from-clipboard-d0d2d3-16x16,.browser-ie .work-docs-icon-from-clipboard-8ea9c9-16x16,.browser-ie .work-docs-icon-from-clipboard-212f3e-16x16,.browser-ie .work-docs-icon-from-clipboard-0e72a3-16x16,.browser-ie .work-docs-icon-from-clipboard-808184-16x16,.browser-ie .work-docs-icon-from-clipboard-ffffff-16x16,.browser-ie .work-docs-icon-to-clipboard-d0d2d3-24x24,.browser-ie .work-docs-icon-to-clipboard-8ea9c9-24x24,.browser-ie .work-docs-icon-to-clipboard-212f3e-24x24,.browser-ie .work-docs-icon-to-clipboard-0e72a3-24x24,.browser-ie .work-docs-icon-to-clipboard-808184-24x24,.browser-ie .work-docs-icon-to-clipboard-ffffff-24x24,.browser-ie .work-docs-icon-to-clipboard-d0d2d3-16x16,.browser-ie .work-docs-icon-to-clipboard-8ea9c9-16x16,.browser-ie .work-docs-icon-to-clipboard-212f3e-16x16,.browser-ie .work-docs-icon-to-clipboard-0e72a3-16x16,.browser-ie .work-docs-icon-to-clipboard-808184-16x16,.browser-ie .work-docs-icon-to-clipboard-ffffff-16x16,.browser-ie .work-docs-icon-attach-d0d2d3-24x24,.browser-ie .work-docs-icon-attach-8ea9c9-24x24,.browser-ie .work-docs-icon-attach-212f3e-24x24,.browser-ie .work-docs-icon-attach-0e72a3-24x24,.browser-ie .work-docs-icon-attach-808184-24x24,.browser-ie .work-docs-icon-attach-ffffff-24x24,.browser-ie .work-docs-icon-attach-d0d2d3-16x16,.browser-ie .work-docs-icon-attach-8ea9c9-16x16,.browser-ie .work-docs-icon-attach-212f3e-16x16,.browser-ie .work-docs-icon-attach-0e72a3-16x16,.browser-ie .work-docs-icon-attach-808184-16x16,.browser-ie .work-docs-icon-attach-ffffff-16x16,.browser-ie .work-docs-icon-close-activity-tray-people-d0d2d3-36x24,.browser-ie .work-docs-icon-close-activity-tray-people-8ea9c9-36x24,.browser-ie .work-docs-icon-close-activity-tray-people-212f3e-36x24,.browser-ie .work-docs-icon-close-activity-tray-people-0e72a3-36x24,.browser-ie .work-docs-icon-close-activity-tray-people-808184-36x24,.browser-ie .work-docs-icon-close-activity-tray-people-ffffff-36x24,.browser-ie .work-docs-icon-close-activity-tray-people-d0d2d3-24x16,.browser-ie .work-docs-icon-close-activity-tray-people-8ea9c9-24x16,.browser-ie .work-docs-icon-close-activity-tray-people-212f3e-24x16,.browser-ie .work-docs-icon-close-activity-tray-people-0e72a3-24x16,.browser-ie .work-docs-icon-close-activity-tray-people-808184-24x16,.browser-ie .work-docs-icon-close-activity-tray-people-ffffff-24x16,.browser-ie .work-docs-icon-open-activity-tray-people-d0d2d3-36x24,.browser-ie .work-docs-icon-open-activity-tray-people-8ea9c9-36x24,.browser-ie .work-docs-icon-open-activity-tray-people-212f3e-36x24,.browser-ie .work-docs-icon-open-activity-tray-people-0e72a3-36x24,.browser-ie .work-docs-icon-open-activity-tray-people-808184-36x24,.browser-ie .work-docs-icon-open-activity-tray-people-ffffff-36x24,.browser-ie .work-docs-icon-open-activity-tray-people-d0d2d3-24x16,.browser-ie .work-docs-icon-open-activity-tray-people-8ea9c9-24x16,.browser-ie .work-docs-icon-open-activity-tray-people-212f3e-24x16,.browser-ie .work-docs-icon-open-activity-tray-people-0e72a3-24x16,.browser-ie .work-docs-icon-open-activity-tray-people-808184-24x16,.browser-ie .work-docs-icon-open-activity-tray-people-ffffff-24x16,.browser-ie .work-docs-icon-info-solid-d0d2d3-24x24,.browser-ie .work-docs-icon-info-solid-8ea9c9-24x24,.browser-ie .work-docs-icon-info-solid-212f3e-24x24,.browser-ie .work-docs-icon-info-solid-0e72a3-24x24,.browser-ie .work-docs-icon-info-solid-808184-24x24,.browser-ie .work-docs-icon-info-solid-ffffff-24x24,.browser-ie .work-docs-icon-info-solid-d0d2d3-16x16,.browser-ie .work-docs-icon-info-solid-8ea9c9-16x16,.browser-ie .work-docs-icon-info-solid-212f3e-16x16,.browser-ie .work-docs-icon-info-solid-0e72a3-16x16,.browser-ie .work-docs-icon-info-solid-808184-16x16,.browser-ie .work-docs-icon-info-solid-ffffff-16x16,.browser-ie .work-docs-icon-info-d0d2d3-24x24,.browser-ie .work-docs-icon-info-8ea9c9-24x24,.browser-ie .work-docs-icon-info-212f3e-24x24,.browser-ie .work-docs-icon-info-0e72a3-24x24,.browser-ie .work-docs-icon-info-808184-24x24,.browser-ie .work-docs-icon-info-ffffff-24x24,.browser-ie .work-docs-icon-info-d0d2d3-16x16,.browser-ie .work-docs-icon-info-8ea9c9-16x16,.browser-ie .work-docs-icon-info-212f3e-16x16,.browser-ie .work-docs-icon-info-0e72a3-16x16,.browser-ie .work-docs-icon-info-808184-16x16,.browser-ie .work-docs-icon-info-ffffff-16x16,.browser-ie .work-docs-icon-activity-d0d2d3-24x24,.browser-ie .work-docs-icon-activity-8ea9c9-24x24,.browser-ie .work-docs-icon-activity-212f3e-24x24,.browser-ie .work-docs-icon-activity-0e72a3-24x24,.browser-ie .work-docs-icon-activity-808184-24x24,.browser-ie #left-sidebar .activities-icon,#left-sidebar .browser-ie .activities-icon,.browser-ie .left-sidebar-minimized .ln-activities .sprite-icon,.left-sidebar-minimized .ln-activities .browser-ie .sprite-icon,.browser-ie .work-docs-icon-activity-ffffff-24x24,.browser-ie #left-sidebar .active .activities-icon,#left-sidebar .active .browser-ie .activities-icon,.browser-ie #left-sidebar li:hover .activities-icon,#left-sidebar li:hover .browser-ie .activities-icon,.browser-ie .left-sidebar-minimized .ln-activities:hover .sprite-icon,.left-sidebar-minimized .ln-activities:hover .browser-ie .sprite-icon,.browser-ie .left-sidebar-minimized .ln-activities.active .sprite-icon,.left-sidebar-minimized .ln-activities.active .browser-ie .sprite-icon,.browser-ie .work-docs-icon-activity-d0d2d3-16x16,.browser-ie .work-docs-icon-activity-8ea9c9-16x16,.browser-ie .work-docs-icon-activity-212f3e-16x16,.browser-ie .work-docs-icon-activity-0e72a3-16x16,.browser-ie .work-docs-icon-activity-808184-16x16,.browser-ie .work-docs-icon-activity-ffffff-16x16,.browser-ie .action-icon-activity,.browser-ie .work-docs-icon-upload-to-cloud-0e72a3-24x24,.browser-ie .work-docs-icon-upload-to-cloud-8ea9c9-24x24,.browser-ie .work-docs-icon-upload-to-cloud-212f3e-24x24,.browser-ie .work-docs-icon-upload-to-cloud-808184-24x24,.browser-ie .work-docs-icon-upload-to-cloud-d0d2d3-24x24,.browser-ie .work-docs-icon-upload-to-cloud-ffffff-24x24,.browser-ie .work-docs-icon-upload-to-cloud-0e72a3-16x16,.browser-ie .browser-plus-icon,.browser-ie .work-docs-icon-upload-to-cloud-8ea9c9-16x16,.browser-ie .work-docs-icon-upload-to-cloud-212f3e-16x16,.browser-ie .work-docs-icon-upload-to-cloud-808184-16x16,.browser-ie .work-docs-icon-upload-to-cloud-d0d2d3-16x16,.browser-ie .work-docs-icon-upload-to-cloud-ffffff-16x16,.browser-ie .work-docs-icon-download-from-cloud-d0d2d3-24x24,.browser-ie .work-docs-icon-download-from-cloud-8ea9c9-24x24,.browser-ie .work-docs-icon-download-from-cloud-212f3e-24x24,.browser-ie .work-docs-icon-download-from-cloud-0e72a3-24x24,.browser-ie .work-docs-icon-download-from-cloud-808184-24x24,.browser-ie .work-docs-icon-download-from-cloud-ffffff-24x24,.browser-ie .work-docs-icon-download-from-cloud-d0d2d3-16x16,.browser-ie .work-docs-icon-download-from-cloud-8ea9c9-16x16,.browser-ie .work-docs-icon-download-from-cloud-212f3e-16x16,.browser-ie .work-docs-icon-download-from-cloud-0e72a3-16x16,.browser-ie .work-docs-icon-download-from-cloud-808184-16x16,.browser-ie .work-docs-icon-download-from-cloud-ffffff-16x16,.browser-ie .action-icon-download,.browser-ie .work-docs-icon-move-0e72a3-24x24,.browser-ie .work-docs-icon-move-8ea9c9-24x24,.browser-ie .work-docs-icon-move-212f3e-24x24,.browser-ie .work-docs-icon-move-808184-24x24,.browser-ie .work-docs-icon-move-d0d2d3-24x24,.browser-ie .work-docs-icon-move-ffffff-24x24,.browser-ie .work-docs-icon-move-0e72a3-16x16,.browser-ie .work-docs-icon-move-8ea9c9-16x16,.browser-ie .work-docs-icon-move-212f3e-16x16,.browser-ie .work-docs-icon-move-808184-16x16,.browser-ie .work-docs-icon-move-d0d2d3-16x16,.browser-ie .work-docs-icon-move-ffffff-16x16,.browser-ie .action-icon-move,.browser-ie .work-docs-icon-edit-d0d2d3-24x24,.browser-ie .work-docs-icon-edit-8ea9c9-24x24,.browser-ie .work-docs-icon-edit-212f3e-24x24,.browser-ie .work-docs-icon-edit-0e72a3-24x24,.browser-ie .work-docs-icon-edit-808184-24x24,.browser-ie .work-docs-icon-edit-ffffff-24x24,.browser-ie .work-docs-icon-edit-d0d2d3-16x16,.browser-ie .work-docs-icon-edit-8ea9c9-16x16,.browser-ie .work-docs-icon-edit-212f3e-16x16,.browser-ie .work-docs-icon-edit-0e72a3-16x16,.browser-ie #admin-div .edit-user-icon,#admin-div .browser-ie .edit-user-icon,.browser-ie .work-docs-icon-edit-808184-16x16,.browser-ie .work-docs-icon-edit-ffffff-16x16,.browser-ie .action-icon-rename,.browser-ie .work-docs-icon-link-d0d2d3-24x24,.browser-ie .work-docs-icon-link-8ea9c9-24x24,.browser-ie .work-docs-icon-link-212f3e-24x24,.browser-ie .work-docs-icon-link-0e72a3-24x24,.browser-ie .work-docs-icon-link-808184-24x24,.browser-ie .work-docs-icon-link-ffffff-24x24,.browser-ie .work-docs-icon-link-d0d2d3-16x16,.browser-ie .work-docs-icon-link-8ea9c9-16x16,.browser-ie .work-docs-icon-link-212f3e-16x16,.browser-ie .work-docs-icon-link-0e72a3-16x16,.browser-ie .work-docs-icon-link-808184-16x16,.browser-ie .work-docs-icon-link-ffffff-16x16,.browser-ie .work-docs-icon-share-d0d2d3-24x24,.browser-ie .work-docs-icon-share-8ea9c9-24x24,.browser-ie .work-docs-icon-share-212f3e-24x24,.browser-ie .work-docs-icon-share-0e72a3-24x24,.browser-ie .work-docs-icon-share-808184-24x24,.browser-ie #left-sidebar .shared-with-me-icon,#left-sidebar .browser-ie .shared-with-me-icon,.browser-ie .left-sidebar-minimized .ln-shared-with-me .sprite-icon,.left-sidebar-minimized .ln-shared-with-me .browser-ie .sprite-icon,.browser-ie .work-docs-icon-share-ffffff-24x24,.browser-ie #left-sidebar .active .shared-with-me-icon,#left-sidebar .active .browser-ie .shared-with-me-icon,.browser-ie #left-sidebar li:hover .shared-with-me-icon,#left-sidebar li:hover .browser-ie .shared-with-me-icon,.browser-ie .left-sidebar-minimized .ln-shared-with-me:hover .sprite-icon,.left-sidebar-minimized .ln-shared-with-me:hover .browser-ie .sprite-icon,.browser-ie .left-sidebar-minimized .ln-shared-with-me.active .sprite-icon,.left-sidebar-minimized .ln-shared-with-me.active .browser-ie .sprite-icon,.browser-ie .work-docs-icon-share-d0d2d3-16x16,.browser-ie .work-docs-icon-share-8ea9c9-16x16,.browser-ie .work-docs-icon-share-212f3e-16x16,.browser-ie .work-docs-icon-share-0e72a3-16x16,.browser-ie .work-docs-icon-share-808184-16x16,.browser-ie .work-docs-icon-share-ffffff-16x16,.browser-ie .action-icon-share,.browser-ie .work-docs-icon-doc-sm-d0d2d3-24x24,.browser-ie .work-docs-icon-doc-sm-8ea9c9-24x24,.browser-ie .work-docs-icon-doc-sm-212f3e-24x24,.browser-ie .work-docs-icon-doc-sm-0e72a3-24x24,.browser-ie .work-docs-icon-doc-sm-808184-24x24,.browser-ie .work-docs-icon-doc-sm-ffffff-24x24,.browser-ie .work-docs-icon-doc-sm-d0d2d3-16x16,.browser-ie .work-docs-icon-doc-sm-8ea9c9-16x16,.browser-ie .work-docs-icon-doc-sm-212f3e-16x16,.browser-ie .work-docs-icon-doc-sm-0e72a3-16x16,.browser-ie .work-docs-icon-doc-sm-808184-16x16,.browser-ie .work-docs-icon-doc-sm-ffffff-16x16,.browser-ie .work-docs-icon-folder-sm-d0d2d3-24x24,.browser-ie .work-docs-icon-folder-sm-8ea9c9-24x24,.browser-ie .work-docs-icon-folder-sm-212f3e-24x24,.browser-ie .work-docs-icon-folder-sm-0e72a3-24x24,.browser-ie .work-docs-icon-folder-sm-808184-24x24,.browser-ie .work-docs-icon-folder-sm-ffffff-24x24,.browser-ie .work-docs-icon-folder-sm-d0d2d3-16x16,.browser-ie #admin-div .recovery-bin-icon-disabled,#admin-div .browser-ie .recovery-bin-icon-disabled,.browser-ie .work-docs-icon-folder-sm-8ea9c9-16x16,.browser-ie .work-docs-icon-folder-sm-212f3e-16x16,.browser-ie .sub-folder-list .sub-folder-icon,.sub-folder-list .browser-ie .sub-folder-icon,.browser-ie .work-docs-icon-folder-sm-0e72a3-16x16,.browser-ie #admin-div .recovery-bin-icon,#admin-div .browser-ie .recovery-bin-icon,.browser-ie .work-docs-icon-folder-sm-808184-16x16,.browser-ie .work-docs-icon-folder-sm-ffffff-16x16,.browser-ie .work-docs-icon-locked-d0d2d3-24x24,.browser-ie .work-docs-icon-locked-8ea9c9-24x24,.browser-ie .work-docs-icon-locked-212f3e-24x24,.browser-ie .work-docs-icon-locked-ffa724-24x24,.browser-ie .work-docs-icon-locked-0e72a3-24x24,.browser-ie .work-docs-icon-locked-808184-24x24,.browser-ie .work-docs-icon-locked-ffffff-24x24,.browser-ie .work-docs-icon-locked-d0d2d3-16x16,.browser-ie .work-docs-icon-locked-8ea9c9-16x16,.browser-ie .work-docs-icon-locked-212f3e-16x16,.browser-ie .work-docs-icon-locked-ffa724-16x16,.browser-ie .work-docs-icon-locked-0e72a3-16x16,.browser-ie .work-docs-icon-locked-808184-16x16,.browser-ie .work-docs-icon-locked-ffffff-16x16,.browser-ie .action-icon-checkout,.browser-ie .action-icon-checkout-open,.browser-ie .work-docs-icon-unchecked-d0d2d3-24x24,.browser-ie input[type=checkbox].wd-blue2-checkbox+label.wd-blue2-checkbox-label,.browser-ie .work-docs-icon-unchecked-8ea9c9-24x24,.browser-ie .work-docs-icon-unchecked-212f3e-24x24,.browser-ie .work-docs-icon-unchecked-0e72a3-24x24,.browser-ie .work-docs-icon-unchecked-808184-24x24,.browser-ie .work-docs-icon-unchecked-ffffff-24x24,.browser-ie input[type=checkbox].wd-white-checkbox+label.wd-white-checkbox-label,.browser-ie .work-docs-icon-unchecked-d0d2d3-16x16,.browser-ie .work-docs-icon-unchecked-8ea9c9-16x16,.browser-ie .work-docs-icon-unchecked-212f3e-16x16,.browser-ie .work-docs-icon-unchecked-0e72a3-16x16,.browser-ie .work-docs-icon-unchecked-808184-16x16,.browser-ie .work-docs-icon-unchecked-ffffff-16x16,.browser-ie .work-docs-icon-checked-d0d2d3-24x24,.browser-ie .work-docs-icon-checked-8ea9c9-24x24,.browser-ie .work-docs-icon-checked-212f3e-24x24,.browser-ie .work-docs-icon-checked-0e72a3-24x24,.browser-ie .work-docs-icon-checked-808184-24x24,.browser-ie .work-docs-icon-checked-ffffff-24x24,.browser-ie .work-docs-icon-checked-d0d2d3-16x16,.browser-ie .work-docs-icon-checked-8ea9c9-16x16,.browser-ie .work-docs-icon-checked-212f3e-16x16,.browser-ie .work-docs-icon-checked-0e72a3-16x16,.browser-ie .work-docs-icon-checked-808184-16x16,.browser-ie .work-docs-icon-checked-ffffff-16x16,.browser-ie .work-docs-icon-checked-solid-d0d2d3-24x24,.browser-ie .work-docs-icon-checked-solid-8ea9c9-24x24,.browser-ie input[type=checkbox].wd-blue2-checkbox:checked[disabled]+label.wd-blue2-checkbox-label,.browser-ie input[type=checkbox].wd-blue2-checkbox:checked+label.wd-blue2-checkbox-label,.browser-ie .work-docs-icon-checked-solid-212f3e-24x24,.browser-ie .work-docs-icon-checked-solid-0e72a3-24x24,.browser-ie .work-docs-icon-checked-solid-808184-24x24,.browser-ie .work-docs-icon-checked-solid-ffffff-24x24,.browser-ie input[type=checkbox].wd-white-checkbox:checked+label.wd-white-checkbox-label,.browser-ie .work-docs-icon-checked-solid-d0d2d3-16x16,.browser-ie .work-docs-icon-checked-solid-8ea9c9-16x16,.browser-ie .work-docs-icon-checked-solid-212f3e-16x16,.browser-ie .work-docs-icon-checked-solid-0e72a3-16x16,.browser-ie .work-docs-icon-checked-solid-808184-16x16,.browser-ie .work-docs-icon-checked-solid-ffffff-16x16,.browser-ie .work-docs-icon-trash-sm-d0d2d3-24x24,.browser-ie .work-docs-icon-trash-sm-8ea9c9-24x24,.browser-ie .work-docs-icon-trash-sm-212f3e-24x24,.browser-ie .work-docs-icon-trash-sm-0e72a3-24x24,.browser-ie .work-docs-icon-trash-sm-808184-24x24,.browser-ie .work-docs-icon-trash-sm-ffffff-24x24,.browser-ie .work-docs-icon-trash-sm-d0d2d3-16x16,.browser-ie #admin-div .delete-user-icon-disabled,#admin-div .browser-ie .delete-user-icon-disabled,.browser-ie .work-docs-icon-trash-sm-8ea9c9-16x16,.browser-ie .work-docs-icon-trash-sm-212f3e-16x16,.browser-ie .work-docs-icon-trash-sm-0e72a3-16x16,.browser-ie #admin-div .delete-user-icon,#admin-div .browser-ie .delete-user-icon,.browser-ie .file-browser-title-bar .browser-trash-icon,.file-browser-title-bar .browser-ie .browser-trash-icon,.browser-ie .work-docs-icon-trash-sm-808184-16x16,.browser-ie .work-docs-icon-trash-sm-ffffff-16x16,.browser-ie .work-docs-icon-add-versions-d0d2d3-24x24,.browser-ie .work-docs-icon-add-versions-8ea9c9-24x24,.browser-ie .work-docs-icon-add-versions-212f3e-24x24,.browser-ie .work-docs-icon-add-versions-0e72a3-24x24,.browser-ie .work-docs-icon-add-versions-808184-24x24,.browser-ie .work-docs-icon-add-versions-ffffff-24x24,.browser-ie .work-docs-icon-add-versions-d0d2d3-16x16,.browser-ie .work-docs-icon-add-versions-8ea9c9-16x16,.browser-ie .work-docs-icon-add-versions-212f3e-16x16,.browser-ie .work-docs-icon-add-versions-0e72a3-16x16,.browser-ie .work-docs-icon-add-versions-808184-16x16,.browser-ie .work-docs-icon-add-versions-ffffff-16x16,.browser-ie .work-docs-icon-versions-d0d2d3-24x24,.browser-ie .work-docs-icon-versions-8ea9c9-24x24,.browser-ie .work-docs-icon-versions-212f3e-24x24,.browser-ie .work-docs-icon-versions-0e72a3-24x24,.browser-ie .work-docs-icon-versions-808184-24x24,.browser-ie .work-docs-icon-versions-ffffff-24x24,.browser-ie .work-docs-icon-versions-d0d2d3-16x16,.browser-ie .work-docs-icon-versions-8ea9c9-16x16,.browser-ie .work-docs-icon-versions-212f3e-16x16,.browser-ie .work-docs-icon-versions-0e72a3-16x16,.browser-ie .work-docs-icon-versions-808184-16x16,.browser-ie .work-docs-icon-versions-ffffff-16x16,.browser-ie .work-docs-icon-doc-lg-d0d2d3-24x24,.browser-ie .work-docs-icon-doc-lg-8ea9c9-24x24,.browser-ie .work-docs-icon-doc-lg-212f3e-24x24,.browser-ie .work-docs-icon-doc-lg-0e72a3-24x24,.browser-ie .work-docs-icon-doc-lg-808184-24x24,.browser-ie .work-docs-icon-doc-lg-ffffff-24x24,.browser-ie .work-docs-icon-doc-lg-d0d2d3-16x16,.browser-ie .work-docs-icon-doc-lg-8ea9c9-16x16,.browser-ie .work-docs-icon-doc-lg-212f3e-16x16,.browser-ie .work-docs-icon-doc-lg-0e72a3-16x16,.browser-ie .work-docs-icon-doc-lg-808184-16x16,.browser-ie .work-docs-icon-doc-lg-ffffff-16x16,.browser-ie .work-docs-icon-folder-lg-d0d2d3-24x24,.browser-ie .work-docs-icon-folder-lg-8ea9c9-24x24,.browser-ie .work-docs-icon-folder-lg-212f3e-24x24,.browser-ie .work-docs-icon-folder-lg-0e72a3-24x24,.browser-ie .work-docs-icon-folder-lg-808184-24x24,.browser-ie .work-docs-icon-folder-lg-ffffff-24x24,.browser-ie .work-docs-icon-folder-lg-d0d2d3-16x16,.browser-ie .work-docs-icon-folder-lg-8ea9c9-16x16,.browser-ie .work-docs-icon-folder-lg-212f3e-16x16,.browser-ie .work-docs-icon-folder-lg-0e72a3-16x16,.browser-ie .work-docs-icon-folder-lg-808184-16x16,.browser-ie .work-docs-icon-folder-lg-ffffff-16x16,.browser-ie .work-docs-icon-hamburger-d0d2d3-24x24,.browser-ie .work-docs-icon-hamburger-8ea9c9-24x24,.browser-ie .work-docs-icon-hamburger-212f3e-24x24,.browser-ie .work-docs-icon-hamburger-0e72a3-24x24,.browser-ie .work-docs-icon-hamburger-808184-24x24,.browser-ie .work-docs-icon-hamburger-ffffff-24x24,.browser-ie .work-docs-icon-hamburger-d0d2d3-16x16,.browser-ie .work-docs-icon-hamburger-8ea9c9-16x16,.browser-ie .work-docs-icon-hamburger-212f3e-16x16,.browser-ie .work-docs-icon-hamburger-0e72a3-16x16,.browser-ie .work-docs-icon-hamburger-808184-16x16,.browser-ie .work-docs-icon-hamburger-ffffff-16x16,.browser-ie .work-docs-icon-back-d0d2d3-36x24,.browser-ie .work-docs-icon-back-8ea9c9-36x24,.browser-ie .work-docs-icon-back-212f3e-36x24,.browser-ie .work-docs-icon-back-0e72a3-36x24,.browser-ie .work-docs-icon-back-808184-36x24,.browser-ie .work-docs-icon-back-ffffff-36x24,.browser-ie .work-docs-icon-back-d0d2d3-24x16,.browser-ie .work-docs-icon-back-8ea9c9-24x16,.browser-ie .work-docs-icon-back-212f3e-24x16,.browser-ie .work-docs-icon-back-0e72a3-24x16,.browser-ie .folder-breadcrumb-back .folder-back-icon,.folder-breadcrumb-back .browser-ie .folder-back-icon,.browser-ie .work-docs-icon-back-808184-24x16,.browser-ie .work-docs-icon-back-ffffff-24x16,.browser-ie .work-docs-icon-tray-control-d0d2d3-24x24,.browser-ie .work-docs-icon-tray-control-8ea9c9-24x24,.browser-ie .work-docs-icon-tray-control-212f3e-24x24,.browser-ie .work-docs-icon-tray-control-0e72a3-24x24,.browser-ie .work-docs-icon-tray-control-808184-24x24,.browser-ie .work-docs-icon-tray-control-ffffff-24x24,.browser-ie .left-sidebar-top .left-sidebar-toggle,.left-sidebar-top .browser-ie .left-sidebar-toggle,.browser-ie .right-sidebar-minimized .sidebar-openpanel,.right-sidebar-minimized .browser-ie .sidebar-openpanel,.browser-ie .work-docs-icon-tray-control-d0d2d3-16x16,.browser-ie .work-docs-icon-tray-control-8ea9c9-16x16,.browser-ie .work-docs-icon-tray-control-212f3e-16x16,.browser-ie .work-docs-icon-tray-control-0e72a3-16x16,.browser-ie .work-docs-icon-tray-control-808184-16x16,.browser-ie .work-docs-icon-tray-control-ffffff-16x16,.browser-ie .work-docs-icon-bug-d0d2d3-24x24,.browser-ie .work-docs-icon-bug-8ea9c9-24x24,.browser-ie .work-docs-icon-bug-212f3e-24x24,.browser-ie .work-docs-icon-bug-0e72a3-24x24,.browser-ie .work-docs-icon-bug-808184-24x24,.browser-ie .work-docs-icon-bug-ffffff-24x24,.browser-ie .work-docs-icon-bug-d0d2d3-16x16,.browser-ie .work-docs-icon-bug-8ea9c9-16x16,.browser-ie .work-docs-icon-bug-212f3e-16x16,.browser-ie .work-docs-icon-bug-0e72a3-16x16,.browser-ie .work-docs-icon-bug-808184-16x16,.browser-ie .work-docs-icon-bug-ffffff-16x16,.browser-ie .work-docs-icon-list-view-d0d2d3-24x24,.browser-ie .work-docs-icon-list-view-8ea9c9-24x24,.browser-ie .work-docs-icon-list-view-212f3e-24x24,.browser-ie .file-browser-title-bar .browser-list-view,.file-browser-title-bar .browser-ie .browser-list-view,.browser-ie .work-docs-icon-list-view-0e72a3-24x24,.browser-ie .file-browser-title-bar .title-bar-list .active .browser-list-view,.file-browser-title-bar .title-bar-list .active .browser-ie .browser-list-view,.browser-ie .work-docs-icon-list-view-808184-24x24,.browser-ie .work-docs-icon-list-view-ffffff-24x24,.browser-ie .work-docs-icon-list-view-d0d2d3-16x16,.browser-ie .work-docs-icon-list-view-8ea9c9-16x16,.browser-ie .work-docs-icon-list-view-212f3e-16x16,.browser-ie .work-docs-icon-list-view-0e72a3-16x16,.browser-ie .work-docs-icon-list-view-808184-16x16,.browser-ie .work-docs-icon-list-view-ffffff-16x16,.browser-ie .work-docs-icon-icon-view-d0d2d3-24x24,.browser-ie .work-docs-icon-icon-view-8ea9c9-24x24,.browser-ie .work-docs-icon-icon-view-212f3e-24x24,.browser-ie .file-browser-title-bar .browser-thumbnail-view,.file-browser-title-bar .browser-ie .browser-thumbnail-view,.browser-ie .work-docs-icon-icon-view-0e72a3-24x24,.browser-ie .file-browser-title-bar .title-bar-list .active .browser-thumbnail-view,.file-browser-title-bar .title-bar-list .active .browser-ie .browser-thumbnail-view,.browser-ie .work-docs-icon-icon-view-808184-24x24,.browser-ie .work-docs-icon-icon-view-ffffff-24x24,.browser-ie .work-docs-icon-icon-view-d0d2d3-16x16,.browser-ie .work-docs-icon-icon-view-8ea9c9-16x16,.browser-ie .work-docs-icon-icon-view-212f3e-16x16,.browser-ie .work-docs-icon-icon-view-0e72a3-16x16,.browser-ie .work-docs-icon-icon-view-808184-16x16,.browser-ie .work-docs-icon-icon-view-ffffff-16x16,.browser-ie .work-docs-icon-remove-d0d2d3-24x24,.browser-ie .work-docs-icon-remove-8ea9c9-24x24,.browser-ie .work-docs-icon-remove-212f3e-24x24,.browser-ie .work-docs-icon-remove-0e72a3-24x24,.browser-ie .work-docs-icon-remove-808184-24x24,.browser-ie .work-docs-icon-remove-ffffff-24x24,.browser-ie .work-docs-icon-remove-d0d2d3-16x16,.browser-ie .work-docs-icon-remove-8ea9c9-16x16,.browser-ie .work-docs-icon-remove-212f3e-16x16,.browser-ie .work-docs-icon-remove-0e72a3-16x16,.browser-ie .work-docs-icon-remove-808184-16x16,.browser-ie .work-docs-icon-remove-ffffff-16x16,.browser-ie .work-docs-icon-add-d0d2d3-24x24,.browser-ie .work-docs-icon-add-8ea9c9-24x24,.browser-ie .work-docs-icon-add-212f3e-24x24,.browser-ie .work-docs-icon-add-0e72a3-24x24,.browser-ie .work-docs-icon-add-808184-24x24,.browser-ie .work-docs-icon-add-ffffff-24x24,.browser-ie .work-docs-icon-add-d0d2d3-16x16,.browser-ie .work-docs-icon-add-8ea9c9-16x16,.browser-ie .work-docs-icon-add-212f3e-16x16,.browser-ie .work-docs-icon-add-0e72a3-16x16,.browser-ie .work-docs-icon-add-808184-16x16,.browser-ie .work-docs-icon-add-ffffff-16x16,.browser-ie .work-docs-icon-add-folder-d0d2d3-24x24,.browser-ie .work-docs-icon-add-folder-8ea9c9-24x24,.browser-ie .work-docs-icon-add-folder-212f3e-24x24,.browser-ie .work-docs-icon-add-folder-0e72a3-24x24,.browser-ie .work-docs-icon-add-folder-808184-24x24,.browser-ie .work-docs-icon-add-folder-ffffff-24x24,.browser-ie .work-docs-icon-add-folder-d0d2d3-16x16,.browser-ie .work-docs-icon-add-folder-8ea9c9-16x16,.browser-ie .work-docs-icon-add-folder-212f3e-16x16,.browser-ie .work-docs-icon-add-folder-0e72a3-16x16,.browser-ie .file-browser-title-bar .browser-create-folder-icon,.file-browser-title-bar .browser-ie .browser-create-folder-icon,.browser-ie .work-docs-icon-add-folder-808184-16x16,.browser-ie .work-docs-icon-add-folder-ffffff-16x16,.browser-ie .work-docs-icon-comments-d0d2d3-24x24,.browser-ie .work-docs-icon-comments-8ea9c9-24x24,.browser-ie .work-docs-icon-comments-212f3e-24x24,.browser-ie .work-docs-icon-comments-0e72a3-24x24,.browser-ie .work-docs-icon-comments-808184-24x24,.browser-ie .work-docs-icon-comments-ffffff-24x24,.browser-ie .work-docs-icon-comments-d0d2d3-16x16,.browser-ie .work-docs-icon-comments-8ea9c9-16x16,.browser-ie .work-docs-icon-comments-212f3e-16x16,.browser-ie .work-docs-icon-comments-0e72a3-16x16,.browser-ie .work-docs-icon-comments-808184-16x16,.browser-ie .work-docs-icon-comments-ffffff-16x16,.browser-ie .work-docs-icon-search-d0d2d3-24x24,.browser-ie .work-docs-icon-search-8ea9c9-24x24,.browser-ie .work-docs-icon-search-212f3e-24x24,.browser-ie .work-docs-icon-search-0e72a3-24x24,.browser-ie .work-docs-icon-search-808184-24x24,.browser-ie .left-sidebar-minimized .ln-search .sprite-icon,.left-sidebar-minimized .ln-search .browser-ie .sprite-icon,.browser-ie .work-docs-icon-search-ffffff-24x24,.browser-ie .left-sidebar-minimized .ln-search:hover .sprite-icon,.left-sidebar-minimized .ln-search:hover .browser-ie .sprite-icon,.browser-ie .left-sidebar-minimized .ln-search.active .sprite-icon,.left-sidebar-minimized .ln-search.active .browser-ie .sprite-icon,.browser-ie .left-sidebar-minimized .ln-search.show-item .sprite-icon,.left-sidebar-minimized .ln-search.show-item .browser-ie .sprite-icon,.browser-ie .work-docs-icon-search-d0d2d3-16x16,.browser-ie .work-docs-icon-search-8ea9c9-16x16,.browser-ie .work-docs-icon-search-212f3e-16x16,.browser-ie .work-docs-icon-search-0e72a3-16x16,.browser-ie #admin-div .search-user-icon,#admin-div .browser-ie .search-user-icon,.browser-ie .work-docs-icon-search-808184-16x16,.browser-ie .work-docs-icon-search-ffffff-16x16,.browser-ie .work-docs-icon-device-offline-documents-d0d2d3-24x24,.browser-ie .work-docs-icon-device-offline-documents-8ea9c9-24x24,.browser-ie .work-docs-icon-device-offline-documents-212f3e-24x24,.browser-ie .work-docs-icon-device-offline-documents-0e72a3-24x24,.browser-ie .work-docs-icon-device-offline-documents-808184-24x24,.browser-ie .work-docs-icon-device-offline-documents-ffffff-24x24,.browser-ie .work-docs-icon-device-offline-documents-d0d2d3-16x16,.browser-ie .work-docs-icon-device-offline-documents-8ea9c9-16x16,.browser-ie .work-docs-icon-device-offline-documents-212f3e-16x16,.browser-ie .work-docs-icon-device-offline-documents-0e72a3-16x16,.browser-ie .work-docs-icon-device-offline-documents-808184-16x16,.browser-ie .work-docs-icon-device-offline-documents-ffffff-16x16,.browser-ie .work-docs-icon-filled-offline-documents-d0d2d3-24x24,.browser-ie .work-docs-icon-filled-offline-documents-8ea9c9-24x24,.browser-ie .work-docs-icon-filled-offline-documents-212f3e-24x24,.browser-ie .work-docs-icon-filled-offline-documents-0e72a3-24x24,.browser-ie .work-docs-icon-filled-offline-documents-808184-24x24,.browser-ie .work-docs-icon-filled-offline-documents-ffffff-24x24,.browser-ie .work-docs-icon-filled-offline-documents-d0d2d3-16x16,.browser-ie .work-docs-icon-filled-offline-documents-8ea9c9-16x16,.browser-ie .work-docs-icon-filled-offline-documents-212f3e-16x16,.browser-ie .work-docs-icon-filled-offline-documents-0e72a3-16x16,.browser-ie .work-docs-icon-filled-offline-documents-808184-16x16,.browser-ie .work-docs-icon-filled-offline-documents-ffffff-16x16,.browser-ie .work-docs-icon-offline-documents-d0d2d3-24x24,.browser-ie .work-docs-icon-offline-documents-8ea9c9-24x24,.browser-ie .work-docs-icon-offline-documents-212f3e-24x24,.browser-ie .work-docs-icon-offline-documents-0e72a3-24x24,.browser-ie .work-docs-icon-offline-documents-808184-24x24,.browser-ie .work-docs-icon-offline-documents-ffffff-24x24,.browser-ie .work-docs-icon-offline-documents-d0d2d3-16x16,.browser-ie .work-docs-icon-offline-documents-8ea9c9-16x16,.browser-ie .work-docs-icon-offline-documents-212f3e-16x16,.browser-ie .work-docs-icon-offline-documents-0e72a3-16x16,.browser-ie .work-docs-icon-offline-documents-808184-16x16,.browser-ie .work-docs-icon-offline-documents-ffffff-16x16,.browser-ie .work-docs-icon-settings-d0d2d3-24x24,.browser-ie .work-docs-icon-settings-8ea9c9-24x24,.browser-ie .work-docs-icon-settings-212f3e-24x24,.browser-ie .work-docs-icon-settings-0e72a3-24x24,.browser-ie .work-docs-icon-settings-808184-24x24,.browser-ie .work-docs-icon-settings-ffffff-24x24,.browser-ie .work-docs-icon-settings-d0d2d3-16x16,.browser-ie .tab-names .tab-name .file-info-icon,.tab-names .tab-name .browser-ie .file-info-icon,.browser-ie .work-docs-icon-settings-8ea9c9-16x16,.browser-ie .work-docs-icon-settings-212f3e-16x16,.browser-ie .work-docs-icon-settings-0e72a3-16x16,.browser-ie .work-docs-icon-settings-808184-16x16,.browser-ie .work-docs-icon-settings-ffffff-16x16,.browser-ie .tab-names .tab-name a:hover .file-info-icon,.tab-names .tab-name a:hover .browser-ie .file-info-icon,.browser-ie .tab-names .tab-name a.active .file-info-icon,.tab-names .tab-name a.active .browser-ie .file-info-icon,.browser-ie .work-docs-icon-log-out-d0d2d3-24x24,.browser-ie .work-docs-icon-log-out-8ea9c9-24x24,.browser-ie .work-docs-icon-log-out-212f3e-24x24,.browser-ie .work-docs-icon-log-out-0e72a3-24x24,.browser-ie .work-docs-icon-log-out-808184-24x24,.browser-ie #left-sidebar .logout-icon,#left-sidebar .browser-ie .logout-icon,.browser-ie .left-sidebar-minimized .ln-logout .sprite-icon,.left-sidebar-minimized .ln-logout .browser-ie .sprite-icon,.browser-ie .work-docs-icon-log-out-ffffff-24x24,.browser-ie #left-sidebar .active .logout-icon,#left-sidebar .active .browser-ie .logout-icon,.browser-ie #left-sidebar li:hover .logout-icon,#left-sidebar li:hover .browser-ie .logout-icon,.browser-ie .left-sidebar-minimized .ln-logout:hover .sprite-icon,.left-sidebar-minimized .ln-logout:hover .browser-ie .sprite-icon,.browser-ie .left-sidebar-minimized .ln-logout.active .sprite-icon,.left-sidebar-minimized .ln-logout.active .browser-ie .sprite-icon,.browser-ie .work-docs-icon-log-out-d0d2d3-16x16,.browser-ie .work-docs-icon-log-out-8ea9c9-16x16,.browser-ie .work-docs-icon-log-out-212f3e-16x16,.browser-ie .work-docs-icon-log-out-0e72a3-16x16,.browser-ie .work-docs-icon-log-out-808184-16x16,.browser-ie .work-docs-icon-log-out-ffffff-16x16,.browser-ie .work-docs-icon-download-apps-0e72a3-24x24,.browser-ie .work-docs-icon-download-apps-8ea9c9-24x24,.browser-ie .work-docs-icon-download-apps-212f3e-24x24,.browser-ie .work-docs-icon-download-apps-808184-24x24,.browser-ie .left-sidebar-minimized .ln-download-apps .sprite-icon,.left-sidebar-minimized .ln-download-apps .browser-ie .sprite-icon,.browser-ie .work-docs-icon-download-apps-d0d2d3-24x24,.browser-ie .work-docs-icon-download-apps-ffffff-24x24,.browser-ie .left-sidebar-minimized .ln-download-apps:hover .sprite-icon,.left-sidebar-minimized .ln-download-apps:hover .browser-ie .sprite-icon,.browser-ie .left-sidebar-minimized .ln-download-apps.active .sprite-icon,.left-sidebar-minimized .ln-download-apps.active .browser-ie .sprite-icon,.browser-ie .work-docs-icon-download-apps-0e72a3-16x16,.browser-ie .work-docs-icon-download-apps-8ea9c9-16x16,.browser-ie .work-docs-icon-download-apps-212f3e-16x16,.browser-ie .work-docs-icon-download-apps-808184-16x16,.browser-ie .work-docs-icon-download-apps-d0d2d3-16x16,.browser-ie .work-docs-icon-download-apps-ffffff-16x16,.browser-ie .work-docs-icon-profile-d0d2d3-24x24,.browser-ie .work-docs-icon-profile-8ea9c9-24x24,.browser-ie .work-docs-icon-profile-212f3e-24x24,.browser-ie .work-docs-icon-profile-0e72a3-24x24,.browser-ie .work-docs-icon-profile-808184-24x24,.browser-ie #left-sidebar .profile-icon,#left-sidebar .browser-ie .profile-icon,.browser-ie .left-sidebar-minimized .ln-profile .sprite-icon,.left-sidebar-minimized .ln-profile .browser-ie .sprite-icon,.browser-ie .work-docs-icon-profile-ffffff-24x24,.browser-ie #left-sidebar .active .profile-icon,#left-sidebar .active .browser-ie .profile-icon,.browser-ie #left-sidebar li:hover .profile-icon,#left-sidebar li:hover .browser-ie .profile-icon,.browser-ie .left-sidebar-minimized .ln-profile:hover .sprite-icon,.left-sidebar-minimized .ln-profile:hover .browser-ie .sprite-icon,.browser-ie .left-sidebar-minimized .ln-profile.active .sprite-icon,.left-sidebar-minimized .ln-profile.active .browser-ie .sprite-icon,.browser-ie .work-docs-icon-profile-d0d2d3-16x16,.browser-ie .work-docs-icon-profile-8ea9c9-16x16,.browser-ie .work-docs-icon-profile-212f3e-16x16,.browser-ie .work-docs-icon-profile-0e72a3-16x16,.browser-ie .work-docs-icon-profile-808184-16x16,.browser-ie .work-docs-icon-profile-ffffff-16x16,.browser-ie .work-docs-icon-trash-d0d2d3-24x24,.browser-ie .work-docs-icon-trash-8ea9c9-24x24,.browser-ie .work-docs-icon-trash-212f3e-24x24,.browser-ie .work-docs-icon-trash-0e72a3-24x24,.browser-ie .work-docs-icon-trash-808184-24x24,.browser-ie #left-sidebar .recycle-bin-icon,#left-sidebar .browser-ie .recycle-bin-icon,.browser-ie .left-sidebar-minimized .ln-recycled .sprite-icon,.left-sidebar-minimized .ln-recycled .browser-ie .sprite-icon,.browser-ie .work-docs-icon-trash-ffffff-24x24,.browser-ie #left-sidebar .active .recycle-bin-icon,#left-sidebar .active .browser-ie .recycle-bin-icon,.browser-ie #left-sidebar li:hover .recycle-bin-icon,#left-sidebar li:hover .browser-ie .recycle-bin-icon,.browser-ie .left-sidebar-minimized .ln-recycled:hover .sprite-icon,.left-sidebar-minimized .ln-recycled:hover .browser-ie .sprite-icon,.browser-ie .left-sidebar-minimized .ln-recycled.active .sprite-icon,.left-sidebar-minimized .ln-recycled.active .browser-ie .sprite-icon,.browser-ie .work-docs-icon-trash-d0d2d3-16x16,.browser-ie .work-docs-icon-trash-8ea9c9-16x16,.browser-ie .work-docs-icon-trash-212f3e-16x16,.browser-ie .work-docs-icon-trash-0e72a3-16x16,.browser-ie .version-switch-button-link .delete-version-button .version-delete-trash-icon,.version-switch-button-link .delete-version-button .browser-ie .version-delete-trash-icon,.browser-ie .work-docs-icon-trash-808184-16x16,.browser-ie .work-docs-icon-trash-ffffff-16x16,.browser-ie .action-icon-delete,.browser-ie .work-docs-icon-out-for-review-d0d2d3-24x24,.browser-ie .work-docs-icon-out-for-review-8ea9c9-24x24,.browser-ie .work-docs-icon-out-for-review-212f3e-24x24,.browser-ie .work-docs-icon-out-for-review-0e72a3-24x24,.browser-ie .work-docs-icon-out-for-review-808184-24x24,.browser-ie #left-sidebar .out-for-review-icon,#left-sidebar .browser-ie .out-for-review-icon,.browser-ie .left-sidebar-minimized .ln-out-for-review .sprite-icon,.left-sidebar-minimized .ln-out-for-review .browser-ie .sprite-icon,.browser-ie .work-docs-icon-out-for-review-ffffff-24x24,.browser-ie #left-sidebar .active .out-for-review-icon,#left-sidebar .active .browser-ie .out-for-review-icon,.browser-ie #left-sidebar li:hover .out-for-review-icon,#left-sidebar li:hover .browser-ie .out-for-review-icon,.browser-ie .left-sidebar-minimized .ln-out-for-review:hover .sprite-icon,.left-sidebar-minimized .ln-out-for-review:hover .browser-ie .sprite-icon,.browser-ie .left-sidebar-minimized .ln-out-for-review.active .sprite-icon,.left-sidebar-minimized .ln-out-for-review.active .browser-ie .sprite-icon,.browser-ie .work-docs-icon-out-for-review-d0d2d3-16x16,.browser-ie .work-docs-icon-out-for-review-8ea9c9-16x16,.browser-ie .work-docs-icon-out-for-review-212f3e-16x16,.browser-ie .work-docs-icon-out-for-review-0e72a3-16x16,.browser-ie .work-docs-icon-out-for-review-808184-16x16,.browser-ie .work-docs-icon-out-for-review-ffffff-16x16,.browser-ie .work-docs-icon-awaiting-feedback-d0d2d3-24x24,.browser-ie .work-docs-icon-awaiting-feedback-8ea9c9-24x24,.browser-ie .work-docs-icon-awaiting-feedback-212f3e-24x24,.browser-ie .work-docs-icon-awaiting-feedback-0e72a3-24x24,.browser-ie .work-docs-icon-awaiting-feedback-808184-24x24,.browser-ie #left-sidebar .awaiting-my-feedback-icon,#left-sidebar .browser-ie .awaiting-my-feedback-icon,.browser-ie .left-sidebar-minimized .ln-awaiting-feedback .sprite-icon,.left-sidebar-minimized .ln-awaiting-feedback .browser-ie .sprite-icon,.browser-ie .work-docs-icon-awaiting-feedback-ffffff-24x24,.browser-ie #left-sidebar .active .awaiting-my-feedback-icon,#left-sidebar .active .browser-ie .awaiting-my-feedback-icon,.browser-ie #left-sidebar li:hover .awaiting-my-feedback-icon,#left-sidebar li:hover .browser-ie .awaiting-my-feedback-icon,.browser-ie .left-sidebar-minimized .ln-awaiting-feedback:hover .sprite-icon,.left-sidebar-minimized .ln-awaiting-feedback:hover .browser-ie .sprite-icon,.browser-ie .left-sidebar-minimized .ln-awaiting-feedback.active .sprite-icon,.left-sidebar-minimized .ln-awaiting-feedback.active .browser-ie .sprite-icon,.browser-ie .work-docs-icon-awaiting-feedback-d0d2d3-16x16,.browser-ie .work-docs-icon-awaiting-feedback-8ea9c9-16x16,.browser-ie .work-docs-icon-awaiting-feedback-212f3e-16x16,.browser-ie .work-docs-icon-awaiting-feedback-0e72a3-16x16,.browser-ie .work-docs-icon-awaiting-feedback-808184-16x16,.browser-ie .work-docs-icon-awaiting-feedback-ffffff-16x16,.browser-ie .work-docs-icon-shared-with-me-d0d2d3-24x24,.browser-ie .work-docs-icon-shared-with-me-8ea9c9-24x24,.browser-ie .work-docs-icon-shared-with-me-212f3e-24x24,.browser-ie .work-docs-icon-shared-with-me-0e72a3-24x24,.browser-ie .work-docs-icon-shared-with-me-808184-24x24,.browser-ie .work-docs-icon-shared-with-me-ffffff-24x24,.browser-ie .work-docs-icon-shared-with-me-d0d2d3-16x16,.browser-ie .work-docs-icon-shared-with-me-8ea9c9-16x16,.browser-ie .work-docs-icon-shared-with-me-212f3e-16x16,.browser-ie .work-docs-icon-shared-with-me-0e72a3-16x16,.browser-ie .work-docs-icon-shared-with-me-808184-16x16,.browser-ie .work-docs-icon-shared-with-me-ffffff-16x16,.browser-ie .work-docs-icon-my-documents-d0d2d3-24x24,.browser-ie .work-docs-icon-my-documents-8ea9c9-24x24,.browser-ie .work-docs-icon-my-documents-212f3e-24x24,.browser-ie .work-docs-icon-my-documents-0e72a3-24x24,.browser-ie .work-docs-icon-my-documents-808184-24x24,.browser-ie #left-sidebar .my-document-icon,#left-sidebar .browser-ie .my-document-icon,.browser-ie .left-sidebar-minimized .ln-my-documents .sprite-icon,.left-sidebar-minimized .ln-my-documents .browser-ie .sprite-icon,.browser-ie .work-docs-icon-my-documents-ffffff-24x24,.browser-ie #left-sidebar .active .my-document-icon,#left-sidebar .active .browser-ie .my-document-icon,.browser-ie #left-sidebar li:hover .my-document-icon,#left-sidebar li:hover .browser-ie .my-document-icon,.browser-ie .left-sidebar-minimized .ln-my-documents:hover .sprite-icon,.left-sidebar-minimized .ln-my-documents:hover .browser-ie .sprite-icon,.browser-ie .left-sidebar-minimized .ln-my-documents.active .sprite-icon,.left-sidebar-minimized .ln-my-documents.active .browser-ie .sprite-icon,.browser-ie .work-docs-icon-my-documents-d0d2d3-16x16,.browser-ie .work-docs-icon-my-documents-8ea9c9-16x16,.browser-ie .work-docs-icon-my-documents-212f3e-16x16,.browser-ie .work-docs-icon-my-documents-0e72a3-16x16,.browser-ie .work-docs-icon-my-documents-808184-16x16,.browser-ie .work-docs-icon-my-documents-ffffff-16x16,.browser-ie .work-docs-icon-comments-xl-bold-d0d2d3-64x64,.browser-ie .work-docs-icon-comments-xl-bold-8ea9c9-64x64,.browser-ie .work-docs-icon-comments-xl-bold-212f3e-64x64,.browser-ie .work-docs-icon-comments-xl-bold-0e72a3-64x64,.browser-ie .work-docs-icon-comments-xl-bold-808184-64x64,.browser-ie .work-docs-icon-comments-xl-bold-ffffff-64x64,.browser-ie .work-docs-icon-comments-xl-bold-d0d2d3-32x32,.browser-ie .work-docs-icon-comments-xl-bold-8ea9c9-32x32,.browser-ie .work-docs-icon-comments-xl-bold-212f3e-32x32,.browser-ie .work-docs-icon-comments-xl-bold-0e72a3-32x32,.browser-ie .work-docs-icon-comments-xl-bold-808184-32x32,.browser-ie .work-docs-icon-comments-xl-bold-ffffff-32x32,.browser-ie .work-docs-icon-comments-xl-d0d2d3-64x64,.browser-ie .work-docs-icon-comments-xl-8ea9c9-64x64,.browser-ie .work-docs-icon-comments-xl-212f3e-64x64,.browser-ie .work-docs-icon-comments-xl-0e72a3-64x64,.browser-ie .work-docs-icon-comments-xl-808184-64x64,.browser-ie .work-docs-icon-comments-xl-ffffff-64x64,.browser-ie .work-docs-icon-comments-xl-d0d2d3-32x32,.browser-ie .work-docs-icon-comments-xl-8ea9c9-32x32,.browser-ie .work-docs-icon-comments-xl-212f3e-32x32,.browser-ie .work-docs-icon-comments-xl-0e72a3-32x32,.browser-ie .work-docs-icon-comments-xl-808184-32x32,.browser-ie .work-docs-icon-comments-xl-ffffff-32x32,.browser-ie .work-docs-icon-search-xl-bold-d0d2d3-64x64,.browser-ie .work-docs-icon-search-xl-bold-8ea9c9-64x64,.browser-ie .work-docs-icon-search-xl-bold-212f3e-64x64,.browser-ie .work-docs-icon-search-xl-bold-0e72a3-64x64,.browser-ie .work-docs-icon-search-xl-bold-808184-64x64,.browser-ie .work-docs-icon-search-xl-bold-ffffff-64x64,.browser-ie .work-docs-icon-search-xl-bold-d0d2d3-32x32,.browser-ie .work-docs-icon-search-xl-bold-8ea9c9-32x32,.browser-ie .work-docs-icon-search-xl-bold-212f3e-32x32,.browser-ie .work-docs-icon-search-xl-bold-0e72a3-32x32,.browser-ie .work-docs-icon-search-xl-bold-808184-32x32,.browser-ie .work-docs-icon-search-xl-bold-ffffff-32x32,.browser-ie .work-docs-icon-search-xl-d0d2d3-64x64,.browser-ie .work-docs-icon-search-xl-8ea9c9-64x64,.browser-ie .work-docs-icon-search-xl-212f3e-64x64,.browser-ie .work-docs-icon-search-xl-0e72a3-64x64,.browser-ie .work-docs-icon-search-xl-808184-64x64,.browser-ie .work-docs-icon-search-xl-ffffff-64x64,.browser-ie .work-docs-icon-search-xl-d0d2d3-32x32,.browser-ie .work-docs-icon-search-xl-8ea9c9-32x32,.browser-ie .work-docs-icon-search-xl-212f3e-32x32,.browser-ie .work-docs-icon-search-xl-0e72a3-32x32,.browser-ie .work-docs-icon-search-xl-808184-32x32,.browser-ie .work-docs-icon-search-xl-ffffff-32x32,.browser-ie .work-docs-icon-offline-documents-xl-bold-d0d2d3-64x64,.browser-ie .work-docs-icon-offline-documents-xl-bold-8ea9c9-64x64,.browser-ie .work-docs-icon-offline-documents-xl-bold-212f3e-64x64,.browser-ie .work-docs-icon-offline-documents-xl-bold-0e72a3-64x64,.browser-ie .work-docs-icon-offline-documents-xl-bold-808184-64x64,.browser-ie .work-docs-icon-offline-documents-xl-bold-ffffff-64x64,.browser-ie .work-docs-icon-offline-documents-xl-bold-d0d2d3-32x32,.browser-ie .work-docs-icon-offline-documents-xl-bold-8ea9c9-32x32,.browser-ie .work-docs-icon-offline-documents-xl-bold-212f3e-32x32,.browser-ie .work-docs-icon-offline-documents-xl-bold-0e72a3-32x32,.browser-ie .work-docs-icon-offline-documents-xl-bold-808184-32x32,.browser-ie .work-docs-icon-offline-documents-xl-bold-ffffff-32x32,.browser-ie .work-docs-icon-offline-documents-xl-d0d2d3-64x64,.browser-ie .work-docs-icon-offline-documents-xl-8ea9c9-64x64,.browser-ie .work-docs-icon-offline-documents-xl-212f3e-64x64,.browser-ie .work-docs-icon-offline-documents-xl-0e72a3-64x64,.browser-ie .work-docs-icon-offline-documents-xl-808184-64x64,.browser-ie .work-docs-icon-offline-documents-xl-ffffff-64x64,.browser-ie .work-docs-icon-offline-documents-xl-d0d2d3-32x32,.browser-ie .work-docs-icon-offline-documents-xl-8ea9c9-32x32,.browser-ie .work-docs-icon-offline-documents-xl-212f3e-32x32,.browser-ie .work-docs-icon-offline-documents-xl-0e72a3-32x32,.browser-ie .work-docs-icon-offline-documents-xl-808184-32x32,.browser-ie .work-docs-icon-offline-documents-xl-ffffff-32x32,.browser-ie .work-docs-icon-settings-xl-bold-d0d2d3-64x64,.browser-ie .work-docs-icon-settings-xl-bold-8ea9c9-64x64,.browser-ie .work-docs-icon-settings-xl-bold-212f3e-64x64,.browser-ie .work-docs-icon-settings-xl-bold-0e72a3-64x64,.browser-ie .work-docs-icon-settings-xl-bold-808184-64x64,.browser-ie .work-docs-icon-settings-xl-bold-ffffff-64x64,.browser-ie .work-docs-icon-settings-xl-bold-d0d2d3-32x32,.browser-ie .work-docs-icon-settings-xl-bold-8ea9c9-32x32,.browser-ie .work-docs-icon-settings-xl-bold-212f3e-32x32,.browser-ie .work-docs-icon-settings-xl-bold-0e72a3-32x32,.browser-ie .work-docs-icon-settings-xl-bold-808184-32x32,.browser-ie .work-docs-icon-settings-xl-bold-ffffff-32x32,.browser-ie .work-docs-icon-settings-xl-d0d2d3-65x64,.browser-ie .work-docs-icon-settings-xl-8ea9c9-65x64,.browser-ie .work-docs-icon-settings-xl-212f3e-65x64,.browser-ie .work-docs-icon-settings-xl-0e72a3-65x64,.browser-ie .work-docs-icon-settings-xl-808184-65x64,.browser-ie .work-docs-icon-settings-xl-ffffff-65x64,.browser-ie .work-docs-icon-settings-xl-d0d2d3-32x32,.browser-ie .work-docs-icon-settings-xl-8ea9c9-32x32,.browser-ie .work-docs-icon-settings-xl-212f3e-32x32,.browser-ie .work-docs-icon-settings-xl-0e72a3-32x32,.browser-ie .work-docs-icon-settings-xl-808184-32x32,.browser-ie .work-docs-icon-settings-xl-ffffff-32x32,.browser-ie .work-docs-icon-log-out-xl-bold-d0d2d3-64x64,.browser-ie .work-docs-icon-log-out-xl-bold-8ea9c9-64x64,.browser-ie .work-docs-icon-log-out-xl-bold-212f3e-64x64,.browser-ie .work-docs-icon-log-out-xl-bold-0e72a3-64x64,.browser-ie .work-docs-icon-log-out-xl-bold-808184-64x64,.browser-ie .work-docs-icon-log-out-xl-bold-ffffff-64x64,.browser-ie .work-docs-icon-log-out-xl-bold-d0d2d3-32x32,.browser-ie .work-docs-icon-log-out-xl-bold-8ea9c9-32x32,.browser-ie .work-docs-icon-log-out-xl-bold-212f3e-32x32,.browser-ie .work-docs-icon-log-out-xl-bold-0e72a3-32x32,.browser-ie .work-docs-icon-log-out-xl-bold-808184-32x32,.browser-ie .work-docs-icon-log-out-xl-bold-ffffff-32x32,.browser-ie .work-docs-icon-log-out-xl-d0d2d3-64x64,.browser-ie .work-docs-icon-log-out-xl-8ea9c9-64x64,.browser-ie .work-docs-icon-log-out-xl-212f3e-64x64,.browser-ie .work-docs-icon-log-out-xl-0e72a3-64x64,.browser-ie .work-docs-icon-log-out-xl-808184-64x64,.browser-ie .work-docs-icon-log-out-xl-ffffff-64x64,.browser-ie .work-docs-icon-log-out-xl-d0d2d3-32x32,.browser-ie .work-docs-icon-log-out-xl-8ea9c9-32x32,.browser-ie .work-docs-icon-log-out-xl-212f3e-32x32,.browser-ie .work-docs-icon-log-out-xl-0e72a3-32x32,.browser-ie .work-docs-icon-log-out-xl-808184-32x32,.browser-ie .work-docs-icon-log-out-xl-ffffff-32x32,.browser-ie .work-docs-icon-download-apps-xl-bold-0e72a3-64x64,.browser-ie .work-docs-icon-download-apps-xl-bold-0e72a3-32x32,.browser-ie .work-docs-icon-download-apps-xl-bold-8ea9c9-64x64,.browser-ie .work-docs-icon-download-apps-xl-bold-8ea9c9-32x32,.browser-ie .work-docs-icon-download-apps-xl-bold-212f3e-64x64,.browser-ie .work-docs-icon-download-apps-xl-bold-212f3e-32x32,.browser-ie .work-docs-icon-download-apps-xl-bold-808184-64x64,.browser-ie .work-docs-icon-download-apps-xl-bold-808184-32x32,.browser-ie .work-docs-icon-download-apps-xl-bold-d0d2d3-64x64,.browser-ie .work-docs-icon-download-apps-xl-bold-ffffff-64x64,.browser-ie .work-docs-icon-download-apps-xl-bold-d0d2d3-32x32,.browser-ie .work-docs-icon-download-apps-xl-bold-ffffff-32x32,.browser-ie .work-docs-icon-download-apps-xl-0e72a3-64x64,.browser-ie .work-docs-icon-download-apps-xl-0e72a3-32x32,.browser-ie .work-docs-icon-download-apps-xl-8ea9c9-64x64,.browser-ie .work-docs-icon-download-apps-xl-8ea9c9-32x32,.browser-ie .work-docs-icon-download-apps-xl-212f3e-64x64,.browser-ie .work-docs-icon-download-apps-xl-212f3e-32x32,.browser-ie .work-docs-icon-download-apps-xl-808184-64x64,.browser-ie .work-docs-icon-download-apps-xl-d0d2d3-64x64,.browser-ie .work-docs-icon-download-apps-xl-ffffff-64x64,.browser-ie .work-docs-icon-download-apps-xl-808184-32x32,.browser-ie .work-docs-icon-download-apps-xl-d0d2d3-32x32,.browser-ie .work-docs-icon-download-apps-xl-ffffff-32x32,.browser-ie .work-docs-icon-profile-xl-bold-d0d2d3-64x64,.browser-ie .work-docs-icon-profile-xl-bold-8ea9c9-64x64,.browser-ie .work-docs-icon-profile-xl-bold-212f3e-64x64,.browser-ie .work-docs-icon-profile-xl-bold-0e72a3-64x64,.browser-ie .work-docs-icon-profile-xl-bold-808184-64x64,.browser-ie .work-docs-icon-profile-xl-bold-ffffff-64x64,.browser-ie .work-docs-icon-profile-xl-bold-d0d2d3-32x32,.browser-ie .work-docs-icon-profile-xl-bold-8ea9c9-32x32,.browser-ie .work-docs-icon-profile-xl-bold-212f3e-32x32,.browser-ie .work-docs-icon-profile-xl-bold-0e72a3-32x32,.browser-ie .work-docs-icon-profile-xl-bold-808184-32x32,.browser-ie .work-docs-icon-profile-xl-bold-ffffff-32x32,.browser-ie .work-docs-icon-profile-xl-d0d2d3-64x64,.browser-ie .work-docs-icon-profile-xl-8ea9c9-64x64,.browser-ie .work-docs-icon-profile-xl-212f3e-64x64,.browser-ie .work-docs-icon-profile-xl-0e72a3-64x64,.browser-ie .work-docs-icon-profile-xl-808184-64x64,.browser-ie .work-docs-icon-profile-xl-ffffff-64x64,.browser-ie .work-docs-icon-profile-xl-d0d2d3-32x32,.browser-ie .work-docs-icon-profile-xl-8ea9c9-32x32,.browser-ie .work-docs-icon-profile-xl-212f3e-32x32,.browser-ie .work-docs-icon-profile-xl-0e72a3-32x32,.browser-ie .work-docs-icon-profile-xl-808184-32x32,.browser-ie .work-docs-icon-profile-xl-ffffff-32x32,.browser-ie .work-docs-icon-trash-xl-bold-d0d2d3-64x64,.browser-ie .work-docs-icon-trash-xl-bold-8ea9c9-64x64,.browser-ie .work-docs-icon-trash-xl-bold-212f3e-64x64,.browser-ie .work-docs-icon-trash-xl-bold-0e72a3-64x64,.browser-ie .work-docs-icon-trash-xl-bold-808184-64x64,.browser-ie .work-docs-icon-trash-xl-bold-ffffff-64x64,.browser-ie .work-docs-icon-trash-xl-bold-d0d2d3-32x32,.browser-ie .work-docs-icon-trash-xl-bold-8ea9c9-32x32,.browser-ie .work-docs-icon-trash-xl-bold-212f3e-32x32,.browser-ie .work-docs-icon-trash-xl-bold-0e72a3-32x32,.browser-ie .work-docs-icon-trash-xl-bold-808184-32x32,.browser-ie .work-docs-icon-trash-xl-bold-ffffff-32x32,.browser-ie .work-docs-icon-trash-xl-d0d2d3-64x64,.browser-ie .work-docs-icon-trash-xl-8ea9c9-64x64,.browser-ie .work-docs-icon-trash-xl-212f3e-64x64,.browser-ie .work-docs-icon-trash-xl-0e72a3-64x64,.browser-ie .work-docs-icon-trash-xl-808184-64x64,.browser-ie .work-docs-icon-trash-xl-ffffff-64x64,.browser-ie .work-docs-icon-trash-xl-d0d2d3-32x32,.browser-ie .work-docs-icon-trash-xl-8ea9c9-32x32,.browser-ie .work-docs-icon-trash-xl-212f3e-32x32,.browser-ie .work-docs-icon-trash-xl-0e72a3-32x32,.browser-ie .work-docs-icon-trash-xl-808184-32x32,.browser-ie .work-docs-icon-trash-xl-ffffff-32x32,.browser-ie .work-docs-icon-out-for-review-xl-bold-d0d2d3-64x64,.browser-ie .work-docs-icon-out-for-review-xl-bold-8ea9c9-64x64,.browser-ie .work-docs-icon-out-for-review-xl-bold-212f3e-64x64,.browser-ie .work-docs-icon-out-for-review-xl-bold-0e72a3-64x64,.browser-ie .work-docs-icon-out-for-review-xl-bold-808184-64x64,.browser-ie .work-docs-icon-out-for-review-xl-bold-ffffff-64x64,.browser-ie .work-docs-icon-out-for-review-xl-bold-d0d2d3-32x32,.browser-ie .work-docs-icon-out-for-review-xl-bold-8ea9c9-32x32,.browser-ie .work-docs-icon-out-for-review-xl-bold-212f3e-32x32,.browser-ie .work-docs-icon-out-for-review-xl-bold-0e72a3-32x32,.browser-ie .work-docs-icon-out-for-review-xl-bold-808184-32x32,.browser-ie .work-docs-icon-out-for-review-xl-bold-ffffff-32x32,.browser-ie .work-docs-icon-out-for-review-xl-d0d2d3-64x64,.browser-ie .work-docs-icon-out-for-review-xl-8ea9c9-64x64,.browser-ie .work-docs-icon-out-for-review-xl-212f3e-64x64,.browser-ie .work-docs-icon-out-for-review-xl-0e72a3-64x64,.browser-ie .work-docs-icon-out-for-review-xl-808184-64x64,.browser-ie .work-docs-icon-out-for-review-xl-ffffff-64x64,.browser-ie .work-docs-icon-out-for-review-xl-d0d2d3-32x32,.browser-ie .work-docs-icon-out-for-review-xl-8ea9c9-32x32,.browser-ie .work-docs-icon-out-for-review-xl-212f3e-32x32,.browser-ie .work-docs-icon-out-for-review-xl-0e72a3-32x32,.browser-ie .work-docs-icon-out-for-review-xl-808184-32x32,.browser-ie .work-docs-icon-out-for-review-xl-ffffff-32x32,.browser-ie .work-docs-icon-awaiting-feedback-xl-bold-d0d2d3-64x64,.browser-ie .work-docs-icon-awaiting-feedback-xl-bold-8ea9c9-64x64,.browser-ie .work-docs-icon-awaiting-feedback-xl-bold-212f3e-64x64,.browser-ie .work-docs-icon-awaiting-feedback-xl-bold-0e72a3-64x64,.browser-ie .work-docs-icon-awaiting-feedback-xl-bold-808184-64x64,.browser-ie .work-docs-icon-awaiting-feedback-xl-bold-ffffff-64x64,.browser-ie .work-docs-icon-awaiting-feedback-xl-bold-d0d2d3-32x32,.browser-ie .work-docs-icon-awaiting-feedback-xl-bold-8ea9c9-32x32,.browser-ie .work-docs-icon-awaiting-feedback-xl-bold-212f3e-32x32,.browser-ie .work-docs-icon-awaiting-feedback-xl-bold-0e72a3-32x32,.browser-ie .work-docs-icon-awaiting-feedback-xl-bold-808184-32x32,.browser-ie .work-docs-icon-awaiting-feedback-xl-bold-ffffff-32x32,.browser-ie .work-docs-icon-awaiting-feedback-xl-d0d2d3-64x64,.browser-ie .work-docs-icon-awaiting-feedback-xl-8ea9c9-64x64,.browser-ie .work-docs-icon-awaiting-feedback-xl-212f3e-64x64,.browser-ie .work-docs-icon-awaiting-feedback-xl-0e72a3-64x64,.browser-ie .work-docs-icon-awaiting-feedback-xl-808184-64x64,.browser-ie .work-docs-icon-awaiting-feedback-xl-ffffff-64x64,.browser-ie .work-docs-icon-awaiting-feedback-xl-d0d2d3-32x32,.browser-ie .work-docs-icon-awaiting-feedback-xl-8ea9c9-32x32,.browser-ie .work-docs-icon-awaiting-feedback-xl-212f3e-32x32,.browser-ie .work-docs-icon-awaiting-feedback-xl-0e72a3-32x32,.browser-ie .work-docs-icon-awaiting-feedback-xl-808184-32x32,.browser-ie .work-docs-icon-awaiting-feedback-xl-ffffff-32x32,.browser-ie .work-docs-icon-shared-with-me-xl-bold-d0d2d3-64x64,.browser-ie .work-docs-icon-shared-with-me-xl-bold-8ea9c9-64x64,.browser-ie .work-docs-icon-shared-with-me-xl-bold-212f3e-64x64,.browser-ie .work-docs-icon-shared-with-me-xl-bold-0e72a3-64x64,.browser-ie .work-docs-icon-shared-with-me-xl-bold-808184-64x64,.browser-ie .work-docs-icon-shared-with-me-xl-bold-ffffff-64x64,.browser-ie .work-docs-icon-shared-with-me-xl-bold-d0d2d3-32x32,.browser-ie .work-docs-icon-shared-with-me-xl-bold-8ea9c9-32x32,.browser-ie .work-docs-icon-shared-with-me-xl-bold-212f3e-32x32,.browser-ie .work-docs-icon-shared-with-me-xl-bold-0e72a3-32x32,.browser-ie .work-docs-icon-shared-with-me-xl-bold-808184-32x32,.browser-ie .work-docs-icon-shared-with-me-xl-bold-ffffff-32x32,.browser-ie .work-docs-icon-shared-with-me-xl-d0d2d3-64x64,.browser-ie .work-docs-icon-shared-with-me-xl-8ea9c9-64x64,.browser-ie .work-docs-icon-shared-with-me-xl-212f3e-64x64,.browser-ie .work-docs-icon-shared-with-me-xl-0e72a3-64x64,.browser-ie .work-docs-icon-shared-with-me-xl-808184-64x64,.browser-ie .work-docs-icon-shared-with-me-xl-ffffff-64x64,.browser-ie .work-docs-icon-shared-with-me-xl-d0d2d3-32x32,.browser-ie .work-docs-icon-shared-with-me-xl-8ea9c9-32x32,.browser-ie .work-docs-icon-shared-with-me-xl-212f3e-32x32,.browser-ie .work-docs-icon-shared-with-me-xl-0e72a3-32x32,.browser-ie .work-docs-icon-shared-with-me-xl-808184-32x32,.browser-ie .work-docs-icon-shared-with-me-xl-ffffff-32x32,.browser-ie .work-docs-icon-my-documents-xl-bold-d0d2d3-64x64,.browser-ie .work-docs-icon-my-documents-xl-bold-8ea9c9-64x64,.browser-ie .work-docs-icon-my-documents-xl-bold-212f3e-64x64,.browser-ie .work-docs-icon-my-documents-xl-bold-0e72a3-64x64,.browser-ie .work-docs-icon-my-documents-xl-bold-808184-64x64,.browser-ie .work-docs-icon-my-documents-xl-bold-ffffff-64x64,.browser-ie .work-docs-icon-my-documents-xl-bold-d0d2d3-32x32,.browser-ie .work-docs-icon-my-documents-xl-bold-8ea9c9-32x32,.browser-ie .work-docs-icon-my-documents-xl-bold-212f3e-32x32,.browser-ie .work-docs-icon-my-documents-xl-bold-0e72a3-32x32,.browser-ie .work-docs-icon-my-documents-xl-bold-808184-32x32,.browser-ie .work-docs-icon-my-documents-xl-bold-ffffff-32x32,.browser-ie .work-docs-icon-my-documents-xl-d0d2d3-64x64,.browser-ie .work-docs-icon-my-documents-xl-8ea9c9-64x64,.browser-ie .work-docs-icon-my-documents-xl-212f3e-64x64,.browser-ie .work-docs-icon-my-documents-xl-0e72a3-64x64,.browser-ie .work-docs-icon-my-documents-xl-808184-64x64,.browser-ie .work-docs-icon-my-documents-xl-ffffff-64x64,.browser-ie .work-docs-icon-my-documents-xl-d0d2d3-32x32,.browser-ie .work-docs-icon-my-documents-xl-8ea9c9-32x32,.browser-ie .work-docs-icon-my-documents-xl-212f3e-32x32,.browser-ie .work-docs-icon-my-documents-xl-0e72a3-32x32,.browser-ie .work-docs-icon-my-documents-xl-808184-32x32,.browser-ie .work-docs-icon-my-documents-xl-ffffff-32x32,.browser-ie .work-docs-icon-no-preview-212f3e-72x72,.browser-ie .no-preview-icon,.browser-ie .work-docs-icon-remove-me-from-share-alternate-212f3e-72x72,.browser-ie .work-docs-icon-locked-212f3e-72x72,.browser-ie .resource-locked-icon,.browser-ie .work-docs-icon-open-folder-212f3e-72x72,.browser-ie .folder-no-file-icon,.browser-ie .work-docs-icon-session-expired-212f3e-72x72,.browser-ie .session-expired-icon,.browser-ie .work-docs-icon-progress-0e72a3-72x72,.browser-ie .work-docs-icon-progress-212f3e-72x72,.browser-ie .work-docs-icon-broken-link-212f3e-72x72,.browser-ie .folder-not-found-icon,.browser-ie .document-unavailable-icon,.browser-ie .no-file-access-icon,.browser-ie .work-docs-icon-upload-to-cloud-212f3e-72x72{background-repeat:no-repeat;background-image:url(images/work-docs-icon_20170824_6dfb7ee3beb8db770a1f5f94fe5b1bcb.png);background-size:1000px 7800px}.browser-non-ie .work-docs-icon-group-3-9x11,.browser-non-ie .work-docs-icon-pdf-0e72a3-16x17,.browser-non-ie .work-docs-icon-pdf-0e72a3-24x25,.browser-non-ie .work-docs-icon-pdf-8ea9c9-16x17,.browser-non-ie .work-docs-icon-pdf-8ea9c9-24x25,.browser-non-ie .work-docs-icon-pdf-d0d2d3-16x17,.browser-non-ie .work-docs-icon-pdf-d0d2d3-24x25,.browser-non-ie .work-docs-icon-pdf-ffffff-16x17,.browser-non-ie .work-docs-icon-pdf-ffffff-24x25,.browser-non-ie .work-docs-icon-pdf-212f3e-16x17,.browser-non-ie .work-docs-icon-pdf-212f3e-24x25,.browser-non-ie .work-docs-icon-pdf-787982-16x17,.browser-non-ie .work-docs-icon-text-0e72a3-24x24,.browser-non-ie .work-docs-icon-text-0e72a3-16x16,.browser-non-ie .work-docs-icon-text-ffffff-17x22,.browser-non-ie .work-docs-icon-text-ffffff-16x16,.browser-non-ie .work-docs-icon-text-d0d2d3-24x24,.browser-non-ie .work-docs-icon-text-d0d2d3-16x16,.browser-non-ie .work-docs-icon-text-787982-24x24,.browser-non-ie .work-docs-icon-text-787982-16x16,.browser-non-ie .work-docs-icon-text-212f3e-24x24,.browser-non-ie .work-docs-icon-text-212f3e-16x16,.browser-non-ie .work-docs-icon-text-8ea9c9-17x22,.browser-non-ie .work-docs-icon-text-8ea9c9-11x15,.browser-non-ie .work-docs-icon-star-empty-8ea9c9-24x24,.browser-non-ie .work-docs-icon-star-empty-8ea9c9-16x16,.browser-non-ie .work-docs-icon-star-empty-0e72a3-24x24,.browser-non-ie .work-docs-icon-star-empty-0e72a3-16x16,.browser-non-ie .work-docs-icon-star-empty-ffffff-24x24,.browser-non-ie #left-sidebar .active .favorites-icon,#left-sidebar .active .browser-non-ie .favorites-icon,.browser-non-ie #left-sidebar li:hover .favorites-icon,#left-sidebar li:hover .browser-non-ie .favorites-icon,.browser-non-ie .left-sidebar-minimized .ln-favorites:hover .sprite-icon,.left-sidebar-minimized .ln-favorites:hover .browser-non-ie .sprite-icon,.browser-non-ie .left-sidebar-minimized .ln-favorites.active .sprite-icon,.left-sidebar-minimized .ln-favorites.active .browser-non-ie .sprite-icon,.browser-non-ie .work-docs-icon-star-empty-ffffff-16x16,.browser-non-ie .work-docs-icon-star-empty-d0d2d3-24x24,.browser-non-ie .work-docs-icon-star-empty-d0d2d3-16x16,.browser-non-ie .work-docs-icon-star-empty-808184-24x24,.browser-non-ie #left-sidebar .favorites-icon,#left-sidebar .browser-non-ie .favorites-icon,.browser-non-ie .left-sidebar-minimized .ln-favorites .sprite-icon,.left-sidebar-minimized .ln-favorites .browser-non-ie .sprite-icon,.browser-non-ie .work-docs-icon-star-empty-808184-16x16,.browser-non-ie .work-docs-icon-no-favorite-0e72a3-24x24,.browser-non-ie .work-docs-icon-star-empty-212f3e-24x24,.browser-non-ie .work-docs-icon-star-empty-212f3e-16x16,.browser-non-ie .work-docs-icon-star-8ea9c9-24x24,.browser-non-ie .work-docs-icon-star-8ea9c9-16x16,.browser-non-ie .work-docs-icon-star-0e72a3-24x24,.browser-non-ie .work-docs-icon-star-0e72a3-16x16,.browser-non-ie .work-docs-icon-favorite-0e72a3-24x24,.browser-non-ie .work-docs-icon-star-ffffff-24x24,.browser-non-ie .work-docs-icon-star-ffffff-16x16,.browser-non-ie .work-docs-icon-star-d0d2d3-24x24,.browser-non-ie .work-docs-icon-star-d0d2d3-16x16,.browser-non-ie .work-docs-icon-star-808184-24x24,.browser-non-ie .work-docs-icon-star-808184-17x16,.browser-non-ie .work-docs-icon-star-212f3e-24x24,.browser-non-ie .work-docs-icon-star-212f3e-17x16,.browser-non-ie .work-docs-icon-private-8ea9c9-24x24,.browser-non-ie .work-docs-icon-private-8ea9c9-16x16,.browser-non-ie .work-docs-icon-private-0e72a3-24x24,.browser-non-ie .work-docs-icon-private-0e72a3-16x16,.browser-non-ie .work-docs-icon-private-ffffff-24x24,.browser-non-ie .work-docs-icon-private-ffffff-16x16,.browser-non-ie .work-docs-icon-private-d0d2d3-24x24,.browser-non-ie .work-docs-icon-private-d0d2d3-16x16,.browser-non-ie .work-docs-icon-private-808184-24x24,.browser-non-ie .work-docs-icon-private-808184-16x16,.browser-non-ie .work-docs-icon-private-212f3e-24x24,.browser-non-ie .work-docs-icon-private-212f3e-16x16,.browser-non-ie .work-docs-icon-request-check-in-0e72a3-24x24,.browser-non-ie .work-docs-icon-request-check-in-0e72a3-16x16,.browser-non-ie .work-docs-icon-request-check-in-8ea9c9-24x24,.browser-non-ie .work-docs-icon-request-check-in-8ea9c9-16x16,.browser-non-ie .work-docs-icon-request-check-in-212f3e-24x24,.browser-non-ie .work-docs-icon-request-check-in-212f3e-16x16,.browser-non-ie .work-docs-icon-request-check-in-808184-24x24,.browser-non-ie .work-docs-icon-request-check-in-808184-16x16,.browser-non-ie .work-docs-icon-request-check-in-d0d2d3-24x24,.browser-non-ie .work-docs-icon-request-check-in-d0d2d3-16x16,.browser-non-ie .work-docs-icon-request-check-in-ffffff-24x24,.browser-non-ie .work-docs-icon-request-check-in-ffffff-16x16,.browser-non-ie .action-icon-request-checkin,.browser-non-ie .work-docs-icon-discard-check-out-0e72a3-24x24,.browser-non-ie .work-docs-icon-discard-check-out-0e72a3-16x16,.browser-non-ie .work-docs-icon-discard-check-out-8ea9c9-24x24,.browser-non-ie .work-docs-icon-discard-check-out-8ea9c9-16x16,.browser-non-ie .work-docs-icon-discard-check-out-212f3e-24x24,.browser-non-ie .work-docs-icon-discard-check-out-212f3e-16x16,.browser-non-ie .work-docs-icon-discard-check-out-808184-24x24,.browser-non-ie .work-docs-icon-discard-check-out-808184-16x16,.browser-non-ie .work-docs-icon-discard-check-out-d0d2d3-24x24,.browser-non-ie .work-docs-icon-discard-check-out-d0d2d3-16x16,.browser-non-ie .work-docs-icon-discard-check-out-ffffff-24x24,.browser-non-ie .work-docs-icon-discard-check-out-ffffff-16x16,.browser-non-ie .work-docs-icon-check-in-0e72a3-24x24,.browser-non-ie .work-docs-icon-check-in-0e72a3-16x16,.browser-non-ie .work-docs-icon-check-in-8ea9c9-24x24,.browser-non-ie .work-docs-icon-check-in-8ea9c9-16x16,.browser-non-ie .work-docs-icon-check-in-212f3e-24x24,.browser-non-ie .work-docs-icon-check-in-212f3e-16x16,.browser-non-ie .work-docs-icon-check-in-808184-24x24,.browser-non-ie .work-docs-icon-check-in-808184-16x16,.browser-non-ie .work-docs-icon-check-in-d0d2d3-24x24,.browser-non-ie .work-docs-icon-check-in-d0d2d3-16x16,.browser-non-ie .work-docs-icon-check-in-ffffff-24x24,.browser-non-ie .work-docs-icon-check-in-ffffff-16x16,.browser-non-ie .work-docs-icon-check-out-0e72a3-24x24,.browser-non-ie .work-docs-icon-check-out-0e72a3-16x16,.browser-non-ie .work-docs-icon-check-out-8ea9c9-24x24,.browser-non-ie .work-docs-icon-check-out-8ea9c9-16x16,.browser-non-ie .work-docs-icon-check-out-212f3e-24x24,.browser-non-ie .work-docs-icon-check-out-212f3e-16x16,.browser-non-ie .work-docs-icon-check-out-808184-24x24,.browser-non-ie .work-docs-icon-check-out-808184-16x16,.browser-non-ie .work-docs-icon-check-out-d0d2d3-24x24,.browser-non-ie .work-docs-icon-check-out-d0d2d3-16x16,.browser-non-ie .work-docs-icon-check-out-ffffff-24x24,.browser-non-ie .work-docs-icon-check-out-ffffff-16x16,.browser-non-ie .work-docs-icon-help-0e72a3-24x24,.browser-non-ie .feedback-input-container .question-mark,.feedback-input-container .browser-non-ie .question-mark,.browser-non-ie .work-docs-icon-help-0e72a3-16x16,.browser-non-ie .work-docs-icon-help-8ea9c9-24x24,.browser-non-ie .feedback-input-container .question-mark:hover,.feedback-input-container .browser-non-ie .question-mark:hover,.browser-non-ie .work-docs-icon-help-8ea9c9-16x16,.browser-non-ie .work-docs-icon-help-212f3e-24x24,.browser-non-ie .work-docs-icon-help-212f3e-16x16,.browser-non-ie .work-docs-icon-help-808184-24x24,.browser-non-ie .work-docs-icon-help-808184-16x16,.browser-non-ie .work-docs-icon-help-d0d2d3-24x24,.browser-non-ie .work-docs-icon-help-d0d2d3-16x16,.browser-non-ie .work-docs-icon-help-ffffff-24x24,.browser-non-ie .work-docs-icon-help-ffffff-16x16,.browser-non-ie .work-docs-icon-help-solid-0e72a3-24x24,.browser-non-ie .work-docs-icon-help-solid-0e72a3-16x16,.browser-non-ie .work-docs-icon-help-solid-8ea9c9-24x24,.browser-non-ie .work-docs-icon-help-solid-8ea9c9-16x16,.browser-non-ie .work-docs-icon-help-solid-212f3e-24x24,.browser-non-ie .work-docs-icon-help-solid-212f3e-16x16,.browser-non-ie .work-docs-icon-help-solid-808184-24x24,.browser-non-ie .work-docs-icon-help-solid-808184-16x16,.browser-non-ie .work-docs-icon-help-solid-d0d2d3-24x24,.browser-non-ie .work-docs-icon-help-solid-d0d2d3-16x16,.browser-non-ie .work-docs-icon-help-solid-ffffff-24x24,.browser-non-ie .work-docs-icon-help-solid-ffffff-16x16,.browser-non-ie .work-docs-icon-mention-0e72a3-24x24,.browser-non-ie .feedback-input-container .at-mention-icon,.feedback-input-container .browser-non-ie .at-mention-icon,.browser-non-ie .work-docs-icon-mention-0e72a3-16x16,.browser-non-ie .work-docs-icon-mention-8ea9c9-24x24,.browser-non-ie .feedback-input-container .at-mention-icon:hover,.feedback-input-container .browser-non-ie .at-mention-icon:hover,.browser-non-ie .work-docs-icon-mention-8ea9c9-16x16,.browser-non-ie .work-docs-icon-mention-212f3e-24x24,.browser-non-ie .work-docs-icon-mention-212f3e-16x16,.browser-non-ie .work-docs-icon-mention-808184-24x24,.browser-non-ie .work-docs-icon-mention-808184-16x16,.browser-non-ie .work-docs-icon-mention-d0d2d3-24x24,.browser-non-ie .work-docs-icon-mention-d0d2d3-16x16,.browser-non-ie .work-docs-icon-mention-ffffff-24x24,.browser-non-ie .work-docs-icon-mention-ffffff-16x16,.browser-non-ie .work-docs-icon-decline-feedback-0e72a3-24x24,.browser-non-ie .work-docs-icon-decline-feedback-0e72a3-16x16,.browser-non-ie .work-docs-icon-decline-feedback-8ea9c9-24x24,.browser-non-ie .work-docs-icon-decline-feedback-8ea9c9-16x16,.browser-non-ie .work-docs-icon-decline-feedback-212f3e-24x24,.browser-non-ie .work-docs-icon-decline-feedback-212f3e-16x16,.browser-non-ie .work-docs-icon-decline-feedback-808184-24x24,.browser-non-ie .work-docs-icon-decline-feedback-808184-16x16,.browser-non-ie .work-docs-icon-decline-feedback-d0d2d3-24x24,.browser-non-ie .work-docs-icon-decline-feedback-ffffff-24x24,.browser-non-ie .work-docs-icon-decline-feedback-d0d2d3-16x16,.browser-non-ie .work-docs-icon-decline-feedback-ffffff-16x16,.browser-non-ie .action-icon-decline-feedback,.browser-non-ie .work-docs-icon-disable-feedback-0e72a3-24x24,.browser-non-ie .work-docs-icon-disable-feedback-0e72a3-16x16,.browser-non-ie .work-docs-icon-disable-feedback-8ea9c9-24x24,.browser-non-ie .work-docs-icon-disable-feedback-8ea9c9-16x16,.browser-non-ie .work-docs-icon-disable-feedback-212f3e-24x24,.browser-non-ie .work-docs-icon-disable-feedback-212f3e-16x16,.browser-non-ie .work-docs-icon-disable-feedback-808184-24x24,.browser-non-ie .work-docs-icon-disable-feedback-808184-16x16,.browser-non-ie .work-docs-icon-disable-feedback-d0d2d3-24x24,.browser-non-ie .work-docs-icon-disable-feedback-ffffff-24x24,.browser-non-ie .work-docs-icon-disable-feedback-d0d2d3-16x16,.browser-non-ie .work-docs-icon-disable-feedback-ffffff-16x16,.browser-non-ie .work-docs-icon-enable-feedback-0e72a3-24x24,.browser-non-ie .work-docs-icon-enable-feedback-0e72a3-16x16,.browser-non-ie .work-docs-icon-enable-feedback-8ea9c9-24x24,.browser-non-ie .work-docs-icon-enable-feedback-8ea9c9-16x16,.browser-non-ie .work-docs-icon-enable-feedback-212f3e-24x24,.browser-non-ie .work-docs-icon-enable-feedback-212f3e-16x16,.browser-non-ie .work-docs-icon-enable-feedback-808184-24x24,.browser-non-ie .work-docs-icon-enable-feedback-808184-16x16,.browser-non-ie .work-docs-icon-enable-feedback-d0d2d3-24x24,.browser-non-ie .work-docs-icon-enable-feedback-ffffff-24x24,.browser-non-ie .work-docs-icon-enable-feedback-d0d2d3-16x16,.browser-non-ie .work-docs-icon-enable-feedback-ffffff-16x16,.browser-non-ie .work-docs-icon-disabled-feedback-alternate-0e72a3-24x24,.browser-non-ie .work-docs-icon-disabled-feedback-alternate-0e72a3-16x16,.browser-non-ie .work-docs-icon-disabled-feedback-alternate-8ea9c9-24x24,.browser-non-ie .work-docs-icon-disabled-feedback-alternate-8ea9c9-16x16,.browser-non-ie .work-docs-icon-disabled-feedback-alternate-212f3e-24x24,.browser-non-ie .work-docs-icon-disabled-feedback-alternate-212f3e-16x16,.browser-non-ie .work-docs-icon-disabled-feedback-alternate-808184-24x24,.browser-non-ie .work-docs-icon-disabled-feedback-alternate-808184-16x16,.browser-non-ie .work-docs-icon-disabled-feedback-alternate-d0d2d3-24x24,.browser-non-ie .work-docs-icon-disabled-feedback-alternate-ffffff-24x24,.browser-non-ie .work-docs-icon-disabled-feedback-alternate-d0d2d3-16x16,.browser-non-ie .work-docs-icon-disabled-feedback-alternate-ffffff-16x16,.browser-non-ie .work-docs-icon-disabled-feedback-0e72a3-24x24,.browser-non-ie .work-docs-icon-disabled-feedback-0e72a3-16x16,.browser-non-ie .work-docs-icon-disabled-feedback-8ea9c9-24x24,.browser-non-ie .work-docs-icon-disabled-feedback-8ea9c9-16x16,.browser-non-ie .work-docs-icon-disabled-feedback-212f3e-24x24,.browser-non-ie .work-docs-icon-disabled-feedback-212f3e-16x16,.browser-non-ie .work-docs-icon-disabled-feedback-808184-24x24,.browser-non-ie .work-docs-icon-disabled-feedback-808184-16x16,.browser-non-ie .work-docs-icon-disabled-feedback-d0d2d3-24x24,.browser-non-ie .work-docs-icon-disabled-feedback-ffffff-24x24,.browser-non-ie .work-docs-icon-disabled-feedback-d0d2d3-16x16,.browser-non-ie .work-docs-icon-disabled-feedback-ffffff-16x16,.browser-non-ie .work-docs-icon-private-feedback-indicator-ffa724-24x24,.browser-non-ie .work-docs-icon-private-feedback-indicator-ffa724-16x16,.browser-non-ie .work-docs-icon-private-feedback-indicator-0e72a3-24x24,.browser-non-ie .work-docs-icon-private-feedback-indicator-0e72a3-16x16,.browser-non-ie .work-docs-icon-private-feedback-indicator-8ea9c9-24x24,.browser-non-ie .work-docs-icon-private-feedback-indicator-8ea9c9-16x16,.browser-non-ie .work-docs-icon-private-feedback-indicator-212f3e-24x24,.browser-non-ie .work-docs-icon-private-feedback-indicator-212f3e-16x16,.browser-non-ie .work-docs-icon-private-feedback-indicator-808184-24x24,.browser-non-ie .work-docs-icon-private-feedback-indicator-808184-16x16,.browser-non-ie .work-docs-icon-private-feedback-indicator-d0d2d3-24x24,.browser-non-ie .work-docs-icon-private-feedback-indicator-ffffff-24x24,.browser-non-ie .work-docs-icon-private-feedback-indicator-d0d2d3-16x16,.browser-non-ie .work-docs-icon-private-feedback-indicator-ffffff-16x16,.browser-non-ie .work-docs-icon-unlocked-0e72a3-24x24,.browser-non-ie .work-docs-icon-unlocked-0e72a3-16x16,.browser-non-ie .work-docs-icon-unlocked-8ea9c9-24x24,.browser-non-ie .work-docs-icon-unlocked-8ea9c9-16x16,.browser-non-ie .work-docs-icon-unlocked-212f3e-24x24,.browser-non-ie .work-docs-icon-unlocked-212f3e-16x16,.browser-non-ie .work-docs-icon-unlocked-808184-24x24,.browser-non-ie .work-docs-icon-unlocked-808184-16x16,.browser-non-ie .work-docs-icon-unlocked-d0d2d3-24x24,.browser-non-ie .work-docs-icon-unlocked-d0d2d3-16x16,.browser-non-ie .work-docs-icon-unlocked-ffffff-24x24,.browser-non-ie .work-docs-icon-unlocked-ffffff-16x16,.browser-non-ie .action-icon-discard-checkout,.browser-non-ie .action-icon-checkin,.browser-non-ie .work-docs-icon-video-alternate-0e72a3-24x24,.browser-non-ie .work-docs-icon-video-alternate-0e72a3-16x16,.browser-non-ie .work-docs-icon-video-alternate-8ea9c9-24x24,.browser-non-ie .work-docs-icon-video-alternate-8ea9c9-16x16,.browser-non-ie .work-docs-icon-video-alternate-212f3e-24x24,.browser-non-ie .work-docs-icon-video-alternate-212f3e-16x16,.browser-non-ie .work-docs-icon-video-alternate-808184-24x24,.browser-non-ie .work-docs-icon-video-alternate-808184-16x16,.browser-non-ie .work-docs-icon-video-alternate-d0d2d3-24x24,.browser-non-ie .work-docs-icon-video-alternate-ffffff-24x24,.browser-non-ie .work-docs-icon-video-alternate-d0d2d3-16x16,.browser-non-ie .work-docs-icon-video-alternate-ffffff-16x16,.browser-non-ie .work-docs-icon-video-0e72a3-24x24,.browser-non-ie .work-docs-icon-video-0e72a3-16x16,.browser-non-ie .work-docs-icon-video-8ea9c9-24x24,.browser-non-ie .work-docs-icon-video-8ea9c9-16x16,.browser-non-ie .work-docs-icon-video-212f3e-24x24,.browser-non-ie .work-docs-icon-video-212f3e-16x16,.browser-non-ie .work-docs-icon-video-808184-24x24,.browser-non-ie .work-docs-icon-video-808184-16x16,.browser-non-ie .work-docs-icon-video-d0d2d3-24x24,.browser-non-ie .work-docs-icon-video-ffffff-24x24,.browser-non-ie .work-docs-icon-video-d0d2d3-16x16,.browser-non-ie .work-docs-icon-video-ffffff-16x16,.browser-non-ie .work-docs-icon-filter-0e72a3-24x24,.browser-non-ie .work-docs-icon-filter-0e72a3-16x16,.browser-non-ie .feedback-filter-icn.active,.browser-non-ie .feedback-filter-icn:hover,.browser-non-ie .work-docs-icon-filter-8ea9c9-24x24,.browser-non-ie .work-docs-icon-filter-8ea9c9-16x16,.browser-non-ie .work-docs-icon-filter-212f3e-24x24,.browser-non-ie .work-docs-icon-filter-212f3e-16x16,.browser-non-ie .work-docs-icon-filter-808184-24x24,.browser-non-ie .work-docs-icon-filter-808184-16x16,.browser-non-ie .work-docs-icon-filter-d0d2d3-24x24,.browser-non-ie .work-docs-icon-filter-ffffff-24x24,.browser-non-ie .work-docs-icon-filter-d0d2d3-16x16,.browser-non-ie .work-docs-icon-filter-ffffff-16x16,.browser-non-ie .feedback-filter-icn,.browser-non-ie .work-docs-icon-add-document-0e72a3-24x24,.browser-non-ie .work-docs-icon-add-document-0e72a3-16x16,.browser-non-ie .work-docs-icon-add-document-8ea9c9-24x24,.browser-non-ie .work-docs-icon-add-document-8ea9c9-16x16,.browser-non-ie .work-docs-icon-add-document-212f3e-24x24,.browser-non-ie .work-docs-icon-add-document-212f3e-16x16,.browser-non-ie .work-docs-icon-add-document-808184-24x24,.browser-non-ie .work-docs-icon-add-document-808184-16x16,.browser-non-ie .work-docs-icon-add-document-d0d2d3-24x24,.browser-non-ie .work-docs-icon-add-document-ffffff-24x24,.browser-non-ie .work-docs-icon-add-document-d0d2d3-16x16,.browser-non-ie .work-docs-icon-add-document-ffffff-16x16,.browser-non-ie .work-docs-icon-download-with-comments-0e72a3-24x24,.browser-non-ie .work-docs-icon-download-with-comments-0e72a3-16x16,.browser-non-ie .work-docs-icon-download-with-comments-8ea9c9-24x24,.browser-non-ie .work-docs-icon-download-with-comments-8ea9c9-16x16,.browser-non-ie .work-docs-icon-download-with-comments-212f3e-24x24,.browser-non-ie .work-docs-icon-download-with-comments-212f3e-16x16,.browser-non-ie .work-docs-icon-download-with-comments-808184-24x24,.browser-non-ie .work-docs-icon-download-with-comments-808184-16x16,.browser-non-ie .work-docs-icon-download-with-comments-d0d2d3-24x24,.browser-non-ie .work-docs-icon-download-with-comments-ffffff-24x24,.browser-non-ie .work-docs-icon-download-with-comments-d0d2d3-16x16,.browser-non-ie .work-docs-icon-download-with-comments-ffffff-16x16,.browser-non-ie .work-docs-icon-remove-me-from-share-alternate-0e72a3-24x24,.browser-non-ie .work-docs-icon-remove-me-from-share-alternate-0e72a3-16x16,.browser-non-ie .work-docs-icon-remove-me-from-share-alternate-8ea9c9-24x24,.browser-non-ie .work-docs-icon-remove-me-from-share-alternate-8ea9c9-16x16,.browser-non-ie .work-docs-icon-remove-me-from-share-alternate-212f3e-24x24,.browser-non-ie .work-docs-icon-remove-me-from-share-alternate-212f3e-16x16,.browser-non-ie .work-docs-icon-remove-me-from-share-alternate-808184-24x24,.browser-non-ie .work-docs-icon-remove-me-from-share-alternate-808184-16x16,.browser-non-ie .work-docs-icon-remove-me-from-share-alternate-d0d2d3-24x24,.browser-non-ie .work-docs-icon-remove-me-from-share-alternate-ffffff-24x24,.browser-non-ie .work-docs-icon-remove-me-from-share-alternate-d0d2d3-16x16,.browser-non-ie .work-docs-icon-remove-me-from-share-alternate-ffffff-16x16,.browser-non-ie .work-docs-icon-remove-me-from-share-0e72a3-24x24,.browser-non-ie .work-docs-icon-remove-me-from-share-0e72a3-16x16,.browser-non-ie .work-docs-icon-remove-me-from-share-8ea9c9-24x24,.browser-non-ie .work-docs-icon-remove-me-from-share-8ea9c9-16x16,.browser-non-ie .work-docs-icon-remove-me-from-share-212f3e-24x24,.browser-non-ie .work-docs-icon-remove-me-from-share-212f3e-16x16,.browser-non-ie .work-docs-icon-remove-me-from-share-808184-24x24,.browser-non-ie .work-docs-icon-remove-me-from-share-808184-16x16,.browser-non-ie .work-docs-icon-remove-me-from-share-d0d2d3-24x24,.browser-non-ie .work-docs-icon-remove-me-from-share-ffffff-24x24,.browser-non-ie .work-docs-icon-remove-me-from-share-d0d2d3-16x16,.browser-non-ie .work-docs-icon-remove-me-from-share-ffffff-16x16,.browser-non-ie .work-docs-icon-transfer-owner-0e72a3-24x24,.browser-non-ie .work-docs-icon-transfer-owner-0e72a3-16x16,.browser-non-ie .work-docs-icon-transfer-owner-8ea9c9-24x24,.browser-non-ie .work-docs-icon-transfer-owner-8ea9c9-16x16,.browser-non-ie .work-docs-icon-transfer-owner-212f3e-24x24,.browser-non-ie .work-docs-icon-transfer-owner-212f3e-16x16,.browser-non-ie .work-docs-icon-transfer-owner-808184-24x24,.browser-non-ie .work-docs-icon-transfer-owner-808184-16x16,.browser-non-ie .work-docs-icon-transfer-owner-d0d2d3-24x24,.browser-non-ie .work-docs-icon-transfer-owner-ffffff-24x24,.browser-non-ie .work-docs-icon-transfer-owner-d0d2d3-16x16,.browser-non-ie .work-docs-icon-transfer-owner-ffffff-16x16,.browser-non-ie .work-docs-icon-sort-0e72a3-24x24,.browser-non-ie .work-docs-icon-sort-0e72a3-16x16,.browser-non-ie .work-docs-icon-sort-8ea9c9-24x24,.browser-non-ie .work-docs-icon-sort-8ea9c9-16x16,.browser-non-ie .work-docs-icon-sort-212f3e-24x24,.browser-non-ie .work-docs-icon-sort-212f3e-16x16,.browser-non-ie .work-docs-icon-sort-808184-24x24,.browser-non-ie .work-docs-icon-sort-808184-16x16,.browser-non-ie .work-docs-icon-sort-d0d2d3-24x24,.browser-non-ie .work-docs-icon-sort-ffffff-24x24,.browser-non-ie .work-docs-icon-sort-d0d2d3-16x16,.browser-non-ie .work-docs-icon-sort-ffffff-16x16,.browser-non-ie .work-docs-icon-download-mobile-0e72a3-24x24,.browser-non-ie .work-docs-icon-download-mobile-0e72a3-16x16,.browser-non-ie .work-docs-icon-download-mobile-8ea9c9-24x24,.browser-non-ie .work-docs-icon-download-mobile-8ea9c9-16x16,.browser-non-ie .work-docs-icon-download-mobile-212f3e-24x24,.browser-non-ie .work-docs-icon-download-mobile-212f3e-16x16,.browser-non-ie .work-docs-icon-download-mobile-808184-24x24,.browser-non-ie #left-sidebar .download-mobile-app-icon,#left-sidebar .browser-non-ie .download-mobile-app-icon,.browser-non-ie .work-docs-icon-download-mobile-808184-16x16,.browser-non-ie .work-docs-icon-download-mobile-d0d2d3-24x24,.browser-non-ie .work-docs-icon-download-mobile-ffffff-24x24,.browser-non-ie #left-sidebar .active .download-mobile-app-icon,#left-sidebar .active .browser-non-ie .download-mobile-app-icon,.browser-non-ie #left-sidebar li:hover .download-mobile-app-icon,#left-sidebar li:hover .browser-non-ie .download-mobile-app-icon,.browser-non-ie .work-docs-icon-download-mobile-d0d2d3-16x16,.browser-non-ie .work-docs-icon-download-mobile-ffffff-16x16,.browser-non-ie .work-docs-icon-download-sync-client-0e72a3-24x24,.browser-non-ie .work-docs-icon-download-sync-client-0e72a3-16x16,.browser-non-ie .work-docs-icon-download-sync-client-8ea9c9-24x24,.browser-non-ie .work-docs-icon-download-sync-client-8ea9c9-16x16,.browser-non-ie .work-docs-icon-download-sync-client-212f3e-24x24,.browser-non-ie .work-docs-icon-download-sync-client-212f3e-16x16,.browser-non-ie .work-docs-icon-download-sync-client-808184-24x24,.browser-non-ie #left-sidebar .download-sync-app-icon,#left-sidebar .browser-non-ie .download-sync-app-icon,.browser-non-ie .work-docs-icon-download-sync-client-808184-16x16,.browser-non-ie .work-docs-icon-download-sync-client-d0d2d3-24x24,.browser-non-ie .work-docs-icon-download-sync-client-ffffff-24x24,.browser-non-ie #left-sidebar .active .download-sync-app-icon,#left-sidebar .active .browser-non-ie .download-sync-app-icon,.browser-non-ie #left-sidebar li:hover .download-sync-app-icon,#left-sidebar li:hover .browser-non-ie .download-sync-app-icon,.browser-non-ie .work-docs-icon-download-sync-client-d0d2d3-16x16,.browser-non-ie .work-docs-icon-download-sync-client-ffffff-16x16,.browser-non-ie .work-docs-icon-admin-0e72a3-24x24,.browser-non-ie .work-docs-icon-admin-0e72a3-16x16,.browser-non-ie .work-docs-icon-admin-8ea9c9-24x24,.browser-non-ie .work-docs-icon-admin-8ea9c9-16x16,.browser-non-ie .work-docs-icon-admin-212f3e-24x24,.browser-non-ie .work-docs-icon-admin-212f3e-16x16,.browser-non-ie .work-docs-icon-admin-808184-24x24,.browser-non-ie #left-sidebar .administrator-icon,#left-sidebar .browser-non-ie .administrator-icon,.browser-non-ie .left-sidebar-minimized .ln-admin .sprite-icon,.left-sidebar-minimized .ln-admin .browser-non-ie .sprite-icon,.browser-non-ie .work-docs-icon-admin-808184-16x16,.browser-non-ie .work-docs-icon-admin-d0d2d3-24x24,.browser-non-ie .work-docs-icon-admin-ffffff-24x24,.browser-non-ie #left-sidebar .active .administrator-icon,#left-sidebar .active .browser-non-ie .administrator-icon,.browser-non-ie #left-sidebar li:hover .administrator-icon,#left-sidebar li:hover .browser-non-ie .administrator-icon,.browser-non-ie .left-sidebar-minimized .ln-admin:hover .sprite-icon,.left-sidebar-minimized .ln-admin:hover .browser-non-ie .sprite-icon,.browser-non-ie .left-sidebar-minimized .ln-admin.active .sprite-icon,.left-sidebar-minimized .ln-admin.active .browser-non-ie .sprite-icon,.browser-non-ie .work-docs-icon-admin-d0d2d3-16x16,.browser-non-ie .work-docs-icon-admin-ffffff-16x16,.browser-non-ie .work-docs-icon-check-inactive-0e72a3-24x24,.browser-non-ie input[type=checkbox].wd-blue-checkbox[disabled]+label.wd-blue-checkbox-label,.browser-non-ie .work-docs-icon-check-inactive-0e72a3-16x16,.browser-non-ie .work-docs-icon-check-inactive-8ea9c9-24x24,.browser-non-ie .work-docs-icon-check-inactive-8ea9c9-16x16,.browser-non-ie .work-docs-icon-check-inactive-212f3e-24x24,.browser-non-ie .work-docs-icon-check-inactive-212f3e-16x16,.browser-non-ie .work-docs-icon-check-inactive-808184-24x24,.browser-non-ie .work-docs-icon-check-inactive-808184-16x16,.browser-non-ie .work-docs-icon-check-inactive-d0d2d3-24x24,.browser-non-ie .work-docs-icon-check-inactive-d0d2d3-16x16,.browser-non-ie .work-docs-icon-check-inactive-ffffff-24x24,.browser-non-ie .work-docs-icon-check-inactive-ffffff-16x16,.browser-non-ie .work-docs-icon-radio-inactive-0e72a3-24x24,.browser-non-ie input[type=radio].wd-blue-radio[disabled]+label.wd-blue-radio-label,.browser-non-ie .work-docs-icon-radio-inactive-0e72a3-16x16,.browser-non-ie .work-docs-icon-radio-inactive-8ea9c9-24x24,.browser-non-ie .work-docs-icon-radio-inactive-8ea9c9-16x16,.browser-non-ie .work-docs-icon-radio-inactive-212f3e-24x24,.browser-non-ie .work-docs-icon-radio-inactive-212f3e-16x16,.browser-non-ie .work-docs-icon-radio-inactive-808184-24x24,.browser-non-ie .work-docs-icon-radio-inactive-808184-16x16,.browser-non-ie .work-docs-icon-radio-inactive-d0d2d3-24x24,.browser-non-ie .work-docs-icon-radio-inactive-d0d2d3-16x16,.browser-non-ie .work-docs-icon-radio-inactive-ffffff-24x24,.browser-non-ie .work-docs-icon-radio-inactive-ffffff-16x16,.browser-non-ie .work-docs-icon-remove-from-share-0e72a3-24x24,.browser-non-ie .work-docs-icon-remove-from-share-0e72a3-16x16,.browser-non-ie .work-docs-icon-edit-file-0e72a3-24x24,.browser-non-ie .work-docs-icon-edit-file-0e72a3-16x16,.browser-non-ie .work-docs-icon-edit-file-8ea9c9-24x24,.browser-non-ie .work-docs-icon-edit-file-8ea9c9-16x16,.browser-non-ie .work-docs-icon-edit-file-212f3e-24x24,.browser-non-ie .work-docs-icon-edit-file-212f3e-16x16,.browser-non-ie .work-docs-icon-edit-file-808184-24x24,.browser-non-ie .work-docs-icon-edit-file-808184-16x16,.browser-non-ie .work-docs-icon-edit-file-d0d2d3-24x24,.browser-non-ie .work-docs-icon-edit-file-d0d2d3-16x16,.browser-non-ie .work-docs-icon-edit-file-ffffff-24x24,.browser-non-ie .work-docs-icon-edit-file-ffffff-16x16,.browser-non-ie .action-icon-edit,.browser-non-ie .work-docs-icon-broken-link-0e72a3-24x24,.browser-non-ie .work-docs-icon-broken-link-0e72a3-16x16,.browser-non-ie .work-docs-icon-remove-from-share-8ea9c9-24x24,.browser-non-ie .work-docs-icon-remove-from-share-8ea9c9-16x16,.browser-non-ie .work-docs-icon-broken-link-8ea9c9-24x24,.browser-non-ie .work-docs-icon-broken-link-8ea9c9-16x16,.browser-non-ie .work-docs-icon-remove-from-share-212f3e-24x24,.browser-non-ie .work-docs-icon-remove-from-share-212f3e-16x16,.browser-non-ie .work-docs-icon-broken-link-212f3e-24x24,.browser-non-ie .work-docs-icon-broken-link-212f3e-16x16,.browser-non-ie .work-docs-icon-remove-from-share-808184-24x24,.browser-non-ie .work-docs-icon-remove-from-share-808184-16x16,.browser-non-ie .work-docs-icon-broken-link-808184-24x24,.browser-non-ie .work-docs-icon-broken-link-808184-16x16,.browser-non-ie .work-docs-icon-remove-from-share-d0d2d3-24x24,.browser-non-ie .work-docs-icon-remove-from-share-d0d2d3-16x16,.browser-non-ie .work-docs-icon-remove-from-share-ffffff-24x24,.browser-non-ie .work-docs-icon-remove-from-share-ffffff-16x16,.browser-non-ie .action-icon-remove-me-from-share,.browser-non-ie .work-docs-icon-broken-link-d0d2d3-24x24,.browser-non-ie .work-docs-icon-broken-link-d0d2d3-16x16,.browser-non-ie .work-docs-icon-broken-link-ffffff-24x24,.browser-non-ie .work-docs-icon-broken-link-ffffff-16x16,.browser-non-ie .work-docs-icon-no-preview-0e72a3-24x24,.browser-non-ie .work-docs-icon-no-preview-0e72a3-16x16,.browser-non-ie .work-docs-icon-session-expired-0e72a3-24x24,.browser-non-ie .work-docs-icon-session-expired-0e72a3-16x16,.browser-non-ie .work-docs-icon-no-preview-8ea9c9-24x24,.browser-non-ie .work-docs-icon-no-preview-8ea9c9-16x16,.browser-non-ie .work-docs-icon-session-expired-8ea9c9-24x24,.browser-non-ie .work-docs-icon-session-expired-8ea9c9-16x16,.browser-non-ie .work-docs-icon-no-preview-212f3e-24x24,.browser-non-ie .work-docs-icon-no-preview-212f3e-16x16,.browser-non-ie .work-docs-icon-session-expired-212f3e-24x24,.browser-non-ie .work-docs-icon-session-expired-212f3e-16x16,.browser-non-ie .work-docs-icon-no-preview-808184-24x24,.browser-non-ie .work-docs-icon-no-preview-808184-16x16,.browser-non-ie .work-docs-icon-session-expired-808184-24x24,.browser-non-ie .work-docs-icon-session-expired-808184-16x16,.browser-non-ie .work-docs-icon-no-preview-d0d2d3-24x24,.browser-non-ie .work-docs-icon-no-preview-d0d2d3-16x16,.browser-non-ie .work-docs-icon-no-preview-ffffff-24x24,.browser-non-ie .work-docs-icon-no-preview-ffffff-16x16,.browser-non-ie .work-docs-icon-session-expired-d0d2d3-24x24,.browser-non-ie .work-docs-icon-session-expired-d0d2d3-16x16,.browser-non-ie .work-docs-icon-session-expired-ffffff-24x24,.browser-non-ie .work-docs-icon-session-expired-ffffff-16x16,.browser-non-ie .work-docs-icon-leave-full-screen-0e72a3-24x24,.browser-non-ie .work-docs-icon-leave-full-screen-0e72a3-16x16,.browser-non-ie .work-docs-icon-leave-full-screen-8ea9c9-24x24,.browser-non-ie .work-docs-icon-leave-full-screen-8ea9c9-16x16,.browser-non-ie .work-docs-icon-leave-full-screen-212f3e-24x24,.browser-non-ie .work-docs-icon-leave-full-screen-212f3e-16x16,.browser-non-ie .work-docs-icon-leave-full-screen-808184-24x24,.browser-non-ie .work-docs-icon-leave-full-screen-808184-16x16,.browser-non-ie .work-docs-icon-leave-full-screen-d0d2d3-24x24,.browser-non-ie .work-docs-icon-leave-full-screen-ffffff-24x24,.browser-non-ie .work-docs-icon-leave-full-screen-d0d2d3-16x16,.browser-non-ie .work-docs-icon-leave-full-screen-ffffff-16x16,.browser-non-ie .work-docs-icon-full-screen-0e72a3-24x24,.browser-non-ie .work-docs-icon-full-screen-0e72a3-16x16,.browser-non-ie .work-docs-icon-full-screen-8ea9c9-24x24,.browser-non-ie .work-docs-icon-full-screen-8ea9c9-16x16,.browser-non-ie .work-docs-icon-full-screen-212f3e-24x24,.browser-non-ie .work-docs-icon-full-screen-212f3e-16x16,.browser-non-ie .work-docs-icon-full-screen-808184-24x24,.browser-non-ie .work-docs-icon-full-screen-808184-16x16,.browser-non-ie .work-docs-icon-full-screen-d0d2d3-24x24,.browser-non-ie .work-docs-icon-full-screen-ffffff-24x24,.browser-non-ie .work-docs-icon-full-screen-d0d2d3-16x16,.browser-non-ie .work-docs-icon-full-screen-ffffff-16x16,.browser-non-ie .work-docs-icon-pdf-bf1e0f-24x24,.browser-non-ie .work-docs-icon-pdf-bf1e0f-16x16,.browser-non-ie .work-docs-icon-powerpoint-dd5c27-24x24,.browser-non-ie .work-docs-icon-powerpoint-dd5c27-16x16,.browser-non-ie .work-docs-icon-excel-0e7d4f-24x24,.browser-non-ie .work-docs-icon-excel-0e7d4f-16x16,.browser-non-ie .work-docs-icon-word-276887-24x24,.browser-non-ie .work-docs-icon-word-276887-16x16,.browser-non-ie .work-docs-icon-add-person-0e72a3-24x24,.browser-non-ie .work-docs-icon-add-person-0e72a3-16x16,.browser-non-ie .work-docs-icon-achieve-0e72a3-24x24,.browser-non-ie .work-docs-icon-achieve-0e72a3-16x16,.browser-non-ie .work-docs-icon-pdf-0e72a3-24x24,.browser-non-ie .work-docs-icon-pdf-0e72a3-16x16,.browser-non-ie .work-docs-icon-powerpoint-0e72a3-24x24,.browser-non-ie .work-docs-icon-powerpoint-0e72a3-16x16,.browser-non-ie .work-docs-icon-excel-0e72a3-24x24,.browser-non-ie .work-docs-icon-excel-0e72a3-263x16,.browser-non-ie .work-docs-icon-word-0e72a3-24x24,.browser-non-ie .work-docs-icon-word-0e72a3-16x16,.browser-non-ie .work-docs-icon-default-0e72a3-24x24,.browser-non-ie .work-docs-icon-default-0e72a3-16x16,.browser-non-ie .work-docs-icon-close-alternate-0e72a3-24x24,.browser-non-ie .work-docs-icon-close-alternate-0e72a3-16x16,.browser-non-ie .work-docs-icon-calendar-0e72a3-24x24,.browser-non-ie .work-docs-icon-calendar-0e72a3-16x16,.browser-non-ie .work-docs-icon-link-alternate-0e72a3-24x24,.browser-non-ie .work-docs-icon-link-alternate-0e72a3-16x16,.browser-non-ie .work-docs-icon-check-press-0e72a3-24x24,.browser-non-ie input[type=checkbox].wd-blue-checkbox:active+label.wd-blue-checkbox-label,.browser-non-ie .work-docs-icon-check-press-0e72a3-16x16,.browser-non-ie .work-docs-icon-check-off-0e72a3-24x24,.browser-non-ie input[type=checkbox].wd-blue-checkbox+label.wd-blue-checkbox-label,.browser-non-ie .work-docs-icon-check-off-0e72a3-16x16,.browser-non-ie .work-docs-icon-radio-selected-0e72a3-24x24,.browser-non-ie input[type=radio].wd-blue-radio:checked+label.wd-blue-radio-label,.browser-non-ie .work-docs-icon-radio-selected-0e72a3-16x16,.browser-non-ie .work-docs-icon-radio-press-0e72a3-24x24,.browser-non-ie input[type=radio].wd-blue-radio:active+label.wd-blue-radio-label,.browser-non-ie .work-docs-icon-radio-press-0e72a3-16x16,.browser-non-ie .work-docs-icon-radio-off-0e72a3-24x24,.browser-non-ie .wd-blue-radio-label,.browser-non-ie .work-docs-icon-radio-off-0e72a3-16x16,.browser-non-ie .work-docs-icon-refresh-0e72a3-24x24,.browser-non-ie .work-docs-icon-refresh-0e72a3-16x16,.browser-non-ie .file-browser-title-bar .browser-restore-icon,.file-browser-title-bar .browser-non-ie .browser-restore-icon,.browser-non-ie .work-docs-icon-progress-0e72a3-24x24,.browser-non-ie .work-docs-icon-progress-0e72a3-16x16,.browser-non-ie .work-docs-icon-reply-0e72a3-24x24,.browser-non-ie .work-docs-icon-reply-0e72a3-16x16,.browser-non-ie .work-docs-icon-people-0e72a3-24x24,.browser-non-ie .work-docs-icon-people-0e72a3-16x16,.browser-non-ie .work-docs-icon-add-person-8ea9c9-24x24,.browser-non-ie .work-docs-icon-add-person-8ea9c9-16x16,.browser-non-ie .work-docs-icon-achieve-8ea9c9-24x24,.browser-non-ie .work-docs-icon-achieve-8ea9c9-16x16,.browser-non-ie .work-docs-icon-pdf-8ea9c9-24x24,.browser-non-ie .work-docs-icon-pdf-8ea9c9-16x16,.browser-non-ie .work-docs-icon-powerpoint-8ea9c9-24x24,.browser-non-ie .work-docs-icon-powerpoint-8ea9c9-16x16,.browser-non-ie .work-docs-icon-excel-8ea9c9-24x24,.browser-non-ie .work-docs-icon-excel-8ea9c9-138x16,.browser-non-ie .work-docs-icon-word-8ea9c9-24x24,.browser-non-ie .work-docs-icon-word-8ea9c9-16x16,.browser-non-ie .work-docs-icon-default-8ea9c9-24x24,.browser-non-ie .work-docs-icon-default-8ea9c9-16x16,.browser-non-ie .work-docs-icon-close-alternate-8ea9c9-24x24,.browser-non-ie .work-docs-icon-close-alternate-8ea9c9-16x16,.browser-non-ie .work-docs-icon-calendar-8ea9c9-24x24,.browser-non-ie .work-docs-icon-calendar-8ea9c9-16x16,.browser-non-ie .work-docs-icon-link-alternate-8ea9c9-24x24,.browser-non-ie .work-docs-icon-link-alternate-8ea9c9-16x16,.browser-non-ie .work-docs-icon-check-press-8ea9c9-24x24,.browser-non-ie .work-docs-icon-check-press-8ea9c9-16x16,.browser-non-ie .work-docs-icon-check-off-8ea9c9-24x24,.browser-non-ie .work-docs-icon-check-off-8ea9c9-16x16,.browser-non-ie .work-docs-icon-radio-selected-8ea9c9-24x24,.browser-non-ie input[type=radio].wd-blue-radio:checked[disabled]+label.wd-blue-radio-label,.browser-non-ie .work-docs-icon-radio-selected-8ea9c9-16x16,.browser-non-ie .work-docs-icon-radio-press-8ea9c9-24x24,.browser-non-ie .work-docs-icon-radio-press-8ea9c9-16x16,.browser-non-ie .work-docs-icon-radio-off-8ea9c9-24x24,.browser-non-ie .work-docs-icon-radio-off-8ea9c9-16x16,.browser-non-ie .work-docs-icon-refresh-8ea9c9-24x24,.browser-non-ie .work-docs-icon-refresh-8ea9c9-16x16,.browser-non-ie .work-docs-icon-progress-8ea9c9-24x24,.browser-non-ie .work-docs-icon-progress-8ea9c9-16x16,.browser-non-ie .work-docs-icon-reply-8ea9c9-24x24,.browser-non-ie .work-docs-icon-reply-8ea9c9-16x16,.browser-non-ie .work-docs-icon-people-8ea9c9-24x24,.browser-non-ie .work-docs-icon-people-8ea9c9-16x16,.browser-non-ie .work-docs-icon-add-person-212f3e-24x24,.browser-non-ie .work-docs-icon-add-person-212f3e-16x16,.browser-non-ie .work-docs-icon-achieve-212f3e-24x24,.browser-non-ie .work-docs-icon-achieve-212f3e-16x16,.browser-non-ie .work-docs-icon-pdf-212f3e-24x24,.browser-non-ie .work-docs-icon-pdf-212f3e-16x16,.browser-non-ie .work-docs-icon-powerpoint-212f3e-24x24,.browser-non-ie .work-docs-icon-powerpoint-212f3e-16x16,.browser-non-ie .work-docs-icon-excel-212f3e-24x24,.browser-non-ie .work-docs-icon-excel-212f3e-138x16,.browser-non-ie .work-docs-icon-word-212f3e-24x24,.browser-non-ie .work-docs-icon-word-212f3e-16x16,.browser-non-ie .work-docs-icon-default-212f3e-24x24,.browser-non-ie .work-docs-icon-default-212f3e-16x16,.browser-non-ie .work-docs-icon-close-alternate-212f3e-24x24,.browser-non-ie .work-docs-icon-close-alternate-212f3e-16x16,.browser-non-ie .work-docs-icon-calendar-212f3e-24x24,.browser-non-ie .work-docs-icon-calendar-212f3e-16x16,.browser-non-ie .work-docs-icon-link-alternate-212f3e-24x24,.browser-non-ie .work-docs-icon-link-alternate-212f3e-16x16,.browser-non-ie .work-docs-icon-check-press-212f3e-24x24,.browser-non-ie .work-docs-icon-check-press-212f3e-16x16,.browser-non-ie .work-docs-icon-check-off-212f3e-24x24,.browser-non-ie .work-docs-icon-check-off-212f3e-16x16,.browser-non-ie .work-docs-icon-radio-selected-212f3e-24x24,.browser-non-ie .work-docs-icon-radio-selected-212f3e-16x16,.browser-non-ie .work-docs-icon-radio-press-212f3e-24x24,.browser-non-ie .work-docs-icon-radio-press-212f3e-16x16,.browser-non-ie .work-docs-icon-radio-off-212f3e-24x24,.browser-non-ie .work-docs-icon-radio-off-212f3e-16x16,.browser-non-ie .work-docs-icon-refresh-212f3e-24x24,.browser-non-ie .work-docs-icon-refresh-212f3e-16x16,.browser-non-ie .work-docs-icon-progress-212f3e-24x24,.browser-non-ie .work-docs-icon-progress-212f3e-16x16,.browser-non-ie .work-docs-icon-reply-212f3e-24x24,.browser-non-ie .work-docs-icon-reply-212f3e-16x16,.browser-non-ie .work-docs-icon-people-212f3e-24x24,.browser-non-ie .work-docs-icon-people-212f3e-16x16,.browser-non-ie .work-docs-icon-add-person-808184-24x24,.browser-non-ie .work-docs-icon-add-person-d0d2d3-24x24,.browser-non-ie .work-docs-icon-add-person-ffffff-24x24,.browser-non-ie .work-docs-icon-add-person-808184-16x16,.browser-non-ie .work-docs-icon-add-person-d0d2d3-16x16,.browser-non-ie .work-docs-icon-add-person-ffffff-16x16,.browser-non-ie .work-docs-icon-achieve-808184-24x24,.browser-non-ie .work-docs-icon-achieve-d0d2d3-24x24,.browser-non-ie .work-docs-icon-achieve-ffffff-24x24,.browser-non-ie .work-docs-icon-achieve-808184-16x16,.browser-non-ie .work-docs-icon-achieve-d0d2d3-16x16,.browser-non-ie .work-docs-icon-achieve-ffffff-16x16,.browser-non-ie .work-docs-icon-pdf-787982-24x25,.browser-non-ie .work-docs-icon-pdf-d0d2d3-24x24,.browser-non-ie .work-docs-icon-pdf-ffffff-24x24,.browser-non-ie .work-docs-icon-pdf-d0d2d3-16x16,.browser-non-ie .work-docs-icon-pdf-ffffff-16x16,.browser-non-ie .work-docs-icon-powerpoint-808184-24x24,.browser-non-ie .work-docs-icon-powerpoint-d0d2d3-24x24,.browser-non-ie .work-docs-icon-powerpoint-ffffff-24x24,.browser-non-ie .work-docs-icon-powerpoint-808184-16x16,.browser-non-ie .work-docs-icon-powerpoint-d0d2d3-16x16,.browser-non-ie .work-docs-icon-powerpoint-ffffff-16x16,.browser-non-ie .work-docs-icon-excel-808184-261x24,.browser-non-ie .work-docs-icon-excel-d0d2d3-143x24,.browser-non-ie .work-docs-icon-excel-ffffff-24x24,.browser-non-ie .work-docs-icon-excel-808184-16x16,.browser-non-ie .work-docs-icon-excel-d0d2d3-16x16,.browser-non-ie .work-docs-icon-excel-ffffff-16x16,.browser-non-ie .work-docs-icon-word-808184-24x24,.browser-non-ie .work-docs-icon-word-d0d2d3-24x24,.browser-non-ie .work-docs-icon-word-ffffff-24x24,.browser-non-ie .work-docs-icon-word-808184-16x16,.browser-non-ie .work-docs-icon-word-d0d2d3-16x16,.browser-non-ie .work-docs-icon-word-ffffff-16x16,.browser-non-ie .work-docs-icon-image-0e72a3-24x24,.browser-non-ie .work-docs-icon-image-0e72a3-16x16,.browser-non-ie .work-docs-icon-image-8ea9c9-24x24,.browser-non-ie .work-docs-icon-image-8ea9c9-16x16,.browser-non-ie .work-docs-icon-image-212f3e-24x24,.browser-non-ie .work-docs-icon-image-212f3e-16x16,.browser-non-ie .work-docs-icon-image-808184-24x24,.browser-non-ie .work-docs-icon-image-808184-16x16,.browser-non-ie .work-docs-icon-image-d0d2d3-24x24,.browser-non-ie .work-docs-icon-image-ffffff-24x24,.browser-non-ie .work-docs-icon-image-d0d2d3-16x16,.browser-non-ie .work-docs-icon-image-ffffff-16x16,.browser-non-ie .work-docs-icon-default-808184-24x24,.browser-non-ie .work-docs-icon-default-d0d2d3-24x24,.browser-non-ie .work-docs-icon-default-ffffff-24x24,.browser-non-ie .work-docs-icon-default-808184-16x16,.browser-non-ie .work-docs-icon-default-d0d2d3-16x16,.browser-non-ie .work-docs-icon-default-ffffff-16x16,.browser-non-ie .work-docs-icon-close-alternate-808184-24x24,.browser-non-ie .work-docs-icon-close-alternate-d0d2d3-24x24,.browser-non-ie .work-docs-icon-close-alternate-ffffff-24x24,.browser-non-ie .work-docs-icon-close-alternate-808184-16x16,.browser-non-ie .work-docs-icon-close-alternate-d0d2d3-16x16,.browser-non-ie .work-docs-icon-close-alternate-ffffff-16x16,.browser-non-ie .work-docs-icon-calendar-808184-24x24,.browser-non-ie .work-docs-icon-calendar-d0d2d3-24x24,.browser-non-ie .work-docs-icon-calendar-ffffff-24x24,.browser-non-ie .work-docs-icon-calendar-808184-16x16,.browser-non-ie .work-docs-icon-calendar-d0d2d3-16x16,.browser-non-ie .work-docs-icon-calendar-ffffff-16x16,.browser-non-ie .work-docs-icon-link-alternate-808184-24x24,.browser-non-ie .work-docs-icon-link-alternate-d0d2d3-24x24,.browser-non-ie .work-docs-icon-link-alternate-ffffff-24x24,.browser-non-ie .work-docs-icon-link-alternate-808184-16x16,.browser-non-ie .work-docs-icon-link-alternate-d0d2d3-16x16,.browser-non-ie .work-docs-icon-link-alternate-ffffff-16x16,.browser-non-ie .work-docs-icon-check-selected-0e72a3-24x24,.browser-non-ie input[type=checkbox].wd-blue-checkbox:checked+label.wd-blue-checkbox-label,.browser-non-ie .work-docs-icon-check-selected-0e72a3-16x16,.browser-non-ie .work-docs-icon-check-selected-8ea9c9-24x24,.browser-non-ie input[type=checkbox].wd-blue-checkbox:checked[disabled]+label.wd-blue-checkbox-label,.browser-non-ie .work-docs-icon-check-selected-8ea9c9-16x16,.browser-non-ie .work-docs-icon-check-selected-212f3e-24x24,.browser-non-ie .work-docs-icon-check-selected-212f3e-16x16,.browser-non-ie .work-docs-icon-check-selected-808184-24x24,.browser-non-ie .work-docs-icon-check-selected-808184-16x16,.browser-non-ie .work-docs-icon-check-selected-d0d2d3-24x24,.browser-non-ie .work-docs-icon-check-selected-ffffff-24x24,.browser-non-ie .work-docs-icon-check-selected-d0d2d3-16x16,.browser-non-ie .work-docs-icon-check-selected-ffffff-16x16,.browser-non-ie .work-docs-icon-check-press-808184-24x24,.browser-non-ie .work-docs-icon-check-press-d0d2d3-24x24,.browser-non-ie .work-docs-icon-check-press-ffffff-24x24,.browser-non-ie .work-docs-icon-check-press-808184-16x16,.browser-non-ie .work-docs-icon-check-press-d0d2d3-16x16,.browser-non-ie .work-docs-icon-check-press-ffffff-16x16,.browser-non-ie .work-docs-icon-check-off-808184-24x24,.browser-non-ie .work-docs-icon-check-off-d0d2d3-24x24,.browser-non-ie .work-docs-icon-check-off-ffffff-24x24,.browser-non-ie .work-docs-icon-check-off-808184-16x16,.browser-non-ie .work-docs-icon-check-off-d0d2d3-16x16,.browser-non-ie .work-docs-icon-check-off-ffffff-16x16,.browser-non-ie .work-docs-icon-radio-selected-808184-24x24,.browser-non-ie .work-docs-icon-radio-selected-d0d2d3-24x24,.browser-non-ie .work-docs-icon-radio-selected-ffffff-24x24,.browser-non-ie .work-docs-icon-radio-selected-808184-16x16,.browser-non-ie .work-docs-icon-radio-selected-d0d2d3-16x16,.browser-non-ie .work-docs-icon-radio-selected-ffffff-16x16,.browser-non-ie .work-docs-icon-radio-press-808184-24x24,.browser-non-ie .work-docs-icon-radio-press-d0d2d3-24x24,.browser-non-ie .work-docs-icon-radio-press-ffffff-24x24,.browser-non-ie .work-docs-icon-radio-press-808184-16x16,.browser-non-ie .work-docs-icon-radio-press-d0d2d3-16x16,.browser-non-ie .work-docs-icon-radio-press-ffffff-16x16,.browser-non-ie .work-docs-icon-radio-off-808184-24x24,.browser-non-ie .work-docs-icon-radio-off-d0d2d3-24x24,.browser-non-ie .work-docs-icon-radio-off-ffffff-24x24,.browser-non-ie .work-docs-icon-radio-off-808184-16x16,.browser-non-ie .work-docs-icon-radio-off-d0d2d3-16x16,.browser-non-ie .work-docs-icon-radio-off-ffffff-16x16,.browser-non-ie .work-docs-icon-refresh-alternate-0e72a3-24x24,.browser-non-ie .work-docs-icon-refresh-alternate-8ea9c9-24x24,.browser-non-ie .work-docs-icon-refresh-alternate-212f3e-24x24,.browser-non-ie .work-docs-icon-refresh-alternate-808184-24x24,.browser-non-ie .work-docs-icon-refresh-alternate-d0d2d3-24x24,.browser-non-ie .work-docs-icon-refresh-alternate-ffffff-24x24,.browser-non-ie .work-docs-icon-refresh-alternate-0e72a3-16x16,.browser-non-ie .work-docs-icon-refresh-alternate-8ea9c9-16x16,.browser-non-ie .work-docs-icon-refresh-alternate-212f3e-16x16,.browser-non-ie .work-docs-icon-refresh-alternate-808184-16x16,.browser-non-ie .work-docs-icon-refresh-alternate-d0d2d3-16x16,.browser-non-ie .work-docs-icon-refresh-alternate-ffffff-16x16,.browser-non-ie .work-docs-icon-refresh-808184-24x24,.browser-non-ie .work-docs-icon-refresh-d0d2d3-24x24,.browser-non-ie .work-docs-icon-refresh-ffffff-24x24,.browser-non-ie .work-docs-icon-refresh-808184-16x16,.browser-non-ie .work-docs-icon-refresh-d0d2d3-16x16,.browser-non-ie .work-docs-icon-refresh-ffffff-16x16,.browser-non-ie .work-docs-icon-progress-808184-24x24,.browser-non-ie .work-docs-icon-progress-d0d2d3-24x24,.browser-non-ie .work-docs-icon-progress-ffffff-24x24,.browser-non-ie .work-docs-icon-progress-808184-16x16,.browser-non-ie .work-docs-icon-progress-d0d2d3-16x16,.browser-non-ie .work-docs-icon-progress-ffffff-16x16,.browser-non-ie .work-docs-icon-reply-808184-24x24,.browser-non-ie .work-docs-icon-reply-d0d2d3-24x24,.browser-non-ie .work-docs-icon-reply-ffffff-24x24,.browser-non-ie .work-docs-icon-reply-808184-16x16,.browser-non-ie .work-docs-icon-reply-d0d2d3-16x16,.browser-non-ie .work-docs-icon-reply-ffffff-16x16,.browser-non-ie .work-docs-icon-people-808184-24x24,.browser-non-ie .work-docs-icon-people-d0d2d3-24x24,.browser-non-ie .work-docs-icon-people-ffffff-24x24,.browser-non-ie .work-docs-icon-people-808184-16x16,.browser-non-ie .work-docs-icon-people-d0d2d3-16x16,.browser-non-ie .work-docs-icon-people-ffffff-16x16,.browser-non-ie .work-docs-icon-restore-0e72a3-24x24,.browser-non-ie .work-docs-icon-restore-8ea9c9-24x24,.browser-non-ie .work-docs-icon-restore-212f3e-24x24,.browser-non-ie .work-docs-icon-restore-808184-24x24,.browser-non-ie .work-docs-icon-restore-d0d2d3-24x24,.browser-non-ie .work-docs-icon-restore-ffffff-24x24,.browser-non-ie .work-docs-icon-restore-0e72a3-16x16,.browser-non-ie .work-docs-icon-restore-8ea9c9-16x16,.browser-non-ie .work-docs-icon-restore-212f3e-16x16,.browser-non-ie .work-docs-icon-restore-808184-16x16,.browser-non-ie .work-docs-icon-restore-d0d2d3-16x16,.browser-non-ie .work-docs-icon-restore-ffffff-16x16,.browser-non-ie .work-docs-icon-arrows-right-0e72a3-24x24,.browser-non-ie .work-docs-icon-arrows-right-8ea9c9-24x24,.browser-non-ie .work-docs-icon-arrows-right-212f3e-24x24,.browser-non-ie .work-docs-icon-arrows-right-808184-24x24,.browser-non-ie .work-docs-icon-arrows-right-d0d2d3-24x24,.browser-non-ie .work-docs-icon-arrows-right-ffffff-24x24,.browser-non-ie .expanded-right .side-bar-closepanel-icon,.expanded-right .browser-non-ie .side-bar-closepanel-icon,.browser-non-ie .work-docs-icon-arrows-right-0e72a3-16x16,.browser-non-ie .work-docs-icon-arrows-right-8ea9c9-16x16,.browser-non-ie .work-docs-icon-arrows-right-212f3e-16x16,.browser-non-ie .work-docs-icon-arrows-right-808184-16x16,.browser-non-ie .work-docs-icon-arrows-right-d0d2d3-16x16,.browser-non-ie .work-docs-icon-arrows-right-ffffff-16x16,.browser-non-ie .work-docs-icon-arrows-left-0e72a3-24x24,.browser-non-ie .work-docs-icon-arrows-left-8ea9c9-24x24,.browser-non-ie .work-docs-icon-arrows-left-212f3e-24x24,.browser-non-ie .work-docs-icon-arrows-left-808184-24x24,.browser-non-ie .work-docs-icon-arrows-left-d0d2d3-24x24,.browser-non-ie .work-docs-icon-arrows-left-ffffff-24x24,.browser-non-ie .work-docs-icon-arrows-left-0e72a3-16x16,.browser-non-ie .work-docs-icon-arrows-left-8ea9c9-16x16,.browser-non-ie .work-docs-icon-arrows-left-212f3e-16x16,.browser-non-ie .work-docs-icon-arrows-left-808184-16x16,.browser-non-ie .work-docs-icon-arrows-left-d0d2d3-16x16,.browser-non-ie .work-docs-icon-arrows-left-ffffff-16x16,.browser-non-ie .work-docs-icon-ellipsis-0e72a3-24x24,.browser-non-ie .work-docs-icon-ellipsis-8ea9c9-24x24,.browser-non-ie .work-docs-icon-ellipsis-212f3e-24x24,.browser-non-ie .work-docs-icon-ellipsis-808184-24x24,.browser-non-ie .work-docs-icon-ellipsis-d0d2d3-24x24,.browser-non-ie .work-docs-icon-ellipsis-ffffff-24x24,.browser-non-ie .work-docs-icon-ellipsis-0e72a3-16x16,.browser-non-ie .work-docs-icon-ellipsis-8ea9c9-16x16,.browser-non-ie .work-docs-icon-ellipsis-212f3e-16x16,.browser-non-ie .work-docs-icon-ellipsis-808184-16x16,.browser-non-ie .work-docs-icon-ellipsis-d0d2d3-16x16,.browser-non-ie .work-docs-icon-ellipsis-ffffff-16x16,.browser-non-ie .work-docs-icon-minus-0e72a3-24x24,.browser-non-ie .work-docs-icon-minus-8ea9c9-24x24,.browser-non-ie .work-docs-icon-minus-212f3e-24x24,.browser-non-ie .work-docs-icon-minus-808184-24x24,.browser-non-ie .work-docs-icon-minus-d0d2d3-24x24,.browser-non-ie .work-docs-icon-minus-ffffff-24x24,.browser-non-ie .work-docs-icon-minus-0e72a3-16x16,.browser-non-ie .work-docs-icon-minus-8ea9c9-16x16,.browser-non-ie .work-docs-icon-minus-212f3e-16x16,.browser-non-ie .work-docs-icon-minus-808184-16x16,.browser-non-ie .work-docs-icon-minus-d0d2d3-16x16,.browser-non-ie .work-docs-icon-minus-ffffff-16x16,.browser-non-ie .work-docs-icon-plus-0e72a3-24x24,.browser-non-ie .work-docs-icon-plus-8ea9c9-24x24,.browser-non-ie .work-docs-icon-plus-212f3e-24x24,.browser-non-ie .work-docs-icon-plus-808184-24x24,.browser-non-ie .work-docs-icon-plus-d0d2d3-24x24,.browser-non-ie .work-docs-icon-plus-ffffff-24x24,.browser-non-ie .work-docs-icon-plus-0e72a3-16x16,.browser-non-ie .work-docs-icon-plus-8ea9c9-16x16,.browser-non-ie .work-docs-icon-plus-212f3e-16x16,.browser-non-ie .work-docs-icon-plus-808184-16x16,.browser-non-ie .work-docs-icon-plus-d0d2d3-16x16,.browser-non-ie .work-docs-icon-plus-ffffff-16x16,.browser-non-ie .work-docs-icon-notifications-ffffff-16x16,.browser-non-ie .work-docs-icon-notifications-ffffff-24x24,.browser-non-ie .work-docs-icon-notifications-0e72a3-24x24,.browser-non-ie .work-docs-icon-notifications-0e72a3-16x16,.browser-non-ie .work-docs-icon-notifications-8ea9c9-24x24,.browser-non-ie .work-docs-icon-notifications-8ea9c9-16x16,.browser-non-ie .work-docs-icon-notifications-212f3e-24x24,.browser-non-ie .work-docs-icon-notifications-212f3e-16x16,.browser-non-ie .work-docs-icon-notifications-808184-24x24,.browser-non-ie .work-docs-icon-notifications-808184-16x16,.browser-non-ie .work-docs-icon-notifications-d0d2d3-24x24,.browser-non-ie .work-docs-icon-notifications-d0d2d3-16x16,.browser-non-ie .work-docs-icon-zoom-out-0e72a3-24x24,.browser-non-ie .work-docs-icon-zoom-out-0e72a3-16x16,.browser-non-ie .work-docs-icon-zoom-out-8ea9c9-24x24,.browser-non-ie .work-docs-icon-zoom-out-8ea9c9-16x16,.browser-non-ie .work-docs-icon-zoom-out-212f3e-24x24,.browser-non-ie .work-docs-icon-zoom-out-212f3e-16x16,.browser-non-ie .work-docs-icon-zoom-out-808184-24x24,.browser-non-ie .work-docs-icon-zoom-out-808184-16x16,.browser-non-ie .work-docs-icon-zoom-out-d0d2d3-24x24,.browser-non-ie .work-docs-icon-zoom-out-d0d2d3-16x16,.browser-non-ie .work-docs-icon-zoom-out-ffffff-24x24,.browser-non-ie .work-docs-icon-zoom-out-ffffff-16x16,.browser-non-ie .work-docs-icon-zoom-in-0e72a3-24x24,.browser-non-ie .work-docs-icon-zoom-in-0e72a3-16x16,.browser-non-ie .work-docs-icon-zoom-in-8ea9c9-24x24,.browser-non-ie .work-docs-icon-zoom-in-8ea9c9-16x16,.browser-non-ie .work-docs-icon-zoom-in-212f3e-24x24,.browser-non-ie .work-docs-icon-zoom-in-212f3e-16x16,.browser-non-ie .work-docs-icon-zoom-in-808184-24x24,.browser-non-ie .work-docs-icon-zoom-in-808184-16x16,.browser-non-ie .work-docs-icon-zoom-in-d0d2d3-24x24,.browser-non-ie .work-docs-icon-zoom-in-d0d2d3-16x16,.browser-non-ie .work-docs-icon-zoom-in-ffffff-24x24,.browser-non-ie .work-docs-icon-zoom-in-ffffff-16x16,.browser-non-ie .work-docs-icon-page-down-0e72a3-24x24,.browser-non-ie .work-docs-icon-page-down-0e72a3-16x16,.browser-non-ie .work-docs-icon-page-down-8ea9c9-24x24,.browser-non-ie .work-docs-icon-page-down-8ea9c9-16x16,.browser-non-ie .work-docs-icon-page-down-212f3e-24x24,.browser-non-ie .work-docs-icon-page-down-212f3e-16x16,.browser-non-ie .work-docs-icon-page-down-808184-24x24,.browser-non-ie .work-docs-icon-page-down-808184-16x16,.browser-non-ie .work-docs-icon-page-down-d0d2d3-24x24,.browser-non-ie .work-docs-icon-page-down-d0d2d3-16x16,.browser-non-ie .work-docs-icon-page-down-ffffff-24x24,.browser-non-ie .work-docs-icon-page-down-ffffff-16x16,.browser-non-ie .work-docs-icon-page-up-0e72a3-24x24,.browser-non-ie .work-docs-icon-page-up-0e72a3-16x16,.browser-non-ie .work-docs-icon-page-up-8ea9c9-24x24,.browser-non-ie .work-docs-icon-page-up-8ea9c9-16x16,.browser-non-ie .work-docs-icon-page-up-212f3e-24x24,.browser-non-ie .work-docs-icon-page-up-212f3e-16x16,.browser-non-ie .work-docs-icon-page-up-808184-24x24,.browser-non-ie .work-docs-icon-page-up-808184-16x16,.browser-non-ie .work-docs-icon-page-up-d0d2d3-24x24,.browser-non-ie .work-docs-icon-page-up-d0d2d3-16x16,.browser-non-ie .work-docs-icon-page-up-ffffff-24x24,.browser-non-ie .work-docs-icon-page-up-ffffff-16x16,.browser-non-ie .work-docs-icon-carat-right-lg-d0d2d3-24x24,.browser-non-ie .work-docs-icon-carat-right-lg-8ea9c9-24x24,.browser-non-ie .work-docs-icon-carat-right-lg-212f3e-24x24,.browser-non-ie .work-docs-icon-carat-right-lg-0e72a3-24x24,.browser-non-ie .work-docs-icon-carat-right-lg-808184-24x24,.browser-non-ie .work-docs-icon-carat-right-lg-ffffff-24x24,.browser-non-ie .work-docs-icon-carat-right-lg-d0d2d3-16x16,.browser-non-ie .work-docs-icon-carat-right-lg-8ea9c9-16x16,.browser-non-ie .work-docs-icon-carat-right-lg-212f3e-16x16,.browser-non-ie .work-docs-icon-carat-right-lg-0e72a3-16x16,.browser-non-ie .work-docs-icon-carat-right-lg-808184-16x16,.browser-non-ie .work-docs-icon-carat-right-lg-ffffff-16x16,.browser-non-ie .work-docs-icon-carat-up-lg-d0d2d3-24x24,.browser-non-ie .work-docs-icon-carat-up-lg-8ea9c9-24x24,.browser-non-ie .work-docs-icon-carat-up-lg-212f3e-24x24,.browser-non-ie .work-docs-icon-carat-up-lg-0e72a3-24x24,.browser-non-ie .work-docs-icon-carat-up-lg-808184-24x24,.browser-non-ie .work-docs-icon-carat-up-lg-ffffff-24x24,.browser-non-ie .work-docs-icon-carat-up-lg-d0d2d3-16x16,.browser-non-ie .work-docs-icon-carat-up-lg-8ea9c9-16x16,.browser-non-ie .work-docs-icon-carat-up-lg-212f3e-16x16,.browser-non-ie .work-docs-icon-carat-up-lg-0e72a3-16x16,.browser-non-ie .work-docs-icon-carat-up-lg-808184-16x16,.browser-non-ie .work-docs-icon-carat-up-lg-ffffff-16x16,.browser-non-ie .work-docs-icon-carat-down-lg-d0d2d3-24x24,.browser-non-ie .work-docs-icon-carat-down-lg-8ea9c9-24x24,.browser-non-ie .work-docs-icon-carat-down-lg-212f3e-24x24,.browser-non-ie .work-docs-icon-carat-down-lg-0e72a3-24x24,.browser-non-ie .work-docs-icon-carat-down-lg-808184-24x24,.browser-non-ie .work-docs-icon-carat-down-lg-ffffff-24x24,.browser-non-ie .work-docs-icon-carat-down-lg-d0d2d3-16x16,.browser-non-ie .work-docs-icon-carat-down-lg-8ea9c9-16x16,.browser-non-ie .work-docs-icon-carat-down-lg-212f3e-16x16,.browser-non-ie .work-docs-icon-carat-down-lg-0e72a3-16x16,.browser-non-ie .caret,.browser-non-ie .work-docs-icon-carat-down-lg-808184-16x16,.browser-non-ie .work-docs-icon-carat-down-lg-ffffff-16x16,.browser-non-ie .work-docs-icon-carat-left-lg-d0d2d3-24x24,.browser-non-ie .work-docs-icon-carat-left-lg-8ea9c9-24x24,.browser-non-ie .work-docs-icon-carat-left-lg-212f3e-24x24,.browser-non-ie .work-docs-icon-carat-left-lg-0e72a3-24x24,.browser-non-ie .work-docs-icon-carat-left-lg-808184-24x24,.browser-non-ie .work-docs-icon-carat-left-lg-ffffff-24x24,.browser-non-ie .work-docs-icon-carat-left-lg-d0d2d3-16x16,.browser-non-ie .work-docs-icon-carat-left-lg-8ea9c9-16x16,.browser-non-ie .work-docs-icon-carat-left-lg-212f3e-16x16,.browser-non-ie .work-docs-icon-carat-left-lg-0e72a3-16x16,.browser-non-ie .work-docs-icon-carat-left-lg-808184-16x16,.browser-non-ie .work-docs-icon-carat-left-lg-ffffff-16x16,.browser-non-ie .work-docs-icon-unchecked-round-d0d2d3-24x24,.browser-non-ie .work-docs-icon-unchecked-round-8ea9c9-24x24,.browser-non-ie .work-docs-icon-unchecked-round-212f3e-24x24,.browser-non-ie input[type=radio].wd-white-radio+label.wd-white-radio-label,.browser-non-ie .work-docs-icon-unchecked-round-0e72a3-24x24,.browser-non-ie .work-docs-icon-unchecked-round-808184-24x24,.browser-non-ie .work-docs-icon-unchecked-round-ffffff-24x24,.browser-non-ie .work-docs-icon-unchecked-round-d0d2d3-16x16,.browser-non-ie .work-docs-icon-unchecked-round-8ea9c9-16x16,.browser-non-ie .work-docs-icon-unchecked-round-212f3e-16x16,.browser-non-ie .work-docs-icon-unchecked-round-0e72a3-16x16,.browser-non-ie .work-docs-icon-unchecked-round-808184-16x16,.browser-non-ie .work-docs-icon-unchecked-round-ffffff-16x16,.browser-non-ie .work-docs-icon-close-activity-tray-d0d2d3-36x24,.browser-non-ie .work-docs-icon-close-activity-tray-8ea9c9-36x24,.browser-non-ie .work-docs-icon-close-activity-tray-212f3e-36x24,.browser-non-ie .work-docs-icon-close-activity-tray-0e72a3-36x24,.browser-non-ie .work-docs-icon-close-activity-tray-808184-36x24,.browser-non-ie .work-docs-icon-close-activity-tray-ffffff-36x24,.browser-non-ie .work-docs-icon-close-activity-tray-d0d2d3-24x16,.browser-non-ie .work-docs-icon-close-activity-tray-8ea9c9-24x16,.browser-non-ie .work-docs-icon-close-activity-tray-212f3e-24x16,.browser-non-ie .work-docs-icon-close-activity-tray-0e72a3-24x16,.browser-non-ie .work-docs-icon-close-activity-tray-808184-24x16,.browser-non-ie .work-docs-icon-close-activity-tray-ffffff-24x16,.browser-non-ie .work-docs-icon-open-activity-tray-chat-d0d2d3-37x24,.browser-non-ie .work-docs-icon-open-activity-tray-chat-8ea9c9-37x24,.browser-non-ie .work-docs-icon-open-activity-tray-chat-212f3e-37x24,.browser-non-ie .work-docs-icon-open-activity-tray-chat-0e72a3-37x24,.browser-non-ie .work-docs-icon-open-activity-tray-chat-808184-37x24,.browser-non-ie .work-docs-icon-open-activity-tray-chat-ffffff-37x24,.browser-non-ie .work-docs-icon-open-activity-tray-chat-d0d2d3-24x16,.browser-non-ie .work-docs-icon-open-activity-tray-chat-8ea9c9-24x16,.browser-non-ie .work-docs-icon-open-activity-tray-chat-212f3e-24x16,.browser-non-ie .work-docs-icon-open-activity-tray-chat-0e72a3-24x16,.browser-non-ie .work-docs-icon-open-activity-tray-chat-808184-24x16,.browser-non-ie .work-docs-icon-open-activity-tray-chat-ffffff-24x16,.browser-non-ie .work-docs-icon-open-folder-d0d2d3-24x24,.browser-non-ie .work-docs-icon-open-folder-8ea9c9-24x24,.browser-non-ie .work-docs-icon-open-folder-212f3e-24x24,.browser-non-ie .work-docs-icon-open-folder-0e72a3-24x24,.browser-non-ie .work-docs-icon-open-folder-808184-24x24,.browser-non-ie .work-docs-icon-open-folder-ffffff-24x24,.browser-non-ie .work-docs-icon-open-folder-d0d2d3-16x16,.browser-non-ie .work-docs-icon-open-folder-8ea9c9-16x16,.browser-non-ie .work-docs-icon-open-folder-212f3e-16x16,.browser-non-ie .work-docs-icon-open-folder-0e72a3-16x16,.browser-non-ie .work-docs-icon-open-folder-808184-16x16,.browser-non-ie .work-docs-icon-open-folder-ffffff-16x16,.browser-non-ie .action-icon-open,.browser-non-ie .work-docs-icon-carat-right-d0d2d3-24x24,.browser-non-ie .work-docs-icon-carat-right-8ea9c9-24x24,.browser-non-ie .work-docs-icon-carat-right-212f3e-24x24,.browser-non-ie .work-docs-icon-carat-right-0e72a3-24x24,.browser-non-ie .work-docs-icon-carat-right-808184-24x24,.browser-non-ie .work-docs-icon-carat-right-ffffff-24x24,.browser-non-ie .work-docs-icon-carat-right-d0d2d3-16x16,.browser-non-ie .work-docs-icon-carat-right-8ea9c9-16x16,.browser-non-ie .work-docs-icon-carat-right-212f3e-16x16,.browser-non-ie .work-docs-icon-carat-right-0e72a3-16x16,.browser-non-ie .work-docs-icon-carat-right-808184-16x16,.browser-non-ie .work-docs-icon-carat-right-ffffff-16x16,.browser-non-ie .work-docs-icon-carat-up-d0d2d3-24x24,.browser-non-ie .work-docs-icon-carat-up-8ea9c9-24x24,.browser-non-ie .work-docs-icon-carat-up-212f3e-24x24,.browser-non-ie .work-docs-icon-carat-up-0e72a3-24x24,.browser-non-ie .work-docs-icon-carat-up-808184-24x24,.browser-non-ie .work-docs-icon-carat-up-ffffff-24x24,.browser-non-ie .work-docs-icon-carat-up-d0d2d3-16x16,.browser-non-ie .work-docs-icon-carat-up-8ea9c9-16x16,.browser-non-ie .work-docs-icon-carat-up-212f3e-16x16,.browser-non-ie .work-docs-icon-carat-up-0e72a3-16x16,.browser-non-ie .work-docs-icon-carat-up-808184-16x16,.browser-non-ie .work-docs-icon-carat-up-ffffff-16x16,.browser-non-ie .work-docs-icon-carat-down-d0d2d3-24x24,.browser-non-ie .work-docs-icon-carat-down-8ea9c9-24x24,.browser-non-ie .work-docs-icon-carat-down-212f3e-24x24,.browser-non-ie .work-docs-icon-carat-down-0e72a3-24x24,.browser-non-ie #profile-div .profile-dropdown-button .dropdown-icon,#profile-div .profile-dropdown-button .browser-non-ie .dropdown-icon,.browser-non-ie .dropdown-toggle-icon,.browser-non-ie #feedback-filter-menu .filter-dropdown button .dropdown-icon,#feedback-filter-menu .filter-dropdown button .browser-non-ie .dropdown-icon,.browser-non-ie .work-docs-icon-carat-down-808184-24x24,.browser-non-ie .work-docs-icon-carat-down-ffffff-24x24,.browser-non-ie .work-docs-icon-carat-down-d0d2d3-16x16,.browser-non-ie .work-docs-icon-carat-down-8ea9c9-16x16,.browser-non-ie .work-docs-icon-carat-down-212f3e-16x16,.browser-non-ie .work-docs-icon-carat-down-0e72a3-16x16,.browser-non-ie .work-docs-icon-carat-down-808184-16x16,.browser-non-ie .work-docs-icon-carat-down-ffffff-16x16,.browser-non-ie .work-docs-icon-carat-left-d0d2d3-24x24,.browser-non-ie .work-docs-icon-carat-left-8ea9c9-24x24,.browser-non-ie .work-docs-icon-carat-left-212f3e-24x24,.browser-non-ie .work-docs-icon-carat-left-0e72a3-24x24,.browser-non-ie .work-docs-icon-carat-left-808184-24x24,.browser-non-ie .work-docs-icon-carat-left-ffffff-24x24,.browser-non-ie .work-docs-icon-carat-left-d0d2d3-16x16,.browser-non-ie .work-docs-icon-carat-left-8ea9c9-16x16,.browser-non-ie .work-docs-icon-carat-left-212f3e-16x16,.browser-non-ie .work-docs-icon-carat-left-0e72a3-16x16,.browser-non-ie .work-docs-icon-carat-left-808184-16x16,.browser-non-ie .work-docs-icon-carat-left-ffffff-16x16,.browser-non-ie .work-docs-icon-checked-round-d0d2d3-24x24,.browser-non-ie .work-docs-icon-checked-round-8ea9c9-24x24,.browser-non-ie .work-docs-icon-checked-round-212f3e-24x24,.browser-non-ie .work-docs-icon-checked-round-0e72a3-24x24,.browser-non-ie .work-docs-icon-checked-round-808184-24x24,.browser-non-ie .work-docs-icon-checked-round-ffffff-24x24,.browser-non-ie .work-docs-icon-checked-round-d0d2d3-16x16,.browser-non-ie .work-docs-icon-checked-round-8ea9c9-16x16,.browser-non-ie .work-docs-icon-checked-round-212f3e-16x16,.browser-non-ie .work-docs-icon-checked-round-0e72a3-16x16,.browser-non-ie .work-docs-icon-checked-round-808184-16x16,.browser-non-ie .work-docs-icon-checked-round-ffffff-16x16,.browser-non-ie .work-docs-icon-unchecked-round-solid-d0d2d3-24x24,.browser-non-ie .work-docs-icon-unchecked-round-solid-8ea9c9-24x24,.browser-non-ie .work-docs-icon-unchecked-round-solid-212f3e-24x24,.browser-non-ie input[type=radio].wd-white-radio:checked+label.wd-white-radio-label,.browser-non-ie .work-docs-icon-unchecked-round-solid-0e72a3-24x24,.browser-non-ie .work-docs-icon-unchecked-round-solid-808184-24x24,.browser-non-ie .work-docs-icon-unchecked-round-solid-ffffff-24x24,.browser-non-ie .work-docs-icon-unchecked-round-solid-d0d2d3-16x16,.browser-non-ie .work-docs-icon-unchecked-round-solid-8ea9c9-16x16,.browser-non-ie .work-docs-icon-unchecked-round-solid-212f3e-16x16,.browser-non-ie .work-docs-icon-unchecked-round-solid-0e72a3-16x16,.browser-non-ie .work-docs-icon-unchecked-round-solid-808184-16x16,.browser-non-ie .work-docs-icon-unchecked-round-solid-ffffff-16x16,.browser-non-ie .work-docs-icon-mail-d0d2d3-24x24,.browser-non-ie .work-docs-icon-mail-8ea9c9-24x24,.browser-non-ie .work-docs-icon-mail-212f3e-24x24,.browser-non-ie .work-docs-icon-mail-0e72a3-24x24,.browser-non-ie #admin-div .invite-user-icon,#admin-div .browser-non-ie .invite-user-icon,.browser-non-ie .work-docs-icon-mail-808184-24x24,.browser-non-ie .work-docs-icon-mail-ffffff-24x24,.browser-non-ie .work-docs-icon-mail-d0d2d3-16x16,.browser-non-ie #admin-div .reinvite-user-icon-disabled,#admin-div .browser-non-ie .reinvite-user-icon-disabled,.browser-non-ie .work-docs-icon-mail-8ea9c9-16x16,.browser-non-ie .work-docs-icon-mail-212f3e-16x16,.browser-non-ie .work-docs-icon-mail-0e72a3-16x16,.browser-non-ie #admin-div .reinvite-user-icon,#admin-div .browser-non-ie .reinvite-user-icon,.browser-non-ie .work-docs-icon-mail-808184-16x16,.browser-non-ie .work-docs-icon-mail-ffffff-16x16,.browser-non-ie .work-docs-icon-cloud-toggle-d0d2d3-24x24,.browser-non-ie .work-docs-icon-cloud-toggle-8ea9c9-24x24,.browser-non-ie .work-docs-icon-cloud-toggle-212f3e-24x24,.browser-non-ie .work-docs-icon-cloud-toggle-0e72a3-24x24,.browser-non-ie .work-docs-icon-cloud-toggle-808184-24x24,.browser-non-ie .work-docs-icon-cloud-toggle-ffffff-24x24,.browser-non-ie .work-docs-icon-cloud-toggle-d0d2d3-16x16,.browser-non-ie .work-docs-icon-cloud-toggle-8ea9c9-16x16,.browser-non-ie .work-docs-icon-cloud-toggle-212f3e-16x16,.browser-non-ie .work-docs-icon-cloud-toggle-0e72a3-16x16,.browser-non-ie .work-docs-icon-cloud-toggle-808184-16x16,.browser-non-ie .work-docs-icon-cloud-toggle-ffffff-16x16,.browser-non-ie .work-docs-icon-cloud-d0d2d3-24x24,.browser-non-ie .work-docs-icon-cloud-8ea9c9-24x24,.browser-non-ie .work-docs-icon-cloud-212f3e-24x24,.browser-non-ie .work-docs-icon-cloud-0e72a3-24x24,.browser-non-ie .work-docs-icon-cloud-808184-24x24,.browser-non-ie .work-docs-icon-cloud-ffffff-24x24,.browser-non-ie .work-docs-icon-cloud-d0d2d3-16x16,.browser-non-ie .work-docs-icon-cloud-8ea9c9-16x16,.browser-non-ie .work-docs-icon-cloud-212f3e-16x16,.browser-non-ie .work-docs-icon-cloud-0e72a3-16x16,.browser-non-ie .work-docs-icon-cloud-808184-16x16,.browser-non-ie .work-docs-icon-cloud-ffffff-16x16,.browser-non-ie .work-docs-icon-close-d0d2d3-24x24,.browser-non-ie .work-docs-icon-close-8ea9c9-24x24,.browser-non-ie .work-docs-icon-close-212f3e-24x24,.browser-non-ie .work-docs-icon-close-0e72a3-24x24,.browser-non-ie .work-docs-icon-close-808184-24x24,.browser-non-ie .message .inner-info .close-icon,.message .inner-info .browser-non-ie .close-icon,.browser-non-ie .modal-body .close,.modal-body .browser-non-ie .close,.browser-non-ie .modal-header .close,.modal-header .browser-non-ie .close,.browser-non-ie .work-docs-icon-close-ffffff-24x24,.browser-non-ie .top-banner .close,.top-banner .browser-non-ie .close,.browser-non-ie .message .close-icon,.message .browser-non-ie .close-icon,.browser-non-ie .work-docs-icon-close-d0d2d3-16x16,.browser-non-ie .work-docs-icon-close-8ea9c9-16x16,.browser-non-ie .work-docs-icon-close-212f3e-16x16,.browser-non-ie #dashboard-div .filter-container .filter-button .close-icon,#dashboard-div .filter-container .filter-button .browser-non-ie .close-icon,.browser-non-ie #analytics-div .filter-button .close-icon,#analytics-div .filter-button .browser-non-ie .close-icon,.browser-non-ie .dyk-wrapper .dyk-close,.dyk-wrapper .browser-non-ie .dyk-close,.browser-non-ie .work-docs-icon-close-0e72a3-16x16,.browser-non-ie #dashboard-div .filter-container .filter-button .close-icon:hover,#dashboard-div .filter-container .filter-button .browser-non-ie .close-icon:hover,.browser-non-ie #analytics-div .filter-button .close-icon:hover,#analytics-div .filter-button .browser-non-ie .close-icon:hover,.browser-non-ie .dyk-wrapper .dyk-close:hover,.dyk-wrapper .browser-non-ie .dyk-close:hover,.browser-non-ie .work-docs-icon-close-808184-16x16,.browser-non-ie .work-docs-icon-close-ffffff-16x16,.browser-non-ie .work-docs-icon-share-alternate-d0d2d3-24x24,.browser-non-ie .work-docs-icon-share-alternate-8ea9c9-24x24,.browser-non-ie .work-docs-icon-share-alternate-212f3e-24x24,.browser-non-ie .work-docs-icon-share-alternate-0e72a3-24x24,.browser-non-ie .work-docs-icon-share-alternate-808184-24x24,.browser-non-ie .work-docs-icon-share-alternate-ffffff-24x24,.browser-non-ie .work-docs-icon-share-alternate-d0d2d3-16x16,.browser-non-ie .work-docs-icon-share-alternate-8ea9c9-16x16,.browser-non-ie .work-docs-icon-share-alternate-212f3e-16x16,.browser-non-ie .work-docs-icon-share-alternate-0e72a3-16x16,.browser-non-ie .work-docs-icon-share-alternate-808184-16x16,.browser-non-ie .work-docs-icon-share-alternate-ffffff-16x16,.browser-non-ie .work-docs-icon-from-clipboard-d0d2d3-24x24,.browser-non-ie .work-docs-icon-from-clipboard-8ea9c9-24x24,.browser-non-ie .feedback-input-container .paste-highlighted:hover,.feedback-input-container .browser-non-ie .paste-highlighted:hover,.browser-non-ie .work-docs-icon-from-clipboard-212f3e-24x24,.browser-non-ie .work-docs-icon-from-clipboard-0e72a3-24x24,.browser-non-ie .feedback-input-container .paste-highlighted,.feedback-input-container .browser-non-ie .paste-highlighted,.browser-non-ie .work-docs-icon-from-clipboard-808184-24x24,.browser-non-ie .work-docs-icon-from-clipboard-ffffff-24x24,.browser-non-ie .work-docs-icon-from-clipboard-d0d2d3-16x16,.browser-non-ie .work-docs-icon-from-clipboard-8ea9c9-16x16,.browser-non-ie .work-docs-icon-from-clipboard-212f3e-16x16,.browser-non-ie .work-docs-icon-from-clipboard-0e72a3-16x16,.browser-non-ie .work-docs-icon-from-clipboard-808184-16x16,.browser-non-ie .work-docs-icon-from-clipboard-ffffff-16x16,.browser-non-ie .work-docs-icon-to-clipboard-d0d2d3-24x24,.browser-non-ie .work-docs-icon-to-clipboard-8ea9c9-24x24,.browser-non-ie .work-docs-icon-to-clipboard-212f3e-24x24,.browser-non-ie .work-docs-icon-to-clipboard-0e72a3-24x24,.browser-non-ie .work-docs-icon-to-clipboard-808184-24x24,.browser-non-ie .work-docs-icon-to-clipboard-ffffff-24x24,.browser-non-ie .work-docs-icon-to-clipboard-d0d2d3-16x16,.browser-non-ie .work-docs-icon-to-clipboard-8ea9c9-16x16,.browser-non-ie .work-docs-icon-to-clipboard-212f3e-16x16,.browser-non-ie .work-docs-icon-to-clipboard-0e72a3-16x16,.browser-non-ie .work-docs-icon-to-clipboard-808184-16x16,.browser-non-ie .work-docs-icon-to-clipboard-ffffff-16x16,.browser-non-ie .work-docs-icon-attach-d0d2d3-24x24,.browser-non-ie .work-docs-icon-attach-8ea9c9-24x24,.browser-non-ie .work-docs-icon-attach-212f3e-24x24,.browser-non-ie .work-docs-icon-attach-0e72a3-24x24,.browser-non-ie .work-docs-icon-attach-808184-24x24,.browser-non-ie .work-docs-icon-attach-ffffff-24x24,.browser-non-ie .work-docs-icon-attach-d0d2d3-16x16,.browser-non-ie .work-docs-icon-attach-8ea9c9-16x16,.browser-non-ie .work-docs-icon-attach-212f3e-16x16,.browser-non-ie .work-docs-icon-attach-0e72a3-16x16,.browser-non-ie .work-docs-icon-attach-808184-16x16,.browser-non-ie .work-docs-icon-attach-ffffff-16x16,.browser-non-ie .work-docs-icon-close-activity-tray-people-d0d2d3-36x24,.browser-non-ie .work-docs-icon-close-activity-tray-people-8ea9c9-36x24,.browser-non-ie .work-docs-icon-close-activity-tray-people-212f3e-36x24,.browser-non-ie .work-docs-icon-close-activity-tray-people-0e72a3-36x24,.browser-non-ie .work-docs-icon-close-activity-tray-people-808184-36x24,.browser-non-ie .work-docs-icon-close-activity-tray-people-ffffff-36x24,.browser-non-ie .work-docs-icon-close-activity-tray-people-d0d2d3-24x16,.browser-non-ie .work-docs-icon-close-activity-tray-people-8ea9c9-24x16,.browser-non-ie .work-docs-icon-close-activity-tray-people-212f3e-24x16,.browser-non-ie .work-docs-icon-close-activity-tray-people-0e72a3-24x16,.browser-non-ie .work-docs-icon-close-activity-tray-people-808184-24x16,.browser-non-ie .work-docs-icon-close-activity-tray-people-ffffff-24x16,.browser-non-ie .work-docs-icon-open-activity-tray-people-d0d2d3-36x24,.browser-non-ie .work-docs-icon-open-activity-tray-people-8ea9c9-36x24,.browser-non-ie .work-docs-icon-open-activity-tray-people-212f3e-36x24,.browser-non-ie .work-docs-icon-open-activity-tray-people-0e72a3-36x24,.browser-non-ie .work-docs-icon-open-activity-tray-people-808184-36x24,.browser-non-ie .work-docs-icon-open-activity-tray-people-ffffff-36x24,.browser-non-ie .work-docs-icon-open-activity-tray-people-d0d2d3-24x16,.browser-non-ie .work-docs-icon-open-activity-tray-people-8ea9c9-24x16,.browser-non-ie .work-docs-icon-open-activity-tray-people-212f3e-24x16,.browser-non-ie .work-docs-icon-open-activity-tray-people-0e72a3-24x16,.browser-non-ie .work-docs-icon-open-activity-tray-people-808184-24x16,.browser-non-ie .work-docs-icon-open-activity-tray-people-ffffff-24x16,.browser-non-ie .work-docs-icon-info-solid-d0d2d3-24x24,.browser-non-ie .work-docs-icon-info-solid-8ea9c9-24x24,.browser-non-ie .work-docs-icon-info-solid-212f3e-24x24,.browser-non-ie .work-docs-icon-info-solid-0e72a3-24x24,.browser-non-ie .work-docs-icon-info-solid-808184-24x24,.browser-non-ie .work-docs-icon-info-solid-ffffff-24x24,.browser-non-ie .work-docs-icon-info-solid-d0d2d3-16x16,.browser-non-ie .work-docs-icon-info-solid-8ea9c9-16x16,.browser-non-ie .work-docs-icon-info-solid-212f3e-16x16,.browser-non-ie .work-docs-icon-info-solid-0e72a3-16x16,.browser-non-ie .work-docs-icon-info-solid-808184-16x16,.browser-non-ie .work-docs-icon-info-solid-ffffff-16x16,.browser-non-ie .work-docs-icon-info-d0d2d3-24x24,.browser-non-ie .work-docs-icon-info-8ea9c9-24x24,.browser-non-ie .work-docs-icon-info-212f3e-24x24,.browser-non-ie .work-docs-icon-info-0e72a3-24x24,.browser-non-ie .work-docs-icon-info-808184-24x24,.browser-non-ie .work-docs-icon-info-ffffff-24x24,.browser-non-ie .work-docs-icon-info-d0d2d3-16x16,.browser-non-ie .work-docs-icon-info-8ea9c9-16x16,.browser-non-ie .work-docs-icon-info-212f3e-16x16,.browser-non-ie .work-docs-icon-info-0e72a3-16x16,.browser-non-ie .work-docs-icon-info-808184-16x16,.browser-non-ie .work-docs-icon-info-ffffff-16x16,.browser-non-ie .work-docs-icon-activity-d0d2d3-24x24,.browser-non-ie .work-docs-icon-activity-8ea9c9-24x24,.browser-non-ie .work-docs-icon-activity-212f3e-24x24,.browser-non-ie .work-docs-icon-activity-0e72a3-24x24,.browser-non-ie .work-docs-icon-activity-808184-24x24,.browser-non-ie #left-sidebar .activities-icon,#left-sidebar .browser-non-ie .activities-icon,.browser-non-ie .left-sidebar-minimized .ln-activities .sprite-icon,.left-sidebar-minimized .ln-activities .browser-non-ie .sprite-icon,.browser-non-ie .work-docs-icon-activity-ffffff-24x24,.browser-non-ie #left-sidebar .active .activities-icon,#left-sidebar .active .browser-non-ie .activities-icon,.browser-non-ie #left-sidebar li:hover .activities-icon,#left-sidebar li:hover .browser-non-ie .activities-icon,.browser-non-ie .left-sidebar-minimized .ln-activities:hover .sprite-icon,.left-sidebar-minimized .ln-activities:hover .browser-non-ie .sprite-icon,.browser-non-ie .left-sidebar-minimized .ln-activities.active .sprite-icon,.left-sidebar-minimized .ln-activities.active .browser-non-ie .sprite-icon,.browser-non-ie .work-docs-icon-activity-d0d2d3-16x16,.browser-non-ie .work-docs-icon-activity-8ea9c9-16x16,.browser-non-ie .work-docs-icon-activity-212f3e-16x16,.browser-non-ie .work-docs-icon-activity-0e72a3-16x16,.browser-non-ie .work-docs-icon-activity-808184-16x16,.browser-non-ie .work-docs-icon-activity-ffffff-16x16,.browser-non-ie .action-icon-activity,.browser-non-ie .work-docs-icon-upload-to-cloud-0e72a3-24x24,.browser-non-ie .work-docs-icon-upload-to-cloud-8ea9c9-24x24,.browser-non-ie .work-docs-icon-upload-to-cloud-212f3e-24x24,.browser-non-ie .work-docs-icon-upload-to-cloud-808184-24x24,.browser-non-ie .work-docs-icon-upload-to-cloud-d0d2d3-24x24,.browser-non-ie .work-docs-icon-upload-to-cloud-ffffff-24x24,.browser-non-ie .work-docs-icon-upload-to-cloud-0e72a3-16x16,.browser-non-ie .browser-plus-icon,.browser-non-ie .work-docs-icon-upload-to-cloud-8ea9c9-16x16,.browser-non-ie .work-docs-icon-upload-to-cloud-212f3e-16x16,.browser-non-ie .work-docs-icon-upload-to-cloud-808184-16x16,.browser-non-ie .work-docs-icon-upload-to-cloud-d0d2d3-16x16,.browser-non-ie .work-docs-icon-upload-to-cloud-ffffff-16x16,.browser-non-ie .work-docs-icon-download-from-cloud-d0d2d3-24x24,.browser-non-ie .work-docs-icon-download-from-cloud-8ea9c9-24x24,.browser-non-ie .work-docs-icon-download-from-cloud-212f3e-24x24,.browser-non-ie .work-docs-icon-download-from-cloud-0e72a3-24x24,.browser-non-ie .work-docs-icon-download-from-cloud-808184-24x24,.browser-non-ie .work-docs-icon-download-from-cloud-ffffff-24x24,.browser-non-ie .work-docs-icon-download-from-cloud-d0d2d3-16x16,.browser-non-ie .work-docs-icon-download-from-cloud-8ea9c9-16x16,.browser-non-ie .work-docs-icon-download-from-cloud-212f3e-16x16,.browser-non-ie .work-docs-icon-download-from-cloud-0e72a3-16x16,.browser-non-ie .work-docs-icon-download-from-cloud-808184-16x16,.browser-non-ie .work-docs-icon-download-from-cloud-ffffff-16x16,.browser-non-ie .action-icon-download,.browser-non-ie .work-docs-icon-move-0e72a3-24x24,.browser-non-ie .work-docs-icon-move-8ea9c9-24x24,.browser-non-ie .work-docs-icon-move-212f3e-24x24,.browser-non-ie .work-docs-icon-move-808184-24x24,.browser-non-ie .work-docs-icon-move-d0d2d3-24x24,.browser-non-ie .work-docs-icon-move-ffffff-24x24,.browser-non-ie .work-docs-icon-move-0e72a3-16x16,.browser-non-ie .work-docs-icon-move-8ea9c9-16x16,.browser-non-ie .work-docs-icon-move-212f3e-16x16,.browser-non-ie .work-docs-icon-move-808184-16x16,.browser-non-ie .work-docs-icon-move-d0d2d3-16x16,.browser-non-ie .work-docs-icon-move-ffffff-16x16,.browser-non-ie .action-icon-move,.browser-non-ie .work-docs-icon-edit-d0d2d3-24x24,.browser-non-ie .work-docs-icon-edit-8ea9c9-24x24,.browser-non-ie .work-docs-icon-edit-212f3e-24x24,.browser-non-ie .work-docs-icon-edit-0e72a3-24x24,.browser-non-ie .work-docs-icon-edit-808184-24x24,.browser-non-ie .work-docs-icon-edit-ffffff-24x24,.browser-non-ie .work-docs-icon-edit-d0d2d3-16x16,.browser-non-ie .work-docs-icon-edit-8ea9c9-16x16,.browser-non-ie .work-docs-icon-edit-212f3e-16x16,.browser-non-ie .work-docs-icon-edit-0e72a3-16x16,.browser-non-ie #admin-div .edit-user-icon,#admin-div .browser-non-ie .edit-user-icon,.browser-non-ie .work-docs-icon-edit-808184-16x16,.browser-non-ie .work-docs-icon-edit-ffffff-16x16,.browser-non-ie .action-icon-rename,.browser-non-ie .work-docs-icon-link-d0d2d3-24x24,.browser-non-ie .work-docs-icon-link-8ea9c9-24x24,.browser-non-ie .work-docs-icon-link-212f3e-24x24,.browser-non-ie .work-docs-icon-link-0e72a3-24x24,.browser-non-ie .work-docs-icon-link-808184-24x24,.browser-non-ie .work-docs-icon-link-ffffff-24x24,.browser-non-ie .work-docs-icon-link-d0d2d3-16x16,.browser-non-ie .work-docs-icon-link-8ea9c9-16x16,.browser-non-ie .work-docs-icon-link-212f3e-16x16,.browser-non-ie .work-docs-icon-link-0e72a3-16x16,.browser-non-ie .work-docs-icon-link-808184-16x16,.browser-non-ie .work-docs-icon-link-ffffff-16x16,.browser-non-ie .work-docs-icon-share-d0d2d3-24x24,.browser-non-ie .work-docs-icon-share-8ea9c9-24x24,.browser-non-ie .work-docs-icon-share-212f3e-24x24,.browser-non-ie .work-docs-icon-share-0e72a3-24x24,.browser-non-ie .work-docs-icon-share-808184-24x24,.browser-non-ie #left-sidebar .shared-with-me-icon,#left-sidebar .browser-non-ie .shared-with-me-icon,.browser-non-ie .left-sidebar-minimized .ln-shared-with-me .sprite-icon,.left-sidebar-minimized .ln-shared-with-me .browser-non-ie .sprite-icon,.browser-non-ie .work-docs-icon-share-ffffff-24x24,.browser-non-ie #left-sidebar .active .shared-with-me-icon,#left-sidebar .active .browser-non-ie .shared-with-me-icon,.browser-non-ie #left-sidebar li:hover .shared-with-me-icon,#left-sidebar li:hover .browser-non-ie .shared-with-me-icon,.browser-non-ie .left-sidebar-minimized .ln-shared-with-me:hover .sprite-icon,.left-sidebar-minimized .ln-shared-with-me:hover .browser-non-ie .sprite-icon,.browser-non-ie .left-sidebar-minimized .ln-shared-with-me.active .sprite-icon,.left-sidebar-minimized .ln-shared-with-me.active .browser-non-ie .sprite-icon,.browser-non-ie .work-docs-icon-share-d0d2d3-16x16,.browser-non-ie .work-docs-icon-share-8ea9c9-16x16,.browser-non-ie .work-docs-icon-share-212f3e-16x16,.browser-non-ie .work-docs-icon-share-0e72a3-16x16,.browser-non-ie .work-docs-icon-share-808184-16x16,.browser-non-ie .work-docs-icon-share-ffffff-16x16,.browser-non-ie .action-icon-share,.browser-non-ie .work-docs-icon-doc-sm-d0d2d3-24x24,.browser-non-ie .work-docs-icon-doc-sm-8ea9c9-24x24,.browser-non-ie .work-docs-icon-doc-sm-212f3e-24x24,.browser-non-ie .work-docs-icon-doc-sm-0e72a3-24x24,.browser-non-ie .work-docs-icon-doc-sm-808184-24x24,.browser-non-ie .work-docs-icon-doc-sm-ffffff-24x24,.browser-non-ie .work-docs-icon-doc-sm-d0d2d3-16x16,.browser-non-ie .work-docs-icon-doc-sm-8ea9c9-16x16,.browser-non-ie .work-docs-icon-doc-sm-212f3e-16x16,.browser-non-ie .work-docs-icon-doc-sm-0e72a3-16x16,.browser-non-ie .work-docs-icon-doc-sm-808184-16x16,.browser-non-ie .work-docs-icon-doc-sm-ffffff-16x16,.browser-non-ie .work-docs-icon-folder-sm-d0d2d3-24x24,.browser-non-ie .work-docs-icon-folder-sm-8ea9c9-24x24,.browser-non-ie .work-docs-icon-folder-sm-212f3e-24x24,.browser-non-ie .work-docs-icon-folder-sm-0e72a3-24x24,.browser-non-ie .work-docs-icon-folder-sm-808184-24x24,.browser-non-ie .work-docs-icon-folder-sm-ffffff-24x24,.browser-non-ie .work-docs-icon-folder-sm-d0d2d3-16x16,.browser-non-ie #admin-div .recovery-bin-icon-disabled,#admin-div .browser-non-ie .recovery-bin-icon-disabled,.browser-non-ie .work-docs-icon-folder-sm-8ea9c9-16x16,.browser-non-ie .work-docs-icon-folder-sm-212f3e-16x16,.browser-non-ie .sub-folder-list .sub-folder-icon,.sub-folder-list .browser-non-ie .sub-folder-icon,.browser-non-ie .work-docs-icon-folder-sm-0e72a3-16x16,.browser-non-ie #admin-div .recovery-bin-icon,#admin-div .browser-non-ie .recovery-bin-icon,.browser-non-ie .work-docs-icon-folder-sm-808184-16x16,.browser-non-ie .work-docs-icon-folder-sm-ffffff-16x16,.browser-non-ie .work-docs-icon-locked-d0d2d3-24x24,.browser-non-ie .work-docs-icon-locked-8ea9c9-24x24,.browser-non-ie .work-docs-icon-locked-212f3e-24x24,.browser-non-ie .work-docs-icon-locked-ffa724-24x24,.browser-non-ie .work-docs-icon-locked-0e72a3-24x24,.browser-non-ie .work-docs-icon-locked-808184-24x24,.browser-non-ie .work-docs-icon-locked-ffffff-24x24,.browser-non-ie .work-docs-icon-locked-d0d2d3-16x16,.browser-non-ie .work-docs-icon-locked-8ea9c9-16x16,.browser-non-ie .work-docs-icon-locked-212f3e-16x16,.browser-non-ie .work-docs-icon-locked-ffa724-16x16,.browser-non-ie .work-docs-icon-locked-0e72a3-16x16,.browser-non-ie .work-docs-icon-locked-808184-16x16,.browser-non-ie .work-docs-icon-locked-ffffff-16x16,.browser-non-ie .action-icon-checkout,.browser-non-ie .action-icon-checkout-open,.browser-non-ie .work-docs-icon-unchecked-d0d2d3-24x24,.browser-non-ie input[type=checkbox].wd-blue2-checkbox+label.wd-blue2-checkbox-label,.browser-non-ie .work-docs-icon-unchecked-8ea9c9-24x24,.browser-non-ie .work-docs-icon-unchecked-212f3e-24x24,.browser-non-ie .work-docs-icon-unchecked-0e72a3-24x24,.browser-non-ie .work-docs-icon-unchecked-808184-24x24,.browser-non-ie .work-docs-icon-unchecked-ffffff-24x24,.browser-non-ie input[type=checkbox].wd-white-checkbox+label.wd-white-checkbox-label,.browser-non-ie .work-docs-icon-unchecked-d0d2d3-16x16,.browser-non-ie .work-docs-icon-unchecked-8ea9c9-16x16,.browser-non-ie .work-docs-icon-unchecked-212f3e-16x16,.browser-non-ie .work-docs-icon-unchecked-0e72a3-16x16,.browser-non-ie .work-docs-icon-unchecked-808184-16x16,.browser-non-ie .work-docs-icon-unchecked-ffffff-16x16,.browser-non-ie .work-docs-icon-checked-d0d2d3-24x24,.browser-non-ie .work-docs-icon-checked-8ea9c9-24x24,.browser-non-ie .work-docs-icon-checked-212f3e-24x24,.browser-non-ie .work-docs-icon-checked-0e72a3-24x24,.browser-non-ie .work-docs-icon-checked-808184-24x24,.browser-non-ie .work-docs-icon-checked-ffffff-24x24,.browser-non-ie .work-docs-icon-checked-d0d2d3-16x16,.browser-non-ie .work-docs-icon-checked-8ea9c9-16x16,.browser-non-ie .work-docs-icon-checked-212f3e-16x16,.browser-non-ie .work-docs-icon-checked-0e72a3-16x16,.browser-non-ie .work-docs-icon-checked-808184-16x16,.browser-non-ie .work-docs-icon-checked-ffffff-16x16,.browser-non-ie .work-docs-icon-checked-solid-d0d2d3-24x24,.browser-non-ie .work-docs-icon-checked-solid-8ea9c9-24x24,.browser-non-ie input[type=checkbox].wd-blue2-checkbox:checked[disabled]+label.wd-blue2-checkbox-label,.browser-non-ie input[type=checkbox].wd-blue2-checkbox:checked+label.wd-blue2-checkbox-label,.browser-non-ie .work-docs-icon-checked-solid-212f3e-24x24,.browser-non-ie .work-docs-icon-checked-solid-0e72a3-24x24,.browser-non-ie .work-docs-icon-checked-solid-808184-24x24,.browser-non-ie .work-docs-icon-checked-solid-ffffff-24x24,.browser-non-ie input[type=checkbox].wd-white-checkbox:checked+label.wd-white-checkbox-label,.browser-non-ie .work-docs-icon-checked-solid-d0d2d3-16x16,.browser-non-ie .work-docs-icon-checked-solid-8ea9c9-16x16,.browser-non-ie .work-docs-icon-checked-solid-212f3e-16x16,.browser-non-ie .work-docs-icon-checked-solid-0e72a3-16x16,.browser-non-ie .work-docs-icon-checked-solid-808184-16x16,.browser-non-ie .work-docs-icon-checked-solid-ffffff-16x16,.browser-non-ie .work-docs-icon-trash-sm-d0d2d3-24x24,.browser-non-ie .work-docs-icon-trash-sm-8ea9c9-24x24,.browser-non-ie .work-docs-icon-trash-sm-212f3e-24x24,.browser-non-ie .work-docs-icon-trash-sm-0e72a3-24x24,.browser-non-ie .work-docs-icon-trash-sm-808184-24x24,.browser-non-ie .work-docs-icon-trash-sm-ffffff-24x24,.browser-non-ie .work-docs-icon-trash-sm-d0d2d3-16x16,.browser-non-ie #admin-div .delete-user-icon-disabled,#admin-div .browser-non-ie .delete-user-icon-disabled,.browser-non-ie .work-docs-icon-trash-sm-8ea9c9-16x16,.browser-non-ie .work-docs-icon-trash-sm-212f3e-16x16,.browser-non-ie .work-docs-icon-trash-sm-0e72a3-16x16,.browser-non-ie #admin-div .delete-user-icon,#admin-div .browser-non-ie .delete-user-icon,.browser-non-ie .file-browser-title-bar .browser-trash-icon,.file-browser-title-bar .browser-non-ie .browser-trash-icon,.browser-non-ie .work-docs-icon-trash-sm-808184-16x16,.browser-non-ie .work-docs-icon-trash-sm-ffffff-16x16,.browser-non-ie .work-docs-icon-add-versions-d0d2d3-24x24,.browser-non-ie .work-docs-icon-add-versions-8ea9c9-24x24,.browser-non-ie .work-docs-icon-add-versions-212f3e-24x24,.browser-non-ie .work-docs-icon-add-versions-0e72a3-24x24,.browser-non-ie .work-docs-icon-add-versions-808184-24x24,.browser-non-ie .work-docs-icon-add-versions-ffffff-24x24,.browser-non-ie .work-docs-icon-add-versions-d0d2d3-16x16,.browser-non-ie .work-docs-icon-add-versions-8ea9c9-16x16,.browser-non-ie .work-docs-icon-add-versions-212f3e-16x16,.browser-non-ie .work-docs-icon-add-versions-0e72a3-16x16,.browser-non-ie .work-docs-icon-add-versions-808184-16x16,.browser-non-ie .work-docs-icon-add-versions-ffffff-16x16,.browser-non-ie .work-docs-icon-versions-d0d2d3-24x24,.browser-non-ie .work-docs-icon-versions-8ea9c9-24x24,.browser-non-ie .work-docs-icon-versions-212f3e-24x24,.browser-non-ie .work-docs-icon-versions-0e72a3-24x24,.browser-non-ie .work-docs-icon-versions-808184-24x24,.browser-non-ie .work-docs-icon-versions-ffffff-24x24,.browser-non-ie .work-docs-icon-versions-d0d2d3-16x16,.browser-non-ie .work-docs-icon-versions-8ea9c9-16x16,.browser-non-ie .work-docs-icon-versions-212f3e-16x16,.browser-non-ie .work-docs-icon-versions-0e72a3-16x16,.browser-non-ie .work-docs-icon-versions-808184-16x16,.browser-non-ie .work-docs-icon-versions-ffffff-16x16,.browser-non-ie .work-docs-icon-doc-lg-d0d2d3-24x24,.browser-non-ie .work-docs-icon-doc-lg-8ea9c9-24x24,.browser-non-ie .work-docs-icon-doc-lg-212f3e-24x24,.browser-non-ie .work-docs-icon-doc-lg-0e72a3-24x24,.browser-non-ie .work-docs-icon-doc-lg-808184-24x24,.browser-non-ie .work-docs-icon-doc-lg-ffffff-24x24,.browser-non-ie .work-docs-icon-doc-lg-d0d2d3-16x16,.browser-non-ie .work-docs-icon-doc-lg-8ea9c9-16x16,.browser-non-ie .work-docs-icon-doc-lg-212f3e-16x16,.browser-non-ie .work-docs-icon-doc-lg-0e72a3-16x16,.browser-non-ie .work-docs-icon-doc-lg-808184-16x16,.browser-non-ie .work-docs-icon-doc-lg-ffffff-16x16,.browser-non-ie .work-docs-icon-folder-lg-d0d2d3-24x24,.browser-non-ie .work-docs-icon-folder-lg-8ea9c9-24x24,.browser-non-ie .work-docs-icon-folder-lg-212f3e-24x24,.browser-non-ie .work-docs-icon-folder-lg-0e72a3-24x24,.browser-non-ie .work-docs-icon-folder-lg-808184-24x24,.browser-non-ie .work-docs-icon-folder-lg-ffffff-24x24,.browser-non-ie .work-docs-icon-folder-lg-d0d2d3-16x16,.browser-non-ie .work-docs-icon-folder-lg-8ea9c9-16x16,.browser-non-ie .work-docs-icon-folder-lg-212f3e-16x16,.browser-non-ie .work-docs-icon-folder-lg-0e72a3-16x16,.browser-non-ie .work-docs-icon-folder-lg-808184-16x16,.browser-non-ie .work-docs-icon-folder-lg-ffffff-16x16,.browser-non-ie .work-docs-icon-hamburger-d0d2d3-24x24,.browser-non-ie .work-docs-icon-hamburger-8ea9c9-24x24,.browser-non-ie .work-docs-icon-hamburger-212f3e-24x24,.browser-non-ie .work-docs-icon-hamburger-0e72a3-24x24,.browser-non-ie .work-docs-icon-hamburger-808184-24x24,.browser-non-ie .work-docs-icon-hamburger-ffffff-24x24,.browser-non-ie .work-docs-icon-hamburger-d0d2d3-16x16,.browser-non-ie .work-docs-icon-hamburger-8ea9c9-16x16,.browser-non-ie .work-docs-icon-hamburger-212f3e-16x16,.browser-non-ie .work-docs-icon-hamburger-0e72a3-16x16,.browser-non-ie .work-docs-icon-hamburger-808184-16x16,.browser-non-ie .work-docs-icon-hamburger-ffffff-16x16,.browser-non-ie .work-docs-icon-back-d0d2d3-36x24,.browser-non-ie .work-docs-icon-back-8ea9c9-36x24,.browser-non-ie .work-docs-icon-back-212f3e-36x24,.browser-non-ie .work-docs-icon-back-0e72a3-36x24,.browser-non-ie .work-docs-icon-back-808184-36x24,.browser-non-ie .work-docs-icon-back-ffffff-36x24,.browser-non-ie .work-docs-icon-back-d0d2d3-24x16,.browser-non-ie .work-docs-icon-back-8ea9c9-24x16,.browser-non-ie .work-docs-icon-back-212f3e-24x16,.browser-non-ie .work-docs-icon-back-0e72a3-24x16,.browser-non-ie .folder-breadcrumb-back .folder-back-icon,.folder-breadcrumb-back .browser-non-ie .folder-back-icon,.browser-non-ie .work-docs-icon-back-808184-24x16,.browser-non-ie .work-docs-icon-back-ffffff-24x16,.browser-non-ie .work-docs-icon-tray-control-d0d2d3-24x24,.browser-non-ie .work-docs-icon-tray-control-8ea9c9-24x24,.browser-non-ie .work-docs-icon-tray-control-212f3e-24x24,.browser-non-ie .work-docs-icon-tray-control-0e72a3-24x24,.browser-non-ie .work-docs-icon-tray-control-808184-24x24,.browser-non-ie .work-docs-icon-tray-control-ffffff-24x24,.browser-non-ie .left-sidebar-top .left-sidebar-toggle,.left-sidebar-top .browser-non-ie .left-sidebar-toggle,.browser-non-ie .right-sidebar-minimized .sidebar-openpanel,.right-sidebar-minimized .browser-non-ie .sidebar-openpanel,.browser-non-ie .work-docs-icon-tray-control-d0d2d3-16x16,.browser-non-ie .work-docs-icon-tray-control-8ea9c9-16x16,.browser-non-ie .work-docs-icon-tray-control-212f3e-16x16,.browser-non-ie .work-docs-icon-tray-control-0e72a3-16x16,.browser-non-ie .work-docs-icon-tray-control-808184-16x16,.browser-non-ie .work-docs-icon-tray-control-ffffff-16x16,.browser-non-ie .work-docs-icon-bug-d0d2d3-24x24,.browser-non-ie .work-docs-icon-bug-8ea9c9-24x24,.browser-non-ie .work-docs-icon-bug-212f3e-24x24,.browser-non-ie .work-docs-icon-bug-0e72a3-24x24,.browser-non-ie .work-docs-icon-bug-808184-24x24,.browser-non-ie .work-docs-icon-bug-ffffff-24x24,.browser-non-ie .work-docs-icon-bug-d0d2d3-16x16,.browser-non-ie .work-docs-icon-bug-8ea9c9-16x16,.browser-non-ie .work-docs-icon-bug-212f3e-16x16,.browser-non-ie .work-docs-icon-bug-0e72a3-16x16,.browser-non-ie .work-docs-icon-bug-808184-16x16,.browser-non-ie .work-docs-icon-bug-ffffff-16x16,.browser-non-ie .work-docs-icon-list-view-d0d2d3-24x24,.browser-non-ie .work-docs-icon-list-view-8ea9c9-24x24,.browser-non-ie .work-docs-icon-list-view-212f3e-24x24,.browser-non-ie .file-browser-title-bar .browser-list-view,.file-browser-title-bar .browser-non-ie .browser-list-view,.browser-non-ie .work-docs-icon-list-view-0e72a3-24x24,.browser-non-ie .file-browser-title-bar .title-bar-list .active .browser-list-view,.file-browser-title-bar .title-bar-list .active .browser-non-ie .browser-list-view,.browser-non-ie .work-docs-icon-list-view-808184-24x24,.browser-non-ie .work-docs-icon-list-view-ffffff-24x24,.browser-non-ie .work-docs-icon-list-view-d0d2d3-16x16,.browser-non-ie .work-docs-icon-list-view-8ea9c9-16x16,.browser-non-ie .work-docs-icon-list-view-212f3e-16x16,.browser-non-ie .work-docs-icon-list-view-0e72a3-16x16,.browser-non-ie .work-docs-icon-list-view-808184-16x16,.browser-non-ie .work-docs-icon-list-view-ffffff-16x16,.browser-non-ie .work-docs-icon-icon-view-d0d2d3-24x24,.browser-non-ie .work-docs-icon-icon-view-8ea9c9-24x24,.browser-non-ie .work-docs-icon-icon-view-212f3e-24x24,.browser-non-ie .file-browser-title-bar .browser-thumbnail-view,.file-browser-title-bar .browser-non-ie .browser-thumbnail-view,.browser-non-ie .work-docs-icon-icon-view-0e72a3-24x24,.browser-non-ie .file-browser-title-bar .title-bar-list .active .browser-thumbnail-view,.file-browser-title-bar .title-bar-list .active .browser-non-ie .browser-thumbnail-view,.browser-non-ie .work-docs-icon-icon-view-808184-24x24,.browser-non-ie .work-docs-icon-icon-view-ffffff-24x24,.browser-non-ie .work-docs-icon-icon-view-d0d2d3-16x16,.browser-non-ie .work-docs-icon-icon-view-8ea9c9-16x16,.browser-non-ie .work-docs-icon-icon-view-212f3e-16x16,.browser-non-ie .work-docs-icon-icon-view-0e72a3-16x16,.browser-non-ie .work-docs-icon-icon-view-808184-16x16,.browser-non-ie .work-docs-icon-icon-view-ffffff-16x16,.browser-non-ie .work-docs-icon-remove-d0d2d3-24x24,.browser-non-ie .work-docs-icon-remove-8ea9c9-24x24,.browser-non-ie .work-docs-icon-remove-212f3e-24x24,.browser-non-ie .work-docs-icon-remove-0e72a3-24x24,.browser-non-ie .work-docs-icon-remove-808184-24x24,.browser-non-ie .work-docs-icon-remove-ffffff-24x24,.browser-non-ie .work-docs-icon-remove-d0d2d3-16x16,.browser-non-ie .work-docs-icon-remove-8ea9c9-16x16,.browser-non-ie .work-docs-icon-remove-212f3e-16x16,.browser-non-ie .work-docs-icon-remove-0e72a3-16x16,.browser-non-ie .work-docs-icon-remove-808184-16x16,.browser-non-ie .work-docs-icon-remove-ffffff-16x16,.browser-non-ie .work-docs-icon-add-d0d2d3-24x24,.browser-non-ie .work-docs-icon-add-8ea9c9-24x24,.browser-non-ie .work-docs-icon-add-212f3e-24x24,.browser-non-ie .work-docs-icon-add-0e72a3-24x24,.browser-non-ie .work-docs-icon-add-808184-24x24,.browser-non-ie .work-docs-icon-add-ffffff-24x24,.browser-non-ie .work-docs-icon-add-d0d2d3-16x16,.browser-non-ie .work-docs-icon-add-8ea9c9-16x16,.browser-non-ie .work-docs-icon-add-212f3e-16x16,.browser-non-ie .work-docs-icon-add-0e72a3-16x16,.browser-non-ie .work-docs-icon-add-808184-16x16,.browser-non-ie .work-docs-icon-add-ffffff-16x16,.browser-non-ie .work-docs-icon-add-folder-d0d2d3-24x24,.browser-non-ie .work-docs-icon-add-folder-8ea9c9-24x24,.browser-non-ie .work-docs-icon-add-folder-212f3e-24x24,.browser-non-ie .work-docs-icon-add-folder-0e72a3-24x24,.browser-non-ie .work-docs-icon-add-folder-808184-24x24,.browser-non-ie .work-docs-icon-add-folder-ffffff-24x24,.browser-non-ie .work-docs-icon-add-folder-d0d2d3-16x16,.browser-non-ie .work-docs-icon-add-folder-8ea9c9-16x16,.browser-non-ie .work-docs-icon-add-folder-212f3e-16x16,.browser-non-ie .work-docs-icon-add-folder-0e72a3-16x16,.browser-non-ie .file-browser-title-bar .browser-create-folder-icon,.file-browser-title-bar .browser-non-ie .browser-create-folder-icon,.browser-non-ie .work-docs-icon-add-folder-808184-16x16,.browser-non-ie .work-docs-icon-add-folder-ffffff-16x16,.browser-non-ie .work-docs-icon-comments-d0d2d3-24x24,.browser-non-ie .work-docs-icon-comments-8ea9c9-24x24,.browser-non-ie .work-docs-icon-comments-212f3e-24x24,.browser-non-ie .work-docs-icon-comments-0e72a3-24x24,.browser-non-ie .work-docs-icon-comments-808184-24x24,.browser-non-ie .work-docs-icon-comments-ffffff-24x24,.browser-non-ie .work-docs-icon-comments-d0d2d3-16x16,.browser-non-ie .work-docs-icon-comments-8ea9c9-16x16,.browser-non-ie .work-docs-icon-comments-212f3e-16x16,.browser-non-ie .work-docs-icon-comments-0e72a3-16x16,.browser-non-ie .work-docs-icon-comments-808184-16x16,.browser-non-ie .work-docs-icon-comments-ffffff-16x16,.browser-non-ie .work-docs-icon-search-d0d2d3-24x24,.browser-non-ie .work-docs-icon-search-8ea9c9-24x24,.browser-non-ie .work-docs-icon-search-212f3e-24x24,.browser-non-ie .work-docs-icon-search-0e72a3-24x24,.browser-non-ie .work-docs-icon-search-808184-24x24,.browser-non-ie .left-sidebar-minimized .ln-search .sprite-icon,.left-sidebar-minimized .ln-search .browser-non-ie .sprite-icon,.browser-non-ie .work-docs-icon-search-ffffff-24x24,.browser-non-ie .left-sidebar-minimized .ln-search:hover .sprite-icon,.left-sidebar-minimized .ln-search:hover .browser-non-ie .sprite-icon,.browser-non-ie .left-sidebar-minimized .ln-search.active .sprite-icon,.left-sidebar-minimized .ln-search.active .browser-non-ie .sprite-icon,.browser-non-ie .left-sidebar-minimized .ln-search.show-item .sprite-icon,.left-sidebar-minimized .ln-search.show-item .browser-non-ie .sprite-icon,.browser-non-ie .work-docs-icon-search-d0d2d3-16x16,.browser-non-ie .work-docs-icon-search-8ea9c9-16x16,.browser-non-ie .work-docs-icon-search-212f3e-16x16,.browser-non-ie .work-docs-icon-search-0e72a3-16x16,.browser-non-ie #admin-div .search-user-icon,#admin-div .browser-non-ie .search-user-icon,.browser-non-ie .work-docs-icon-search-808184-16x16,.browser-non-ie .work-docs-icon-search-ffffff-16x16,.browser-non-ie .work-docs-icon-device-offline-documents-d0d2d3-24x24,.browser-non-ie .work-docs-icon-device-offline-documents-8ea9c9-24x24,.browser-non-ie .work-docs-icon-device-offline-documents-212f3e-24x24,.browser-non-ie .work-docs-icon-device-offline-documents-0e72a3-24x24,.browser-non-ie .work-docs-icon-device-offline-documents-808184-24x24,.browser-non-ie .work-docs-icon-device-offline-documents-ffffff-24x24,.browser-non-ie .work-docs-icon-device-offline-documents-d0d2d3-16x16,.browser-non-ie .work-docs-icon-device-offline-documents-8ea9c9-16x16,.browser-non-ie .work-docs-icon-device-offline-documents-212f3e-16x16,.browser-non-ie .work-docs-icon-device-offline-documents-0e72a3-16x16,.browser-non-ie .work-docs-icon-device-offline-documents-808184-16x16,.browser-non-ie .work-docs-icon-device-offline-documents-ffffff-16x16,.browser-non-ie .work-docs-icon-filled-offline-documents-d0d2d3-24x24,.browser-non-ie .work-docs-icon-filled-offline-documents-8ea9c9-24x24,.browser-non-ie .work-docs-icon-filled-offline-documents-212f3e-24x24,.browser-non-ie .work-docs-icon-filled-offline-documents-0e72a3-24x24,.browser-non-ie .work-docs-icon-filled-offline-documents-808184-24x24,.browser-non-ie .work-docs-icon-filled-offline-documents-ffffff-24x24,.browser-non-ie .work-docs-icon-filled-offline-documents-d0d2d3-16x16,.browser-non-ie .work-docs-icon-filled-offline-documents-8ea9c9-16x16,.browser-non-ie .work-docs-icon-filled-offline-documents-212f3e-16x16,.browser-non-ie .work-docs-icon-filled-offline-documents-0e72a3-16x16,.browser-non-ie .work-docs-icon-filled-offline-documents-808184-16x16,.browser-non-ie .work-docs-icon-filled-offline-documents-ffffff-16x16,.browser-non-ie .work-docs-icon-offline-documents-d0d2d3-24x24,.browser-non-ie .work-docs-icon-offline-documents-8ea9c9-24x24,.browser-non-ie .work-docs-icon-offline-documents-212f3e-24x24,.browser-non-ie .work-docs-icon-offline-documents-0e72a3-24x24,.browser-non-ie .work-docs-icon-offline-documents-808184-24x24,.browser-non-ie .work-docs-icon-offline-documents-ffffff-24x24,.browser-non-ie .work-docs-icon-offline-documents-d0d2d3-16x16,.browser-non-ie .work-docs-icon-offline-documents-8ea9c9-16x16,.browser-non-ie .work-docs-icon-offline-documents-212f3e-16x16,.browser-non-ie .work-docs-icon-offline-documents-0e72a3-16x16,.browser-non-ie .work-docs-icon-offline-documents-808184-16x16,.browser-non-ie .work-docs-icon-offline-documents-ffffff-16x16,.browser-non-ie .work-docs-icon-settings-d0d2d3-24x24,.browser-non-ie .work-docs-icon-settings-8ea9c9-24x24,.browser-non-ie .work-docs-icon-settings-212f3e-24x24,.browser-non-ie .work-docs-icon-settings-0e72a3-24x24,.browser-non-ie .work-docs-icon-settings-808184-24x24,.browser-non-ie .work-docs-icon-settings-ffffff-24x24,.browser-non-ie .work-docs-icon-settings-d0d2d3-16x16,.browser-non-ie .tab-names .tab-name .file-info-icon,.tab-names .tab-name .browser-non-ie .file-info-icon,.browser-non-ie .work-docs-icon-settings-8ea9c9-16x16,.browser-non-ie .work-docs-icon-settings-212f3e-16x16,.browser-non-ie .work-docs-icon-settings-0e72a3-16x16,.browser-non-ie .work-docs-icon-settings-808184-16x16,.browser-non-ie .work-docs-icon-settings-ffffff-16x16,.browser-non-ie .tab-names .tab-name a:hover .file-info-icon,.tab-names .tab-name a:hover .browser-non-ie .file-info-icon,.browser-non-ie .tab-names .tab-name a.active .file-info-icon,.tab-names .tab-name a.active .browser-non-ie .file-info-icon,.browser-non-ie .work-docs-icon-log-out-d0d2d3-24x24,.browser-non-ie .work-docs-icon-log-out-8ea9c9-24x24,.browser-non-ie .work-docs-icon-log-out-212f3e-24x24,.browser-non-ie .work-docs-icon-log-out-0e72a3-24x24,.browser-non-ie .work-docs-icon-log-out-808184-24x24,.browser-non-ie #left-sidebar .logout-icon,#left-sidebar .browser-non-ie .logout-icon,.browser-non-ie .left-sidebar-minimized .ln-logout .sprite-icon,.left-sidebar-minimized .ln-logout .browser-non-ie .sprite-icon,.browser-non-ie .work-docs-icon-log-out-ffffff-24x24,.browser-non-ie #left-sidebar .active .logout-icon,#left-sidebar .active .browser-non-ie .logout-icon,.browser-non-ie #left-sidebar li:hover .logout-icon,#left-sidebar li:hover .browser-non-ie .logout-icon,.browser-non-ie .left-sidebar-minimized .ln-logout:hover .sprite-icon,.left-sidebar-minimized .ln-logout:hover .browser-non-ie .sprite-icon,.browser-non-ie .left-sidebar-minimized .ln-logout.active .sprite-icon,.left-sidebar-minimized .ln-logout.active .browser-non-ie .sprite-icon,.browser-non-ie .work-docs-icon-log-out-d0d2d3-16x16,.browser-non-ie .work-docs-icon-log-out-8ea9c9-16x16,.browser-non-ie .work-docs-icon-log-out-212f3e-16x16,.browser-non-ie .work-docs-icon-log-out-0e72a3-16x16,.browser-non-ie .work-docs-icon-log-out-808184-16x16,.browser-non-ie .work-docs-icon-log-out-ffffff-16x16,.browser-non-ie .work-docs-icon-download-apps-0e72a3-24x24,.browser-non-ie .work-docs-icon-download-apps-8ea9c9-24x24,.browser-non-ie .work-docs-icon-download-apps-212f3e-24x24,.browser-non-ie .work-docs-icon-download-apps-808184-24x24,.browser-non-ie .left-sidebar-minimized .ln-download-apps .sprite-icon,.left-sidebar-minimized .ln-download-apps .browser-non-ie .sprite-icon,.browser-non-ie .work-docs-icon-download-apps-d0d2d3-24x24,.browser-non-ie .work-docs-icon-download-apps-ffffff-24x24,.browser-non-ie .left-sidebar-minimized .ln-download-apps:hover .sprite-icon,.left-sidebar-minimized .ln-download-apps:hover .browser-non-ie .sprite-icon,.browser-non-ie .left-sidebar-minimized .ln-download-apps.active .sprite-icon,.left-sidebar-minimized .ln-download-apps.active .browser-non-ie .sprite-icon,.browser-non-ie .work-docs-icon-download-apps-0e72a3-16x16,.browser-non-ie .work-docs-icon-download-apps-8ea9c9-16x16,.browser-non-ie .work-docs-icon-download-apps-212f3e-16x16,.browser-non-ie .work-docs-icon-download-apps-808184-16x16,.browser-non-ie .work-docs-icon-download-apps-d0d2d3-16x16,.browser-non-ie .work-docs-icon-download-apps-ffffff-16x16,.browser-non-ie .work-docs-icon-profile-d0d2d3-24x24,.browser-non-ie .work-docs-icon-profile-8ea9c9-24x24,.browser-non-ie .work-docs-icon-profile-212f3e-24x24,.browser-non-ie .work-docs-icon-profile-0e72a3-24x24,.browser-non-ie .work-docs-icon-profile-808184-24x24,.browser-non-ie #left-sidebar .profile-icon,#left-sidebar .browser-non-ie .profile-icon,.browser-non-ie .left-sidebar-minimized .ln-profile .sprite-icon,.left-sidebar-minimized .ln-profile .browser-non-ie .sprite-icon,.browser-non-ie .work-docs-icon-profile-ffffff-24x24,.browser-non-ie #left-sidebar .active .profile-icon,#left-sidebar .active .browser-non-ie .profile-icon,.browser-non-ie #left-sidebar li:hover .profile-icon,#left-sidebar li:hover .browser-non-ie .profile-icon,.browser-non-ie .left-sidebar-minimized .ln-profile:hover .sprite-icon,.left-sidebar-minimized .ln-profile:hover .browser-non-ie .sprite-icon,.browser-non-ie .left-sidebar-minimized .ln-profile.active .sprite-icon,.left-sidebar-minimized .ln-profile.active .browser-non-ie .sprite-icon,.browser-non-ie .work-docs-icon-profile-d0d2d3-16x16,.browser-non-ie .work-docs-icon-profile-8ea9c9-16x16,.browser-non-ie .work-docs-icon-profile-212f3e-16x16,.browser-non-ie .work-docs-icon-profile-0e72a3-16x16,.browser-non-ie .work-docs-icon-profile-808184-16x16,.browser-non-ie .work-docs-icon-profile-ffffff-16x16,.browser-non-ie .work-docs-icon-trash-d0d2d3-24x24,.browser-non-ie .work-docs-icon-trash-8ea9c9-24x24,.browser-non-ie .work-docs-icon-trash-212f3e-24x24,.browser-non-ie .work-docs-icon-trash-0e72a3-24x24,.browser-non-ie .work-docs-icon-trash-808184-24x24,.browser-non-ie #left-sidebar .recycle-bin-icon,#left-sidebar .browser-non-ie .recycle-bin-icon,.browser-non-ie .left-sidebar-minimized .ln-recycled .sprite-icon,.left-sidebar-minimized .ln-recycled .browser-non-ie .sprite-icon,.browser-non-ie .work-docs-icon-trash-ffffff-24x24,.browser-non-ie #left-sidebar .active .recycle-bin-icon,#left-sidebar .active .browser-non-ie .recycle-bin-icon,.browser-non-ie #left-sidebar li:hover .recycle-bin-icon,#left-sidebar li:hover .browser-non-ie .recycle-bin-icon,.browser-non-ie .left-sidebar-minimized .ln-recycled:hover .sprite-icon,.left-sidebar-minimized .ln-recycled:hover .browser-non-ie .sprite-icon,.browser-non-ie .left-sidebar-minimized .ln-recycled.active .sprite-icon,.left-sidebar-minimized .ln-recycled.active .browser-non-ie .sprite-icon,.browser-non-ie .work-docs-icon-trash-d0d2d3-16x16,.browser-non-ie .work-docs-icon-trash-8ea9c9-16x16,.browser-non-ie .work-docs-icon-trash-212f3e-16x16,.browser-non-ie .work-docs-icon-trash-0e72a3-16x16,.browser-non-ie .version-switch-button-link .delete-version-button .version-delete-trash-icon,.version-switch-button-link .delete-version-button .browser-non-ie .version-delete-trash-icon,.browser-non-ie .work-docs-icon-trash-808184-16x16,.browser-non-ie .work-docs-icon-trash-ffffff-16x16,.browser-non-ie .action-icon-delete,.browser-non-ie .work-docs-icon-out-for-review-d0d2d3-24x24,.browser-non-ie .work-docs-icon-out-for-review-8ea9c9-24x24,.browser-non-ie .work-docs-icon-out-for-review-212f3e-24x24,.browser-non-ie .work-docs-icon-out-for-review-0e72a3-24x24,.browser-non-ie .work-docs-icon-out-for-review-808184-24x24,.browser-non-ie #left-sidebar .out-for-review-icon,#left-sidebar .browser-non-ie .out-for-review-icon,.browser-non-ie .left-sidebar-minimized .ln-out-for-review .sprite-icon,.left-sidebar-minimized .ln-out-for-review .browser-non-ie .sprite-icon,.browser-non-ie .work-docs-icon-out-for-review-ffffff-24x24,.browser-non-ie #left-sidebar .active .out-for-review-icon,#left-sidebar .active .browser-non-ie .out-for-review-icon,.browser-non-ie #left-sidebar li:hover .out-for-review-icon,#left-sidebar li:hover .browser-non-ie .out-for-review-icon,.browser-non-ie .left-sidebar-minimized .ln-out-for-review:hover .sprite-icon,.left-sidebar-minimized .ln-out-for-review:hover .browser-non-ie .sprite-icon,.browser-non-ie .left-sidebar-minimized .ln-out-for-review.active .sprite-icon,.left-sidebar-minimized .ln-out-for-review.active .browser-non-ie .sprite-icon,.browser-non-ie .work-docs-icon-out-for-review-d0d2d3-16x16,.browser-non-ie .work-docs-icon-out-for-review-8ea9c9-16x16,.browser-non-ie .work-docs-icon-out-for-review-212f3e-16x16,.browser-non-ie .work-docs-icon-out-for-review-0e72a3-16x16,.browser-non-ie .work-docs-icon-out-for-review-808184-16x16,.browser-non-ie .work-docs-icon-out-for-review-ffffff-16x16,.browser-non-ie .work-docs-icon-awaiting-feedback-d0d2d3-24x24,.browser-non-ie .work-docs-icon-awaiting-feedback-8ea9c9-24x24,.browser-non-ie .work-docs-icon-awaiting-feedback-212f3e-24x24,.browser-non-ie .work-docs-icon-awaiting-feedback-0e72a3-24x24,.browser-non-ie .work-docs-icon-awaiting-feedback-808184-24x24,.browser-non-ie #left-sidebar .awaiting-my-feedback-icon,#left-sidebar .browser-non-ie .awaiting-my-feedback-icon,.browser-non-ie .left-sidebar-minimized .ln-awaiting-feedback .sprite-icon,.left-sidebar-minimized .ln-awaiting-feedback .browser-non-ie .sprite-icon,.browser-non-ie .work-docs-icon-awaiting-feedback-ffffff-24x24,.browser-non-ie #left-sidebar .active .awaiting-my-feedback-icon,#left-sidebar .active .browser-non-ie .awaiting-my-feedback-icon,.browser-non-ie #left-sidebar li:hover .awaiting-my-feedback-icon,#left-sidebar li:hover .browser-non-ie .awaiting-my-feedback-icon,.browser-non-ie .left-sidebar-minimized .ln-awaiting-feedback:hover .sprite-icon,.left-sidebar-minimized .ln-awaiting-feedback:hover .browser-non-ie .sprite-icon,.browser-non-ie .left-sidebar-minimized .ln-awaiting-feedback.active .sprite-icon,.left-sidebar-minimized .ln-awaiting-feedback.active .browser-non-ie .sprite-icon,.browser-non-ie .work-docs-icon-awaiting-feedback-d0d2d3-16x16,.browser-non-ie .work-docs-icon-awaiting-feedback-8ea9c9-16x16,.browser-non-ie .work-docs-icon-awaiting-feedback-212f3e-16x16,.browser-non-ie .work-docs-icon-awaiting-feedback-0e72a3-16x16,.browser-non-ie .work-docs-icon-awaiting-feedback-808184-16x16,.browser-non-ie .work-docs-icon-awaiting-feedback-ffffff-16x16,.browser-non-ie .work-docs-icon-shared-with-me-d0d2d3-24x24,.browser-non-ie .work-docs-icon-shared-with-me-8ea9c9-24x24,.browser-non-ie .work-docs-icon-shared-with-me-212f3e-24x24,.browser-non-ie .work-docs-icon-shared-with-me-0e72a3-24x24,.browser-non-ie .work-docs-icon-shared-with-me-808184-24x24,.browser-non-ie .work-docs-icon-shared-with-me-ffffff-24x24,.browser-non-ie .work-docs-icon-shared-with-me-d0d2d3-16x16,.browser-non-ie .work-docs-icon-shared-with-me-8ea9c9-16x16,.browser-non-ie .work-docs-icon-shared-with-me-212f3e-16x16,.browser-non-ie .work-docs-icon-shared-with-me-0e72a3-16x16,.browser-non-ie .work-docs-icon-shared-with-me-808184-16x16,.browser-non-ie .work-docs-icon-shared-with-me-ffffff-16x16,.browser-non-ie .work-docs-icon-my-documents-d0d2d3-24x24,.browser-non-ie .work-docs-icon-my-documents-8ea9c9-24x24,.browser-non-ie .work-docs-icon-my-documents-212f3e-24x24,.browser-non-ie .work-docs-icon-my-documents-0e72a3-24x24,.browser-non-ie .work-docs-icon-my-documents-808184-24x24,.browser-non-ie #left-sidebar .my-document-icon,#left-sidebar .browser-non-ie .my-document-icon,.browser-non-ie .left-sidebar-minimized .ln-my-documents .sprite-icon,.left-sidebar-minimized .ln-my-documents .browser-non-ie .sprite-icon,.browser-non-ie .work-docs-icon-my-documents-ffffff-24x24,.browser-non-ie #left-sidebar .active .my-document-icon,#left-sidebar .active .browser-non-ie .my-document-icon,.browser-non-ie #left-sidebar li:hover .my-document-icon,#left-sidebar li:hover .browser-non-ie .my-document-icon,.browser-non-ie .left-sidebar-minimized .ln-my-documents:hover .sprite-icon,.left-sidebar-minimized .ln-my-documents:hover .browser-non-ie .sprite-icon,.browser-non-ie .left-sidebar-minimized .ln-my-documents.active .sprite-icon,.left-sidebar-minimized .ln-my-documents.active .browser-non-ie .sprite-icon,.browser-non-ie .work-docs-icon-my-documents-d0d2d3-16x16,.browser-non-ie .work-docs-icon-my-documents-8ea9c9-16x16,.browser-non-ie .work-docs-icon-my-documents-212f3e-16x16,.browser-non-ie .work-docs-icon-my-documents-0e72a3-16x16,.browser-non-ie .work-docs-icon-my-documents-808184-16x16,.browser-non-ie .work-docs-icon-my-documents-ffffff-16x16,.browser-non-ie .work-docs-icon-comments-xl-bold-d0d2d3-64x64,.browser-non-ie .work-docs-icon-comments-xl-bold-8ea9c9-64x64,.browser-non-ie .work-docs-icon-comments-xl-bold-212f3e-64x64,.browser-non-ie .work-docs-icon-comments-xl-bold-0e72a3-64x64,.browser-non-ie .work-docs-icon-comments-xl-bold-808184-64x64,.browser-non-ie .work-docs-icon-comments-xl-bold-ffffff-64x64,.browser-non-ie .work-docs-icon-comments-xl-bold-d0d2d3-32x32,.browser-non-ie .work-docs-icon-comments-xl-bold-8ea9c9-32x32,.browser-non-ie .work-docs-icon-comments-xl-bold-212f3e-32x32,.browser-non-ie .work-docs-icon-comments-xl-bold-0e72a3-32x32,.browser-non-ie .work-docs-icon-comments-xl-bold-808184-32x32,.browser-non-ie .work-docs-icon-comments-xl-bold-ffffff-32x32,.browser-non-ie .work-docs-icon-comments-xl-d0d2d3-64x64,.browser-non-ie .work-docs-icon-comments-xl-8ea9c9-64x64,.browser-non-ie .work-docs-icon-comments-xl-212f3e-64x64,.browser-non-ie .work-docs-icon-comments-xl-0e72a3-64x64,.browser-non-ie .work-docs-icon-comments-xl-808184-64x64,.browser-non-ie .work-docs-icon-comments-xl-ffffff-64x64,.browser-non-ie .work-docs-icon-comments-xl-d0d2d3-32x32,.browser-non-ie .work-docs-icon-comments-xl-8ea9c9-32x32,.browser-non-ie .work-docs-icon-comments-xl-212f3e-32x32,.browser-non-ie .work-docs-icon-comments-xl-0e72a3-32x32,.browser-non-ie .work-docs-icon-comments-xl-808184-32x32,.browser-non-ie .work-docs-icon-comments-xl-ffffff-32x32,.browser-non-ie .work-docs-icon-search-xl-bold-d0d2d3-64x64,.browser-non-ie .work-docs-icon-search-xl-bold-8ea9c9-64x64,.browser-non-ie .work-docs-icon-search-xl-bold-212f3e-64x64,.browser-non-ie .work-docs-icon-search-xl-bold-0e72a3-64x64,.browser-non-ie .work-docs-icon-search-xl-bold-808184-64x64,.browser-non-ie .work-docs-icon-search-xl-bold-ffffff-64x64,.browser-non-ie .work-docs-icon-search-xl-bold-d0d2d3-32x32,.browser-non-ie .work-docs-icon-search-xl-bold-8ea9c9-32x32,.browser-non-ie .work-docs-icon-search-xl-bold-212f3e-32x32,.browser-non-ie .work-docs-icon-search-xl-bold-0e72a3-32x32,.browser-non-ie .work-docs-icon-search-xl-bold-808184-32x32,.browser-non-ie .work-docs-icon-search-xl-bold-ffffff-32x32,.browser-non-ie .work-docs-icon-search-xl-d0d2d3-64x64,.browser-non-ie .work-docs-icon-search-xl-8ea9c9-64x64,.browser-non-ie .work-docs-icon-search-xl-212f3e-64x64,.browser-non-ie .work-docs-icon-search-xl-0e72a3-64x64,.browser-non-ie .work-docs-icon-search-xl-808184-64x64,.browser-non-ie .work-docs-icon-search-xl-ffffff-64x64,.browser-non-ie .work-docs-icon-search-xl-d0d2d3-32x32,.browser-non-ie .work-docs-icon-search-xl-8ea9c9-32x32,.browser-non-ie .work-docs-icon-search-xl-212f3e-32x32,.browser-non-ie .work-docs-icon-search-xl-0e72a3-32x32,.browser-non-ie .work-docs-icon-search-xl-808184-32x32,.browser-non-ie .work-docs-icon-search-xl-ffffff-32x32,.browser-non-ie .work-docs-icon-offline-documents-xl-bold-d0d2d3-64x64,.browser-non-ie .work-docs-icon-offline-documents-xl-bold-8ea9c9-64x64,.browser-non-ie .work-docs-icon-offline-documents-xl-bold-212f3e-64x64,.browser-non-ie .work-docs-icon-offline-documents-xl-bold-0e72a3-64x64,.browser-non-ie .work-docs-icon-offline-documents-xl-bold-808184-64x64,.browser-non-ie .work-docs-icon-offline-documents-xl-bold-ffffff-64x64,.browser-non-ie .work-docs-icon-offline-documents-xl-bold-d0d2d3-32x32,.browser-non-ie .work-docs-icon-offline-documents-xl-bold-8ea9c9-32x32,.browser-non-ie .work-docs-icon-offline-documents-xl-bold-212f3e-32x32,.browser-non-ie .work-docs-icon-offline-documents-xl-bold-0e72a3-32x32,.browser-non-ie .work-docs-icon-offline-documents-xl-bold-808184-32x32,.browser-non-ie .work-docs-icon-offline-documents-xl-bold-ffffff-32x32,.browser-non-ie .work-docs-icon-offline-documents-xl-d0d2d3-64x64,.browser-non-ie .work-docs-icon-offline-documents-xl-8ea9c9-64x64,.browser-non-ie .work-docs-icon-offline-documents-xl-212f3e-64x64,.browser-non-ie .work-docs-icon-offline-documents-xl-0e72a3-64x64,.browser-non-ie .work-docs-icon-offline-documents-xl-808184-64x64,.browser-non-ie .work-docs-icon-offline-documents-xl-ffffff-64x64,.browser-non-ie .work-docs-icon-offline-documents-xl-d0d2d3-32x32,.browser-non-ie .work-docs-icon-offline-documents-xl-8ea9c9-32x32,.browser-non-ie .work-docs-icon-offline-documents-xl-212f3e-32x32,.browser-non-ie .work-docs-icon-offline-documents-xl-0e72a3-32x32,.browser-non-ie .work-docs-icon-offline-documents-xl-808184-32x32,.browser-non-ie .work-docs-icon-offline-documents-xl-ffffff-32x32,.browser-non-ie .work-docs-icon-settings-xl-bold-d0d2d3-64x64,.browser-non-ie .work-docs-icon-settings-xl-bold-8ea9c9-64x64,.browser-non-ie .work-docs-icon-settings-xl-bold-212f3e-64x64,.browser-non-ie .work-docs-icon-settings-xl-bold-0e72a3-64x64,.browser-non-ie .work-docs-icon-settings-xl-bold-808184-64x64,.browser-non-ie .work-docs-icon-settings-xl-bold-ffffff-64x64,.browser-non-ie .work-docs-icon-settings-xl-bold-d0d2d3-32x32,.browser-non-ie .work-docs-icon-settings-xl-bold-8ea9c9-32x32,.browser-non-ie .work-docs-icon-settings-xl-bold-212f3e-32x32,.browser-non-ie .work-docs-icon-settings-xl-bold-0e72a3-32x32,.browser-non-ie .work-docs-icon-settings-xl-bold-808184-32x32,.browser-non-ie .work-docs-icon-settings-xl-bold-ffffff-32x32,.browser-non-ie .work-docs-icon-settings-xl-d0d2d3-65x64,.browser-non-ie .work-docs-icon-settings-xl-8ea9c9-65x64,.browser-non-ie .work-docs-icon-settings-xl-212f3e-65x64,.browser-non-ie .work-docs-icon-settings-xl-0e72a3-65x64,.browser-non-ie .work-docs-icon-settings-xl-808184-65x64,.browser-non-ie .work-docs-icon-settings-xl-ffffff-65x64,.browser-non-ie .work-docs-icon-settings-xl-d0d2d3-32x32,.browser-non-ie .work-docs-icon-settings-xl-8ea9c9-32x32,.browser-non-ie .work-docs-icon-settings-xl-212f3e-32x32,.browser-non-ie .work-docs-icon-settings-xl-0e72a3-32x32,.browser-non-ie .work-docs-icon-settings-xl-808184-32x32,.browser-non-ie .work-docs-icon-settings-xl-ffffff-32x32,.browser-non-ie .work-docs-icon-log-out-xl-bold-d0d2d3-64x64,.browser-non-ie .work-docs-icon-log-out-xl-bold-8ea9c9-64x64,.browser-non-ie .work-docs-icon-log-out-xl-bold-212f3e-64x64,.browser-non-ie .work-docs-icon-log-out-xl-bold-0e72a3-64x64,.browser-non-ie .work-docs-icon-log-out-xl-bold-808184-64x64,.browser-non-ie .work-docs-icon-log-out-xl-bold-ffffff-64x64,.browser-non-ie .work-docs-icon-log-out-xl-bold-d0d2d3-32x32,.browser-non-ie .work-docs-icon-log-out-xl-bold-8ea9c9-32x32,.browser-non-ie .work-docs-icon-log-out-xl-bold-212f3e-32x32,.browser-non-ie .work-docs-icon-log-out-xl-bold-0e72a3-32x32,.browser-non-ie .work-docs-icon-log-out-xl-bold-808184-32x32,.browser-non-ie .work-docs-icon-log-out-xl-bold-ffffff-32x32,.browser-non-ie .work-docs-icon-log-out-xl-d0d2d3-64x64,.browser-non-ie .work-docs-icon-log-out-xl-8ea9c9-64x64,.browser-non-ie .work-docs-icon-log-out-xl-212f3e-64x64,.browser-non-ie .work-docs-icon-log-out-xl-0e72a3-64x64,.browser-non-ie .work-docs-icon-log-out-xl-808184-64x64,.browser-non-ie .work-docs-icon-log-out-xl-ffffff-64x64,.browser-non-ie .work-docs-icon-log-out-xl-d0d2d3-32x32,.browser-non-ie .work-docs-icon-log-out-xl-8ea9c9-32x32,.browser-non-ie .work-docs-icon-log-out-xl-212f3e-32x32,.browser-non-ie .work-docs-icon-log-out-xl-0e72a3-32x32,.browser-non-ie .work-docs-icon-log-out-xl-808184-32x32,.browser-non-ie .work-docs-icon-log-out-xl-ffffff-32x32,.browser-non-ie .work-docs-icon-download-apps-xl-bold-0e72a3-64x64,.browser-non-ie .work-docs-icon-download-apps-xl-bold-0e72a3-32x32,.browser-non-ie .work-docs-icon-download-apps-xl-bold-8ea9c9-64x64,.browser-non-ie .work-docs-icon-download-apps-xl-bold-8ea9c9-32x32,.browser-non-ie .work-docs-icon-download-apps-xl-bold-212f3e-64x64,.browser-non-ie .work-docs-icon-download-apps-xl-bold-212f3e-32x32,.browser-non-ie .work-docs-icon-download-apps-xl-bold-808184-64x64,.browser-non-ie .work-docs-icon-download-apps-xl-bold-808184-32x32,.browser-non-ie .work-docs-icon-download-apps-xl-bold-d0d2d3-64x64,.browser-non-ie .work-docs-icon-download-apps-xl-bold-ffffff-64x64,.browser-non-ie .work-docs-icon-download-apps-xl-bold-d0d2d3-32x32,.browser-non-ie .work-docs-icon-download-apps-xl-bold-ffffff-32x32,.browser-non-ie .work-docs-icon-download-apps-xl-0e72a3-64x64,.browser-non-ie .work-docs-icon-download-apps-xl-0e72a3-32x32,.browser-non-ie .work-docs-icon-download-apps-xl-8ea9c9-64x64,.browser-non-ie .work-docs-icon-download-apps-xl-8ea9c9-32x32,.browser-non-ie .work-docs-icon-download-apps-xl-212f3e-64x64,.browser-non-ie .work-docs-icon-download-apps-xl-212f3e-32x32,.browser-non-ie .work-docs-icon-download-apps-xl-808184-64x64,.browser-non-ie .work-docs-icon-download-apps-xl-d0d2d3-64x64,.browser-non-ie .work-docs-icon-download-apps-xl-ffffff-64x64,.browser-non-ie .work-docs-icon-download-apps-xl-808184-32x32,.browser-non-ie .work-docs-icon-download-apps-xl-d0d2d3-32x32,.browser-non-ie .work-docs-icon-download-apps-xl-ffffff-32x32,.browser-non-ie .work-docs-icon-profile-xl-bold-d0d2d3-64x64,.browser-non-ie .work-docs-icon-profile-xl-bold-8ea9c9-64x64,.browser-non-ie .work-docs-icon-profile-xl-bold-212f3e-64x64,.browser-non-ie .work-docs-icon-profile-xl-bold-0e72a3-64x64,.browser-non-ie .work-docs-icon-profile-xl-bold-808184-64x64,.browser-non-ie .work-docs-icon-profile-xl-bold-ffffff-64x64,.browser-non-ie .work-docs-icon-profile-xl-bold-d0d2d3-32x32,.browser-non-ie .work-docs-icon-profile-xl-bold-8ea9c9-32x32,.browser-non-ie .work-docs-icon-profile-xl-bold-212f3e-32x32,.browser-non-ie .work-docs-icon-profile-xl-bold-0e72a3-32x32,.browser-non-ie .work-docs-icon-profile-xl-bold-808184-32x32,.browser-non-ie .work-docs-icon-profile-xl-bold-ffffff-32x32,.browser-non-ie .work-docs-icon-profile-xl-d0d2d3-64x64,.browser-non-ie .work-docs-icon-profile-xl-8ea9c9-64x64,.browser-non-ie .work-docs-icon-profile-xl-212f3e-64x64,.browser-non-ie .work-docs-icon-profile-xl-0e72a3-64x64,.browser-non-ie .work-docs-icon-profile-xl-808184-64x64,.browser-non-ie .work-docs-icon-profile-xl-ffffff-64x64,.browser-non-ie .work-docs-icon-profile-xl-d0d2d3-32x32,.browser-non-ie .work-docs-icon-profile-xl-8ea9c9-32x32,.browser-non-ie .work-docs-icon-profile-xl-212f3e-32x32,.browser-non-ie .work-docs-icon-profile-xl-0e72a3-32x32,.browser-non-ie .work-docs-icon-profile-xl-808184-32x32,.browser-non-ie .work-docs-icon-profile-xl-ffffff-32x32,.browser-non-ie .work-docs-icon-trash-xl-bold-d0d2d3-64x64,.browser-non-ie .work-docs-icon-trash-xl-bold-8ea9c9-64x64,.browser-non-ie .work-docs-icon-trash-xl-bold-212f3e-64x64,.browser-non-ie .work-docs-icon-trash-xl-bold-0e72a3-64x64,.browser-non-ie .work-docs-icon-trash-xl-bold-808184-64x64,.browser-non-ie .work-docs-icon-trash-xl-bold-ffffff-64x64,.browser-non-ie .work-docs-icon-trash-xl-bold-d0d2d3-32x32,.browser-non-ie .work-docs-icon-trash-xl-bold-8ea9c9-32x32,.browser-non-ie .work-docs-icon-trash-xl-bold-212f3e-32x32,.browser-non-ie .work-docs-icon-trash-xl-bold-0e72a3-32x32,.browser-non-ie .work-docs-icon-trash-xl-bold-808184-32x32,.browser-non-ie .work-docs-icon-trash-xl-bold-ffffff-32x32,.browser-non-ie .work-docs-icon-trash-xl-d0d2d3-64x64,.browser-non-ie .work-docs-icon-trash-xl-8ea9c9-64x64,.browser-non-ie .work-docs-icon-trash-xl-212f3e-64x64,.browser-non-ie .work-docs-icon-trash-xl-0e72a3-64x64,.browser-non-ie .work-docs-icon-trash-xl-808184-64x64,.browser-non-ie .work-docs-icon-trash-xl-ffffff-64x64,.browser-non-ie .work-docs-icon-trash-xl-d0d2d3-32x32,.browser-non-ie .work-docs-icon-trash-xl-8ea9c9-32x32,.browser-non-ie .work-docs-icon-trash-xl-212f3e-32x32,.browser-non-ie .work-docs-icon-trash-xl-0e72a3-32x32,.browser-non-ie .work-docs-icon-trash-xl-808184-32x32,.browser-non-ie .work-docs-icon-trash-xl-ffffff-32x32,.browser-non-ie .work-docs-icon-out-for-review-xl-bold-d0d2d3-64x64,.browser-non-ie .work-docs-icon-out-for-review-xl-bold-8ea9c9-64x64,.browser-non-ie .work-docs-icon-out-for-review-xl-bold-212f3e-64x64,.browser-non-ie .work-docs-icon-out-for-review-xl-bold-0e72a3-64x64,.browser-non-ie .work-docs-icon-out-for-review-xl-bold-808184-64x64,.browser-non-ie .work-docs-icon-out-for-review-xl-bold-ffffff-64x64,.browser-non-ie .work-docs-icon-out-for-review-xl-bold-d0d2d3-32x32,.browser-non-ie .work-docs-icon-out-for-review-xl-bold-8ea9c9-32x32,.browser-non-ie .work-docs-icon-out-for-review-xl-bold-212f3e-32x32,.browser-non-ie .work-docs-icon-out-for-review-xl-bold-0e72a3-32x32,.browser-non-ie .work-docs-icon-out-for-review-xl-bold-808184-32x32,.browser-non-ie .work-docs-icon-out-for-review-xl-bold-ffffff-32x32,.browser-non-ie .work-docs-icon-out-for-review-xl-d0d2d3-64x64,.browser-non-ie .work-docs-icon-out-for-review-xl-8ea9c9-64x64,.browser-non-ie .work-docs-icon-out-for-review-xl-212f3e-64x64,.browser-non-ie .work-docs-icon-out-for-review-xl-0e72a3-64x64,.browser-non-ie .work-docs-icon-out-for-review-xl-808184-64x64,.browser-non-ie .work-docs-icon-out-for-review-xl-ffffff-64x64,.browser-non-ie .work-docs-icon-out-for-review-xl-d0d2d3-32x32,.browser-non-ie .work-docs-icon-out-for-review-xl-8ea9c9-32x32,.browser-non-ie .work-docs-icon-out-for-review-xl-212f3e-32x32,.browser-non-ie .work-docs-icon-out-for-review-xl-0e72a3-32x32,.browser-non-ie .work-docs-icon-out-for-review-xl-808184-32x32,.browser-non-ie .work-docs-icon-out-for-review-xl-ffffff-32x32,.browser-non-ie .work-docs-icon-awaiting-feedback-xl-bold-d0d2d3-64x64,.browser-non-ie .work-docs-icon-awaiting-feedback-xl-bold-8ea9c9-64x64,.browser-non-ie .work-docs-icon-awaiting-feedback-xl-bold-212f3e-64x64,.browser-non-ie .work-docs-icon-awaiting-feedback-xl-bold-0e72a3-64x64,.browser-non-ie .work-docs-icon-awaiting-feedback-xl-bold-808184-64x64,.browser-non-ie .work-docs-icon-awaiting-feedback-xl-bold-ffffff-64x64,.browser-non-ie .work-docs-icon-awaiting-feedback-xl-bold-d0d2d3-32x32,.browser-non-ie .work-docs-icon-awaiting-feedback-xl-bold-8ea9c9-32x32,.browser-non-ie .work-docs-icon-awaiting-feedback-xl-bold-212f3e-32x32,.browser-non-ie .work-docs-icon-awaiting-feedback-xl-bold-0e72a3-32x32,.browser-non-ie .work-docs-icon-awaiting-feedback-xl-bold-808184-32x32,.browser-non-ie .work-docs-icon-awaiting-feedback-xl-bold-ffffff-32x32,.browser-non-ie .work-docs-icon-awaiting-feedback-xl-d0d2d3-64x64,.browser-non-ie .work-docs-icon-awaiting-feedback-xl-8ea9c9-64x64,.browser-non-ie .work-docs-icon-awaiting-feedback-xl-212f3e-64x64,.browser-non-ie .work-docs-icon-awaiting-feedback-xl-0e72a3-64x64,.browser-non-ie .work-docs-icon-awaiting-feedback-xl-808184-64x64,.browser-non-ie .work-docs-icon-awaiting-feedback-xl-ffffff-64x64,.browser-non-ie .work-docs-icon-awaiting-feedback-xl-d0d2d3-32x32,.browser-non-ie .work-docs-icon-awaiting-feedback-xl-8ea9c9-32x32,.browser-non-ie .work-docs-icon-awaiting-feedback-xl-212f3e-32x32,.browser-non-ie .work-docs-icon-awaiting-feedback-xl-0e72a3-32x32,.browser-non-ie .work-docs-icon-awaiting-feedback-xl-808184-32x32,.browser-non-ie .work-docs-icon-awaiting-feedback-xl-ffffff-32x32,.browser-non-ie .work-docs-icon-shared-with-me-xl-bold-d0d2d3-64x64,.browser-non-ie .work-docs-icon-shared-with-me-xl-bold-8ea9c9-64x64,.browser-non-ie .work-docs-icon-shared-with-me-xl-bold-212f3e-64x64,.browser-non-ie .work-docs-icon-shared-with-me-xl-bold-0e72a3-64x64,.browser-non-ie .work-docs-icon-shared-with-me-xl-bold-808184-64x64,.browser-non-ie .work-docs-icon-shared-with-me-xl-bold-ffffff-64x64,.browser-non-ie .work-docs-icon-shared-with-me-xl-bold-d0d2d3-32x32,.browser-non-ie .work-docs-icon-shared-with-me-xl-bold-8ea9c9-32x32,.browser-non-ie .work-docs-icon-shared-with-me-xl-bold-212f3e-32x32,.browser-non-ie .work-docs-icon-shared-with-me-xl-bold-0e72a3-32x32,.browser-non-ie .work-docs-icon-shared-with-me-xl-bold-808184-32x32,.browser-non-ie .work-docs-icon-shared-with-me-xl-bold-ffffff-32x32,.browser-non-ie .work-docs-icon-shared-with-me-xl-d0d2d3-64x64,.browser-non-ie .work-docs-icon-shared-with-me-xl-8ea9c9-64x64,.browser-non-ie .work-docs-icon-shared-with-me-xl-212f3e-64x64,.browser-non-ie .work-docs-icon-shared-with-me-xl-0e72a3-64x64,.browser-non-ie .work-docs-icon-shared-with-me-xl-808184-64x64,.browser-non-ie .work-docs-icon-shared-with-me-xl-ffffff-64x64,.browser-non-ie .work-docs-icon-shared-with-me-xl-d0d2d3-32x32,.browser-non-ie .work-docs-icon-shared-with-me-xl-8ea9c9-32x32,.browser-non-ie .work-docs-icon-shared-with-me-xl-212f3e-32x32,.browser-non-ie .work-docs-icon-shared-with-me-xl-0e72a3-32x32,.browser-non-ie .work-docs-icon-shared-with-me-xl-808184-32x32,.browser-non-ie .work-docs-icon-shared-with-me-xl-ffffff-32x32,.browser-non-ie .work-docs-icon-my-documents-xl-bold-d0d2d3-64x64,.browser-non-ie .work-docs-icon-my-documents-xl-bold-8ea9c9-64x64,.browser-non-ie .work-docs-icon-my-documents-xl-bold-212f3e-64x64,.browser-non-ie .work-docs-icon-my-documents-xl-bold-0e72a3-64x64,.browser-non-ie .work-docs-icon-my-documents-xl-bold-808184-64x64,.browser-non-ie .work-docs-icon-my-documents-xl-bold-ffffff-64x64,.browser-non-ie .work-docs-icon-my-documents-xl-bold-d0d2d3-32x32,.browser-non-ie .work-docs-icon-my-documents-xl-bold-8ea9c9-32x32,.browser-non-ie .work-docs-icon-my-documents-xl-bold-212f3e-32x32,.browser-non-ie .work-docs-icon-my-documents-xl-bold-0e72a3-32x32,.browser-non-ie .work-docs-icon-my-documents-xl-bold-808184-32x32,.browser-non-ie .work-docs-icon-my-documents-xl-bold-ffffff-32x32,.browser-non-ie .work-docs-icon-my-documents-xl-d0d2d3-64x64,.browser-non-ie .work-docs-icon-my-documents-xl-8ea9c9-64x64,.browser-non-ie .work-docs-icon-my-documents-xl-212f3e-64x64,.browser-non-ie .work-docs-icon-my-documents-xl-0e72a3-64x64,.browser-non-ie .work-docs-icon-my-documents-xl-808184-64x64,.browser-non-ie .work-docs-icon-my-documents-xl-ffffff-64x64,.browser-non-ie .work-docs-icon-my-documents-xl-d0d2d3-32x32,.browser-non-ie .work-docs-icon-my-documents-xl-8ea9c9-32x32,.browser-non-ie .work-docs-icon-my-documents-xl-212f3e-32x32,.browser-non-ie .work-docs-icon-my-documents-xl-0e72a3-32x32,.browser-non-ie .work-docs-icon-my-documents-xl-808184-32x32,.browser-non-ie .work-docs-icon-my-documents-xl-ffffff-32x32,.browser-non-ie .work-docs-icon-no-preview-212f3e-72x72,.browser-non-ie .no-preview-icon,.browser-non-ie .work-docs-icon-remove-me-from-share-alternate-212f3e-72x72,.browser-non-ie .work-docs-icon-locked-212f3e-72x72,.browser-non-ie .resource-locked-icon,.browser-non-ie .work-docs-icon-open-folder-212f3e-72x72,.browser-non-ie .folder-no-file-icon,.browser-non-ie .work-docs-icon-session-expired-212f3e-72x72,.browser-non-ie .session-expired-icon,.browser-non-ie .work-docs-icon-progress-0e72a3-72x72,.browser-non-ie .work-docs-icon-progress-212f3e-72x72,.browser-non-ie .work-docs-icon-broken-link-212f3e-72x72,.browser-non-ie .folder-not-found-icon,.browser-non-ie .document-unavailable-icon,.browser-non-ie .no-file-access-icon,.browser-non-ie .work-docs-icon-upload-to-cloud-212f3e-72x72{background-repeat:no-repeat;background-image:url(images/work-docs-icon_20170824_6dfb7ee3beb8db770a1f5f94fe5b1bcb.png);background-image:url(images/work-docs-icon_20170824_942bcb98741c074e27d335cfe689ee1c.svg),linear-gradient(transparent, transparent);background-size:1000px 7800px}[class^=resource-icon-sprite-],[class*=" resource-icon-sprite-"]{display:inline-block;width:20px;height:20px}.resource-icon-sprite-ic_cad,.resource-icon-sprite-ic_cad\:regular{background-image:url(images/icons/icons_61a66754269242b1cd04698e4b8da3c0.svg);background-position:0 0;background-repeat:no-repeat}.resource-icon-sprite-ic_cad-dims{width:20px;height:20px}.resource-icon-sprite-ic_css,.resource-icon-sprite-ic_css\:regular{background-image:url(images/icons/icons_61a66754269242b1cd04698e4b8da3c0.svg);background-position:0 -20px;background-repeat:no-repeat}.resource-icon-sprite-ic_css-dims{width:20px;height:20px}.resource-icon-sprite-ic_doc,.resource-icon-sprite-ic_doc\:regular{background-image:url(images/icons/icons_61a66754269242b1cd04698e4b8da3c0.svg);background-position:0 -40px;background-repeat:no-repeat}.resource-icon-sprite-ic_doc-dims{width:20px;height:20px}.resource-icon-sprite-ic_doc_generic,.resource-icon-sprite-ic_doc_generic\:regular{background-image:url(images/icons/icons_61a66754269242b1cd04698e4b8da3c0.svg);background-position:0 -60px;background-repeat:no-repeat}.resource-icon-sprite-ic_doc_generic-dims{width:20px;height:20px}.resource-icon-sprite-ic_doc_locked,.resource-icon-sprite-ic_doc_locked\:regular{background-image:url(images/icons/icons_61a66754269242b1cd04698e4b8da3c0.svg);background-position:0 -80px;background-repeat:no-repeat}.resource-icon-sprite-ic_doc_locked-dims{width:20px;height:20px}.resource-icon-sprite-ic_doc_shared,.resource-icon-sprite-ic_doc_shared\:regular{background-image:url(images/icons/icons_61a66754269242b1cd04698e4b8da3c0.svg);background-position:0 -100px;background-repeat:no-repeat}.resource-icon-sprite-ic_doc_shared-dims{width:20px;height:20px}.resource-icon-sprite-ic_doc_shared_link,.resource-icon-sprite-ic_doc_shared_link\:regular{background-image:url(images/icons/icons_61a66754269242b1cd04698e4b8da3c0.svg);background-position:0 -120px;background-repeat:no-repeat}.resource-icon-sprite-ic_doc_shared_link-dims{width:20px;height:20px}.resource-icon-sprite-ic_doc_shared_locked,.resource-icon-sprite-ic_doc_shared_locked\:regular{background-image:url(images/icons/icons_61a66754269242b1cd04698e4b8da3c0.svg);background-position:0 -140px;background-repeat:no-repeat}.resource-icon-sprite-ic_doc_shared_locked-dims{width:20px;height:20px}.resource-icon-sprite-ic_docx,.resource-icon-sprite-ic_docx\:regular{background-image:url(images/icons/icons_61a66754269242b1cd04698e4b8da3c0.svg);background-position:0 -160px;background-repeat:no-repeat}.resource-icon-sprite-ic_docx-dims{width:20px;height:20px}.resource-icon-sprite-ic_eps,.resource-icon-sprite-ic_eps\:regular{background-image:url(images/icons/icons_61a66754269242b1cd04698e4b8da3c0.svg);background-position:0 -180px;background-repeat:no-repeat}.resource-icon-sprite-ic_eps-dims{width:20px;height:20px}.resource-icon-sprite-ic_exe,.resource-icon-sprite-ic_exe\:regular{background-image:url(images/icons/icons_61a66754269242b1cd04698e4b8da3c0.svg);background-position:0 -200px;background-repeat:no-repeat}.resource-icon-sprite-ic_exe-dims{width:20px;height:20px}.resource-icon-sprite-ic_folder,.resource-icon-sprite-ic_folder\:regular{background-image:url(images/icons/icons_61a66754269242b1cd04698e4b8da3c0.svg);background-position:0 -220px;background-repeat:no-repeat}.resource-icon-sprite-ic_folder-dims{width:20px;height:20px}.resource-icon-sprite-ic_folder_share,.resource-icon-sprite-ic_folder_share\:regular{background-image:url(images/icons/icons_61a66754269242b1cd04698e4b8da3c0.svg);background-position:0 -240px;background-repeat:no-repeat}.resource-icon-sprite-ic_folder_share-dims{width:20px;height:20px}.resource-icon-sprite-ic_folder_share_link,.resource-icon-sprite-ic_folder_share_link\:regular{background-image:url(images/icons/icons_61a66754269242b1cd04698e4b8da3c0.svg);background-position:0 -260px;background-repeat:no-repeat}.resource-icon-sprite-ic_folder_share_link-dims{width:20px;height:20px}.resource-icon-sprite-ic_gif,.resource-icon-sprite-ic_gif\:regular{background-image:url(images/icons/icons_61a66754269242b1cd04698e4b8da3c0.svg);background-position:0 -280px;background-repeat:no-repeat}.resource-icon-sprite-ic_gif-dims{width:20px;height:20px}.resource-icon-sprite-ic_html,.resource-icon-sprite-ic_html\:regular{background-image:url(images/icons/icons_61a66754269242b1cd04698e4b8da3c0.svg);background-position:0 -300px;background-repeat:no-repeat}.resource-icon-sprite-ic_html-dims{width:20px;height:20px}.resource-icon-sprite-ic_jpg,.resource-icon-sprite-ic_jpg\:regular{background-image:url(images/icons/icons_61a66754269242b1cd04698e4b8da3c0.svg);background-position:0 -320px;background-repeat:no-repeat}.resource-icon-sprite-ic_jpg-dims{width:20px;height:20px}.resource-icon-sprite-ic_js,.resource-icon-sprite-ic_js\:regular{background-image:url(images/icons/icons_61a66754269242b1cd04698e4b8da3c0.svg);background-position:0 -340px;background-repeat:no-repeat}.resource-icon-sprite-ic_js-dims{width:20px;height:20px}.resource-icon-sprite-ic_key,.resource-icon-sprite-ic_key\:regular{background-image:url(images/icons/icons_61a66754269242b1cd04698e4b8da3c0.svg);background-position:0 -360px;background-repeat:no-repeat}.resource-icon-sprite-ic_key-dims{width:20px;height:20px}.resource-icon-sprite-ic_mov,.resource-icon-sprite-ic_mov\:regular{background-image:url(images/icons/icons_61a66754269242b1cd04698e4b8da3c0.svg);background-position:0 -380px;background-repeat:no-repeat}.resource-icon-sprite-ic_mov-dims{width:20px;height:20px}.resource-icon-sprite-ic_mp3,.resource-icon-sprite-ic_mp3\:regular{background-image:url(images/icons/icons_61a66754269242b1cd04698e4b8da3c0.svg);background-position:0 -400px;background-repeat:no-repeat}.resource-icon-sprite-ic_mp3-dims{width:20px;height:20px}.resource-icon-sprite-ic_mp4,.resource-icon-sprite-ic_mp4\:regular{background-image:url(images/icons/icons_61a66754269242b1cd04698e4b8da3c0.svg);background-position:0 -420px;background-repeat:no-repeat}.resource-icon-sprite-ic_mp4-dims{width:20px;height:20px}.resource-icon-sprite-ic_pdf,.resource-icon-sprite-ic_pdf\:regular{background-image:url(images/icons/icons_61a66754269242b1cd04698e4b8da3c0.svg);background-position:0 -440px;background-repeat:no-repeat}.resource-icon-sprite-ic_pdf-dims{width:20px;height:20px}.resource-icon-sprite-ic_php,.resource-icon-sprite-ic_php\:regular{background-image:url(images/icons/icons_61a66754269242b1cd04698e4b8da3c0.svg);background-position:0 -460px;background-repeat:no-repeat}.resource-icon-sprite-ic_php-dims{width:20px;height:20px}.resource-icon-sprite-ic_png,.resource-icon-sprite-ic_png\:regular{background-image:url(images/icons/icons_61a66754269242b1cd04698e4b8da3c0.svg);background-position:0 -480px;background-repeat:no-repeat}.resource-icon-sprite-ic_png-dims{width:20px;height:20px}.resource-icon-sprite-ic_ppt,.resource-icon-sprite-ic_ppt\:regular{background-image:url(images/icons/icons_61a66754269242b1cd04698e4b8da3c0.svg);background-position:0 -500px;background-repeat:no-repeat}.resource-icon-sprite-ic_ppt-dims{width:20px;height:20px}.resource-icon-sprite-ic_psd,.resource-icon-sprite-ic_psd\:regular{background-image:url(images/icons/icons_61a66754269242b1cd04698e4b8da3c0.svg);background-position:0 -520px;background-repeat:no-repeat}.resource-icon-sprite-ic_psd-dims{width:20px;height:20px}.resource-icon-sprite-ic_sketch,.resource-icon-sprite-ic_sketch\:regular{background-image:url(images/icons/icons_61a66754269242b1cd04698e4b8da3c0.svg);background-position:0 -540px;background-repeat:no-repeat}.resource-icon-sprite-ic_sketch-dims{width:20px;height:20px}.resource-icon-sprite-ic_txt,.resource-icon-sprite-ic_txt\:regular{background-image:url(images/icons/icons_61a66754269242b1cd04698e4b8da3c0.svg);background-position:0 -560px;background-repeat:no-repeat}.resource-icon-sprite-ic_txt-dims{width:20px;height:20px}.resource-icon-sprite-ic_wav,.resource-icon-sprite-ic_wav\:regular{background-image:url(images/icons/icons_61a66754269242b1cd04698e4b8da3c0.svg);background-position:0 -580px;background-repeat:no-repeat}.resource-icon-sprite-ic_wav-dims{width:20px;height:20px}.resource-icon-sprite-ic_xls,.resource-icon-sprite-ic_xls\:regular{background-image:url(images/icons/icons_61a66754269242b1cd04698e4b8da3c0.svg);background-position:0 -600px;background-repeat:no-repeat}.resource-icon-sprite-ic_xls-dims{width:20px;height:20px}.resource-icon-sprite-ic_xml,.resource-icon-sprite-ic_xml\:regular{background-image:url(images/icons/icons_61a66754269242b1cd04698e4b8da3c0.svg);background-position:0 -620px;background-repeat:no-repeat}.resource-icon-sprite-ic_xml-dims{width:20px;height:20px}.resource-icon-sprite-ic_zip,.resource-icon-sprite-ic_zip\:regular{background-image:url(images/icons/icons_61a66754269242b1cd04698e4b8da3c0.svg);background-position:0 -640px;background-repeat:no-repeat}.resource-icon-sprite-ic_zip-dims{width:20px;height:20px}.btn:focus,.btn.focus,.btn:active:focus,.btn:active.focus,.btn.active:focus,.btn.active.focus{outline:2px solid #bec0c1;outline-offset:0px}.form-control[type=text]:focus,textarea:focus{box-shadow:none;border-color:#1b8de2;outline:none}.not-draggable{user-drag:none;user-select:none;-moz-user-select:none;-webkit-user-drag:none;-webkit-user-select:none;-ms-user-select:none}.file-rename::-ms-clear{display:none}.file-rename::-webkit-contacts-auto-fill-button{display:none !important}.popover{border-radius:5px;background-color:#000;color:#fff}.popover.top>.arrow{border-top-color:#000}.popover.top>.arrow:after{border-top-color:#000}.popover.bottom>.arrow{border-bottom-color:#000}.popover.bottom>.arrow:after{border-bottom-color:#000}.popover.right>.arrow{border-right-color:#000}.popover.right>.arrow:after{border-right-color:#000}.popover.left>.arrow{border-left-color:#000}.popover.left>.arrow:after{border-left-color:#000}.flash-logo{background-image:url(images/adobe_flash_player@1x_ac9798e2f123e4771b08742c4055720b.png);background-size:120px 120px;width:120px;height:120px;margin:0 auto 0 auto}@media screen and (-webkit-min-device-pixel-ratio: 2),screen and (max-moz-device-pixel-ratio: 2){.flash-logo{background-image:url(images/adobe_flash_player@2x_850cc8ab6890adb3982aa8516b954fe4.png)}}.file-count{color:#1b8de2;float:right;margin-left:2px;margin-top:12px;line-height:normal;background-color:#e0e0e0;padding:2px 5px;border-radius:10px;display:inline-block}.active-dot{position:relative;-webkit-border-radius:50%;-moz-border-radius:50%;border-radius:50%;width:5px;height:5px;float:right;background:#fff}.right-aligned{float:right}.truncate,.document-title-bar secondary-nav ul.breadcrumb-body>li:last-of-type{white-space:nowrap;max-width:80%;text-overflow:ellipsis;overflow:hidden}span.truncate,a.truncate,b.truncate,label.truncate,textarea.truncate,strong.truncate{display:inline-block;vertical-align:top}.remove-whitespace,.top-action-bar{font-size:0}a.regular-link{color:#1b8de2}a.regular-link:hover,a.regular-link:focus,a.regular-link:active{color:#1b8de2}pdf-viewer{display:block;width:100%;height:100%}pdf-viewer iframe{border:none}input[type=checkbox].wd-white-checkbox{display:none}input[type=checkbox].wd-white-checkbox+label.wd-white-checkbox-label{display:inline-block;vertical-align:middle;padding:0;margin:0}input[type=checkbox].wd-blue-circle-checkbox{display:none}label.wd-blue-circle-checkbox-label{text-align:center;padding-top:5px}input[type=checkbox].wd-blue-circle-checkbox+label.wd-blue-circle-checkbox-label{background:#e0e0e0;color:#808184}input[type=checkbox].wd-blue-circle-checkbox:checked+label.wd-blue-circle-checkbox-label{background:#1b8de2;color:#fff}label.wd-blue2-checkbox-label,label.wd-blue-checkbox-label,label.wd-white-checkbox-label,label.wd-blue-circle-checkbox-label{cursor:pointer}input[type=checkbox].wd-blue2-checkbox{display:none}input[type=checkbox].wd-blue2-checkbox+label.wd-blue2-checkbox-label{display:inline-block;vertical-align:middle;padding:0;margin:0}input[type=checkbox].wd-blue2-checkbox[disabled]+label.wd-blue2-checkbox-label{opacity:.35}input[type=checkbox].wd-blue2-checkbox:checked[disabled]+label.wd-blue2-checkbox-label{opacity:.35}input[type=checkbox].wd-blue2-checkbox:checked[disabled]+label.wd-blue2-checkbox-label+label.text-label{opacity:.35}input[type=radio].wd-white-radio{display:none}input[type=radio].wd-white-radio+label.wd-white-radio-label{display:inline-block;vertical-align:middle;padding:0;margin:0}input[type=radio].wd-white-radio:checked+label.wd-white-radio-label{background-color:#fff}input[type=checkbox].wd-blue-checkbox{display:none}input[type=checkbox].wd-blue-checkbox+label.wd-blue-checkbox-label{display:inline-block;vertical-align:middle;padding:0;margin:0}input[type=checkbox].icon-wd-checkbox{position:absolute;opacity:0;width:0;height:0;outline:none}input[type=checkbox].icon-wd-checkbox:focus+label.icon-wd-checkbox-label{outline:auto}input[type=checkbox].icon-wd-checkbox+label.icon-wd-checkbox-label{padding:0;margin:0}input[type=checkbox].icon-wd-checkbox+label.icon-wd-checkbox-label:before{content:"\E943";color:#b1b3b5}input[type=checkbox].icon-wd-checkbox:active+label.icon-wd-checkbox-label:before{content:"\E943";color:#b1b3b5}input[type=checkbox].icon-wd-checkbox:checked+label.icon-wd-checkbox-label:before{content:"\E90F";color:#1b8de2}input[type=checkbox].icon-wd-checkbox[disabled]+label.icon-wd-checkbox-label:before{content:"\E943";color:#e0e0e0;cursor:not-allowed}input[type=checkbox].icon-wd-checkbox:checked[disabled]+label.icon-wd-checkbox-label:before{content:"\E90F";color:#e0e0e0}input[type=radio].wd-blue-radio{display:none}input[type=radio].wd-blue-radio+label.wd-blue-radio-label{display:inline-block;vertical-align:middle;padding:0;margin:0}input[type=radio].icon-wd-blue-radio{position:absolute;opacity:0;width:0;height:0;outline:none}input[type=radio].icon-wd-blue-radio:focus+label.icon-wd-blue-radio-label{outline:auto}input[type=radio].icon-wd-blue-radio+label.icon-wd-blue-radio-label{padding:0;margin:0}input[type=radio].icon-wd-blue-radio+label.icon-wd-blue-radio-label:before{content:"\E935";color:#b1b3b5}input[type=radio].icon-wd-blue-radio:active+label.icon-wd-blue-radio-label:before{content:"\E935";color:#b1b3b5}input[type=radio].icon-wd-blue-radio:checked+label.icon-wd-blue-radio-label:before{content:"\E910";color:#1b8de2}input[type=radio].icon-wd-blue-radio[disabled]+label.icon-wd-blue-radio-label:before{content:"\E935";color:#e0e0e0;cursor:not-allowed}input[type=radio].icon-wd-blue-radio:checked[disabled]+label.icon-wd-blue-radio-label:before{content:"\E910";color:#e0e0e0}*::-webkit-scrollbar{width:9px;height:9px;border-radius:0px}*::-webkit-scrollbar-thumb{background:rgba(0,0,0,.5);width:8px;height:8px;border:1px solid rgba(0,0,0,0);border-radius:4px;background-clip:content-box}*::-webkit-scrollbar-track{border-radius:0px;background:#fff}#left-sidebar::-webkit-scrollbar{width:9px;height:9px;border-radius:0px}#left-sidebar::-webkit-scrollbar-thumb{background:rgba(0,0,0,.5);width:8px;height:9px;border-left:1px solid rgba(0,0,0,0);border-radius:2px;background-clip:content-box}#left-sidebar::-webkit-scrollbar-track{border-radius:0px;background:rgba(0,0,0,0)}.disable-animations.ng-enter,.disable-animations.ng-leave,.disable-animations.ng-animate{transition:none}.disable-animations.ng-animate{animation:none 0s}img{max-width:100%}label{font-weight:normal}a,a:hover{text-decoration:none}a:active,a:hover,a:link{outline:none}.radio label,.checkbox label{min-height:15px}.bg-strikethrough-title-wrapper{position:relative}.bg-strikethrough-title-wrapper .title-el{position:relative;z-index:2;display:inline-block;margin-left:10px;padding-left:5px;padding-right:5px}.bg-strikethrough-title-wrapper .ruler{height:1px;width:100%;background-color:#4b505d;position:absolute;z-index:1;top:50%}#security .bg-strikethrough-title-wrapper{margin-left:-20px;margin-right:-15px;margin-bottom:20px}#security .bg-strikethrough-title-wrapper .title-el{background-color:#404041;color:#b1b3b5}#security .sidebar-margin{color:#404041;margin-left:20px;margin-right:20px}#security-div .sidebar-margin{margin-left:20px;padding-top:10px}#security-div .sidebar-margin .header{margin-bottom:45px}#security-div .sidebar-margin .setting{color:#808184;height:40px}#security-div .sidebar-margin .key{display:inline-block;width:60%}#security-div .sidebar-margin .icon{display:inline-block;width:10%}#security-div .sidebar-margin .muted{color:#808184}#security-div .sidebar-margin .selected{color:#1b8de2}#security-div .sidebar-margin .general-settings-container,#security-div .sidebar-margin .notification-container{border-bottom:1px solid #e0e0e0;margin-bottom:15px}#feedback-filter-menu .bg-strikethrough-title-wrapper{margin-left:-20px;margin-right:-15px;margin-bottom:20px}#feedback-filter-menu .bg-strikethrough-title-wrapper .title-el{background-color:#404041;color:#b1b3b5}#feedback-filter-menu .sidebar-margin{margin-left:20px;margin-right:20px}.dropdown-menu-container{display:inline-block;line-height:normal}.dropdown-menu li>a,.dropdown-menu li>label{background-color:#fff;color:#808184;padding:6px 12px;line-height:28px;width:100%}.dropdown-menu li>a:hover,.dropdown-menu li>a:focus,.dropdown-menu .active>a,.dropdown-menu .active>a:hover,.dropdown-menu li>label:hover,.dropdown-menu li>label:focus,.dropdown-menu .active>label,.dropdown-menu .active>label:hover{color:#404041;background-color:#f6f6f7;background-image:none}.dropdown-menu{padding:0px;margin:0px;min-width:140px}.dropdown-menu li.disabled-option,.dropdown-menu a.disabled-option,.dropdown-menu li.disabled-option a{color:#d9dadb;cursor:default}.dropdown-menu .divider{margin:0}.dropdown-menu .checked-indicator{margin-right:8px;font-size:13px}.dropdown-submenu{position:relative}.dropdown-submenu>.dropdown-menu{top:-1px;left:100%}.dropdown-submenu:hover>.dropdown-menu{display:block}.dropdown-submenu>a:after{position:absolute;right:10px;font-family:"WorkDocs-icons-beta";content:"\E90C";color:#1b8de2}.dropdown-submenu:hover>a:after{border-left-color:#fff}.dropdown-submenu.left-align{float:none}.dropdown-submenu.left-align>.dropdown-menu{left:0;transform:translateX(-100%)}.disabled{color:#d9dadb;cursor:not-allowed;pointer-events:none}.recovery-resource{cursor:not-allowed;pointer-events:none}.recovery-modal input[type=text]{color:#303542;border:1px solid #e0e0e0;padding:0 11px !important;border-radius:2px;height:41px;font-weight:300;box-sizing:border-box}.well,.navbar-inner,.btn,.tooltip,input,select,textarea,pre,.progress,.modal,.add-on,.alert,.table-bordered,.nav>.active>a,.dropdown-menu,.tooltip-inner,.badge,.label,.img-polaroid,.modal-footer{box-shadow:none;border-radius:0;border-collapse:collapse;background-image:none}.btn-group>.btn:first-child,.btn-group>.btn:last-child{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.btn,.btn:visited{color:#fff;height:30px;line-height:30px;background:#1b8de2;border-width:0px;border-radius:30px;padding:0px;text-decoration:none;text-align:center;text-shadow:none}.btn-default{color:#333;background-color:#fff;border:1px solid rgba(0,0,0,.2)}.no-style-button{border:none;background:none}.radio input[type=radio],.radio-inline input[type=radio],.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox]{position:static;margin-left:initial;margin-top:initial}.btn:hover{color:#e0e0e0}.btn:active{-webkit-box-shadow:none;box-shadow:none}.btn-link{color:#25201f;cursor:pointer;border-color:rgba(0,0,0,0);border-radius:0}.btn-link,.btn-link:active,.btn-link:hover,.btn-link[disabled]{background-color:rgba(0,0,0,0);background-image:none;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.btn-link:hover,.btn-link:focus{text-decoration:none;opacity:.7}.link{color:#08c}.centered{text-align:center}.margintop{margin-top:20px}.margintop-5{margin-top:5px}.margintop-10{margin-top:10px}.margintop-40{margin-top:40px}.marginbottom{margin-bottom:20px}.marginbottom-10{margin-bottom:10px}.marginbottom-50{margin-bottom:50px}.marginleft-2{margin-left:2px}.marginleft{margin-left:5px}.marginright{margin-right:5px}.marginleft-8{margin-left:8px}.marginright-8{margin-right:8px}.marginleft-10{margin-left:10px}.marginright-10{margin-right:10px}.marginleft-15{margin-left:15px}.marginright-15{margin-right:15px}.marginleft-30{margin-left:30px}.marginleft-40{margin-left:40px}.hidden{display:none !important}.fill-parent{position:relative;height:100%;width:100%}.full-height{height:100%}#layout.full-height{height:100%}.full-height-no-topnav{height:calc(100% - 50px)}.file_input{display:block;margin:0px;cursor:pointer;white-space:nowrap}.file_input .shrinkable{display:inline}.fileInput[type=file]{display:none !important}.container{margin-left:0}.container-fluid{position:relative;height:100%;padding-left:0;padding-right:0;overflow:hidden}.navbar-fixed-top .container{width:auto}.clearfix:after{content:".";visibility:hidden;display:block;height:0;clear:both}.well{white-space:normal}.active{color:#fff}.cursor{cursor:pointer}.content{padding:0;top:0;overflow:hidden}.main{margin:0;padding:0;height:calc(100% - 50px);overflow:hidden;background-color:#f6f6f7;position:relative;z-index:1}.with-novaBanner{min-height:calc(100% - 50px - 48px);height:auto}.with-MigrateDataBanner{min-height:calc(100% - 50px - 48px);height:auto}.typeahead li.active,.typeahead li.active:hover,.typeahead li.active>a,.typeahead li.active>a:hover,.typeahead li>a:hover,.typeahead li:hover{background:#f7d6ac !important;color:#000}.typeahead-item-header{position:relative;display:block;font-size:1em;font-weight:normal;padding:2px 20px;color:#6a6a6a;background-color:#fff}.typeahead-item-group-header{border-top:1px solid #e0e0e0}.datepicker{z-index:9999}.ui-datepicker{width:240px;height:218px;padding:0;border-radius:0px;border:1px solid #b1b3b5;background-color:#fff;margin-left:-135px}.ui-datepicker .ui-datepicker-header{height:25px;background:#fff;font-weight:normal;border-radius:0}.ui-datepicker .ui-datepicker-header .ui-icon{background:none;text-indent:0}.ui-datepicker .ui-datepicker-header .ui-datepicker-title{font-weight:normal;color:#404041;font-size:80%;line-height:25px;margin-top:11px}.ui-datepicker .ui-datepicker-header .ui-state-hover{background:none;text-decoration:none;font-weight:normal}.ui-datepicker .ui-datepicker-header .ui-corner-all{border-radius:0;border:none}.ui-datepicker .ui-state-default{color:#404041;width:25px;background:none;border:none;font-weight:normal;text-align:center;padding:5px}.ui-datepicker .ui-state-default:hover{background-color:#1b8de2;color:#fff;border-radius:50%}.ui-datepicker th,.ui-datepicker td{padding:0;color:#404041}table.ui-datepicker-calendar{width:86%;margin:19px;border:none;background-color:#fff}table.ui-datepicker-calendar tr{height:23px}table.ui-datepicker-calendar tr:hover{background-color:#fff}table.ui-datepicker-calendar td{width:25px;font-size:11px;color:#fff}table.ui-datepicker-calendar thead,table.ui-datepicker-calendar thead *{background:#f6f6f7;font-weight:normal}.ui-datepicker .ui-state-default.ui-state-active{background-color:#1b8de2;width:25px;color:#fff;width:25px;height:23px;margin:0 auto;border-radius:50%}.ui-datepicker .ui-datepicker-prev{top:12px;left:19px}.ui-datepicker .ui-datepicker-next{top:12px;right:17px}.ui-datepicker .ui-datepicker-prev span.ui-icon-circle-triangle-w::before{font-family:"WorkDocs-icons-beta";content:"\E90B";color:#808184}.ui-datepicker .ui-datepicker-next span.ui-icon-circle-triangle-e::before{font-family:"WorkDocs-icons-beta";content:"\E90C";color:#808184}.ui-datepicker .ui-datepicker-prev.ui-state-disabled span.ui-icon-circle-triangle-w{background:none}.ui-datepicker .ui-datepicker-next.ui-state-disabled span.ui-icon-circle-triangle-e{background:none}.center{position:fixed}.tab-active{font-weight:bold}a h1{color:#fff}textarea{width:100%}.well{color:#000}.btn.tangram{font-size:14px;color:#fff;padding:10px 30px;height:auto;line-height:1}.btn.btn-inverse{background:#25201f;outline:none;border:none !important;box-shadow:none !important}.progress-indicator,.progress-indicator-file-browser-item{position:relative;display:inline-block;width:80px;height:80px}.progress-indicator-file-browser-item{width:16px;height:16px}.progress-indicator:before,.progress-indicator-file-browser-item:before,.progress-indicator:after,.progress-indicator-file-browser-item:after{box-sizing:border-box;content:"";position:absolute;width:80px;height:80px;top:0;left:0;border-style:solid;border-radius:50%}.progress-indicator-file-browser-item:before,.progress-indicator-file-browser-item:after{width:16px;height:16px}.progress-indicator::before,.progress-indicator-file-browser-item::before{border-width:3px;border-color:#d0d2d3}.progress-indicator::after,.progress-indicator-file-browser-item::after{border-width:3px;border-color:#1b8de2 rgba(0,0,0,0) rgba(0,0,0,0) rgba(0,0,0,0);transform-origin:50%;animation:ProgressIndicatorAnimation ease 1.1s infinite}@keyframes ProgressIndicatorAnimation{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.wd-circle-16,.people-entry .comment-count-badge{border-radius:8px;-webkit-border-radius:8px;-moz-border-radius:8px;height:16px;width:16px}.wd-circle-30,input[type=checkbox].wd-blue-circle-checkbox+label.wd-blue-circle-checkbox-label{border-radius:15px;-webkit-border-radius:15px;-moz-border-radius:15px;height:30px;width:30px}#layout .row{padding:0;margin-left:0;margin-right:0}#mainContent{position:absolute;top:50px;left:0;right:0;bottom:0px}#newsContent{position:absolute;top:0;left:0;right:0;bottom:0px}#mainContent.mainContent-admin{overflow-y:auto}#mainContent.mainContent-officeeditor{top:0}.onlineEditingStyle{top:0px !important}a.hancom_logo{display:block;width:100%;height:100%;padding-left:101px;line-height:28px;font-size:14px;color:#1b8de2 !important;background:#fff url(images/think_free_logo_9eee8d5c0b91f61370a4f3c3cc925f4e.svg) no-repeat -1px 50% !important;border:1px solid #e0e0e0;box-sizing:border-box}table{background:#fff;margin-bottom:1.25em;border:solid 1px #ddd}table thead,table thead *{background:#f5f5f5;font-weight:bold}table thead tr th,table thead tr td,table tfoot tr th,table tfoot tr td{padding:.5em .625em .625em;color:#222;text-align:left}table tr th,table tr td{padding:.5625em .625em;color:#222}table thead tr th,table tfoot tr th,table tbody tr td,table tr td,table tfoot tr td{display:table-cell;line-height:1.125em}table tr:hover{background:#f5f5f5}.scroll-container{overflow:auto}.scroll-container-vertical{max-width:100%;overflow:auto;overflow-x:hidden}.full-width{position:absolute;left:0px;right:0px}.title-bar{width:100%;height:44px;line-height:24px;color:#25201f;background-color:#fdfdfc;opacity:.95;-moz-box-shadow:0 1px 5px rgba(0,0,0,.1);-webkit-box-shadow:0 1px 5px rgba(0,0,0,.1);box-shadow:0 1px 5px rgba(0,0,0,.1);min-width:0;z-index:1000;position:relative;overflow:hidden}.ellipsis{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.title-bar .ellipsis{margin-left:10px;padding:10px 15px}.title-bar .left{padding:10px 15px;border-right:1px #e3e3e3 solid;cursor:pointer;height:24px}.title-bar .right{padding:10px 15px;border-left:1px #e3e3e3 solid;cursor:pointer;height:24px}.title-bar .right:hover{color:#777}.title-bar .right.active{color:#f8b35c}.title-bar .btn,.title-bar .dropdown-toggle,.title-bar .btn-group.open .btn.dropdown-toggle{color:inherit;border:none;background-color:#fff;background-image:none;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;line-height:16px}.title-bar .icon{display:inline-block;width:24px;height:24px;margin-bottom:-4px;text-indent:-99999px}.title-bar a:hover .icon{cursor:default}.title-bar [class^=icon-],.title-bar [class*=" icon-"]{font-size:20 px}.sidebar{height:100%;width:400px;overflow:hidden}.sidebar-margin{margin:0 10px}.sidebar-panel{height:100%;width:400px;float:left;background-color:#fff;overflow-x:hidden}.sidebar .title{font-size:14pt;font-weight:normal;white-space:normal;overflow-x:auto;overflow-y:hidden;text-overflow:ellipsis;width:300px}.sidebar-transition{transition:all .4s ease-in-out;-moz-transition:all .4s ease-in-out;-webkit-transition:all .4s ease-in-out;-o-transition:all .4s ease-in-out}a.right-sidebar-minimized:hover{color:#404041}.sidebar-icon-button{color:#808184;cursor:pointer}.icon-reorder{font-size:18px}.right-sidebar-minimized{color:#808184;width:100%;height:100%;text-align:left;display:block;font-size:20px;margin:8px 0 0 10px}.sidebar-resize-control{position:absolute;top:0px;bottom:0px;width:10px;left:0px;z-index:2}.sidebar-resize-control:hover{background-color:#e0e0e0}.sidebar-resize-control:hover .toggle-controls{display:block}.sidebar-resize-control .toggle-controls{position:absolute;top:45%;width:100%;display:none;left:2px}.sidebar-resize-control .right-control{margin-left:1px;margin-top:4px;content:"";width:0;height:0;border-left:5px solid #fff;border-top:5px solid rgba(0,0,0,0);border-bottom:5px solid rgba(0,0,0,0)}.sidebar-resize-control .left-control{content:"";width:0;height:0;border-right:5px solid #fff;border-top:5px solid rgba(0,0,0,0);border-bottom:5px solid rgba(0,0,0,0)}.request-access-container textarea{color:#404041;padding:10px;resize:none;display:block;min-height:100px;border:none}.request-access-container .submit-button{height:30px;line-height:0px;color:#fff;background-color:#1b8de2;margin-right:1px;border-radius:30px;padding:10px;color:#fff;border:none;outline:none}.request-access-container .submit-button:disabled{opacity:.65}.request-access-container .cancel-button{line-height:30px;padding:8px;color:#808184;border:none;outline:none;background:rgba(0,0,0,0)}.request-access-container .request-access-input-component{background-color:#f6f6f7;padding:10px;margin:5px -20px 0px -20px;border-left:3px solid #1b8de2}.request-access-container .action-buttons{float:right;margin-bottom:10px;margin-right:10px}#right-sidebar{left:auto;width:0px;position:relative;z-index:1}.expanded-right #right-sidebar{width:400px}.expanded-right .icon-angle-right{float:right;font-size:24px;font-weight:bold;margin:2px 0 0 2px;color:#999}.right-sidebar-minimized .sidebar-openpanel{margin-top:10px}#right-sidebar .tabcontainer{width:2000px;position:absolute;top:40px;bottom:0px}#right-sidebar .tabcontainer.with-send-drafts-button div#feedback-container{padding-bottom:40px}.tab-names{top:0;padding:0;margin:0;height:44px;list-style-type:none;display:flex;position:absolute;width:100%;z-index:404}.tab-names>li{font-size:16px;color:#b1b3b5;text-align:center;box-sizing:content-box;flex-grow:1}.tab-names>li.tab-name:last-child{margin-right:0px}.tab-names>li.icon{margin-right:10px;margin-top:10px;position:absolute;right:0px;cursor:pointer}.tab-names>li .active{color:#808184;border-top:3px solid #808184;padding:9px 0px 15px 0px}.people-panel-button-container{padding-bottom:20px;padding-top:20px;padding-left:30px;padding-right:30px}.people-panel-buttons{padding-bottom:10px;padding-top:10px;padding-left:15px;padding-right:20px}.people-panel-buttons .send-message-text{margin-right:20px;float:right}#right .btn{color:#fff;background:#1b8de2;min-width:167px;margin:auto;display:block;margin-bottom:10px;width:50%}#right .btn:hover{opacity:.7;color:#fff;background:#1b8de2}#right .btn-light{color:#404041;background:#e0e0e0;min-width:167px;margin:auto;display:block;margin-bottom:10px;width:50%}#right .btn-light:hover{opacity:.7;color:#404041;background:#e0e0e0}.disable-feedback-indicator{position:relative}.disable-feedback-indicator .tooltip{transition:opacity .25s;display:none;left:0%;bottom:-35px}.disable-feedback-indicator .tooltip .tooltip-arrow{left:45%}.disable-feedback-indicator .tooltip .tooltip-inner{border-radius:4px;max-width:none;text-align:left;padding:5px}.disable-feedback-indicator .tooltip .tooltip-inner>div{white-space:nowrap}.disable-feedback-indicator:hover .tooltip{display:block;opacity:1}.feedback-filter-icon.activated{color:#404041}.feedback-filter-icon.filtered-feedback{color:#1b8de2}.disabled-option{color:#e0e0e0;cursor:default}#feedback-filter-menu .feedback-filter-title{margin:20px 0px}#feedback-filter-menu .checkbox-section{margin-left:0px}#feedback-filter-menu .mentions-section{margin-left:0px}#feedback-filter-menu .filter-section>label{display:block;padding-right:10px;padding-top:5px}#feedback-filter-menu .filter-section>.ui-select-container{display:block;max-width:350px}#feedback-filter-menu .filter-section::after{clear:both;display:block;content:""}#feedback-filter-menu .filter-section{margin-bottom:10px}#feedback-filter-menu .filter-dropdown{width:70%}#feedback-filter-menu .filter-dropdown button{width:100%;padding:0px 0px 0px 10px;margin:0px 0px}#feedback-filter-menu .filter-dropdown button .value-name{float:left;overflow:hidden}#feedback-filter-menu .filter-dropdown button .dropdown-icon{float:right;margin-top:5px}#feedback-filter-menu .filter-dropdown ul{width:100%;overflow-x:hidden;max-height:200px;overflow-y:auto}#feedback-filter-menu .checkbox-group-header{color:#808184;margin:20px 0px 5px 0px;padding-right:8px}#feedback-filter-menu .button-container{text-align:right}#feedback-filter-menu .button-container button{margin-left:6px}#feedback-filter-menu fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em;margin-bottom:20px;min-width:0}#feedback-filter-menu fieldset>legend{color:#808184;display:inline-block;border:none;width:auto;padding:0px 10px}#feedback-filter-icon{display:inline-block}.user-bubble-message{margin:0px 15px;margin-bottom:10px;border-radius:7px}.people-panel-buttons .user-bubble-message{margin:0px;padding-top:20px}#feedback-container{font-family:Amazon-Ember}#feedback-container .filter-indicator{margin:10px 20px}#feedback-container code{background:inherit;font-size:inherit;color:#8ea9c9;font-family:inherit}#feedback-container .check-out-doc-feedback-limitation{color:#808184;padding:0px 20px;margin-bottom:20px}#feedback-container .leave-overall-comment-container{text-align:left}#feedback-container .leave-overall-comment-container .btn{margin-right:0px;box-shadow:none;-webkit-box-shadow:none}#feedback-container .feedback-submit{background-color:#fff;border-top:1px solid #e0e0e0;position:absolute;bottom:0px;z-index:4}#feedback-container .feedback-submit textarea{min-height:100px;resize:none}#feedback-container .feedback-submit .drafts-count{display:inline-block;vertical-align:middle;margin-left:auto;margin-right:auto;margin-top:0px;margin-bottom:10px}#feedback-container .feedback-submit .feedback-input-container.textarea-infocus textarea{height:150px;min-height:150px}#feedback-container .feedback-submit .drafts-pending-container{line-height:40px;text-align:left;padding:0px 20px;cursor:pointer}#feedback-container .feedback-submit .drafts-pending-container span{color:#fff;width:auto}#feedback-container .feedback-submit-for-drafts-pending{padding:0px;height:40px;background-color:#1b8de2;bottom:0px}#feedback-container .feedback-submit-for-drafts-pending-comp{background-color:#f6f6f7;padding:10px 20px 20px 20px;bottom:0px}#feedback-container .user-deleted-feedback{font-size:12px;color:#b1b3b5}#feedback-container .overall-comment{padding-bottom:10px;transition:opacity;transition-duration:.5s;transition-timing-function:ease;opacity:1}#feedback-container .overall-comment.zero-opacity{opacity:0}#feedback-container .send-drafts-box{margin-top:10px}#feedback-container .tooltip{transition:opacity .25s;display:none}#feedback-container .tooltip .tooltip-inner{border-radius:4px;max-width:none;text-align:left;padding:5px}#feedback-container .tooltip .tooltip-inner>div{white-space:nowrap}#feedback-container .private-section:hover .tooltip,#feedback-container .at-mention:hover .tooltip,#feedback-container .question-mark-thing:hover .tooltip,#feedback-container .private-indicator:hover .tooltip,#feedback-container .paste-highlighted:hover .tooltip,#feedback-container.disabled-comments .links-wrapper a:hover .tooltip,#feedback-container .deleted-top-level-feedback>.links-wrapper a:hover .tooltip{display:block;opacity:1}#feedback-container .feedback-error-msg{color:#df3312}#feedback-container .feedback-warning-msg{color:#1b8de2}#feedback-container .selected-person-no-comments{padding:10px}#feedback-container .loading-indicator{padding:20px 0px;padding-left:20px}#feedback-container .mentions-container{font-size:12px;color:#8ea9c9;margin-top:10px}#feedback-container .comment{position:relative;padding-top:10px;border-bottom:1px solid #e0e0e0;margin:0}#feedback-container .comment .name-text{font-size:13px;color:#404041;display:block;width:75%;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}#feedback-container .comment .creation-date{font-size:10px;color:#808184;margin-left:0}#feedback-container .comment:last-child{border-bottom:none}#feedback-container .comment:hover,#feedback-container .comment.selected{background:#f6f6f7}#feedback-container .comment.selected:not(.comment-editing){box-shadow:3px 0px 0px 0px #1b8de2 inset;-webkit-box-shadow:3px 0px 0px 0px #1b8de2 inset;-moz-box-shadow:3px 0px 0px 0px #1b8de2 inset}#feedback-container .comment-editing{background-color:#f6f6f7;border-left:3px solid #1b8de2}#feedback-container .annotation{position:relative}#feedback-container .annotation .text{white-space:normal !important;word-wrap:break-word}#feedback-container .annotation .text .muted{color:#d0d2d3}#feedback-container .annotation-square{display:none}#feedback-container .feedback{margin:10px 0px}#feedback-container .more-muted{color:#a7a7a7;font-size:11px}#feedback-container .post{margin-left:20px;margin-top:10px;cursor:pointer}#feedback-container .post>.text-content{margin-top:5px;cursor:initial;overflow-wrap:break-word;padding-right:20px}#feedback-container .post>.text-content p{font-size:13px;margin:0px;color:#808184;margin-bottom:10px}#feedback-container .post>.text-content h1,#feedback-container .post>.text-content h2,#feedback-container .post>.text-content h3,#feedback-container .post>.text-content h4,#feedback-container .post>.text-content h5,#feedback-container .post>.text-content h6{display:block;margin-top:20px;margin-bottom:20px}#feedback-container .post>.text-content ul{list-style-type:initial;list-style:initial}#feedback-container .post>.text-content ul li{list-style-type:disc;list-style:disc}#feedback-container .post>.text-content ul li ul li{list-style-type:circle;list-style:circle}#feedback-container .post>.text-content ol{list-style-type:decimal;list-style:decimal}#feedback-container .post>.text-content ol li{list-style-type:decimal;list-style:decimal}#feedback-container .post>.text-content ol li ol li{list-style-type:lower-latin;list-style:lower-latin}#feedback-container .post>.text-content ul,#feedback-container .post>.text-content ol{padding-left:30px}#feedback-container .post>.text-content sub,#feedback-container .post>.text-content sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}#feedback-container .post>.text-content sub{bottom:-0.25em}#feedback-container .post>.text-content sup{top:-0.5em}#feedback-container .post>.text-content del{color:#e80000}#feedback-container .post .post{margin-right:0px;margin-left:30px;padding-top:10px;border-top:none}#feedback-container .overall-comment .post{cursor:initial}#feedback-container .top-level-post{margin-top:0px}#feedback-container .text-content{font-size:12px;color:#808184}#feedback-container .text-content a{color:#1b8de2}#feedback-container .text-content em{font-style:italic}#feedback-container .text-content strong{font-weight:bold}#feedback-container .attribute-marker{float:left;margin-right:5px;background:#b1b3b5;border-radius:4px;color:#fff;padding:0px 5px}#feedback-container .attribute-marker .attribute-text,#feedback-container .attribute-marker .attribute-icon{display:inline-block;vertical-align:middle}#feedback-container .reply-wrapper{clear:both}#feedback-container .top-level-reply-input-wrapper{margin-left:-20px;padding:10px 10px;background-color:#f6f6f7;border-left:3px solid #1b8de2}#feedback-container .top-level-edit-input-wrapper{padding:10px 10px 10px 0px}#feedback-container .second-level-edit-input-wrapper{margin-left:-50px;background-color:#f6f6f7;border-left:3px solid #1b8de2;padding:10px 10px 10px 50px}#feedback-container .second-level-reply-input-wrapper{margin-left:-50px;background-color:#f6f6f7;border-left:3px solid #1b8de2;padding:10px 15px 10px 50px}#feedback-container .resolution-status{margin-left:5px;display:inline-block;border-radius:5px;padding:2px}#feedback-container .resolution-status.resolved-status{color:green;border:1px solid green}#feedback-container .resolution-status.unresolved-status{color:#bd4141;border:1px solid #bd4141}#feedback-container .links-wrapper{line-height:30px;font-size:13px;clear:both;margin-bottom:16px;margin-top:5px}#feedback-container .links-wrapper:after{content:"";clear:both;display:table}#feedback-container .links-wrapper a{font-size:13px;color:#808184;cursor:pointer;font-weight:500;margin-right:15px}#feedback-container .links-wrapper a .tooltip.top{top:-34px;left:-15px}#feedback-container .links-wrapper a .tooltip.top .tooltip-arrow{left:40px}#feedback-container .links-wrapper a:hover{color:#1b8de2}#feedback-container.disabled-comments .text-content{color:#d9d8db}#feedback-container.disabled-comments .links-wrapper a{position:relative;color:rgba(142,169,201,.5)}#feedback-container .deleted-top-level-feedback>.links-wrapper a{position:relative;color:rgba(142,169,201,.5)}#feedback-container .feedback-settings{cursor:pointer;margin-bottom:2px}#feedback-container .feedback-settings-body{padding:10px;padding-left:20px;padding-right:0px}#feedback-container .annotation-input-wrapper{padding:0px 10px 10px 10px}#feedback-container .version-header-container{background-color:#fff;color:#404041;height:35px;line-height:35px;border-top:1px solid #e0e0e0;cursor:pointer}#feedback-container .version-header-container .text{padding-left:20px;display:inline-block}#feedback-container .version-header-container .chevron{font-size:13px;vertical-align:sub;margin-right:20px}#feedback-container .feedback-settings .version-header-container .text{padding-left:0px}#feedback-container .feedback-section-wrapper{margin-top:1px}.sidebar-page-title-container{height:20px;line-height:20px;background-color:#f6f6f7;color:#808184}.sidebar-page-title-container .text{text-transform:lowercase;color:#808184;display:inline-block}.sidebar-page-title-container .text:first-letter{text-transform:capitalize}.sidebar-page-title-container .text-wrapper{padding-left:20px}.sidebar-page-title-container.active .text-wrapper{color:#fff}.sidebar-page-title-container .ruler{margin-top:-0.87em;padding-bottom:.75em;border-top:none}.sidebar-page-title-container .photo{float:left;padding-top:15px;padding-left:20px;font-size:20px;color:#f8b35c}.feedback-textarea-wrapper{padding-right:5px;color:#000}.feedback-textarea-wrapper .editor-comp{background-color:#fff;border-radius:5px;line-height:1;font-size:14px;font-weight:normal;border:1px solid #ccc;min-height:20px;padding:5px}.sidebar-panel.approval-sidebar-panel{position:relative}approval-files-container{display:block}new-approval-request-panel{display:block;height:100%;position:relative}new-approval-request-panel h3{font-weight:bold;font-size:13px;margin-bottom:9px;display:block}new-approval-request-panel h3 span{color:#808184;font-weight:normal}new-approval-request-panel .hint-text{color:#808184;font-weight:normal}new-approval-request-panel input,new-approval-request-panel textarea{padding:5px;display:block;border:1px solid #e0e0e0;margin-bottom:26px;width:100%}new-approval-request-panel textarea{min-height:88px;resize:vertical;max-height:200px;margin-bottom:5px}new-approval-request-panel .buttons-container{float:right}new-approval-request-panel .approval-panel-body{padding:0px 20px;height:calc(100% - 60px);margin-bottom:60px;overflow-y:auto}new-approval-request-panel .approval-panel-footer{position:absolute;height:60px;bottom:0;width:100%;padding:10px 20px}new-approval-request-panel .approval-files-container-wrapper{overflow-y:auto;margin:0px -20px}new-approval-request-panel .approval-files-container-wrapper.disabled{opacity:.6;cursor:not-allowed}new-approval-request-panel .approval-files-container-wrapper.disabled .remove-approval-file-folder-item{display:none}new-approval-request-panel .approval-files-container-wrapper .approval-file-folder-item{padding:10px 20px;border-bottom:1px solid #e0e0e0}new-approval-request-panel .approval-files-container-wrapper .remove-approval-file-folder-item{float:right}new-approval-request-panel .approval-files-container-wrapper .resource-icon{vertical-align:middle;margin-right:5px}new-approval-request-panel .approval-resource-count-section{padding:10px 20px}new-approval-request-panel .loading-section{height:100%;width:100%;text-align:center}new-approval-request-panel .loading-section .progress-indicator,new-approval-request-panel .loading-section .progress-indicator-file-browser-item{display:inline-block;margin-top:100px}.sidebar-title-bar{background:#e0e0e0;width:100%;padding:4px 9px;position:relative;min-height:20px}.inherited-access-folder-wrapper{cursor:pointer}.sidebar-title-bar a{color:#808184;padding-top:3px;float:left;margin-left:20px}.sidebar-title-bar a:hover{color:#404041}.sidebar-title-bar-shared{height:40px}.sidebar-title-bar-shared .inherited-access-carat{position:absolute;right:20px;top:10px}.sidebar-shared-folder-text{position:relative;word-wrap:break-word;white-space:normal;color:#808184}.sidebar-title-bar-shared a{position:absolute;margin-left:20px}.sidebar-title-bar-shared .folder-icon{float:left;font-size:18px;margin-top:2px !important;margin-left:5px !important;color:#808184;width:24px;min-height:24px}.sidebar-title-bar-shared .icon-caret-down{float:right;margin:5px 10px 0 0;font-size:14px}.sidebar-title-bar-shared.active a{color:#808184}.sidebar-title-bar-shared.active .icon-caret-down{-webkit-transform:rotate(-180deg);-moz-transform:rotate(-180deg);-ms-transform:rotate(-180deg);-o-transform:rotate(-180deg)}.sidebar-version-tile-container{height:32px;position:relative}.sidebar-version-tile-container .text{position:absolute;padding-left:10px;padding-top:5px;padding-bottom:15px;font-size:12px;color:#808184;font-weight:bold}.sidebar-version-tile-container .photo{float:left;padding-top:15px;padding-left:20px;font-size:20px;color:#808184}.sidebar-title-bar .sidebar-title-bar-add{text-transform:none;color:#808184;right:90px;position:absolute;padding-top:0;width:20px;font-size:12px}.sidebar-add-comment-text{text-transform:none;color:#808184;padding-bottom:204px;position:relative;font-size:14px}.sidebar-no-comment-text{width:100px;margin-bottom:20px;text-overflow:clip}.sidebar-margin .btn,#overall-feedback .btn{width:240px;margin-left:auto;margin-bottom:7px;margin-right:auto;display:block}document-version-feedback:focus{outline:none}#people hr,#feedback hr,#overall-feedback hr{width:280px}#people-div .btn{box-sizing:content-box}#feedback-container #loading-feedback{text-align:center;color:#808184}.feedback-selector,.feedback-selector>a{color:#fff;width:270px}.feedback-selector>*{color:#000}.instructions{padding-top:15px;padding-bottom:10px}.instructions .quick-comment-btn{box-sizing:content-box;margin-left:auto !important;margin-right:auto !important;display:block}.show_comment_count{color:#8ea9c9}.group-entry-separator{width:40px;border-top:1px solid #e0e0e0}.user-person-entry-wrapper .remove-permission{visibility:hidden}.user-person-entry-wrapper:hover .remove-permission{visibility:visible}.person-entry-wrapper{padding-left:20px;padding-right:10px}.person-entry-wrapper .remove-permission{visibility:hidden}.person-entry-wrapper:hover .remove-permission{visibility:visible}.contributor-entry{width:100%;margin:0}.contributor-entry.selected{background:#e0e0e0}.contributor-entry .group:hover{text-decoration:underline}.contributor-entry.clickable:hover .muted,.contributor-entry.selected .muted{color:#928f8f}.contributor-entry.clickable:hover .text,.contributor-entry.selected .text{color:#404041}.person-entry-wrapper:last-child .contributor-entry{border-bottom:1px solid #e0e0e0}.icon-chevron-right{margin-right:11px;color:#928f8f}.icon-chevron-left{float:left;margin-left:5px;margin-top:3px;color:#928f8f}.filter-text{color:#808184;text-align:center;word-wrap:break-word}.feedback-icon{float:left;margin-top:5px}.group-info .group-name{border-top:1px solid #e0e0e0;border-bottom:1px solid #e0e0e0;padding:0px 20px;height:51px;vertical-align:middle;line-height:50px}.group-info .group-load-more{text-align:center;color:#808184;height:30px;cursor:pointer}.group-info .group-error{border:0px;padding:15px;color:#1b8de2}.empty-comment-message{font-size:14px;margin-left:5px;color:#df3313;float:left;padding-left:10px;padding-top:10px}.de .empty-comment-message,.fr .empty-comment-message{text-align:left;padding-top:0px}.de .empty-comment-message{width:70%}.fr .empty-comment-message{width:60%}.comment-instructions{float:left;padding-left:9px;color:#808184;font-size:12px}.overall-comment .text,.contributor-entry .text{padding:10px 15px 10px 0;margin-left:60px;word-wrap:break-word;color:#404041;white-space:normal}.people-entry .text .muted{color:#808184}.clickable{cursor:pointer}.feedback-version{height:100%}.feedback-filter{border-top:1px solid #e0e0e0;border-bottom:1px solid #e0e0e0;padding:10px 20px}.feedback-filter-full{position:relative}.feedback-filter-compressed{position:fixed;top:44px;z-index:504}.dropdown-arrow{display:inline-block;vertical-align:2px;margin-left:5px}.atwho-view{min-width:300px}.atwho-view .sprite-icon{float:left;@extent .wd-text-r12;margin-top:10px}.atwho-view ul li{border:none;padding-left:5px;padding-right:5px}.atwho-view .user-info{color:#404041;@extent .wd-text-r12;font-weight:bold;margin-left:25px}.atwho-view .user-aux-info{color:#808184;@extent .wd-text-r12;margin-left:25px}.atwho-view .cur{background:#f6f6f7;color:#404041}.feedback-input-container .textarea-wrapper{position:relative}.feedback-input-container em{font-style:italic}.feedback-input-container .private-section{color:#404041;position:relative;margin-top:10px}.feedback-input-container .private-section .tooltip{left:-10px;bottom:28px}.feedback-input-container .private-section .tooltip .tooltip-arrow{left:25%}.feedback-input-container .notification-contributors{color:#404041;margin-bottom:10px}.feedback-input-container .textfield-icons{position:absolute;right:10px;bottom:5px}.feedback-input-container .textfield-icons>div{margin-bottom:5px;position:relative}.feedback-input-container .paste-highlighted{cursor:pointer}.feedback-input-container .paste-highlighted .tooltip{right:-5px;bottom:120%}.feedback-input-container .paste-highlighted .tooltip .tooltip-arrow{right:10px;left:90%}.feedback-input-container .at-mention{cursor:pointer}.feedback-input-container .at-mention .tooltip{right:-5px;bottom:120%}.feedback-input-container .at-mention .tooltip .tooltip-inner{background-color:#fff;color:#808184;-webkit-box-shadow:-1px 1px 5px 0px rgba(0,0,0,.75);-moz-box-shadow:-1px 1px 5px 0px rgba(0,0,0,.75);box-shadow:-1px 1px 5px 0px rgba(0,0,0,.75);line-height:1.7}.feedback-input-container .at-mention .tooltip .tooltip-arrow{right:10px;left:90%;border-top-color:#fff}.feedback-input-container textarea{color:#808184;border:none;padding:5px;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;-webkit-transition:none;-moz-transition:none;display:block;padding-right:30px;resize:none;overflow:hidden;max-width:100%;min-width:100%}.feedback-input-container textarea:-ms-input-placeholder{color:gray}.feedback-input-container textarea[disabled]{background-color:#b1b3b5;color:#808184}.feedback-input-container .post-button-container{background-color:#fff;margin-bottom:10px}.feedback-input-container .cancel-button,.feedback-input-container .submit-button{padding:8px;color:#808184;border:none;outline:none;height:30px;line-height:0px}.feedback-input-container .cancel-button:disabled,.feedback-input-container .submit-button:disabled{opacity:.65}.feedback-input-container .feedback-footer .left-section{float:left}.feedback-input-container .feedback-footer .right-section{float:right}.feedback-input-container .feedback-footer .icon{color:#b1b3b5;margin-left:10px}.feedback-input-container .action-buttons{float:right}.feedback-input-container .action-buttons .check-icon{top:3px;position:relative;right:5px}.feedback-input-container .cancel-button{background:rgba(0,0,0,0);padding:0px 15px}.feedback-input-container .submit-button{color:#fff;background-color:#1b8de2;margin-right:10px;margin-bottom:10px;padding:0px 15px;border-radius:30px;height:30px;line-height:30px;text-align:center;min-width:50px}.feedback-input-container .submit-button:disabled{background-color:#e0e0e0}.feedback-input-container .mentions-container{position:relative}.feedback-input-container .full-mentions-list{position:absolute;color:#fff;background-color:#000;padding:10px;border-radius:5px;top:25px;right:0px;z-index:2;-webkit-box-shadow:-1px 1px 5px 0px rgba(0,0,0,.75);-moz-box-shadow:-1px 1px 5px 0px rgba(0,0,0,.75);box-shadow:-1px 1px 5px 0px rgba(0,0,0,.75)}.feedback-input-container .full-mentions-list>div{margin-bottom:5px}.feedback-input-container .full-mentions-list::before{content:"";position:absolute;right:30px;top:-7px;width:0;height:0;border-left:7px solid rgba(0,0,0,0);border-right:7px solid rgba(0,0,0,0);border-bottom:7px solid #e0e0e0}.input-hint-tooltip .format-text-heading,.input-hint-tooltip .keyboard-shortcuts-heading{border-bottom:1px solid #e0e0e0;margin-bottom:5px}.general-feedback-wrapper{margin:20px 20px}.general-feedback-wrapper textarea{height:100px;min-height:100px;padding-left:5px;padding-right:5px}.general-feedback-wrapper .feedback-input-component{background-color:#f6f6f7;margin:-20px;padding:10px;border-left:3px solid #1b8de2}.tab-names .tab-name .file-info-icon{margin-top:2px}.activity-element{white-space:normal;padding:20px 20px 20px;color:#808184;clear:both;display:block}.activity-element .muted{color:#b1b3b5}.activity-text{margin-left:40px}h1{display:inline-block;font-size:20pt;margin:auto}h2{display:inline-block;font-size:16pt;margin:auto}h3{font-size:12pt;margin-bottom:0;display:inline}input.ng-dirty.ng-invalid{border:solid 2px #eed3d7}input.hidden{position:relative;text-align:right;opacity:0}.grayed{color:gray}.overlay{color:#808184}.overlay a{color:#808184}.overlay a:hover{color:#f8b35c;text-decoration:none}#feedback-overlay .skew-cw{transform:rotate(7deg);-ms-transform:rotate(7deg);-moz-transform:rotate(7deg);-webkit-transform:rotate(7deg)}#feedback-overlay .skew-ccw{transform:rotate(-7deg);-ms-transform:rotate(-7deg);-moz-transform:rotate(-7deg);-webkit-transform:rotate(-7deg)}#feedback-overlay .upload-instructions{position:fixed;right:280px;top:60px;width:360px}#feedback-overlay .controls{position:fixed;bottom:10px;left:40%;text-align:center}#feedback-overlay .feedback-border{padding:5px 60px;border:1px solid #808184}#feedback-overlay .sidebar-instructions{position:fixed;top:40px;left:40px;width:180px}#feedback-overlay .submit-instructions{position:fixed;right:15px;bottom:20px;width:290px}#feedback-overlay .input-instructions{position:fixed;top:35%;right:15px;width:290px}#feedback-overlay .feedback-instructions{position:fixed;top:35%;left:20%}#feedback-overlay .feedback-instructions #centered-text{position:absolute;top:10px;left:10px;width:300px}.circle{width:10px;height:10px;background-color:#f8b35c;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px}.larger-circle{width:20px;height:20px;background-color:#f8b35c;opacity:.3;-webkit-border-radius:10px;-moz-border-radius:10px;border-radius:10px}@media(min-width: 992px){.modal-lg{width:720px}}@media(min-width: 992px){.modal-md{width:490px}}@media(min-width: 992px){.modal-sl{width:460px}}@media(min-width: 992px){.modal-sm{width:350px}}.modal-header{padding:0 22px !important;height:44px !important;color:#fff;background-color:#fff;font-weight:300 !important;border:none !important;line-height:55px !important;color:#404041}.modal-header h3{line-height:55px !important;color:#404041}.modal-header .close{margin:2px 0 0 0;padding:0;opacity:1;position:absolute;top:12px;right:17px}.modal-header button{outline:none}.modal-body{background-color:#fff;padding-left:22px;padding-right:22px;color:#808184}.modal-body h3{line-height:33px !important;color:#404041}.modal-body a.action-button{text-decoration:none;color:#1b8de2;border-bottom:1px solid #1b8de2}.modal-body div.email-list-item{color:#808184}.modal-body table.email-list{border:none;margin:0px;width:100%;border-collapse:collapse;padding:5px 0px}.modal-body table.email-list tr:hover{background:none}.modal-body table.email-list td{padding:5px 0px}.modal-full-width{margin:0px -22px;padding:0px 22px;background-color:#f6f6f7}.modal-content{border:0}.modal-footer{color:#808184;background-color:#352e30;text-align:right;padding:5px 24px 26px 22px;background-color:#fff !important;border:none !important;margin:0 !important}.modal-footer .btn{display:inline-block;color:#fff;background:#1b8de2;border:none;height:30px;padding:0px 15px;min-width:70px;border-radius:30px}.modal-footer .btn-default{color:#333;background-color:#fff;border:1px solid rgba(0,0,0,.2)}.modal-footer .cancelBtn{border:1px solid #dfdddf !important;background-color:#fff !important;color:#3a4144 !important}.modal-footer .cancelBtn:hover{opacity:.6}.email-list .email{position:relative;padding:10px;font-size:16px}.email-list .email:last-child{border-bottom:none}.email-list .email.ng-leave{transition:.3s linear all;opacity:1}.email-list .email.ng-leave.ng-leave-active{opacity:0}.email-list .email label:hover~.notContributorLabel{display:inline-block;position:relative}.email-list .email label:hover~.contributorLabel{display:inline-block;position:relative}.email-list .email .notContributorLabel{display:none;background-color:#000;color:#fff;border-radius:4px;padding:3px 6px;white-space:nowrap;width:408px}.email-list .email .contributorLabel{display:none;background-color:#000;color:#fff;border-radius:4px;padding:3px 6px;white-space:nowrap;width:198px}.email-list .email .notContributor{opacity:.3}.email-list .email .pull-left{padding-top:5px}.email-list .ellipsis{max-width:90%;margin-right:22px;position:relative;display:inline-block;vertical-align:middle}.menu-list{z-index:9999}.create-folder-input{height:40px;background-color:rgba(0,0,0,0);padding-right:20px;border:none;width:100%}.create-folder-input::-ms-clear{display:none}.create-folder-input-wrapper:after{content:"\E911";color:#1b8de2;font-family:"WorkDocs-icons-beta";font-size:16px;float:right;top:-28px;position:relative}.companion-download-btn{display:block;margin:20px auto;height:auto;padding:5px 10px;width:45%}.companion-download-btn:focus{color:#fff !important}.sendMessageModal .form-control{width:550px;resize:none}.transfer-modal .transfer-container{padding:5;position:relative;box-sizing:border-box;margin-top:11px}.transfer-modal .textfield-wrapper{padding-bottom:20px}.transfer-modal .inputbox{height:40px;width:100%}.task-list{display:inline;margin:5px}.contact-admin-modal input[type=text]{color:#303542;border:1px solid #d0d2d3;padding:0 11px !important;border-radius:2px;height:30px;width:60%;margin-top:10px;font-weight:300;box-sizing:border-box}.contact-admin-modal textarea{color:#303542;border:1px solid #d0d2d3;padding:0 11px !important;border-radius:2px;height:120px;width:100%;margin-top:15px;font-weight:300;box-sizing:border-box;margin-bottom:15px}.contact-admin-modal .contact-admin-title{height:20px}.share-modal a.feedback-disabled-link{color:gray;cursor:not-allowed;vertical-align:middle}.share-modal a{outline:none;text-decoration:none}.share-modal button{outline:none}.share-modal input[type=text]{color:#303542;border:1px solid #d0d2d3;padding:0 11px !important;border-radius:2px;height:41px;font-weight:300;box-sizing:border-box}.share-modal .search-user{width:100%}.share-modal #share-link.anim{-webkit-animation:blink .5s;-moz-animation:blink .5s;animation:blink .5s}.share-modal #copy-button{width:22%}.share-modal .form-control{background-color:#fff}.share-modal .right-button{background-color:#fff;border:1px solid #d0d2d3;outline:none !important;box-shadow:none !important;width:100%;height:39px;color:#808184;line-height:39px;padding:0px;cursor:pointer}.share-modal .right-button:hover,.share-modal .right-button:focus,.share-modal .right-button:active{border-color:#d0d2d3 !important;color:#404041;outline:none !important;box-shadow:none !important}.share-modal .right-button .role-text{text-align:center}.share-modal .right-button .dropdown-toggle-icon{position:relative;top:8px;padding-right:0}.share-modal #invite-specific{margin-top:16px}.share-modal .share-option-container{position:relative}.share-modal .personal-message{display:inline-block;vertical-align:middle;font-weight:300}.share-modal .share-veritcal-splitter{display:inline-block;vertical-align:middle;width:11px;height:22px;margin-right:11px;border-right:1px solid #d0d2d3}.share-modal .feedback-option{display:inline-block;vertical-align:middle;font-weight:300}.share-modal .share-link-option{display:inline-block;vertical-align:middle;font-weight:300}.share-modal .share-link-option.container-hovering{color:#8ea9c9}.share-modal .deadline-box{display:inline;width:60%;padding:0;vertical-align:middle}.share-modal .date-input{width:110px;height:30px}.share-modal .date-input:focus{border:1px solid #d0d2d3 !important}.share-modal .deadline-text{margin-right:11px}.share-modal .time-box{margin-left:11px;display:inline-block}.share-modal .time-box .form-control{width:113px}.share-modal .greyLayer{opacity:.2}.share-modal .check-box{width:50%;display:inline-block}.share-modal .check-box label{font-weight:300}.share-modal .right-part{width:20%;padding-left:11px}.share-modal .right-btn{float:right;width:23%}.share-modal .owner-role{display:inline-block;text-align:center;padding:2px 6px 3px}.share-modal .share-part{padding:0;position:relative;width:100%;box-sizing:border-box;margin-top:11px}.share-modal .more-options{padding:0;position:relative;width:100%;margin-top:11px}.share-modal .message-area{width:96%;height:66px;resize:none;padding:11px !important;font-weight:300;border:1px solid #d0d2d3;border-radius:2px;box-sizing:border-box}.share-modal .message-area:focus{box-shadow:none;border-color:#1b8de2;outline:none}.share-modal .non-contributor-message{margin:0;color:#404041;background-color:#f6f6f7;border:none}.share-modal .more-options .close-button{background:rgba(0,0,0,0);border:0;color:#000;font-size:22px;height:22px;line-height:22px;font-weight:200;right:2px;position:absolute;top:0}.share-modal input.chars-remaining{background-color:rgba(0,0,0,0);border:none;padding-left:0;width:80px;position:relative}.share-modal .email-list{background:#fff;margin:11px 0 0 0;display:block;height:120px;width:100%;overflow:auto;border:1px solid #d0d2d3;padding:6px;border-radius:2px}.share-modal .email-list .email{padding:0 0 0 10px}.share-modal .email-list .dropdown-toggle-icon{border:0}.share-modal .timeinput{width:113px;height:41px;vertical-align:middle;padding:0 !important;box-shadow:none;background:#fff;display:inline-block;border:1px solid #d0d2d3;text-align:center;border-radius:2px !important}.share-modal .timeinput span a{display:inline-block;vertical-align:middle}.share-modal .timeinput span input[type=text]{width:18px;display:inline-block;text-align:center;border:none;box-shadow:none;padding:0 !important;height:38px}.share-modal .timeinput span input[type=text]:focus{outline:none}.share-modal .timeinput .meridian{color:#555}.share-modal .timeinput .prepend{float:left}.share-modal .timeinput:focus,.share-modal .timeinput:active{outline:none}.share-modal .role-dropdown-button{border:none}.share-link-modal .selected{color:#1b8de2}.share-link-modal .disabled{color:#e0e0e0}.share-link-modal .modal-header{background-color:#fff}.share-link-modal .modal-header .modal-title{color:#404041;padding-top:20px}.share-link-modal .body-container{margin:0px;padding:0px}.share-link-modal .access-level-detail{padding:0px 22px;margin-bottom:22px;margin-top:11px}.share-link-modal .access-level-detail.alert.alert-danger{padding:11px 22px}.share-link-modal .link-access-level{color:#404041;padding:0px 22px}.share-link-modal .link-access-level .access-legend{padding-top:7.5px}.share-link-modal .link-access-level .access-level-description{padding-top:5px;padding-bottom:15px}.share-link-modal .link-access-level .access-level-description_inherited_access{padding-top:5px;padding-bottom:15px;color:#aa4645}.share-link-modal .link-access-level .link-scope-option{display:inline-block;margin-right:20px;margin-bottom:5px}.share-link-modal .settings-body{padding:0px 22px;margin-top:27.5px;margin-bottom:11px}.share-link-modal .settings-body .setting{display:inline-block}.share-link-modal .settings-body .setting-header{margin-bottom:5px}.share-link-modal .settings-body .setting-name{color:#404041;margin-right:5px}.share-link-modal .settings-body input{border:1px solid #e0e0e0;padding:5px;cursor:default;height:30px}.share-link-modal .settings-body input#link-expiration-date{margin-right:5px;width:105px}.share-link-modal .settings-body input#link-passcode{width:75px;letter-spacing:5px;padding-left:10px}.share-link-modal .settings-body button.ui-datepicker-trigger{display:none}.share-link-modal .modal-footer{padding:22px;text-align:left}.share-link-modal .modal-footer input#share-link{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:62%;border:1px solid #e0e0e0;padding:5px;color:#404041;margin-right:-5px;vertical-align:middle}.share-link-modal .modal-footer button{width:38%;vertical-align:middle}.material-switch>input[type=checkbox]{display:none}.material-switch>label{cursor:pointer;position:relative;width:50px;padding-top:8px;padding-bottom:8px}.material-switch>label div{background-color:#e0e0e0;height:3px}.material-switch>label::after{background:#fff;border-radius:16px;border:2px solid #808184;content:"";height:14px;left:-4px;margin-top:-3px;position:absolute;top:5px;transition:all .3s ease-in-out;width:14px}.material-switch>input[type=checkbox]:checked+label div{background-color:#1b8de2}.material-switch>input[type=checkbox]:checked+label div{background-color:#1b8de2}.material-switch>input[type=checkbox]:checked+label::after{background:#1b8de2;left:40px;border:2px solid #1b8de2}.switch{position:relative;display:inline-block;width:30px;height:17px}.switch input{display:none}.switch>.slider{position:absolute;cursor:pointer;top:0;left:0;right:0;bottom:0;margin:0px;background-color:#ccc;-webkit-transition:.4s;transition:.4s}.switch>.slider:before{position:absolute;content:"";height:17px;width:17px;background-color:#808184;-webkit-transition:.4s;transition:.4s}.switch>input:checked+.slider{background-color:#e0e0e0}.switch>input:focus+.slider{box-shadow:0 0 1px #e0e0e0}.switch>input:checked+.slider:before{-webkit-transform:translateX(13px);-ms-transform:translateX(13px);transform:translateX(13px);background-color:#1b8de2}.switch>.slider.round{border-radius:17px}.switch>.slider.round:before{border-radius:50%}.passcode_modal input[type=text]{margin-top:15px;margin-bottom:15px;width:100%}.passcode_modal div{font-size:14px}.passcode_modal .error{color:red}.redtext{color:red}.share-modal-search-results-dropdown-menu{background-color:#fff;z-index:9999;margin:0px;padding:0px;margin-top:-1px;border:1px solid #303542;border-top:none}.share-modal-search-results-dropdown-menu:after{display:none !important}.share-modal-search-results-dropdown-menu li:hover{background-color:#f6f6f6}.share-modal-search-results-dropdown-menu li.active{background-color:#b7c6db}.share-modal-search-results-dropdown-menu li.active a{background-color:rgba(0,0,0,0);color:#000}.share-modal-search-results-dropdown-menu li.active a:hover{background-color:rgba(0,0,0,0);color:#000}.share-modal-search-results-dropdown-menu li a{background-color:rgba(0,0,0,0);color:#000}.share-modal-search-results-dropdown-menu li a:hover{color:#000;background-color:rgba(0,0,0,0)}.typeahead-item{outline:none}@-webkit-keyframes blink{0%{background-color:#eee}50%{background-color:#e0e0e0}100%{background-color:#eee}}@-moz-keyframes blink{0%{background-color:#eee}50%{background-color:#e0e0e0}100%{background-color:#eee}}@keyframes blink{0%{background-color:#eee}50%{background-color:#e0e0e0}100%{background-color:#eee}}.edit-modal .client-icon{float:left;display:inline-block;width:45%}.edit-modal .client-icon img{width:100%}.edit-modal .verticalLine{border-left:2px solid #000;display:inline-block;height:132px;margin-left:22px}.edit-modal .message{float:right;width:45%;padding-top:11px}.move-modal-body{padding:16px 22px;height:300px}.move-modal-body .file-to-move-container{padding-top:4px;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.move-modal-body .folder-bread-crumb{display:inline-block}.move-modal-body .move-path-spacer{padding-right:5px}.move-modal-body .move-modal-crumb-folder,.move-modal-body .move-path-spacer,.move-modal-body .move-modal-current-folder{font-size:14px}.move-modal-body .folder-breadcrumb-back{padding-top:3px}.move-modal-body .breadcrumb-container{text-overflow:ellipsis;display:inline-block;white-space:nowrap;overflow:hidden;width:526px}.sub-folder-list{position:absolute;left:20px;top:93px;width:93%;height:188px;white-space:nowrap;overflow:hidden}.sub-folder-list .sub-folder-info-container{text-align:center;padding-top:100px}.sub-folder-list .sub-folder-container{margin:0}.sub-folder-list .sub-folder-row{width:100%;height:35px;cursor:pointer}.sub-folder-list .sub-folder{width:100%;height:100%;padding-top:10px}.sub-folder-list .sub-folder-row:hover{background-color:#f6f6f6}.sub-folder-list .sub-folder-disabled{background-color:#a9a9a9}.sub-folder-list .sub-folder-selected{background-color:#d8deea}.sub-folder-list .sub-folder-icon{display:inline-block;position:relative;top:2px}.sub-folder-list .sub-folder-name{font-size:14px}.tour-modal-header,.tour-modal-footer,.tour-modal-body{background:#fff;color:#404041;border:none;text-align:left}.tour-modal-footer{padding:18px 20px 5px 20px}.tour-modal-header,.tour-switch{position:relative;z-index:4000}.tour-modal-body{padding:10px 0px}.tour-modal-body img{width:600px;height:370px}.tour-title{color:#404041;font-size:18px}.tour-text{color:#404041;font-size:16px}.tour-highlight-text{color:#1b8de2}@media screen and (-webkit-min-device-pixel-ratio: 2),screen and (max-moz-device-pixel-ratio: 2){.tour-switch .screen-icon.unselected{background-image:url(images/Ellipse_grey@2x_d05d53e4852bd49c8e85bbdb596ad53b.png)}.tour-switch .screen-icon.selected{background-image:url(images/Ellipse_blue@2x_25927e26acf9122aa8d1df6d8653df5e.png)}}.tour-switch .tour-btn{width:175px}.tour-switch .tour-btn:focus{outline:none}.tour-switch .tutorial-btn{width:70px}.tour-control{height:25px;padding-bottom:5px}.tour-control input{margin-top:0;margin-bottom:2px}.tour-control .text-control{margin-left:8px}.domain-input{margin:10px 0 10px 30px;width:323px;height:41px}.domain-list{margin-top:10px;margin-left:30px;overflow:auto;border:1px solid #dfdddf;width:90%;height:88px;font-size:16px;font-weight:300}.domain-list .domain{padding:11px !important;border-bottom:1px solid #e0e0e0;font-size:16px}.domain-list .domain:last-child{border-bottom:none}.domain-list .domain.ng-leave{transition:.3s linear all;opacity:1}.domain-list .domain.ng-leave.ng-leave-active{opacity:0}.domain-list .ellipsis{width:90%;position:relative;display:inline-block;vertical-align:middle}.domain-list:focus,.domain-list:active,.domain-list:hover{border-color:#dfdddf !important;outline:none !important;box-shadow:none !important}.admin .list-group{margin-bottom:0}.admin label{display:inline;vertical-align:-1px}.admin .list-group-item{border:none;padding:5px 0px;margin:0px;position:relative}.admin .list-group-item input[type=radio]{margin-right:13px}.admin-storage-modal .form-control{width:110px;height:30px;display:inline-block}.admin-storage-modal .list-group{padding-bottom:30px}.admin-storage-modal .storage-limit-size{background-color:#fff;color:#808184;width:100px;height:30px;margin-left:5px;margin-right:5px;border-radius:2px}.invite-modal input[type=text]{height:41px;border-radius:2px}.invite-modal textarea.form-control{height:194px;resize:none;margin:11px 0 0 0}.invite-modal .email-list{background:#fff;margin:11px 0 0 0;display:block;height:194px;overflow:auto;border:1px solid #dfdddf}.recovery-retention-modal input[type=number]{width:60px;margin-left:10px;padding-left:5px;border-radius:2px}.edit-user-modal p{margin-top:10px}.edit-user-modal button{height:41px;color:#212f3e;background-color:#fff;border:1px solid #ccc}.edit-user-modal button:hover.active,.edit-user-modal button.active{color:#fff;background-color:#1b8de2}.edit-user-modal button:disabled{opacity:.5}.edit-user-modal .storage-input{margin-top:11px;font-size:14px;font-weight:300}.edit-user-modal .form-control{height:41px;border-radius:2px}.edit-user-modal .storage-size{display:inline-block;width:120px}.edit-user-modal .select-user-text{font-size:14px;padding:5px;height:41px;width:323px}hr{margin:4px 0 4px 0;height:1px;border:0;color:#ddd;background-color:#ddd;clear:both}.progress-wrapper,.progress-bar{padding:0;margin:0;height:2px;position:absolute;left:0;bottom:0;display:none}.progress-wrapper{width:100%;background-color:#d9dfeb}.progress-bar{width:50%;background-color:#1b8de2}.list-control-download,.list-control-delete{position:absolute;right:5px;width:20px;text-align:center;background:#faf7f4;display:none;z-index:5000}.list-control-download{right:25px}.close-button{position:absolute;height:24px;right:10px;overflow:hidden;color:#777}i.work-docs-icon-trash-sm-ffffff-16x16,i.work-docs-icon-edit-ffffff-16x16,i.action-icon-rename{display:block}.update-button{position:absolute;height:15px;right:40px;overflow:hidden;color:#777}.search-close{position:absolute;right:0;top:5px}.file-control{position:relative;float:right;padding-top:5px;padding-right:5px;display:none}.messages_container{background-color:#2e2928;text-overflow:ellipsis;word-wrap:break-word;z-index:5000;position:absolute;width:100%}.message{position:absolute;width:100%;margin:0 auto 0 auto;word-wrap:break-word;white-space:normal;text-align:center;vertical-align:middle}.message .inner{font-size:15px;padding:12px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.message .inner-success{background-color:#1b8de2;color:#fff}.message .inner-error{background-color:#404041;color:#fff}.message .inner-error .icon-remove{position:relative;z-index:100}.message .inner-info{background-color:#f6f6f7;color:#404041}.message .inner-fre{background-color:#1b8de2;color:#fff}.message .inner-ie{background-color:#404041;color:#fff;white-space:normal !important}.message .close-icon{cursor:pointer;position:absolute;right:10px;top:10px}.message .error-bar-msg-text,.message .errorbar-message-icon{display:inline-block;vertical-align:middle}.message .errorbar-message-icon{margin-right:15px;margin-top:0px}@keyframes bottomFadeOut{0%{opacity:0;transform:translateY(20px)}100%{opacity:1;transform:translateY(0px)}}#page-border{display:none;position:fixed;bottom:0;left:0;right:0;top:0;z-index:1200}#page-border.enabled{display:block}#page-border.disabled{display:none}#page-border .mask{position:fixed;bottom:0;left:0;right:0;top:0;z-index:1;opacity:.57;background-color:#fff}#page-border .detail{position:fixed;bottom:0;left:0;right:0;top:0;z-index:2;opacity:.9;background-color:#1b8de2}#page-border .detail .message{position:absolute;top:40%;color:#fff}#page-border .detail .message .upload-icon{animation-name:bottomFadeOut;animation-duration:1s}#page-border .detail .message .text{margin-top:40px}#page-border .detail .message .icons{margin-top:15px}#page-border .detail .message .icons span{margin:0 2px 0 2px}.loadingIndicator{width:0;height:2px;background-color:#1b8de2;position:absolute;bottom:0;left:0;z-index:1040;border-top-right-radius:5px;border-bottom-right-radius:5px}.ui-widget-content{border:2px solid #ddd;background-color:#fff}.ui-widget-header{border:none}.comment-picture{color:#f8b35c;margin-right:5px}img.small{max-width:133px;max-height:100px}a.thumbnail-large{display:block;width:270px;height:202px}.folder-image-tilt{transform:rotate(4deg) translate(0, 10px);-ms-transform:rotate(4deg) translate(0, 10px);-webkit-transform:rotate(4deg) translate(0, 10px)}.folder-image-tilt-alt{transform:rotate(-7deg);-ms-transform:rotate(-7deg);-webkit-transform:rotate(-7deg)}.thumbnail{height:20px;width:20px;float:left;margin-left:5px}.remove-user{position:relative;top:5px;left:-10px}.resend{position:relative;top:5px;left:-10px}.reinvite-user{position:relative;left:-10px}.error-message,.error-message-login{font-size:9pt;font-style:italic;color:#f38400;margin-top:2px;height:15px}.error-message-login{position:relative;left:175px}.storage-used{display:inline-block;height:10px;background-color:#f6f6f7}.storage-used .storage-used-free{background-color:#1b8de2;height:70%;margin:2px}.storage-used .storage-used-warning{background-color:#1b8de2;height:70%;margin:2px}.storage-used .storage-used-limit{background-color:#1b8de2;height:70%;margin:2px}.edit_modal_name{width:250px;float:left}form .edit_modal_name input[type=text]{width:100px}.edit_modal_username{width:180px;float:left}.edit_modal_status{width:120px;float:left}.edit_modal_status select{width:100px}.edit_modal_role{width:160px;float:left}.edit_modal_role select{width:140px}.edit_modal_storage{width:130px;float:left}form .edit_modal_storage input[type=text]{width:20px}form .edit_modal_storage input[type=checkbox]{width:10px}#pdfView .toolbar{position:absolute;bottom:0;opacity:.95;width:95%}#pdfView .toolbar.raiseToolbar{bottom:20px}#pdfView #toolbarContainer{width:500px;margin-left:auto;margin-right:auto;bottom:-1px}#pdfView #toolbarViewerLeft{left:20px}#pdfView .innerCenter{right:0%}#pdfView #viewerContainer{top:0px;overflow:hidden}#pdfView #viewer{margin:70px 0}#pdfView .outerCenter{right:8%}div#findbar{position:fixed;right:20px;top:40px;padding:5px;background-color:#1b8de2;color:#fff;font-size:12px;z-index:6;border-radius:3px}div#gbNavigationLayer{position:fixed;bottom:0px;background-color:#1b8de2;z-index:5;color:#fff;font-size:12px;border-top-left-radius:3px;border-top-right-radius:3px;padding:5px;padding-left:10px;padding-right:10px;transition:.25s easein;transition-property:bottom}#pdfView .toolbarLabel{color:#25201f}#pdfView #toolbarContainer{background:#212f3e}#pdfView #toolbarContainer .toolbarLabel{color:#f1f1f2}#pdfView #toolbarContainer .pageNumber{border-radius:5px}#pdfView #toolbarContainer #scaleSelectContainer select{color:#f1f1f2}#pdfView #toolbarContainer #scaleSelectContainer select option{color:#000;padding-left:10px}#pdfView .toolbarField{color:#25201f;background-color:#fff;box-sizing:content-box}#pdfView .dropdownToolbarButton>select{color:#25201f}#pdfView #toolbarViewer{top:4px;position:relative}#pdfView #toolbarViewer #scaleSelectContainer{box-sizing:content-box;border:1px solid #f1f1f2;border-radius:5px}.pdfviewer-container{height:100%;border-top:none;border-bottom:none}.folder-error-container,.document-error-container,.approval-preview-error-container{text-align:center;overflow:auto;display:flex;justify-content:center;align-items:center;height:100%;flex-direction:column}.document-error-container .tangram-icon{display:inline-block}.folder-error-container h2,.document-error-container h2{font-weight:bold;font-size:20px;margin-bottom:10px;margin-top:30px}.previous{position:absolute;top:50%;left:0%}.next{position:absolute;top:50%;right:0%}.note-container{height:100%;width:100%}.note-container-inner{height:100%;width:100%;padding-top:48px}.note-frame{border:0px;height:100vh;width:100%}.session-expired-icon{display:inline-block}.folder-no-file-icon{display:inline-block}.resource-locked-icon{display:inline-block}.request-file-container{padding-left:20px;padding-right:20px}.request-file-container .request-button{margin-top:-10px}.request-file-container .request-message{padding:50px 0px}.request-file-container .already-request-message{margin-top:-50px;padding-bottom:50px}.request-file-container textarea{text-align:left;width:400px;background:#fff;border:1px solid #1b8de2;border-radius:4px;min-height:120px;font-size:14px;color:#4b505d;padding:5px;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;resize:vertical;border-radius:5px;display:inline-block;border-bottom-right-radius:0px}.folder-not-found-icon,.document-unavailable-icon,.no-file-access-icon{display:inline-block}.no-preview-icon{position:relative;left:50%}.session-expired-login{width:150px}h2.document-error{font-weight:normal;padding-top:20%}.transparent{opacity:0}.buried{z-index:-1}body{overflow:hidden;font-family:Amazon-Ember,Helvetica,Arial;font-style:normal;color:#404041;min-width:1200px;overflow-x:auto}body.modal-open{padding-right:0px !important}*{scrollbar-highlight-color:#000;scrollbar-3dlight-color:#fff;scrollbar-shadow-color:#000;scrollbar-darkshadow-color:#fff;scrollbar-track-color:#999;scrollbar-arrow-color:#000;scrollbar-face-color:#000}[ng\:cloak],[ng-cloak],.ng-cloak{display:none !important}.link-button,a,.link-button:hover{cursor:pointer;color:#404041}a{text-decoration:none;color:#808184}a:focus{color:#808184}a:active{color:#808184}ul,li{list-style-type:none}.muted{color:#808184}.ghosted{opacity:.4;filter:alpha(opacity=40)}.hideoverflow{overflow:hidden;white-space:nowrap}.inline-error{color:#df3312}.inline-error::before{content:"* "}.inline-error-summary{position:absolute}.invalid-email-item{display:inline}.person-thumbnail,.profile-panel-person-thumbnail{width:30px;height:30px;border-radius:15px;-webkit-border-radius:15px;-moz-border-radius:15px;background-repeat:no-repeat;margin-right:10px}.person-thumbnail.person-thumbnail-small,.person-thumbnail-small.profile-panel-person-thumbnail{width:30px;height:30px;border-radius:15px;border-width:1px;-webkit-border-radius:15px;-moz-border-radius:15px}.person-thumbnail.person-thumbnail-large,.person-thumbnail-large.profile-panel-person-thumbnail{width:50px;height:50px;border-radius:25px;border-width:2px;-webkit-border-radius:25px;-moz-border-radius:25px}detailed-group-entry ul .person-thumbnail,detailed-group-entry ul .profile-panel-person-thumbnail{margin-right:10px;margin-bottom:10px;float:left}.alternate-background-container{background:#fdfdfc;overflow:visible !important;min-height:100%}.alternate-background-container h4{margin-top:20px;margin-bottom:20px}.alternate-background-container .row{padding-left:30px !important;padding-top:20px;padding-bottom:20px;clear:both}.alternate-background-container a.btn{background-color:#f9f6f2;border:1px #dad3cd solid;color:#000;text-decoration:none;text-align:center;text-shadow:none;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.1) inset,0 0 1px rgba(0,0,0,.7);-moz-box-shadow:0 1px 0 rgba(255,255,255,.1) inset,0 0 1px rgba(0,0,0,.7);box-shadow:0 1px 0 rgba(255,255,255,.1) inset,0 0 1px rgba(0,0,0,.7)}.alternate-background-container a.btn.btn-disabled{color:gray;background-color:#dbd6d5}.alternate-background-container a.btn:hover{background-color:#dbd6d5;color:#000}#profile-title-bar,#admin-title-bar,#analytics-title-bar,#generic-title-bar,#admin-wd-title-bar{padding:11px 0px;font-weight:bold;color:#404041;background-color:#fff;padding-left:20px}#analytics-title-bar{padding:0px;padding-left:20px}.folder-breadcrumb-back{float:left;padding-left:0;padding-right:5px}.folder-breadcrumb-back:hover{cursor:pointer}.folder-breadcrumb-back .folder-back-icon{display:inline-block}#copyBuffer{position:absolute;z-index:-1}.fadeInOutAnimation.ng-enter,.fadeInOutAnimation.ng-leave,.fadeInAnimation.ng-enter,.fadeoutAnimation.ng-leave,.slide-in.ng-enter,.slide-out.ng-leave{-webkit-transition:all ease-in-out .3s;-moz-transition:all ease-in-out .3s;-ms-transition:all ease-in-out .3s;-o-transition:all ease-in-out .3s;transition:all ease-in-out .3s}.fadeInOutAnimation.ng-enter,.fadeInOutAnimation.ng-leave.ng-leave-active,.fadeInAnimation.ng-enter,.fadeOutAnimation.ng-leave.ng-leave-active,.slide-in.ng-enter,.slide-out.ng-leave.ng-leave-active{opacity:0}.fadeInOutAnimation.ng-leave,.fadeInOutAnimation.ng-enter.ng-enter-active,.fadeOutAnimation.ng-leave,.fadeInAnimation.ng-enter.ng-enter-active,.slide-in.ng-enter.ng-enter-active,.slide-out.ng-leave{opacity:1}.slide-in.ng-enter,.slide-out.ng-leave.ng-leave-active{max-width:0px}.slide-in.ng-enter.ng-enter-active,.slide-out.ng-leave{max-width:160px}.wd-dropdown-menu-wrapper{position:relative}ul.wd-dropdown-menu{display:block;padding:0px;position:absolute;z-index:200}ul.wd-dropdown-menu{background-color:#fff;color:#808184;border:1px solid #b1b3b5;line-height:30px;min-width:125px;transition:all .3s ease-in-out 0s,visibility 0s linear .3s,z-index 0s linear .01s}ul.wd-dropdown-menu li.disabled-option{cursor:default;opacity:.3}ul.wd-dropdown-menu li.disabled-option a{cursor:default}ul.wd-dropdown-menu li{width:100%;padding:0px 10px 0px 10px;cursor:pointer;text-align:left;white-space:nowrap}ul.wd-dropdown-menu li.selected{background-color:#f6f6f7;color:#404041}ul.wd-dropdown-menu li:hover{background-color:#f6f6f7;color:#404041}ul.wd-dropdown-menu li a{display:block}.file-browser-dropdown-menu{position:relative;left:-20px;top:8px}#mainTitleBar.mainTitleBar-document{transition:.25s easein;transition-property:height;position:relative;z-index:1000}#mainContent.mainContent-document{top:50px;transition:.25s easein;transition-property:top}.purge-versions-dialog ol.warnings-list{margin-left:15px;margin-top:5px}.purge-versions-dialog ol.warnings-list li{list-style-type:decimal}.purge-versions-dialog .purge-message-container{display:flex;flex-direction:row}.purge-versions-dialog .warning-dialog-container{flex-grow:1}.purge-versions-dialog .warning-dialog-icon{background-image:url(images/dialog-warning_987c4ff135590d9455a8b7cd6bf0a3de.png);background-size:100px 100px;width:100px;height:100px}.purge-versions-dialog .purge-message-content{flex-grow:2}.document-title-bar .left-part{display:block;width:auto;overflow:hidden}.document-title-bar .right-part{display:block;float:right}.document-title-bar secondary-nav{display:inline-block;max-width:calc(100% - 5px - 140px)}.document-title-bar secondary-nav div{max-width:100%;vertical-align:top}.document-title-bar secondary-nav .file-name{white-space:nowrap}.document-title-bar secondary-nav ul.breadcrumb-body{overflow:hidden;white-space:nowrap}.document-title-bar secondary-nav ul.breadcrumb-body>li:last-of-type{max-width:calc(100% - 35px);margin:0px 1px}.document-title-bar .version-switch-container{display:inline-block;max-width:140px;vertical-align:top}.lock-button-doc-viewer .wd-button-white{transition:transform .5s}.lock-button-doc-viewer .wd-button-white .icon-SVG_locked:before{transition:transform .5s}.lock-button-doc-viewer .wd-button-white.ng-enter.ng-enter-active .icon-SVG_locked:before{transform:scale3d(1.5, 1.5, 1)}.lock-button-doc-viewer .wd-button-white.ng-enter .icon-SVG_locked:before{transform:scale3d(0.5, 0.5, 1)}.version-switch-dropdown-menu{max-height:300px;overflow-y:auto;margin-top:5px}.version-switch-authorName{max-width:150px}.version-switch-selected a{color:#1b8de2 !important;background-color:#f6f6f7}.version-switch-button-link{position:relative}.version-switch-button-link .delete-version-button{position:absolute;top:8px;right:8px;padding:0 4px}.version-switch-button-link .delete-version-button:hover{background-color:#e9e9e9}.version-switch-button-link .delete-version-button .version-delete-trash-icon{height:20px;margin-top:2px}.document-pane:hover .img-nav-button-container{visibility:visible;opacity:1}.img-nav-button-container{visibility:hidden;opacity:0;top:45%;width:40px;margin:0px 10px;position:absolute;transition:visibility 0s,opacity .5s linear}.document-pane:hover .img-nav-position-widget-container{visibility:visible;opacity:1}.img-nav-position-widget-container{position:absolute;top:0px;left:50%;visibility:hidden;opacity:0;transition:visibility 0s,opacity .5s linear}.img-nav-position-widget{display:inline-block;margin:10px;background-color:#e0e0e0 !important}.img-nav-button-container-right{right:0px}.img-nav-button-container-left{left:0px}.img-nav-button{border:none;width:37px;height:37px;position:absolute;top:50%;background-size:37px 37px;background-repeat:no-repeat;background-color:rgba(0,0,0,0)}.img-nav-left-arrow{background-image:url(images/arrow-left_78ecca0b0b15212c4798f5f9afc36fca.png)}.img-nav-right-arrow{background-image:url(images/arrow-right_d59c7139478ef3ed86aeb21159c1bbc1.png)}.native-renderer-container{display:block;padding:20px;width:100%;height:100%}.native-renderer-container native-renderer{width:100%;height:100%}.native-renderer-container video{max-width:100%;max-height:100%;display:block;align-self:center;flex:none}.native-renderer-wrapper{width:100%;height:100%;display:flex;justify-content:center;align-items:center}.anonymous-action-bar{float:right}.background-for-request-access{width:65px;height:77px;background-size:65px 77px;background-repeat:no-repeat;background-image:url(images/access_affdffc99bd999640804d6a8dd8982a8.png);margin:auto}@media screen and (-webkit-min-device-pixel-ratio: 2),screen and (max-moz-device-pixel-ratio: 2){.background-for-request-access{background-image:url(images/access@2x_7d0c28d9abdb9d13458abf56435cdc88.png)}}.browser-plus-icon{display:inline-block;position:relative;top:1px}.file-browser-title-bar{font-size:16px;color:#212f3e;padding-left:45px !important}.file-browser-title-bar .sort-order-icon{float:right}.file-browser-title-bar .sortDropdown{vertical-align:middle;display:inline-block}.file-browser-title-bar .sortDropdown,.file-browser-title-bar .filterResults{position:relative}.file-browser-title-bar .sortDropdown .wd-dropdown-menu,.file-browser-title-bar .filterResults .wd-dropdown-menu{left:-10px;top:35px;min-width:150px}.file-browser-title-bar .sortDropdown .wd-dropdown-menu::before,.file-browser-title-bar .filterResults .wd-dropdown-menu::before{left:9px}.file-browser-title-bar .title-bar-list .browser-title-menu{margin:30px 7px;padding-top:0px !important}.file-browser-title-bar .browser-thumbnail-view{display:inline-block;vertical-align:middle}.file-browser-title-bar .browser-list-view{display:inline-block;vertical-align:middle}.file-browser-title-bar .title-bar-list .active .browser-thumbnail-view{display:inline-block;vertical-align:middle}.file-browser-title-bar .title-bar-list .active .browser-list-view{display:inline-block;vertical-align:middle}.file-browser-title-bar .title-bar-icon{display:inline-block;vertical-align:middle}.file-browser-title-bar .browser-restore-icon{display:inline-block;vertical-align:middle}.file-browser-title-bar .browser-trash-icon{display:inline-block;position:relative;top:2px}.file-browser-title-bar .browser-create-folder-icon{display:inline-block;vertical-align:middle;margin-top:-3px}.file-browser-title-bar .browser-create-note-icon{display:inline-block;vertical-align:middle;margin-top:-3px;color:#276887}hr.small{margin:4px 0;height:1px;border:0;color:#ddd;background-color:#ddd;clear:both}.share-link-btn-wrapper .dropdown-menu,#search-people .dropdown-menu,.menu-list{padding:0px}.share-link-btn-wrapper .dropdown-menu:after,#search-people .dropdown-menu:after,.menu-list:after{right:30px}#dropdown_menu_list{right:0px;top:22px}#dropdown_menu_list:after{right:32px}#btn-sort-options:before{right:70px}#btn-sort-options:after{right:71px}#left,left{float:left;height:100%;width:48px;background:#1b8de2;position:relative}#left .left-nav-bg,left .left-nav-bg{position:absolute;bottom:0px;left:0px;right:0px;z-index:0}#left .branding-logo-container,left .branding-logo-container{margin-bottom:0px;margin-top:15px;text-align:center}#left.expanded,left.expanded{width:320px}#left.hidden,left.hidden{display:none}#left.collapsing>.expanded-left,left.collapsing>.expanded-left{-webkit-transition:opacity .1s ease-in;opacity:0}#left-sidebar{height:100%;color:#fff;white-space:nowrap;overflow:auto;overflow-x:hidden;text-align:center;position:relative;z-index:1}#left-sidebar ul.anonymous-links{text-align:left}#left-sidebar ul.anonymous-links a{padding-left:45px}#left-sidebar a{color:#fefefe;font-size:16px;line-height:18px;text-decoration:none}#left-sidebar #left-sidebar-content{min-height:760px;position:relative;z-index:1}#left-sidebar.with-branding-logo #left-sidebar-content{min-height:785px}.left-sidebar-top{background-color:#0e72a3;margin:0;position:relative}.left-sidebar-top .left-sidebar-toggle{position:absolute;right:15px;top:16px}.left-sidebar-top .workdocslogo{display:block;text-align:left;padding-left:24px;padding-top:60px;display:block}.left-sidebar-top .workdocslogo::after{content:" ";clear:both;display:block}.left-sidebar-top .workdocslogo .logo-img{float:left;clear:right;margin-bottom:15px;cursor:pointer;background-position:0px 0px;background-repeat:no-repeat}.left-sidebar-top .workdocslogo .logo-img.prod-logo{width:160px;height:28px;background-image:url(images/workdocs-20161122-1x_78e1b7de3b08cfd960f9cec1414536c5.png);background-size:160px 28px}.left-sidebar-top .workdocslogo .logo-img.preview-logo{width:160px;height:44px;background-image:url(images/workdocs-preview-20161122-1x_b8e5c668374f6417c0ebe5947de599e9.png);background-size:160px 44px}.left-sidebar-top #amazon-logo{position:absolute;left:24px;top:15px;width:75px;height:25px;background-repeat:no-repeat;background-image:url(images/amazon-logo-20161021_d28ae90d9da7ddbfea24b1ffb99af042.png);background-position:0px 0px;background-size:75px 25px}@media screen and (-webkit-min-device-pixel-ratio: 2),screen and (max-moz-device-pixel-ratio: 2){.left-sidebar-top #amazon-logo{background-image:url(images/amazon-logo-2x-20161021_1db9cf7ef45a978375408d960475f091.png) !important}.left-sidebar-top .workdocslogo .logo-img.prod-logo{background-image:url(images/workdocs-20161122-2x_67ca3b194f83942c560eb76cda10f5e2.png) !important}.left-sidebar-top .workdocslogo .logo-img.preview-logo{background-image:url(images/workdocs-preview-20161122-2x_32310b96cfd26ed5b693c03839296d63.png) !important}}#left-sidebar .link-title{text-overflow:ellipsis;white-space:nowrap;overflow:hidden;display:block;text-align:left;margin-left:31px}.left-sidebar-minimized{position:relative;z-index:2;width:48px}.left-sidebar-minimized .collapsed-icon-wrapper{background-color:#0e72a3;height:105px;margin:0px;position:relative}.left-sidebar-minimized .collapsed-icon-wrapper .toggle-icon{position:absolute;top:15px;left:10px}.left-sidebar-minimized .collapsed-icon-wrapper .wd-collapsed-icon{position:absolute;bottom:13px;left:11px;width:27px;height:29px;background-image:url(images/workdocs-collapsed-20161122-1x_0c8c5af0985cbeaaa03a38b03d371b01.png);background-repeat:no-repeat;background-position:0px 0px;background-size:27px 29px}@media screen and (-webkit-min-device-pixel-ratio: 2),screen and (max-moz-device-pixel-ratio: 2){.left-sidebar-minimized .collapsed-icon-wrapper .wd-collapsed-icon{background-image:url(images/workdocs-collapsed-20161122-2x_8e6407f7ad54e2085944c05bef2231ee.png) !important}}.left-sidebar-minimized .primary-icon-set,.left-sidebar-minimized .secondary-icon-set{text-align:center}.left-sidebar-minimized .sprite-icon-wrapper{padding:10px 0px;position:relative}.left-sidebar-minimized .leftnav-item-title{position:absolute;bottom:0px;left:47px;top:0px;color:#fff;background-color:#4b505d;text-align:left;padding-left:10px;padding-top:15px;display:none;white-space:nowrap;padding-right:15px}.left-sidebar-minimized .sprite-icon-wrapper{display:block;text-decoration:none}.left-sidebar-minimized .sprite-icon-wrapper:hover,.left-sidebar-minimized .sprite-icon-wrapper:active{text-decoration:none}.left-sidebar-minimized .sprite-icon-wrapper:hover .leftnav-item-title,.left-sidebar-minimized .sprite-icon-wrapper.show-item .leftnav-item-title{display:block}.left-sidebar-minimized .file-count{color:#fff;background:#0e72a3;position:absolute;top:3px;right:4px;border-radius:3px;min-width:15px;padding:0px 2px}.left-sidebar-minimized .sprite-icon-wrapper:hover,.left-sidebar-minimized .sprite-icon-wrapper.active,.left-sidebar-minimized .sprite-icon-wrapper.show-item{background:#4b505d}.expanded-left #left-sidebar{width:100%}.expanded-left .icon-angle-left{font-size:24px;font-weight:bold;margin:5px 4px 0 8px;float:left;color:#999}.expanded-left #left-sidebar li a,#left-sidebar .user-dropdown{text-align:left;border-top:1px solid #3d3638;border-bottom:1px solid #211e1f;padding:10px 20px;display:block;color:#c8c7c7;font-size:16px;line-height:30px}#left-sidebar ul li{position:relative}#left-sidebar ul li a{padding:14px;padding-right:0px;padding-left:15px;margin-left:2px;margin-right:2px;display:block}#left-sidebar ul li .file-count{position:relative;margin-right:14px;padding:0px 5px;line-height:20px;background:#0e72a3;text-align:center;float:right;font-size:12px;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px}#left-sidebar .active{background-color:#4b505d;font-weight:bold}#left-sidebar .left-sidebar-menu-gap{height:36px}#left-sidebar .left-nav-icon{margin-top:-5px}#left-sidebar span.beta-flag{color:#b1b3b5;font-size:11px;position:absolute;top:6px;margin-left:5px}#left-sidebar .my-document-icon{float:left}#left-sidebar .shared-with-me-icon{float:left}#left-sidebar .awaiting-my-feedback-icon{float:left}#left-sidebar .out-for-review-icon{float:left}#left-sidebar .favorites-icon{float:left}#left-sidebar .recycle-bin-icon{float:left}#left-sidebar .profile-icon{float:left}#left-sidebar .administrator-icon{float:left}#left-sidebar .activities-icon{float:left}#left-sidebar .download-sync-app-icon{float:left}#left-sidebar .download-mobile-app-icon{float:left}#left-sidebar .logout-icon{float:left}#left-sidebar .footer{font-size:14px;position:absolute;bottom:0px;right:0px;left:0px;margin-bottom:20px}#left-sidebar .footer .amazon-logo a{width:100%;height:100%;display:block}#left-sidebar .footer-menu{display:flex}#left-sidebar .footer-menu a{display:block;flex-grow:1;float:left}#blog-text{color:#f59a80}#list-view{margin:0}.btn-group.open .dropdown-toggle{box-shadow:none}.file-view-scroll-wrapper{height:100%;overflow-y:auto}.file-view-wrapper{max-width:1880px;margin:auto}.file-views{position:relative;height:100%;padding-top:2px}.file-views .btn.dropdown-toggle{height:6px;padding:6px;background-color:rgba(0,0,0,0);border-width:0;box-shadow:none}.file-views .btn.dropdown-toggle:focus{background-color:rgba(0,0,0,0);outline:none}.file-views .btn .caret{border-left:6px solid rgba(0,0,0,0);border-right:6px solid rgba(0,0,0,0);border-top:6px solid #e0e0e0;vertical-align:top;margin:0}.caret-activated-style{color:#1b8de2;font-size:12px}.caret-style{font-size:12px}.loading-img-container{padding-top:20%}.loadMore{position:relative;display:block;margin:20px auto;width:40px}.draggable .icon-folder-close,.draggable a:hover .icon-folder-open{display:inline-block}.draggable a:hover .icon-folder-close,.draggable .icon-folder-open{display:none}#browse-header{position:relative;height:40px;width:100%}#browse-actions{height:100%;position:absolute;width:100%;z-index:1}#browse-actions .action-bar{margin:0;padding:0;width:100%;min-width:1000px;height:100%;background-color:#1b8de2;font-size:15px}#browse-actions .action-bar button span{vertical-align:middle;display:inline-block;line-height:1}#browse-actions .action-bar button .action-icon{vertical-align:middle;margin-bottom:3px}#browse-actions .action-bar>li{float:left;margin:0 20px 0 0;padding:0}#browse-actions .action-bar li div{vertical-align:middle;margin-right:5px}#browse-actions .action-bar .btn-link{color:#fff}#browse-actions .disabled-button{opacity:.3}#browse-sort{width:100%;height:100%;background:#fafafa;font-size:13px;transition:background .4s linear;-webkit-box-shadow:1px 0px 1px #e6e4e4,-1px 0px 1px 0px #e6e4e4;-moz-box-shadow:1px 0px 1px #e6e4e4,-1px 0px 1px 0px #e6e4e4;box-shadow:1px 0px 1px #e6e4e4,-1px 0px 1px 0px #e6e4e4}#browse-sort a,#browse-sort .ownerheader{color:#777984}#browse-sort .th{color:#808184;display:block;float:left;position:relative}#browse-sort .th a{display:inline-block;width:100%}.action-icon-open{display:inline-block}.action-icon-activity{display:inline-block}.action-icon-edit{display:inline-block}.action-icon-share{display:inline-block}.action-icon-checkout-open{display:inline-block}.action-icon-request-checkin{display:inline-block}.action-icon-checkout{display:inline-block}.action-icon-checkin{display:inline-block}.action-icon-discard-checkout{display:inline-block}.action-icon-download{display:inline-block}.action-icon-delete{display:inline-block}.action-icon-rename{display:inline-block}.action-icon-move{display:inline-block;margin-right:2px !important}.action-icon-remove-me-from-share{display:inline-block}.action-icon-decline-feedback{display:inline-block}#browse-files #loadMoreIcon{margin:20px 0px}#avatar:focus>img{outline:2px solid #bec0c1}.dropdown-toggle-icon{display:inline-block;height:23px;padding-top:6px;padding-right:47px;background-color:rgba(0,0,0,0);border-width:0;box-shadow:none}a:focus,a:focus .active-text{outline-offset:0px;outline:2px solid #bec0c1}a:focus .main-menu-text .active-text,a:focus .profile-pic .active-text{color:#fff !important}a:active{outline:none}.focus-state,a:focus,a:focus .active-text{outline:none;color:#1b8de2 !important;text-decoration:none !important}.adminlist,.analyticslist{display:block;padding:9px 5px 5px 20px;position:relative;-webkit-box-shadow:inset 0px -1px #e0e0e0;-moz-box-shadow:inset 0px -1px #e0e0e0;box-shadow:inset 0px -1px #e0e0e0}.adminlist:last-child:not(:hover):not(.ui-selected),.analyticslist:last-child:not(:hover):not(.ui-selected){border-bottom:none}.dropdown-menu.dropdown-menu-open{display:block}.file-browser-content-padding{padding:0px 20px;height:calc(100% - 40px)}.dyk-light-bulb-icon{width:16px;height:16px;display:inline-block;background-size:16px 16px;background-repeat:no-repeat;background-image:url(images/did-you-know@16x16_0b63bac27e9f41a600cb1ca53c566f7a.png)}@media screen and (-webkit-min-device-pixel-ratio: 2),screen and (max-moz-device-pixel-ratio: 2){.dyk-light-bulb-icon{background-image:url(images/did-you-know@32x32_bbb97daecf402894f6f175205ca64f24.png)}}did-you-know-message{float:right;position:relative;margin-right:20px;margin-top:5px;margin-bottom:3px;font-weight:normal}.dyk-wrapper{background:#e8e8e8;padding-right:20px;border-radius:20px;padding-left:15px;line-height:30px}.dyk-wrapper .dyk-close{cursor:pointer;position:absolute;top:5px;right:5px}.dyk-wrapper .dyk-close:hover{color:red}.customized-edit-ux span{color:#f59a80}.filelist{display:block;position:relative;-webkit-box-shadow:inset 0px -1px #e0e0e0;-moz-box-shadow:inset 0px -1px #e0e0e0;box-shadow:inset 0px -1px #e0e0e0}.filelist:last-child:not(:hover):not(.ui-selected){border-bottom:none}.file-list-view-container{margin:0px;background-color:#fff;-webkit-box-shadow:1px -1px 1px #e6e4e4,-1px 1px 1px #e6e4e4;-moz-box-shadow:1px -1px 1px #e6e4e4,-1px 1px 1px #e6e4e4;box-shadow:1px -1px 1px #e6e4e4,-1px 1px 1px #e6e4e4}.file-list-view-container .filelist.ui-selected{-webkit-box-shadow:inset 1px 0px #1b8de2,inset -1px -1px #1b8de2;-moz-box-shadow:inset 1px 0px #1b8de2,inset -1px -1px #1b8de2;box-shadow:inset 1px 0px #1b8de2,inset -1px -1px #1b8de2;background-color:#f1f8fd}.file-list-view-container .filelist:not(.ui-selected)+.filelist.ui-selected,.file-list-view-container .filelist:first-child.ui-selected{-webkit-box-shadow:inset 1px 1px #1b8de2,inset -1px -1px #1b8de2;-moz-box-shadow:inset 1px 1px #1b8de2,inset -1px -1px #1b8de2;box-shadow:inset 1px 1px #1b8de2,inset -1px -1px #1b8de2}.filelist-title{border:none;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.filelist{line-height:40px}.filelist .dropdown-toggle-icon{padding-right:53px;cursor:pointer}.filelist .resource-icon{vertical-align:text-bottom;margin-right:4px}.filelist [class^=col-]{white-space:nowrap;text-overflow:ellipsis}.filelist [class^=col-],.filelist [class*=" col-"]{padding-left:20px}.filelist [class^=col-].th:not(:first-child):before,.filelist [class*=" col-"].th:not(:first-child):before{content:"";position:absolute;left:0;bottom:24%;height:52%;border-left:1px solid #e0e0e0;box-sizing:border-box}.filelist .last-col{float:none !important;width:auto !important;margin-right:35px}.filelist .folder-indicator{position:absolute;right:3px;top:14px;margin-right:10px;font-size:12px;color:#1b8de2 !important}.filelist sort-order-caret{position:absolute;right:15px}.filelist .col-thumbnail-toggle{position:absolute !important;right:10px;top:0px;padding-left:10px}.filelist .col-thumbnail-toggle .icon{vertical-align:sub}.filelist .col-checkbox{float:left;overflow:hidden;width:36px;height:100%;position:relative;padding-left:10px !important;-webkit-box-shadow:none !important;-moz-box-shadow:none !important;box-shadow:none !important}.filelist .col-checkbox label{vertical-align:sub}.filelist .col-favorite{float:left;overflow:hidden;width:38px;height:100%;padding-left:12px;position:relative}.filelist .col-favorite span{vertical-align:sub}.filelist .col-filename{float:left;width:38%;overflow:hidden;position:relative}.filelist .col-filename a{color:#404041}.filelist .col-task-title{color:#808184;float:left;min-height:1px;height:40px;width:14%;overflow:hidden;position:relative}.filelist.ui-selected .col-filename,.filelist.ui-selected{color:#1b8de2}.filelist.ui-selected .col-filename a,.filelist.ui-selected a{color:#1b8de2}.filelist .col-feedback{color:#808184;float:left;width:12%}.filelist .col-requestedBy{overflow:hidden;color:#808184;float:left;height:40px;width:14%}.filelist .col-resolvedBy,.filelist .col-status,.filelist .col-requestType{overflow:hidden;color:#808184;float:left;height:40px;width:9%}.filelist .col-description,.filelist .col-resourceName{overflow:hidden;color:#808184;float:left;height:40px;width:15%}.filelist .col-owner{overflow:hidden;height:40px;color:#808184;float:left;width:12%}.filelist .col-task-actions{overflow:hidden;color:#808184;float:left;width:23%}.filelist .col-task-actions .dropdown-button{height:auto;padding:0px;color:#808184}.filelist .col-task-actions .dropdown-button .value-name{display:inline-block}.filelist .col-modified{color:#808184;float:left;width:12%;min-width:120px}.filelist .col-size{color:#808184;float:left;width:10%;min-width:100px}.filelist .col-kind{overflow:hidden;color:#808184;float:left;width:14%}.filelist .col-share{color:#808184;float:left;width:3%}.filelist .col-action{float:right !important;width:26%;text-overflow:clip;padding:3px 0px}.filelist .right-align{float:right}.filelist .dim-when-out-focus{color:#e0e0e0}.filelist:hover .dim-when-out-focus,.filelist.ui-selected .dim-when-out-focus{color:#404041}.filelist .dim-when-out-focus.activated,.filelist:hover .dim-when-out-focus.activated,.filelist:hover a.activated{color:#1b8de2}.filelist .dim-when-out-focus.keep-bright,.filelist:hover .dim-when-out-focus.keep-bright,.filelist:hover a.keep-bright{color:#404041}.filelist.muted{border:0}.filelist input{margin:0 10px 0 0;color:#404041;border-color:#b1b3b5;outline:none}.filelist .action-bar-clickable,.filelist .thumbnail-wrapper .overlayed-icons .col-action .action-bar-not-clickable,.thumbnail-wrapper .overlayed-icons .col-action .filelist .action-bar-not-clickable,.filelist .action-bar-not-clickable{cursor:pointer;width:auto}.filelist .action-bar-not-clickable{cursor:default}.filelist .banner-wrapper{background:#e8e8e8;padding-right:10px;padding-left:10px;border-radius:20px;color:#1b8de2 !important}.filelist .banner-wrapper .banner-text{color:#1b8de2 !important}.filelist span.checkout-indicator{position:absolute;left:10px;top:6px}.filelist span.checkout-indicator .sprite-icon{cursor:default}.filelist.ui-draggable-dragging{background-color:red;filter:alpha(opacity=80);opacity:.8}.filelist .select-box,.filelist .select-box label{display:inline}.filelist .xsm,.filelist .sm,.filelist .med,.filelist .lg{text-overflow:ellipsis;top:1px;position:relative}.filelist .xsm,.filelist .sm,.filelist .med{margin-left:10px;float:right}.filelist .xsm{width:8%;white-space:nowrap}.filelist .sm{width:12%;white-space:nowrap}.filelist .med{width:17%;white-space:nowrap}.filelist .lg{width:33%;white-space:nowrap}.filelist .lg i{margin-right:10px}.filelist .feedback{display:block;font-size:80%;margin-left:25px}.filelist .icons{float:right;position:relative;padding-left:5px;top:2px}.filelist span.icons{text-align:right;width:60px;position:relative;top:2px}.filelist .progress-wrapper{width:100%;background:#f3f3f3;height:2px;display:none;margin-top:2px}.filelist .progress-bar{width:50%;background-color:#ffc666;margin:1px;padding:2px;height:3px;display:none}.filelist .id-filename .select-box{display:inline}.filelist .file-list-icon-lg{display:none}@keyframes pulse{0%{background-color:#f6f6f7}100%{background-color:#fff}}.file-link,.file-link:hover,.folder-link,.folder-link:hover{text-decoration:none;max-width:94%}.filelist.ui-selectee:not(.ui-selected):hover{animation:pulse 2s}.filelist.ui-selectee:not(.ui-selected):hover .file-link,.filelist.ui-selectee:not(.ui-selected):hover .folder-link{color:#1b8de2}.missing-resources-modal-window{margin-top:70px}.missing-resources-modal ol{margin-left:15px;margin-top:10px;font-size:14px;list-style-type:decimal}.missing-resources-modal ol li{list-style-type:decimal}.missing-resources-modal .buttons-container{margin-top:20px;text-align:right}.missing-resources-modal .buttons-container button{margin-left:15px}.file-views .start-blink{animation:blinker 1s linear 10;-webkit-box-shadow:0px 0px 0px 1px #ffb700;-moz-box-shadow:0px 0px 0px 1px #ffb700;box-shadow:0px 0px 0px 1px #ffb700}@keyframes blinker{50%{opacity:0}}.thumbnail-wrapper .dropdown-toggle-icon{cursor:pointer}.thumbnail-wrapper .overlayed-icons{height:37px;position:absolute;width:100%;padding:10px;background:rgba(0,0,0,0)}.thumbnail-wrapper .overlayed-icons .right-align{float:right}.thumbnail-wrapper .overlayed-icons .col-action{width:100%}.thumbnail-wrapper .overlayed-icons .col-action .action-bar-clickable,.thumbnail-wrapper .overlayed-icons .col-action .action-bar-not-clickable{margin-left:8px;margin-right:8px}.thumbnail-wrapper .overlayed-icons .col-action .action-bar-clickable.icon-SVG_overflow-vertical,.thumbnail-wrapper .overlayed-icons .col-action .icon-SVG_overflow-vertical.action-bar-not-clickable,.thumbnail-wrapper .overlayed-icons .col-action .action-bar-clickable.icon-SVG_reply-clockwise,.thumbnail-wrapper .overlayed-icons .col-action .icon-SVG_reply-clockwise.action-bar-not-clickable{width:8%}.thumbnail-wrapper .overlayed-icons .col-action .action-bar-clickable .banner-text,.thumbnail-wrapper .overlayed-icons .col-action .action-bar-not-clickable .banner-text{display:none}.thumbnail-wrapper .overlayed-icons .col-action .action-bar-not-clickable{cursor:default}.thumbnail-wrapper .preview-text{position:absolute;text-align:center;width:100%;top:135px;color:#777984;left:0}.thumbnail-wrapper .preview-text:hover{color:#777984}.thumbnail-wrapper .no-preview-in-out-for-review{bottom:100px}.thumbnail-wrapper .no-preview-in-waiting-feedback{bottom:125px}#gallery-view{width:100%}#gallery-view a{display:block}#gallery-view .thumbnail-view-sort{text-align:right;margin-top:15px;margin-bottom:-10px}#gallery-view .thumbnail-view-sort .thumbnail-view-sort-widget{display:inline-block}#gallery-view .thumbnail-view-sort .thumbnail-view-sort-widget .sort-button{background-color:#e0e0e0;color:#404041;padding:8px;border-radius:35px;cursor:pointer}#gallery-view .thumbnail-view-sort .thumbnail-view-sort-widget .sort-button .sort-icon{display:inline-block;vertical-align:sub;margin-left:5px}#gallery-view .thumbnail-view-sort .thumbnail-view-sort-widget .wd-dropdown-menu{top:40px;right:0px}#gallery-view .thumbnail-view-sort .thumbnail-view-sort-widget .wd-dropdown-menu .sortby-text{display:inline-block;width:80%}#gallery-view .thumbnail-view-sort .thumbnail-view-sort-widget .wd-dropdown-menu .sort-order-icon{vertical-align:sub}#gallery-view .thumbnail-view-sort .list-view-toggle-widget{display:inline-block;margin-left:10px}#gallery-view .thumbnail-view-sort .list-view-toggle-widget .button{background-color:#e0e0e0;color:#404041;padding:8px;border-radius:35px;cursor:pointer;width:35px;height:35px;text-align:center;line-height:20px}#gallery-view .thumbnail-view-sort .list-view-toggle-widget .icon{margin:auto;width:16px;display:inline-block;line-height:16px;vertical-align:sub}#gallery-view #loadMoreIcon{margin-top:20px;margin-bottom:-80px}#gallery-view .caption{background:#fff}#gallery-view .thumbnail-wrapper{position:relative;float:left;background-color:#fff;cursor:pointer;border:1px solid #d8d7da;width:270px;height:283px;margin:20px 10px 0}#gallery-view .thumbnail-wrapper .caption input{color:#000}#gallery-view .thumbnail-wrapper.non-clickable{cursor:default}#gallery-view .thumbnail-wrapper.selected{border:1px solid #5385b1;padding-left:-1px;padding-top:-1px}#gallery-view .gallery-dropdown-toggle-icon{color:#1b8de2;background-color:rgba(0,0,0,0);border-width:0;box-shadow:none;float:right}#gallery-view .thumbnail-wrapper.caption-no-show-owner{height:225px}#gallery-view .thumbnail-wrapper.caption-show-feedback{height:260px}#gallery-view .thumbnail-wrapper .file-control{display:block;z-index:50;padding:0;position:absolute;top:5px;right:7px}#gallery-view .wd-dropdown-menu{top:15px;right:-15px}#gallery-view .select-box .icon-wd-checkbox-label{vertical-align:-2px;margin-right:10px}#gallery-view .folder-thumbnail-icon{background:url(images/folder-preview_3267199eff37bdff857df43fc720ec36.png) center;background-repeat:no-repeat;background-color:#d8d7da;background-size:100px;width:100%;height:174px}#gallery-view .caption .title{color:#404041;height:48px;line-height:48px;font-size:15px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:100%;padding:0px 15px}#gallery-view .shared-by-container{border-top:1px solid #d8d7da}#gallery-view .person-thumbnail,#gallery-view .profile-panel-person-thumbnail{float:left;margin:7px 15px 0 15px;width:40px;height:40px}#gallery-view .sharedby{font-size:12px;padding-top:8px;min-height:25px}#gallery-view .owner{font-size:16px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}#gallery-view .large{width:100%;height:172px;display:block;border-bottom:1px solid #d8d7da}#gallery-view .large-no-preview{border-bottom:1px solid #d8d7da;padding:47px 101px;width:268px;display:block;height:172px}#gallery-view .feedbackCount{font-size:12px;position:relative;left:15px;top:6px}#gallery-view.inReview .thumbnail-wrapper{height:292px}#gallery-view.inReview .caption{height:90px}.checkin-modal textarea{margin:20px 0px;border-radius:3px;min-height:150px;padding:7px;resize:vertical}.adminlist a,.adminlist span{overflow:hidden;display:inline-block}.document-pane{margin:0 1px 0 0;padding:0;top:0;height:100%;width:100%;overflow:hidden;position:relative}.document-pane .bigger-icon{margin-bottom:20px}.document-pane .btn.tangram{margin-top:22px}.document-pane .btn.tangram:hover{opacity:.7}.document-pane .btn.tangram .sprite-icon{vertical-align:middle}.document-pane.office-document-pane{position:fixed;padding:0;margin:0;top:0;left:0;width:100%;height:100%}.document-pane .onlineediting-container{position:relative;height:100%}.document-pane .onlineediting-container .office-pane{height:calc(100% - 50px)}.document-pane .onlineediting-container .save-and-exit-division{position:absolute;top:0;left:0;display:none}.document-pane .onlineediting-container .save-and-exit-division .save-and-exit-button{background-color:#f6f6f7;background:rgba(0,0,0,0);color:#1b8de2;border:0px;width:125px;font-size:13px;cursor:pointer;height:40px}.document-pane .note-leftpanel-container{width:30%;float:left;background-color:#f6f7f7}.document-pane .note-iframe-container{width:70%;float:right}.document-pane .note-folder-container{float:left;width:50%}.document-pane .note-file-container{float:left;width:50%}.main-document .banner-wrapper{cursor:pointer;background-color:#fff;padding-left:10px;padding-right:10px;border-radius:20px;padding-top:3px;padding-bottom:3px;color:#1b8de2 !important}.main-document .banner-wrapper .banner-text{color:#1b8de2 !important}#version-container{padding:80px 20px 20px 20px}.version-switcher{background:#2e2928}.version-switcher .container{margin:0 auto 40px;background:#000;width:675px}.version-switcher .container .versionImage{width:100%}.version-switcher .container .person-thumbnail,.version-switcher .container .profile-panel-person-thumbnail{float:left}.version-switcher .active{border:5px solid #f8b35c}.version-switcher .text{padding:15px;text-align:left}.version-switcher .text a{color:#fff;text-decoration:none}.version-switcher .text .date{font-size:80%;color:#d0d2d3}.version-switcher .text .comments{font-size:80%;color:#f8b35c}#profile-div,#admin-div{padding-top:20px}#admin-div,#folder-div{margin-left:12px;padding-left:8px}#profile-div{width:300px;overflow-y:auto;overflow-x:hidden;background-image:url(images/profile_background_26b6abbf3dc96b64a6a4626e866bb77e.png);background-repeat:no-repeat;background-color:#fff}#profile-div #profile-account-title{padding-left:20px}#profile-div #profile-panel-done{display:inline;float:right;margin-right:20px}#profile-div .profile-image-container{margin-top:50px;margin-bottom:25px;padding-left:20px;padding-right:20px}#profile-div .upload-photo-button{text-align:center;width:45px;font-weight:bold;visibility:hidden}#profile-div .profile-info-container{width:auto;overflow:hidden}#profile-div .profile-fullname{max-width:100%;color:#404041;display:block;text-align:left;margin:0px 0px -5px 0px;word-wrap:break-word}#profile-div .profile-email{color:#404041;padding-bottom:20px}#profile-div .profile-username{color:#808184;display:inline}#profile-div .profile-sitename{color:#404041;margin-top:30px;max-width:100%}#profile-div .profile-role{color:#808184;margin-top:5px}#profile-div .profile-user-sku{color:#808184;display:inline;float:left}#profile-div .profile-user-sku-upgrade-account{color:#1b8de2;display:inline;float:right}#profile-div .profile-account-info{margin:30px 0px 30px 0px}#profile-div .profile-password{padding-bottom:20px}#profile-div .profile-password-char{padding-right:6px;color:#e0e0e0;display:inline-block}#profile-div .profile-password-char:before{content:url(images/passwordchar_98b6eec63586bdeba1774639398b4bb6.png)}#profile-div .profile-change-password{text-decoration:none;display:inline;float:right}#profile-div .admin-section{margin:30px 0px 30px 0px;padding:20px;border-top:2px solid #e0e0e0;border-bottom:2px solid #e0e0e0}#profile-div .admin-title{color:#404041;margin-bottom:10px}#profile-div .profile-storage-section{margin:30px 0px 30px 0px}#profile-div .profile-storage-key{color:#404041}#profile-div .profile-timezone-section{margin:30px 0px 30px 0px}#profile-div .profile-timezone-key{color:#404041}#profile-div .profile-language-section{margin:30px 0px 30px 0px}#profile-div .profile-language-key{color:#404041}#profile-div .storage_used_text{color:#808184;margin:0px}#profile-div .profile-storage-container{padding-bottom:22px}#profile-div .profile-time-zone,#profile-div .profile-preferred-language{display:block;color:#404041;width:234px;height:25px;vertical-align:top;border-radius:2px;background-color:#fff;margin-top:5px}#profile-div .profile-dropdown-button{left:1px;width:250px}#profile-div .profile-dropdown-button .value-name{display:inline-block;float:left;padding-left:5px;max-width:220px;overflow-x:hidden}#profile-div .profile-dropdown-button .dropdown-icon{float:right;margin-top:5px}#profile-div .profile-time-zone-dropdown-options{max-width:250px;overflow-x:hidden;max-height:150px;overflow-y:auto}#profile-div .profile-language-dropdown-options{max-width:250px;overflow-x:hidden;max-height:75px;overflow-y:scroll}#profile-div .profile-property-key{color:#777984;width:190px;display:inline-block;padding-bottom:22px}#profile-div .profile-property-value{padding-bottom:15px}#profile-div .profile-storage-label{vertical-align:middle}#profile-div .profile-account-auth-preferences{color:#e0e0e0}#profile-div .logout-link{color:#808184;margin:30px 0px 30px 0px}.analyticslist a,.analyticslist span{overflow:hidden;display:inline-block}.analytics-content-wrapper{max-width:1880px;margin:auto}#analytics-title-bar{transition:background .4s linear}#analytics-title-bar .beta-flag{font-size:8px;font-weight:400;color:#808184;position:absolute;margin-left:5px}#analytics-div{height:100%;overflow-y:auto}#analytics-div .filter-icon{display:inline-block;cursor:pointer;vertical-align:middle;margin-right:10px}#analytics-div input.search-user{padding:5px;display:block;min-width:100%;margin-top:5px}#analytics-div a{color:#1b8de2}#analytics-div .search-icon{cursor:pointer;position:relative;left:30px;top:3px}#analytics-div .filter-link{cursor:pointer;color:#1b8de2}#analytics-div .results-for-text{margin-left:20px;margin-bottom:15px;color:#808184}#analytics-div .results-for-text .search-term{font-style:italic}#analytics-div .textfield-wrapper{margin-bottom:15px;width:calc(100% - 125px)}#analytics-div .textfield-wrapper>input{padding:10px 12px;padding-left:35px;height:40px;width:500px;border:none;background-color:#fff;transition:background .4s linear}#analytics-div .textfield-wrapper>.spyglass-icon{width:24px;height:24px;display:block;position:absolute;right:130px;top:8px;cursor:pointer}#analytics-div .search-container{position:relative;min-height:40px;margin:25px 0px}#analytics-div .filter-label{font-weight:bold;padding-top:10px;display:block}#analytics-div .filter-label.switch-label{font-weight:normal}#analytics-div .filter-label.switch-label.active{color:#1b8de2}#analytics-div .filter-wrapper{position:absolute;top:2.5px;right:20px}#analytics-div .filter-wrapper .activity-types{margin-top:10px}#analytics-div .filter-wrapper .activity-types>div{display:inline-block;min-width:155px;margin-bottom:5px}#analytics-div .filter-wrapper .material-switch{display:inline-block;vertical-align:middle;margin-top:8px}#analytics-div .filter-wrapper .switch-text{display:inline-block;margin-right:10px}#analytics-div .filter-wrapper .switch-text.active{color:#1b8de2}#analytics-div .filter-wrapper .btn{padding:0px 15px 0px 15px;line-height:30px;height:30px}#analytics-div .filter-wrapper>.filter-menu{top:50px;right:90px;min-width:370px;position:absolute;border:1px solid #ccc;border-radius:5px;padding:20px;background-color:#fff;-webkit-box-shadow:0px 2px 5px 0px rgba(0,0,0,.2);-moz-box-shadow:0px 2px 5px 0px rgba(0,0,0,.2);box-shadow:0px 2px 5px 0px rgba(0,0,0,.2);z-index:1}#analytics-div .filter-wrapper>.filter-menu .form-row{margin-bottom:10px}#analytics-div .filter-wrapper>.filter-menu .form-row::after{content:"";clear:both;display:block}#analytics-div .filter-wrapper>.filter-menu .filter-value{float:right}#analytics-div .filter-wrapper>.filter-menu .analytics-label{min-width:120px;padding-right:30px;font-size:16px;text-align:right;color:#000}#analytics-div .filter-wrapper>.filter-menu::before{content:"";position:absolute;background-color:#fff;left:84%;top:-6px;width:12px;height:10px;transform:rotateZ(-45deg);border-right:1px solid #ccc;border-top:1px solid #ccc}#analytics-div .filter-wrapper>.filter-menu .footer-buttons{text-align:right;margin-top:20px}#analytics-div .filter-wrapper>.filter-menu .footer-buttons>button{margin-left:10px}#analytics-div .filter-button{display:inline-block;padding:7px;padding-right:30px;position:relative;background-color:#efefef;margin-right:10px;border:1px solid #ccc;border-radius:3px;margin-bottom:10px}#analytics-div .filter-button .close-icon{position:absolute;top:25%;right:5px;cursor:pointer}#analytics-div .filter-button .close-icon:hover{color:red}#analytics-div .filter-buttons{margin-bottom:20px;margin-left:20px;margin-right:105px}#analytics-div .group{margin-bottom:15px}#analytics-div .group .group-header{font-weight:bold;border-bottom:1px solid #ccc;padding-bottom:5px;margin-bottom:20px}#analytics-div .analytics-section{font-weight:bold;padding-top:8px;padding-bottom:6px}#analytics-div .analytics-section-body{padding:20px;margin:0px 20px;background-color:#fff}#analytics-div .analytics-btn{width:150px}#analytics-div .activity-item{padding-top:10px;padding-bottom:10px;padding-left:10px;position:relative}#analytics-div .activity-item:hover{background-color:#f6f6f6}#analytics-div .activity-item .btn-group{margin-top:10px;float:right}#analytics-div .activity-aux-info{color:#808184;margin-left:35px}#analytics-div .activity-columns{margin-bottom:5px}#analytics-div .activity-columns>.activity-description{display:block;margin-left:25px}#analytics-div .activity-columns>.activity-description em{font-style:italic}#analytics-div .activity-columns .activity-icon{float:left;margin-right:10px}#analytics-div .hover-info{position:absolute;top:18px;right:65px}#dashboard-div .filter-container{margin-top:20px;margin-right:8px;position:relative;min-height:40px}#dashboard-div .filter-container .filter-wrapper{position:absolute;top:0px;right:20px}#dashboard-div .filter-container .filter-wrapper .filter-icon{display:inline-block;cursor:pointer;vertical-align:middle}#dashboard-div .filter-container .filter-wrapper .btn{padding:12px 10px;padding-right:15px;line-height:1;height:auto}#dashboard-div .filter-container .filter-wrapper>.filter-menu{top:50px;right:0px;min-width:370px;position:absolute;border:1px solid #ccc;border-radius:5px;padding:20px;background-color:#fff;-webkit-box-shadow:0px 2px 5px 0px rgba(0,0,0,.2);-moz-box-shadow:0px 2px 5px 0px rgba(0,0,0,.2);box-shadow:0px 2px 5px 0px rgba(0,0,0,.2);z-index:1}#dashboard-div .filter-container .filter-wrapper>.filter-menu .form-row{margin-bottom:10px}#dashboard-div .filter-container .filter-wrapper>.filter-menu .analytics-label{min-width:120px;padding-right:30px;font-size:16px;text-align:right;color:#000}#dashboard-div .filter-container .filter-wrapper>.filter-menu::before{content:"";position:absolute;background-color:#fff;right:30px;top:-6px;width:12px;height:10px;transform:rotateZ(-45deg);border-right:1px solid #ccc;border-top:1px solid #ccc}#dashboard-div .filter-container .filter-wrapper>.filter-menu .footer-buttons{text-align:right;margin-top:20px}#dashboard-div .filter-container .filter-wrapper>.filter-menu .footer-buttons>button{margin-left:10px}#dashboard-div .filter-container .filter-button{display:inline-block;padding:7px;padding-right:30px;position:relative;background-color:#efefef;margin-right:10px;border:1px solid #ccc;border-radius:3px;margin-bottom:10px}#dashboard-div .filter-container .filter-button .close-icon{position:absolute;top:25%;right:5px;font-size:11px;cursor:pointer}#dashboard-div .filter-container .filter-button .close-icon:hover{color:red}#dashboard-div .filter-container .filter-buttons{margin-bottom:20px;margin-right:105px;margin-left:20px}#dashboard-div .statistics-container{margin:20px 0px 20px 20px}#dashboard-div .statistics-container .left{display:inline-block;width:31%;border:2px solid #0e72a3;margin-right:15px}#dashboard-div .statistics-container .left .overall-statistics-title{font-weight:normal;color:#0a5b83;font-size:20px;text-align:center}#dashboard-div .statistics-container .left .overall-statistics-data{font-weight:bold;font-size:16px;text-align:center}#dashboard-div .top-active-documents-container{border:2px solid #0e72a3;margin:10px 27px 10px 20px}#dashboard-div .top-active-documents-container .top-active-documents-title{font-weight:normal;color:#0a5b83;font-size:20px;text-align:center;padding:5px}#dashboard-div .top-active-documents-container .document-item{border:1px solid #ddd}#dashboard-div .top-active-documents-container .document-item:hover{background-color:#f6f6f6}#dashboard-div .top-active-documents-container .document-item .btn-group{margin-top:0px;float:right}#dashboard-div .top-active-documents-container .document-item .document-item-details .document-item-name{font-size:18px;margin-left:10px;color:#666;padding-top:4px;padding-bottom:4px;display:inline-block}#dashboard-div .top-active-documents-container .document-item .document-item-details .not-active{pointer-events:none;cursor:default}#dashboard-div .top-active-documents-container .document-item .document-item-details .document-item-facets{color:#000;font-weight:normal;font-size:12px;margin-left:5px;margin-right:10px;text-align:right;display:inline-block;vertical-align:sub}.folder-root>.scroll-container{top:-3px}#pdfView .toolbar.pdfToolbarHeight{bottom:16px}#pdfView .page>a{z-index:1000}.sprite-icon{cursor:pointer;display:inline-block}.sprite-non-clickable-icon{cursor:default;display:inline-block}.ui-selecting{background:#ebebeb}.modal-body #dontShowCheckbox{margin-top:0px;margin-right:15px}.modal-body .dontShowAgain{padding-top:10px}input.chars-remaining{background-color:rgba(0,0,0,0);border:none;margin-right:8px;width:80px;height:20px;cursor:default}input.sidebar-chars-remaining{color:#d0d2d3;float:right;color:#808184;background:rgba(0,0,0,0);border:none;text-align:right;margin-right:13px;font-size:12px;margin-bottom:5px}.prev-next-icon.shiftUp{position:relative;bottom:10px}.next-doc-icon{position:absolute;bottom:10px;z-index:10000;opacity:.95;font-size:42px;background-color:#fbfbf9;border-radius:999em;width:44px;height:44px;padding:0px;line-height:20px;text-align:center}.next-doc-icon:hover{color:#f58b3f}.next-doc-icon.next-doc{right:20px}.next-doc-icon.prev-doc{left:20px}select,input[type=file]{background-color:#fff;height:30px;line-height:30px}[class*=span]{float:left;min-height:1px;margin-left:20px}input[type=text].file-rename{font-size:14px;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px;width:80%;height:28px;box-sizing:content-box;border-width:1px;border-style:solid;padding-left:5px;padding-right:5px}.popover{background-color:#404041;border:none;-webkit-box-shadow:none;box-shadow:none;max-width:350px}.popover-content{background-color:#404041;color:#fff}.popover>.arrow{border-width:0px}.popover.left>.arrow:after{border-left-color:rgba(0,0,0,0)}.popover.right>.arrow:after{border-right-color:rgba(0,0,0,0)}.popover.top>.arrow:after{border-top-color:rgba(0,0,0,0)}.popover.bottom>.arrow:after{border-bottom-color:rgba(0,0,0,0)}.tooltip-inner{background-color:#404041;color:#fff}.tooltip.top .tooltip-arrow{border-top-color:rgba(0,0,0,0)}.tooltip.top-left .tooltip-arrow{border-top-color:rgba(0,0,0,0)}.tooltip.top-right .tooltip-arrow{border-top-color:rgba(0,0,0,0)}.tooltip.right .tooltip-arrow{border-right-color:rgba(0,0,0,0)}.tooltip.left .tooltip-arrow{border-left-color:rgba(0,0,0,0)}.tooltip.bottom .tooltip-arrow{border-bottom-color:rgba(0,0,0,0)}.tooltip.bottom-left .tooltip-arrow{border-bottom-color:rgba(0,0,0,0)}.tooltip.bottom-right .tooltip-arrow{border-bottom-color:rgba(0,0,0,0)}.thumbnail-wrapper .file-rename{margin-top:10px;margin-left:10px;width:92%}#pdfView .pageNumber{box-sizing:content-box}.login-error-container{width:325px;margin:10% auto;box-sizing:border-box}.login-error-container .login-error-box{width:100%;border:1px solid #dd3826}.login-error-container .login-error-box .login-error-title{width:100%;color:#dd3826;font-size:16px;margin-top:20px;text-align:center}.login-error-container .login-error-box .login-error-message{font-size:16px;color:#808184;text-align:left;margin:20px 20px}.login-error-container .login-button-box{background-image:url(images/workdocs-logo-blue_b8bc0688e2413ef789fdb290231b3a9e.png);background-repeat:no-repeat;background-position:top center;margin-top:65px;padding-top:80px}.login-error-container .login-button-box .login-continue-button,.login-error-container .login-button-box .login-continue-button:active,.login-error-container .login-button-box .login-continue-button:focus{outline:none;border:none}.login-error-container .login-button-box .login-continue-button{width:223px;height:40px;color:#fff;background:#1b8de2;border-radius:2px;margin-left:50px}.online-editing-top-nav-file-name-style{width:100%;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;display:inline-block}.hancom-top-nav{background-color:#808184}ul.ipWhitelistingUL{margin:0;padding:0}ul.ipWhitelistingUL li{cursor:pointer;position:relative;padding:12px 8px 12px 40px;list-style-type:none;background:#eee;font-size:18px;transition:.2s;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}ul.ipWhitelistingUL li:hover{background:#ddd}.removeCidr{position:absolute;right:0;top:0;padding:12px 16px 12px 16px}.removeCidr:hover{color:#fff}input.inputCidr{float:left;width:70%;height:30px;color:#000}.btn.btn-wddefault{border-radius:0px;padding:0px 5px}.audio-player-container{float:right;margin-top:10px;margin-right:11%}.audio-player{width:400px;min-width:300px;height:35px;box-shadow:0 4px 16px 0 rgba(0,0,0,.07);display:flex;justify-content:space-between;align-items:center;padding-left:24px;padding-right:24px;border-radius:4px;user-select:none;background-color:#fff}.audio-player svg,.audio-player img{display:block}.audio-player .play-pause-btn{cursor:pointer}.audio-player .loading .loading__spinner{width:16px;height:16px;border:2px solid #b0b0b0;border-right-color:rgba(0,0,0,0);border-radius:50%;animation:spin .4s linear infinite}.audio-player .slider{flex-grow:1;background-color:#d8d8d8;cursor:pointer;position:relative}.audio-player .slider .gap-progress{background-color:#1b8de2;border-radius:inherit;position:absolute;pointer-events:none}.audio-player .slider .gap-progress .pin{height:16px;width:16px;border-radius:8px;background-color:#1b8de2;position:absolute;pointer-events:all;box-shadow:0 1px 1px 0 rgba(0,0,0,.32)}.audio-player .slider .gap-progress .pin::after{content:"";display:block;background:rgba(0,0,0,0);width:200%;height:200%;margin-left:-50%;margin-top:-50%;border-radius:50%}.audio-player .controls{font-family:"Roboto",sans-serif;font-size:16px;line-height:18px;color:#55606e;display:flex;flex-grow:1;justify-content:space-between;align-items:center;margin-left:24px;margin-right:24px}.audio-player .controls .controls__slider{margin-left:16px;margin-right:16px;border-radius:2px;height:4px}.audio-player .controls .controls__slider .controls__progress{width:0;height:100%}.audio-player .controls .controls__slider .controls__progress .progress__pin{right:-8px;top:-6px}.audio-player .controls span{cursor:default}@keyframes spin{from{transform:rotateZ(0)}to{transform:rotateZ(1turn)}}@font-face{font-family:"WorkDocs-icons-beta";src:url(fonts/WorkDocs-icons-beta_9fd6ab2322aec87cad6ba45072788c9a.eot);src:url(fonts/WorkDocs-icons-beta_9fd6ab2322aec87cad6ba45072788c9a.eot#iefix) format("embedded-opentype"),url(fonts/WorkDocs-icons-beta_9c585e36b4b926d63c3272bda0a08770.ttf) format("truetype"),url(fonts/WorkDocs-icons-beta_f2b9d85c656f1436b2c0518d841e2395.woff) format("woff"),url(fonts/WorkDocs-icons-beta_cc7dd56a8269be25acf576989b3fa173.svg#WorkDocs-icons-beta) format("svg");font-weight:normal;font-style:normal}[class^=icon-],[class*=" icon-"]{font-family:"WorkDocs-icons-beta" !important;speak:none;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-SVG_apps:before{content:"\E94D"}.icon-SVG_reply-comment:before{content:"\E94E"}.icon-SVG_paste:before{content:"\E94B"}.icon-SVG_local:before{content:"\E94C"}.icon-SVG_upload:before{content:"\E94A"}.icon-SVG_calendar:before{content:"\E949"}.icon-SVG_add:before{content:"\E900"}.icon-SVG_admin:before{content:"\E901"}.icon-SVG_arrow-down:before{content:"\E902"}.icon-SVG_arrow-left:before{content:"\E903"}.icon-SVG_arrow-right:before{content:"\E904"}.icon-SVG_arrow-up:before{content:"\E905"}.icon-SVG_arrows-left:before{content:"\E906"}.icon-SVG_arrows-right:before{content:"\E907"}.icon-SVG_at:before{content:"\E908"}.icon-SVG_camera:before{content:"\E909"}.icon-SVG_carat-down:before{content:"\E90A"}.icon-SVG_carat-left:before{content:"\E90B"}.icon-SVG_carat-right:before{content:"\E90C"}.icon-SVG_carat-up:before{content:"\E90D"}.icon-SVG_check:before{content:"\E90E"}.icon-SVG_checked-solid:before{content:"\E90F"}.icon-SVG_checked-round-solid:before{content:"\E910"}.icon-SVG_checked-round:before{content:"\E911"}.icon-SVG_checked:before{content:"\E912"}.icon-SVG_close-round-solid:before{content:"\E913"}.icon-SVG_close:before{content:"\E914"}.icon-SVG_collapse:before{content:"\E915"}.icon-SVG_download-apps:before{content:"\E916"}.icon-SVG_edit:before{content:"\E917"}.icon-SVG_expand:before{content:"\E918"}.icon-SVG_filter:before{content:"\E919"}.icon-SVG_folder-open:before{content:"\E91A"}.icon-SVG_folder:before{content:"\E91B"}.icon-SVG_hamburger:before{content:"\E91C"}.icon-SVG_heart-filled:before{content:"\E91D"}.icon-SVG_heart:before{content:"\E91E"}.icon-SVG_help-filled:before{content:"\E91F"}.icon-SVG_help:before{content:"\E920"}.icon-SVG_icon-view:before{content:"\E921"}.icon-SVG_image:before{content:"\E922"}.icon-SVG_info-solid:before{content:"\E923"}.icon-SVG_info:before{content:"\E924"}.icon-SVG_link:before{content:"\E925"}.icon-SVG_list-view-filled:before{content:"\E926"}.icon-SVG_list-view:before{content:"\E927"}.icon-SVG_locked:before{content:"\E928"}.icon-SVG_mail:before{content:"\E929"}.icon-SVG_my-documents:before{content:"\E92A"}.icon-SVG_overflow-horizontal:before{content:"\E92B"}.icon-SVG_overflow-vertical:before{content:"\E92C"}.icon-SVG_pdf:before{content:"\E92D"}.icon-SVG_people:before{content:"\E92E"}.icon-SVG_pizza:before{content:"\E92F"}.icon-SVG_powerpoint:before{content:"\E930"}.icon-SVG_print:before{content:"\E931"}.icon-SVG_private:before{content:"\E932"}.icon-SVG_profile:before{content:"\E933"}.icon-SVG_radio-on:before{content:"\E934"}.icon-SVG_radio:before{content:"\E935"}.icon-SVG_remove:before{content:"\E936"}.icon-SVG_reply-anticlockwise:before{content:"\E937"}.icon-SVG_reply-clockwise:before{content:"\E938"}.icon-SVG_search:before{content:"\E939"}.icon-SVG_settings:before{content:"\E93A"}.icon-SVG_share:before{content:"\E93B"}.icon-SVG_sheet:before{content:"\E93C"}.icon-SVG_smiley:before{content:"\E93D"}.icon-SVG_star-filled:before{content:"\E93E"}.icon-SVG_star:before{content:"\E93F"}.icon-SVG_text:before{content:"\E940"}.icon-SVG_trash:before{content:"\E941"}.icon-SVG_ufo:before{content:"\E942"}.icon-SVG_unchecked:before{content:"\E943"}.icon-SVG_unlocked:before{content:"\E944"}.icon-SVG_word:before{content:"\E945"}.icon-SVG_zip:before{content:"\E946"}.icon-SVG_zoom-in:before{content:"\E947"}.icon-SVG_zoom-out:before{content:"\E948"}.top-nav{background-color:#1b8de2}.top-nav-list{display:inline-block;margin:0px}.top-nav-options{display:inline-block;float:right;margin-right:10px}.top-nav-options>li{height:50px;line-height:50px;margin:0 10px;display:inline-block;color:#fff;vertical-align:middle;position:relative}.top-nav-options .bubble>a:hover,.top-nav-options .bubble-active>a:hover,.top-nav-options .bubble>a:focus,.top-nav-options .bubble-active>a:focus{color:#fff !important}.top-nav-options .try-preview-button .try-preview-bubble{padding:6px 15px 5px 15px;background-color:#fff;border-radius:20px}.top-nav-options .try-preview-button a{color:#1b8de2}@media screen and (max-width: 1389px){.top-nav-options>li{margin:0 5px !important}}.preview-btn{-webkit-box-shadow:inset 0px 0px 0px 1px rgba(255,255,255,.4);-moz-box-shadow:inset 0px 0px 0px 1px rgba(255,255,255,.4);box-shadow:inset 0px 0px 0px 1px rgba(255,255,255,.4);border-radius:20px;color:#fff;padding:6px 12px 6px 12px}@media screen and (max-width: 1300px){.preview-btn-wrapper{display:none !important}}.aside-menu-content{float:right !important;position:static !important;width:auto !important}.workdocs-logo{width:130px;height:37px;background-size:130px 37px;background-repeat:no-repeat;background-image:url(images/WorkDocs_logo_789ce6ae974f35931e901416ef4962c7.png)}.workdocs-logo-preview{width:136px;height:29px;background-size:136px 29px;background-repeat:no-repeat;background-image:url(images/WorkDocs_logo_preview_5c865b0dcfe95d6dd7e15ac34f17b4a8.png)}@media screen and (-webkit-min-device-pixel-ratio: 2),screen and (max-moz-device-pixel-ratio: 2){.workdocs-logo{background-image:url(images/WorkDocs_logo@2x_37b7bbdea9eab05ba412911d6fa5ef37.png)}.workdocs-logo-preview{background-image:url(images/WorkDocs_logo_preview@2x_d95d93de9381e3adf565026f975dab43.png)}}.task-count-badge{display:inline-block;border-radius:50%;background:#fff;color:#1b8de2;text-align:center;line-height:16px;width:15px;height:15px;float:right;position:absolute;top:5px}.try-preview-new-text{opacity:.54}.top-banner{display:flex;align-items:center;background-color:#eed202;min-height:48px;height:auto;padding:10px 20px}.top-banner .close{background-color:unset;opacity:1;outline:none;border:none;float:right;margin-top:5px}.top-banner>span{color:#000}.top-banner>button{margin-left:20px;min-width:101px}.migrate-data-banner-container{display:flex;align-items:center;background-color:#ef6c00;min-height:calc(48px);height:auto;display:flex}.migrate-data-banner-icon-container{width:36px;padding:10px;align-self:flex-start}.migrate-data-banner-container span{color:#f8f5f5}.migrate-data-banner-content{display:flex;flex-direction:column;padding:10px;width:"100%"}.migrate-data-banner-body{font-size:14px}.migrate-data-banner-body strong:first-of-type{font-size:16px}.migrate-data-banner-body strong{font-weight:bolder}.migrate-data-banner-body a{color:#fff;text-decoration:underline}.migrate-data-banner-icon{fill:#fff;height:18px;width:18px}.rainier-modal-header{font-size:18px;font-weight:bold}.migrate-form-section{margin:10px 0px;color:#16191f}.migrate-form-section h2{font-size:16px;margin-bottom:10px;font-weight:bold}.migrate-form-section .migrate-inquires{font-weight:bold}.migrate-form-section .migrate-comment-title{font-weight:normal}.migrate-body{color:#16191f;font-size:14px}.migrate-selection-option{display:flex;padding:5px;position:relative}.migrate-selection-option input{align-self:start;margin-right:20px}.migrate-selection-option input[type=radio]{appearance:none;-webkit-appearance:none;-moz-appearance:none;border-radius:50%;width:16px;height:16px;border:2px solid #879596;background-color:#fff;margin:0;margin-top:3px;margin-right:12px;flex-shrink:0;flex-grow:0;cursor:pointer;position:relative}.migrate-selection-option input[type=radio]:checked{border:2px solid #0073bb}.migrate-selection-option input[type=radio]:checked::after{content:"";position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);width:8px;height:8px;border-radius:50%;background-color:#0073bb}.migrate-selection-option input[type=radio]:focus{outline:none;box-shadow:0 0 0 2px rgba(0,115,187,.3)}.migrate-selection-option input[type=checkbox]{appearance:none;-webkit-appearance:none;-moz-appearance:none;width:16px;height:16px;border:2px solid #879596;border-radius:2px;background-color:#fff;margin:0;margin-top:3px;margin-right:12px;flex-shrink:0;flex-grow:0;cursor:pointer;position:relative}.migrate-selection-option input[type=checkbox]:checked{background-color:#0073bb;border-color:#0073bb}.migrate-selection-option input[type=checkbox]:checked::after{content:"";position:absolute;top:2px;left:5px;width:4px;height:8px;border:solid #fff;border-width:0 2px 2px 0;transform:rotate(45deg)}.migrate-selection-option input[type=checkbox]:focus{outline:none;box-shadow:0 0 0 2px rgba(0,115,187,.3)}.migrate-selection-option label{font-size:14px;display:inline-block;line-height:1.4;color:#16191f;cursor:pointer}.migrate-helpful-resources{margin-top:10px;color:#16191f}.migrate-helpful-resources li{color:#16191f}.migrate-helpful-resources a{color:#1b8de2}#migrateComments{width:100%;box-sizing:border-box;max-width:100%;border:1px solid #e0e0e0;padding:10px;display:block;color:#787984}#migrateComments::placeholder{font-style:italic}#migrateComments::-moz-placeholder{font-style:italic}#migrateComments::-webkit-input-placeholder{font-style:italic}#migrateComments:-ms-input-placeholder{font-style:italic}.char-counter{color:#787984}.migrate-footer{display:flex;justify-content:flex-end}.migrate-submit{padding:6px 15px;text-align:center;vertical-align:middle;display:flex;justify-content:center;align-items:center}.migrate-submit:disabled{opacity:.5}.menu{height:50px;background-color:#f6f6f7}.menu-row{width:100%;height:50px;line-height:50px;padding:0px 20px}.menu-bar{display:inline-block}.menu-button{margin-left:8px}.main-menu-bar-left-padded{padding-left:15px;display:inline-block}.menu-bar-left-padded{margin-left:-10px;display:inline-block}.menu-item,.menu-item-icon,.menu-item-padded{display:inline-block;color:#404041;padding-left:2px;padding-right:2px;vertical-align:middle}.menu-item :hover,.menu-item-icon :hover,.menu-item-padded :hover{color:#808184}.menu-item-padded{padding-left:10px;padding-right:10px}.menu-item-icon{padding-left:4px;padding-right:4px}.low-padding{padding-left:5px;padding-right:5px}.menu-text{color:#404041;vertical-align:middle}.menu-text :hover{color:#808184}.menu-text-disabled{color:#404041;vertical-align:middle}.menu-text-disabled :hover{color:#404041}.menu-icon{color:#b1b3b5;display:inline-block;margin:0px 5px;vertical-align:sub}.menu-icon :hover{color:#808184}.main-menu-icon{color:#fff;display:inline-block;margin:0px 5px;vertical-align:middle}.main-menu-icon :hover{color:#fff}.main-menu-item,.main-menu-option-item-padded,.main-menu-item-padded{display:inline-block;color:#fff;vertical-align:middle;height:50px;padding:15px 5px 15px 5px}.main-menu-item :hover,.main-menu-option-item-padded :hover,.main-menu-item-padded :hover{color:#fff}.main-menu-item :active,.main-menu-option-item-padded :active,.main-menu-item-padded :active{color:#fff}.main-menu-item-padded{padding-left:7px;padding-right:7px}.main-menu-option-item-padded{padding-left:2px;padding-right:2px}.main-menu-logo{display:inline-block;color:#fff;border-right:solid rgba(255,255,255,.5) 1px;padding-left:2px;padding-right:2px;margin-right:15px;vertical-align:middle;height:50px;padding:6px 18px 10px 6px}.main-menu-logo :hover{color:#fff}.main-menu-text,.profile-pic.profile-pic-small,.profile-pic{font-weight:400;color:#fff;display:inline-block}.main-menu-text-unbold,.profile-name{font-weight:100;color:#fff;display:inline-block}.right-panel-widget{display:inline-block;float:right;padding-left:20px;padding-right:18px;border-left:2px #e0e0e0 solid;height:50px}.top-action-bar{display:inline-block;height:50px}.right-panel-widget{display:inline-block;float:right;padding-left:20px;padding-right:18px;border-left:2px #e0e0e0 solid;height:50px}.upload-dropdown-menu{right:10px;top:20px}.upload-dropdown-menu li{padding:0px !important}.upload-dropdown-menu li label{padding:0px 10px;width:100%}.newfile-dropdown-menu{right:30%;top:20px}.menu-text .active-text{font-weight:bold}.main-menu-text .active-text,.profile-pic .active-text{color:#fff}.main-menu-text .active-text :hover,.profile-pic .active-text :hover{color:#fff}.main-menu-item a:focus,.main-menu-item-padded a:focus,.main-menu-option-item-padded a:focus,.main-menu-item a:focus .active-text,.main-menu-item-padded a:focus .active-text,.main-menu-option-item-padded a:focus .active-text{color:#fff !important}.activated,.activated:hover,a.activated :hover{color:#1b8de2}.disallowed-cursor,.disallowed-cursor *{cursor:not-allowed}.bubble,.bubble-active{padding:7px 11px 6px 11px !important}.bubble:hover,.bubble-active:hover,.bubble:focus,.bubble-active:focus,.bubble:focus-within,.bubble-active:focus-within{border-radius:20px;background:#3299e5}.top-nav-options a.bubble,.top-nav-options a.bubble-active{color:#fff}.bubble-active{border-radius:20px;background:#3299e5}#bubble-hancom-editor-mydocs:hover,#bubble-hancom-editor-mydocs:focus,#bubble-hancom-editor-currentFolder:hover,#bubble-hancom-editor-currentFolder:focus{background-color:#909194}.profile-name{margin-right:-33px;vertical-align:middle}.profile-name-style{white-space:nowrap;max-width:150px;text-overflow:ellipsis;overflow:hidden;margin-right:28px}.profile-block{padding:8px 0px 10px 0px}.profile-pic{width:30px;height:30px;border-radius:15px;-webkit-border-radius:15px;-moz-border-radius:15px;background-repeat:no-repeat;margin-right:20px}.profile-pic.profile-pic-small{width:30px;height:30px;border-radius:15px;border-width:1px;-webkit-border-radius:15px;-moz-border-radius:15px}.profile-photo-container{position:relative;display:inline-block}.profile-photo-container:hover .profile-photo-overlay{opacity:1}.profile-photo-container:hover .profile-panel-person-thumbnail{opacity:0}.profile-panel-person-thumbnail{margin-right:0px;opacity:1;transition:.3s ease}.profile-photo-overlay{position:absolute;bottom:0;left:0;right:0;cursor:pointer;border-radius:50%;-webkit-border-radius:50%;-moz-border-radius:50%;background-color:#1b8de2;overflow:hidden;height:100%;width:100%;opacity:0;transition:.3s ease}.profile-photo-overlay-icon{color:#fff;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);-ms-transform:translate(-50%, -50%)}.profile-upload-button-container{height:0px}.right-click-menu{position:absolute;display:block !important;visibility:hidden;opacity:0;transition:visibility .3s ease-in-out,opacity .3s ease-in-out;-webkit-transition:visibility .3s ease-in-out,opacity .3s ease-in-out}.right-click-menu.open{visibility:visible;opacity:1}.search-result{display:inline-block;color:#404041;padding-left:10px;padding-right:10px;vertical-align:middle;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}@media screen and (max-width: 1439px){.search-result{max-width:450px}}@media screen and (min-width: 1440px){.search-result{max-width:700px}}.breadcrumb-dropdown-list-trigger{color:#1b8de2}.breadcrumb-dropdown-list{position:absolute;left:10px;top:40px}.breadcrumb-item{display:inline-block;padding-left:2px;padding-right:2px;vertical-align:top}.breadcrumb-item a,.breadcrumb-item a:hover{color:#1b8de2}.breadcrumb-item a:focus{outline:auto}.breadcrumb-current-folder-dropdown{display:inline-block;line-height:normal}.breadcrumb-current-folder-dropdown>.dropdown-menu{width:100%}.breadcrumb-current-folder-button{max-width:250px}.breadcrumb-current-folder-button:after{font-family:"WorkDocs-icons-beta";content:"\E90A";color:#808184;vertical-align:sub;margin-left:10px}.top-nav-search-container{overflow:hidden;height:50px}.search{display:inline-block;color:#fff;vertical-align:middle;height:40px;padding:5px;padding-left:10px;margin-top:5px;background:rgba(255,255,255,.2);width:100%;max-width:400px}.search .icon-SVG_search{color:#fff;margin:0px 5px;vertical-align:middle;font-weight:bold;padding-bottom:5px}.search input.search-text::placeholder{font-weight:300;font-style:italic;text-overflow:ellipsis}.search .search-text{width:calc(100% - 150px);margin-left:5px;border:none;outline:none;line-height:30px;height:30px;font-weight:300;color:#fff;background-color:rgba(0,0,0,0)}.search .search-text::placeholder{color:#fff}.search .search-text::-ms-clear{display:none}.search .search-text.ng-dirty.ng-valid{border:0px solid}.search .advanced-button{background:rgba(255,255,255,.15);border:rgba(255,255,255,.15);float:right;width:98px}.search .advanced-button:hover,.search .advanced-button:focus{background:rgba(255,255,255,.2);border:rgba(255,255,255,.2)}.search .advanced-button.enabled{background:#fff;border:#fff;color:#1b8de2}#search-menu-background{width:100%;height:100%;background:rgba(255,255,255,0);display:none;position:absolute;z-index:2}#search-menu-modal{width:100%;background:#fff;position:absolute;height:0px;overflow:hidden;z-index:3}#search-menu-modal .body{padding-top:20px}#search-menu-modal .body .center-sections{margin:0 auto;width:1180px}#search-menu-modal .body .option-header{margin-bottom:20px;border-bottom:none}#search-menu-modal .body .option-label{padding-left:7px;padding-right:10px}#search-menu-modal .body .selected{color:#1b8de2}#search-menu-modal .body .disabled{color:#e0e0e0}#search-menu-modal .body .right-border{border-right:1px solid #e0e0e0}#search-menu-modal .body .section{display:inline-table;padding:0px 40px;height:320px;position:relative;vertical-align:top}#search-menu-modal .body .section-option{margin-bottom:11px}#search-menu-modal .body .left-tab{margin-left:20px}#search-menu-modal .body table{border:none;margin-bottom:0px}#search-menu-modal .body tr:hover{background:#fff}#search-menu-modal .body td{padding-top:0px;padding-bottom:15px;padding-left:0px;padding-right:0px}#search-menu-modal .body .column-width{min-width:100px}#search-menu-modal .body .date-range-section{margin-top:35px}#search-menu-modal .body input{color:#404041;border:1px solid #e0e0e0;padding:5px;margin-top:11px}#search-menu-modal .body div.start-date,#search-menu-modal .body div.end-date{width:90px;display:inline-block;margin-top:11px}#search-menu-modal .body div.start-date input,#search-menu-modal .body div.end-date input{width:90px;margin-top:0px}#search-menu-modal .body div.start-date label,#search-menu-modal .body div.end-date label{width:90px}#search-menu-modal .body div.end-date{float:right}#search-menu-modal .body input.start-date,#search-menu-modal .body input.end-date{width:90px}#search-menu-modal .body input.end-date{margin-left:11px}#search-menu-modal .body input.start-date::placeholder,#search-menu-modal .body input.start-date::placeholder{text-overflow:ellipsis}#search-menu-modal .body input.file-extension,#search-menu-modal .body input.owner{width:180px}#search-menu-modal .body input.owner+ul{border:1px solid #e0e0e0;max-width:350px;overflow-x:auto}#search-menu-modal .body .owner-list-container{max-height:105px;width:250px;overflow:auto;margin-top:5.5px;position:absolute}#search-menu-modal .body .owner-list-container .owner-item{display:inline-block;background-color:#f6f6f7;color:#404041;border:1px solid #b1b3b5;border-radius:3px;padding:3px;margin:2px 0px;position:relative}#search-menu-modal .body .owner-list-container .owner-item div{display:inline-block;vertical-align:middle;max-width:200px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}#search-menu-modal .body .owner-list-container .owner-item div:hover{color:#404041}#search-menu-modal .body .owner-list-container .owner-item .icon-remove-owner:before{content:"\E914";color:#404041;vertical-align:middle}#search-menu-modal .body .owner-list-container .owner-item .icon-remove-owner:before:hover{color:#404041}#search-menu-modal .body .owner-list-container .owner-item a:focus{outline:auto}#search-menu-modal .footer{width:100%;text-align:center;padding:22px}#search-menu-modal .footer button{padding:5.5px 33px}#admin-div .admin-section{font-weight:medium;padding-top:8px;padding-bottom:6px}#admin-div .admin-section-body{padding-bottom:23px}#admin-div .admin-section-header{font-weight:bold;color:#808184}#admin-div .admin-description{color:#808184;display:inline-block;width:350px;clear:left}#admin-div .invite-description{padding-top:10px;position:relative;top:10px}#admin-div .admin-invite-button{margin-top:20px}#admin-div .locale-set{width:234px;height:25px;border-radius:1px}#admin-div .btn{width:109px}#admin-div .admin-storage-midbody{padding-bottom:0px}#admin-div .admin-security-midbody{padding-bottom:10px}#admin-div .invite-user-button:hover{text-decoration:none}#admin-div .invite-user-icon{display:inline-block;vertical-align:middle;padding-top:15px}#admin-div .search-user-form{display:inline-block}#admin-div .search-user-form .icon_style{position:relative;left:-30px}#admin-div .search-user-form .icon_style:hover{color:#1b8de2}#admin-div .search-user-text{right:32px;width:294px;height:25px;border-radius:2px;padding:0px 28px 0px 5px;font-size:12px;border:1px solid #ccc !important}#admin-div .search-user-text::-ms-clear{display:none}#admin-div .search-user-icon{position:absolute;right:40px;top:5px}#admin-div .adminlist a{text-decoration:none}#admin-div .adminlist .sm{width:8%;margin-left:10px;text-overflow:ellipsis;white-space:nowrap;float:right}#admin-div .adminlist .med{width:16%;margin-left:10px;text-overflow:ellipsis;white-space:nowrap;float:right}#admin-div .adminlist .med.id-name{float:none}#admin-div .adminlist .lg{width:23%;margin-left:10px;text-overflow:ellipsis;white-space:nowrap;float:right}#admin-div .adminlist .user-active{font-weight:bold;color:#86a73e}#admin-div .adminlist .user-pending{font-weight:bold;color:#efad59}#admin-div .adminlist .user-inactive{font-weight:bold;color:#b42936}#admin-div .page-container{float:right;padding-right:35px}#admin-div #export-users-module{display:inline-block;margin-left:40px}#admin-div #export-users-module .btn{width:auto;padding:0 15px 0 15px}#admin-div #export-users-module .btn:hover span,#admin-div #export-users-module .btn:focus span{color:#e0e0e0}#admin-div #export-users-module .btn.disabled{cursor:not-allowed}#admin-div #export-users-module .btn .icon-SVG_carat-down{color:#fff;vertical-align:sub}#right,right{height:100%;float:right;border-left:1px solid #e0e0e0}.right-panel-header{height:50px;line-height:50px;padding:0px 20px;background-color:#fff}.right-sidebar-minimized .sidebar-openpanel{margin-top:10px}#right-sidebar .tabcontainer{width:2000px;position:absolute;top:50px;bottom:0px}#right-sidebar .tabcontainer.with-send-drafts-button div#feedback-container{padding-bottom:40px}.share-div,.info-div,.link-div{padding:20px}.person-entry-title{width:100%;padding-left:20px;padding-right:10px}.person-entry-title .person-entry-right-part{padding:10px 20px;vertical-align:middle;line-height:30px}.person-entry-title .person-entry-right-part:before{content:"";position:relative;left:-20px;height:40%;border-left:1px solid #e0e0e0;box-sizing:border-box}.person-entry-left-part{display:block;position:relative;width:auto;height:50px;padding:10px 0px;overflow:hidden}.person-entry-right-part{display:block;width:130px;height:50px;padding:10px 0px 10px 10px;float:right}.person-entry-permission-button{padding:6px 10px 4px 10px;width:100%;text-align:left}.person-entry-permission-button+.dropdown-menu{margin-top:0px;min-width:unset;width:100%}.person-entry-permission-view{display:inline-block;color:#404041;padding:0px 10px;border:none;line-height:normal;width:100%;text-align:left}.permission-button-carat-down{float:right;font-size:13px;margin-top:3px}.contributor-entry .photo,.people-entry .photo{float:left}.people-entry .icon-remove{margin-right:10px;color:#777}.people-entry .icon-remove:hover{color:#bbb}.people-entry .username{max-width:75%}.people-entry .user-data-container{display:inline-block}.people-entry .comment-count-badge{display:inline-block;position:absolute;top:27px;left:18px;background:#1b8de2;color:#fff;vertical-align:middle;text-align:center;line-height:18px}.group-entry{padding-bottom:6px}.empty-state-illustration-container{position:absolute;left:50%;bottom:100px}.empty-state-illustration-container .empty-state-illustration{position:relative;left:-50%}.empty-state-illustration{width:156px;height:125px;background-repeat:no-repeat;background-position:0px 0px;background-size:156px 125px;background-image:url(images/empty-1_703bdecc1025d00d721db5ecca2b5872.png)}.info-box{z-index:2000;background-color:#fff;padding:10px;width:255px;line-height:24px;border:1px solid #e0e0e0;-webkit-box-shadow:0px 0px 3px 0px rgba(0,0,0,.16);-moz-box-shadow:0px 0px 3px 0px rgba(0,0,0,.16);box-shadow:0px 0px 3px 0px rgba(0,0,0,.16);opacity:.9}@-webkit-keyframes active{0%{-webkit-transform:scale(0.1);opacity:1}70%{-webkit-transform:scale(2.5);opacity:0}100%{opacity:0}}@keyframes active{0%{transform:scale(0.1);opacity:1}70%{transform:scale(2.5);opacity:0}100%{opacity:0}}#notification{visibility:hidden;position:absolute;z-index:2000}#notification .beacon{position:absolute;background-color:#00d570;opacity:.53;height:24px;width:24px;border-radius:50%;margin-left:-12px;margin-top:-12px}#notification .beacon::before{position:absolute;content:"";height:24px;width:24px;background-color:rgba(0,0,0,0);border-radius:50%;box-shadow:0px 0px 2px 2px #00d570;-webkit-box-shadow:0px 0px 2px 2px #00d570;-moz-box-shadow:0px 0px 2px 2px #00d570;-webkit-animation:active 2s 20 linear;animation:active 2s 20 linear}#notification .beacon.bottom{left:50%}#notification .beacon.top{left:50%;top:100%}#notification .beacon.right{top:50%}#notification .beacon.left{top:50%;left:100%}#notification .ballon{font-size:11px;color:#808184;background-color:#fff;padding:12px;border-radius:5px;box-shadow:0px 3px 6px 0px rgba(0,0,0,.16);-webkit-box-shadow:0px 3px 6px 0px rgba(0,0,0,.16);-moz-box-shadow:0px 3px 6px 0px rgba(0,0,0,.16);max-width:320px;min-width:200px}#notification .ballon .title{color:#404041}#notification .ballon .footer{padding-top:5px;font-size:12px;position:relative}#notification .ballon .footer a,#notification .ballon .footer a:link,#notification .ballon .footer a:visited,#notification .ballon .footer a:hover,#notification .ballon .footer a:active{color:#1b8de2}#notification .ballon .footer span{position:absolute;right:0}#notification.visible{visibility:visible}aside-menu{display:none}.aside-menu{background-color:#fff;position:absolute;top:0;bottom:0;z-index:0;overflow:hidden;min-height:100%;max-height:100%;width:300px;display:block;box-shadow:-2px 0px #e0e0e0}.aside-menu a:focus{outline:auto}.aside-menu-content{position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%;-webkit-transform:none;transform:none;z-index:1}.aside-menu-animate{-webkit-transition:-webkit-transform 400ms ease;transition:transform 400ms ease}.aside-back-drop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:99;background:#000;opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.aside-back-drop.in{opacity:.1}lock-and-edit .lock-switch-container{width:100%}lock-and-edit .lock-switch-container .left{display:inline-block;width:85%}lock-and-edit .lock-switch-container .right{display:inline-block;float:right}lock-and-edit .lock-switch-container .switch{vertical-align:sub}lock-and-edit .lock-and-edit-container{position:absolute;top:50px;right:20px}.dialog-box-2018 .positive-button{min-width:70px}.dialog-box-2018 .negative-button{min-width:70px}.dialog-box-2018.medium-style .modal-content{max-width:440px}.rainier-modal-header{padding:20px;background-color:#fff;border:none}.rainier-modal-header .subtitle{color:#808184}.rainier-modal-header .close{opacity:1}.rainier-modal-body{padding:20px;padding-top:0px;background-color:#fff;color:#808184}.rainier-modal-footer{text-align:right;margin:0;padding:5px 24px 26px 20px;background-color:#fff;border:none}.rainier-modal-belt{background-color:#f6f6f7;margin-top:0px;margin-right:-20px;margin-bottom:0px;margin-left:-20px;padding:5px 20px}.rainier-modal-textArea{padding:10px;min-height:100px;border:1px solid #e0e0e0}.nova-force-in-modal-container .modal-dialog{width:640px}.nova-force-in-modal-background{opacity:.1}.nova-force-in-modal-body{padding:20px;padding-top:0px}.nova-force-in-modal-body .subtitle{margin-bottom:20px}.nova-force-in-modal-body a{color:#337ab7}.nova-force-in-button{background-color:#2f6fef;color:#ebf1fe;border-radius:24px;border:none;padding:6px 16px;text-transform:uppercase}.nova-force-in-features-list{margin-left:15px;margin-bottom:20px}.nova-force-in-features-list>li{list-style-type:disc}resource-selection{display:inline-block;width:100%}resource-selection li.resource-selection-row{padding:10px 20px;-webkit-box-shadow:inset 0px -1px #e0e0e0;-moz-box-shadow:inset 0px -1px #e0e0e0;box-shadow:inset 0px -1px #e0e0e0}resource-selection li.resource-selection-row a,resource-selection li.resource-selection-row span{color:#404041}resource-selection li.resource-selection-row .select-box{margin-right:5px}resource-selection .resource-selection-body{height:350px;overflow-y:auto}resource-selection .resource-selection-body span.folder-indicator{float:right;color:#1b8de2}resource-selection .resource-selection-footer{text-align:right;padding-top:20px;padding-right:10px;padding-bottom:20px}resource-selection .resource-selection-footer .btn-primary{display:inline-block;color:#fff;background:#1b8de2;border:none;height:30px;padding:0px 15px;min-width:70px;border-radius:0px}.location-holder{padding:10px 20px;background-color:#f6f6f7}.selected-resource-for-transfer{padding-top:7px;display:inline-block;max-width:320px}.transfer-resource-modal-recipient-selection-wrapper .inputbox{width:100%;margin-top:20px;border:1px solid #e0e0e0;padding:10px}.assignee-name{list-style-type:square;margin-top:20px;max-width:300px}.assignee-name:empty{display:none}.task-creator-info{position:relative;line-height:30px;overflow:hidden;text-align:left}.task-buttons{float:right}.comment-container{max-height:350px;overflow:auto}.task-comment{padding:10px 0px}empty-task-list{display:flex;justify-content:center;align-items:center;height:100%}.empty-task-list-background{width:184px;height:103px;background-size:184px 103px;background-repeat:no-repeat;background-image:url(images/tasks_4a8dc77834c6eb8b9b206971d6cc6f4a.png);margin:auto}.empty-message{display:inline-block;padding-top:50px}@media screen and (-webkit-min-device-pixel-ratio: 2),screen and (max-moz-device-pixel-ratio: 2){.empty-task-list-background{background-image:url(images/tasks@2x_723559235cb2336a884a9f907541a813.png)}}.approvals-title-bar-wrapper .buttons-wrapper{float:right;margin-right:10px;margin-top:10px}.approvals-title-bar-wrapper .approval-title-text{font-weight:bold;font-size:13px}.approvals-title-bar-wrapper .approval-title-bar{padding-left:20px;padding-top:10px}.approvals-viewer .progress-indicator,.approvals-viewer .progress-indicator-file-browser-item{position:absolute;top:45%;left:45%}.aproval-panel-container{display:flex;flex-direction:column;height:100%;overflow-y:auto}.aproval-panel-container .approval-description{margin-top:15px}.approval-info-section{padding:0px 20px;margin-bottom:20px}.approval-owner-section{padding:0px 20px}.approval-pending-indicator{height:15px;width:15px;background-color:#e0e0e0;border-radius:50%;display:inline-block}.approval-rejected-indicator{height:15px;width:15px;background-color:#ff1744;border-radius:50%;display:inline-block}.approval-approved-indicator{height:15px;width:15px;background-color:#00c853;border-radius:50%;display:inline-block}approval-requests-list{display:block;margin-left:20px;margin-right:20px;margin-bottom:20px;height:100%}.approvals-list-container{height:100%}.approvals-list-container .section-heading{font-size:15px;margin-bottom:10px;margin-left:20px;font-weight:bold}.approvals-list-container .table-body,.approvals-list-container .no-data-section{height:calc(100% - 40px);min-height:150px;overflow-y:auto}.approvals-list-container .no-data-section{padding-top:50px}.approval-status-container{flex-grow:1}.approval-progress{margin-top:20px}.approval-action-section{padding:20px}.approver-entry-title{width:100%;padding-left:20px;padding-right:10px}.approver-entry-title .approver-entry-left-part{line-height:30px;vertical-align:middle;padding-left:0px}.approver-entry-title .approver-entry-right-part{padding:10px 20px;vertical-align:middle;line-height:30px}.approver-entry-title .approver-entry-right-part:before{content:"";position:relative;left:-20px;height:40%;border-left:1px solid #e0e0e0;box-sizing:border-box}.approver-entry-left-part{display:block;position:relative;width:auto;height:50px;padding:10px 0px 10px 20px;overflow:hidden}.approver-entry-right-part{display:block;width:130px;height:50px;padding:10px 0px 10px 10px;float:right}span.group-approval-cfg{font-weight:normal}.approval-status-cell{line-height:30px;vertical-align:middle;padding:10px 20px 10px 10px}.approver-status-indicator{float:right;margin-top:8px}.aproval-files-panel-container{height:100%;overflow-y:auto}.approval-file-panel-description{padding:0px 20px}.approval-comments-panel-container{padding:0px 20px}.comment-details{padding:15px 20px}.approval-action-indicator{float:right;margin-top:2px}.empty-comment-section{text-align:center;padding:20px}.approval-resource-selector-container{margin-top:20px}.approval-resource-selector-container .resource-icon{vertical-align:text-bottom;margin-right:4px}.approval-resource-selector-container .resource-name{max-width:85%}.approval-resource-selector-container .selected{box-shadow:3px 0px 0px 0px #1b8de2 inset;-webkit-box-shadow:3px 0px 0px 0px #1b8de2 inset;-moz-box-shadow:3px 0px 0px 0px #1b8de2 inset;background-color:#f1f8fd}.approval-resource-selector-container .resource-entry:hover{background-color:#f1f8fd}.approval-resource-selector-container .resource-link{height:40px;line-height:40px;padding:0px 20px;display:inline-block;color:#404041;width:100%}.approval-resource-selector-container .back-button{padding:20px 20px 0px 20px}.approval-resource-selector-container .folder-indicator{float:right;line-height:40px}.approval-resource-selector-container .empty-folder-section{text-align:center;padding:20px}approval-level{display:block}approval-level.disabled{color:unset;opacity:.6;cursor:not-allowed;pointer-events:none}.approval-heading{font-size:13px;font-weight:bold}.approval-modal .rainier-modal-header{padding:18px}.approval-modal .approval-modal-title{font-size:15px;font-weight:bold}.approval-modal .approval-heading-toggle-icon{display:inline-block;margin-left:10px}.approval-modal .remove-group-link{float:right;cursor:pointer}.approval-modal .modification-disallowed-text{float:right;color:#b1b3b5;cursor:default}.approval-modal .panel-group .panel+.panel{margin-top:0px}.approval-modal .panel-group .panel{margin-left:-20px;margin-right:-20px;border-radius:0px;box-shadow:none;border:none;border-top:1px solid #efefef}.approval-modal .panel-group .panel:last-child{border-bottom:1px solid #efefef}.approval-modal .panel-body{background-color:#f6f6f7;border:none !important;padding:22px}.approval-modal .panel-default .panel-heading{border-radius:0px;background-color:#fff;background-image:none}.approval-modal .panel-default .panel-heading .panel-title>a:focus{outline:none;color:inherit !important;text-decoration:none !important}.approval-modal .panel-open .panel-heading{background-color:#f6f6f7}.approval-level-wrapper .hint-text{font-weight:normal;color:#808184}.approval-level-wrapper input,.approval-level-wrapper textarea{border:1px solid #e0e0e0;padding:10px;display:block;width:100%;margin-bottom:10px;margin-top:5px}.approval-level-wrapper input.due-date{display:inline-block;width:300px;margin-right:7px}.approval-level-wrapper textarea{resize:vertical;min-height:88px;max-height:200px}.approval-level-wrapper .accordion-toggle{cursor:pointer}.approval-level-wrapper .approval-level-field-heading{margin-bottom:7px;margin-top:25px}.approval-level-wrapper .principals-list{background-color:#fff;margin-left:-22px;margin-right:-22px}.approval-level-wrapper .principals-list .delete-principal-icon{float:right;line-height:35px}.approval-level-wrapper .principals-list .principal-name{max-width:300px}.approval-level-wrapper .principals-list .principal-email{color:#808184;font-size:10px}.approval-level-wrapper .principals-list .principal-item{border-bottom:1px solid #e0e0e0;padding:7px;padding-left:22px;padding-right:22px}.approval-level-wrapper .principals-list .disabled{color:unset;opacity:.5;cursor:not-allowed;pointer-events:none}.ingress-modal-header{color:#fff;background-color:#1b8de2}.ingress-modal-header .close{color:#fff}.ingress-modal-body{display:flex;flex-wrap:wrap;padding:20px}.ingress-modal-tile{max-width:224px;padding:10px}.ingress-modal-tile-image{display:flex;background-color:#edf7ff;padding:29px 0px;justify-content:center;border-radius:4px}.ingress-modal-tile-title{color:#000;margin-top:10px}.ingress-modal-tile-description{margin-top:10px;position:relative}.showMoreLess-content-container{height:40px;overflow:hidden}.showMoreLess-content-container.expanded{height:auto}.showMoreLess-bar{width:100%}.ingress-modal-tile-download{margin-top:5px}.ingress-modal-tile-download .divider{padding:0px 4px}.ingress-modal-image-companion{width:84px;height:84px;background-size:84px 84px;background-repeat:no-repeat;background-image:url(images/ic_companion_5d9fbe8bc2ca0d395b435ee628bfbb75.svg)}.ingress-modal-image-drive{width:84px;height:84px;background-size:84px 84px;background-repeat:no-repeat;background-image:url(images/ic_drive_73a8665f24992e99dcd35ad96ee44497.svg)}.ingress-modal-image-mobile{width:84px;height:84px;background-size:84px 84px;background-repeat:no-repeat;background-image:url(images/ic_mobile_2dbfc5697b269a74713f4ea1a77723ad.svg)}.ingress-modal-image-meetings,.ingress-modal-image-sync{width:84px;height:84px;background-size:84px 84px;background-repeat:no-repeat;background-image:url(images/ic_sync_e79f63a743fafd7db3fbf8cf266fe37c.svg)}.ingress-modal-image-approvals{width:84px;height:84px;background-size:84px 84px;background-repeat:no-repeat;background-image:url(images/ic_approvals_83c09349eab3a5701c1db05d0d5a1f76.svg)}.ingress-modal-image-migrations{width:84px;height:84px;background-size:84px 84px;background-repeat:no-repeat;background-image:url(images/ic_migration_39b2ae54cf69b52983d5e2a85eafd15e.svg)}.ingress-modal-image-classifications{width:84px;height:84px;background-size:84px 84px;background-repeat:no-repeat;background-image:url(images/ic_classifications_ae040ee49b149ea476662a264b6ad9f5.svg)}
.approval-status-container{flex-grow:1}.approval-progress{margin-top:20px}.approval-action-section{padding:20px}.approver-entry-title{width:100%;padding-left:20px;padding-right:10px}.approver-entry-title .approver-entry-left-part{line-height:30px;vertical-align:middle;padding-left:0px}.approver-entry-title .approver-entry-right-part{padding:10px 20px;vertical-align:middle;line-height:30px}.approver-entry-title .approver-entry-right-part:before{content:"";position:relative;left:-20px;height:40%;border-left:1px solid #e0e0e0;box-sizing:border-box}.approver-entry-left-part{display:block;position:relative;width:auto;height:50px;padding:10px 0px 10px 20px;overflow:hidden}.approver-entry-right-part{display:block;width:130px;height:50px;padding:10px 0px 10px 10px;float:right}span.group-approval-cfg{font-weight:normal}.approval-status-cell{line-height:30px;vertical-align:middle;padding:10px 20px 10px 10px}.approver-status-indicator{float:right;margin-top:8px}

/*# sourceMappingURL=styles_7afddf1238d6ec580935.css.map*/