@charset "utf-8";/* Copyright 2014 Mozilla Foundation
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

.textLayer {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  opacity: 1;
  line-height: 1.0;
}

.textLayer > span {
  color: transparent;
  position: absolute;
  white-space: pre;
  cursor: text;
  transform-origin: 0% 0%;
}

.textLayer .highlight {
  margin: -1px;
  padding: 1px;
  background-color: rgba(180, 0, 170, 1);
  border-radius: 4px;
  opacity: 0.3;
}

.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: rgba(0, 100, 0, 1);
}

.textLayer ::-moz-selection {
  background: rgba(0, 0, 255, 0.2);
}

.textLayer ::selection {
  background: rgba(0, 0, 255, 0.2);
}

.textLayer .endOfContent {
  display: block;
  /* edit by ACNS */
  /* position 을 absolute 로 주면 텍스트 선택 시 아래 내용이 자꾸 전체 선택이 된다.
   * 그래서 endOfContent 를 생성되지 않도록 하면 텍스트 선택 후 선택 블럭이 옆으로 밀리는 현상이 발생
   * 어떤 기능을 하는지 정확히 모르겠지만 일단 position 만 없애면 정상 동작해서 코멘트 처리
   * 특허청에서 테스트하다가 나옴
  position: absolute;
  */
  left: 0px;
  top: 100%;
  right: 0px;
  bottom: 0px;
  z-index: -1;
  cursor: default;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

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

.wordSearchResultView .highlight {
  margin: -1px;
  padding: 1px;
  background-color: rgba(180, 0, 170, 1);
  border-radius: 4px;
  opacity: 0.3;
}

.wordSearchResultView .highlight.selected {
  background-color: rgba(0, 100, 0, 1);
}



.annotationLayer section {
  position: absolute;
}

.annotationLayer .linkAnnotation > a,
.annotationLayer .buttonWidgetAnnotation.pushButton > a {
  position: absolute;
  font-size: 1em;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.annotationLayer .linkAnnotation > a:hover,
.annotationLayer .buttonWidgetAnnotation.pushButton > a:hover {
  opacity: 0.2;
  background: rgba(255, 255, 0, 1);
  box-shadow: 0px 2px 10px rgba(255, 255, 0, 1);
}

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

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

.annotationLayer .choiceWidgetAnnotation select option {
  padding: 0;
}

.annotationLayer .buttonWidgetAnnotation.radioButton input {
  border-radius: 50%;
}

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

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

.annotationLayer .textWidgetAnnotation input:hover,
.annotationLayer .textWidgetAnnotation textarea:hover,
.annotationLayer .choiceWidgetAnnotation select:hover,
.annotationLayer .buttonWidgetAnnotation.checkBox input:hover,
.annotationLayer .buttonWidgetAnnotation.radioButton input:hover {
  border: 1px solid rgba(0, 0, 0, 1);
}

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

.annotationLayer .buttonWidgetAnnotation.checkBox input:checked:before,
.annotationLayer .buttonWidgetAnnotation.checkBox input:checked:after,
.annotationLayer .buttonWidgetAnnotation.radioButton input:checked:before {
  background-color: rgba(0, 0, 0, 1);
  content: '';
  display: block;
  position: absolute;
}

.annotationLayer .buttonWidgetAnnotation.checkBox input:checked:before,
.annotationLayer .buttonWidgetAnnotation.checkBox input:checked:after {
  height: 80%;
  left: 45%;
  width: 1px;
}

.annotationLayer .buttonWidgetAnnotation.checkBox input:checked:before {
  transform: rotate(45deg);
}

.annotationLayer .buttonWidgetAnnotation.checkBox input:checked:after {
  transform: rotate(-45deg);
}

.annotationLayer .buttonWidgetAnnotation.radioButton input:checked:before {
  border-radius: 50%;
  height: 50%;
  left: 30%;
  top: 20%;
  width: 50%;
}

.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 .buttonWidgetAnnotation.checkBox input,
.annotationLayer .buttonWidgetAnnotation.radioButton input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
}

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

.annotationLayer .popup {
  position: absolute;
  z-index: 200;
  max-width: 20em;
  background-color: rgba(255, 255, 153, 1);
  box-shadow: 0px 2px 5px rgba(136, 136, 136, 1);
  border-radius: 2px;
  padding: 6px;
  margin-left: 5px;
  cursor: pointer;
  font: message-box;
  font-size: 9px;
  word-wrap: break-word;
}

.annotationLayer .popup > * {
  font-size: 9px;
}

.annotationLayer .popup h1 {
  display: inline-block;
}

.annotationLayer .popup span {
  display: inline-block;
  margin-left: 5px;
}

.annotationLayer .popup p {
  border-top: 1px solid rgba(51, 51, 51, 1);
  margin-top: 2px;
  padding-top: 2px;
}

.annotationLayer .highlightAnnotation,
.annotationLayer .underlineAnnotation,
.annotationLayer .squigglyAnnotation,
.annotationLayer .strikeoutAnnotation,
.annotationLayer .freeTextAnnotation,
.annotationLayer .lineAnnotation svg line,
.annotationLayer .squareAnnotation svg rect,
.annotationLayer .circleAnnotation svg ellipse,
.annotationLayer .polylineAnnotation svg polyline,
.annotationLayer .polygonAnnotation svg polygon,
.annotationLayer .caretAnnotation,
.annotationLayer .inkAnnotation svg polyline,
.annotationLayer .stampAnnotation,
.annotationLayer .fileAttachmentAnnotation {
  cursor: pointer;
}

.pdfViewer .canvasWrapper {
  overflow: hidden;
}

.pdfViewer .page {
  direction: ltr;
  width: 816px;
  height: 1056px;
  margin: 1px auto 3px auto;
  position: relative;
  overflow: visible;
  border: 1px solid transparent;
  background-clip: content-box;
  -o-border-image: url(images/shadow.png) 9 9 repeat;
     border-image: url(images/shadow.png) 9 9 repeat;
  background-color: rgba(255, 255, 255, 1);
}

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

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

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

.pdfViewer.scrollHorizontal, .pdfViewer.scrollWrapped, .spread {
  margin-left: 3.5px;
  margin-right: 3.5px;
  text-align: center;
}

.pdfViewer.scrollHorizontal, .spread {
  white-space: nowrap;
}

.pdfViewer.removePageBorders,
.pdfViewer.scrollHorizontal .spread,
.pdfViewer.scrollWrapped .spread {
  margin-left: 0;
  margin-right: 0;
}

.spread .page,
.pdfViewer.scrollHorizontal .page,
.pdfViewer.scrollWrapped .page,
.pdfViewer.scrollHorizontal .spread,
.pdfViewer.scrollWrapped .spread {
  display: inline-block;
  vertical-align: middle;
}

.spread .page,
.pdfViewer.scrollHorizontal .page,
.pdfViewer.scrollWrapped .page {
  margin-left: -3.5px;
  margin-right: -3.5px;
}

.pdfViewer.removePageBorders .spread .page,
.pdfViewer.removePageBorders.scrollHorizontal .page,
.pdfViewer.removePageBorders.scrollWrapped .page {
  margin-left: 5px;
  margin-right: 5px;
}

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

.pdfViewer .page canvas[hidden] {
  display: none;
}

.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 .pdfViewer {
  margin-left: 0;
  margin-right: 0;
}

.pdfPresentationMode .pdfViewer .page,
.pdfPresentationMode .pdfViewer .spread {
  display: block;
}

.pdfPresentationMode .pdfViewer .page,
.pdfPresentationMode .pdfViewer.removePageBorders .page {
  margin-left: auto;
  margin-right: auto;
}

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

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

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

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

@page {
	margin: 0;
}

.mainContainer * {
	box-sizing: content-box;
}

.overlayContainer * {
	box-sizing: content-box;
}

.printContainer * {
	box-sizing: content-box;
}

.printContainer {
	display: none;
}

.viewerContainer {
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	position: absolute;
	top: 0px;
	right: 0;
	bottom: 0;
	outline: none;
	width: calc(100% - 200px);
	height: 100%;
	background-color: #777;
}

.viewerContainer.pdfPresentationMode:-webkit-full-screen {
    top: 0px;
    border-top: 2px solid rgba(0, 0, 0, 0);
    background-color: rgba(0, 0, 0, 1);
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
	user-select: none;
}

.viewerContainer.pdfPresentationMode:-moz-full-screen {
    top: 0px;
    border-top: 2px solid rgba(0, 0, 0, 0);
    background-color: rgba(0, 0, 0, 1);
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
	user-select: none;
}

.viewerContainer.pdfPresentationMode:-ms-fullscreen {
    top: 0px;
    border-top: 2px solid rgba(0, 0, 0, 0);
    background-color: rgba(0, 0, 0, 1);
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
	user-select: none;
}

.viewerContainer.pdfPresentationMode:fullscreen {
    top: 0px;
    border-top: 2px solid rgba(0, 0, 0, 0);
    background-color: rgba(0, 0, 0, 1);
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
	user-select: none;
}

.pdfPresentationMode .pdfViewer {
    margin-left: 0;
    margin-right: 0;
}

.viewerContainer.pdfPresentationMode:-webkit-full-screen {
    top: 0px;
    border-top: 2px solid rgba(0, 0, 0, 0);
    background-color: rgba(0, 0, 0, 1);
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: none;
    -webkit-user-select: none;
    user-select: none;
}

#viewer.textLayer-visible .textLayer {
	opacity: 1.0;
}

#viewer.textLayer-visible .canvasWrapper {
	background-color: rgb(128,255,128);
}

#viewer.textLayer-visible .canvasWrapper canvas {
	mix-blend-mode: screen;
}

#viewer.textLayer-visible .textLayer > span {
	background-color: rgba(255, 255, 0, 0.1);
	color: black;
	border: solid 1px rgba(255, 0, 0, 0.5);
	box-sizing: border-box;
}

#viewer.textLayer-hover .textLayer > span:hover {
	background-color: white;
	color: black;
}

#viewer.textLayer-shadow .textLayer > span {
	background-color: rgba(255,255,255, .6);
	color: black;
}

.grab-to-pan-grab {
	cursor: url("images/grab.cur"), move !important;
	cursor: -webkit-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 {
	cursor: url("images/grabbing.cur"), move !important;
	cursor: -webkit-grabbing !important;
	cursor: grabbing !important;
}
.grab-to-pan-grabbing {
	cursor: url("images/grabbing.cur"), move !important;
	cursor: -webkit-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! */
}

.sidebarButtonContainer {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 30px;
    background-image: linear-gradient(rgba(235, 235, 235, 1), rgba(200, 200, 200, 1));
}

#thumbnailView {
	position: absolute;
	top: 30px;
	bottom: 0px;
	padding: 10px 20px 0;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}

#thumbnailView > a:active,
#thumbnailView > a:focus {
	outline: 0;
}

.thumbnail {
	margin: 0 10px 5px 10px;
	float: left;
}

#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.5);
	margin: -1px 9px 4px 9px;
}

.thumbnailImage {
	border: 1px solid transparent;
	box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5), 0 2px 8px rgba(0, 0, 0, 0.3);
	opacity: 0.8;
	z-index: 99;
	background-color: white;
	background-clip: content-box;
	box-sizing: content-box;
}

.thumbnailSelectionRing {
	border-radius: 2px;
	padding: 7px;
	box-sizing: content-box;
}

a:focus > .thumbnail > .thumbnailSelectionRing > .thumbnailImage,
.thumbnail:hover > .thumbnailSelectionRing > .thumbnailImage {
	opacity: .9;
}

a:focus > .thumbnail > .thumbnailSelectionRing,
.thumbnail:hover > .thumbnailSelectionRing {
	background-color: hsla(0,0%,100%,.15);
	background-image: linear-gradient(hsla(0,0%,100%,.05), hsla(0,0%,100%,0));
	background-clip: padding-box;
	box-shadow: 0 1px 0 hsla(0,0%,100%,.05) inset,
				0 0 1px hsla(0,0%,100%,.2) inset,
				0 0 1px hsla(0,0%,0%,.2);
	color: hsla(0,0%,100%,.9);
}

.thumbnail.selected > .thumbnailSelectionRing > .thumbnailImage {
	box-shadow: 0 0 0 1px hsla(0,0%,0%,.5);
	opacity: 1;
}

.thumbnail.selected > .thumbnailSelectionRing {
	background-color: hsla(0,0%,100%,.3);
	background-image: linear-gradient(hsla(0,0%,100%,.05), hsla(0,0%,100%,0));
	background-clip: padding-box;
	box-shadow: 0 1px 0 hsla(0,0%,100%,.05) inset,
				0 0 1px hsla(0,0%,100%,.1) inset,
				0 0 1px hsla(0,0%,0%,.2);
	color: hsla(0,0%,100%,1);
}

#outlineView,
#attachmentsView,
#annotationsView {
	position: absolute;
	width: calc(100% - 8px);
	top: 30px;
	bottom: 0;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
}

#outlineView,
#annotationsView {
	padding: 4px 4px 0;
}
#attachmentsView,
#annotationsView {
	padding: 3px 4px 0;
}

.outlineWithDeepNesting > .outlineItem,
.outlineItem > .outlineItems {
	margin-left: 10px;
}

.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: hsla(0,0%,100%,.8);
	font-size: 13px;
	line-height: 15px;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
	white-space: normal;
}

.attachmentsItem > button {
	border: 0 none;
	background: none;
	cursor: pointer;
	width: 100%;
}

.outlineItem > a {
	padding: 2px 0 5px 4px;
}
.attachmentsItem > button {
	padding: 2px 0 3px 7px;
	text-align: left;
}

.outlineItemToggler {
	position: relative;
	height: 0;
	width: 0;
	color: hsla(0,0%,100%,.5);
}
.outlineItemToggler::before {
	content: url(images/treeitem-expanded.png);
	display: inline-block;
	position: absolute;
}

.outlineItemToggler.outlineItemsHidden::before {
	content: url(images/treeitem-collapsed.png);
}

.outlineItemToggler.outlineItemsHidden ~ .outlineItems {
	display: none;
}
.outlineItemToggler {
	float: left;
}

.outlineItemToggler::before {
	right: 4px;
}

.outlineItemToggler:hover,
.outlineItemToggler:hover + a,
.outlineItemToggler:hover ~ .outlineItems,
.outlineItem > a:hover,
.attachmentsItem > button:hover {
	background-color: hsla(0,0%,100%,.02);
	background-image: linear-gradient(hsla(0,0%,100%,.05), hsla(0,0%,100%,0));
	background-clip: padding-box;
	box-shadow: 0 1px 0 hsla(0,0%,100%,.05) inset,
				0 0 1px hsla(0,0%,100%,.2) inset,
				0 0 1px hsla(0,0%,0%,.2);
	border-radius: 2px;
	color: hsla(0,0%,100%,.9);
}

.outlineItem.selected {
	background-color: hsla(0,0%,100%,.08);
	background-image: linear-gradient(hsla(0,0%,100%,.05), hsla(0,0%,100%,0));
	background-clip: padding-box;
	box-shadow: 0 1px 0 hsla(0,0%,100%,.05) inset,
				0 0 1px hsla(0,0%,100%,.1) inset,
				0 0 1px hsla(0,0%,0%,.2);
	color: hsla(0,0%,100%,1);
}

.noResults {
	font-size: 12px;
	color: hsla(0,0%,100%,.8);
	font-style: italic;
	cursor: default;
}

.sidebarContainer {
	left: 0px;
	top: 0px;
	bottom: 0px;
	-webkit-overflow-scrolling: touch;
	position: absolute;
	width: 200px;
	height: 100%;
	background-color: rgba( 0, 0, 0, 0.7 );
	box-shadow: inset -1px 0 0 hsla(0,0%,0%,.25);
	z-index: 10;
}

.hidden {
	display: none !important;
}

#overlayContainer {
    display: table;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 40000;
	padding: 0px;
	margin: 0px;
	font: message-box;
}

#overlayContainer > .container {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

#overlayContainer > * {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

#overlayContainer > .container > .dialog {
    display: inline-block;
    padding: 15px;
    border-spacing: 4px;
    color: rgba(10, 10, 10, 1);
    font-size: 12px;
	line-height: 14px;
	/*
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(82, 82, 82,0.99)), to(rgba(69, 69, 69, 0.95)));
	background-image: linear-gradient(rgba(255, 255, 255,0.99), rgba(200, 200, 200, 0.95));
	*/
	background-color: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.5);
    border-radius: 4px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 1);
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
}

#passwordOverlay > .dialog {
    text-align: center;
}

.dialog > .row {
    display: table-row;
}

.dialog > .row > * {
    display: table-cell;
}

#passwordOverlay .toolbarField {
    width: 250px;
}

.dialog .toolbarField {
    margin: 5px 0;
}

.toolbarField {
    padding: 3px 6px;
    margin: 4px 0 4px 0;
    border-radius: 2px;
    background-color: rgba(255, 255, 255, 0.9);
    background-image: linear-gradient(rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
    background-clip: padding-box;
    border-width: 1px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.32) rgba(0, 0, 0, 0.38) rgba(0, 0, 0, 0.42);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05) inset, 0 1px 0 rgba(255, 255, 255, 0.05);
    color: rgba(0, 0, 0, 1);
    font-size: 12px;
    line-height: 14px;
    outline-style: none;
    transition-property: background-color, border-color, box-shadow;
    transition-duration: 150ms;
    transition-timing-function: ease;
}

.dialog .buttonRow {
    text-align: center;
    vertical-align: middle;
}

.overlayButton {
    width: 60px;
	height: 18px;
    margin: 3px 4px 2px 4px !important;
    padding: 2px 6px 3px 6px;
	font: message-box;
    outline: none;
	background: none;
	background-image: linear-gradient(rgba(240, 240, 240, 1), rgba(220, 220, 220, 1));
	transition-duration: 150ms;
	transition-property: background-color, border-color, box-shadow;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
    cursor: default;
	color: rgba(0, 0, 0, 1);
	font: message-box;
    outline: none;
    font-size: 12px;
    line-height: 14px;
	border-radius: 2px;
	border: 1px solid rgba(0, 0, 0, 0.35)
}

@media print {
	@page {
		size: A4 !important;
		margin: 0px;
	}

	body {
		background: transparent none;
		min-width: 400px !important;
	}

	/* Rules for browsers that support PDF.js printing */
	body[data-pdfjsprinting] #entireContainer {
		display: none;
	}

	body[data-pdfjsprinting] #printContainer {
		display: block;
	}
	.printContainer {
		height: 100%;
	}
	/* wrapper around (scaled) print canvas elements */
	.printContainer > div {
		position: relative;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		overflow: visible;
		page-break-after: always;
		page-break-inside: avoid;
		background-color: #FFFFFF !important;;
	}
	.printContainer canvas,
	.printContainer img {
		display: block;
	}
}
