
/* 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_bdfdcd4e1a66.woff")format("woff");}.ff1{font-family:ff1;line-height:1.281250;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_dd091961a7b6.woff")format("woff");}.ff2{font-family:ff2;line-height:1.010000;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_289dc5074ebb.woff")format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_254df3158ea4.woff")format("woff");}.ff4{font-family:ff4;line-height:1.575000;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_c4413fea0cbd.woff")format("woff");}.ff5{font-family:ff5;line-height:1.575000;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-82.800000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:28.800000px;}
.ls16{letter-spacing:-0.720000px;}
.ls18{letter-spacing:-0.576000px;}
.ls17{letter-spacing:-0.432000px;}
.ls4{letter-spacing:-0.324000px;}
.ls7{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.144000px;}
.ls8{letter-spacing:-0.108000px;}
.ls15{letter-spacing:-0.072000px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.108000px;}
.lsa{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.216000px;}
.lsb{letter-spacing:0.288000px;}
.ls9{letter-spacing:0.331200px;}
.ls5{letter-spacing:0.360000px;}
.lsc{letter-spacing:5.184000px;}
.lsf{letter-spacing:5.904000px;}
.ls11{letter-spacing:10.224000px;}
.ls12{letter-spacing:13.104000px;}
.lse{letter-spacing:15.984000px;}
.ls10{letter-spacing:22.464000px;}
.ls14{letter-spacing:195.984000px;}
.lsd{letter-spacing:336.384000px;}
.ls13{letter-spacing:1227.744000px;}
.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;}
}
.ws0{word-spacing:-27.000000px;}
.ws4{word-spacing:-26.892000px;}
.ws1{word-spacing:-26.676000px;}
.ws2{word-spacing:-18.216000px;}
.ws3{word-spacing:-18.000000px;}
.ws12{word-spacing:-16.704000px;}
.ws11{word-spacing:-16.416000px;}
.ws10{word-spacing:-16.344000px;}
.ws13{word-spacing:-16.272000px;}
.ws14{word-spacing:-16.200000px;}
.ws15{word-spacing:-15.984000px;}
.ws6{word-spacing:-1.080000px;}
.ws18{word-spacing:-0.864000px;}
.wsc{word-spacing:-0.432000px;}
.wsf{word-spacing:-0.331200px;}
.ws1c{word-spacing:-0.288000px;}
.ws9{word-spacing:-0.216000px;}
.ws16{word-spacing:-0.144000px;}
.wsd{word-spacing:-0.108000px;}
.ws5{word-spacing:0.000000px;}
.ws7{word-spacing:0.144000px;}
.ws8{word-spacing:0.216000px;}
.ws30{word-spacing:0.288000px;}
.wse{word-spacing:0.324000px;}
.ws17{word-spacing:0.360000px;}
.ws2e{word-spacing:0.576000px;}
.ws1a{word-spacing:0.720000px;}
.ws26{word-spacing:3.456000px;}
.ws1d{word-spacing:4.896000px;}
.ws1e{word-spacing:5.040000px;}
.ws1f{word-spacing:5.616000px;}
.ws2d{word-spacing:6.048000px;}
.ws23{word-spacing:6.336000px;}
.ws21{word-spacing:8.496000px;}
.ws2c{word-spacing:9.000000px;}
.ws20{word-spacing:9.216000px;}
.ws28{word-spacing:9.936000px;}
.ws29{word-spacing:10.080000px;}
.ws2a{word-spacing:10.368000px;}
.ws19{word-spacing:10.656000px;}
.ws2f{word-spacing:11.376000px;}
.ws2b{word-spacing:14.976000px;}
.ws25{word-spacing:20.736000px;}
.ws22{word-spacing:22.176000px;}
.wsb{word-spacing:24.084000px;}
.wsa{word-spacing:24.300000px;}
.ws1b{word-spacing:24.336000px;}
.ws24{word-spacing:27.936000px;}
.ws27{word-spacing:28.656000px;}
._a{margin-left:-195.840000px;}
._3{margin-left:-16.416000px;}
._8{margin-left:-11.952000px;}
._1{margin-left:-1.152000px;}
._0{width:1.188000px;}
._2{width:2.232000px;}
._9{width:5.040000px;}
._5{width:6.048000px;}
._6{width:8.496000px;}
._7{width:21.888000px;}
._4{width:24.624000px;}
.fc1{color:rgb(13,27,67);}
.fc2{color:rgb(192,192,192);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:41.760000px;}
.fs3{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y20{bottom:45.540000px;}
.y1f{bottom:66.060000px;}
.y1e{bottom:86.580000px;}
.y1d{bottom:106.920000px;}
.y1c{bottom:127.260000px;}
.y1b{bottom:147.600000px;}
.y47{bottom:154.440000px;}
.y1a{bottom:168.120000px;}
.y19{bottom:188.460000px;}
.y18{bottom:208.800000px;}
.y46{bottom:216.360000px;}
.y17{bottom:229.140000px;}
.y45{bottom:237.060000px;}
.y16{bottom:249.660000px;}
.y15{bottom:270.000000px;}
.y44{bottom:278.460000px;}
.y14{bottom:290.340000px;}
.y43{bottom:298.980000px;}
.y13{bottom:310.860000px;}
.y42{bottom:319.680000px;}
.y12{bottom:331.200000px;}
.y11{bottom:351.540000px;}
.y10{bottom:371.880000px;}
.y41{bottom:381.600000px;}
.ye{bottom:391.500000px;}
.yf{bottom:399.054960px;}
.y40{bottom:402.300000px;}
.yd{bottom:412.560000px;}
.y3f{bottom:423.000000px;}
.yc{bottom:441.540000px;}
.y3e{bottom:464.220000px;}
.yb{bottom:479.340000px;}
.y3d{bottom:499.680000px;}
.ya{bottom:517.140000px;}
.y3c{bottom:520.560000px;}
.y3b{bottom:541.260000px;}
.y9{bottom:554.940000px;}
.y3a{bottom:561.960000px;}
.y39{bottom:582.480000px;}
.y8{bottom:592.740000px;}
.y38{bottom:603.180000px;}
.y37{bottom:623.880000px;}
.y7{bottom:626.580000px;}
.y36{bottom:644.580000px;}
.y6{bottom:651.780000px;}
.y35{bottom:665.100000px;}
.y5{bottom:676.980000px;}
.y34{bottom:685.800000px;}
.y4{bottom:702.180000px;}
.y33{bottom:706.500000px;}
.y32{bottom:727.200000px;}
.y3{bottom:727.380000px;}
.y31{bottom:747.720000px;}
.y2{bottom:756.540000px;}
.y30{bottom:768.420000px;}
.y2f{bottom:789.120000px;}
.y2e{bottom:809.820000px;}
.y2d{bottom:830.340000px;}
.y2c{bottom:851.040000px;}
.y2b{bottom:892.440000px;}
.y2a{bottom:912.960000px;}
.y29{bottom:975.060000px;}
.y28{bottom:995.580000px;}
.y27{bottom:1016.280000px;}
.y26{bottom:1057.680000px;}
.y25{bottom:1078.200000px;}
.y24{bottom:1098.900000px;}
.y23{bottom:1119.600000px;}
.y22{bottom:1140.300000px;}
.y21{bottom:1193.220000px;}
.y1{bottom:1247.400000px;}
.h7{height:35.913600px;}
.h8{height:56.966400px;}
.h5{height:61.920000px;}
.h6{height:64.713600px;}
.h3{height:70.628906px;}
.h9{height:75.093750px;}
.ha{height:76.824000px;}
.h4{height:92.880000px;}
.h2{height:1262.866500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.396500px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.w3{width:892.980000px;}
.w4{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:42.480000px;}
.x2{left:80.820000px;}
.x9{left:106.200000px;}
.xb{left:132.300000px;}
.xc{left:159.300000px;}
.x7{left:167.400000px;}
.x5{left:235.080000px;}
.x6{left:242.100000px;}
.x3{left:248.765040px;}
.x8{left:270.720000px;}
.xa{left:419.220000px;}
.x4{left:441.360000px;}
.xd{left:531.000000px;}
@media print{
.v2{vertical-align:-73.600000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:25.600000pt;}
.ls16{letter-spacing:-0.640000pt;}
.ls18{letter-spacing:-0.512000pt;}
.ls17{letter-spacing:-0.384000pt;}
.ls4{letter-spacing:-0.288000pt;}
.ls7{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.128000pt;}
.ls8{letter-spacing:-0.096000pt;}
.ls15{letter-spacing:-0.064000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.096000pt;}
.lsa{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.192000pt;}
.lsb{letter-spacing:0.256000pt;}
.ls9{letter-spacing:0.294400pt;}
.ls5{letter-spacing:0.320000pt;}
.lsc{letter-spacing:4.608000pt;}
.lsf{letter-spacing:5.248000pt;}
.ls11{letter-spacing:9.088000pt;}
.ls12{letter-spacing:11.648000pt;}
.lse{letter-spacing:14.208000pt;}
.ls10{letter-spacing:19.968000pt;}
.ls14{letter-spacing:174.208000pt;}
.lsd{letter-spacing:299.008000pt;}
.ls13{letter-spacing:1091.328000pt;}
.ws0{word-spacing:-24.000000pt;}
.ws4{word-spacing:-23.904000pt;}
.ws1{word-spacing:-23.712000pt;}
.ws2{word-spacing:-16.192000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws12{word-spacing:-14.848000pt;}
.ws11{word-spacing:-14.592000pt;}
.ws10{word-spacing:-14.528000pt;}
.ws13{word-spacing:-14.464000pt;}
.ws14{word-spacing:-14.400000pt;}
.ws15{word-spacing:-14.208000pt;}
.ws6{word-spacing:-0.960000pt;}
.ws18{word-spacing:-0.768000pt;}
.wsc{word-spacing:-0.384000pt;}
.wsf{word-spacing:-0.294400pt;}
.ws1c{word-spacing:-0.256000pt;}
.ws9{word-spacing:-0.192000pt;}
.ws16{word-spacing:-0.128000pt;}
.wsd{word-spacing:-0.096000pt;}
.ws5{word-spacing:0.000000pt;}
.ws7{word-spacing:0.128000pt;}
.ws8{word-spacing:0.192000pt;}
.ws30{word-spacing:0.256000pt;}
.wse{word-spacing:0.288000pt;}
.ws17{word-spacing:0.320000pt;}
.ws2e{word-spacing:0.512000pt;}
.ws1a{word-spacing:0.640000pt;}
.ws26{word-spacing:3.072000pt;}
.ws1d{word-spacing:4.352000pt;}
.ws1e{word-spacing:4.480000pt;}
.ws1f{word-spacing:4.992000pt;}
.ws2d{word-spacing:5.376000pt;}
.ws23{word-spacing:5.632000pt;}
.ws21{word-spacing:7.552000pt;}
.ws2c{word-spacing:8.000000pt;}
.ws20{word-spacing:8.192000pt;}
.ws28{word-spacing:8.832000pt;}
.ws29{word-spacing:8.960000pt;}
.ws2a{word-spacing:9.216000pt;}
.ws19{word-spacing:9.472000pt;}
.ws2f{word-spacing:10.112000pt;}
.ws2b{word-spacing:13.312000pt;}
.ws25{word-spacing:18.432000pt;}
.ws22{word-spacing:19.712000pt;}
.wsb{word-spacing:21.408000pt;}
.wsa{word-spacing:21.600000pt;}
.ws1b{word-spacing:21.632000pt;}
.ws24{word-spacing:24.832000pt;}
.ws27{word-spacing:25.472000pt;}
._a{margin-left:-174.080000pt;}
._3{margin-left:-14.592000pt;}
._8{margin-left:-10.624000pt;}
._1{margin-left:-1.024000pt;}
._0{width:1.056000pt;}
._2{width:1.984000pt;}
._9{width:4.480000pt;}
._5{width:5.376000pt;}
._6{width:7.552000pt;}
._7{width:19.456000pt;}
._4{width:21.888000pt;}
.fs2{font-size:37.120000pt;}
.fs3{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:40.480000pt;}
.y1f{bottom:58.720000pt;}
.y1e{bottom:76.960000pt;}
.y1d{bottom:95.040000pt;}
.y1c{bottom:113.120000pt;}
.y1b{bottom:131.200000pt;}
.y47{bottom:137.280000pt;}
.y1a{bottom:149.440000pt;}
.y19{bottom:167.520000pt;}
.y18{bottom:185.600000pt;}
.y46{bottom:192.320000pt;}
.y17{bottom:203.680000pt;}
.y45{bottom:210.720000pt;}
.y16{bottom:221.920000pt;}
.y15{bottom:240.000000pt;}
.y44{bottom:247.520000pt;}
.y14{bottom:258.080000pt;}
.y43{bottom:265.760000pt;}
.y13{bottom:276.320000pt;}
.y42{bottom:284.160000pt;}
.y12{bottom:294.400000pt;}
.y11{bottom:312.480000pt;}
.y10{bottom:330.560000pt;}
.y41{bottom:339.200000pt;}
.ye{bottom:348.000000pt;}
.yf{bottom:354.715520pt;}
.y40{bottom:357.600000pt;}
.yd{bottom:366.720000pt;}
.y3f{bottom:376.000000pt;}
.yc{bottom:392.480000pt;}
.y3e{bottom:412.640000pt;}
.yb{bottom:426.080000pt;}
.y3d{bottom:444.160000pt;}
.ya{bottom:459.680000pt;}
.y3c{bottom:462.720000pt;}
.y3b{bottom:481.120000pt;}
.y9{bottom:493.280000pt;}
.y3a{bottom:499.520000pt;}
.y39{bottom:517.760000pt;}
.y8{bottom:526.880000pt;}
.y38{bottom:536.160000pt;}
.y37{bottom:554.560000pt;}
.y7{bottom:556.960000pt;}
.y36{bottom:572.960000pt;}
.y6{bottom:579.360000pt;}
.y35{bottom:591.200000pt;}
.y5{bottom:601.760000pt;}
.y34{bottom:609.600000pt;}
.y4{bottom:624.160000pt;}
.y33{bottom:628.000000pt;}
.y32{bottom:646.400000pt;}
.y3{bottom:646.560000pt;}
.y31{bottom:664.640000pt;}
.y2{bottom:672.480000pt;}
.y30{bottom:683.040000pt;}
.y2f{bottom:701.440000pt;}
.y2e{bottom:719.840000pt;}
.y2d{bottom:738.080000pt;}
.y2c{bottom:756.480000pt;}
.y2b{bottom:793.280000pt;}
.y2a{bottom:811.520000pt;}
.y29{bottom:866.720000pt;}
.y28{bottom:884.960000pt;}
.y27{bottom:903.360000pt;}
.y26{bottom:940.160000pt;}
.y25{bottom:958.400000pt;}
.y24{bottom:976.800000pt;}
.y23{bottom:995.200000pt;}
.y22{bottom:1013.600000pt;}
.y21{bottom:1060.640000pt;}
.y1{bottom:1108.800000pt;}
.h7{height:31.923200pt;}
.h8{height:50.636800pt;}
.h5{height:55.040000pt;}
.h6{height:57.523200pt;}
.h3{height:62.781250pt;}
.h9{height:66.750000pt;}
.ha{height:68.288000pt;}
.h4{height:82.560000pt;}
.h2{height:1122.548000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.241333pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.w3{width:793.760000pt;}
.w4{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:37.760000pt;}
.x2{left:71.840000pt;}
.x9{left:94.400000pt;}
.xb{left:117.600000pt;}
.xc{left:141.600000pt;}
.x7{left:148.800000pt;}
.x5{left:208.960000pt;}
.x6{left:215.200000pt;}
.x3{left:221.124480pt;}
.x8{left:240.640000pt;}
.xa{left:372.640000pt;}
.x4{left:392.320000pt;}
.xd{left:472.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;
}
