
    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_80fe2430c4ffa6f3dc718e04.woff')format("woff");}.ff1{font-family:ff1;line-height:0.942000;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_7e37e360aea3d75b01a61ec5.woff')format("woff");}.ff2{font-family:ff2;line-height:0.919000;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_c3bea511dacafa80f1e717e4.woff')format("woff");}.ff3{font-family:ff3;line-height:0.823000;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_d43f4256bef1238f45d6b355.woff')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_5f53e66fe2894923269a993e.woff')format("woff");}.ff5{font-family:ff5;line-height:0.966309;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.v3{vertical-align:-17.762636px;}
.v4{vertical-align:-8.956456px;}
.v1{vertical-align:-3.765722px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.246101px;}
.ls4{letter-spacing:-0.285282px;}
.ls2{letter-spacing:-0.256754px;}
.ls3{letter-spacing:-0.228226px;}
.ls5{letter-spacing:-0.028528px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.513508px;}
.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:-19.099080px;}
.ws9{word-spacing:-9.249293px;}
.ws8{word-spacing:-7.927814px;}
.ws2{word-spacing:-6.047978px;}
.ws1{word-spacing:-0.042793px;}
.ws10{word-spacing:0.000000px;}
.ws14{word-spacing:0.028528px;}
.ws12{word-spacing:0.228226px;}
.ws11{word-spacing:0.256754px;}
.ws13{word-spacing:0.285282px;}
.ws4{word-spacing:18.001294px;}
.ws5{word-spacing:66.560822px;}
.wsc{word-spacing:66.566822px;}
.wsa{word-spacing:101.327378px;}
.wsd{word-spacing:103.399420px;}
.ws6{word-spacing:114.277643px;}
.ws3{word-spacing:519.127655px;}
.ws7{word-spacing:544.436186px;}
.wse{word-spacing:544.455709px;}
.wsb{word-spacing:544.458709px;}
.wsf{word-spacing:985.560000px;}
._0{margin-left:-8.918910px;}
._5{margin-left:-3.274724px;}
._1{margin-left:-1.261260px;}
._3{width:1.084072px;}
._b{width:12.267126px;}
._4{width:31.040772px;}
._8{width:50.209632px;}
._9{width:57.493195px;}
._a{width:58.825148px;}
._f{width:114.029899px;}
._11{width:116.146985px;}
._e{width:123.061301px;}
._10{width:125.155865px;}
._c{width:136.056610px;}
._d{width:460.245451px;}
._6{width:478.024538px;}
._2{width:501.440171px;}
._7{width:537.813626px;}
._12{width:1006.500000px;}
.fc7{color:transparent;}
.fc5{color:rgb(21,48,87);}
.fc3{color:rgb(73,80,87);}
.fc6{color:rgb(68,68,68);}
.fc4{color:rgb(0,0,0);}
.fc2{color:rgb(51,51,51);}
.fc1{color:rgb(33,37,41);}
.fc0{color:rgb(63,106,41);}
.fs5{font-size:22.522200px;}
.fs7{font-size:26.276400px;}
.fs1{font-size:28.528200px;}
.fs6{font-size:31.906800px;}
.fs3{font-size:35.660400px;}
.fs2{font-size:42.792600px;}
.fs4{font-size:57.057000px;}
.fs8{font-size:60.000000px;}
.fs0{font-size:90.090000px;}
.y0{bottom:0.000000px;}
.y16{bottom:5.632050px;}
.y34{bottom:5.632500px;}
.y37{bottom:6.098700px;}
.ye{bottom:6.099300px;}
.y22{bottom:6.099750px;}
.y49{bottom:6.100350px;}
.y12{bottom:6.100500px;}
.y3a{bottom:6.100650px;}
.y1e{bottom:6.100800px;}
.y42{bottom:6.100950px;}
.ya{bottom:6.101100px;}
.y1a{bottom:6.101250px;}
.y30{bottom:6.101700px;}
.y26{bottom:6.102000px;}
.y4d{bottom:6.569100px;}
.y32{bottom:6.570000px;}
.y14{bottom:6.570300px;}
.y3d{bottom:6.570750px;}
.yc{bottom:7.037550px;}
.y40{bottom:7.038450px;}
.y10{bottom:7.038600px;}
.y20{bottom:7.038750px;}
.y44{bottom:7.038900px;}
.y1c{bottom:7.039050px;}
.y2e{bottom:7.039200px;}
.y8{bottom:7.039350px;}
.y18{bottom:7.039500px;}
.y5{bottom:7.039650px;}
.y28{bottom:7.039800px;}
.y2b{bottom:7.040250px;}
.y47{bottom:7.040700px;}
.y76{bottom:94.546650px;}
.y4c{bottom:111.594000px;}
.y4e{bottom:118.163100px;}
.y4a{bottom:128.016000px;}
.y4b{bottom:135.055650px;}
.y68{bottom:141.234150px;}
.y46{bottom:144.907500px;}
.y48{bottom:151.948200px;}
.y43{bottom:161.800500px;}
.y45{bottom:168.839400px;}
.y3f{bottom:178.692000px;}
.y41{bottom:185.730450px;}
.y3c{bottom:195.583500px;}
.y3e{bottom:202.154250px;}
.y67{bottom:212.007000px;}
.y69{bottom:225.145050px;}
.y60{bottom:242.323200px;}
.y61{bottom:252.475082px;}
.y70{bottom:270.149378px;}
.y6b{bottom:270.588561px;}
.y62{bottom:273.927477px;}
.y6a{bottom:279.999000px;}
.y71{bottom:287.823675px;}
.y6c{bottom:288.702040px;}
.y63{bottom:295.385503px;}
.y72{bottom:305.497971px;}
.y6d{bottom:306.815520px;}
.y64{bottom:316.837899px;}
.y73{bottom:323.172267px;}
.y6e{bottom:324.928999px;}
.y66{bottom:329.692350px;}
.y65{bottom:338.295925px;}
.y74{bottom:340.846564px;}
.y6f{bottom:343.048109px;}
.y3b{bottom:379.048800px;}
.y38{bottom:412.831500px;}
.y39{bottom:419.871150px;}
.y35{bottom:429.724500px;}
.y36{bottom:436.763700px;}
.y31{bottom:446.614500px;}
.y33{bottom:453.184500px;}
.y2d{bottom:463.038000px;}
.y2f{bottom:470.077200px;}
.y2a{bottom:479.929500px;}
.y2c{bottom:486.969750px;}
.y27{bottom:496.821000px;}
.y29{bottom:503.860800px;}
.y24{bottom:513.712500px;}
.y25{bottom:520.752000px;}
.y23{bottom:539.991150px;}
.y1f{bottom:573.304500px;}
.y21{bottom:580.343250px;}
.y1b{bottom:590.196000px;}
.y1d{bottom:597.235050px;}
.y17{bottom:607.087500px;}
.y19{bottom:614.127000px;}
.y13{bottom:623.979000px;}
.y15{bottom:630.549300px;}
.yf{bottom:640.402500px;}
.y11{bottom:647.441100px;}
.yb{bottom:657.295500px;}
.yd{bottom:664.333050px;}
.y7{bottom:674.185500px;}
.y9{bottom:681.224850px;}
.y4{bottom:691.077000px;}
.y6{bottom:698.116650px;}
.y3{bottom:717.355200px;}
.y5f{bottom:754.423050px;}
.y5e{bottom:766.623000px;}
.y2{bottom:813.075450px;}
.y1{bottom:825.275400px;}
.y59{bottom:867.974100px;}
.y58{bottom:898.477883px;}
.y57{bottom:909.268675px;}
.y56{bottom:920.059467px;}
.y55{bottom:930.850258px;}
.y52{bottom:930.853032px;}
.y51{bottom:941.643824px;}
.y54{bottom:941.650956px;}
.y50{bottom:951.963900px;}
.y53{bottom:951.971032px;}
.y4f{bottom:967.917450px;}
.y5d{bottom:988.563000px;}
.y5c{bottom:1001.231700px;}
.y5b{bottom:1028.840400px;}
.y5a{bottom:1067.157000px;}
.y75{bottom:1086.931650px;}
.h8{height:15.952500px;}
.h7{height:15.954000px;}
.h4{height:16.422000px;}
.h6{height:16.423500px;}
.hb{height:17.111593px;}
.hc{height:18.357694px;}
.hf{height:19.963905px;}
.h5{height:19.969740px;}
.h2{height:20.568832px;}
.he{height:24.241690px;}
.h9{height:25.711148px;}
.h3{height:30.382746px;}
.ha{height:41.539056px;}
.h10{height:43.681641px;}
.h1{height:64.954890px;}
.hd{height:146.865000px;}
.h0{height:1188.000000px;}
.w4{width:22.522500px;}
.w6{width:42.229500px;}
.w2{width:60.058500px;}
.w8{width:60.060000px;}
.w1{width:155.781000px;}
.w5{width:173.610000px;}
.wa{width:173.611500px;}
.w3{width:193.317000px;}
.w9{width:193.318500px;}
.w7{width:215.839500px;}
.wb{width:215.841000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xa{left:4.458150px;}
.xb{left:8.021400px;}
.xd{left:24.165150px;}
.xf{left:31.291650px;}
.x8{left:41.994150px;}
.x6{left:56.253600px;}
.x1c{left:71.452950px;}
.x4a{left:79.152900px;}
.x13{left:83.663850px;}
.x3{left:90.702450px;}
.x7{left:94.182900px;}
.x4{left:95.395050px;}
.xe{left:96.450450px;}
.x10{left:99.419700px;}
.x14{left:107.140200px;}
.x15{left:108.606450px;}
.x1d{left:110.214900px;}
.x12{left:112.506600px;}
.x1b{left:116.139480px;}
.x1a{left:119.714879px;}
.x19{left:123.290278px;}
.x18{left:126.685500px;}
.x11{left:148.374091px;}
.x2{left:156.143550px;}
.x1{left:170.645550px;}
.x17{left:220.338900px;}
.x16{left:235.155750px;}
.x5{left:246.718500px;}
.xc{left:264.547500px;}
.x9{left:284.254500px;}
.x2a{left:347.758350px;}
.x20{left:354.796800px;}
.x23{left:358.277400px;}
.x21{left:359.489550px;}
.x26{left:360.544950px;}
.x27{left:363.514200px;}
.x2c{left:372.700950px;}
.x2b{left:374.849100px;}
.x29{left:376.601100px;}
.x32{left:380.233980px;}
.x31{left:383.809379px;}
.x30{left:387.384778px;}
.x2f{left:390.780000px;}
.x28{left:412.468591px;}
.x1f{left:420.238050px;}
.x1e{left:435.429150px;}
.x4b{left:438.852900px;}
.x2e{left:484.434150px;}
.x2d{left:502.255350px;}
.x22{left:510.811500px;}
.x25{left:528.642000px;}
.x24{left:548.349000px;}
.x3f{left:610.352100px;}
.x35{left:617.392050px;}
.x38{left:620.872500px;}
.x36{left:622.085400px;}
.x3b{left:623.140200px;}
.x3c{left:626.107950px;}
.x40{left:633.426300px;}
.x41{left:635.295450px;}
.x49{left:636.903750px;}
.x3e{left:639.194850px;}
.x47{left:642.828480px;}
.x46{left:646.403879px;}
.x45{left:649.984909px;}
.x44{left:653.374500px;}
.x3d{left:675.062341px;}
.x34{left:682.832550px;}
.x33{left:695.216250px;}
.x48{left:697.826700px;}
.x43{left:747.027900px;}
.x42{left:765.628350px;}
.x37{left:773.407500px;}
.x3a{left:791.236500px;}
.x39{left:810.943500px;}
@media print{
.v3{vertical-align:-15.789010pt;}
.v4{vertical-align:-7.961294pt;}
.v1{vertical-align:-3.347309pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.107645pt;}
.ls4{letter-spacing:-0.253584pt;}
.ls2{letter-spacing:-0.228226pt;}
.ls3{letter-spacing:-0.202867pt;}
.ls5{letter-spacing:-0.025358pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.456451pt;}
.ws0{word-spacing:-16.976960pt;}
.ws9{word-spacing:-8.221594pt;}
.ws8{word-spacing:-7.046946pt;}
.ws2{word-spacing:-5.375981pt;}
.ws1{word-spacing:-0.038038pt;}
.ws10{word-spacing:0.000000pt;}
.ws14{word-spacing:0.025358pt;}
.ws12{word-spacing:0.202867pt;}
.ws11{word-spacing:0.228226pt;}
.ws13{word-spacing:0.253584pt;}
.ws4{word-spacing:16.001150pt;}
.ws5{word-spacing:59.165175pt;}
.wsc{word-spacing:59.170508pt;}
.wsa{word-spacing:90.068780pt;}
.wsd{word-spacing:91.910596pt;}
.ws6{word-spacing:101.580127pt;}
.ws3{word-spacing:461.446805pt;}
.ws7{word-spacing:483.943277pt;}
.wse{word-spacing:483.960630pt;}
.wsb{word-spacing:483.963297pt;}
.wsf{word-spacing:876.053333pt;}
._0{margin-left:-7.927920pt;}
._5{margin-left:-2.910866pt;}
._1{margin-left:-1.121120pt;}
._3{width:0.963619pt;}
._b{width:10.904112pt;}
._4{width:27.591797pt;}
._8{width:44.630784pt;}
._9{width:51.105062pt;}
._a{width:52.289021pt;}
._f{width:101.359910pt;}
._11{width:103.241765pt;}
._e{width:109.387823pt;}
._10{width:111.249658pt;}
._c{width:120.939209pt;}
._d{width:409.107067pt;}
._6{width:424.910701pt;}
._2{width:445.724597pt;}
._7{width:478.056557pt;}
._12{width:894.666667pt;}
.fs5{font-size:20.019733pt;}
.fs7{font-size:23.356800pt;}
.fs1{font-size:25.358400pt;}
.fs6{font-size:28.361600pt;}
.fs3{font-size:31.698133pt;}
.fs2{font-size:38.037867pt;}
.fs4{font-size:50.717333pt;}
.fs8{font-size:53.333333pt;}
.fs0{font-size:80.080000pt;}
.y0{bottom:0.000000pt;}
.y16{bottom:5.006267pt;}
.y34{bottom:5.006667pt;}
.y37{bottom:5.421067pt;}
.ye{bottom:5.421600pt;}
.y22{bottom:5.422000pt;}
.y49{bottom:5.422533pt;}
.y12{bottom:5.422667pt;}
.y3a{bottom:5.422800pt;}
.y1e{bottom:5.422933pt;}
.y42{bottom:5.423067pt;}
.ya{bottom:5.423200pt;}
.y1a{bottom:5.423333pt;}
.y30{bottom:5.423733pt;}
.y26{bottom:5.424000pt;}
.y4d{bottom:5.839200pt;}
.y32{bottom:5.840000pt;}
.y14{bottom:5.840267pt;}
.y3d{bottom:5.840667pt;}
.yc{bottom:6.255600pt;}
.y40{bottom:6.256400pt;}
.y10{bottom:6.256533pt;}
.y20{bottom:6.256667pt;}
.y44{bottom:6.256800pt;}
.y1c{bottom:6.256933pt;}
.y2e{bottom:6.257067pt;}
.y8{bottom:6.257200pt;}
.y18{bottom:6.257333pt;}
.y5{bottom:6.257467pt;}
.y28{bottom:6.257600pt;}
.y2b{bottom:6.258000pt;}
.y47{bottom:6.258400pt;}
.y76{bottom:84.041467pt;}
.y4c{bottom:99.194667pt;}
.y4e{bottom:105.033867pt;}
.y4a{bottom:113.792000pt;}
.y4b{bottom:120.049467pt;}
.y68{bottom:125.541467pt;}
.y46{bottom:128.806667pt;}
.y48{bottom:135.065067pt;}
.y43{bottom:143.822667pt;}
.y45{bottom:150.079467pt;}
.y3f{bottom:158.837333pt;}
.y41{bottom:165.093733pt;}
.y3c{bottom:173.852000pt;}
.y3e{bottom:179.692667pt;}
.y67{bottom:188.450667pt;}
.y69{bottom:200.128933pt;}
.y60{bottom:215.398400pt;}
.y61{bottom:224.422295pt;}
.y70{bottom:240.132781pt;}
.y6b{bottom:240.523165pt;}
.y62{bottom:243.491091pt;}
.y6a{bottom:248.888000pt;}
.y71{bottom:255.843266pt;}
.y6c{bottom:256.624036pt;}
.y63{bottom:262.564892pt;}
.y72{bottom:271.553752pt;}
.y6d{bottom:272.724906pt;}
.y64{bottom:281.633688pt;}
.y73{bottom:287.264238pt;}
.y6e{bottom:288.825777pt;}
.y66{bottom:293.059867pt;}
.y65{bottom:300.707489pt;}
.y74{bottom:302.974723pt;}
.y6f{bottom:304.931652pt;}
.y3b{bottom:336.932267pt;}
.y38{bottom:366.961333pt;}
.y39{bottom:373.218800pt;}
.y35{bottom:381.977333pt;}
.y36{bottom:388.234400pt;}
.y31{bottom:396.990667pt;}
.y33{bottom:402.830667pt;}
.y2d{bottom:411.589333pt;}
.y2f{bottom:417.846400pt;}
.y2a{bottom:426.604000pt;}
.y2c{bottom:432.862000pt;}
.y27{bottom:441.618667pt;}
.y29{bottom:447.876267pt;}
.y24{bottom:456.633333pt;}
.y25{bottom:462.890667pt;}
.y23{bottom:479.992133pt;}
.y1f{bottom:509.604000pt;}
.y21{bottom:515.860667pt;}
.y1b{bottom:524.618667pt;}
.y1d{bottom:530.875600pt;}
.y17{bottom:539.633333pt;}
.y19{bottom:545.890667pt;}
.y13{bottom:554.648000pt;}
.y15{bottom:560.488267pt;}
.yf{bottom:569.246667pt;}
.y11{bottom:575.503200pt;}
.yb{bottom:584.262667pt;}
.yd{bottom:590.518267pt;}
.y7{bottom:599.276000pt;}
.y9{bottom:605.533200pt;}
.y4{bottom:614.290667pt;}
.y6{bottom:620.548133pt;}
.y3{bottom:637.649067pt;}
.y5f{bottom:670.598267pt;}
.y5e{bottom:681.442667pt;}
.y2{bottom:722.733733pt;}
.y1{bottom:733.578133pt;}
.y59{bottom:771.532533pt;}
.y58{bottom:798.647007pt;}
.y57{bottom:808.238822pt;}
.y56{bottom:817.830637pt;}
.y55{bottom:827.422452pt;}
.y52{bottom:827.424917pt;}
.y51{bottom:837.016732pt;}
.y54{bottom:837.023072pt;}
.y50{bottom:846.190133pt;}
.y53{bottom:846.196473pt;}
.y4f{bottom:860.371067pt;}
.y5d{bottom:878.722667pt;}
.y5c{bottom:889.983733pt;}
.y5b{bottom:914.524800pt;}
.y5a{bottom:948.584000pt;}
.y75{bottom:966.161467pt;}
.h8{height:14.180000pt;}
.h7{height:14.181333pt;}
.h4{height:14.597333pt;}
.h6{height:14.598667pt;}
.hb{height:15.210305pt;}
.hc{height:16.317951pt;}
.hf{height:17.745694pt;}
.h5{height:17.750880pt;}
.h2{height:18.283406pt;}
.he{height:21.548169pt;}
.h9{height:22.854354pt;}
.h3{height:27.006885pt;}
.ha{height:36.923605pt;}
.h10{height:38.828125pt;}
.h1{height:57.737680pt;}
.hd{height:130.546667pt;}
.h0{height:1056.000000pt;}
.w4{width:20.020000pt;}
.w6{width:37.537333pt;}
.w2{width:53.385333pt;}
.w8{width:53.386667pt;}
.w1{width:138.472000pt;}
.w5{width:154.320000pt;}
.wa{width:154.321333pt;}
.w3{width:171.837333pt;}
.w9{width:171.838667pt;}
.w7{width:191.857333pt;}
.wb{width:191.858667pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xa{left:3.962800pt;}
.xb{left:7.130133pt;}
.xd{left:21.480133pt;}
.xf{left:27.814800pt;}
.x8{left:37.328133pt;}
.x6{left:50.003200pt;}
.x1c{left:63.513733pt;}
.x4a{left:70.358133pt;}
.x13{left:74.367867pt;}
.x3{left:80.624400pt;}
.x7{left:83.718133pt;}
.x4{left:84.795600pt;}
.xe{left:85.733733pt;}
.x10{left:88.373067pt;}
.x14{left:95.235733pt;}
.x15{left:96.539067pt;}
.x1d{left:97.968800pt;}
.x12{left:100.005867pt;}
.x1b{left:103.235093pt;}
.x1a{left:106.413226pt;}
.x19{left:109.591359pt;}
.x18{left:112.609333pt;}
.x11{left:131.888081pt;}
.x2{left:138.794267pt;}
.x1{left:151.684933pt;}
.x17{left:195.856800pt;}
.x16{left:209.027333pt;}
.x5{left:219.305333pt;}
.xc{left:235.153333pt;}
.x9{left:252.670667pt;}
.x2a{left:309.118533pt;}
.x20{left:315.374933pt;}
.x23{left:318.468800pt;}
.x21{left:319.546267pt;}
.x26{left:320.484400pt;}
.x27{left:323.123733pt;}
.x2c{left:331.289733pt;}
.x2b{left:333.199200pt;}
.x29{left:334.756533pt;}
.x32{left:337.985760pt;}
.x31{left:341.163893pt;}
.x30{left:344.342025pt;}
.x2f{left:347.360000pt;}
.x28{left:366.638748pt;}
.x1f{left:373.544933pt;}
.x1e{left:387.048133pt;}
.x4b{left:390.091467pt;}
.x2e{left:430.608133pt;}
.x2d{left:446.449200pt;}
.x22{left:454.054667pt;}
.x25{left:469.904000pt;}
.x24{left:487.421333pt;}
.x3f{left:542.535200pt;}
.x35{left:548.792933pt;}
.x38{left:551.886667pt;}
.x36{left:552.964800pt;}
.x3b{left:553.902400pt;}
.x3c{left:556.540400pt;}
.x40{left:563.045600pt;}
.x41{left:564.707067pt;}
.x49{left:566.136667pt;}
.x3e{left:568.173200pt;}
.x47{left:571.403093pt;}
.x46{left:574.581226pt;}
.x45{left:577.764363pt;}
.x44{left:580.777333pt;}
.x3d{left:600.055414pt;}
.x34{left:606.962267pt;}
.x33{left:617.970000pt;}
.x48{left:620.290400pt;}
.x43{left:664.024800pt;}
.x42{left:680.558533pt;}
.x37{left:687.473333pt;}
.x3a{left:703.321333pt;}
.x39{left:720.838667pt;}
}




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