
    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_c081a030cdbd3701a15ced37.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_b35e06174023e649fd619aa6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.435059;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_9cc7df4f9c627711e19b5c11.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_a5036d06d46cf43ac7f6868c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_fd88aed74ef7b14cf6fb3fe5.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_2c38f89b59ecee1196483af2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.372070;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_840d338669453a3b0cd5dd91.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.096191;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;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.384000px;}
.ls0{letter-spacing:0.600000px;}
.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;}
}
.ws3{word-spacing:-18.384000px;}
.ws1{word-spacing:-18.000000px;}
.ws0{word-spacing:-15.000000px;}
.ws2{word-spacing:0.000000px;}
._1a{margin-left:-9.576000px;}
._16{margin-left:-7.560000px;}
._4{margin-left:-6.336000px;}
._3{margin-left:-5.112000px;}
._e{margin-left:-4.020000px;}
._2{margin-left:-2.640000px;}
._1{margin-left:-1.200000px;}
._0{width:1.380000px;}
._5{width:2.646000px;}
._b{width:4.038000px;}
._6{width:5.682000px;}
._7{width:7.344000px;}
._10{width:8.532000px;}
._12{width:9.744000px;}
._14{width:11.052000px;}
._9{width:12.216000px;}
._8{width:13.392000px;}
._c{width:14.820000px;}
._11{width:16.188000px;}
._f{width:19.608000px;}
._d{width:20.628000px;}
._13{width:22.182000px;}
._a{width:24.156000px;}
._1e{width:25.992000px;}
._1f{width:27.576000px;}
._15{width:30.384000px;}
._1d{width:57.960000px;}
._1c{width:59.604000px;}
._19{width:71.964000px;}
._1b{width:103.392000px;}
._18{width:161.328000px;}
._17{width:176.520000px;}
.fc1{color:rgb(0,112,192);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:39.600000px;}
.fs4{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y47{bottom:6.900000px;}
.y40{bottom:7.200000px;}
.y49{bottom:30.600000px;}
.y3f{bottom:30.900000px;}
.y61{bottom:30.915000px;}
.y43{bottom:54.600000px;}
.y3e{bottom:54.630000px;}
.y6{bottom:68.737500px;}
.y46{bottom:78.300000px;}
.y42{bottom:78.600000px;}
.y33{bottom:89.437500px;}
.y32{bottom:94.837500px;}
.y8b{bottom:101.137500px;}
.y45{bottom:102.345000px;}
.y31{bottom:108.337500px;}
.y8a{bottom:124.837500px;}
.y6f{bottom:127.537500px;}
.y3b{bottom:132.337500px;}
.y3a{bottom:139.837500px;}
.y30{bottom:145.237500px;}
.y89{bottom:148.837500px;}
.y50{bottom:156.630000px;}
.y6e{bottom:158.130000px;}
.y6d{bottom:165.630000px;}
.y2f{bottom:168.975000px;}
.y88{bottom:172.575000px;}
.y39{bottom:175.875000px;}
.y6c{bottom:181.875000px;}
.y4f{bottom:188.175000px;}
.y2e{bottom:192.675000px;}
.y87{bottom:196.275000px;}
.y38{bottom:206.475000px;}
.y4e{bottom:212.175000px;}
.y37{bottom:213.975000px;}
.y2d{bottom:216.675000px;}
.y86{bottom:220.275000px;}
.y6b{bottom:224.775000px;}
.y36{bottom:230.775000px;}
.y6a{bottom:232.275000px;}
.y4d{bottom:235.875000px;}
.y2b{bottom:240.375000px;}
.y85{bottom:243.975000px;}
.y2c{bottom:247.275000px;}
.y69{bottom:249.075000px;}
.y4c{bottom:259.875000px;}
.y2a{bottom:264.375000px;}
.y84{bottom:267.675000px;}
.y4b{bottom:283.575000px;}
.y29{bottom:288.075000px;}
.y83{bottom:291.675000px;}
.y4a{bottom:300.975000px;}
.y67{bottom:304.275000px;}
.y68{bottom:311.175000px;}
.y28{bottom:311.775000px;}
.y82{bottom:315.375000px;}
.y66{bottom:328.275000px;}
.y27{bottom:335.775000px;}
.y81{bottom:339.120000px;}
.y48{bottom:349.605000px;}
.y65{bottom:352.005000px;}
.y26{bottom:359.505000px;}
.y80{bottom:363.120000px;}
.y64{bottom:375.720000px;}
.y25{bottom:383.205000px;}
.y7f{bottom:386.820000px;}
.y63{bottom:399.705000px;}
.y24{bottom:407.205000px;}
.y7e{bottom:410.505000px;}
.y62{bottom:417.105000px;}
.y44{bottom:421.605000px;}
.y23{bottom:430.920000px;}
.y7d{bottom:434.505000px;}
.y22{bottom:454.620000px;}
.y7c{bottom:458.205000px;}
.y60{bottom:465.405000px;}
.y21{bottom:478.620000px;}
.y7b{bottom:481.905000px;}
.y20{bottom:502.305000px;}
.y7a{bottom:505.905000px;}
.y35{bottom:509.250000px;}
.y5f{bottom:513.750000px;}
.y1f{bottom:526.050000px;}
.y79{bottom:529.650000px;}
.y41{bottom:541.350000px;}
.y1e{bottom:550.050000px;}
.y78{bottom:553.350000px;}
.y5e{bottom:562.350000px;}
.y1d{bottom:573.750000px;}
.y77{bottom:577.350000px;}
.y5d{bottom:593.850000px;}
.y1c{bottom:597.450000px;}
.y76{bottom:601.050000px;}
.y5c{bottom:617.550000px;}
.y1b{bottom:621.450000px;}
.y75{bottom:624.750000px;}
.y3d{bottom:637.350000px;}
.y5b{bottom:641.550000px;}
.y1a{bottom:645.150000px;}
.y74{bottom:648.750000px;}
.y5a{bottom:665.250000px;}
.y19{bottom:668.850000px;}
.y73{bottom:672.450000px;}
.y59{bottom:688.980000px;}
.y18{bottom:692.880000px;}
.y72{bottom:696.180000px;}
.y58{bottom:712.980000px;}
.y17{bottom:716.580000px;}
.y71{bottom:720.195000px;}
.y57{bottom:736.680000px;}
.y70{bottom:739.980000px;}
.y16{bottom:740.280000px;}
.y56{bottom:760.380000px;}
.y15{bottom:764.280000px;}
.y55{bottom:784.380000px;}
.y14{bottom:787.995000px;}
.y54{bottom:801.795000px;}
.y13{bottom:811.695000px;}
.y12{bottom:835.695000px;}
.y53{bottom:850.125000px;}
.y11{bottom:859.425000px;}
.y52{bottom:874.725000px;}
.y10{bottom:883.125000px;}
.y34{bottom:890.025000px;}
.yf{bottom:907.125000px;}
.y51{bottom:923.025000px;}
.ye{bottom:930.825000px;}
.yd{bottom:954.525000px;}
.yc{bottom:978.525000px;}
.yb{bottom:1002.225000px;}
.ya{bottom:1025.955000px;}
.y9{bottom:1049.955000px;}
.y8{bottom:1073.655000px;}
.y7{bottom:1097.655000px;}
.y3c{bottom:1104.570000px;}
.y5{bottom:1130.355000px;}
.y4{bottom:1162.155000px;}
.y3{bottom:1191.600000px;}
.y2{bottom:1220.700000px;}
.y1{bottom:1238.100000px;}
.h19{height:23.700000px;}
.h18{height:24.000000px;}
.hd{height:39.387305px;}
.h2{height:42.333984px;}
.hb{height:47.109375px;}
.h17{height:47.700000px;}
.h16{height:47.737500px;}
.h9{height:50.273438px;}
.h6{height:50.800781px;}
.hf{height:52.998047px;}
.h10{height:58.652344px;}
.h11{height:58.886719px;}
.he{height:59.677734px;}
.h3{height:62.460938px;}
.h5{height:64.775391px;}
.ha{height:70.664062px;}
.h15{height:71.400000px;}
.h12{height:71.437500px;}
.h8{height:71.824219px;}
.h7{height:74.953125px;}
.hc{height:82.441406px;}
.h4{height:87.445312px;}
.h13{height:95.400000px;}
.h14{height:119.137500px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w8{width:30.900000px;}
.w4{width:41.400000px;}
.w6{width:116.137500px;}
.w7{width:123.337500px;}
.wc{width:139.575000px;}
.w10{width:147.675000px;}
.wa{width:148.237500px;}
.we{width:159.045000px;}
.wd{width:169.275000px;}
.wf{width:180.030000px;}
.wb{width:188.430000px;}
.w5{width:190.575000px;}
.w9{width:190.875000px;}
.w3{width:893.099973px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:7.800000px;}
.x3{left:84.937487px;}
.xf{left:90.037487px;}
.x14{left:91.837487px;}
.x9{left:95.737487px;}
.x21{left:117.337500px;}
.x6{left:118.537487px;}
.x19{left:128.137500px;}
.x7{left:297.404987px;}
.xe{left:301.019987px;}
.x22{left:308.820000px;}
.x12{left:315.419973px;}
.x15{left:317.219973px;}
.x1a{left:319.320000px;}
.x13{left:321.404987px;}
.x16{left:323.219987px;}
.x24{left:327.404987px;}
.xb{left:334.904987px;}
.xa{left:343.919987px;}
.x4{left:350.819987px;}
.x20{left:357.719987px;}
.xc{left:409.619973px;}
.xd{left:415.649987px;}
.x5{left:428.549987px;}
.x1b{left:436.350000px;}
.x8{left:446.249987px;}
.x2{left:457.049987px;}
.x1{left:510.449987px;}
.x1e{left:535.379973px;}
.x10{left:539.594973px;}
.x1f{left:541.394987px;}
.x11{left:545.579987px;}
.x1c{left:553.095000px;}
.x26{left:613.994973px;}
.x27{left:619.979987px;}
.x25{left:638.595000px;}
.x23{left:646.695000px;}
.x1d{left:670.125000px;}
.x28{left:692.624987px;}
.x17{left:749.924987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.341333pt;}
.ls0{letter-spacing:0.533333pt;}
.ws3{word-spacing:-16.341333pt;}
.ws1{word-spacing:-16.000000pt;}
.ws0{word-spacing:-13.333333pt;}
.ws2{word-spacing:0.000000pt;}
._1a{margin-left:-8.512000pt;}
._16{margin-left:-6.720000pt;}
._4{margin-left:-5.632000pt;}
._3{margin-left:-4.544000pt;}
._e{margin-left:-3.573333pt;}
._2{margin-left:-2.346667pt;}
._1{margin-left:-1.066667pt;}
._0{width:1.226667pt;}
._5{width:2.352000pt;}
._b{width:3.589333pt;}
._6{width:5.050667pt;}
._7{width:6.528000pt;}
._10{width:7.584000pt;}
._12{width:8.661333pt;}
._14{width:9.824000pt;}
._9{width:10.858667pt;}
._8{width:11.904000pt;}
._c{width:13.173333pt;}
._11{width:14.389333pt;}
._f{width:17.429333pt;}
._d{width:18.336000pt;}
._13{width:19.717333pt;}
._a{width:21.472000pt;}
._1e{width:23.104000pt;}
._1f{width:24.512000pt;}
._15{width:27.008000pt;}
._1d{width:51.520000pt;}
._1c{width:52.981333pt;}
._19{width:63.968000pt;}
._1b{width:91.904000pt;}
._18{width:143.402667pt;}
._17{width:156.906667pt;}
.fs5{font-size:35.200000pt;}
.fs4{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y47{bottom:6.133333pt;}
.y40{bottom:6.400000pt;}
.y49{bottom:27.200000pt;}
.y3f{bottom:27.466667pt;}
.y61{bottom:27.480000pt;}
.y43{bottom:48.533333pt;}
.y3e{bottom:48.560000pt;}
.y6{bottom:61.100000pt;}
.y46{bottom:69.600000pt;}
.y42{bottom:69.866667pt;}
.y33{bottom:79.500000pt;}
.y32{bottom:84.300000pt;}
.y8b{bottom:89.900000pt;}
.y45{bottom:90.973333pt;}
.y31{bottom:96.300000pt;}
.y8a{bottom:110.966667pt;}
.y6f{bottom:113.366667pt;}
.y3b{bottom:117.633333pt;}
.y3a{bottom:124.300000pt;}
.y30{bottom:129.100000pt;}
.y89{bottom:132.300000pt;}
.y50{bottom:139.226667pt;}
.y6e{bottom:140.560000pt;}
.y6d{bottom:147.226667pt;}
.y2f{bottom:150.200000pt;}
.y88{bottom:153.400000pt;}
.y39{bottom:156.333333pt;}
.y6c{bottom:161.666667pt;}
.y4f{bottom:167.266667pt;}
.y2e{bottom:171.266667pt;}
.y87{bottom:174.466667pt;}
.y38{bottom:183.533333pt;}
.y4e{bottom:188.600000pt;}
.y37{bottom:190.200000pt;}
.y2d{bottom:192.600000pt;}
.y86{bottom:195.800000pt;}
.y6b{bottom:199.800000pt;}
.y36{bottom:205.133333pt;}
.y6a{bottom:206.466667pt;}
.y4d{bottom:209.666667pt;}
.y2b{bottom:213.666667pt;}
.y85{bottom:216.866667pt;}
.y2c{bottom:219.800000pt;}
.y69{bottom:221.400000pt;}
.y4c{bottom:231.000000pt;}
.y2a{bottom:235.000000pt;}
.y84{bottom:237.933333pt;}
.y4b{bottom:252.066667pt;}
.y29{bottom:256.066667pt;}
.y83{bottom:259.266667pt;}
.y4a{bottom:267.533333pt;}
.y67{bottom:270.466667pt;}
.y68{bottom:276.600000pt;}
.y28{bottom:277.133333pt;}
.y82{bottom:280.333333pt;}
.y66{bottom:291.800000pt;}
.y27{bottom:298.466667pt;}
.y81{bottom:301.440000pt;}
.y48{bottom:310.760000pt;}
.y65{bottom:312.893333pt;}
.y26{bottom:319.560000pt;}
.y80{bottom:322.773333pt;}
.y64{bottom:333.973333pt;}
.y25{bottom:340.626667pt;}
.y7f{bottom:343.840000pt;}
.y63{bottom:355.293333pt;}
.y24{bottom:361.960000pt;}
.y7e{bottom:364.893333pt;}
.y62{bottom:370.760000pt;}
.y44{bottom:374.760000pt;}
.y23{bottom:383.040000pt;}
.y7d{bottom:386.226667pt;}
.y22{bottom:404.106667pt;}
.y7c{bottom:407.293333pt;}
.y60{bottom:413.693333pt;}
.y21{bottom:425.440000pt;}
.y7b{bottom:428.360000pt;}
.y20{bottom:446.493333pt;}
.y7a{bottom:449.693333pt;}
.y35{bottom:452.666667pt;}
.y5f{bottom:456.666667pt;}
.y1f{bottom:467.600000pt;}
.y79{bottom:470.800000pt;}
.y41{bottom:481.200000pt;}
.y1e{bottom:488.933333pt;}
.y78{bottom:491.866667pt;}
.y5e{bottom:499.866667pt;}
.y1d{bottom:510.000000pt;}
.y77{bottom:513.200000pt;}
.y5d{bottom:527.866667pt;}
.y1c{bottom:531.066667pt;}
.y76{bottom:534.266667pt;}
.y5c{bottom:548.933333pt;}
.y1b{bottom:552.400000pt;}
.y75{bottom:555.333333pt;}
.y3d{bottom:566.533333pt;}
.y5b{bottom:570.266667pt;}
.y1a{bottom:573.466667pt;}
.y74{bottom:576.666667pt;}
.y5a{bottom:591.333333pt;}
.y19{bottom:594.533333pt;}
.y73{bottom:597.733333pt;}
.y59{bottom:612.426667pt;}
.y18{bottom:615.893333pt;}
.y72{bottom:618.826667pt;}
.y58{bottom:633.760000pt;}
.y17{bottom:636.960000pt;}
.y71{bottom:640.173333pt;}
.y57{bottom:654.826667pt;}
.y70{bottom:657.760000pt;}
.y16{bottom:658.026667pt;}
.y56{bottom:675.893333pt;}
.y15{bottom:679.360000pt;}
.y55{bottom:697.226667pt;}
.y14{bottom:700.440000pt;}
.y54{bottom:712.706667pt;}
.y13{bottom:721.506667pt;}
.y12{bottom:742.840000pt;}
.y53{bottom:755.666667pt;}
.y11{bottom:763.933333pt;}
.y52{bottom:777.533333pt;}
.y10{bottom:785.000000pt;}
.y34{bottom:791.133333pt;}
.yf{bottom:806.333333pt;}
.y51{bottom:820.466667pt;}
.ye{bottom:827.400000pt;}
.yd{bottom:848.466667pt;}
.yc{bottom:869.800000pt;}
.yb{bottom:890.866667pt;}
.ya{bottom:911.960000pt;}
.y9{bottom:933.293333pt;}
.y8{bottom:954.360000pt;}
.y7{bottom:975.693333pt;}
.y3c{bottom:981.840000pt;}
.y5{bottom:1004.760000pt;}
.y4{bottom:1033.026667pt;}
.y3{bottom:1059.200000pt;}
.y2{bottom:1085.066667pt;}
.y1{bottom:1100.533333pt;}
.h19{height:21.066667pt;}
.h18{height:21.333333pt;}
.hd{height:35.010937pt;}
.h2{height:37.630208pt;}
.hb{height:41.875000pt;}
.h17{height:42.400000pt;}
.h16{height:42.433333pt;}
.h9{height:44.687500pt;}
.h6{height:45.156250pt;}
.hf{height:47.109375pt;}
.h10{height:52.135417pt;}
.h11{height:52.343750pt;}
.he{height:53.046875pt;}
.h3{height:55.520833pt;}
.h5{height:57.578125pt;}
.ha{height:62.812500pt;}
.h15{height:63.466667pt;}
.h12{height:63.500000pt;}
.h8{height:63.843750pt;}
.h7{height:66.625000pt;}
.hc{height:73.281250pt;}
.h4{height:77.729167pt;}
.h13{height:84.800000pt;}
.h14{height:105.900000pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w8{width:27.466667pt;}
.w4{width:36.800000pt;}
.w6{width:103.233333pt;}
.w7{width:109.633333pt;}
.wc{width:124.066667pt;}
.w10{width:131.266667pt;}
.wa{width:131.766667pt;}
.we{width:141.373333pt;}
.wd{width:150.466667pt;}
.wf{width:160.026667pt;}
.wb{width:167.493333pt;}
.w5{width:169.400000pt;}
.w9{width:169.666667pt;}
.w3{width:793.866643pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:6.933333pt;}
.x3{left:75.499988pt;}
.xf{left:80.033322pt;}
.x14{left:81.633322pt;}
.x9{left:85.099988pt;}
.x21{left:104.300000pt;}
.x6{left:105.366655pt;}
.x19{left:113.900000pt;}
.x7{left:264.359988pt;}
.xe{left:267.573322pt;}
.x22{left:274.506667pt;}
.x12{left:280.373310pt;}
.x15{left:281.973310pt;}
.x1a{left:283.840000pt;}
.x13{left:285.693322pt;}
.x16{left:287.306655pt;}
.x24{left:291.026655pt;}
.xb{left:297.693322pt;}
.xa{left:305.706655pt;}
.x4{left:311.839988pt;}
.x20{left:317.973322pt;}
.xc{left:364.106643pt;}
.xd{left:369.466655pt;}
.x5{left:380.933322pt;}
.x1b{left:387.866667pt;}
.x8{left:396.666655pt;}
.x2{left:406.266655pt;}
.x1{left:453.733322pt;}
.x1e{left:475.893310pt;}
.x10{left:479.639976pt;}
.x1f{left:481.239988pt;}
.x11{left:484.959988pt;}
.x1c{left:491.640000pt;}
.x26{left:545.773310pt;}
.x27{left:551.093322pt;}
.x25{left:567.640000pt;}
.x23{left:574.840000pt;}
.x1d{left:595.666667pt;}
.x28{left:615.666655pt;}
.x17{left:666.599988pt;}
}




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