
/* 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;}
@font-face{font-family:ff1;src:url("fonts/font_0000_d21835ebbe33.woff")format("woff");}.ff1{font-family:ff1;line-height:0.971000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url("fonts/font_0001_f9558177bdf3.woff")format("woff");}.ff2{font-family:ff2;line-height:0.967000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url("fonts/font_0002_d6e74e4ed4c6.woff")format("woff");}.ff3{font-family:ff3;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url("fonts/font_0003_888778df17c9.woff")format("woff");}.ff4{font-family:ff4;line-height:0.855469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url("fonts/font_0004_677001bf9603.woff")format("woff");}.ff5{font-family:ff5;line-height:0.625000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-13.680000px;}
.v4{vertical-align:-12.240000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:13.680000px;}
.v1{vertical-align:23.760000px;}
.ls18{letter-spacing:-0.720000px;}
.ls14{letter-spacing:-0.463800px;}
.ls3{letter-spacing:-0.432000px;}
.ls15{letter-spacing:-0.406200px;}
.ls2{letter-spacing:-0.216000px;}
.ls12{letter-spacing:-0.132600px;}
.ls13{letter-spacing:-0.072000px;}
.lse{letter-spacing:-0.069600px;}
.lsf{letter-spacing:-0.058200px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.089400px;}
.ls19{letter-spacing:0.132600px;}
.ls11{letter-spacing:0.149760px;}
.ls17{letter-spacing:0.158400px;}
.lsd{letter-spacing:0.247800px;}
.ls4{letter-spacing:0.256200px;}
.ls5{letter-spacing:0.259200px;}
.ls10{letter-spacing:0.313800px;}
.ls16{letter-spacing:0.354000px;}
.lsa{letter-spacing:2.908800px;}
.ls9{letter-spacing:3.628800px;}
.lsb{letter-spacing:10.800000px;}
.ls8{letter-spacing:11.520000px;}
.ls7{letter-spacing:18.028800px;}
.ls6{letter-spacing:21.628800px;}
.lsc{letter-spacing:39.185280px;}
.ls1a{letter-spacing:76.625280px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6{word-spacing:-66.240000px;}
.ws8{word-spacing:-51.679680px;}
.ws7{word-spacing:-48.041280px;}
.wsf{word-spacing:-15.324240px;}
.wsb{word-spacing:-15.284040px;}
.ws5{word-spacing:-15.229440px;}
.ws1{word-spacing:-15.226440px;}
.ws10{word-spacing:-15.128640px;}
.ws12{word-spacing:-15.102840px;}
.wsc{word-spacing:-14.970240px;}
.ws3{word-spacing:-14.754240px;}
.wse{word-spacing:-14.564040px;}
.ws0{word-spacing:-14.538240px;}
.wsd{word-spacing:-14.506440px;}
.ws11{word-spacing:-14.250240px;}
.wsa{word-spacing:-13.447560px;}
.ws9{word-spacing:-13.436160px;}
.ws4{word-spacing:-9.437760px;}
.ws2{word-spacing:0.000000px;}
._3{margin-left:-7.228800px;}
._4{margin-left:-3.545280px;}
._2{margin-left:-1.044000px;}
._1{width:1.008000px;}
._5{width:102.515520px;}
._6{width:116.045760px;}
._7{width:154.205760px;}
._0{width:259.325760px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:36.000000px;}
.fs4{font-size:41.760000px;}
.fs5{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:84.240000px;}
.y24{bottom:-0.540000px;}
.y0{bottom:0.000000px;}
.y6b{bottom:2.880000px;}
.y5a{bottom:3.600000px;}
.y61{bottom:4.320000px;}
.y57{bottom:4.500000px;}
.y2c{bottom:4.710000px;}
.y26{bottom:4.860000px;}
.y28{bottom:4.890000px;}
.y2a{bottom:4.935000px;}
.y66{bottom:16.740000px;}
.y59{bottom:19.980000px;}
.y5d{bottom:23.970000px;}
.y56{bottom:24.660000px;}
.y5f{bottom:26.100000px;}
.y65{bottom:35.100000px;}
.y5c{bottom:42.150000px;}
.y68{bottom:42.300000px;}
.y55{bottom:44.820000px;}
.y64{bottom:53.460000px;}
.y3{bottom:56.880000px;}
.y54{bottom:64.800000px;}
.y2{bottom:70.596000px;}
.y63{bottom:71.820000px;}
.y53{bottom:84.960000px;}
.y52{bottom:105.120000px;}
.y22{bottom:105.336000px;}
.ya2{bottom:117.756000px;}
.y51{bottom:125.280000px;}
.y21{bottom:128.556000px;}
.ya1{bottom:140.976000px;}
.y50{bottom:145.440000px;}
.y48{bottom:149.976000px;}
.y20{bottom:151.770000px;}
.ya0{bottom:164.190000px;}
.y4f{bottom:165.600000px;}
.y86{bottom:169.770000px;}
.y47{bottom:173.010000px;}
.y4e{bottom:185.760000px;}
.y1f{bottom:185.790000px;}
.y9f{bottom:187.230000px;}
.y85{bottom:192.990000px;}
.y46{bottom:196.230000px;}
.y4d{bottom:205.920000px;}
.y9e{bottom:210.450000px;}
.y27{bottom:212.220000px;}
.y84{bottom:216.030000px;}
.y1e{bottom:217.290000px;}
.y45{bottom:219.450000px;}
.y4c{bottom:226.080000px;}
.y9d{bottom:233.670000px;}
.y83{bottom:239.250000px;}
.y44{bottom:239.610000px;}
.y4b{bottom:246.240000px;}
.y1d{bottom:248.070000px;}
.y25{bottom:252.390000px;}
.y23{bottom:256.350000px;}
.y9c{bottom:256.710000px;}
.y43{bottom:259.770000px;}
.y82{bottom:262.470000px;}
.y4a{bottom:266.220000px;}
.y81{bottom:278.850000px;}
.y42{bottom:279.930000px;}
.y80{bottom:299.730000px;}
.y41{bottom:302.970000px;}
.y9b{bottom:303.150000px;}
.y7f{bottom:320.610000px;}
.y2b{bottom:321.120000px;}
.y3f{bottom:323.130000px;}
.y40{bottom:326.190000px;}
.y9a{bottom:341.355000px;}
.y7e{bottom:341.535000px;}
.y3e{bottom:347.295000px;}
.y7d{bottom:362.415000px;}
.y99{bottom:364.395000px;}
.y3d{bottom:370.515000px;}
.y98{bottom:387.615000px;}
.y3c{bottom:408.675000px;}
.y97{bottom:410.835000px;}
.y7c{bottom:421.995000px;}
.y96{bottom:434.055000px;}
.y3a{bottom:445.755000px;}
.y3b{bottom:448.815000px;}
.y29{bottom:452.520000px;}
.y95{bottom:457.095000px;}
.y7b{bottom:457.455000px;}
.y7a{bottom:480.675000px;}
.y39{bottom:485.175000px;}
.y94{bottom:495.255000px;}
.y38{bottom:508.395000px;}
.y1c{bottom:512.355000px;}
.y93{bottom:518.475000px;}
.y79{bottom:518.835000px;}
.y1b{bottom:535.395000px;}
.y92{bottom:541.695000px;}
.y78{bottom:541.875000px;}
.y37{bottom:546.555000px;}
.y1a{bottom:558.615000px;}
.y58{bottom:562.215000px;}
.y91{bottom:564.735000px;}
.y77{bottom:565.095000px;}
.y5b{bottom:578.955000px;}
.y19{bottom:581.835000px;}
.y90{bottom:587.955000px;}
.y76{bottom:588.315000px;}
.y49{bottom:595.185000px;}
.y18{bottom:604.905000px;}
.y75{bottom:611.385000px;}
.y8f{bottom:626.145000px;}
.y17{bottom:628.125000px;}
.y74{bottom:634.605000px;}
.y8e{bottom:649.365000px;}
.y16{bottom:651.345000px;}
.y73{bottom:657.825000px;}
.y8d{bottom:672.405000px;}
.y15{bottom:674.385000px;}
.y72{bottom:680.865000px;}
.y69{bottom:685.905000px;}
.y8c{bottom:695.625000px;}
.y14{bottom:697.605000px;}
.y62{bottom:703.185000px;}
.y71{bottom:704.085000px;}
.y8b{bottom:718.845000px;}
.y13{bottom:720.825000px;}
.y70{bottom:727.305000px;}
.y6a{bottom:736.485000px;}
.y8a{bottom:741.885000px;}
.y12{bottom:744.045000px;}
.y67{bottom:749.805000px;}
.y6f{bottom:750.345000px;}
.y89{bottom:765.105000px;}
.y11{bottom:767.085000px;}
.y6e{bottom:773.565000px;}
.y5e{bottom:786.345000px;}
.y10{bottom:790.305000px;}
.y60{bottom:791.925000px;}
.y88{bottom:799.305000px;}
.y6d{bottom:807.765000px;}
.yf{bottom:828.465000px;}
.y87{bottom:830.265000px;}
.y6c{bottom:838.725000px;}
.ye{bottom:851.685000px;}
.yd{bottom:874.770000px;}
.ya7{bottom:887.370000px;}
.yc{bottom:897.990000px;}
.y36{bottom:902.490000px;}
.yb{bottom:921.210000px;}
.y35{bottom:925.530000px;}
.ya{bottom:944.250000px;}
.y34{bottom:963.690000px;}
.y9{bottom:967.470000px;}
.y33{bottom:986.910000px;}
.y8{bottom:990.690000px;}
.y32{bottom:1010.130000px;}
.y7{bottom:1028.850000px;}
.ya6{bottom:1033.350000px;}
.y31{bottom:1048.290000px;}
.ya5{bottom:1056.390000px;}
.y6{bottom:1067.010000px;}
.y30{bottom:1071.510000px;}
.ya4{bottom:1079.610000px;}
.y2f{bottom:1094.550000px;}
.ya3{bottom:1102.830000px;}
.y5{bottom:1107.150000px;}
.y2e{bottom:1117.770000px;}
.y4{bottom:1136.520000px;}
.y2d{bottom:1141.020000px;}
.y1{bottom:1194.120000px;}
.h7{height:15.120000px;}
.h14{height:17.100000px;}
.h11{height:18.540000px;}
.h16{height:20.160000px;}
.h17{height:20.196000px;}
.h8{height:20.520000px;}
.h9{height:20.700000px;}
.h3{height:27.360000px;}
.hd{height:32.976000px;}
.h15{height:40.320000px;}
.h10{height:40.500000px;}
.h5{height:42.822000px;}
.hf{height:47.389680px;}
.h2{height:52.528320px;}
.hb{height:55.825312px;}
.he{height:56.556000px;}
.h13{height:56.700000px;}
.ha{height:56.875680px;}
.h6{height:65.884219px;}
.h4{height:66.802320px;}
.h12{height:86.220000px;}
.hc{height:281.910000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:45.000000px;}
.wc{width:48.960000px;}
.w2{width:61.200000px;}
.w5{width:61.920000px;}
.w4{width:66.960000px;}
.w6{width:70.020000px;}
.w9{width:71.496000px;}
.wb{width:96.660000px;}
.w8{width:107.640000px;}
.w3{width:116.856000px;}
.we{width:128.016000px;}
.wf{width:128.196000px;}
.wd{width:132.660000px;}
.w10{width:149.256000px;}
.w7{width:680.505000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:8.100000px;}
.x8{left:10.800000px;}
.x15{left:28.260000px;}
.x16{left:35.280000px;}
.x1{left:106.236000px;}
.xf{left:114.336000px;}
.x13{left:124.554000px;}
.x20{left:134.136000px;}
.x26{left:138.276000px;}
.x10{left:160.230000px;}
.x1f{left:210.270000px;}
.x6{left:215.670000px;}
.x3{left:225.930000px;}
.x1e{left:234.030000px;}
.x9{left:265.530000px;}
.x21{left:267.510000px;}
.x1b{left:323.175000px;}
.x11{left:340.239000px;}
.x18{left:374.115000px;}
.x1c{left:394.275000px;}
.x22{left:396.255000px;}
.xd{left:404.175000px;}
.x2{left:442.335000px;}
.x5{left:446.475000px;}
.x14{left:475.305000px;}
.xe{left:486.105000px;}
.x1a{left:499.245000px;}
.x23{left:525.165000px;}
.x7{left:527.505000px;}
.xa{left:529.020000px;}
.x17{left:606.885000px;}
.xb{left:650.160000px;}
.xc{left:652.320000px;}
.x24{left:658.545000px;}
.x19{left:671.730000px;}
.x4{left:700.890000px;}
.x1d{left:786.570000px;}
.x25{left:813.570000px;}
@media print{
.v2{vertical-align:-12.160000pt;}
.v4{vertical-align:-10.880000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:12.160000pt;}
.v1{vertical-align:21.120000pt;}
.ls18{letter-spacing:-0.640000pt;}
.ls14{letter-spacing:-0.412267pt;}
.ls3{letter-spacing:-0.384000pt;}
.ls15{letter-spacing:-0.361067pt;}
.ls2{letter-spacing:-0.192000pt;}
.ls12{letter-spacing:-0.117867pt;}
.ls13{letter-spacing:-0.064000pt;}
.lse{letter-spacing:-0.061867pt;}
.lsf{letter-spacing:-0.051733pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.079467pt;}
.ls19{letter-spacing:0.117867pt;}
.ls11{letter-spacing:0.133120pt;}
.ls17{letter-spacing:0.140800pt;}
.lsd{letter-spacing:0.220267pt;}
.ls4{letter-spacing:0.227733pt;}
.ls5{letter-spacing:0.230400pt;}
.ls10{letter-spacing:0.278933pt;}
.ls16{letter-spacing:0.314667pt;}
.lsa{letter-spacing:2.585600pt;}
.ls9{letter-spacing:3.225600pt;}
.lsb{letter-spacing:9.600000pt;}
.ls8{letter-spacing:10.240000pt;}
.ls7{letter-spacing:16.025600pt;}
.ls6{letter-spacing:19.225600pt;}
.lsc{letter-spacing:34.831360pt;}
.ls1a{letter-spacing:68.111360pt;}
.ws6{word-spacing:-58.880000pt;}
.ws8{word-spacing:-45.937493pt;}
.ws7{word-spacing:-42.703360pt;}
.wsf{word-spacing:-13.621547pt;}
.wsb{word-spacing:-13.585813pt;}
.ws5{word-spacing:-13.537280pt;}
.ws1{word-spacing:-13.534613pt;}
.ws10{word-spacing:-13.447680pt;}
.ws12{word-spacing:-13.424747pt;}
.wsc{word-spacing:-13.306880pt;}
.ws3{word-spacing:-13.114880pt;}
.wse{word-spacing:-12.945813pt;}
.ws0{word-spacing:-12.922880pt;}
.wsd{word-spacing:-12.894613pt;}
.ws11{word-spacing:-12.666880pt;}
.wsa{word-spacing:-11.953387pt;}
.ws9{word-spacing:-11.943253pt;}
.ws4{word-spacing:-8.389120pt;}
.ws2{word-spacing:0.000000pt;}
._3{margin-left:-6.425600pt;}
._4{margin-left:-3.151360pt;}
._2{margin-left:-0.928000pt;}
._1{width:0.896000pt;}
._5{width:91.124907pt;}
._6{width:103.151787pt;}
._7{width:137.071787pt;}
._0{width:230.511787pt;}
.fs1{font-size:32.000000pt;}
.fs4{font-size:37.120000pt;}
.fs5{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:74.880000pt;}
.y24{bottom:-0.480000pt;}
.y0{bottom:0.000000pt;}
.y6b{bottom:2.560000pt;}
.y5a{bottom:3.200000pt;}
.y61{bottom:3.840000pt;}
.y57{bottom:4.000000pt;}
.y2c{bottom:4.186667pt;}
.y26{bottom:4.320000pt;}
.y28{bottom:4.346667pt;}
.y2a{bottom:4.386667pt;}
.y66{bottom:14.880000pt;}
.y59{bottom:17.760000pt;}
.y5d{bottom:21.306667pt;}
.y56{bottom:21.920000pt;}
.y5f{bottom:23.200000pt;}
.y65{bottom:31.200000pt;}
.y5c{bottom:37.466667pt;}
.y68{bottom:37.600000pt;}
.y55{bottom:39.840000pt;}
.y64{bottom:47.520000pt;}
.y3{bottom:50.560000pt;}
.y54{bottom:57.600000pt;}
.y2{bottom:62.752000pt;}
.y63{bottom:63.840000pt;}
.y53{bottom:75.520000pt;}
.y52{bottom:93.440000pt;}
.y22{bottom:93.632000pt;}
.ya2{bottom:104.672000pt;}
.y51{bottom:111.360000pt;}
.y21{bottom:114.272000pt;}
.ya1{bottom:125.312000pt;}
.y50{bottom:129.280000pt;}
.y48{bottom:133.312000pt;}
.y20{bottom:134.906667pt;}
.ya0{bottom:145.946667pt;}
.y4f{bottom:147.200000pt;}
.y86{bottom:150.906667pt;}
.y47{bottom:153.786667pt;}
.y4e{bottom:165.120000pt;}
.y1f{bottom:165.146667pt;}
.y9f{bottom:166.426667pt;}
.y85{bottom:171.546667pt;}
.y46{bottom:174.426667pt;}
.y4d{bottom:183.040000pt;}
.y9e{bottom:187.066667pt;}
.y27{bottom:188.640000pt;}
.y84{bottom:192.026667pt;}
.y1e{bottom:193.146667pt;}
.y45{bottom:195.066667pt;}
.y4c{bottom:200.960000pt;}
.y9d{bottom:207.706667pt;}
.y83{bottom:212.666667pt;}
.y44{bottom:212.986667pt;}
.y4b{bottom:218.880000pt;}
.y1d{bottom:220.506667pt;}
.y25{bottom:224.346667pt;}
.y23{bottom:227.866667pt;}
.y9c{bottom:228.186667pt;}
.y43{bottom:230.906667pt;}
.y82{bottom:233.306667pt;}
.y4a{bottom:236.640000pt;}
.y81{bottom:247.866667pt;}
.y42{bottom:248.826667pt;}
.y80{bottom:266.426667pt;}
.y41{bottom:269.306667pt;}
.y9b{bottom:269.466667pt;}
.y7f{bottom:284.986667pt;}
.y2b{bottom:285.440000pt;}
.y3f{bottom:287.226667pt;}
.y40{bottom:289.946667pt;}
.y9a{bottom:303.426667pt;}
.y7e{bottom:303.586667pt;}
.y3e{bottom:308.706667pt;}
.y7d{bottom:322.146667pt;}
.y99{bottom:323.906667pt;}
.y3d{bottom:329.346667pt;}
.y98{bottom:344.546667pt;}
.y3c{bottom:363.266667pt;}
.y97{bottom:365.186667pt;}
.y7c{bottom:375.106667pt;}
.y96{bottom:385.826667pt;}
.y3a{bottom:396.226667pt;}
.y3b{bottom:398.946667pt;}
.y29{bottom:402.240000pt;}
.y95{bottom:406.306667pt;}
.y7b{bottom:406.626667pt;}
.y7a{bottom:427.266667pt;}
.y39{bottom:431.266667pt;}
.y94{bottom:440.226667pt;}
.y38{bottom:451.906667pt;}
.y1c{bottom:455.426667pt;}
.y93{bottom:460.866667pt;}
.y79{bottom:461.186667pt;}
.y1b{bottom:475.906667pt;}
.y92{bottom:481.506667pt;}
.y78{bottom:481.666667pt;}
.y37{bottom:485.826667pt;}
.y1a{bottom:496.546667pt;}
.y58{bottom:499.746667pt;}
.y91{bottom:501.986667pt;}
.y77{bottom:502.306667pt;}
.y5b{bottom:514.626667pt;}
.y19{bottom:517.186667pt;}
.y90{bottom:522.626667pt;}
.y76{bottom:522.946667pt;}
.y49{bottom:529.053333pt;}
.y18{bottom:537.693333pt;}
.y75{bottom:543.453333pt;}
.y8f{bottom:556.573333pt;}
.y17{bottom:558.333333pt;}
.y74{bottom:564.093333pt;}
.y8e{bottom:577.213333pt;}
.y16{bottom:578.973333pt;}
.y73{bottom:584.733333pt;}
.y8d{bottom:597.693333pt;}
.y15{bottom:599.453333pt;}
.y72{bottom:605.213333pt;}
.y69{bottom:609.693333pt;}
.y8c{bottom:618.333333pt;}
.y14{bottom:620.093333pt;}
.y62{bottom:625.053333pt;}
.y71{bottom:625.853333pt;}
.y8b{bottom:638.973333pt;}
.y13{bottom:640.733333pt;}
.y70{bottom:646.493333pt;}
.y6a{bottom:654.653333pt;}
.y8a{bottom:659.453333pt;}
.y12{bottom:661.373333pt;}
.y67{bottom:666.493333pt;}
.y6f{bottom:666.973333pt;}
.y89{bottom:680.093333pt;}
.y11{bottom:681.853333pt;}
.y6e{bottom:687.613333pt;}
.y5e{bottom:698.973333pt;}
.y10{bottom:702.493333pt;}
.y60{bottom:703.933333pt;}
.y88{bottom:710.493333pt;}
.y6d{bottom:718.013333pt;}
.yf{bottom:736.413333pt;}
.y87{bottom:738.013333pt;}
.y6c{bottom:745.533333pt;}
.ye{bottom:757.053333pt;}
.yd{bottom:777.573333pt;}
.ya7{bottom:788.773333pt;}
.yc{bottom:798.213333pt;}
.y36{bottom:802.213333pt;}
.yb{bottom:818.853333pt;}
.y35{bottom:822.693333pt;}
.ya{bottom:839.333333pt;}
.y34{bottom:856.613333pt;}
.y9{bottom:859.973333pt;}
.y33{bottom:877.253333pt;}
.y8{bottom:880.613333pt;}
.y32{bottom:897.893333pt;}
.y7{bottom:914.533333pt;}
.ya6{bottom:918.533333pt;}
.y31{bottom:931.813333pt;}
.ya5{bottom:939.013333pt;}
.y6{bottom:948.453333pt;}
.y30{bottom:952.453333pt;}
.ya4{bottom:959.653333pt;}
.y2f{bottom:972.933333pt;}
.ya3{bottom:980.293333pt;}
.y5{bottom:984.133333pt;}
.y2e{bottom:993.573333pt;}
.y4{bottom:1010.240000pt;}
.y2d{bottom:1014.240000pt;}
.y1{bottom:1061.440000pt;}
.h7{height:13.440000pt;}
.h14{height:15.200000pt;}
.h11{height:16.480000pt;}
.h16{height:17.920000pt;}
.h17{height:17.952000pt;}
.h8{height:18.240000pt;}
.h9{height:18.400000pt;}
.h3{height:24.320000pt;}
.hd{height:29.312000pt;}
.h15{height:35.840000pt;}
.h10{height:36.000000pt;}
.h5{height:38.064000pt;}
.hf{height:42.124160pt;}
.h2{height:46.691840pt;}
.hb{height:49.622500pt;}
.he{height:50.272000pt;}
.h13{height:50.400000pt;}
.ha{height:50.556160pt;}
.h6{height:58.563750pt;}
.h4{height:59.379840pt;}
.h12{height:76.640000pt;}
.hc{height:250.586667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:40.000000pt;}
.wc{width:43.520000pt;}
.w2{width:54.400000pt;}
.w5{width:55.040000pt;}
.w4{width:59.520000pt;}
.w6{width:62.240000pt;}
.w9{width:63.552000pt;}
.wb{width:85.920000pt;}
.w8{width:95.680000pt;}
.w3{width:103.872000pt;}
.we{width:113.792000pt;}
.wf{width:113.952000pt;}
.wd{width:117.920000pt;}
.w10{width:132.672000pt;}
.w7{width:604.893333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:7.200000pt;}
.x8{left:9.600000pt;}
.x15{left:25.120000pt;}
.x16{left:31.360000pt;}
.x1{left:94.432000pt;}
.xf{left:101.632000pt;}
.x13{left:110.714667pt;}
.x20{left:119.232000pt;}
.x26{left:122.912000pt;}
.x10{left:142.426667pt;}
.x1f{left:186.906667pt;}
.x6{left:191.706667pt;}
.x3{left:200.826667pt;}
.x1e{left:208.026667pt;}
.x9{left:236.026667pt;}
.x21{left:237.786667pt;}
.x1b{left:287.266667pt;}
.x11{left:302.434667pt;}
.x18{left:332.546667pt;}
.x1c{left:350.466667pt;}
.x22{left:352.226667pt;}
.xd{left:359.266667pt;}
.x2{left:393.186667pt;}
.x5{left:396.866667pt;}
.x14{left:422.493333pt;}
.xe{left:432.093333pt;}
.x1a{left:443.773333pt;}
.x23{left:466.813333pt;}
.x7{left:468.893333pt;}
.xa{left:470.240000pt;}
.x17{left:539.453333pt;}
.xb{left:577.920000pt;}
.xc{left:579.840000pt;}
.x24{left:585.373333pt;}
.x19{left:597.093333pt;}
.x4{left:623.013333pt;}
.x1d{left:699.173333pt;}
.x25{left:723.173333pt;}
}


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;
}
