
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* 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("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #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("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -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(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_b8ebb7d4e49146e1969c9619.woff')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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('chunks/assets/font_0add6a58c6685a6ac02fa962.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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('chunks/assets/font_f726b3c205110b051d7e221c.woff')format("woff");}.ff3{font-family:ff3;line-height:0.922852;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('chunks/assets/font_ddd8e196497c3b2122f9ff4d.woff')format("woff");}.ff4{font-family:ff4;line-height:0.899902;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('chunks/assets/font_68a15d0166ec76d74d99fe68.woff')format("woff");}.ff5{font-family:ff5;line-height:1.082031;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:ff6;src:url('chunks/assets/font_95eaa686fae26381cd7b4647.woff')format("woff");}.ff6{font-family:ff6;line-height:0.849000;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:ff7;src:url('chunks/assets/font_cdc1c2538d48260396520b43.woff')format("woff");}.ff7{font-family:ff7;line-height:0.700000;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:ff8;src:url('chunks/assets/font_334ad29111821ea03d1ba101.woff')format("woff");}.ff8{font-family:ff8;line-height:0.902344;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:ff9;src:url('chunks/assets/font_53d87ab3bdb2a85f814a6f85.woff')format("woff");}.ff9{font-family:ff9;line-height:0.922852;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:181.200000px;}
.ls19{letter-spacing:-1.080000px;}
.ls20{letter-spacing:-0.864000px;}
.ls1d{letter-spacing:-0.648000px;}
.ls21{letter-spacing:-0.576000px;}
.ls1e{letter-spacing:-0.504000px;}
.ls1f{letter-spacing:-0.432000px;}
.lsb{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.288000px;}
.ls11{letter-spacing:-0.216000px;}
.ls17{letter-spacing:-0.144000px;}
.ls15{letter-spacing:-0.072000px;}
.ls8{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.072000px;}
.ls1b{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.216000px;}
.lsd{letter-spacing:0.288000px;}
.lse{letter-spacing:0.360000px;}
.ls1a{letter-spacing:0.432000px;}
.ls18{letter-spacing:0.504000px;}
.ls12{letter-spacing:0.576000px;}
.ls14{letter-spacing:0.648000px;}
.ls16{letter-spacing:0.720000px;}
.ls13{letter-spacing:0.864000px;}
.ls1c{letter-spacing:0.936000px;}
.ls1{letter-spacing:2.850000px;}
.lsc{letter-spacing:3.880800px;}
.ls4{letter-spacing:6.102000px;}
.ls9{letter-spacing:6.804000px;}
.ls3{letter-spacing:7.074000px;}
.ls2{letter-spacing:7.614000px;}
.ls0{letter-spacing:8.436000px;}
.ls7{letter-spacing:9.302400px;}
.ls6{letter-spacing:10.649241px;}
.ls5{letter-spacing:10.740000px;}
.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;}
}
.ws2{word-spacing:-20.232000px;}
.ws1{word-spacing:-18.867000px;}
.ws1f{word-spacing:-17.784000px;}
.ws14{word-spacing:-8.496000px;}
.ws9{word-spacing:-7.614000px;}
.ws6{word-spacing:-7.074000px;}
.ws7{word-spacing:-6.804000px;}
.ws5{word-spacing:-6.102000px;}
.ws2e{word-spacing:-0.936000px;}
.ws21{word-spacing:-0.864000px;}
.ws23{word-spacing:-0.720000px;}
.ws22{word-spacing:-0.648000px;}
.ws1e{word-spacing:-0.576000px;}
.ws26{word-spacing:-0.504000px;}
.ws2b{word-spacing:-0.432000px;}
.ws1b{word-spacing:-0.360000px;}
.ws19{word-spacing:-0.288000px;}
.ws17{word-spacing:-0.216000px;}
.ws2d{word-spacing:-0.144000px;}
.ws1d{word-spacing:-0.072000px;}
.ws3{word-spacing:0.000000px;}
.ws20{word-spacing:0.072000px;}
.ws25{word-spacing:0.144000px;}
.ws18{word-spacing:0.216000px;}
.ws11{word-spacing:0.288000px;}
.ws12{word-spacing:0.360000px;}
.ws2c{word-spacing:0.432000px;}
.ws33{word-spacing:0.576000px;}
.ws29{word-spacing:0.648000px;}
.wsd{word-spacing:1.440000px;}
.wsa{word-spacing:1.800000px;}
.ws32{word-spacing:2.592000px;}
.ws30{word-spacing:2.664000px;}
.ws2a{word-spacing:2.880000px;}
.ws31{word-spacing:2.952000px;}
.ws2f{word-spacing:3.312000px;}
.ws8{word-spacing:3.348000px;}
.ws4{word-spacing:3.780000px;}
.ws13{word-spacing:3.816000px;}
.ws15{word-spacing:4.200000px;}
.ws24{word-spacing:4.320000px;}
.wsb{word-spacing:4.464000px;}
.ws1a{word-spacing:4.608000px;}
.ws28{word-spacing:5.256000px;}
.ws27{word-spacing:5.472000px;}
.ws1c{word-spacing:6.696000px;}
.ws16{word-spacing:7.056000px;}
.wse{word-spacing:8.496000px;}
.ws10{word-spacing:8.856000px;}
.wsc{word-spacing:8.928000px;}
.wsf{word-spacing:9.720000px;}
.ws0{word-spacing:146.196000px;}
._e{margin-left:-948.820800px;}
._10{margin-left:-19.620000px;}
._4{margin-left:-7.614000px;}
._6{margin-left:-6.457800px;}
._5{margin-left:-5.070000px;}
._8{margin-left:-3.720600px;}
._3{margin-left:-2.676000px;}
._2{margin-left:-1.032000px;}
._0{width:1.818000px;}
._c{width:2.836800px;}
._1{width:4.212000px;}
._d{width:6.170400px;}
._b{width:7.374000px;}
._f{width:8.552400px;}
._7{width:9.564000px;}
._9{width:10.837800px;}
._a{width:12.121800px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:54.000000px;}
.fs1{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:72.000000px;}
.fs4{font-size:426.053400px;}
.y0{bottom:0.000000px;}
.y1{bottom:72.000000px;}
.y6a{bottom:117.000000px;}
.y47{bottom:122.040000px;}
.y22{bottom:122.198100px;}
.y8e{bottom:123.300000px;}
.y69{bottom:139.500000px;}
.y46{bottom:144.396000px;}
.y21{bottom:144.842100px;}
.y8d{bottom:146.250000px;}
.y68{bottom:162.000000px;}
.y45{bottom:166.752000px;}
.y20{bottom:167.486100px;}
.y8c{bottom:169.200000px;}
.y67{bottom:184.500000px;}
.y44{bottom:189.108000px;}
.y1f{bottom:190.130100px;}
.y8b{bottom:192.150000px;}
.y66{bottom:207.000000px;}
.y43{bottom:211.464000px;}
.y1e{bottom:212.774100px;}
.y8a{bottom:215.100000px;}
.y65{bottom:229.500000px;}
.y42{bottom:233.820000px;}
.y1d{bottom:235.418100px;}
.y89{bottom:238.050000px;}
.y64{bottom:252.000000px;}
.y41{bottom:256.176000px;}
.y1c{bottom:258.062100px;}
.y88{bottom:261.000000px;}
.y63{bottom:274.500000px;}
.y40{bottom:278.532000px;}
.y1b{bottom:280.706100px;}
.y87{bottom:283.950000px;}
.y62{bottom:297.000000px;}
.y3f{bottom:300.888000px;}
.y1a{bottom:303.350100px;}
.y92{bottom:304.500000px;}
.y86{bottom:306.900000px;}
.y61{bottom:319.500000px;}
.y3e{bottom:323.244000px;}
.y91{bottom:323.250000px;}
.y19{bottom:325.994100px;}
.y85{bottom:329.850000px;}
.y60{bottom:342.000000px;}
.y3d{bottom:345.600000px;}
.y18{bottom:348.638100px;}
.y84{bottom:352.800000px;}
.y90{bottom:360.750000px;}
.y5f{bottom:364.500000px;}
.y3c{bottom:367.956000px;}
.y17{bottom:371.282100px;}
.y83{bottom:375.750000px;}
.y5e{bottom:387.000000px;}
.y3b{bottom:390.312000px;}
.y8f{bottom:390.750000px;}
.y14{bottom:393.914100px;}
.y16{bottom:393.926100px;}
.y82{bottom:398.700000px;}
.y5d{bottom:409.500000px;}
.y3a{bottom:412.668000px;}
.y15{bottom:416.570100px;}
.y81{bottom:421.650000px;}
.y5c{bottom:432.000000px;}
.y39{bottom:435.024000px;}
.y80{bottom:444.600000px;}
.y5b{bottom:454.500000px;}
.y38{bottom:457.380000px;}
.y7f{bottom:467.550000px;}
.y5a{bottom:477.000000px;}
.y37{bottom:479.736000px;}
.y13{bottom:485.250000px;}
.y7e{bottom:490.500000px;}
.y59{bottom:499.500000px;}
.y36{bottom:502.092000px;}
.y12{bottom:507.450000px;}
.y7d{bottom:513.450000px;}
.y58{bottom:522.000000px;}
.y35{bottom:524.448000px;}
.y7c{bottom:536.400000px;}
.y57{bottom:544.500000px;}
.y34{bottom:546.804000px;}
.y7b{bottom:559.350000px;}
.y56{bottom:567.000000px;}
.y33{bottom:569.160000px;}
.y11{bottom:574.684500px;}
.y7a{bottom:582.300000px;}
.y55{bottom:589.500000px;}
.y32{bottom:591.516000px;}
.y10{bottom:597.189000px;}
.y79{bottom:605.250000px;}
.y54{bottom:612.000000px;}
.y31{bottom:613.872000px;}
.yf{bottom:619.086000px;}
.y78{bottom:628.200000px;}
.y53{bottom:634.500000px;}
.y30{bottom:636.228000px;}
.ye{bottom:640.983000px;}
.y77{bottom:651.150000px;}
.y52{bottom:657.000000px;}
.y2f{bottom:658.584000px;}
.yd{bottom:662.880000px;}
.y76{bottom:674.100000px;}
.y51{bottom:679.500000px;}
.y2e{bottom:680.940000px;}
.yc{bottom:684.777000px;}
.y75{bottom:697.050000px;}
.y50{bottom:702.000000px;}
.y2d{bottom:703.296000px;}
.yb{bottom:706.674000px;}
.y74{bottom:720.000000px;}
.y4f{bottom:724.500000px;}
.y2c{bottom:725.652000px;}
.ya{bottom:728.571000px;}
.y73{bottom:742.950000px;}
.y4e{bottom:747.000000px;}
.y2b{bottom:748.008000px;}
.y9{bottom:750.468000px;}
.y72{bottom:765.900000px;}
.y4d{bottom:769.500000px;}
.y2a{bottom:770.364000px;}
.y8{bottom:772.365000px;}
.y71{bottom:788.850000px;}
.y4c{bottom:792.000000px;}
.y29{bottom:792.720000px;}
.y7{bottom:794.262000px;}
.y70{bottom:811.800000px;}
.y4b{bottom:814.500000px;}
.y28{bottom:815.076000px;}
.y6{bottom:816.159000px;}
.y6f{bottom:834.750000px;}
.y4a{bottom:837.000000px;}
.y27{bottom:837.432000px;}
.y5{bottom:838.056000px;}
.y6e{bottom:857.700000px;}
.y49{bottom:859.500000px;}
.y26{bottom:859.788000px;}
.y4{bottom:859.953000px;}
.y6d{bottom:880.650000px;}
.y3{bottom:881.850000px;}
.y48{bottom:882.000000px;}
.y25{bottom:882.144000px;}
.y6c{bottom:903.600000px;}
.y24{bottom:904.500000px;}
.y2{bottom:926.250000px;}
.y6b{bottom:926.550000px;}
.y23{bottom:927.000000px;}
.h3{height:37.256836px;}
.h2{height:39.326660px;}
.ha{height:41.396484px;}
.h4{height:45.852539px;}
.h6{height:47.988281px;}
.h9{height:49.675781px;}
.h5{height:50.580000px;}
.h1{height:50.947266px;}
.h8{height:61.136719px;}
.h7{height:298.237380px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x1{left:67.500000px;}
.x5{left:82.387950px;}
.x3{left:97.263750px;}
.x4{left:111.169950px;}
.x7{left:112.500000px;}
.x8{left:127.386000px;}
.x9{left:180.531450px;}
.x2{left:348.129900px;}
.x6{left:625.781250px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:161.066667pt;}
.ls19{letter-spacing:-0.960000pt;}
.ls20{letter-spacing:-0.768000pt;}
.ls1d{letter-spacing:-0.576000pt;}
.ls21{letter-spacing:-0.512000pt;}
.ls1e{letter-spacing:-0.448000pt;}
.ls1f{letter-spacing:-0.384000pt;}
.lsb{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.256000pt;}
.ls11{letter-spacing:-0.192000pt;}
.ls17{letter-spacing:-0.128000pt;}
.ls15{letter-spacing:-0.064000pt;}
.ls8{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.064000pt;}
.ls1b{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.192000pt;}
.lsd{letter-spacing:0.256000pt;}
.lse{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:0.384000pt;}
.ls18{letter-spacing:0.448000pt;}
.ls12{letter-spacing:0.512000pt;}
.ls14{letter-spacing:0.576000pt;}
.ls16{letter-spacing:0.640000pt;}
.ls13{letter-spacing:0.768000pt;}
.ls1c{letter-spacing:0.832000pt;}
.ls1{letter-spacing:2.533333pt;}
.lsc{letter-spacing:3.449600pt;}
.ls4{letter-spacing:5.424000pt;}
.ls9{letter-spacing:6.048000pt;}
.ls3{letter-spacing:6.288000pt;}
.ls2{letter-spacing:6.768000pt;}
.ls0{letter-spacing:7.498667pt;}
.ls7{letter-spacing:8.268800pt;}
.ls6{letter-spacing:9.465992pt;}
.ls5{letter-spacing:9.546667pt;}
.ws2{word-spacing:-17.984000pt;}
.ws1{word-spacing:-16.770667pt;}
.ws1f{word-spacing:-15.808000pt;}
.ws14{word-spacing:-7.552000pt;}
.ws9{word-spacing:-6.768000pt;}
.ws6{word-spacing:-6.288000pt;}
.ws7{word-spacing:-6.048000pt;}
.ws5{word-spacing:-5.424000pt;}
.ws2e{word-spacing:-0.832000pt;}
.ws21{word-spacing:-0.768000pt;}
.ws23{word-spacing:-0.640000pt;}
.ws22{word-spacing:-0.576000pt;}
.ws1e{word-spacing:-0.512000pt;}
.ws26{word-spacing:-0.448000pt;}
.ws2b{word-spacing:-0.384000pt;}
.ws1b{word-spacing:-0.320000pt;}
.ws19{word-spacing:-0.256000pt;}
.ws17{word-spacing:-0.192000pt;}
.ws2d{word-spacing:-0.128000pt;}
.ws1d{word-spacing:-0.064000pt;}
.ws3{word-spacing:0.000000pt;}
.ws20{word-spacing:0.064000pt;}
.ws25{word-spacing:0.128000pt;}
.ws18{word-spacing:0.192000pt;}
.ws11{word-spacing:0.256000pt;}
.ws12{word-spacing:0.320000pt;}
.ws2c{word-spacing:0.384000pt;}
.ws33{word-spacing:0.512000pt;}
.ws29{word-spacing:0.576000pt;}
.wsd{word-spacing:1.280000pt;}
.wsa{word-spacing:1.600000pt;}
.ws32{word-spacing:2.304000pt;}
.ws30{word-spacing:2.368000pt;}
.ws2a{word-spacing:2.560000pt;}
.ws31{word-spacing:2.624000pt;}
.ws2f{word-spacing:2.944000pt;}
.ws8{word-spacing:2.976000pt;}
.ws4{word-spacing:3.360000pt;}
.ws13{word-spacing:3.392000pt;}
.ws15{word-spacing:3.733333pt;}
.ws24{word-spacing:3.840000pt;}
.wsb{word-spacing:3.968000pt;}
.ws1a{word-spacing:4.096000pt;}
.ws28{word-spacing:4.672000pt;}
.ws27{word-spacing:4.864000pt;}
.ws1c{word-spacing:5.952000pt;}
.ws16{word-spacing:6.272000pt;}
.wse{word-spacing:7.552000pt;}
.ws10{word-spacing:7.872000pt;}
.wsc{word-spacing:7.936000pt;}
.wsf{word-spacing:8.640000pt;}
.ws0{word-spacing:129.952000pt;}
._e{margin-left:-843.396267pt;}
._10{margin-left:-17.440000pt;}
._4{margin-left:-6.768000pt;}
._6{margin-left:-5.740267pt;}
._5{margin-left:-4.506667pt;}
._8{margin-left:-3.307200pt;}
._3{margin-left:-2.378667pt;}
._2{margin-left:-0.917333pt;}
._0{width:1.616000pt;}
._c{width:2.521600pt;}
._1{width:3.744000pt;}
._d{width:5.484800pt;}
._b{width:6.554667pt;}
._f{width:7.602133pt;}
._7{width:8.501333pt;}
._9{width:9.633600pt;}
._a{width:10.774933pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:64.000000pt;}
.fs4{font-size:378.714133pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:64.000000pt;}
.y6a{bottom:104.000000pt;}
.y47{bottom:108.480000pt;}
.y22{bottom:108.620533pt;}
.y8e{bottom:109.600000pt;}
.y69{bottom:124.000000pt;}
.y46{bottom:128.352000pt;}
.y21{bottom:128.748533pt;}
.y8d{bottom:130.000000pt;}
.y68{bottom:144.000000pt;}
.y45{bottom:148.224000pt;}
.y20{bottom:148.876533pt;}
.y8c{bottom:150.400000pt;}
.y67{bottom:164.000000pt;}
.y44{bottom:168.096000pt;}
.y1f{bottom:169.004533pt;}
.y8b{bottom:170.800000pt;}
.y66{bottom:184.000000pt;}
.y43{bottom:187.968000pt;}
.y1e{bottom:189.132533pt;}
.y8a{bottom:191.200000pt;}
.y65{bottom:204.000000pt;}
.y42{bottom:207.840000pt;}
.y1d{bottom:209.260533pt;}
.y89{bottom:211.600000pt;}
.y64{bottom:224.000000pt;}
.y41{bottom:227.712000pt;}
.y1c{bottom:229.388533pt;}
.y88{bottom:232.000000pt;}
.y63{bottom:244.000000pt;}
.y40{bottom:247.584000pt;}
.y1b{bottom:249.516533pt;}
.y87{bottom:252.400000pt;}
.y62{bottom:264.000000pt;}
.y3f{bottom:267.456000pt;}
.y1a{bottom:269.644533pt;}
.y92{bottom:270.666667pt;}
.y86{bottom:272.800000pt;}
.y61{bottom:284.000000pt;}
.y3e{bottom:287.328000pt;}
.y91{bottom:287.333333pt;}
.y19{bottom:289.772533pt;}
.y85{bottom:293.200000pt;}
.y60{bottom:304.000000pt;}
.y3d{bottom:307.200000pt;}
.y18{bottom:309.900533pt;}
.y84{bottom:313.600000pt;}
.y90{bottom:320.666667pt;}
.y5f{bottom:324.000000pt;}
.y3c{bottom:327.072000pt;}
.y17{bottom:330.028533pt;}
.y83{bottom:334.000000pt;}
.y5e{bottom:344.000000pt;}
.y3b{bottom:346.944000pt;}
.y8f{bottom:347.333333pt;}
.y14{bottom:350.145867pt;}
.y16{bottom:350.156533pt;}
.y82{bottom:354.400000pt;}
.y5d{bottom:364.000000pt;}
.y3a{bottom:366.816000pt;}
.y15{bottom:370.284533pt;}
.y81{bottom:374.800000pt;}
.y5c{bottom:384.000000pt;}
.y39{bottom:386.688000pt;}
.y80{bottom:395.200000pt;}
.y5b{bottom:404.000000pt;}
.y38{bottom:406.560000pt;}
.y7f{bottom:415.600000pt;}
.y5a{bottom:424.000000pt;}
.y37{bottom:426.432000pt;}
.y13{bottom:431.333333pt;}
.y7e{bottom:436.000000pt;}
.y59{bottom:444.000000pt;}
.y36{bottom:446.304000pt;}
.y12{bottom:451.066667pt;}
.y7d{bottom:456.400000pt;}
.y58{bottom:464.000000pt;}
.y35{bottom:466.176000pt;}
.y7c{bottom:476.800000pt;}
.y57{bottom:484.000000pt;}
.y34{bottom:486.048000pt;}
.y7b{bottom:497.200000pt;}
.y56{bottom:504.000000pt;}
.y33{bottom:505.920000pt;}
.y11{bottom:510.830667pt;}
.y7a{bottom:517.600000pt;}
.y55{bottom:524.000000pt;}
.y32{bottom:525.792000pt;}
.y10{bottom:530.834667pt;}
.y79{bottom:538.000000pt;}
.y54{bottom:544.000000pt;}
.y31{bottom:545.664000pt;}
.yf{bottom:550.298667pt;}
.y78{bottom:558.400000pt;}
.y53{bottom:564.000000pt;}
.y30{bottom:565.536000pt;}
.ye{bottom:569.762667pt;}
.y77{bottom:578.800000pt;}
.y52{bottom:584.000000pt;}
.y2f{bottom:585.408000pt;}
.yd{bottom:589.226667pt;}
.y76{bottom:599.200000pt;}
.y51{bottom:604.000000pt;}
.y2e{bottom:605.280000pt;}
.yc{bottom:608.690667pt;}
.y75{bottom:619.600000pt;}
.y50{bottom:624.000000pt;}
.y2d{bottom:625.152000pt;}
.yb{bottom:628.154667pt;}
.y74{bottom:640.000000pt;}
.y4f{bottom:644.000000pt;}
.y2c{bottom:645.024000pt;}
.ya{bottom:647.618667pt;}
.y73{bottom:660.400000pt;}
.y4e{bottom:664.000000pt;}
.y2b{bottom:664.896000pt;}
.y9{bottom:667.082667pt;}
.y72{bottom:680.800000pt;}
.y4d{bottom:684.000000pt;}
.y2a{bottom:684.768000pt;}
.y8{bottom:686.546667pt;}
.y71{bottom:701.200000pt;}
.y4c{bottom:704.000000pt;}
.y29{bottom:704.640000pt;}
.y7{bottom:706.010667pt;}
.y70{bottom:721.600000pt;}
.y4b{bottom:724.000000pt;}
.y28{bottom:724.512000pt;}
.y6{bottom:725.474667pt;}
.y6f{bottom:742.000000pt;}
.y4a{bottom:744.000000pt;}
.y27{bottom:744.384000pt;}
.y5{bottom:744.938667pt;}
.y6e{bottom:762.400000pt;}
.y49{bottom:764.000000pt;}
.y26{bottom:764.256000pt;}
.y4{bottom:764.402667pt;}
.y6d{bottom:782.800000pt;}
.y3{bottom:783.866667pt;}
.y48{bottom:784.000000pt;}
.y25{bottom:784.128000pt;}
.y6c{bottom:803.200000pt;}
.y24{bottom:804.000000pt;}
.y2{bottom:823.333333pt;}
.y6b{bottom:823.600000pt;}
.y23{bottom:824.000000pt;}
.h3{height:33.117188pt;}
.h2{height:34.957031pt;}
.ha{height:36.796875pt;}
.h4{height:40.757812pt;}
.h6{height:42.656250pt;}
.h9{height:44.156250pt;}
.h5{height:44.960000pt;}
.h1{height:45.286458pt;}
.h8{height:54.343750pt;}
.h7{height:265.099893pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.000000pt;}
.x5{left:73.233733pt;}
.x3{left:86.456667pt;}
.x4{left:98.817733pt;}
.x7{left:100.000000pt;}
.x8{left:113.232000pt;}
.x9{left:160.472400pt;}
.x2{left:309.448800pt;}
.x6{left:556.250000pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  