
/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPgo8cmVjdCB3aWR0aD0iNCIgaGVpZ2h0PSI0IiBmaWxsPSIjNDAzYzNmIj48L3JlY3Q+CjxwYXRoIGQ9Ik0wIDBMNCA0Wk00IDBMMCA0WiIgc3Ryb2tlLXdpZHRoPSIxIiBzdHJva2U9IiMxZTI5MmQiPjwvcGF0aD4KPC9zdmc+");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1IiBoZWlnaHQ9IjUiPgo8cmVjdCB3aWR0aD0iNSIgaGVpZ2h0PSI1IiBmaWxsPSIjOWU5ZTllIj48L3JlY3Q+CjxwYXRoIGQ9Ik0wIDVMNSAwWk02IDRMNCA2Wk0tMSAxTDEgLTFaIiBzdHJva2U9IiM4ODgiIHN0cm9rZS13aWR0aD0iMSI+PC9wYXRoPgo8L3N2Zz4=");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3goQDSYgDiGofgAAAslJREFUOMvtlM9LFGEYx7/vvOPM6ywuuyPFihWFBUsdNnA6KLIh+QPx4KWExULdHQ/9A9EfUodYmATDYg/iRewQzklFWxcEBcGgEplDkDtI6sw4PzrIbrOuedBb9MALD7zv+3m+z4/3Bf7bZS2bzQIAcrmcMDExcTeXy10DAFVVAQDksgFUVZ1ljD3yfd+0LOuFpmnvVVW9GHhkZAQcxwkNDQ2FSCQyRMgJxnVdy7KstKZpn7nwha6urqqfTqfPBAJAuVymlNLXoigOhfd5nmeiKL5TVTV+lmIKwAOA7u5u6Lped2BsbOwjY6yf4zgQQkAIAcedaPR9H67r3uYBQFEUFItFtLe332lpaVkUBOHK3t5eRtf1DwAwODiIubk5DA8PM8bYW1EU+wEgCIJqsCAIQAiB7/u253k2BQDDMJBKpa4mEon5eDx+UxAESJL0uK2t7XosFlvSdf0QAEmlUnlRFJ9Waho2Qghc1/U9z3uWz+eX+Wr+lL6SZfleEAQIggA8z6OpqSknimIvYyybSCReMsZ6TislhCAIAti2Dc/zejVNWwCAavN8339j27YbTg0AGGM3WltbP4WhlRWq6Q/btrs1TVsYHx+vNgqKoqBUKn2NRqPFxsbGJzzP05puUlpt0ukyOI6z7zjOwNTU1OLo6CgmJyf/gA3DgKIoWF1d/cIY24/FYgOU0pp0z/Ityzo8Pj5OTk9PbwHA+vp6zWghDC+VSiuRSOQgGo32UErJ38CO42wdHR09LBQK3zKZDDY2NupmFmF4R0cHVlZWlmRZ/iVJUn9FeWWcCCE4ODjYtG27Z2Zm5juAOmgdGAB2d3cBADs7O8uSJN2SZfl+WKlpmpumaT6Yn58vn/fs6XmbhmHMNjc3tzDGFI7jYJrm5vb29sDa2trPC/9aiqJUy5pOp4f6+vqeJ5PJBAB0dnZe/t8NBajx/z37Df5OGX8d13xzAAAAAElFTkSuQmCC);
  }
}
/* Fancy CSS END */



.ff0{font-family:sans-serif;visibility:hidden;}
.sc_{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
}
.y0{bottom:0.000000px;}
.h3{height:856.500000px;}
.h2{height:856.800000px;}
.h1{height:1262.250000px;}
.h0{height:1262.550000px;}
.w2c{width:554.700000px;}
.w2d{width:555.000000px;}
.w1e{width:587.250000px;}
.w1d{width:587.550000px;}
.w25{width:601.950000px;}
.w26{width:602.250000px;}
.w1a{width:603.000000px;}
.w19{width:603.300000px;}
.w37{width:604.500000px;}
.w29{width:608.700000px;}
.w2a{width:609.000000px;}
.w34{width:609.450000px;}
.w35{width:609.750000px;}
.w21{width:610.200000px;}
.w22{width:610.500000px;}
.w6a{width:611.700000px;}
.w6b{width:612.000000px;}
.w48{width:612.750000px;}
.w47{width:613.050000px;}
.w31{width:614.250000px;}
.w30{width:614.550000px;}
.w53{width:617.100000px;}
.w54{width:617.250000px;}
.w4f{width:617.700000px;}
.w50{width:618.000000px;}
.w58{width:618.750000px;}
.w57{width:618.900000px;}
.w60{width:619.200000px;}
.w61{width:619.500000px;}
.w11{width:619.950000px;}
.w12{width:620.250000px;}
.w6d{width:620.700000px;}
.wa{width:621.000000px;}
.w74{width:621.750000px;}
.w4c{width:622.500000px;}
.w5f{width:622.800000px;}
.w3{width:623.250000px;}
.w2{width:623.550000px;}
.w3c{width:623.850000px;}
.w3d{width:624.000000px;}
.w71{width:624.750000px;}
.w70{width:624.900000px;}
.w49{width:625.350000px;}
.w3b{width:625.500000px;}
.w3a{width:625.650000px;}
.w43{width:626.100000px;}
.w9{width:626.250000px;}
.w8{width:626.400000px;}
.wd{width:626.700000px;}
.we{width:627.000000px;}
.w16{width:627.150000px;}
.w66{width:627.450000px;}
.w67{width:627.750000px;}
.w5b{width:628.950000px;}
.w5c{width:629.250000px;}
.w42{width:629.700000px;}
.w40{width:630.000000px;}
.w4a{width:631.500000px;}
.w3e{width:632.850000px;}
.w3f{width:633.000000px;}
.w41{width:633.300000px;}
.w75{width:633.600000px;}
.w5a{width:633.750000px;}
.w59{width:633.900000px;}
.w65{width:635.250000px;}
.w64{width:635.400000px;}
.w15{width:635.700000px;}
.w10{width:636.000000px;}
.wf{width:636.150000px;}
.w6{width:636.450000px;}
.w7{width:636.750000px;}
.w44{width:636.900000px;}
.w38{width:637.200000px;}
.w39{width:637.500000px;}
.w6e{width:637.950000px;}
.w6f{width:638.250000px;}
.w5{width:639.000000px;}
.w4{width:639.300000px;}
.w5e{width:639.750000px;}
.w5d{width:640.050000px;}
.w4b{width:640.500000px;}
.w72{width:641.100000px;}
.w73{width:641.250000px;}
.wb{width:641.850000px;}
.wc{width:642.000000px;}
.w6c{width:642.300000px;}
.w14{width:642.750000px;}
.w13{width:642.900000px;}
.w63{width:643.500000px;}
.w62{width:643.650000px;}
.w55{width:644.100000px;}
.w56{width:644.250000px;}
.w4e{width:645.000000px;}
.w4d{width:645.150000px;}
.w52{width:645.750000px;}
.w51{width:645.900000px;}
.w2f{width:648.000000px;}
.w2e{width:648.300000px;}
.w46{width:649.500000px;}
.w45{width:649.800000px;}
.w69{width:651.000000px;}
.w68{width:651.300000px;}
.w2b{width:652.350000px;}
.w20{width:652.500000px;}
.w1f{width:652.650000px;}
.w33{width:653.250000px;}
.w32{width:653.400000px;}
.w28{width:654.000000px;}
.w27{width:654.150000px;}
.w36{width:658.500000px;}
.w18{width:659.250000px;}
.w17{width:659.550000px;}
.w24{width:660.750000px;}
.w23{width:660.900000px;}
.w1c{width:675.000000px;}
.w1b{width:675.300000px;}
.w1{width:856.500000px;}
.w0{width:856.800000px;}
.x0{left:0.000000px;}
@media print{
.y0{bottom:0.000000pt;}
.h3{height:761.333333pt;}
.h2{height:761.600000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.266667pt;}
.w2c{width:493.066667pt;}
.w2d{width:493.333333pt;}
.w1e{width:522.000000pt;}
.w1d{width:522.266667pt;}
.w25{width:535.066667pt;}
.w26{width:535.333333pt;}
.w1a{width:536.000000pt;}
.w19{width:536.266667pt;}
.w37{width:537.333333pt;}
.w29{width:541.066667pt;}
.w2a{width:541.333333pt;}
.w34{width:541.733333pt;}
.w35{width:542.000000pt;}
.w21{width:542.400000pt;}
.w22{width:542.666667pt;}
.w6a{width:543.733333pt;}
.w6b{width:544.000000pt;}
.w48{width:544.666667pt;}
.w47{width:544.933333pt;}
.w31{width:546.000000pt;}
.w30{width:546.266667pt;}
.w53{width:548.533333pt;}
.w54{width:548.666667pt;}
.w4f{width:549.066667pt;}
.w50{width:549.333333pt;}
.w58{width:550.000000pt;}
.w57{width:550.133333pt;}
.w60{width:550.400000pt;}
.w61{width:550.666667pt;}
.w11{width:551.066667pt;}
.w12{width:551.333333pt;}
.w6d{width:551.733333pt;}
.wa{width:552.000000pt;}
.w74{width:552.666667pt;}
.w4c{width:553.333333pt;}
.w5f{width:553.600000pt;}
.w3{width:554.000000pt;}
.w2{width:554.266667pt;}
.w3c{width:554.533333pt;}
.w3d{width:554.666667pt;}
.w71{width:555.333333pt;}
.w70{width:555.466667pt;}
.w49{width:555.866667pt;}
.w3b{width:556.000000pt;}
.w3a{width:556.133333pt;}
.w43{width:556.533333pt;}
.w9{width:556.666667pt;}
.w8{width:556.800000pt;}
.wd{width:557.066667pt;}
.we{width:557.333333pt;}
.w16{width:557.466667pt;}
.w66{width:557.733333pt;}
.w67{width:558.000000pt;}
.w5b{width:559.066667pt;}
.w5c{width:559.333333pt;}
.w42{width:559.733333pt;}
.w40{width:560.000000pt;}
.w4a{width:561.333333pt;}
.w3e{width:562.533333pt;}
.w3f{width:562.666667pt;}
.w41{width:562.933333pt;}
.w75{width:563.200000pt;}
.w5a{width:563.333333pt;}
.w59{width:563.466667pt;}
.w65{width:564.666667pt;}
.w64{width:564.800000pt;}
.w15{width:565.066667pt;}
.w10{width:565.333333pt;}
.wf{width:565.466667pt;}
.w6{width:565.733333pt;}
.w7{width:566.000000pt;}
.w44{width:566.133333pt;}
.w38{width:566.400000pt;}
.w39{width:566.666667pt;}
.w6e{width:567.066667pt;}
.w6f{width:567.333333pt;}
.w5{width:568.000000pt;}
.w4{width:568.266667pt;}
.w5e{width:568.666667pt;}
.w5d{width:568.933333pt;}
.w4b{width:569.333333pt;}
.w72{width:569.866667pt;}
.w73{width:570.000000pt;}
.wb{width:570.533333pt;}
.wc{width:570.666667pt;}
.w6c{width:570.933333pt;}
.w14{width:571.333333pt;}
.w13{width:571.466667pt;}
.w63{width:572.000000pt;}
.w62{width:572.133333pt;}
.w55{width:572.533333pt;}
.w56{width:572.666667pt;}
.w4e{width:573.333333pt;}
.w4d{width:573.466667pt;}
.w52{width:574.000000pt;}
.w51{width:574.133333pt;}
.w2f{width:576.000000pt;}
.w2e{width:576.266667pt;}
.w46{width:577.333333pt;}
.w45{width:577.600000pt;}
.w69{width:578.666667pt;}
.w68{width:578.933333pt;}
.w2b{width:579.866667pt;}
.w20{width:580.000000pt;}
.w1f{width:580.133333pt;}
.w33{width:580.666667pt;}
.w32{width:580.800000pt;}
.w28{width:581.333333pt;}
.w27{width:581.466667pt;}
.w36{width:585.333333pt;}
.w18{width:586.000000pt;}
.w17{width:586.266667pt;}
.w24{width:587.333333pt;}
.w23{width:587.466667pt;}
.w1c{width:600.000000pt;}
.w1b{width:600.266667pt;}
.w1{width:761.333333pt;}
.w0{width:761.600000pt;}
.x0{left:0.000000pt;}
}


body.paper-page .doc-shell[data-scieee-split-doc="1"] #page-container {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  width: max-content !important;
  min-width: 100% !important;
  height: auto !important;
  overflow: visible !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

body.paper-page .doc-shell[data-scieee-split-doc="1"] #sidebar,
body.paper-page .doc-shell[data-scieee-split-doc="1"] .loading-indicator {
  display: none !important;
}

body.paper-page .doc-shell[data-scieee-split-doc="1"] .pf {
  display: block !important;
  position: relative !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
