
    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_3f93424d006344edc60078f3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.914062;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_2d3726ecded760e7a02c6e68.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_b69e6f6658912b474076ee6f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.916016;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_3f999e2b22aacb1792656e58.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.946777;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_c937cc9a22dea02d0e3c4cf7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_01aa0f4aad8e4f54974da83c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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);}
.m1{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-0.900000px;}
.lsa{letter-spacing:-0.378600px;}
.ls14{letter-spacing:-0.360000px;}
.ls12{letter-spacing:-0.259800px;}
.ls7{letter-spacing:-0.180000px;}
.ls8{letter-spacing:-0.018720px;}
.ls6{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.028080px;}
.ls9{letter-spacing:0.341400px;}
.ls3{letter-spacing:0.350400px;}
.ls1{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.378600px;}
.ls15{letter-spacing:2.700000px;}
.lsf{letter-spacing:4.860000px;}
.lse{letter-spacing:8.460000px;}
.ls4{letter-spacing:12.060000px;}
.lsc{letter-spacing:17.820000px;}
.ls5{letter-spacing:22.140000px;}
.ls13{letter-spacing:22.860000px;}
.ls10{letter-spacing:30.060000px;}
.lsd{letter-spacing:191.340000px;}
.ls2{letter-spacing:356.400000px;}
.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;}
}
.ws8{word-spacing:-21.438600px;}
.ws0{word-spacing:-21.420000px;}
.ws5{word-spacing:-21.410400px;}
.ws3{word-spacing:-21.401400px;}
.ws1{word-spacing:-21.060000px;}
.ws2{word-spacing:-21.041280px;}
.ws4{word-spacing:-20.681400px;}
.ws7{word-spacing:-15.300000px;}
.wsa{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.680200px;}
.ws6{word-spacing:0.000000px;}
._23{margin-left:-5.812560px;}
._10{margin-left:-4.380480px;}
._25{margin-left:-3.213360px;}
._31{margin-left:-2.190240px;}
._1{margin-left:-1.095120px;}
._0{width:1.723680px;}
._18{width:2.948400px;}
._19{width:4.127760px;}
._16{width:5.307120px;}
._2b{width:6.358800px;}
._1c{width:7.556400px;}
._1a{width:9.013680px;}
._1b{width:10.497840px;}
._22{width:11.668080px;}
._8{width:12.880080px;}
._12{width:14.489280px;}
._1d{width:15.546000px;}
._17{width:16.992240px;}
._3{width:18.212160px;}
._2{width:19.561680px;}
._a{width:22.576320px;}
._2e{width:23.671440px;}
._15{width:24.984240px;}
._2f{width:26.367120px;}
._2a{width:27.462240px;}
._26{width:29.062800px;}
._11{width:30.579120px;}
._27{width:31.602720px;}
._9{width:32.853600px;}
._2d{width:35.549280px;}
._30{width:39.929760px;}
._5{width:45.581040px;}
._4{width:46.648560px;}
._b{width:48.522240px;}
._24{width:50.459760px;}
._28{width:51.639120px;}
._14{width:53.408160px;}
._32{width:55.261440px;}
._7{width:57.116160px;}
._29{width:59.389200px;}
._f{width:60.905520px;}
._2c{width:61.916400px;}
._20{width:68.402880px;}
._21{width:69.582240px;}
._1e{width:86.417520px;}
._c{width:129.476880px;}
._13{width:149.526000px;}
._6{width:165.678480px;}
._e{width:187.939440px;}
._d{width:190.466640px;}
._1f{width:192.213360px;}
.fc4{color:rgb(5,99,193);}
.fc3{color:rgb(238,0,0);}
.fc2{color:rgb(192,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs2{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs0{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y3{bottom:2.880000px;}
.y12{bottom:8.100000px;}
.yc{bottom:8.280000px;}
.y21{bottom:13.725000px;}
.y11{bottom:35.820000px;}
.y20{bottom:41.445000px;}
.y2{bottom:52.560000px;}
.y1{bottom:57.600000px;}
.y10{bottom:63.720000px;}
.y1f{bottom:69.165000px;}
.y19{bottom:91.470000px;}
.yf{bottom:91.485000px;}
.y4d{bottom:95.436000px;}
.y1e{bottom:97.065000px;}
.y4c{bottom:100.656000px;}
.y55{bottom:112.716000px;}
.y4b{bottom:113.976000px;}
.y54{bottom:117.936000px;}
.y18{bottom:119.190000px;}
.ye{bottom:119.205000px;}
.y1d{bottom:124.785000px;}
.y53{bottom:129.996000px;}
.y61{bottom:131.256000px;}
.y52{bottom:135.216000px;}
.y17{bottom:147.090000px;}
.y5c{bottom:147.276000px;}
.y51{bottom:148.536000px;}
.y28{bottom:149.616000px;}
.y5b{bottom:152.490000px;}
.y1c{bottom:152.505000px;}
.y5a{bottom:165.810000px;}
.y16{bottom:174.810000px;}
.y27{bottom:177.330000px;}
.y15{bottom:202.530000px;}
.y4a{bottom:203.250000px;}
.y26{bottom:205.050000px;}
.y49{bottom:230.970000px;}
.y25{bottom:232.950000px;}
.y48{bottom:258.690000px;}
.y24{bottom:260.670000px;}
.y5f{bottom:266.250000px;}
.y47{bottom:286.590000px;}
.y23{bottom:288.390000px;}
.y45{bottom:314.310000px;}
.y22{bottom:316.110000px;}
.y46{bottom:321.870000px;}
.y1b{bottom:335.730000px;}
.y44{bottom:342.075000px;}
.y43{bottom:369.975000px;}
.y42{bottom:397.695000px;}
.y59{bottom:405.255000px;}
.y41{bottom:425.415000px;}
.y40{bottom:453.135000px;}
.y3f{bottom:481.035000px;}
.y1a{bottom:508.575000px;}
.y3e{bottom:508.755000px;}
.y3d{bottom:536.475000px;}
.y14{bottom:537.195000px;}
.y3c{bottom:564.195000px;}
.y60{bottom:571.755000px;}
.y3b{bottom:592.095000px;}
.y3a{bottom:619.845000px;}
.y39{bottom:647.565000px;}
.y5e{bottom:655.125000px;}
.y38{bottom:675.465000px;}
.y50{bottom:683.025000px;}
.y37{bottom:703.185000px;}
.y58{bottom:710.745000px;}
.y36{bottom:730.905000px;}
.y35{bottom:758.625000px;}
.y13{bottom:760.065000px;}
.y34{bottom:786.525000px;}
.yd{bottom:788.685000px;}
.y33{bottom:814.245000px;}
.y32{bottom:841.965000px;}
.y31{bottom:869.865000px;}
.y4f{bottom:877.470000px;}
.y30{bottom:897.630000px;}
.y57{bottom:905.190000px;}
.y2f{bottom:925.350000px;}
.yb{bottom:928.230000px;}
.y2e{bottom:953.070000px;}
.ya{bottom:964.950000px;}
.y2d{bottom:980.970000px;}
.y9{bottom:992.670000px;}
.y2c{bottom:1008.690000px;}
.y5d{bottom:1016.250000px;}
.y8{bottom:1020.570000px;}
.y2b{bottom:1036.410000px;}
.y7{bottom:1048.290000px;}
.y2a{bottom:1064.130000px;}
.y6{bottom:1077.270000px;}
.y29{bottom:1092.030000px;}
.y5{bottom:1119.750000px;}
.y4e{bottom:1127.310000px;}
.y4{bottom:1147.500000px;}
.y56{bottom:1155.060000px;}
.h3{height:22.536000px;}
.hd{height:27.147656px;}
.h8{height:27.900000px;}
.hc{height:37.705078px;}
.he{height:41.726953px;}
.h2{height:58.819922px;}
.h5{height:58.984453px;}
.h4{height:59.436914px;}
.h7{height:61.575820px;}
.h6{height:67.565039px;}
.h9{height:138.816000px;}
.hb{height:172.110000px;}
.ha{height:222.150000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:58.896000px;}
.w5{width:244.650000px;}
.w4{width:478.515000px;}
.w6{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:8.100000px;}
.xe{left:10.620000px;}
.x3{left:18.900000px;}
.xc{left:61.194000px;}
.xd{left:63.894000px;}
.x1{left:95.795987px;}
.x13{left:100.655987px;}
.x24{left:105.515987px;}
.x28{left:127.835987px;}
.xf{left:148.895987px;}
.x5{left:195.689987px;}
.x8{left:270.569987px;}
.x12{left:311.834987px;}
.x1f{left:326.774973px;}
.x20{left:333.614987px;}
.x1d{left:343.694973px;}
.x1e{left:350.534987px;}
.x14{left:355.934973px;}
.x15{left:362.774987px;}
.x27{left:375.914987px;}
.x2{left:421.815000px;}
.x9{left:446.474987px;}
.x4{left:451.874987px;}
.x19{left:490.064973px;}
.x18{left:495.464973px;}
.x1a{left:496.904987px;}
.x6{left:501.944987px;}
.x22{left:511.124973px;}
.x1b{left:520.664973px;}
.x23{left:524.804987px;}
.x7{left:526.064987px;}
.x1c{left:527.504987px;}
.xb{left:574.305000px;}
.x21{left:705.929973px;}
.x25{left:710.429973px;}
.x10{left:718.889973px;}
.x26{left:724.109987px;}
.x11{left:725.729987px;}
.x16{left:783.689973px;}
.x17{left:790.529987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-0.800000pt;}
.lsa{letter-spacing:-0.336533pt;}
.ls14{letter-spacing:-0.320000pt;}
.ls12{letter-spacing:-0.230933pt;}
.ls7{letter-spacing:-0.160000pt;}
.ls8{letter-spacing:-0.016640pt;}
.ls6{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.024960pt;}
.ls9{letter-spacing:0.303467pt;}
.ls3{letter-spacing:0.311467pt;}
.ls1{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.336533pt;}
.ls15{letter-spacing:2.400000pt;}
.lsf{letter-spacing:4.320000pt;}
.lse{letter-spacing:7.520000pt;}
.ls4{letter-spacing:10.720000pt;}
.lsc{letter-spacing:15.840000pt;}
.ls5{letter-spacing:19.680000pt;}
.ls13{letter-spacing:20.320000pt;}
.ls10{letter-spacing:26.720000pt;}
.lsd{letter-spacing:170.080000pt;}
.ls2{letter-spacing:316.800000pt;}
.ws8{word-spacing:-19.056533pt;}
.ws0{word-spacing:-19.040000pt;}
.ws5{word-spacing:-19.031467pt;}
.ws3{word-spacing:-19.023467pt;}
.ws1{word-spacing:-18.720000pt;}
.ws2{word-spacing:-18.703360pt;}
.ws4{word-spacing:-18.383467pt;}
.ws7{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.049067pt;}
.ws6{word-spacing:0.000000pt;}
._23{margin-left:-5.166720pt;}
._10{margin-left:-3.893760pt;}
._25{margin-left:-2.856320pt;}
._31{margin-left:-1.946880pt;}
._1{margin-left:-0.973440pt;}
._0{width:1.532160pt;}
._18{width:2.620800pt;}
._19{width:3.669120pt;}
._16{width:4.717440pt;}
._2b{width:5.652267pt;}
._1c{width:6.716800pt;}
._1a{width:8.012160pt;}
._1b{width:9.331413pt;}
._22{width:10.371627pt;}
._8{width:11.448960pt;}
._12{width:12.879360pt;}
._1d{width:13.818667pt;}
._17{width:15.104213pt;}
._3{width:16.188587pt;}
._2{width:17.388160pt;}
._a{width:20.067840pt;}
._2e{width:21.041280pt;}
._15{width:22.208213pt;}
._2f{width:23.437440pt;}
._2a{width:24.410880pt;}
._26{width:25.833600pt;}
._11{width:27.181440pt;}
._27{width:28.091307pt;}
._9{width:29.203200pt;}
._2d{width:31.599360pt;}
._30{width:35.493120pt;}
._5{width:40.516480pt;}
._4{width:41.465387pt;}
._b{width:43.130880pt;}
._24{width:44.853120pt;}
._28{width:45.901440pt;}
._14{width:47.473920pt;}
._32{width:49.121280pt;}
._7{width:50.769920pt;}
._29{width:52.790400pt;}
._f{width:54.138240pt;}
._2c{width:55.036800pt;}
._20{width:60.802560pt;}
._21{width:61.850880pt;}
._1e{width:76.815573pt;}
._c{width:115.090560pt;}
._13{width:132.912000pt;}
._6{width:147.269760pt;}
._e{width:167.057280pt;}
._d{width:169.303680pt;}
._1f{width:170.856320pt;}
.fs3{font-size:34.560000pt;}
.fs2{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:2.560000pt;}
.y12{bottom:7.200000pt;}
.yc{bottom:7.360000pt;}
.y21{bottom:12.200000pt;}
.y11{bottom:31.840000pt;}
.y20{bottom:36.840000pt;}
.y2{bottom:46.720000pt;}
.y1{bottom:51.200000pt;}
.y10{bottom:56.640000pt;}
.y1f{bottom:61.480000pt;}
.y19{bottom:81.306667pt;}
.yf{bottom:81.320000pt;}
.y4d{bottom:84.832000pt;}
.y1e{bottom:86.280000pt;}
.y4c{bottom:89.472000pt;}
.y55{bottom:100.192000pt;}
.y4b{bottom:101.312000pt;}
.y54{bottom:104.832000pt;}
.y18{bottom:105.946667pt;}
.ye{bottom:105.960000pt;}
.y1d{bottom:110.920000pt;}
.y53{bottom:115.552000pt;}
.y61{bottom:116.672000pt;}
.y52{bottom:120.192000pt;}
.y17{bottom:130.746667pt;}
.y5c{bottom:130.912000pt;}
.y51{bottom:132.032000pt;}
.y28{bottom:132.992000pt;}
.y5b{bottom:135.546667pt;}
.y1c{bottom:135.560000pt;}
.y5a{bottom:147.386667pt;}
.y16{bottom:155.386667pt;}
.y27{bottom:157.626667pt;}
.y15{bottom:180.026667pt;}
.y4a{bottom:180.666667pt;}
.y26{bottom:182.266667pt;}
.y49{bottom:205.306667pt;}
.y25{bottom:207.066667pt;}
.y48{bottom:229.946667pt;}
.y24{bottom:231.706667pt;}
.y5f{bottom:236.666667pt;}
.y47{bottom:254.746667pt;}
.y23{bottom:256.346667pt;}
.y45{bottom:279.386667pt;}
.y22{bottom:280.986667pt;}
.y46{bottom:286.106667pt;}
.y1b{bottom:298.426667pt;}
.y44{bottom:304.066667pt;}
.y43{bottom:328.866667pt;}
.y42{bottom:353.506667pt;}
.y59{bottom:360.226667pt;}
.y41{bottom:378.146667pt;}
.y40{bottom:402.786667pt;}
.y3f{bottom:427.586667pt;}
.y1a{bottom:452.066667pt;}
.y3e{bottom:452.226667pt;}
.y3d{bottom:476.866667pt;}
.y14{bottom:477.506667pt;}
.y3c{bottom:501.506667pt;}
.y60{bottom:508.226667pt;}
.y3b{bottom:526.306667pt;}
.y3a{bottom:550.973333pt;}
.y39{bottom:575.613333pt;}
.y5e{bottom:582.333333pt;}
.y38{bottom:600.413333pt;}
.y50{bottom:607.133333pt;}
.y37{bottom:625.053333pt;}
.y58{bottom:631.773333pt;}
.y36{bottom:649.693333pt;}
.y35{bottom:674.333333pt;}
.y13{bottom:675.613333pt;}
.y34{bottom:699.133333pt;}
.yd{bottom:701.053333pt;}
.y33{bottom:723.773333pt;}
.y32{bottom:748.413333pt;}
.y31{bottom:773.213333pt;}
.y4f{bottom:779.973333pt;}
.y30{bottom:797.893333pt;}
.y57{bottom:804.613333pt;}
.y2f{bottom:822.533333pt;}
.yb{bottom:825.093333pt;}
.y2e{bottom:847.173333pt;}
.ya{bottom:857.733333pt;}
.y2d{bottom:871.973333pt;}
.y9{bottom:882.373333pt;}
.y2c{bottom:896.613333pt;}
.y5d{bottom:903.333333pt;}
.y8{bottom:907.173333pt;}
.y2b{bottom:921.253333pt;}
.y7{bottom:931.813333pt;}
.y2a{bottom:945.893333pt;}
.y6{bottom:957.573333pt;}
.y29{bottom:970.693333pt;}
.y5{bottom:995.333333pt;}
.y4e{bottom:1002.053333pt;}
.y4{bottom:1020.000000pt;}
.y56{bottom:1026.720000pt;}
.h3{height:20.032000pt;}
.hd{height:24.131250pt;}
.h8{height:24.800000pt;}
.hc{height:33.515625pt;}
.he{height:37.090625pt;}
.h2{height:52.284375pt;}
.h5{height:52.430625pt;}
.h4{height:52.832812pt;}
.h7{height:54.734062pt;}
.h6{height:60.057813pt;}
.h9{height:123.392000pt;}
.hb{height:152.986667pt;}
.ha{height:197.466667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:52.352000pt;}
.w5{width:217.466667pt;}
.w4{width:425.346667pt;}
.w6{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:7.200000pt;}
.xe{left:9.440000pt;}
.x3{left:16.800000pt;}
.xc{left:54.394667pt;}
.xd{left:56.794667pt;}
.x1{left:85.151988pt;}
.x13{left:89.471988pt;}
.x24{left:93.791988pt;}
.x28{left:113.631988pt;}
.xf{left:132.351988pt;}
.x5{left:173.946655pt;}
.x8{left:240.506655pt;}
.x12{left:277.186655pt;}
.x1f{left:290.466643pt;}
.x20{left:296.546655pt;}
.x1d{left:305.506643pt;}
.x1e{left:311.586655pt;}
.x14{left:316.386643pt;}
.x15{left:322.466655pt;}
.x27{left:334.146655pt;}
.x2{left:374.946667pt;}
.x9{left:396.866655pt;}
.x4{left:401.666655pt;}
.x19{left:435.613310pt;}
.x18{left:440.413310pt;}
.x1a{left:441.693322pt;}
.x6{left:446.173322pt;}
.x22{left:454.333310pt;}
.x1b{left:462.813310pt;}
.x23{left:466.493322pt;}
.x7{left:467.613322pt;}
.x1c{left:468.893322pt;}
.xb{left:510.493333pt;}
.x21{left:627.493310pt;}
.x25{left:631.493310pt;}
.x10{left:639.013310pt;}
.x26{left:643.653322pt;}
.x11{left:645.093322pt;}
.x16{left:696.613310pt;}
.x17{left:702.693322pt;}
}




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