
    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_c1fcbe0813451acadab1e0bc.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_f403af6a9fed9f97b92d294e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.978027;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_7a28333dccb162485f5bfeaf.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.976074;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_4a8401451b9dceee7af25e68.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.763184;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_2ba72aaa3e6fcee58503104b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910645;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_1e10905d05522a29c48ce52a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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.150061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150061,0.000000,0.000000,0.250000,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);}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-3.133200px;}
.lse{letter-spacing:-2.478000px;}
.ls4{letter-spacing:-2.361600px;}
.ls7{letter-spacing:-1.080000px;}
.ls5{letter-spacing:-0.072000px;}
.ls6{letter-spacing:-0.054000px;}
.lsd{letter-spacing:-0.042000px;}
.ls8{letter-spacing:-0.021600px;}
.lsc{letter-spacing:-0.016800px;}
.ls1{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.016800px;}
.ls2{letter-spacing:0.021600px;}
.ls0{letter-spacing:0.024000px;}
.lsa{letter-spacing:0.033600px;}
.ls3{letter-spacing:0.033720px;}
.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;}
}
.ws4{word-spacing:-45.072000px;}
.ws3{word-spacing:-42.710400px;}
.ws1{word-spacing:-33.804000px;}
.ws0{word-spacing:-33.384000px;}
.ws5{word-spacing:-32.724000px;}
.ws6{word-spacing:-26.308800px;}
.ws8{word-spacing:-26.292000px;}
.ws7{word-spacing:-26.275200px;}
.ws9{word-spacing:-23.814000px;}
.ws2{word-spacing:0.000000px;}
._9{margin-left:-17.563062px;}
._b{margin-left:-13.490400px;}
._2{margin-left:-11.793600px;}
._10{margin-left:-9.506400px;}
._11{margin-left:-8.457360px;}
._1{margin-left:-7.200000px;}
._a{margin-left:-5.731200px;}
._4{margin-left:-4.492800px;}
._0{margin-left:-3.024000px;}
._3{margin-left:-1.123200px;}
._6{width:1.954800px;}
._f{width:2.959200px;}
._7{width:4.093200px;}
._c{width:5.623200px;}
._d{width:6.711600px;}
._8{width:7.840920px;}
._5{width:10.540800px;}
._e{width:51.624000px;}
.fc4{color:rgb(44,124,159);}
.fc3{color:transparent;}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(137,137,137);}
.fs6{font-size:30.000000px;}
.fs5{font-size:42.000000px;}
.fs8{font-size:84.000000px;}
.fs3{font-size:108.000000px;}
.fs0{font-size:120.000000px;}
.fs1{font-size:144.000000px;}
.fsa{font-size:150.612240px;}
.fs4{font-size:168.000000px;}
.fs9{font-size:180.734688px;}
.fs7{font-size:192.000000px;}
.fs2{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000035px;}
.y47{bottom:11.295900px;}
.y45{bottom:15.061200px;}
.y43{bottom:15.061350px;}
.y14{bottom:46.375315px;}
.y13{bottom:85.375315px;}
.y40{bottom:114.327925px;}
.y12{bottom:122.875330px;}
.y3f{bottom:136.827880px;}
.y3e{bottom:159.327880px;}
.y27{bottom:162.899965px;}
.y4b{bottom:180.000000px;}
.y3d{bottom:181.827880px;}
.y1c{bottom:188.898715px;}
.y26{bottom:194.399965px;}
.y3c{bottom:204.327880px;}
.y11{bottom:209.847580px;}
.y1b{bottom:221.898715px;}
.y3b{bottom:226.827880px;}
.y4a{bottom:228.949050px;}
.y4{bottom:246.599965px;}
.y10{bottom:248.847580px;}
.y3a{bottom:249.327880px;}
.y1a{bottom:253.398715px;}
.y49{bottom:281.663250px;}
.yc{bottom:285.599965px;}
.yf{bottom:286.347580px;}
.y39{bottom:294.328030px;}
.y29{bottom:309.599965px;}
.y38{bottom:316.828030px;}
.yb{bottom:317.099965px;}
.y48{bottom:334.377600px;}
.y37{bottom:339.328030px;}
.ya{bottom:350.099965px;}
.y19{bottom:360.628315px;}
.y36{bottom:361.828030px;}
.y9{bottom:381.599965px;}
.y35{bottom:384.328030px;}
.y25{bottom:384.599965px;}
.y46{bottom:387.091800px;}
.y18{bottom:393.628315px;}
.y34{bottom:406.828030px;}
.y24{bottom:416.099965px;}
.y17{bottom:425.128315px;}
.ye{bottom:426.919930px;}
.y33{bottom:429.328030px;}
.y44{bottom:436.040850px;}
.y3{bottom:441.599965px;}
.y23{bottom:449.099965px;}
.y4f{bottom:461.099965px;}
.yd{bottom:464.419930px;}
.y2{bottom:474.599965px;}
.y22{bottom:480.599965px;}
.y8{bottom:486.145315px;}
.y42{bottom:492.520350px;}
.y4e{bottom:494.099965px;}
.y21{bottom:516.599965px;}
.y4d{bottom:525.599965px;}
.y20{bottom:530.099965px;}
.y32{bottom:539.971030px;}
.y7{bottom:550.645165px;}
.y1f{bottom:561.599965px;}
.y31{bottom:562.471030px;}
.y30{bottom:584.971030px;}
.y1e{bottom:594.599965px;}
.y2f{bottom:607.471030px;}
.y6{bottom:615.145165px;}
.y1d{bottom:623.099965px;}
.y2e{bottom:629.971030px;}
.y2d{bottom:652.471030px;}
.y28{bottom:671.601565px;}
.y2c{bottom:674.971030px;}
.y5{bottom:679.645165px;}
.y16{bottom:696.475615px;}
.y15{bottom:696.787915px;}
.y2b{bottom:697.471030px;}
.y4c{bottom:712.407265px;}
.y2a{bottom:719.971030px;}
.y41{bottom:727.573015px;}
.ha{height:22.631836px;}
.h8{height:31.992188px;}
.hf{height:48.948990px;}
.hd{height:52.714275px;}
.hc{height:63.984375px;}
.h12{height:78.626953px;}
.h9{height:81.474609px;}
.h5{height:82.265625px;}
.h2{height:87.363281px;}
.h7{height:90.527344px;}
.h11{height:104.649032px;}
.h3{height:108.632812px;}
.he{height:125.578838px;}
.h6{height:127.968750px;}
.hb{height:144.000000px;}
.h4{height:162.949219px;}
.h10{height:369.000000px;}
.h1{height:809.999965px;}
.h0{height:810.000000px;}
.w4{width:94.924305px;}
.w5{width:97.184415px;}
.w6{width:101.704650px;}
.w3{width:113.005140px;}
.w2{width:336.755250px;}
.w1{width:1079.999850px;}
.w0{width:1080.000000px;}
.x38{left:-238.439400px;}
.x0{left:0.000000px;}
.x30{left:11.300400px;}
.x2e{left:13.560615px;}
.x14{left:34.015740px;}
.x2c{left:50.240520px;}
.xf{left:61.116255px;}
.xe{left:67.743210px;}
.xc{left:69.134460px;}
.x2d{left:73.454775px;}
.xd{left:77.800485px;}
.x16{left:82.799985px;}
.x19{left:85.202325px;}
.x35{left:88.396725px;}
.x11{left:92.053845px;}
.x36{left:109.505775px;}
.x6{left:133.378860px;}
.x3a{left:138.547545px;}
.x13{left:139.644705px;}
.x5{left:149.146440px;}
.x18{left:150.381210px;}
.x39{left:160.644705px;}
.x37{left:163.708425px;}
.x3{left:175.773615px;}
.x34{left:211.197075px;}
.x3b{left:217.800000px;}
.x4{left:242.987265px;}
.x7{left:298.437435px;}
.x2{left:304.047070px;}
.x22{left:311.617098px;}
.x24{left:312.709138px;}
.x10{left:328.514715px;}
.x8{left:331.206000px;}
.x23{left:354.442530px;}
.x1{left:366.551955px;}
.x25{left:385.040190px;}
.x9{left:395.403450px;}
.x12{left:405.216855px;}
.x1b{left:406.800000px;}
.x2f{left:410.210100px;}
.x17{left:437.858131px;}
.xa{left:446.819550px;}
.x1e{left:462.894255px;}
.x20{left:471.794640px;}
.x1f{left:482.633025px;}
.x1a{left:487.800000px;}
.x1c{left:492.348600px;}
.x1d{left:502.715295px;}
.x21{left:523.838340px;}
.xb{left:536.362500px;}
.x15{left:543.156735px;}
.x2a{left:551.455947px;}
.x27{left:554.726943px;}
.x29{left:558.320940px;}
.x26{left:562.232805px;}
.x28{left:573.870990px;}
.x2b{left:575.327040px;}
.x31{left:618.139500px;}
.x32{left:715.323900px;}
.x33{left:817.028550px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-2.785067pt;}
.lse{letter-spacing:-2.202667pt;}
.ls4{letter-spacing:-2.099200pt;}
.ls7{letter-spacing:-0.960000pt;}
.ls5{letter-spacing:-0.064000pt;}
.ls6{letter-spacing:-0.048000pt;}
.lsd{letter-spacing:-0.037333pt;}
.ls8{letter-spacing:-0.019200pt;}
.lsc{letter-spacing:-0.014933pt;}
.ls1{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.014933pt;}
.ls2{letter-spacing:0.019200pt;}
.ls0{letter-spacing:0.021333pt;}
.lsa{letter-spacing:0.029867pt;}
.ls3{letter-spacing:0.029973pt;}
.ws4{word-spacing:-40.064000pt;}
.ws3{word-spacing:-37.964800pt;}
.ws1{word-spacing:-30.048000pt;}
.ws0{word-spacing:-29.674667pt;}
.ws5{word-spacing:-29.088000pt;}
.ws6{word-spacing:-23.385600pt;}
.ws8{word-spacing:-23.370667pt;}
.ws7{word-spacing:-23.355733pt;}
.ws9{word-spacing:-21.168000pt;}
.ws2{word-spacing:0.000000pt;}
._9{margin-left:-15.611611pt;}
._b{margin-left:-11.991467pt;}
._2{margin-left:-10.483200pt;}
._10{margin-left:-8.450133pt;}
._11{margin-left:-7.517653pt;}
._1{margin-left:-6.400000pt;}
._a{margin-left:-5.094400pt;}
._4{margin-left:-3.993600pt;}
._0{margin-left:-2.688000pt;}
._3{margin-left:-0.998400pt;}
._6{width:1.737600pt;}
._f{width:2.630400pt;}
._7{width:3.638400pt;}
._c{width:4.998400pt;}
._d{width:5.965867pt;}
._8{width:6.969707pt;}
._5{width:9.369600pt;}
._e{width:45.888000pt;}
.fs6{font-size:26.666667pt;}
.fs5{font-size:37.333333pt;}
.fs8{font-size:74.666667pt;}
.fs3{font-size:96.000000pt;}
.fs0{font-size:106.666667pt;}
.fs1{font-size:128.000000pt;}
.fsa{font-size:133.877547pt;}
.fs4{font-size:149.333333pt;}
.fs9{font-size:160.653056pt;}
.fs7{font-size:170.666667pt;}
.fs2{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000031pt;}
.y47{bottom:10.040800pt;}
.y45{bottom:13.387733pt;}
.y43{bottom:13.387867pt;}
.y14{bottom:41.222502pt;}
.y13{bottom:75.889169pt;}
.y40{bottom:101.624822pt;}
.y12{bottom:109.222516pt;}
.y3f{bottom:121.624782pt;}
.y3e{bottom:141.624782pt;}
.y27{bottom:144.799969pt;}
.y4b{bottom:160.000000pt;}
.y3d{bottom:161.624782pt;}
.y1c{bottom:167.909969pt;}
.y26{bottom:172.799969pt;}
.y3c{bottom:181.624782pt;}
.y11{bottom:186.531182pt;}
.y1b{bottom:197.243302pt;}
.y3b{bottom:201.624782pt;}
.y4a{bottom:203.510267pt;}
.y4{bottom:219.199969pt;}
.y10{bottom:221.197849pt;}
.y3a{bottom:221.624782pt;}
.y1a{bottom:225.243302pt;}
.y49{bottom:250.367333pt;}
.yc{bottom:253.866636pt;}
.yf{bottom:254.531182pt;}
.y39{bottom:261.624916pt;}
.y29{bottom:275.199969pt;}
.y38{bottom:281.624916pt;}
.yb{bottom:281.866636pt;}
.y48{bottom:297.224533pt;}
.y37{bottom:301.624916pt;}
.ya{bottom:311.199969pt;}
.y19{bottom:320.558502pt;}
.y36{bottom:321.624916pt;}
.y9{bottom:339.199969pt;}
.y35{bottom:341.624916pt;}
.y25{bottom:341.866636pt;}
.y46{bottom:344.081600pt;}
.y18{bottom:349.891836pt;}
.y34{bottom:361.624916pt;}
.y24{bottom:369.866636pt;}
.y17{bottom:377.891836pt;}
.ye{bottom:379.484382pt;}
.y33{bottom:381.624916pt;}
.y44{bottom:387.591867pt;}
.y3{bottom:392.533302pt;}
.y23{bottom:399.199969pt;}
.y4f{bottom:409.866636pt;}
.yd{bottom:412.817716pt;}
.y2{bottom:421.866636pt;}
.y22{bottom:427.199969pt;}
.y8{bottom:432.129169pt;}
.y42{bottom:437.795867pt;}
.y4e{bottom:439.199969pt;}
.y21{bottom:459.199969pt;}
.y4d{bottom:467.199969pt;}
.y20{bottom:471.199969pt;}
.y32{bottom:479.974249pt;}
.y7{bottom:489.462369pt;}
.y1f{bottom:499.199969pt;}
.y31{bottom:499.974249pt;}
.y30{bottom:519.974249pt;}
.y1e{bottom:528.533302pt;}
.y2f{bottom:539.974249pt;}
.y6{bottom:546.795702pt;}
.y1d{bottom:553.866636pt;}
.y2e{bottom:559.974249pt;}
.y2d{bottom:579.974249pt;}
.y28{bottom:596.979169pt;}
.y2c{bottom:599.974249pt;}
.y5{bottom:604.129036pt;}
.y16{bottom:619.089436pt;}
.y15{bottom:619.367036pt;}
.y2b{bottom:619.974249pt;}
.y4c{bottom:633.250902pt;}
.y2a{bottom:639.974249pt;}
.y41{bottom:646.731569pt;}
.ha{height:20.117188pt;}
.h8{height:28.437500pt;}
.hf{height:43.510213pt;}
.hd{height:46.857133pt;}
.hc{height:56.875000pt;}
.h12{height:69.890625pt;}
.h9{height:72.421875pt;}
.h5{height:73.125000pt;}
.h2{height:77.656250pt;}
.h7{height:80.468750pt;}
.h11{height:93.021362pt;}
.h3{height:96.562500pt;}
.he{height:111.625634pt;}
.h6{height:113.750000pt;}
.hb{height:128.000000pt;}
.h4{height:144.843750pt;}
.h10{height:328.000000pt;}
.h1{height:719.999969pt;}
.h0{height:720.000000pt;}
.w4{width:84.377160pt;}
.w5{width:86.386147pt;}
.w6{width:90.404133pt;}
.w3{width:100.449013pt;}
.w2{width:299.338000pt;}
.w1{width:959.999867pt;}
.w0{width:960.000000pt;}
.x38{left:-211.946133pt;}
.x0{left:0.000000pt;}
.x30{left:10.044800pt;}
.x2e{left:12.053880pt;}
.x14{left:30.236213pt;}
.x2c{left:44.658240pt;}
.xf{left:54.325560pt;}
.xe{left:60.216187pt;}
.xc{left:61.452853pt;}
.x2d{left:65.293133pt;}
.xd{left:69.155987pt;}
.x16{left:73.599987pt;}
.x19{left:75.735400pt;}
.x35{left:78.574867pt;}
.x11{left:81.825640pt;}
.x36{left:97.338467pt;}
.x6{left:118.558987pt;}
.x3a{left:123.153373pt;}
.x13{left:124.128627pt;}
.x5{left:132.574613pt;}
.x18{left:133.672187pt;}
.x39{left:142.795293pt;}
.x37{left:145.518600pt;}
.x3{left:156.243213pt;}
.x34{left:187.730733pt;}
.x3b{left:193.600000pt;}
.x4{left:215.988680pt;}
.x7{left:265.277720pt;}
.x2{left:270.264063pt;}
.x22{left:276.992976pt;}
.x24{left:277.963679pt;}
.x10{left:292.013080pt;}
.x8{left:294.405333pt;}
.x23{left:315.060027pt;}
.x1{left:325.823960pt;}
.x25{left:342.257947pt;}
.x9{left:351.469733pt;}
.x12{left:360.192760pt;}
.x1b{left:361.600000pt;}
.x2f{left:364.631200pt;}
.x17{left:389.207228pt;}
.xa{left:397.172933pt;}
.x1e{left:411.461560pt;}
.x20{left:419.373013pt;}
.x1f{left:429.007133pt;}
.x1a{left:433.600000pt;}
.x1c{left:437.643200pt;}
.x1d{left:446.858040pt;}
.x21{left:465.634080pt;}
.xb{left:476.766667pt;}
.x15{left:482.805987pt;}
.x2a{left:490.183064pt;}
.x27{left:493.090616pt;}
.x29{left:496.285280pt;}
.x26{left:499.762493pt;}
.x28{left:510.107547pt;}
.x2b{left:511.401813pt;}
.x31{left:549.457333pt;}
.x32{left:635.843467pt;}
.x33{left:726.247600pt;}
}




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