
/* 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;}
.w5{width:586.500000px;}
.w4{width:586.800000px;}
.w23{width:597.000000px;}
.w22{width:597.300000px;}
.w31{width:605.250000px;}
.w30{width:605.550000px;}
.w2b{width:609.750000px;}
.w2a{width:609.900000px;}
.w16{width:610.500000px;}
.w1f{width:612.000000px;}
.w1e{width:612.300000px;}
.w59{width:612.750000px;}
.w58{width:613.050000px;}
.w41{width:613.500000px;}
.w40{width:613.800000px;}
.w37{width:614.250000px;}
.w36{width:614.550000px;}
.wf{width:615.000000px;}
.we{width:615.300000px;}
.w60{width:615.750000px;}
.w5f{width:615.900000px;}
.w2d{width:619.200000px;}
.wa{width:619.500000px;}
.w26{width:619.950000px;}
.w27{width:620.250000px;}
.wd{width:621.750000px;}
.w5c{width:622.050000px;}
.w7{width:622.500000px;}
.w19{width:622.800000px;}
.w3f{width:623.250000px;}
.w3e{width:623.550000px;}
.w44{width:625.350000px;}
.w45{width:625.500000px;}
.w12{width:626.100000px;}
.w13{width:626.250000px;}
.w5a{width:626.700000px;}
.w51{width:627.000000px;}
.w50{width:627.150000px;}
.w54{width:627.450000px;}
.w55{width:627.750000px;}
.w4c{width:628.200000px;}
.w4d{width:628.500000px;}
.w32{width:628.950000px;}
.w33{width:629.250000px;}
.w3b{width:630.750000px;}
.w49{width:631.050000px;}
.w48{width:631.500000px;}
.w47{width:631.800000px;}
.w39{width:632.100000px;}
.w3a{width:632.250000px;}
.w35{width:633.750000px;}
.w34{width:633.900000px;}
.w4b{width:634.500000px;}
.w4a{width:634.650000px;}
.w53{width:635.250000px;}
.w52{width:635.400000px;}
.w4e{width:635.700000px;}
.w4f{width:636.000000px;}
.w5b{width:636.150000px;}
.w15{width:636.750000px;}
.w14{width:636.900000px;}
.w46{width:637.500000px;}
.w3d{width:639.000000px;}
.w3c{width:639.300000px;}
.w1b{width:639.750000px;}
.w1a{width:640.050000px;}
.w6{width:640.500000px;}
.wb{width:641.100000px;}
.wc{width:641.250000px;}
.w61{width:642.600000px;}
.w25{width:642.750000px;}
.w24{width:642.900000px;}
.w8{width:643.350000px;}
.w9{width:643.500000px;}
.w2c{width:643.650000px;}
.w5d{width:646.950000px;}
.w5e{width:647.250000px;}
.w10{width:647.700000px;}
.w11{width:648.000000px;}
.w38{width:648.300000px;}
.w43{width:648.750000px;}
.w42{width:649.050000px;}
.w57{width:649.500000px;}
.w56{width:649.800000px;}
.w1d{width:650.250000px;}
.w1c{width:650.550000px;}
.w17{width:652.350000px;}
.w18{width:652.500000px;}
.w28{width:653.100000px;}
.w29{width:653.250000px;}
.w2f{width:657.000000px;}
.w2e{width:657.300000px;}
.w20{width:665.700000px;}
.w21{width:666.000000px;}
.w3{width:675.750000px;}
.w2{width:676.050000px;}
.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;}
.w5{width:521.333333pt;}
.w4{width:521.600000pt;}
.w23{width:530.666667pt;}
.w22{width:530.933333pt;}
.w31{width:538.000000pt;}
.w30{width:538.266667pt;}
.w2b{width:542.000000pt;}
.w2a{width:542.133333pt;}
.w16{width:542.666667pt;}
.w1f{width:544.000000pt;}
.w1e{width:544.266667pt;}
.w59{width:544.666667pt;}
.w58{width:544.933333pt;}
.w41{width:545.333333pt;}
.w40{width:545.600000pt;}
.w37{width:546.000000pt;}
.w36{width:546.266667pt;}
.wf{width:546.666667pt;}
.we{width:546.933333pt;}
.w60{width:547.333333pt;}
.w5f{width:547.466667pt;}
.w2d{width:550.400000pt;}
.wa{width:550.666667pt;}
.w26{width:551.066667pt;}
.w27{width:551.333333pt;}
.wd{width:552.666667pt;}
.w5c{width:552.933333pt;}
.w7{width:553.333333pt;}
.w19{width:553.600000pt;}
.w3f{width:554.000000pt;}
.w3e{width:554.266667pt;}
.w44{width:555.866667pt;}
.w45{width:556.000000pt;}
.w12{width:556.533333pt;}
.w13{width:556.666667pt;}
.w5a{width:557.066667pt;}
.w51{width:557.333333pt;}
.w50{width:557.466667pt;}
.w54{width:557.733333pt;}
.w55{width:558.000000pt;}
.w4c{width:558.400000pt;}
.w4d{width:558.666667pt;}
.w32{width:559.066667pt;}
.w33{width:559.333333pt;}
.w3b{width:560.666667pt;}
.w49{width:560.933333pt;}
.w48{width:561.333333pt;}
.w47{width:561.600000pt;}
.w39{width:561.866667pt;}
.w3a{width:562.000000pt;}
.w35{width:563.333333pt;}
.w34{width:563.466667pt;}
.w4b{width:564.000000pt;}
.w4a{width:564.133333pt;}
.w53{width:564.666667pt;}
.w52{width:564.800000pt;}
.w4e{width:565.066667pt;}
.w4f{width:565.333333pt;}
.w5b{width:565.466667pt;}
.w15{width:566.000000pt;}
.w14{width:566.133333pt;}
.w46{width:566.666667pt;}
.w3d{width:568.000000pt;}
.w3c{width:568.266667pt;}
.w1b{width:568.666667pt;}
.w1a{width:568.933333pt;}
.w6{width:569.333333pt;}
.wb{width:569.866667pt;}
.wc{width:570.000000pt;}
.w61{width:571.200000pt;}
.w25{width:571.333333pt;}
.w24{width:571.466667pt;}
.w8{width:571.866667pt;}
.w9{width:572.000000pt;}
.w2c{width:572.133333pt;}
.w5d{width:575.066667pt;}
.w5e{width:575.333333pt;}
.w10{width:575.733333pt;}
.w11{width:576.000000pt;}
.w38{width:576.266667pt;}
.w43{width:576.666667pt;}
.w42{width:576.933333pt;}
.w57{width:577.333333pt;}
.w56{width:577.600000pt;}
.w1d{width:578.000000pt;}
.w1c{width:578.266667pt;}
.w17{width:579.866667pt;}
.w18{width:580.000000pt;}
.w28{width:580.533333pt;}
.w29{width:580.666667pt;}
.w2f{width:584.000000pt;}
.w2e{width:584.266667pt;}
.w20{width:591.733333pt;}
.w21{width:592.000000pt;}
.w3{width:600.666667pt;}
.w2{width:600.933333pt;}
.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;
}
