/*------------------------------------------------------------------------------
    :: Imports
------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------
    :: Variables & Mixins
------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------
    :: Text Layer
------------------------------------------------------------------------------*/
.textLayer {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  opacity: 0.2;
  line-height: 1.0;
}

.textLayer > div {
  color: transparent;
  position: absolute;
  white-space: pre;
  cursor: text;
  -webkit-transform-origin: 0% 0%;
  -moz-transform-origin: 0% 0%;
  -o-transform-origin: 0% 0%;
  -ms-transform-origin: 0% 0%;
  transform-origin: 0% 0%;
}

.textLayer .highlight {
  margin: -1px;
  padding: 1px;
  background-color: #b400aa;
  border-radius: 4px;
}

.textLayer .highlight.begin {
  border-radius: 4px 0px 0px 4px;
}

.textLayer .highlight.end {
  border-radius: 0px 4px 4px 0px;
}

.textLayer .highlight.middle {
  border-radius: 0px;
}

.textLayer .highlight.selected {
  background-color: darkgreen;
}

.textLayer::selection {
  background: blue;
}

.textLayer::-moz-selection {
  background: blue;
}

.textLayer .endOfContent {
  display: block;
  position: absolute;
  left: 0px;
  top: 100%;
  right: 0px;
  bottom: 0px;
  z-index: -1;
  cursor: default;
  -webkit-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
}

.textLayer .endOfContent.active {
  top: 0px;
}

.annotationLayer section {
  position: absolute;
}

/*------------------------------------------------------------------------------
    :: Annotation Layers
------------------------------------------------------------------------------*/
.annotationLayer .linkAnnotation > a {
  position: absolute;
  font-size: 1em;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.annotationLayer .linkAnnotation > a
 {
  background-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");
  background-repeat: repeat;
}

.annotationLayer .linkAnnotation > a:hover {
  background-color: rgba(242, 242, 13, 0.3);
}

.annotationLayer .textAnnotation img {
  position: absolute;
  cursor: pointer;
}

.annotationLayer .textWidgetAnnotation input,
.annotationLayer .textWidgetAnnotation textarea {
  background-color: rgba(0, 54, 255, 0.13);
  border: 1px solid transparent;
  box-sizing: border-box;
  font-size: 9px;
  height: 100%;
  padding: 0 3px;
  vertical-align: top;
  width: 100%;
}

.annotationLayer .textWidgetAnnotation textarea {
  font: message-box;
  font-size: 9px;
  resize: none;
}

.annotationLayer .textWidgetAnnotation input[disabled],
.annotationLayer .textWidgetAnnotation textarea[disabled] {
  background: none;
  border: 1px solid transparent;
  cursor: not-allowed;
}

.annotationLayer .textWidgetAnnotation input:hover,
.annotationLayer .textWidgetAnnotation textarea:hover {
  border: 1px solid #000;
}

.annotationLayer .textWidgetAnnotation input:focus,
.annotationLayer .textWidgetAnnotation textarea:focus {
  background: none;
  border: 1px solid transparent;
}

.annotationLayer .textWidgetAnnotation input.comb {
  font-family: monospace;
  padding-left: 2px;
  padding-right: 0;
}

.annotationLayer .textWidgetAnnotation input.comb:focus {
    /*
* Letter spacing is placed on the right side of each character. Hence, the
* letter spacing of the last character may be placed outside the visible
* area, causing horizontal scrolling. We avoid this by extending the width
* when the element has focus and revert this when it loses focus.
*/
  width: 115%;
}

.annotationLayer .popupWrapper {
  position: absolute;
  width: 20em;
}

.annotationLayer .popup {
  position: absolute;
  z-index: 200;
  max-width: 20em;
  background-color: #FFFF99;
  box-shadow: 0px 2px 5px #333;
  border-radius: 2px;
  padding: 0.6em;
  margin-left: 5px;
  cursor: pointer;
  word-wrap: break-word;
}

.annotationLayer .popup h1 {
  font-size: 1em;
  border-bottom: 1px solid #000000;
  padding-bottom: 0.2em;
}

.annotationLayer .popup p {
  padding-top: 0.2em;
}

.annotationLayer .highlightAnnotation,
.annotationLayer .underlineAnnotation,
.annotationLayer .squigglyAnnotation,
.annotationLayer .strikeoutAnnotation,
.annotationLayer .fileAttachmentAnnotation {
  cursor: pointer;
}

/*------------------------------------------------------------------------------
    :: pdfViewer
------------------------------------------------------------------------------*/
.pdfViewer .canvasWrapper {
  overflow: hidden;
}

.pdfViewer .page {
  direction: ltr;
  width: 816px;
  height: 1056px;
  margin: 1px auto 4px auto;
  position: relative;
  overflow: visible;
  border: 9px solid transparent;
  background-clip: content-box;
}

.pdfViewer.removePageBorders .page {
  margin: 0px auto 10px auto;
  border: none;
}

.pdfViewer.singlePageView {
  display: inline-block;
}

.pdfViewer.singlePageView .page {
  margin: 0;
  border: none;
}

.pdfViewer .page canvas {
  margin: 0;
  display: block;
}

.pdfViewer .page .loadingIcon {
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: url("images/loading-icon.gif") center no-repeat;
}

.pdfPresentationMode:-webkit-full-screen .pdfViewer .page {
  margin-bottom: 100%;
  border: 0;
}

.pdfPresentationMode:-moz-full-screen .pdfViewer .page {
  margin-bottom: 100%;
  border: 0;
}

.pdfPresentationMode:-ms-fullscreen .pdfViewer .page {
  margin-bottom: 100% !important;
  border: 0;
}

.pdfPresentationMode:fullscreen .pdfViewer .page {
  margin-bottom: 100%;
  border: 0;
}

/*------------------------------------------------------------------------------
    :: General
------------------------------------------------------------------------------*/
* {
  padding: 0;
  margin: 0;
}

html {
  height: 100%;
  width: 100%;
  /* Font size is needed to make the activity bar the correct size. */
  font-size: 10px;
}

body {
  height: 100%;
  width: 100%;
  background-color: #232426;
  font-family: Helvetica, Arial, sans-serif;
  letter-spacing: 0.03em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body,
input,
button,
select {
  outline: none;
}

.hidden {
  display: none !important;
}

[hidden] {
  display: none !important;
}

#viewerContainer.pdfPresentationMode:-webkit-full-screen {
  top: 0px;
  border-top: 2px solid transparent;
  background-color: #000;
  width: 100%;
  height: 100%;
  overflow: hidden;
  cursor: none;
  -webkit-user-select: none;
}

#viewerContainer.pdfPresentationMode:-moz-full-screen {
  top: 0px;
  border-top: 2px solid transparent;
  background-color: #000;
  width: 100%;
  height: 100%;
  overflow: hidden;
  cursor: none;
  -moz-user-select: none;
}

#viewerContainer.pdfPresentationMode:-ms-fullscreen {
  top: 0px !important;
  border-top: 2px solid transparent;
  width: 100%;
  height: 100%;
  overflow: hidden !important;
  cursor: none;
  -ms-user-select: none;
}

#viewerContainer.pdfPresentationMode:-ms-fullscreen::-ms-backdrop {
  background-color: #000;
}

#viewerContainer.pdfPresentationMode:fullscreen {
  top: 0px;
  border-top: 2px solid transparent;
  background-color: #000;
  width: 100%;
  height: 100%;
  overflow: hidden;
  cursor: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.pdfPresentationMode:-webkit-full-screen a:not(.internalLink) {
  display: none;
}

.pdfPresentationMode:-moz-full-screen a:not(.internalLink) {
  display: none;
}

.pdfPresentationMode:-ms-fullscreen a:not(.internalLink) {
  display: none !important;
}

.pdfPresentationMode:fullscreen a:not(.internalLink) {
  display: none;
}

.pdfPresentationMode:-webkit-full-screen .textLayer > div {
  cursor: none;
}

.pdfPresentationMode:-moz-full-screen .textLayer > div {
  cursor: none;
}

.pdfPresentationMode:-ms-fullscreen .textLayer > div {
  cursor: none;
}

.pdfPresentationMode:fullscreen .textLayer > div {
  cursor: none;
}

.pdfPresentationMode.pdfPresentationModeControls > *,
.pdfPresentationMode.pdfPresentationModeControls .textLayer > div {
  cursor: default;
}

/* outer/inner center provides horizontal center */
.outerCenter {
  pointer-events: none;
  position: relative;
}

.outerCenter {
  float: right;
  right: 50%;
}

.innerCenter {
  pointer-events: auto;
  position: relative;
}

.innerCenter {
  float: right;
  right: -50%;
}

#outerContainer {
  width: 100%;
  height: 100%;
  position: relative;
}

#sidebarContainer {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 200px;
  visibility: hidden;
  -webkit-transition-duration: 200ms;
  -webkit-transition-timing-function: ease;
  transition-duration: 200ms;
  transition-timing-function: ease;
}

#sidebarContainer {
  -webkit-transition-property: left;
  transition-property: left;
  left: -200px;
}

#outerContainer.sidebarMoving > #sidebarContainer,
#outerContainer.sidebarOpen > #sidebarContainer {
  visibility: visible;
}

#outerContainer.sidebarOpen > #sidebarContainer {
  left: 0px;
}

#mainContainer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  min-width: 320px;
  -webkit-transition-duration: 200ms;
  -webkit-transition-timing-function: ease;
  transition-duration: 200ms;
  transition-timing-function: ease;
}

#outerContainer.sidebarOpen > #mainContainer {
  -webkit-transition-property: left;
  transition-property: left;
  left: 200px;
}

#sidebarContent {
  top: 36px;
  left: 0;
  bottom: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  position: absolute;
  width: 200px;
  background-color: #1d1e20;
  box-shadow: inset -1px 0 0 rgba(255, 255, 255, 0.085), inset -2px 0 0 rgba(0, 0, 0, 0.25);
}

#viewerContainer {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  position: absolute;
  top: 42px;
  right: 0;
  bottom: 0;
  left: 0;
  outline: none;
}

.toolbar {
  position: relative;
  left: 0;
  right: 0;
  z-index: 9998;
  cursor: default;
}

#toolbarViewer {
  position: relative;
  z-index: 20;
  top: -36px;
  opacity: 0;
  -webkit-transition: all 0.75s ease;
  -moz-transition: all 0.75s ease;
  -o-transition: all 0.75s ease;
  transition: all 0.75s ease;
}

#sentinelTitle {
  color: white;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
  position: absolute;
  z-index: 10;
  top: 0;
  line-height: 1em;
  height: 36px;
  padding: 0.8em 0 0;
  box-sizing: border-box;
  -webkit-transition: all 0.45s ease;
  -moz-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}

body.showToolbar #toolbarViewer {
  top: 0;
  opacity: 1;
}
body.showToolbar #sentinelTitle {
  opacity: 0;
}

#toolbarContainer {
  width: 100%;
}

/*---------- Sidebar ----------*/
#toolbarSidebar {
  width: 200px;
  height: 36px;
  position: relative;
  z-index: 9999;
  background-color: #424242;
  /* fallback */
  background-image: linear-gradient(rgba(77, 77, 77, 0.99), rgba(64, 64, 64, 0.95));
  box-shadow: inset -1px 0 0 rgba(255, 255, 255, 0.25), inset -2px 0 0 rgba(0, 0, 0, 0.15);
}

#toolbarSidebar #viewAttachments {
  display: none;
}

#toolbarContainer,
.findbar,
.secondaryToolbar {
  position: relative;
  height: 36px;
  background-color: #474747;
  /* fallback */
  background-image: linear-gradient(rgba(82, 82, 82, 0.99), rgba(69, 69, 69, 0.95));
}

#toolbarContainer,
.findbar,
.secondaryToolbar {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2), 0 2px 4px rgba(0, 0, 0, 0.4);
}

.findbar,
.secondaryToolbar {
  box-shadow: inset -1px 0 0 rgba(255, 255, 255, 0.08), inset 0 1px 1px rgba(0, 0, 0, 0.15), inset 0 -1px 0 rgba(255, 255, 255, 0.05), 0 1px 0 rgba(0, 0, 0, 0.15), 0 1px 1px rgba(0, 0, 0, 0.1);
}

#toolbarViewer {
  height: 36px;
}

/*------------------------------------------------------------------------------
    :: Loading bar
------------------------------------------------------------------------------*/
#loadingBar {
  position: relative;
  width: 100%;
  height: 3px;
  background-color: #333;
  border-bottom: 1px solid #333;
}

#loadingBar .progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #cb0f00;
  overflow: hidden;
  -webkit-transition: width 200ms;
  transition: width 200ms;
}

@-webkit-keyframes progressIndeterminate {
  0% {
    left: -142px;
  }
  100% {
    left: 0;
  }
}
@keyframes progressIndeterminate {
  0% {
    left: -142px;
  }
  100% {
    left: 0;
  }
}
#loadingBar .progress.indeterminate {
  background-color: #cb0f00;
  -webkit-transition: none;
  transition: none;
}

#loadingBar .progress.indeterminate .glimmer {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: calc(100% + 150px);
  background: repeating-linear-gradient(135deg, #bbb 0, #999 5px, #999 45px, #ddd 55px, #ddd 95px, #bbb 100px);
  -webkit-animation: progressIndeterminate 950ms linear infinite;
  animation: progressIndeterminate 950ms linear infinite;
}

/*------------------------------------------------------------------------------
    :: Find bar
------------------------------------------------------------------------------*/
.findbar,
.secondaryToolbar {
  top: 36px;
  position: absolute;
  z-index: 10000;
  height: 36px;
  min-width: 16px;
  padding: 0px 6px 0px 6px;
  margin: 4px 2px 4px 2px;
  color: #d9d9d9;
  font-size: 12px;
  line-height: 14px;
  text-align: left;
  cursor: default;
}

.findbar {
  left: 68px;
}

.findbar label {
  -webkit-user-select: none;
  -moz-user-select: none;
}

#findInput[data-status="pending"] {
  background-image: url(images/loading-small.png);
  background-repeat: no-repeat;
  background-position: right;
}

/*----- .secondaryToolbar ----------*/
.secondaryToolbar {
  padding: 0;
  height: auto;
  z-index: 30000;
}

.secondaryToolbar {
  right: 4px;
}

#secondaryToolbarButtonContainer {
  max-width: 200px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.doorHanger,
.doorHangerRight {
  border: 1px solid rgba(0, 0, 0, 0.5);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.doorHanger:after,
.doorHanger:before,
.doorHangerRight:after,
.doorHangerRight:before {
  bottom: 100%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.doorHanger:after,
.doorHangerRight:after {
  border-bottom-color: rgba(82, 82, 82, 0.99);
  border-width: 8px;
}

.doorHanger:before,
.doorHangerRight:before {
  border-bottom-color: rgba(0, 0, 0, 0.5);
  border-width: 9px;
}

.doorHanger:after {
  left: 13px;
  margin-left: -8px;
}

.doorHanger:before {
  left: 13px;
  margin-left: -9px;
}

.doorHangerRight:after {
  right: 13px;
  margin-right: -8px;
}

.doorHangerRight:before {
  right: 13px;
  margin-right: -9px;
}

#findResultsCount {
  background-color: #d9d9d9;
  color: #525252;
  text-align: center;
  padding: 3px 4px;
}

#findMsg {
  font-style: italic;
  color: #A6B7D0;
}

#findInput.notFound {
  background-color: #ff6666;
}

#toolbarViewerLeft {
  margin-left: -1px;
}

#toolbarViewerLeft {
  position: absolute;
  top: 0;
  left: 0;
}

#toolbarViewerRight {
  position: absolute;
  top: 0;
  right: 0;
}

#toolbarViewerLeft > *,
#toolbarViewerMiddle > *,
#toolbarViewerRight > *,
.findbar > * {
  position: relative;
  float: left;
}

.splitToolbarButton > .toolbarButton {
  border-radius: 0;
  float: left;
}

.toolbarButton,
.secondaryToolbarButton,
.overlayButton {
  border: 0 none;
  background: none;
  width: 36px;
  height: 25px;
}

.toolbarButton[disabled] span,
.secondaryToolbarButton[disabled] span,
.overlayButton[disabled] span {
  color: rgba(0, 0, 0, 0.5);
}
.toolbarButton[disabled]:hover, .toolbarButton[disabled]:focus,
.secondaryToolbarButton[disabled]:hover,
.secondaryToolbarButton[disabled]:focus,
.overlayButton[disabled]:hover,
.overlayButton[disabled]:focus {
  background-color: transparent;
  cursor: no-drop;
}

.toolbarButton.group {
  margin-right: 0;
}

.splitToolbarButton.toggled .toolbarButton {
  margin: 0;
}

.splitToolbarButton > .toolbarButton:hover,
.splitToolbarButton > .toolbarButton:focus,
.dropdownToolbarButton:hover,
.overlayButton:hover,
.overlayButton:focus,
.toolbarButton.textButton:hover,
.toolbarButton.textButton:focus {
  z-index: 199;
}

.splitToolbarButton > .toolbarButton {
  position: relative;
}

.splitToolbarButtonSeparator {
  padding: 8px 0;
  width: 1px;
  z-index: 99;
  display: inline-block;
  margin: 5px 0;
  background-color: rgba(0, 0, 0, 0.2);
}

.splitToolbarButtonSeparator {
  float: left;
}

.splitToolbarButton:hover > .splitToolbarButtonSeparator,
.splitToolbarButton.toggled > .splitToolbarButtonSeparator {
  padding: 12px 0;
  margin: 1px 0;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.03);
  -webkit-transition: all 10ms ease;
  -moz-transition: all 10ms ease;
  -o-transition: all 10ms ease;
  transition: all 10ms ease;
}

.toolbarButton,
.dropdownToolbarButton,
.secondaryToolbarButton,
.overlayButton {
  text-decoration: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  /* Opera does not support user-select, use <... unselectable="on"> instead */
  cursor: default;
  -webkit-transition-property: background-color, border-color, box-shadow, color;
  -webkit-transition-duration: 150ms;
  -webkit-transition-timing-function: ease;
  transition-property: background-color, border-color, box-shadow;
  transition-duration: 150ms;
  transition-timing-function: ease;
}

.toolbarButton,
.overlayButton,
.dropdownToolbarButton {
  height: 36px;
  padding: 0;
  font-size: 20px;
  width: 38px;
  line-height: 38px;
  text-align: center;
  display: block;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.toolbarButton:hover,
.toolbarButton:focus,
.dropdownToolbarButton,
.overlayButton,
.secondaryToolbarButton:hover,
.secondaryToolbarButton:focus {
  background-color: #333333;
  background-color: #B10D00;
}

.toolbarButton.toggled,
.splitToolbarButton.toggled > .toolbarButton.toggled,
.secondaryToolbarButton.toggled {
  background-color: rgba(128, 128, 128, 0.5);
}

.dropdownToolbarButton {
  width: 100px;
  overflow: hidden;
  padding: 0 27px 0 0;
  border: 1px solid #3d3d3d;
  margin: 8px 0;
  background: #595959;
  height: auto;
  line-height: 0.7em;
}

.dropdownToolbarButton > select {
  min-width: 140px;
  font-size: 12px;
  font-family: inherit;
  letter-spacing: 0.02em;
  color: #f2f2f2;
  margin: 0;
  padding: 3px 2px 2px;
  border: none;
  background: transparent;
  /* Opera does not support 'transparent' <select> background */
}

.dropdownToolbarButton > select > option {
  background: #3d3d3d;
}

#customScaleOption {
  display: none;
}

#pageWidthOption {
  border-bottom: 1px rgba(255, 255, 255, 0.5) solid;
}

.toolbarButtonSpacer {
  width: 30px;
  display: inline-block;
  height: 1px;
}

.toolbarButtonFlexibleSpacer {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  min-width: 30px;
}

#findPrevious {
  margin-left: 3px;
}

#findNext {
  margin-right: 3px;
}

.toolbarButton::before,
.secondaryToolbarButton::before {
  /* All matching images have a size of 16x16
   * All relevant containers have a size of 32x25 */
  position: absolute;
  display: inline-block;
  top: 4px;
  left: 7px;
}

.toolbarButton.bookmark,
.secondaryToolbarButton.bookmark {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  padding-top: 4px;
  text-decoration: none;
}

.secondaryToolbarButton.bookmark {
  padding-top: 5px;
}

.bookmark[href='#'] {
  opacity: .5;
  pointer-events: none;
}

.secondaryToolbarButton {
  position: relative;
  margin: 0;
  height: auto;
  width: auto;
  min-width: 100%;
  white-space: normal;
  color: white;
  text-align: left;
  min-height: 34px;
  line-height: 1em;
  padding: 0 4px 12px;
  font-family: inherit;
  letter-spacing: 0.02em;
  font-size: 13px;
}
.secondaryToolbarButton span[class^="icon-"] {
  font-size: 20px;
  padding: 3px 3px;
  display: inline-block;
  margin-right: 3px;
  position: relative;
  top: 4px;
}

.verticalToolbarSeparator {
  display: block;
  width: 1px;
  background-color: rgba(0, 0, 0, 0.2);
  height: 36px;
  margin: 0;
  padding: 0;
}

.horizontalToolbarSeparator {
  display: block;
  height: 1px;
  width: 100%;
  margin: 0;
  background-color: #333333;
}

.toolbarField {
  padding: 3px 6px;
  margin: 7px 0 4px 0;
  border: 1px solid transparent;
  background-color: #595959;
  background-clip: padding-box;
  border: 1px solid #3d3d3d;
  color: #f2f2f2;
  font-size: 12px;
  line-height: 14px;
  outline-style: none;
  transition-property: background-color, border-color, box-shadow;
  transition-duration: 150ms;
  transition-timing-function: ease;
}

.toolbarField[type=checkbox] {
  display: inline-block;
  margin: 12px 0px;
}

.toolbarField.pageNumber {
  -moz-appearance: textfield;
  /* hides the spinner in moz */
  min-width: 16px;
  text-align: right;
  width: 18px;
}

.toolbarField.pageNumber.visiblePageIsLoading {
  background-image: url(images/loading-small.png);
  background-repeat: no-repeat;
  background-position: 1px;
}

.toolbarField.pageNumber::-webkit-inner-spin-button,
.toolbarField.pageNumber::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.toolbarField:hover {
  background-color: rgba(255, 255, 255, 0.11);
  border-color: rgba(0, 0, 0, 0.4) rgba(0, 0, 0, 0.43) rgba(0, 0, 0, 0.45);
}

.toolbarField:focus {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: black;
}

.toolbarLabel {
  min-width: 16px;
  padding: 3px 0 3px 2px;
  margin: 7px 2px 4px 0;
  border: 1px solid transparent;
  color: #d9d9d9;
  font-size: 12px;
  line-height: 14px;
  text-align: left;
  -webkit-user-select: none;
  -moz-user-select: none;
  cursor: default;
}

#thumbnailView {
  position: absolute;
  width: 120px;
  top: 0;
  bottom: 0;
  padding: 10px 40px 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.thumbnail {
  float: left;
  margin-bottom: 5px;
}

#thumbnailView > a:last-of-type > .thumbnail {
  margin-bottom: 10px;
}

#thumbnailView > a:last-of-type > .thumbnail:not([data-loaded]) {
  margin-bottom: 9px;
}

.thumbnail:not([data-loaded]) {
  border: 1px dashed rgba(255, 255, 255, 0.3);
  margin: -1px -1px 4px -1px;
}

.thumbnailImage {
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5), 0 2px 8px rgba(0, 0, 0, 0.3);
  opacity: 0.65;
  z-index: 99;
  background-color: white;
  background-clip: content-box;
}

.thumbnailSelectionRing {
  border: 2px solid transparent;
  padding: 7px;
}

a:focus > .thumbnail > .thumbnailSelectionRing > .thumbnailImage,
.thumbnail:hover > .thumbnailSelectionRing > .thumbnailImage {
  opacity: 1.0;
}

a:focus > .thumbnail > .thumbnailSelectionRing,
.thumbnail:hover > .thumbnailSelectionRing {
  background-clip: padding-box;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05) inset, 0 0 1px rgba(255, 255, 255, 0.2) inset, 0 0 1px rgba(0, 0, 0, 0.2);
  color: rgba(255, 255, 255, 0.9);
  border: 2px solid #B10D00;
}

.thumbnail.selected > .thumbnailSelectionRing > .thumbnailImage {
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5);
  opacity: 1;
}

.thumbnail.selected > .thumbnailSelectionRing {
  background-clip: padding-box;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05) inset, 0 0 1px rgba(255, 255, 255, 0.1) inset, 0 0 1px rgba(0, 0, 0, 0.2);
  color: white;
  border: 2px solid #B10D00;
}

#outlineView,
#attachmentsView {
  position: absolute;
  width: 192px;
  top: 0;
  bottom: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-user-select: none;
  -moz-user-select: none;
}

#outlineView {
  padding: 8px 4px 0;
}

#attachmentsView {
  padding: 3px 4px 0;
}

.outlineWithDeepNesting > .outlineItem,
.outlineItem > .outlineItems {
  margin-left: 20px;
}

.outlineItem > a,
.attachmentsItem > button {
  text-decoration: none;
  display: inline-block;
  min-width: 95%;
  min-width: calc(100% - 4px);
  /* Subtract the right padding (left, in RTL mode)
                    of the container. */
  height: auto;
  margin-bottom: 1px;
  border-radius: 2px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  line-height: 15px;
  -moz-user-select: none;
  white-space: normal;
}

.attachmentsItem > button {
  border: 0 none;
  background: none;
  cursor: pointer;
  width: 100%;
}

.outlineItem > a {
  padding: 3px 6px;
}

.attachmentsItem > button {
  padding: 2px 0 3px 7px;
  text-align: left;
}

.outlineItemToggler {
  position: relative;
  height: 0;
  width: 0;
  color: rgba(255, 255, 255, 0.5);
}

.outlineItemToggler::before {
  content: "\e93a";
  font-family: 'bwm-icons';
  font-size: 12px;
  display: inline-block;
  position: absolute;
  left: -14px;
  top: 4px;
}

.outlineItemToggler.outlineItemsHidden::before {
  content: "\e93c";
}

.outlineItemToggler.outlineItemsHidden ~ .outlineItems {
  display: none;
}

.outlineItemToggler {
  float: left;
}

.outlineItemToggler:hover,
.outlineItemToggler:hover + a,
.outlineItemToggler:hover ~ .outlineItems,
.outlineItem > a:hover,
.attachmentsItem > button:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.outlineItem.selected {
  background-color: rgba(255, 255, 255, 0.08);
  background-image: linear-gradient(rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
  background-clip: padding-box;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05) inset, 0 0 1px rgba(255, 255, 255, 0.1) inset, 0 0 1px rgba(0, 0, 0, 0.2);
  color: white;
}

.noResults {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
  cursor: default;
}

/* TODO: file FF bug to support ::-moz-selection:window-inactive
so we can override the opaque grey background when the window is inactive;
see https://bugzilla.mozilla.org/show_bug.cgi?id=706209 */
::selection {
  background: rgba(128, 128, 128, 0.8);
}

::-moz-selection {
  background: rgba(0, 0, 255, 0.3);
}

#errorWrapper {
  background: none repeat scroll 0 0 #FF5555;
  color: white;
  left: 0;
  position: absolute;
  right: 0;
  z-index: 1000;
  padding: 3px;
  font-size: 0.8em;
}

.loadingInProgress #errorWrapper {
  top: 37px;
}

#errorMessageLeft {
  float: left;
}

#errorMessageRight {
  float: right;
}

#errorMoreInfo {
  background-color: #FFFFFF;
  color: black;
  padding: 3px;
  margin: 3px;
  width: 98%;
}

.overlayButton {
  width: auto;
  margin: 3px 4px 2px 4px !important;
  padding: 2px 6px 3px 6px;
}

#overlayContainer {
  display: table;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 40000;
}

#overlayContainer > * {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#overlayContainer > .container {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

#overlayContainer > .container > .dialog {
  display: inline-block;
  padding: 15px;
  border-spacing: 4px;
  color: #d9d9d9;
  font-size: 12px;
  line-height: 14px;
  background-color: #474747;
  /* fallback */
  background-image: linear-gradient(rgba(82, 82, 82, 0.99), rgba(69, 69, 69, 0.95));
  box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.08), inset 0 1px 1px rgba(0, 0, 0, 0.15), inset 0 -1px 0 rgba(255, 255, 255, 0.05), 0 1px 0 rgba(0, 0, 0, 0.15), 0 1px 1px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.dialog > .row {
  display: table-row;
}

.dialog > .row > * {
  display: table-cell;
}

.dialog .toolbarField {
  margin: 5px 0;
}

.dialog .separator {
  display: block;
  margin: 4px 0 4px 0;
  height: 1px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.dialog .buttonRow {
  text-align: center;
  vertical-align: middle;
}

.dialog:link {
  color: white;
}

#passwordOverlay > .dialog {
  text-align: center;
}

#passwordOverlay .toolbarField {
  width: 200px;
}

#documentPropertiesOverlay > .dialog {
  text-align: left;
}

#documentPropertiesOverlay .row > * {
  min-width: 100px;
}

#documentPropertiesOverlay .row > * {
  text-align: left;
}

#documentPropertiesOverlay .row > span {
  width: 125px;
  word-wrap: break-word;
}

#documentPropertiesOverlay .row > p {
  max-width: 225px;
  word-wrap: break-word;
}

#documentPropertiesOverlay .buttonRow {
  margin-top: 10px;
}

.clearBoth {
  clear: both;
}

.fileInput {
  background: white;
  color: black;
  margin-top: 5px;
  visibility: hidden;
  position: fixed;
  right: 0;
  top: 0;
}

#PDFBug {
  background: none repeat scroll 0 0 white;
  border: 1px solid #666666;
  position: fixed;
  top: 36px;
  right: 0;
  bottom: 0;
  font-size: 10px;
  padding: 0;
  width: 300px;
}

#PDFBug .controls {
  background: #EEEEEE;
  border-bottom: 1px solid #666666;
  padding: 3px;
}

#PDFBug .panels {
  bottom: 0;
  left: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  position: absolute;
  right: 0;
  top: 27px;
}

#PDFBug button.active {
  font-weight: bold;
}

.debuggerShowText {
  background: none repeat scroll 0 0 yellow;
  color: blue;
}

.debuggerHideText:hover {
  background: none repeat scroll 0 0 yellow;
}

#PDFBug .stats {
  font-family: courier;
  font-size: 10px;
  white-space: pre;
}

#PDFBug .stats .title {
  font-weight: bold;
}

#PDFBug table {
  font-size: 10px;
}

#viewer.textLayer-visible .textLayer {
  opacity: 1.0;
}

#viewer.textLayer-visible .canvasWrapper {
  background-color: #80ff80;
}

#viewer.textLayer-visible .canvasWrapper canvas {
  mix-blend-mode: screen;
}

#viewer.textLayer-visible .textLayer > div {
  background-color: rgba(255, 255, 0, 0.1);
  color: black;
  border: solid 1px rgba(255, 0, 0, 0.5);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

#viewer.textLayer-hover .textLayer > div:hover {
  background-color: white;
  color: black;
}

#viewer.textLayer-shadow .textLayer > div {
  background-color: rgba(255, 255, 255, 0.6);
  color: black;
}

.grab-to-pan-grab {
  cursor: url("images/grab.cur"), move !important;
  cursor: -webkit-grab !important;
  cursor: -moz-grab !important;
  cursor: grab !important;
}

.grab-to-pan-grab *:not(input):not(textarea):not(button):not(select):not(:link) {
  cursor: inherit !important;
}

.grab-to-pan-grab:active,
.grab-to-pan-grabbing {
  cursor: url("images/grabbing.cur"), move !important;
  cursor: -webkit-grabbing !important;
  cursor: -moz-grabbing !important;
  cursor: grabbing !important;
  position: fixed;
  background: transparent;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 50000;
  /* should be higher than anything else in PDF.js! */
}

@page {
  margin: 0;
}
/*------------------------------------------------------------------------------
    :: Print
------------------------------------------------------------------------------*/
#printContainer {
  display: none;
}

/*------------------------------------------------------------------------------
    :: Print
------------------------------------------------------------------------------*/
@media print {
  /* General rules for printing. */
  body {
    background: transparent none;
  }

  /* Rules for browsers that don't support mozPrintCallback. */
  #sidebarContainer,
  #secondaryToolbar,
  .toolbar,
  #loadingBox,
  #errorWrapper,
  .textLayer {
    display: none;
  }

  #viewerContainer {
    overflow: visible;
  }

  #mainContainer,
  #viewerContainer,
  .page,
  .page canvas {
    position: static;
    padding: 0;
    margin: 0;
  }

  .page {
    float: left;
    display: none;
    border: none;
    box-shadow: none;
    background-clip: content-box;
    background-color: white;
  }

  .page[data-loaded] {
    display: block;
  }

  .fileInput {
    display: none;
  }

  /* Rules for browsers that support mozPrintCallback */
  body[data-mozPrintCallback] #outerContainer {
    display: none;
  }

  body[data-mozPrintCallback] #printContainer {
    display: block;
  }

  #printContainer {
    height: 100%;
  }

  /* wrapper around (scaled) print canvas elements */
  #printContainer > div {
    position: relative;
    top: 0;
    left: 0;
    height: 100%;
    overflow: hidden;
  }

  #printContainer canvas {
    display: block;
  }
}
/*------------------------------------------------------------------------------
    :: Media Stuff
------------------------------------------------------------------------------*/
.visibleLargeView,
.visibleMediumView,
.visibleSmallView {
  display: none;
}

@media all and (max-width: 960px) {
  #outerContainer.sidebarMoving .outerCenter,
  #outerContainer.sidebarOpen .outerCenter {
    float: left;
    left: 205px;
  }
}
@media all and (max-width: 960px) {
  .outerCenter {
    right: 44%;
  }
}
@media all and (max-width: 900px) {
  .sidebarOpen .hiddenLargeView {
    display: none;
  }

  .sidebarOpen .visibleLargeView {
    display: inherit;
  }
}
@media all and (max-width: 860px) {
  .outerCenter {
    right: auto;
    left: 252px;
    position: absolute;
  }

  .sidebarOpen .hiddenMediumView {
    display: none;
  }

  .sidebarOpen .visibleMediumView {
    display: inherit;
  }

  #toolbarViewerRight button, #toolbarViewerRight a {
    display: none;
  }
  #toolbarViewerRight button:last-of-type {
    display: block;
  }
}
@media all and (max-width: 770px) {
  #sidebarContainer {
    top: 36px;
    z-index: 100;
  }

  .loadingInProgress #sidebarContainer {
    top: 37px;
  }

  #sidebarContent {
    top: 36px;
  }

  #outerContainer.sidebarOpen > #mainContainer {
    left: 0px;
  }

  #outerContainer .visibleLargeView,
  #outerContainer .visibleMediumView {
    display: none;
  }
}
@media all and (max-width: 700px) {
  #outerContainer .hiddenLargeView {
    display: none;
  }

  #outerContainer .visibleLargeView {
    display: inherit;
  }
}
@media all and (max-width: 660px) {
  #outerContainer .hiddenMediumView {
    display: none;
  }

  #outerContainer .visibleMediumView {
    display: inherit;
  }
}
@media all and (max-width: 600px) {
  .hiddenSmallView {
    display: none;
  }

  .visibleSmallView {
    display: inherit;
  }

  #outerContainer.sidebarMoving .outerCenter,
  #outerContainer.sidebarOpen .outerCenter,
  .outerCenter {
    left: 128px;
    border-left: 1px solid #3d3d3d;
    padding-left: 10px;
  }

  .innerCenter {
    right: auto;
  }

  .toolbarButtonSpacer {
    width: 0;
  }
}
@media all and (max-width: 510px) {
  #scaleSelectContainer,
  #pageNumberLabel {
    display: none;
  }
}
/*------------------------------------------------------------------------------
    :: Customization
------------------------------------------------------------------------------*/
[class^="icon-"], [class*=" icon-"] {
  color: white;
}

.hideTxt {
  position: absolute;
  left: -9999px;
}

#print.toolbarButton,
#secondaryPrint {
  display: none;
}

#download.toolbarButton,
#secondaryDownload {
  display: none;
}

#documentProperties {
  display: none;
}

button#sidebarToggle {
  width: 42px;
}

/* sidebrToggle : closed */
button#sidebarToggle .icon-exit-right {
  display: block;
}

button#sidebarToggle .icon-exit-left {
  display: none;
}

/* sidebrToggle : open */
button#sidebarToggle.toggled .icon-exit-right {
  display: none;
}

button#sidebarToggle.toggled .icon-exit-left {
  display: block;
  position: relative;
  left: -1px;
}

.rgc_paywall_content_notice p {
	margin: 0px 0px 12px 0px;
    padding: 0;
    font-size: 16px;
}

/*------------------------------------------------------------------------------
    :: Intro
------------------------------------------------------------------------------*/
.pdfViewer .page {
  opacity: 0;
  transition: opacity 1.25s ease;
}
.pdfViewer .page.pageDrawn {
  opacity: 1;
}
