
    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_5fab0b8248bbe3b86ba49ea1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_190d4b537c536ef9678daddd.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;}
@font-face{font-family:ff3;src:url('chunks/assets/font_8a8bc94f34cedc2fb46f6761.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.739746;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_a2a01091f4a0477785e00a38.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.937500;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_c261c4c1609318ba966e9f38.woff2')format("woff");}.ff5{font-family:ff5;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;}
.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);}
.v4{vertical-align:-35.280000px;}
.v7{vertical-align:-26.664000px;}
.v2{vertical-align:-25.200000px;}
.v9{vertical-align:-17.736000px;}
.v6{vertical-align:-4.500000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:8.880000px;}
.v1{vertical-align:43.200000px;}
.va{vertical-align:69.240000px;}
.v5{vertical-align:86.400000px;}
.v3{vertical-align:123.720000px;}
.ls8{letter-spacing:-1.152000px;}
.ls4{letter-spacing:-0.720000px;}
.lsc{letter-spacing:-0.684000px;}
.ls5{letter-spacing:-0.288000px;}
.ls9{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.086400px;}
.ls6{letter-spacing:0.179280px;}
.lse{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.326880px;}
.ls1{letter-spacing:111.600000px;}
.lsb{letter-spacing:1141.296000px;}
.ls7{letter-spacing:1210.429680px;}
.lsa{letter-spacing:1287.816000px;}
.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;}
}
.ws13{word-spacing:-84.384000px;}
.ws1a{word-spacing:-59.718240px;}
.ws4{word-spacing:-54.185760px;}
.ws2{word-spacing:-43.478784px;}
.wse{word-spacing:-43.446240px;}
.wsd{word-spacing:-37.913760px;}
.ws5{word-spacing:-36.123840px;}
.wsc{word-spacing:-32.544000px;}
.ws12{word-spacing:-32.400000px;}
.wsb{word-spacing:-32.256000px;}
.ws11{word-spacing:-31.392000px;}
.ws8{word-spacing:-25.384320px;}
.ws17{word-spacing:-24.480000px;}
.ws15{word-spacing:-24.440544px;}
.ws0{word-spacing:-24.408000px;}
.ws16{word-spacing:-23.724000px;}
.ws3{word-spacing:-21.641760px;}
.ws18{word-spacing:-16.272000px;}
.ws9{word-spacing:-2.491200px;}
.wsa{word-spacing:-2.293920px;}
.ws7{word-spacing:-0.997440px;}
.ws19{word-spacing:-0.760896px;}
.ws6{word-spacing:-0.467520px;}
.ws1{word-spacing:0.000000px;}
.ws10{word-spacing:764.088000px;}
.wsf{word-spacing:873.648000px;}
.ws14{word-spacing:989.988000px;}
._4{margin-left:-22.763376px;}
._3{margin-left:-13.254624px;}
._d{margin-left:-9.444816px;}
._0{margin-left:-8.356176px;}
._7{margin-left:-5.364576px;}
._8{margin-left:-3.453840px;}
._5{margin-left:-2.303424px;}
._2{margin-left:-1.152576px;}
._1{width:1.728864px;}
._9{width:3.239760px;}
._c{width:4.391424px;}
._b{width:23.453184px;}
._6{width:26.092944px;}
._e{width:471.591456px;}
._a{width:664.388160px;}
.fc4{color:transparent;}
.fc3{color:rgb(255,22,76);}
.fc2{color:rgb(155,149,31);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs7{font-size:56.160000px;}
.fs15{font-size:72.000000px;}
.fs12{font-size:79.920000px;}
.fs13{font-size:80.064000px;}
.fs8{font-size:84.240000px;}
.fs11{font-size:84.384000px;}
.fs6{font-size:95.760000px;}
.fs3{font-size:108.000000px;}
.fs14{font-size:108.144000px;}
.fsc{font-size:112.320000px;}
.fs2{font-size:120.240000px;}
.fs18{font-size:120.384000px;}
.fs5{font-size:144.000000px;}
.fs9{font-size:144.144000px;}
.fse{font-size:156.240000px;}
.fsd{font-size:156.384000px;}
.fsb{font-size:159.840000px;}
.fsf{font-size:167.760000px;}
.fs10{font-size:192.240000px;}
.fs4{font-size:192.384000px;}
.fsa{font-size:239.760000px;}
.fs17{font-size:264.240000px;}
.fs16{font-size:264.384000px;}
.fs1{font-size:288.000000px;}
.fs0{font-size:288.144000px;}
.y0{bottom:0.000000px;}
.yb{bottom:24.264000px;}
.y41{bottom:97.956000px;}
.yd{bottom:112.716000px;}
.y16{bottom:132.372000px;}
.y36{bottom:136.260000px;}
.yc{bottom:137.916000px;}
.y35{bottom:151.350000px;}
.y3d{bottom:223.050000px;}
.y1b{bottom:231.375000px;}
.y12{bottom:233.565000px;}
.y40{bottom:270.150000px;}
.y25{bottom:275.325000px;}
.y5{bottom:275.865000px;}
.y31{bottom:296.790000px;}
.y1e{bottom:304.350000px;}
.y33{bottom:309.570000px;}
.y1a{bottom:314.175000px;}
.yf{bottom:319.110000px;}
.y30{bottom:320.910000px;}
.y2d{bottom:325.950000px;}
.y45{bottom:326.415000px;}
.y4{bottom:340.455000px;}
.y32{bottom:342.000000px;}
.y1d{bottom:344.670000px;}
.y2f{bottom:344.850000px;}
.y3c{bottom:359.745000px;}
.ye{bottom:362.310000px;}
.y34{bottom:396.360000px;}
.y19{bottom:396.975000px;}
.y44{bottom:398.415000px;}
.y3f{bottom:413.025000px;}
.y3{bottom:419.250000px;}
.y24{bottom:430.740000px;}
.y23{bottom:452.340000px;}
.y14{bottom:454.425000px;}
.y15{bottom:455.070000px;}
.y3b{bottom:456.915000px;}
.y1c{bottom:466.815000px;}
.ya{bottom:469.230000px;}
.y18{bottom:478.905000px;}
.y13{bottom:484.665000px;}
.y2c{bottom:487.335000px;}
.y2a{bottom:497.415000px;}
.y2e{bottom:505.770000px;}
.y9{bottom:508.110000px;}
.y3a{bottom:511.845000px;}
.y11{bottom:517.830000px;}
.y2b{bottom:519.735000px;}
.y29{bottom:522.645000px;}
.y28{bottom:547.845000px;}
.y2{bottom:552.705000px;}
.y3e{bottom:556.410000px;}
.y43{bottom:559.545000px;}
.y8{bottom:562.140000px;}
.y39{bottom:566.745000px;}
.y1f{bottom:595.470000px;}
.y7{bottom:601.020000px;}
.y20{bottom:613.545000px;}
.y1{bottom:630.510000px;}
.y42{bottom:630.870000px;}
.y17{bottom:631.230000px;}
.y27{bottom:648.975000px;}
.y22{bottom:651.885000px;}
.y38{bottom:655.485000px;}
.y10{bottom:674.610000px;}
.y6{bottom:679.935000px;}
.y37{bottom:693.390000px;}
.y26{bottom:697.650000px;}
.y21{bottom:700.560000px;}
.h8{height:58.587539px;}
.h1b{height:71.613281px;}
.h16{height:79.490742px;}
.h17{height:79.633969px;}
.h14{height:83.787539px;}
.h15{height:83.930766px;}
.h4{height:107.419922px;}
.h18{height:107.563148px;}
.h7{height:110.583984px;}
.hc{height:111.716719px;}
.h3{height:119.594180px;}
.h1e{height:119.737406px;}
.h6{height:143.226562px;}
.h9{height:143.369789px;}
.hf{height:147.445312px;}
.hb{height:158.981484px;}
.h10{height:159.978164px;}
.he{height:160.125609px;}
.h11{height:171.773789px;}
.h1a{height:176.659922px;}
.h12{height:196.839492px;}
.h5{height:196.986938px;}
.h13{height:229.626562px;}
.hd{height:235.436719px;}
.h19{height:238.472227px;}
.ha{height:245.496445px;}
.h1d{height:270.562148px;}
.h1c{height:270.709594px;}
.h2{height:294.890625px;}
.h1{height:295.038070px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x2c{left:85.571979px;}
.x2b{left:87.047979px;}
.xb{left:119.339979px;}
.xc{left:186.014979px;}
.x15{left:208.589979px;}
.x2{left:209.954979px;}
.x2a{left:221.864979px;}
.xd{left:229.214979px;}
.x3{left:249.329979px;}
.x20{left:276.869979px;}
.x1{left:286.844979px;}
.x19{left:310.064979px;}
.x1c{left:312.374979px;}
.x1e{left:314.249979px;}
.x1f{left:335.669979px;}
.x28{left:364.109979px;}
.x6{left:496.619979px;}
.x13{left:501.149979px;}
.x14{left:503.174979px;}
.x9{left:528.224979px;}
.x7{left:537.119979px;}
.x4{left:540.614979px;}
.xa{left:545.324979px;}
.xf{left:549.434979px;}
.x5{left:593.894979px;}
.xe{left:605.054979px;}
.x27{left:606.599979px;}
.x16{left:621.389979px;}
.x12{left:627.374979px;}
.x8{left:628.739979px;}
.x23{left:632.159979px;}
.x22{left:635.219979px;}
.x1a{left:664.124979px;}
.x2e{left:678.029979px;}
.x24{left:695.549979px;}
.x21{left:698.789979px;}
.x11{left:706.394979px;}
.x1b{left:741.959979px;}
.x2f{left:809.789979px;}
.x30{left:817.094979px;}
.x10{left:902.414979px;}
.x26{left:1034.174979px;}
.x25{left:1064.264979px;}
.x17{left:1083.449979px;}
.x29{left:1085.939979px;}
.x18{left:1115.204979px;}
.x2d{left:1169.309979px;}
.x1d{left:1263.749979px;}
@media print{
.v4{vertical-align:-31.360000pt;}
.v7{vertical-align:-23.701333pt;}
.v2{vertical-align:-22.400000pt;}
.v9{vertical-align:-15.765333pt;}
.v6{vertical-align:-4.000000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:7.893333pt;}
.v1{vertical-align:38.400000pt;}
.va{vertical-align:61.546667pt;}
.v5{vertical-align:76.800000pt;}
.v3{vertical-align:109.973333pt;}
.ls8{letter-spacing:-1.024000pt;}
.ls4{letter-spacing:-0.640000pt;}
.lsc{letter-spacing:-0.608000pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls9{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.076800pt;}
.ls6{letter-spacing:0.159360pt;}
.lse{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.290560pt;}
.ls1{letter-spacing:99.200000pt;}
.lsb{letter-spacing:1014.485333pt;}
.ls7{letter-spacing:1075.937493pt;}
.lsa{letter-spacing:1144.725333pt;}
.ws13{word-spacing:-75.008000pt;}
.ws1a{word-spacing:-53.082880pt;}
.ws4{word-spacing:-48.165120pt;}
.ws2{word-spacing:-38.647808pt;}
.wse{word-spacing:-38.618880pt;}
.wsd{word-spacing:-33.701120pt;}
.ws5{word-spacing:-32.110080pt;}
.wsc{word-spacing:-28.928000pt;}
.ws12{word-spacing:-28.800000pt;}
.wsb{word-spacing:-28.672000pt;}
.ws11{word-spacing:-27.904000pt;}
.ws8{word-spacing:-22.563840pt;}
.ws17{word-spacing:-21.760000pt;}
.ws15{word-spacing:-21.724928pt;}
.ws0{word-spacing:-21.696000pt;}
.ws16{word-spacing:-21.088000pt;}
.ws3{word-spacing:-19.237120pt;}
.ws18{word-spacing:-14.464000pt;}
.ws9{word-spacing:-2.214400pt;}
.wsa{word-spacing:-2.039040pt;}
.ws7{word-spacing:-0.886613pt;}
.ws19{word-spacing:-0.676352pt;}
.ws6{word-spacing:-0.415573pt;}
.ws1{word-spacing:0.000000pt;}
.ws10{word-spacing:679.189333pt;}
.wsf{word-spacing:776.576000pt;}
.ws14{word-spacing:879.989333pt;}
._4{margin-left:-20.234112pt;}
._3{margin-left:-11.781888pt;}
._d{margin-left:-8.395392pt;}
._0{margin-left:-7.427712pt;}
._7{margin-left:-4.768512pt;}
._8{margin-left:-3.070080pt;}
._5{margin-left:-2.047488pt;}
._2{margin-left:-1.024512pt;}
._1{width:1.536768pt;}
._9{width:2.879787pt;}
._c{width:3.903488pt;}
._b{width:20.847275pt;}
._6{width:23.193728pt;}
._e{width:419.192405pt;}
._a{width:590.567253pt;}
.fs7{font-size:49.920000pt;}
.fs15{font-size:64.000000pt;}
.fs12{font-size:71.040000pt;}
.fs13{font-size:71.168000pt;}
.fs8{font-size:74.880000pt;}
.fs11{font-size:75.008000pt;}
.fs6{font-size:85.120000pt;}
.fs3{font-size:96.000000pt;}
.fs14{font-size:96.128000pt;}
.fsc{font-size:99.840000pt;}
.fs2{font-size:106.880000pt;}
.fs18{font-size:107.008000pt;}
.fs5{font-size:128.000000pt;}
.fs9{font-size:128.128000pt;}
.fse{font-size:138.880000pt;}
.fsd{font-size:139.008000pt;}
.fsb{font-size:142.080000pt;}
.fsf{font-size:149.120000pt;}
.fs10{font-size:170.880000pt;}
.fs4{font-size:171.008000pt;}
.fsa{font-size:213.120000pt;}
.fs17{font-size:234.880000pt;}
.fs16{font-size:235.008000pt;}
.fs1{font-size:256.000000pt;}
.fs0{font-size:256.128000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:21.568000pt;}
.y41{bottom:87.072000pt;}
.yd{bottom:100.192000pt;}
.y16{bottom:117.664000pt;}
.y36{bottom:121.120000pt;}
.yc{bottom:122.592000pt;}
.y35{bottom:134.533333pt;}
.y3d{bottom:198.266667pt;}
.y1b{bottom:205.666667pt;}
.y12{bottom:207.613333pt;}
.y40{bottom:240.133333pt;}
.y25{bottom:244.733333pt;}
.y5{bottom:245.213333pt;}
.y31{bottom:263.813333pt;}
.y1e{bottom:270.533333pt;}
.y33{bottom:275.173333pt;}
.y1a{bottom:279.266667pt;}
.yf{bottom:283.653333pt;}
.y30{bottom:285.253333pt;}
.y2d{bottom:289.733333pt;}
.y45{bottom:290.146667pt;}
.y4{bottom:302.626667pt;}
.y32{bottom:304.000000pt;}
.y1d{bottom:306.373333pt;}
.y2f{bottom:306.533333pt;}
.y3c{bottom:319.773333pt;}
.ye{bottom:322.053333pt;}
.y34{bottom:352.320000pt;}
.y19{bottom:352.866667pt;}
.y44{bottom:354.146667pt;}
.y3f{bottom:367.133333pt;}
.y3{bottom:372.666667pt;}
.y24{bottom:382.880000pt;}
.y23{bottom:402.080000pt;}
.y14{bottom:403.933333pt;}
.y15{bottom:404.506667pt;}
.y3b{bottom:406.146667pt;}
.y1c{bottom:414.946667pt;}
.ya{bottom:417.093333pt;}
.y18{bottom:425.693333pt;}
.y13{bottom:430.813333pt;}
.y2c{bottom:433.186667pt;}
.y2a{bottom:442.146667pt;}
.y2e{bottom:449.573333pt;}
.y9{bottom:451.653333pt;}
.y3a{bottom:454.973333pt;}
.y11{bottom:460.293333pt;}
.y2b{bottom:461.986667pt;}
.y29{bottom:464.573333pt;}
.y28{bottom:486.973333pt;}
.y2{bottom:491.293333pt;}
.y3e{bottom:494.586667pt;}
.y43{bottom:497.373333pt;}
.y8{bottom:499.680000pt;}
.y39{bottom:503.773333pt;}
.y1f{bottom:529.306667pt;}
.y7{bottom:534.240000pt;}
.y20{bottom:545.373333pt;}
.y1{bottom:560.453333pt;}
.y42{bottom:560.773333pt;}
.y17{bottom:561.093333pt;}
.y27{bottom:576.866667pt;}
.y22{bottom:579.453333pt;}
.y38{bottom:582.653333pt;}
.y10{bottom:599.653333pt;}
.y6{bottom:604.386667pt;}
.y37{bottom:616.346667pt;}
.y26{bottom:620.133333pt;}
.y21{bottom:622.720000pt;}
.h8{height:52.077812pt;}
.h1b{height:63.656250pt;}
.h16{height:70.658438pt;}
.h17{height:70.785750pt;}
.h14{height:74.477812pt;}
.h15{height:74.605125pt;}
.h4{height:95.484375pt;}
.h18{height:95.611688pt;}
.h7{height:98.296875pt;}
.hc{height:99.303750pt;}
.h3{height:106.305937pt;}
.h1e{height:106.433250pt;}
.h6{height:127.312500pt;}
.h9{height:127.439813pt;}
.hf{height:131.062500pt;}
.hb{height:141.316875pt;}
.h10{height:142.202812pt;}
.he{height:142.333875pt;}
.h11{height:152.687812pt;}
.h1a{height:157.031042pt;}
.h12{height:174.968437pt;}
.h5{height:175.099500pt;}
.h13{height:204.112500pt;}
.hd{height:209.277083pt;}
.h19{height:211.975312pt;}
.ha{height:218.219062pt;}
.h1d{height:240.499687pt;}
.h1c{height:240.630750pt;}
.h2{height:262.125000pt;}
.h1{height:262.256062pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x2c{left:76.063981pt;}
.x2b{left:77.375981pt;}
.xb{left:106.079981pt;}
.xc{left:165.346648pt;}
.x15{left:185.413314pt;}
.x2{left:186.626648pt;}
.x2a{left:197.213314pt;}
.xd{left:203.746648pt;}
.x3{left:221.626648pt;}
.x20{left:246.106648pt;}
.x1{left:254.973314pt;}
.x19{left:275.613314pt;}
.x1c{left:277.666648pt;}
.x1e{left:279.333314pt;}
.x1f{left:298.373314pt;}
.x28{left:323.653314pt;}
.x6{left:441.439981pt;}
.x13{left:445.466648pt;}
.x14{left:447.266648pt;}
.x9{left:469.533314pt;}
.x7{left:477.439981pt;}
.x4{left:480.546648pt;}
.xa{left:484.733314pt;}
.xf{left:488.386648pt;}
.x5{left:527.906648pt;}
.xe{left:537.826648pt;}
.x27{left:539.199981pt;}
.x16{left:552.346648pt;}
.x12{left:557.666648pt;}
.x8{left:558.879981pt;}
.x23{left:561.919981pt;}
.x22{left:564.639981pt;}
.x1a{left:590.333314pt;}
.x2e{left:602.693314pt;}
.x24{left:618.266648pt;}
.x21{left:621.146648pt;}
.x11{left:627.906648pt;}
.x1b{left:659.519981pt;}
.x2f{left:719.813314pt;}
.x30{left:726.306648pt;}
.x10{left:802.146648pt;}
.x26{left:919.266648pt;}
.x25{left:946.013314pt;}
.x17{left:963.066648pt;}
.x29{left:965.279981pt;}
.x18{left:991.293314pt;}
.x2d{left:1039.386648pt;}
.x1d{left:1123.333314pt;}
}




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