
    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_3d9ff5f380f9dc48450e146b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.007000;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_d107ec6eb492eb3df0de70cd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;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(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;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.048000px;}
.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:-31.200000px;}
.ws1{word-spacing:-17.160000px;}
.ws2{word-spacing:0.000000px;}
.ws3{word-spacing:1161.312000px;}
._2{width:1.980000px;}
._3{width:3.036000px;}
._4{width:4.290000px;}
._5{width:5.412000px;}
._8{width:6.600000px;}
._6{width:9.504000px;}
._7{width:10.560000px;}
._0{width:19.074000px;}
._1{width:20.130000px;}
._9{width:697.290000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(17,106,120);}
.fs3{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs2{font-size:84.000000px;}
.fs4{font-size:90.000000px;}
.fs5{font-size:96.000000px;}
.fs0{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y18{bottom:35.058000px;}
.y30{bottom:57.558000px;}
.y2f{bottom:80.058000px;}
.y2e{bottom:102.558000px;}
.y7f{bottom:134.883000px;}
.yf7{bottom:136.233000px;}
.ye5{bottom:144.858000px;}
.y92{bottom:149.733000px;}
.yba{bottom:159.108000px;}
.y3b{bottom:163.608000px;}
.yd1{bottom:169.608000px;}
.y7e{bottom:175.758000px;}
.yf6{bottom:177.108000px;}
.ye4{bottom:185.733000px;}
.ya5{bottom:197.358000px;}
.y3a{bottom:198.858000px;}
.yb9{bottom:199.983000px;}
.y91{bottom:201.483000px;}
.y6b{bottom:202.458000px;}
.yd0{bottom:210.483000px;}
.ye3{bottom:211.608000px;}
.y7d{bottom:216.633000px;}
.yf5{bottom:217.983000px;}
.y2d{bottom:226.233000px;}
.y39{bottom:234.108000px;}
.ycf{bottom:236.358000px;}
.y58{bottom:237.783000px;}
.ya4{bottom:238.233000px;}
.yb8{bottom:240.858000px;}
.ye2{bottom:241.983000px;}
.y90{bottom:242.358000px;}
.y17{bottom:242.883000px;}
.y6a{bottom:243.333000px;}
.y2c{bottom:252.108000px;}
.y7c{bottom:257.508000px;}
.yf4{bottom:258.858000px;}
.y57{bottom:263.658000px;}
.y8f{bottom:268.233000px;}
.y16{bottom:268.758000px;}
.y38{bottom:269.358000px;}
.y69{bottom:275.808000px;}
.ye1{bottom:276.858000px;}
.yce{bottom:277.233000px;}
.y2b{bottom:277.983000px;}
.ya3{bottom:279.108000px;}
.yb7{bottom:281.733000px;}
.y56{bottom:289.533000px;}
.y15{bottom:294.633000px;}
.y7b{bottom:298.383000px;}
.yf3{bottom:299.733000px;}
.y37{bottom:303.858000px;}
.ya2{bottom:304.983000px;}
.y8e{bottom:309.108000px;}
.y55{bottom:315.408000px;}
.ye0{bottom:317.733000px;}
.ycd{bottom:318.108000px;}
.y14{bottom:320.508000px;}
.yb6{bottom:322.608000px;}
.y7a{bottom:324.258000px;}
.y2a{bottom:329.733000px;}
.y68{bottom:334.158000px;}
.yf2{bottom:340.608000px;}
.y54{bottom:341.283000px;}
.ya1{bottom:345.858000px;}
.y13{bottom:346.383000px;}
.y8d{bottom:349.983000px;}
.y79{bottom:350.133000px;}
.y29{bottom:355.608000px;}
.ydf{bottom:358.608000px;}
.ycc{bottom:358.983000px;}
.yb5{bottom:363.483000px;}
.yf1{bottom:370.983000px;}
.y67{bottom:375.033000px;}
.y78{bottom:376.008000px;}
.y5f{bottom:381.483000px;}
.ya0{bottom:386.733000px;}
.y8c{bottom:390.858000px;}
.y12{bottom:398.133000px;}
.yde{bottom:399.483000px;}
.ycb{bottom:399.858000px;}
.yb4{bottom:404.358000px;}
.yf0{bottom:405.858000px;}
.y28{bottom:407.358000px;}
.y36{bottom:414.633000px;}
.y66{bottom:415.908000px;}
.y77{bottom:416.883000px;}
.y9f{bottom:417.108000px;}
.y11{bottom:424.008000px;}
.yca{bottom:425.733000px;}
.y8b{bottom:431.733000px;}
.ydd{bottom:440.358000px;}
.yb3{bottom:445.233000px;}
.y35{bottom:445.308000px;}
.yef{bottom:446.733000px;}
.y65{bottom:448.383000px;}
.y10{bottom:449.883000px;}
.y9e{bottom:451.983000px;}
.y76{bottom:457.758000px;}
.y5e{bottom:459.108000px;}
.ydc{bottom:466.233000px;}
.yc9{bottom:466.608000px;}
.y53{bottom:470.658000px;}
.y8a{bottom:472.608000px;}
.yf{bottom:475.758000px;}
.y34{bottom:475.983000px;}
.y5d{bottom:484.983000px;}
.yb2{bottom:486.108000px;}
.y9d{bottom:486.858000px;}
.yee{bottom:487.608000px;}
.y52{bottom:496.533000px;}
.y75{bottom:498.633000px;}
.y64{bottom:506.733000px;}
.ydb{bottom:507.108000px;}
.yc8{bottom:507.483000px;}
.y33{bottom:509.808000px;}
.y5c{bottom:510.858000px;}
.ye{bottom:516.633000px;}
.yed{bottom:517.983000px;}
.y51{bottom:522.408000px;}
.y89{bottom:524.358000px;}
.y74{bottom:524.508000px;}
.yb1{bottom:526.983000px;}
.y9c{bottom:527.733000px;}
.y63{bottom:532.608000px;}
.y27{bottom:536.733000px;}
.yd{bottom:542.508000px;}
.yda{bottom:547.983000px;}
.y50{bottom:548.283000px;}
.yc7{bottom:548.358000px;}
.y88{bottom:550.233000px;}
.yec{bottom:552.858000px;}
.y73{bottom:554.883000px;}
.y26{bottom:562.608000px;}
.yb0{bottom:567.858000px;}
.yc{bottom:568.383000px;}
.y9b{bottom:568.608000px;}
.y62{bottom:573.483000px;}
.y4f{bottom:574.158000px;}
.y5b{bottom:588.483000px;}
.yd9{bottom:588.858000px;}
.yc6{bottom:589.233000px;}
.y72{bottom:589.758000px;}
.yeb{bottom:593.733000px;}
.yb{bottom:594.258000px;}
.y9a{bottom:598.983000px;}
.y61{bottom:599.358000px;}
.y87{bottom:601.983000px;}
.yaf{bottom:608.733000px;}
.y25{bottom:614.358000px;}
.yd8{bottom:614.733000px;}
.ya{bottom:620.133000px;}
.y4e{bottom:625.908000px;}
.y86{bottom:627.858000px;}
.yc5{bottom:630.108000px;}
.y99{bottom:633.858000px;}
.yea{bottom:634.608000px;}
.y24{bottom:640.233000px;}
.y9{bottom:646.008000px;}
.yae{bottom:649.608000px;}
.y4d{bottom:651.783000px;}
.yd7{bottom:655.608000px;}
.y60{bottom:666.108000px;}
.y85{bottom:668.733000px;}
.yc4{bottom:670.983000px;}
.y71{bottom:671.508000px;}
.y8{bottom:674.058000px;}
.ye9{bottom:675.483000px;}
.y4c{bottom:677.658000px;}
.yd6{bottom:681.483000px;}
.yad{bottom:690.483000px;}
.y23{bottom:691.983000px;}
.y84{bottom:694.608000px;}
.y4b{bottom:703.533000px;}
.yc3{bottom:711.858000px;}
.y70{bottom:712.383000px;}
.yac{bottom:716.358000px;}
.y22{bottom:717.858000px;}
.yd5{bottom:722.358000px;}
.y83{bottom:735.483000px;}
.y21{bottom:743.733000px;}
.y4a{bottom:744.408000px;}
.yc2{bottom:752.733000px;}
.yab{bottom:757.233000px;}
.y98{bottom:761.358000px;}
.yd4{bottom:763.233000px;}
.y20{bottom:769.608000px;}
.y49{bottom:770.283000px;}
.y82{bottom:776.358000px;}
.y97{bottom:787.233000px;}
.y6f{bottom:790.008000px;}
.yc1{bottom:793.608000px;}
.y1f{bottom:795.483000px;}
.y48{bottom:796.158000px;}
.yaa{bottom:798.108000px;}
.y7{bottom:801.483000px;}
.y96{bottom:813.108000px;}
.y81{bottom:817.233000px;}
.y3f{bottom:817.308000px;}
.y1e{bottom:821.358000px;}
.y47{bottom:822.033000px;}
.y6{bottom:833.958000px;}
.yc0{bottom:834.483000px;}
.ya9{bottom:838.983000px;}
.y5a{bottom:847.233000px;}
.y46{bottom:847.908000px;}
.y3e{bottom:851.808000px;}
.y95{bottom:853.983000px;}
.y80{bottom:858.108000px;}
.yfb{bottom:866.358000px;}
.y59{bottom:873.108000px;}
.y45{bottom:873.783000px;}
.ybf{bottom:875.358000px;}
.ya8{bottom:879.858000px;}
.y5{bottom:880.908000px;}
.y94{bottom:894.858000px;}
.y32{bottom:898.983000px;}
.ye8{bottom:905.733000px;}
.y6e{bottom:911.283000px;}
.y44{bottom:914.658000px;}
.ybe{bottom:916.233000px;}
.ya7{bottom:920.733000px;}
.y31{bottom:924.858000px;}
.y4{bottom:927.858000px;}
.y93{bottom:935.733000px;}
.yd3{bottom:942.108000px;}
.ye7{bottom:946.608000px;}
.yfa{bottom:948.108000px;}
.y1d{bottom:950.733000px;}
.y43{bottom:955.533000px;}
.ybd{bottom:957.108000px;}
.y6d{bottom:957.258000px;}
.ya6{bottom:961.608000px;}
.y3{bottom:974.808000px;}
.y1c{bottom:976.608000px;}
.y42{bottom:981.408000px;}
.ybc{bottom:982.983000px;}
.ye6{bottom:987.483000px;}
.yf9{bottom:988.983000px;}
.y6c{bottom:996.258000px;}
.y1b{bottom:1002.483000px;}
.y41{bottom:1007.283000px;}
.y3d{bottom:1012.533000px;}
.ybb{bottom:1013.358000px;}
.yf8{bottom:1019.358000px;}
.y2{bottom:1021.758000px;}
.yd2{bottom:1023.858000px;}
.y1a{bottom:1028.358000px;}
.y40{bottom:1039.758000px;}
.y3c{bottom:1047.783000px;}
.y19{bottom:1054.233000px;}
.h7{height:50.160000px;}
.h3{height:50.556000px;}
.h4{height:64.344000px;}
.h5{height:68.940000px;}
.h6{height:73.536000px;}
.h2{height:91.920000px;}
.h1{height:1187.956500px;}
.h0{height:1188.000000px;}
.w1{width:917.956500px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x8{left:22.800000px;}
.x4{left:108.450000px;}
.xa{left:114.900000px;}
.x1{left:118.575000px;}
.xf{left:124.050000px;}
.xe{left:132.825000px;}
.xd{left:135.375000px;}
.x12{left:138.150000px;}
.x2{left:143.700000px;}
.x13{left:168.150000px;}
.x14{left:198.150000px;}
.x9{left:247.800000px;}
.x11{left:265.725000px;}
.x5{left:304.425000px;}
.x3{left:351.525000px;}
.x10{left:389.925000px;}
.xc{left:398.700000px;}
.x7{left:402.675000px;}
.x15{left:416.850000px;}
.x6{left:423.150000px;}
.xb{left:473.925000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.042667pt;}
.ws0{word-spacing:-27.733333pt;}
.ws1{word-spacing:-15.253333pt;}
.ws2{word-spacing:0.000000pt;}
.ws3{word-spacing:1032.277333pt;}
._2{width:1.760000pt;}
._3{width:2.698667pt;}
._4{width:3.813333pt;}
._5{width:4.810667pt;}
._8{width:5.866667pt;}
._6{width:8.448000pt;}
._7{width:9.386667pt;}
._0{width:16.954667pt;}
._1{width:17.893333pt;}
._9{width:619.813333pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs2{font-size:74.666667pt;}
.fs4{font-size:80.000000pt;}
.fs5{font-size:85.333333pt;}
.fs0{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y18{bottom:31.162667pt;}
.y30{bottom:51.162667pt;}
.y2f{bottom:71.162667pt;}
.y2e{bottom:91.162667pt;}
.y7f{bottom:119.896000pt;}
.yf7{bottom:121.096000pt;}
.ye5{bottom:128.762667pt;}
.y92{bottom:133.096000pt;}
.yba{bottom:141.429333pt;}
.y3b{bottom:145.429333pt;}
.yd1{bottom:150.762667pt;}
.y7e{bottom:156.229333pt;}
.yf6{bottom:157.429333pt;}
.ye4{bottom:165.096000pt;}
.ya5{bottom:175.429333pt;}
.y3a{bottom:176.762667pt;}
.yb9{bottom:177.762667pt;}
.y91{bottom:179.096000pt;}
.y6b{bottom:179.962667pt;}
.yd0{bottom:187.096000pt;}
.ye3{bottom:188.096000pt;}
.y7d{bottom:192.562667pt;}
.yf5{bottom:193.762667pt;}
.y2d{bottom:201.096000pt;}
.y39{bottom:208.096000pt;}
.ycf{bottom:210.096000pt;}
.y58{bottom:211.362667pt;}
.ya4{bottom:211.762667pt;}
.yb8{bottom:214.096000pt;}
.ye2{bottom:215.096000pt;}
.y90{bottom:215.429333pt;}
.y17{bottom:215.896000pt;}
.y6a{bottom:216.296000pt;}
.y2c{bottom:224.096000pt;}
.y7c{bottom:228.896000pt;}
.yf4{bottom:230.096000pt;}
.y57{bottom:234.362667pt;}
.y8f{bottom:238.429333pt;}
.y16{bottom:238.896000pt;}
.y38{bottom:239.429333pt;}
.y69{bottom:245.162667pt;}
.ye1{bottom:246.096000pt;}
.yce{bottom:246.429333pt;}
.y2b{bottom:247.096000pt;}
.ya3{bottom:248.096000pt;}
.yb7{bottom:250.429333pt;}
.y56{bottom:257.362667pt;}
.y15{bottom:261.896000pt;}
.y7b{bottom:265.229333pt;}
.yf3{bottom:266.429333pt;}
.y37{bottom:270.096000pt;}
.ya2{bottom:271.096000pt;}
.y8e{bottom:274.762667pt;}
.y55{bottom:280.362667pt;}
.ye0{bottom:282.429333pt;}
.ycd{bottom:282.762667pt;}
.y14{bottom:284.896000pt;}
.yb6{bottom:286.762667pt;}
.y7a{bottom:288.229333pt;}
.y2a{bottom:293.096000pt;}
.y68{bottom:297.029333pt;}
.yf2{bottom:302.762667pt;}
.y54{bottom:303.362667pt;}
.ya1{bottom:307.429333pt;}
.y13{bottom:307.896000pt;}
.y8d{bottom:311.096000pt;}
.y79{bottom:311.229333pt;}
.y29{bottom:316.096000pt;}
.ydf{bottom:318.762667pt;}
.ycc{bottom:319.096000pt;}
.yb5{bottom:323.096000pt;}
.yf1{bottom:329.762667pt;}
.y67{bottom:333.362667pt;}
.y78{bottom:334.229333pt;}
.y5f{bottom:339.096000pt;}
.ya0{bottom:343.762667pt;}
.y8c{bottom:347.429333pt;}
.y12{bottom:353.896000pt;}
.yde{bottom:355.096000pt;}
.ycb{bottom:355.429333pt;}
.yb4{bottom:359.429333pt;}
.yf0{bottom:360.762667pt;}
.y28{bottom:362.096000pt;}
.y36{bottom:368.562667pt;}
.y66{bottom:369.696000pt;}
.y77{bottom:370.562667pt;}
.y9f{bottom:370.762667pt;}
.y11{bottom:376.896000pt;}
.yca{bottom:378.429333pt;}
.y8b{bottom:383.762667pt;}
.ydd{bottom:391.429333pt;}
.yb3{bottom:395.762667pt;}
.y35{bottom:395.829333pt;}
.yef{bottom:397.096000pt;}
.y65{bottom:398.562667pt;}
.y10{bottom:399.896000pt;}
.y9e{bottom:401.762667pt;}
.y76{bottom:406.896000pt;}
.y5e{bottom:408.096000pt;}
.ydc{bottom:414.429333pt;}
.yc9{bottom:414.762667pt;}
.y53{bottom:418.362667pt;}
.y8a{bottom:420.096000pt;}
.yf{bottom:422.896000pt;}
.y34{bottom:423.096000pt;}
.y5d{bottom:431.096000pt;}
.yb2{bottom:432.096000pt;}
.y9d{bottom:432.762667pt;}
.yee{bottom:433.429333pt;}
.y52{bottom:441.362667pt;}
.y75{bottom:443.229333pt;}
.y64{bottom:450.429333pt;}
.ydb{bottom:450.762667pt;}
.yc8{bottom:451.096000pt;}
.y33{bottom:453.162667pt;}
.y5c{bottom:454.096000pt;}
.ye{bottom:459.229333pt;}
.yed{bottom:460.429333pt;}
.y51{bottom:464.362667pt;}
.y89{bottom:466.096000pt;}
.y74{bottom:466.229333pt;}
.yb1{bottom:468.429333pt;}
.y9c{bottom:469.096000pt;}
.y63{bottom:473.429333pt;}
.y27{bottom:477.096000pt;}
.yd{bottom:482.229333pt;}
.yda{bottom:487.096000pt;}
.y50{bottom:487.362667pt;}
.yc7{bottom:487.429333pt;}
.y88{bottom:489.096000pt;}
.yec{bottom:491.429333pt;}
.y73{bottom:493.229333pt;}
.y26{bottom:500.096000pt;}
.yb0{bottom:504.762667pt;}
.yc{bottom:505.229333pt;}
.y9b{bottom:505.429333pt;}
.y62{bottom:509.762667pt;}
.y4f{bottom:510.362667pt;}
.y5b{bottom:523.096000pt;}
.yd9{bottom:523.429333pt;}
.yc6{bottom:523.762667pt;}
.y72{bottom:524.229333pt;}
.yeb{bottom:527.762667pt;}
.yb{bottom:528.229333pt;}
.y9a{bottom:532.429333pt;}
.y61{bottom:532.762667pt;}
.y87{bottom:535.096000pt;}
.yaf{bottom:541.096000pt;}
.y25{bottom:546.096000pt;}
.yd8{bottom:546.429333pt;}
.ya{bottom:551.229333pt;}
.y4e{bottom:556.362667pt;}
.y86{bottom:558.096000pt;}
.yc5{bottom:560.096000pt;}
.y99{bottom:563.429333pt;}
.yea{bottom:564.096000pt;}
.y24{bottom:569.096000pt;}
.y9{bottom:574.229333pt;}
.yae{bottom:577.429333pt;}
.y4d{bottom:579.362667pt;}
.yd7{bottom:582.762667pt;}
.y60{bottom:592.096000pt;}
.y85{bottom:594.429333pt;}
.yc4{bottom:596.429333pt;}
.y71{bottom:596.896000pt;}
.y8{bottom:599.162667pt;}
.ye9{bottom:600.429333pt;}
.y4c{bottom:602.362667pt;}
.yd6{bottom:605.762667pt;}
.yad{bottom:613.762667pt;}
.y23{bottom:615.096000pt;}
.y84{bottom:617.429333pt;}
.y4b{bottom:625.362667pt;}
.yc3{bottom:632.762667pt;}
.y70{bottom:633.229333pt;}
.yac{bottom:636.762667pt;}
.y22{bottom:638.096000pt;}
.yd5{bottom:642.096000pt;}
.y83{bottom:653.762667pt;}
.y21{bottom:661.096000pt;}
.y4a{bottom:661.696000pt;}
.yc2{bottom:669.096000pt;}
.yab{bottom:673.096000pt;}
.y98{bottom:676.762667pt;}
.yd4{bottom:678.429333pt;}
.y20{bottom:684.096000pt;}
.y49{bottom:684.696000pt;}
.y82{bottom:690.096000pt;}
.y97{bottom:699.762667pt;}
.y6f{bottom:702.229333pt;}
.yc1{bottom:705.429333pt;}
.y1f{bottom:707.096000pt;}
.y48{bottom:707.696000pt;}
.yaa{bottom:709.429333pt;}
.y7{bottom:712.429333pt;}
.y96{bottom:722.762667pt;}
.y81{bottom:726.429333pt;}
.y3f{bottom:726.496000pt;}
.y1e{bottom:730.096000pt;}
.y47{bottom:730.696000pt;}
.y6{bottom:741.296000pt;}
.yc0{bottom:741.762667pt;}
.ya9{bottom:745.762667pt;}
.y5a{bottom:753.096000pt;}
.y46{bottom:753.696000pt;}
.y3e{bottom:757.162667pt;}
.y95{bottom:759.096000pt;}
.y80{bottom:762.762667pt;}
.yfb{bottom:770.096000pt;}
.y59{bottom:776.096000pt;}
.y45{bottom:776.696000pt;}
.ybf{bottom:778.096000pt;}
.ya8{bottom:782.096000pt;}
.y5{bottom:783.029333pt;}
.y94{bottom:795.429333pt;}
.y32{bottom:799.096000pt;}
.ye8{bottom:805.096000pt;}
.y6e{bottom:810.029333pt;}
.y44{bottom:813.029333pt;}
.ybe{bottom:814.429333pt;}
.ya7{bottom:818.429333pt;}
.y31{bottom:822.096000pt;}
.y4{bottom:824.762667pt;}
.y93{bottom:831.762667pt;}
.yd3{bottom:837.429333pt;}
.ye7{bottom:841.429333pt;}
.yfa{bottom:842.762667pt;}
.y1d{bottom:845.096000pt;}
.y43{bottom:849.362667pt;}
.ybd{bottom:850.762667pt;}
.y6d{bottom:850.896000pt;}
.ya6{bottom:854.762667pt;}
.y3{bottom:866.496000pt;}
.y1c{bottom:868.096000pt;}
.y42{bottom:872.362667pt;}
.ybc{bottom:873.762667pt;}
.ye6{bottom:877.762667pt;}
.yf9{bottom:879.096000pt;}
.y6c{bottom:885.562667pt;}
.y1b{bottom:891.096000pt;}
.y41{bottom:895.362667pt;}
.y3d{bottom:900.029333pt;}
.ybb{bottom:900.762667pt;}
.yf8{bottom:906.096000pt;}
.y2{bottom:908.229333pt;}
.yd2{bottom:910.096000pt;}
.y1a{bottom:914.096000pt;}
.y40{bottom:924.229333pt;}
.y3c{bottom:931.362667pt;}
.y19{bottom:937.096000pt;}
.h7{height:44.586667pt;}
.h3{height:44.938667pt;}
.h4{height:57.194667pt;}
.h5{height:61.280000pt;}
.h6{height:65.365333pt;}
.h2{height:81.706667pt;}
.h1{height:1055.961333pt;}
.h0{height:1056.000000pt;}
.w1{width:815.961333pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x8{left:20.266667pt;}
.x4{left:96.400000pt;}
.xa{left:102.133333pt;}
.x1{left:105.400000pt;}
.xf{left:110.266667pt;}
.xe{left:118.066667pt;}
.xd{left:120.333333pt;}
.x12{left:122.800000pt;}
.x2{left:127.733333pt;}
.x13{left:149.466667pt;}
.x14{left:176.133333pt;}
.x9{left:220.266667pt;}
.x11{left:236.200000pt;}
.x5{left:270.600000pt;}
.x3{left:312.466667pt;}
.x10{left:346.600000pt;}
.xc{left:354.400000pt;}
.x7{left:357.933333pt;}
.x15{left:370.533333pt;}
.x6{left:376.133333pt;}
.xb{left:421.266667pt;}
}




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