
    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_c1ae8fba7de02b60bd8d7175.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.922852;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.003906;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_f27ca6aaa55b13f9f806c2e9.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_9e2c7bd96e4ded32f3bad6a6.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_43d860b1451ede0afb757b1f.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_cbd104668586b325c3a528cd.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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_743a492038a16cbe26007050.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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:ff8;src:url('chunks/assets/font_1fb59731381959648baae75c.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_a4dd1f14040602f12d6b82f8.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;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:ffa;src:url('chunks/assets/font_91b42d2e7fae40f414e43de4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.854004;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);}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-4.500000px;}
.ls6{letter-spacing:-2.250000px;}
.lsd{letter-spacing:-1.008000px;}
.ls4{letter-spacing:-0.468000px;}
.ls1{letter-spacing:-0.378000px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.072000px;}
.ls5{letter-spacing:0.234000px;}
.ls2{letter-spacing:0.468000px;}
.ls3{letter-spacing:0.774000px;}
.ls8{letter-spacing:6.780000px;}
.lsb{letter-spacing:9.000000px;}
.lsa{letter-spacing:13.500000px;}
.ls7{letter-spacing:18.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-54.000000px;}
.ws1{word-spacing:-53.622000px;}
.ws7{word-spacing:-18.774000px;}
.ws3{word-spacing:-18.468000px;}
.ws6{word-spacing:-18.234000px;}
.ws5{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.532000px;}
.ws8{word-spacing:-15.750000px;}
.ws9{word-spacing:-13.500000px;}
.ws2{word-spacing:0.000000px;}
._12{margin-left:-9.804000px;}
._1a{margin-left:-8.388000px;}
._16{margin-left:-6.336000px;}
._8{margin-left:-4.938000px;}
._11{margin-left:-3.858000px;}
._2{margin-left:-2.580000px;}
._0{margin-left:-1.098000px;}
._3{width:1.008000px;}
._1{width:2.220000px;}
._d{width:3.660000px;}
._e{width:4.680000px;}
._b{width:5.958000px;}
._5{width:7.128000px;}
._f{width:8.808000px;}
._13{width:9.882000px;}
._6{width:10.944000px;}
._7{width:12.144000px;}
._a{width:14.016000px;}
._c{width:15.858000px;}
._9{width:16.932000px;}
._4{width:19.794000px;}
._10{width:20.994000px;}
._1e{width:22.050000px;}
._1f{width:23.316000px;}
._19{width:24.402000px;}
._17{width:26.208000px;}
._18{width:27.216000px;}
._1c{width:28.218000px;}
._1b{width:29.448000px;}
._20{width:31.416000px;}
._22{width:33.348000px;}
._21{width:34.368000px;}
._14{width:48.672000px;}
._15{width:49.752000px;}
._1d{width:51.636000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:54.000000px;}
.fs1{font-size:60.750000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:57.937500px;}
.y46{bottom:115.350000px;}
.y4d{bottom:117.037500px;}
.y68{bottom:119.287500px;}
.y1e{bottom:123.787500px;}
.y2b{bottom:125.475000px;}
.y8b{bottom:132.225000px;}
.y3a{bottom:132.787500px;}
.y72{bottom:140.700000px;}
.y60{bottom:148.012500px;}
.y3b{bottom:151.950000px;}
.y85{bottom:153.630000px;}
.y7c{bottom:154.200000px;}
.y45{bottom:157.005000px;}
.y67{bottom:160.380000px;}
.y4c{bottom:172.200000px;}
.y2a{bottom:173.325000px;}
.y39{bottom:174.450000px;}
.y1d{bottom:178.950000px;}
.y71{bottom:181.755000px;}
.y5f{bottom:189.075000px;}
.y17{bottom:193.575000px;}
.y44{bottom:198.075000px;}
.y66{bottom:202.005000px;}
.y84{bottom:209.895000px;}
.y7b{bottom:211.005000px;}
.y1c{bottom:220.050000px;}
.y29{bottom:221.175000px;}
.y38{bottom:222.300000px;}
.y70{bottom:223.425000px;}
.y4b{bottom:226.800000px;}
.y58{bottom:227.370000px;}
.y5e{bottom:230.745000px;}
.y16{bottom:234.675000px;}
.y43{bottom:239.730000px;}
.y65{bottom:243.675000px;}
.y8a{bottom:245.370000px;}
.y1b{bottom:261.675000px;}
.y37{bottom:263.355000px;}
.y6f{bottom:265.050000px;}
.y83{bottom:266.175000px;}
.y7a{bottom:267.300000px;}
.y4a{bottom:268.425000px;}
.y28{bottom:268.995000px;}
.y5d{bottom:271.800000px;}
.y15{bottom:276.300000px;}
.y42{bottom:280.800000px;}
.y57{bottom:282.495000px;}
.y64{bottom:284.745000px;}
.y89{bottom:286.980000px;}
.y1a{bottom:302.775000px;}
.y36{bottom:305.025000px;}
.y6e{bottom:306.150000px;}
.y82{bottom:307.845000px;}
.y79{bottom:308.955000px;}
.y49{bottom:310.080000px;}
.y5c{bottom:313.455000px;}
.y27{bottom:316.830000px;}
.y14{bottom:317.400000px;}
.y41{bottom:322.455000px;}
.y63{bottom:326.400000px;}
.y88{bottom:328.080000px;}
.y56{bottom:337.080000px;}
.y19{bottom:344.400000px;}
.y35{bottom:346.095000px;}
.y6d{bottom:347.775000px;}
.y81{bottom:348.900000px;}
.y78{bottom:350.025000px;}
.y48{bottom:351.150000px;}
.y5b{bottom:355.080000px;}
.y26{bottom:358.455000px;}
.y13{bottom:359.025000px;}
.y40{bottom:364.080000px;}
.y62{bottom:367.455000px;}
.y87{bottom:369.720000px;}
.y55{bottom:378.750000px;}
.y18{bottom:382.125000px;}
.y34{bottom:387.750000px;}
.y47{bottom:388.875000px;}
.y80{bottom:390.570000px;}
.y77{bottom:391.695000px;}
.y5a{bottom:396.195000px;}
.y12{bottom:400.125000px;}
.y3f{bottom:405.195000px;}
.y61{bottom:409.125000px;}
.y54{bottom:420.375000px;}
.y86{bottom:422.070000px;}
.y33{bottom:429.375000px;}
.y6c{bottom:430.500000px;}
.y7f{bottom:431.625000px;}
.y76{bottom:432.750000px;}
.y59{bottom:433.875000px;}
.y25{bottom:441.195000px;}
.y11{bottom:441.750000px;}
.y3e{bottom:446.820000px;}
.y53{bottom:461.475000px;}
.y32{bottom:470.475000px;}
.y6b{bottom:472.155000px;}
.y7e{bottom:473.295000px;}
.y75{bottom:474.405000px;}
.y24{bottom:482.850000px;}
.y10{bottom:483.420000px;}
.y3d{bottom:487.905000px;}
.y52{bottom:503.100000px;}
.y31{bottom:512.100000px;}
.y6a{bottom:513.225000px;}
.y23{bottom:523.920000px;}
.yf{bottom:524.475000px;}
.y3c{bottom:525.600000px;}
.y74{bottom:526.725000px;}
.y51{bottom:544.200000px;}
.y69{bottom:545.325000px;}
.y30{bottom:553.200000px;}
.y22{bottom:565.575000px;}
.ye{bottom:566.130000px;}
.y50{bottom:585.825000px;}
.y2f{bottom:594.825000px;}
.yd{bottom:607.245000px;}
.y4f{bottom:627.495000px;}
.y2e{bottom:636.480000px;}
.y21{bottom:648.300000px;}
.yc{bottom:648.870000px;}
.y4e{bottom:664.620000px;}
.y2d{bottom:677.550000px;}
.y20{bottom:689.970000px;}
.yb{bottom:690.525000px;}
.y1f{bottom:727.650000px;}
.y2c{bottom:728.775000px;}
.ya{bottom:731.580000px;}
.y9{bottom:773.250000px;}
.y8{bottom:814.320000px;}
.y7{bottom:855.975000px;}
.y6{bottom:897.600000px;}
.y5{bottom:938.700000px;}
.y4{bottom:980.325000px;}
.y7d{bottom:1006.800000px;}
.y73{bottom:1007.925000px;}
.y3{bottom:1021.425000px;}
.y2{bottom:1063.050000px;}
.h3{height:50.273438px;}
.h4{height:50.414062px;}
.h2{height:50.800781px;}
.h5{height:51.346802px;}
.h1{height:60.423706px;}
.h0{height:1188.000000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x8{left:108.074986px;}
.x7{left:109.199986px;}
.xb{left:162.104986px;}
.x4{left:257.219986px;}
.x5{left:321.374986px;}
.x3{left:351.224986px;}
.x6{left:413.699986px;}
.x2{left:459.869986px;}
.xc{left:774.494986px;}
.x1{left:781.244986px;}
.xe{left:785.744986px;}
.xd{left:787.994986px;}
.x9{left:806.549986px;}
.x10{left:808.244986px;}
.xa{left:810.494986px;}
.xf{left:820.649986px;}
.x11{left:864.524986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-4.000000pt;}
.ls6{letter-spacing:-2.000000pt;}
.lsd{letter-spacing:-0.896000pt;}
.ls4{letter-spacing:-0.416000pt;}
.ls1{letter-spacing:-0.336000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.064000pt;}
.ls5{letter-spacing:0.208000pt;}
.ls2{letter-spacing:0.416000pt;}
.ls3{letter-spacing:0.688000pt;}
.ls8{letter-spacing:6.026667pt;}
.lsb{letter-spacing:8.000000pt;}
.lsa{letter-spacing:12.000000pt;}
.ls7{letter-spacing:16.000000pt;}
.ws0{word-spacing:-48.000000pt;}
.ws1{word-spacing:-47.664000pt;}
.ws7{word-spacing:-16.688000pt;}
.ws3{word-spacing:-16.416000pt;}
.ws6{word-spacing:-16.208000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.584000pt;}
.ws8{word-spacing:-14.000000pt;}
.ws9{word-spacing:-12.000000pt;}
.ws2{word-spacing:0.000000pt;}
._12{margin-left:-8.714667pt;}
._1a{margin-left:-7.456000pt;}
._16{margin-left:-5.632000pt;}
._8{margin-left:-4.389333pt;}
._11{margin-left:-3.429333pt;}
._2{margin-left:-2.293333pt;}
._0{margin-left:-0.976000pt;}
._3{width:0.896000pt;}
._1{width:1.973333pt;}
._d{width:3.253333pt;}
._e{width:4.160000pt;}
._b{width:5.296000pt;}
._5{width:6.336000pt;}
._f{width:7.829333pt;}
._13{width:8.784000pt;}
._6{width:9.728000pt;}
._7{width:10.794667pt;}
._a{width:12.458667pt;}
._c{width:14.096000pt;}
._9{width:15.050667pt;}
._4{width:17.594667pt;}
._10{width:18.661333pt;}
._1e{width:19.600000pt;}
._1f{width:20.725333pt;}
._19{width:21.690667pt;}
._17{width:23.296000pt;}
._18{width:24.192000pt;}
._1c{width:25.082667pt;}
._1b{width:26.176000pt;}
._20{width:27.925333pt;}
._22{width:29.642667pt;}
._21{width:30.549333pt;}
._14{width:43.264000pt;}
._15{width:44.224000pt;}
._1d{width:45.898667pt;}
.fs0{font-size:48.000000pt;}
.fs1{font-size:54.000000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:51.500000pt;}
.y46{bottom:102.533333pt;}
.y4d{bottom:104.033333pt;}
.y68{bottom:106.033333pt;}
.y1e{bottom:110.033333pt;}
.y2b{bottom:111.533333pt;}
.y8b{bottom:117.533333pt;}
.y3a{bottom:118.033333pt;}
.y72{bottom:125.066667pt;}
.y60{bottom:131.566667pt;}
.y3b{bottom:135.066667pt;}
.y85{bottom:136.560000pt;}
.y7c{bottom:137.066667pt;}
.y45{bottom:139.560000pt;}
.y67{bottom:142.560000pt;}
.y4c{bottom:153.066667pt;}
.y2a{bottom:154.066667pt;}
.y39{bottom:155.066667pt;}
.y1d{bottom:159.066667pt;}
.y71{bottom:161.560000pt;}
.y5f{bottom:168.066667pt;}
.y17{bottom:172.066667pt;}
.y44{bottom:176.066667pt;}
.y66{bottom:179.560000pt;}
.y84{bottom:186.573333pt;}
.y7b{bottom:187.560000pt;}
.y1c{bottom:195.600000pt;}
.y29{bottom:196.600000pt;}
.y38{bottom:197.600000pt;}
.y70{bottom:198.600000pt;}
.y4b{bottom:201.600000pt;}
.y58{bottom:202.106667pt;}
.y5e{bottom:205.106667pt;}
.y16{bottom:208.600000pt;}
.y43{bottom:213.093333pt;}
.y65{bottom:216.600000pt;}
.y8a{bottom:218.106667pt;}
.y1b{bottom:232.600000pt;}
.y37{bottom:234.093333pt;}
.y6f{bottom:235.600000pt;}
.y83{bottom:236.600000pt;}
.y7a{bottom:237.600000pt;}
.y4a{bottom:238.600000pt;}
.y28{bottom:239.106667pt;}
.y5d{bottom:241.600000pt;}
.y15{bottom:245.600000pt;}
.y42{bottom:249.600000pt;}
.y57{bottom:251.106667pt;}
.y64{bottom:253.106667pt;}
.y89{bottom:255.093333pt;}
.y1a{bottom:269.133333pt;}
.y36{bottom:271.133333pt;}
.y6e{bottom:272.133333pt;}
.y82{bottom:273.640000pt;}
.y79{bottom:274.626667pt;}
.y49{bottom:275.626667pt;}
.y5c{bottom:278.626667pt;}
.y27{bottom:281.626667pt;}
.y14{bottom:282.133333pt;}
.y41{bottom:286.626667pt;}
.y63{bottom:290.133333pt;}
.y88{bottom:291.626667pt;}
.y56{bottom:299.626667pt;}
.y19{bottom:306.133333pt;}
.y35{bottom:307.640000pt;}
.y6d{bottom:309.133333pt;}
.y81{bottom:310.133333pt;}
.y78{bottom:311.133333pt;}
.y48{bottom:312.133333pt;}
.y5b{bottom:315.626667pt;}
.y26{bottom:318.626667pt;}
.y13{bottom:319.133333pt;}
.y40{bottom:323.626667pt;}
.y62{bottom:326.626667pt;}
.y87{bottom:328.640000pt;}
.y55{bottom:336.666667pt;}
.y18{bottom:339.666667pt;}
.y34{bottom:344.666667pt;}
.y47{bottom:345.666667pt;}
.y80{bottom:347.173333pt;}
.y77{bottom:348.173333pt;}
.y5a{bottom:352.173333pt;}
.y12{bottom:355.666667pt;}
.y3f{bottom:360.173333pt;}
.y61{bottom:363.666667pt;}
.y54{bottom:373.666667pt;}
.y86{bottom:375.173333pt;}
.y33{bottom:381.666667pt;}
.y6c{bottom:382.666667pt;}
.y7f{bottom:383.666667pt;}
.y76{bottom:384.666667pt;}
.y59{bottom:385.666667pt;}
.y25{bottom:392.173333pt;}
.y11{bottom:392.666667pt;}
.y3e{bottom:397.173333pt;}
.y53{bottom:410.200000pt;}
.y32{bottom:418.200000pt;}
.y6b{bottom:419.693333pt;}
.y7e{bottom:420.706667pt;}
.y75{bottom:421.693333pt;}
.y24{bottom:429.200000pt;}
.y10{bottom:429.706667pt;}
.y3d{bottom:433.693333pt;}
.y52{bottom:447.200000pt;}
.y31{bottom:455.200000pt;}
.y6a{bottom:456.200000pt;}
.y23{bottom:465.706667pt;}
.yf{bottom:466.200000pt;}
.y3c{bottom:467.200000pt;}
.y74{bottom:468.200000pt;}
.y51{bottom:483.733333pt;}
.y69{bottom:484.733333pt;}
.y30{bottom:491.733333pt;}
.y22{bottom:502.733333pt;}
.ye{bottom:503.226667pt;}
.y50{bottom:520.733333pt;}
.y2f{bottom:528.733333pt;}
.yd{bottom:539.773333pt;}
.y4f{bottom:557.773333pt;}
.y2e{bottom:565.760000pt;}
.y21{bottom:576.266667pt;}
.yc{bottom:576.773333pt;}
.y4e{bottom:590.773333pt;}
.y2d{bottom:602.266667pt;}
.y20{bottom:613.306667pt;}
.yb{bottom:613.800000pt;}
.y1f{bottom:646.800000pt;}
.y2c{bottom:647.800000pt;}
.ya{bottom:650.293333pt;}
.y9{bottom:687.333333pt;}
.y8{bottom:723.840000pt;}
.y7{bottom:760.866667pt;}
.y6{bottom:797.866667pt;}
.y5{bottom:834.400000pt;}
.y4{bottom:871.400000pt;}
.y7d{bottom:894.933333pt;}
.y73{bottom:895.933333pt;}
.y3{bottom:907.933333pt;}
.y2{bottom:944.933333pt;}
.h3{height:44.687500pt;}
.h4{height:44.812500pt;}
.h2{height:45.156250pt;}
.h5{height:45.641602pt;}
.h1{height:53.709961pt;}
.h0{height:1056.000000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x8{left:96.066655pt;}
.x7{left:97.066655pt;}
.xb{left:144.093321pt;}
.x4{left:228.639988pt;}
.x5{left:285.666655pt;}
.x3{left:312.199988pt;}
.x6{left:367.733321pt;}
.x2{left:408.773321pt;}
.xc{left:688.439988pt;}
.x1{left:694.439988pt;}
.xe{left:698.439988pt;}
.xd{left:700.439988pt;}
.x9{left:716.933321pt;}
.x10{left:718.439988pt;}
.xa{left:720.439988pt;}
.xf{left:729.466655pt;}
.x11{left:768.466655pt;}
}




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