.cant-select {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.ellipsis {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
/*********************************
    Document Viewer Markup
*********************************/
.document-viewer-wrapper {
  display: inline-block;
  font-family: sans-serif;
  float: right;
  box-sizing: border-box;
  position: relative;
  background: #fff;
  border: 1px solid #dadada;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.07);
}
.document-viewer-wrapper * {
  box-sizing: border-box;
}
.document-viewer-wrapper *:before {
  box-sizing: inherit;
}
.document-viewer-wrapper *:after {
  box-sizing: inherit;
}
.txt .document-viewer-outer {
  overflow-x: hidden;
  overflow-y: auto;
}
.document-viewer {
  padding: 10px 20px;
  min-height: 100%;
  *zoom: 1;
}
.document-viewer pre,
.document-viewer pre.prettyprint {
  padding: none;
  border: none;
  font-size: 11px;
  line-height: 21px;
}
.document-viewer-empty-text {
  padding: 20px 0;
  text-align: center;
}
.dv-error {
  padding: 10px;
  text-align: center;
  margin: 20px auto;
  font-size: 14px;
  color: #fff;
  background: #D87777;
  background: -moz-linear-gradient(top, #d87777 1%, #d95757 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(1%, #d87777), color-stop(100%, #d95757));
  background: -webkit-linear-gradient(top, #d87777 1%, #d95757 100%);
  background: -o-linear-gradient(top, #d87777 1%, #d95757 100%);
  background: -ms-linear-gradient(top, #d87777 1%, #d95757 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#d87777', endColorstr = '#d95757', GradientType = 0);
  background: linear-gradient(top, #d87777 1%, #d95757 100%);
  border: 1px solid #B72224;
}
.dv-error span {
  display: block;
  margin-top: 5px;
  color: #EEE;
  font-size: 11px;
}
.dv-loading {
  height: 32px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: transparent url(../images/loading.gif) no-repeat center center;
}
/*********************************
    Audio/Video Player
*********************************/
.ttw-video-player {
  margin: 0 auto;
  padding: 10px 0;
  position: relative;
}
/* This is where the video shows up */
.ttw-video-player .jPlayer-container {
  background: #000;
  width: 554px;
  height: 312px;
}
/* THis is the video poster */
.ttw-video-player {
  /* http://perishablepress.com/press/2009/12/06/new-clearfix-hack */
}
.ttw-video-player .jPlayer-container img {
  display: none !important;
}
.ttw-video-player .player-controls {
  background: transparent;
  height: 36px;
  width: 100%;
  z-index: 1;
  position: relative;
  margin-top: 10px;
}
.ttw-video-player .button {
  width: 25px;
  height: 25px;
  cursor: pointer;
}
.ttw-video-player .play,
.ttw-video-player .pause {
  position: absolute;
  left: 0;
  top: 0;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: .9;
}
.ttw-video-player .play {
  background-image: url(../images/av-player/play-dark.svg);
  background-size: 18px auto;
}
.ttw-video-player .pause {
  display: none;
  background-image: url(../images/av-player/pause-dark.svg);
  background-size: 22px auto;
}
.ttw-video-player .progress-wrapper {
  top: 0;
  margin: 0 85px 0 25px;
  width: auto;
  padding: 0 10px;
  position: relative;
  top: 9px;
}
.ttw-video-player .progress-bg,
.ttw-video-player .volume {
  height: 8px;
}
.ttw-video-player .progress,
.ttw-video-player .elapsed,
.ttw-video-player .volume-value {
  height: 100%;
}
.ttw-video-player .volume-value,
.ttw-video-player .elapsed {
  background: #333;
}
.ttw-video-player .progress-bg,
.ttw-video-player .volume {
  background: #e3e3e3;
  margin: 9px 0;
}
.ttw-video-player .progress-bg {
  width: 100%;
}
.ttw-video-player .progress {
  cursor: pointer;
  width: 10%;
}
.ttw-video-player .volume-wrapper {
  position: absolute;
  right: 0;
  top: 0;
  width: 80px;
  padding: 0 10px 0 35px;
  background: transparent url(../images/av-player/volume-high-dark.svg) no-repeat 10px center scroll;
  background-size: 18px auto;
}
.ttw-video-player .volume {
  cursor: pointer;
}
.ttw-video-player .unused-controls {
  display: none !important;
}
.ttw-video-player .player:after,
.ttw-video-player .ttw-video-player .progress-bg:after {
  clear: both;
  content: ' ';
  display: block;
  font-size: 0;
  line-height: 0;
  visibility: hidden;
  width: 0;
  height: 0;
}
.audio .jPlayer-container {
  height: 0;
}
/*********************************
   Document Viewer - Image File
*********************************/
.dv-image {
  display: block;
  margin: 0 auto;
  width: 100%;
  padding: 10px 0;
}
/*********************************
   Document Viewer - PDF File
*********************************/
.pdf .document-viewer {
  padding: 40px 10px 10px 10px;
}
.pdf-menu {
  background: #f9f9f9;
  height: 30px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.02);
  overflow: hidden;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.pdf-menu > div {
  float: left;
  font-size: 12px;
  text-shadow: 0 1px 0 #fff;
  color: #666;
  line-height: 30px;
  padding: 0 10px;
  border-right: 1px solid rgba(0, 0, 0, 0.15);
  cursor: pointer;
}
.pdf-menu > div:hover {
  background-color: rgba(255, 255, 255, 0.4);
}
.pdf-menu > div.disabled {
  color: #ccc;
  cursor: not-allowed;
}
.pdf-menu > div:first-child {
  border-left: none;
}
.pdf-menu > div:last-child {
  float: right;
  border: none;
}
.pdf-menu > div:last-child input,
.pdf-menu > div:last-child input:focus {
  width: 25px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  outline: none;
  background: rgba(255, 255, 255, 0.1);
  text-align: center;
  margin-bottom: 2px;
}
.document-viewer-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  min-height: 100%;
  min-width: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 9999;
}
.document-viewer-modal-overlay .document-viewer-close {
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  display: inline-block;
  padding: 2px 10px;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  position: absolute;
  right: -25px;
  top: 4px;
  overflow: hidden;
  text-indent: 100%;
  cursor: pointer;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.document-viewer-modal-overlay .document-viewer-close:hover,
.document-viewer-modal-overlay .document-viewer-close:focus {
  outline: none;
}
.document-viewer-modal-overlay .document-viewer-close::before,
.document-viewer-modal-overlay .document-viewer-close::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 60%;
  top: 50%;
  left: 50%;
  background: #ccc;
}
.document-viewer-modal-overlay .document-viewer-close:hover::before,
.document-viewer-modal-overlay .document-viewer-close:hover::after {
  background: #fff;
}
.document-viewer-modal-overlay .document-viewer-close::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}
.document-viewer-modal-overlay .document-viewer-close::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}
.document-viewer-modal.document-viewer-wrapper {
  margin: 1% auto;
  display: block;
  float: none;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.25);
}
.unsupported-type {
  font-size: 16px;
  background-image: url(../images/document-bg.png);
  background-repeat: no-repeat;
  background-position: center 30%;
  background-color: #fff;
  text-align: center;
}
.unsupported-type .document-viewer-outer {
  height: 100%;
  display: table;
  background: transparent;
}
.unsupported-type .document-viewer {
  padding: 40px;
  min-height: 300px;
  position: relative;
}
.unsupported-type.audio {
  background-image: url(../images/audio-bg.png);
}
.unsupported-type.image {
  background-image: url(../images/image-bg.png);
}
.unsupported-type.video {
  background-image: url(../images/video-bg.png);
}
.unsupported-type.pdf,
.unsupported-type.code,
.unsupported-type.txt,
.unsupported-type.document {
  background-image: url(../images/document-bg.png);
}
.unsupported-type.loaded {
  background-image: none !important;
  min-height: 0;
}
.unsupported-file-info,
.document-viewer-placeholder {
  bottom: 0;
  left: 0;
  padding: 0;
  width: 100%;
  text-align: center;
  display: table;
}
.unsupported-file-info .document-viewer-placeholder-inner,
.document-viewer-placeholder .document-viewer-placeholder-inner {
  text-align: center;
  position: relative;
  display: table-cell;
  vertical-align: middle;
  margin: 0 auto;
}
.unsupported-file-info .document-icon,
.document-viewer-placeholder .document-icon {
  width: 100%;
  height: 75px;
  background: transparent url(../images/file.svg) no-repeat center center;
  background-size: 50px 100px;
  color: #ccc;
}
.unsupported-file-info .filename,
.document-viewer-placeholder .filename {
  font-size: 16px;
  margin-bottom: 16px;
}
.unsupported-file-info .file-extension,
.document-viewer-placeholder .file-extension {
  background: #e7eff8;
  display: inline-block;
  padding: 4px 17px;
  color: #888;
}
.audio .document-viewer-placeholder {
  display: block;
  position: relative;
  z-index: 0;
}
.audio .document-viewer-placeholder .document-viewer-placeholder-inner {
  display: block;
  text-align: left;
  padding: 8px 5% 0 5%;
}
.audio .document-viewer-placeholder .document-icon {
  width: 50px;
  height: 50px;
  width: 20%;
  background-size: 100%;
}
.audio .document-viewer-placeholder .filename {
  margin-bottom: 5px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.audio .document-viewer-placeholder .placeholder-info {
  padding-left: 20px;
  width: 70%;
}
.audio .document-viewer-placeholder .document-icon,
.audio .document-viewer-placeholder .placeholder-info {
  float: left;
}
.document-viewer-menu {
  background: #fafafa;
  color: #999;
  font-size: 12px;
  border-top: 1px solid #eee;
  text-align: left;
  padding: 0 10px;
}
.document-viewer-menu span {
  margin-right: 10px;
  cursor: pointer;
  padding: 10px;
  display: inline-block;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.document-viewer-menu span:hover {
  color: #222;
}
.document-viewer:hover .document-viewer-menu {
  opacity: 1;
}
.document-library {
  width: 100%;
  overflow: hidden;
  font-family: sans-serif;
  box-sizing: border-box;
}
.document-library * {
  box-sizing: border-box;
}
.document-library *:before {
  box-sizing: inherit;
}
.document-library *:after {
  box-sizing: inherit;
}
.document-library-tiles-list {
  float: left;
}
.document-library-preview-list {
  float: left;
}
.document-library-preview-list .document-library-item {
  float: left;
  padding: 20px 0;
  cursor: pointer;
}
.document-library-column {
  float: left;
  display: inline-block;
  padding: 20px;
}
.document-library {
  background: #fff;
}
.document-library .document-library-no-results {
  display: none;
  padding: 20px;
  text-align: center;
  font-style: italic;
}
.document-library .document-library-list.empty + .document-library-no-results {
  display: block;
}
.clear-message {
  width: 20px;
  height: 20px;
  position: absolute;
  right: 4px;
  top: 4px;
  overflow: hidden;
  text-indent: 100%;
  cursor: pointer;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.clear-message::before,
.clear-message::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 60%;
  top: 50%;
  left: 50%;
  background: #6e6e6e;
}
.clear-message:hover::before,
.clear-message:hover::after {
  background: #222;
}
.clear-message::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}
.clear-message::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}
.document-library-filter {
  line-height: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
}
.document-library-filter .filter-message {
  position: relative;
  display: none;
}
.document-library-filter .filter-message.showing {
  display: block;
}
.document-library-filter .filter-message-text {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  background: #fffdf5;
  color: #222;
  text-align: center;
  padding: 0 20px;
  position: relative;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.document-library-filter .document-library-search {
  width: 100%;
  padding-right: 100px;
}
.document-library-filter input {
  border: none;
  width: 100%;
  height: 100%;
  padding: 0 10px;
  vertical-align: top;
  padding: 10px 20px 10px 10px;
}
.document-library-filter input:focus {
  outline: none;
}
.document-library-filter .filter-types {
  display: inline-block;
  position: absolute;
  top: 4px;
  right: 0;
  height: 100%;
}
.document-library-filter span[class^=filter-] {
  display: inline-block;
  height: 25px;
  width: 25px;
  cursor: pointer;
  background-size: 50%;
  background-color: transparent;
  background-position: center center;
  background-repeat: no-repeat;
  transition: all linear .15s;
  opacity: .5;
}
.document-library-filter span[class^=filter-]:hover {
  opacity: .8;
}
.document-library-filter span.filter-documents {
  background-image: url(../images/filter/page34.png);
  background-size: 45%;
}
.document-library-filter span.filter-images {
  background-image: url(../images/filter/landscape.png);
  background-size: 65%;
}
.document-library-filter span.filter-audio {
  background-image: url(../images/filter/song1.png);
}
.document-library-filter span.filter-video {
  background-image: url(../images/filter/image8.png);
}
[data-size=tiny] .document-library-line-item-list {
  font-size: 12px;
}
[data-size=x-small] .document-library-line-item-list {
  font-size: 14px;
}
[data-size=small] .document-library-line-item-list {
  font-size: 14px;
}
[data-size=medium] .document-library-line-item-list {
  font-size: 14px;
}
[data-size=large] .document-library-line-item-list {
  font-size: 18px;
}
[data-size=large] .document-library-line-item-list .document-library-item {
  padding: 15px 20px 15px 80px;
}
[data-size=large] .document-library-line-item-list .document-icon-extension {
  top: 15px;
  height: 20px;
  line-height: 20px;
}
[data-size=large] .document-library-line-item-list .document-library-filename {
  height: 20px;
  line-height: 20px;
}
[data-size=x-large] .document-library-line-item-list {
  font-size: 22px;
}
[data-size=x-large] .document-library-line-item-list .document-library-item {
  padding: 20px 20px 20px 80px;
}
[data-size=x-large] .document-library-line-item-list .document-icon-extension {
  top: 20px;
  height: 25px;
  line-height: 25px;
}
[data-size=x-large] .document-library-line-item-list .document-library-filename {
  height: 25px;
  line-height: 25px;
}
[data-size=x-large] .document-library-filter input {
  padding: 20px;
  font-size: 18px;
}
[data-size=x-large] .document-library-filter span[class^=filter] {
  height: 30px;
  width: 30px;
  margin-top: 13px;
}
[data-size="2x-large"] .document-library-line-item-list {
  font-size: 24px;
}
[data-size="2x-large"] .document-library-line-item-list .document-library-item {
  padding: 20px 20px 20px 80px;
}
[data-size="2x-large"] .document-library-line-item-list .document-icon-extension {
  top: 20px;
  height: 25px;
  line-height: 25px;
}
[data-size="2x-large"] .document-library-line-item-list .document-library-filename {
  height: 25px;
  line-height: 25px;
}
[data-size="2x-large"] .document-library-filter input {
  padding: 20px;
  font-size: 18px;
}
[data-size="2x-large"] .document-library-filter span[class^=filter] {
  height: 30px;
  width: 30px;
  margin-top: 13px;
}
[data-size="3x-large"] .document-library-line-item-list {
  font-size: 24px;
}
[data-size="3x-large"] .document-library-line-item-list .document-library-item {
  padding: 20px 20px 20px 80px;
}
[data-size="3x-large"] .document-library-line-item-list .document-icon-extension {
  top: 20px;
  height: 25px;
  line-height: 25px;
}
[data-size="3x-large"] .document-library-line-item-list .document-library-filename {
  height: 25px;
  line-height: 25px;
}
[data-size="3x-large"] .document-library-filter input {
  padding: 20px;
  font-size: 18px;
}
[data-size="3x-large"] .document-library-filter span[class^=filter] {
  height: 30px;
  width: 30px;
  margin-top: 13px;
}
.document-library-line-item-list .document-library-item {
  position: relative;
  padding: 10px 20px 10px 60px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: all linear .15s;
  cursor: pointer;
}
.document-library-line-item-list .document-library-item:hover {
  background: #fffdf8;
}
.document-library-line-item-list .document-library-item:hover .document-library-filename {
  color: #222;
}
.document-library-line-item-list .document-icon-extension {
  height: 20px;
  width: 40px;
  color: #fff;
  background: #125050;
  line-height: 20px;
  text-align: center;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: bold;
  display: inline-block;
  position: absolute;
  top: 10px;
  left: 10px;
}
.document-library-line-item-list .document-library-filename {
  height: 20px;
  line-height: 20px;
  transition: all linear .15s;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.document-library-grid-list .document-library-filename {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  margin: 5px 10px;
  text-align: center;
  color: #555;
  transition: all linear .2s;
}
.document-library-grid-list .document-library-item {
  float: left;
  width: 130px;
  margin: 10px;
  cursor: pointer;
}
.document-library-grid-list .document-library-item:hover .document-library-filename {
  color: #333;
}
.document-library-grid-list .document-library-item:hover .document-library-item-inner {
  border-color: rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
}
.document-library-grid-list .document-library-item.zip .document-library-item-inner {
  background-image: url(../images/document-zip.png);
}
.document-library-grid-list .document-library-item.pdf .document-library-item-inner {
  background-color: #ecd6d0;
}
.document-library-grid-list .document-library-item.pdf .document-library-item-inner .document-icon-extension {
  background: #e97a77;
}
.document-library-grid-list .document-library-item-inner {
  position: relative;
  width: 130px;
  height: 170px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  background: #dddddd url(../images/document-generic-colored.png) center center;
  transition: all linear .2s;
}
.document-library-grid-list .document-icon-extension {
  height: 28px;
  width: 88px;
  color: #fff;
  position: absolute;
  top: 81px;
  left: 19px;
  background: #125050;
  line-height: 29px;
  text-align: center;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: bold;
}
.document-library-open-item {
  font-family: sans-serif;
}
.document-library-open-item .document-viewer-wrapper {
  float: none;
  display: block;
  margin: 35px auto;
}
.document-library-open-item .open-item-menu {
  height: 35px;
  line-height: 35px;
  background: #eee;
  padding: 0 20px;
  color: #444;
  font-size: 14px;
  position: relative;
}
.document-library-open-item .open-item-name {
  display: block;
  width: 60%;
  text-align: center;
  margin: 0 auto;
  color: #656565;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.document-library-open-item .open-item-back {
  position: absolute;
  top: 0;
  left: 20px;
  cursor: pointer;
}
.document-library-open-item.list-and-open-in-separate-containers .open-item-back {
  display: none;
}
/* Contain floats: h5bp.com/q */
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}
.clearfix {
  *zoom: 1;
}
.clear {
  clear: both;
  float: left;
}
