
/* 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;}
.hf{height:881.250000px;}
.hd{height:884.100000px;}
.he{height:884.250000px;}
.h10{height:887.100000px;}
.h11{height:887.250000px;}
.h12{height:889.950000px;}
.h13{height:890.250000px;}
.h3d{height:892.500000px;}
.h3c{height:892.800000px;}
.h3b{height:895.500000px;}
.h3a{height:895.650000px;}
.h14{height:898.500000px;}
.ha{height:901.500000px;}
.h8{height:904.350000px;}
.h9{height:904.500000px;}
.h2{height:907.200000px;}
.h3{height:907.500000px;}
.h5{height:909.750000px;}
.h4{height:910.050000px;}
.h1{height:912.750000px;}
.h0{height:912.900000px;}
.h25{height:915.750000px;}
.h24{height:915.900000px;}
.h15{height:918.750000px;}
.h2a{height:921.600000px;}
.h2b{height:921.750000px;}
.h20{height:924.450000px;}
.h21{height:924.750000px;}
.h30{height:925.500000px;}
.h36{height:926.700000px;}
.h23{height:927.000000px;}
.h22{height:927.300000px;}
.h34{height:928.500000px;}
.h33{height:928.800000px;}
.h17{height:930.000000px;}
.h16{height:930.300000px;}
.h2c{height:931.350000px;}
.h2d{height:931.500000px;}
.h37{height:931.650000px;}
.h19{height:933.000000px;}
.h18{height:933.150000px;}
.h35{height:935.250000px;}
.h38{height:935.700000px;}
.h1b{height:936.000000px;}
.h39{height:936.300000px;}
.h29{height:937.500000px;}
.h28{height:937.800000px;}
.h26{height:938.850000px;}
.h27{height:939.000000px;}
.h31{height:940.350000px;}
.h32{height:940.500000px;}
.h1e{height:941.700000px;}
.h1f{height:942.000000px;}
.h2e{height:948.600000px;}
.h2f{height:948.750000px;}
.h1a{height:952.500000px;}
.h7{height:955.500000px;}
.h6{height:955.800000px;}
.h1c{height:962.700000px;}
.h1d{height:963.000000px;}
.hb{height:992.850000px;}
.hc{height:993.000000px;}
.w2{width:648.000000px;}
.w0{width:650.850000px;}
.w1{width:651.000000px;}
.w5{width:651.600000px;}
.w6{width:651.750000px;}
.w3{width:653.700000px;}
.w4{width:654.000000px;}
.w7{width:656.700000px;}
.w8{width:657.000000px;}
.wa{width:662.250000px;}
.w9{width:662.400000px;}
.wb{width:665.250000px;}
.w18{width:666.000000px;}
.wc{width:668.100000px;}
.wd{width:668.250000px;}
.w12{width:669.600000px;}
.w13{width:669.750000px;}
.we{width:671.100000px;}
.wf{width:671.250000px;}
.w16{width:673.200000px;}
.w17{width:673.500000px;}
.w11{width:676.500000px;}
.w10{width:676.800000px;}
.w15{width:679.500000px;}
.w14{width:679.650000px;}
.x0{left:0.000000px;}
@media print{
.y0{bottom:0.000000pt;}
.hf{height:783.333333pt;}
.hd{height:785.866667pt;}
.he{height:786.000000pt;}
.h10{height:788.533333pt;}
.h11{height:788.666667pt;}
.h12{height:791.066667pt;}
.h13{height:791.333333pt;}
.h3d{height:793.333333pt;}
.h3c{height:793.600000pt;}
.h3b{height:796.000000pt;}
.h3a{height:796.133333pt;}
.h14{height:798.666667pt;}
.ha{height:801.333333pt;}
.h8{height:803.866667pt;}
.h9{height:804.000000pt;}
.h2{height:806.400000pt;}
.h3{height:806.666667pt;}
.h5{height:808.666667pt;}
.h4{height:808.933333pt;}
.h1{height:811.333333pt;}
.h0{height:811.466667pt;}
.h25{height:814.000000pt;}
.h24{height:814.133333pt;}
.h15{height:816.666667pt;}
.h2a{height:819.200000pt;}
.h2b{height:819.333333pt;}
.h20{height:821.733333pt;}
.h21{height:822.000000pt;}
.h30{height:822.666667pt;}
.h36{height:823.733333pt;}
.h23{height:824.000000pt;}
.h22{height:824.266667pt;}
.h34{height:825.333333pt;}
.h33{height:825.600000pt;}
.h17{height:826.666667pt;}
.h16{height:826.933333pt;}
.h2c{height:827.866667pt;}
.h2d{height:828.000000pt;}
.h37{height:828.133333pt;}
.h19{height:829.333333pt;}
.h18{height:829.466667pt;}
.h35{height:831.333333pt;}
.h38{height:831.733333pt;}
.h1b{height:832.000000pt;}
.h39{height:832.266667pt;}
.h29{height:833.333333pt;}
.h28{height:833.600000pt;}
.h26{height:834.533333pt;}
.h27{height:834.666667pt;}
.h31{height:835.866667pt;}
.h32{height:836.000000pt;}
.h1e{height:837.066667pt;}
.h1f{height:837.333333pt;}
.h2e{height:843.200000pt;}
.h2f{height:843.333333pt;}
.h1a{height:846.666667pt;}
.h7{height:849.333333pt;}
.h6{height:849.600000pt;}
.h1c{height:855.733333pt;}
.h1d{height:856.000000pt;}
.hb{height:882.533333pt;}
.hc{height:882.666667pt;}
.w2{width:576.000000pt;}
.w0{width:578.533333pt;}
.w1{width:578.666667pt;}
.w5{width:579.200000pt;}
.w6{width:579.333333pt;}
.w3{width:581.066667pt;}
.w4{width:581.333333pt;}
.w7{width:583.733333pt;}
.w8{width:584.000000pt;}
.wa{width:588.666667pt;}
.w9{width:588.800000pt;}
.wb{width:591.333333pt;}
.w18{width:592.000000pt;}
.wc{width:593.866667pt;}
.wd{width:594.000000pt;}
.w12{width:595.200000pt;}
.w13{width:595.333333pt;}
.we{width:596.533333pt;}
.wf{width:596.666667pt;}
.w16{width:598.400000pt;}
.w17{width:598.666667pt;}
.w11{width:601.333333pt;}
.w10{width:601.600000pt;}
.w15{width:604.000000pt;}
.w14{width:604.133333pt;}
.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;
}
