
    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_f5d827285a5160f74b4c00ad.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_e866fb2fd2dc6e48c94d4013.woff2')format("woff");}.ff2{font-family:ff2;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;}
.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);}
.v2{vertical-align:-17.699827px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:39.600000px;}
.lsa{letter-spacing:-0.144000px;}
.ls7{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.825120px;}
.lsc{letter-spacing:0.984000px;}
.ls3{letter-spacing:1.002000px;}
.ls11{letter-spacing:1.014000px;}
.ls15{letter-spacing:1.038000px;}
.ls14{letter-spacing:1.074000px;}
.ls10{letter-spacing:1.314000px;}
.lsf{letter-spacing:1.500000px;}
.ls2{letter-spacing:1.572000px;}
.ls16{letter-spacing:1.590000px;}
.ls9{letter-spacing:1.596000px;}
.ls8{letter-spacing:1.620000px;}
.ls17{letter-spacing:1.656000px;}
.lsd{letter-spacing:1.728000px;}
.ls1{letter-spacing:1.752000px;}
.lsb{letter-spacing:1.758000px;}
.ls13{letter-spacing:1.794000px;}
.lse{letter-spacing:1.806000px;}
.ls12{letter-spacing:2.526000px;}
.ls5{letter-spacing:41.015520px;}
.ls6{letter-spacing:71.513280px;}
.ls4{letter-spacing:78.601680px;}
.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;}
}
.ws33{word-spacing:-114.959520px;}
.ws0{word-spacing:-97.488000px;}
.ws25{word-spacing:-54.185760px;}
.ws2c{word-spacing:-37.913760px;}
.ws36{word-spacing:-17.928000px;}
.ws30{word-spacing:-0.820080px;}
.ws38{word-spacing:0.000000px;}
.ws1a{word-spacing:0.401040px;}
.ws2{word-spacing:0.529680px;}
.ws18{word-spacing:0.835920px;}
.ws6{word-spacing:0.987120px;}
.ws4{word-spacing:1.209360px;}
.ws2f{word-spacing:2.773440px;}
.ws2e{word-spacing:3.005040px;}
.ws29{word-spacing:3.079440px;}
.ws2a{word-spacing:3.094560px;}
.ws31{word-spacing:3.131280px;}
.ws34{word-spacing:3.215520px;}
.ws2d{word-spacing:3.304800px;}
.ws2b{word-spacing:3.349440px;}
.ws37{word-spacing:3.384000px;}
.ws35{word-spacing:3.660480px;}
.ws1b{word-spacing:3.982320px;}
.ws7{word-spacing:3.983040px;}
.ws1{word-spacing:4.114800px;}
.ws3{word-spacing:4.489200px;}
.ws32{word-spacing:4.515840px;}
.ws17{word-spacing:4.543200px;}
.ws19{word-spacing:4.630320px;}
.ws9{word-spacing:5.649312px;}
.ws5{word-spacing:6.051600px;}
.wsd{word-spacing:6.249312px;}
.wsb{word-spacing:6.685152px;}
.ws8{word-spacing:8.327520px;}
.wse{word-spacing:8.707680px;}
.wsc{word-spacing:9.032832px;}
.wsa{word-spacing:9.315936px;}
.ws10{word-spacing:20.088720px;}
.ws12{word-spacing:21.420720px;}
.ws14{word-spacing:21.808080px;}
.ws15{word-spacing:22.241280px;}
.ws11{word-spacing:24.354720px;}
.ws13{word-spacing:25.893360px;}
.wsf{word-spacing:26.444880px;}
.ws16{word-spacing:26.639280px;}
.ws20{word-spacing:55.121040px;}
.ws24{word-spacing:55.675920px;}
.ws1c{word-spacing:55.806480px;}
.ws27{word-spacing:55.841040px;}
.ws1e{word-spacing:57.281040px;}
.ws22{word-spacing:57.867120px;}
.ws1f{word-spacing:59.019120px;}
.ws21{word-spacing:59.422320px;}
.ws1d{word-spacing:59.463360px;}
.ws26{word-spacing:60.184080px;}
.ws28{word-spacing:60.815520px;}
.ws23{word-spacing:63.191520px;}
._16{margin-left:-71.128800px;}
._3{margin-left:-1.185840px;}
._1{width:1.054080px;}
._0{width:2.503440px;}
._2{width:4.034160px;}
._4{width:5.423520px;}
._7{width:6.714720px;}
._13{width:7.962240px;}
._6{width:9.125040px;}
._5{width:32.709360px;}
._15{width:42.703920px;}
._14{width:43.995360px;}
._12{width:58.458240px;}
._9{width:59.851440px;}
._b{width:60.944160px;}
._a{width:62.063040px;}
._d{width:64.314480px;}
._c{width:65.741760px;}
._e{width:81.082800px;}
._8{width:96.348000px;}
._11{width:115.100640px;}
._f{width:116.238240px;}
._10{width:117.973920px;}
._17{width:1551.844801px;}
.fc1{color:rgb(167,198,55);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fs1{font-size:87.840000px;}
.fs9{font-size:120.240000px;}
.fs0{font-size:131.760000px;}
.fs7{font-size:144.000000px;}
.fs5{font-size:167.760000px;}
.fs8{font-size:192.240000px;}
.fs3{font-size:239.760000px;}
.fs4{font-size:239.904000px;}
.fs2{font-size:432.000000px;}
.y0{bottom:0.000000px;}
.y22{bottom:901.980000px;}
.y1c{bottom:1094.505000px;}
.y21{bottom:1314.720000px;}
.y20{bottom:1450.440000px;}
.y23{bottom:1489.785000px;}
.y19{bottom:1587.315000px;}
.y1a{bottom:1591.665000px;}
.y1d{bottom:1594.110000px;}
.y1f{bottom:1607.865000px;}
.y28{bottom:1621.155000px;}
.y25{bottom:1627.095000px;}
.y27{bottom:1628.175000px;}
.y1e{bottom:1687.935000px;}
.y1b{bottom:1689.735000px;}
.y18{bottom:1691.565000px;}
.y12{bottom:2635.485000px;}
.y15{bottom:2652.480000px;}
.y17{bottom:2669.970000px;}
.y26{bottom:2677.965000px;}
.y11{bottom:2716.305000px;}
.y14{bottom:2724.690000px;}
.y16{bottom:2746.545000px;}
.y10{bottom:2766.705000px;}
.y13{bottom:2775.090000px;}
.yf{bottom:3447.105000px;}
.y2b{bottom:3459.390000px;}
.y2e{bottom:3462.915000px;}
.y29{bottom:3484.470000px;}
.y2c{bottom:3486.855000px;}
.y2f{bottom:3490.485000px;}
.y24{bottom:3503.265000px;}
.y2d{bottom:3559.035000px;}
.y2a{bottom:3560.040000px;}
.ye{bottom:3561.735000px;}
.yd{bottom:3727.590000px;}
.yc{bottom:3799.590000px;}
.yb{bottom:3871.590000px;}
.ya{bottom:3943.590000px;}
.y30{bottom:3991.755000px;}
.y9{bottom:4015.590000px;}
.y8{bottom:4087.620000px;}
.y7{bottom:4159.620000px;}
.y31{bottom:4292.535000px;}
.y4{bottom:4293.720000px;}
.y3{bottom:4343.220000px;}
.y2{bottom:4392.720000px;}
.y1{bottom:4442.220000px;}
.y6{bottom:4593.030000px;}
.y5{bottom:4709.670000px;}
.hb{height:71.613281px;}
.h7{height:83.787539px;}
.ha{height:119.594180px;}
.h2{height:131.052305px;}
.h8{height:143.226562px;}
.h6{height:166.858945px;}
.h9{height:191.207461px;}
.h4{height:238.472227px;}
.h5{height:238.615453px;}
.h3{height:429.679688px;}
.h0{height:5055.480000px;}
.h1{height:5055.750000px;}
.w2{width:3575.879947px;}
.w0{width:3575.880000px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.x8{left:175.034947px;}
.x19{left:201.344947px;}
.xf{left:203.729947px;}
.x1d{left:237.704947px;}
.x4{left:251.669947px;}
.x1{left:256.649947px;}
.x2{left:264.089947px;}
.x3{left:657.389947px;}
.x9{left:1002.344947px;}
.xe{left:1023.149947px;}
.x5{left:1027.829947px;}
.xc{left:1249.304947px;}
.x1c{left:1265.759947px;}
.x6{left:1334.849947px;}
.x1f{left:1344.959947px;}
.x7{left:1964.189947px;}
.x1e{left:2119.529947px;}
.xd{left:2169.689947px;}
.x1b{left:2399.369947px;}
.x20{left:2417.969947px;}
.x22{left:2429.714947px;}
.x12{left:2451.314947px;}
.xa{left:2464.559947px;}
.x1a{left:2485.544947px;}
.x13{left:2727.929947px;}
.x15{left:2776.679947px;}
.x10{left:3054.389947px;}
.x14{left:3061.439947px;}
.x16{left:3077.669947px;}
.x11{left:3085.814947px;}
.x21{left:3221.384947px;}
.xb{left:3260.519947px;}
.x23{left:3372.449947px;}
.x24{left:3375.824947px;}
.x17{left:3488.324947px;}
.x18{left:3490.454947px;}
@media print{
.v2{vertical-align:-15.733180pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:35.200000pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.733440pt;}
.lsc{letter-spacing:0.874667pt;}
.ls3{letter-spacing:0.890667pt;}
.ls11{letter-spacing:0.901333pt;}
.ls15{letter-spacing:0.922667pt;}
.ls14{letter-spacing:0.954667pt;}
.ls10{letter-spacing:1.168000pt;}
.lsf{letter-spacing:1.333333pt;}
.ls2{letter-spacing:1.397333pt;}
.ls16{letter-spacing:1.413333pt;}
.ls9{letter-spacing:1.418667pt;}
.ls8{letter-spacing:1.440000pt;}
.ls17{letter-spacing:1.472000pt;}
.lsd{letter-spacing:1.536000pt;}
.ls1{letter-spacing:1.557333pt;}
.lsb{letter-spacing:1.562667pt;}
.ls13{letter-spacing:1.594667pt;}
.lse{letter-spacing:1.605333pt;}
.ls12{letter-spacing:2.245333pt;}
.ls5{letter-spacing:36.458240pt;}
.ls6{letter-spacing:63.567360pt;}
.ls4{letter-spacing:69.868160pt;}
.ws33{word-spacing:-102.186240pt;}
.ws0{word-spacing:-86.656000pt;}
.ws25{word-spacing:-48.165120pt;}
.ws2c{word-spacing:-33.701120pt;}
.ws36{word-spacing:-15.936000pt;}
.ws30{word-spacing:-0.728960pt;}
.ws38{word-spacing:0.000000pt;}
.ws1a{word-spacing:0.356480pt;}
.ws2{word-spacing:0.470827pt;}
.ws18{word-spacing:0.743040pt;}
.ws6{word-spacing:0.877440pt;}
.ws4{word-spacing:1.074987pt;}
.ws2f{word-spacing:2.465280pt;}
.ws2e{word-spacing:2.671147pt;}
.ws29{word-spacing:2.737280pt;}
.ws2a{word-spacing:2.750720pt;}
.ws31{word-spacing:2.783360pt;}
.ws34{word-spacing:2.858240pt;}
.ws2d{word-spacing:2.937600pt;}
.ws2b{word-spacing:2.977280pt;}
.ws37{word-spacing:3.008000pt;}
.ws35{word-spacing:3.253760pt;}
.ws1b{word-spacing:3.539840pt;}
.ws7{word-spacing:3.540480pt;}
.ws1{word-spacing:3.657600pt;}
.ws3{word-spacing:3.990400pt;}
.ws32{word-spacing:4.014080pt;}
.ws17{word-spacing:4.038400pt;}
.ws19{word-spacing:4.115840pt;}
.ws9{word-spacing:5.021611pt;}
.ws5{word-spacing:5.379200pt;}
.wsd{word-spacing:5.554944pt;}
.wsb{word-spacing:5.942357pt;}
.ws8{word-spacing:7.402240pt;}
.wse{word-spacing:7.740160pt;}
.wsc{word-spacing:8.029184pt;}
.wsa{word-spacing:8.280832pt;}
.ws10{word-spacing:17.856640pt;}
.ws12{word-spacing:19.040640pt;}
.ws14{word-spacing:19.384960pt;}
.ws15{word-spacing:19.770027pt;}
.ws11{word-spacing:21.648640pt;}
.ws13{word-spacing:23.016320pt;}
.wsf{word-spacing:23.506560pt;}
.ws16{word-spacing:23.679360pt;}
.ws20{word-spacing:48.996480pt;}
.ws24{word-spacing:49.489707pt;}
.ws1c{word-spacing:49.605760pt;}
.ws27{word-spacing:49.636480pt;}
.ws1e{word-spacing:50.916480pt;}
.ws22{word-spacing:51.437440pt;}
.ws1f{word-spacing:52.461440pt;}
.ws21{word-spacing:52.819840pt;}
.ws1d{word-spacing:52.856320pt;}
.ws26{word-spacing:53.496960pt;}
.ws28{word-spacing:54.058240pt;}
.ws23{word-spacing:56.170240pt;}
._16{margin-left:-63.225600pt;}
._3{margin-left:-1.054080pt;}
._1{width:0.936960pt;}
._0{width:2.225280pt;}
._2{width:3.585920pt;}
._4{width:4.820907pt;}
._7{width:5.968640pt;}
._13{width:7.077547pt;}
._6{width:8.111147pt;}
._5{width:29.074987pt;}
._15{width:37.959040pt;}
._14{width:39.106987pt;}
._12{width:51.962880pt;}
._9{width:53.201280pt;}
._b{width:54.172587pt;}
._a{width:55.167147pt;}
._d{width:57.168427pt;}
._c{width:58.437120pt;}
._e{width:72.073600pt;}
._8{width:85.642667pt;}
._11{width:102.311680pt;}
._f{width:103.322880pt;}
._10{width:104.865707pt;}
._17{width:1379.417601pt;}
.fsa{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fs1{font-size:78.080000pt;}
.fs9{font-size:106.880000pt;}
.fs0{font-size:117.120000pt;}
.fs7{font-size:128.000000pt;}
.fs5{font-size:149.120000pt;}
.fs8{font-size:170.880000pt;}
.fs3{font-size:213.120000pt;}
.fs4{font-size:213.248000pt;}
.fs2{font-size:384.000000pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:801.760000pt;}
.y1c{bottom:972.893333pt;}
.y21{bottom:1168.640000pt;}
.y20{bottom:1289.280000pt;}
.y23{bottom:1324.253333pt;}
.y19{bottom:1410.946667pt;}
.y1a{bottom:1414.813333pt;}
.y1d{bottom:1416.986667pt;}
.y1f{bottom:1429.213333pt;}
.y28{bottom:1441.026667pt;}
.y25{bottom:1446.306667pt;}
.y27{bottom:1447.266667pt;}
.y1e{bottom:1500.386667pt;}
.y1b{bottom:1501.986667pt;}
.y18{bottom:1503.613333pt;}
.y12{bottom:2342.653333pt;}
.y15{bottom:2357.760000pt;}
.y17{bottom:2373.306667pt;}
.y26{bottom:2380.413333pt;}
.y11{bottom:2414.493333pt;}
.y14{bottom:2421.946667pt;}
.y16{bottom:2441.373333pt;}
.y10{bottom:2459.293333pt;}
.y13{bottom:2466.746667pt;}
.yf{bottom:3064.093333pt;}
.y2b{bottom:3075.013333pt;}
.y2e{bottom:3078.146667pt;}
.y29{bottom:3097.306667pt;}
.y2c{bottom:3099.426667pt;}
.y2f{bottom:3102.653333pt;}
.y24{bottom:3114.013333pt;}
.y2d{bottom:3163.586667pt;}
.y2a{bottom:3164.480000pt;}
.ye{bottom:3165.986667pt;}
.yd{bottom:3313.413333pt;}
.yc{bottom:3377.413333pt;}
.yb{bottom:3441.413333pt;}
.ya{bottom:3505.413333pt;}
.y30{bottom:3548.226667pt;}
.y9{bottom:3569.413333pt;}
.y8{bottom:3633.440000pt;}
.y7{bottom:3697.440000pt;}
.y31{bottom:3815.586667pt;}
.y4{bottom:3816.640000pt;}
.y3{bottom:3860.640000pt;}
.y2{bottom:3904.640000pt;}
.y1{bottom:3948.640000pt;}
.y6{bottom:4082.693333pt;}
.y5{bottom:4186.373333pt;}
.hb{height:63.656250pt;}
.h7{height:74.477812pt;}
.ha{height:106.305937pt;}
.h2{height:116.490937pt;}
.h8{height:127.312500pt;}
.h6{height:148.319063pt;}
.h9{height:169.962188pt;}
.h4{height:211.975312pt;}
.h5{height:212.102625pt;}
.h3{height:381.937500pt;}
.h0{height:4493.760000pt;}
.h1{height:4494.000000pt;}
.w2{width:3178.559953pt;}
.w0{width:3178.560000pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x8{left:155.586619pt;}
.x19{left:178.973286pt;}
.xf{left:181.093286pt;}
.x1d{left:211.293286pt;}
.x4{left:223.706619pt;}
.x1{left:228.133286pt;}
.x2{left:234.746619pt;}
.x3{left:584.346619pt;}
.x9{left:890.973286pt;}
.xe{left:909.466619pt;}
.x5{left:913.626619pt;}
.xc{left:1110.493286pt;}
.x1c{left:1125.119953pt;}
.x6{left:1186.533286pt;}
.x1f{left:1195.519953pt;}
.x7{left:1745.946619pt;}
.x1e{left:1884.026619pt;}
.xd{left:1928.613286pt;}
.x1b{left:2132.773286pt;}
.x20{left:2149.306619pt;}
.x22{left:2159.746619pt;}
.x12{left:2178.946619pt;}
.xa{left:2190.719953pt;}
.x1a{left:2209.373286pt;}
.x13{left:2424.826619pt;}
.x15{left:2468.159953pt;}
.x10{left:2715.013286pt;}
.x14{left:2721.279953pt;}
.x16{left:2735.706619pt;}
.x11{left:2742.946619pt;}
.x21{left:2863.453286pt;}
.xb{left:2898.239953pt;}
.x23{left:2997.733286pt;}
.x24{left:3000.733286pt;}
.x17{left:3100.733286pt;}
.x18{left:3102.626619pt;}
}




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