
    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_1d110a24dd71a0847cb57f0c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.905762;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_f4300c83fba144faebd41656.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_4d40093af13b4fa9e6ff11dc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_b799b0b7a7ba1d65b01a294f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_f8c640c216e9c7ea19e12246.woff2')format("woff");}.ff5{font-family:ff5;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;}
.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;}
.v1{vertical-align:25.920000px;}
.ls0{letter-spacing:0.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:-11.992500px;}
.ws1{word-spacing:0.000000px;}
._27{margin-left:-45.362400px;}
._2d{margin-left:-37.135320px;}
._29{margin-left:-29.028240px;}
._6{margin-left:-26.019600px;}
._42{margin-left:-24.895200px;}
._26{margin-left:-21.515160px;}
._e{margin-left:-20.088000px;}
._d{margin-left:-18.228000px;}
._3b{margin-left:-13.135920px;}
._10{margin-left:-12.036600px;}
._1c{margin-left:-10.971600px;}
._c{margin-left:-6.396000px;}
._f{margin-left:-4.179600px;}
._0{margin-left:-2.686320px;}
._19{margin-left:-1.607760px;}
._14{width:1.306920px;}
._11{width:2.478600px;}
._13{width:3.921240px;}
._12{width:5.131080px;}
._4{width:6.333818px;}
._15{width:7.880880px;}
._25{width:9.939240px;}
._2{width:11.414794px;}
._8{width:13.753783px;}
._2b{width:17.288486px;}
._a{width:22.238400px;}
._20{width:23.507760px;}
._3{width:24.830656px;}
._18{width:30.601920px;}
._1{width:36.175847px;}
._1d{width:38.255880px;}
._9{width:39.950400px;}
._31{width:49.489680px;}
._37{width:50.926320px;}
._7{width:56.100825px;}
._3e{width:61.548240px;}
._1b{width:68.622600px;}
._33{width:73.999680px;}
._17{width:78.147240px;}
._2c{width:88.456680px;}
._22{width:111.987720px;}
._5{width:113.204245px;}
._34{width:136.040554px;}
._1f{width:173.463840px;}
._3f{width:176.477040px;}
._16{width:185.913000px;}
._2e{width:188.565000px;}
._3a{width:190.200960px;}
._1e{width:196.094542px;}
._2f{width:197.292000px;}
._41{width:202.050720px;}
._30{width:213.036000px;}
._21{width:223.315920px;}
._1a{width:227.416680px;}
._35{width:245.522160px;}
._36{width:256.287720px;}
._38{width:270.673800px;}
._39{width:281.120280px;}
._23{width:302.283840px;}
._28{width:324.326422px;}
._b{width:329.964000px;}
._40{width:403.255200px;}
._3c{width:437.806942px;}
._2a{width:479.355600px;}
._3d{width:502.675320px;}
._24{width:654.409200px;}
._32{width:853.964400px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:17.400600px;}
.fs6{font-size:40.800600px;}
.fs7{font-size:42.000000px;}
.fs0{font-size:47.970000px;}
.fs5{font-size:49.200000px;}
.fs1{font-size:58.800000px;}
.fs2{font-size:61.200000px;}
.fs8{font-size:81.000000px;}
.fs3{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:3.375000px;}
.y3{bottom:22.005000px;}
.y52{bottom:157.342200px;}
.y51{bottom:171.019800px;}
.y50{bottom:184.697400px;}
.y4f{bottom:198.018300px;}
.y4e{bottom:214.574100px;}
.y4d{bottom:227.193900px;}
.y4c{bottom:240.502500px;}
.y4b{bottom:253.835700px;}
.y4a{bottom:267.870000px;}
.y49{bottom:280.452900px;}
.y48{bottom:295.225200px;}
.y47{bottom:308.533800px;}
.y46{bottom:321.498000px;}
.y45{bottom:336.258000px;}
.y44{bottom:349.222200px;}
.y43{bottom:361.116300px;}
.y42{bottom:377.303100px;}
.y41{bottom:389.898300px;}
.y40{bottom:402.518100px;}
.y3f{bottom:418.360500px;}
.y3e{bottom:430.230000px;}
.y3d{bottom:443.550900px;}
.y3c{bottom:457.966500px;}
.y3b{bottom:470.906100px;}
.y3a{bottom:484.583700px;}
.y39{bottom:497.203500px;}
.y38{bottom:511.963500px;}
.y37{bottom:525.284400px;}
.y36{bottom:538.962000px;}
.y35{bottom:554.447700px;}
.y27{bottom:563.439000px;}
.y34{bottom:567.756300px;}
.y26{bottom:577.116600px;}
.y33{bottom:581.446200px;}
.y25{bottom:590.437500px;}
.y32{bottom:594.754800px;}
.y24{bottom:604.115100px;}
.y31{bottom:608.444700px;}
.y23{bottom:618.137100px;}
.y30{bottom:621.753300px;}
.y2f{bottom:635.430900px;}
.y22{bottom:639.022500px;}
.y2e{bottom:649.120800px;}
.y21{bottom:652.700100px;}
.y2d{bottom:662.798400px;}
.y20{bottom:666.377700px;}
.y2c{bottom:676.463700px;}
.y1f{bottom:680.055300px;}
.y2b{bottom:689.796900px;}
.y1e{bottom:693.376200px;}
.y2a{bottom:703.462200px;}
.y1d{bottom:707.053800px;}
.y29{bottom:716.795400px;}
.y1c{bottom:720.374700px;}
.y28{bottom:730.460700px;}
.y1b{bottom:742.699200px;}
.y1a{bottom:756.733500px;}
.y19{bottom:770.054400px;}
.y18{bottom:783.375300px;}
.y17{bottom:797.052900px;}
.y16{bottom:810.730500px;}
.y15{bottom:825.146100px;}
.y14{bottom:834.863100px;}
.y13{bottom:847.827300px;}
.y12{bottom:865.453200px;}
.y11{bottom:879.143100px;}
.y10{bottom:892.820700px;}
.yf{bottom:906.129300px;}
.ye{bottom:919.819200px;}
.yd{bottom:972.364800px;}
.yc{bottom:986.042400px;}
.yb{bottom:999.720000px;}
.ya{bottom:1014.860250px;}
.y9{bottom:1037.520000px;}
.y6{bottom:1078.920000px;}
.y8{bottom:1082.880000px;}
.y7{bottom:1084.335000px;}
.y5{bottom:1091.880000px;}
.y4{bottom:1104.855000px;}
.y1{bottom:1225.755000px;}
.h2{height:14.625000px;}
.h3{height:32.955952px;}
.h8{height:51.314062px;}
.h4{height:61.326563px;}
.h5{height:63.829687px;}
.h7{height:77.234063px;}
.h9{height:84.480469px;}
.h6{height:150.187500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:59.625000px;}
.w2{width:132.750000px;}
.w3{width:759.375000px;}
.w4{width:832.500000px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x5{left:8.630850px;}
.x1{left:36.000000px;}
.x2{left:132.750000px;}
.xf{left:199.104900px;}
.xa{left:209.175000px;}
.xd{left:213.139200px;}
.xc{left:263.520000px;}
.xe{left:284.061000px;}
.x6{left:297.360000px;}
.x7{left:304.215000px;}
.x8{left:305.280000px;}
.x3{left:326.285250px;}
.xb{left:352.443750px;}
.x9{left:399.600000px;}
.x10{left:446.777700px;}
.x4{left:832.500000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.040000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-10.660000pt;}
.ws1{word-spacing:0.000000pt;}
._27{margin-left:-40.322133pt;}
._2d{margin-left:-33.009173pt;}
._29{margin-left:-25.802880pt;}
._6{margin-left:-23.128533pt;}
._42{margin-left:-22.129067pt;}
._26{margin-left:-19.124587pt;}
._e{margin-left:-17.856000pt;}
._d{margin-left:-16.202667pt;}
._3b{margin-left:-11.676373pt;}
._10{margin-left:-10.699200pt;}
._1c{margin-left:-9.752533pt;}
._c{margin-left:-5.685333pt;}
._f{margin-left:-3.715200pt;}
._0{margin-left:-2.387840pt;}
._19{margin-left:-1.429120pt;}
._14{width:1.161707pt;}
._11{width:2.203200pt;}
._13{width:3.485547pt;}
._12{width:4.560960pt;}
._4{width:5.630061pt;}
._15{width:7.005227pt;}
._25{width:8.834880pt;}
._2{width:10.146483pt;}
._8{width:12.225585pt;}
._2b{width:15.367543pt;}
._a{width:19.767467pt;}
._20{width:20.895787pt;}
._3{width:22.071694pt;}
._18{width:27.201707pt;}
._1{width:32.156309pt;}
._1d{width:34.005227pt;}
._9{width:35.511467pt;}
._31{width:43.990827pt;}
._37{width:45.267840pt;}
._7{width:49.867400pt;}
._3e{width:54.709547pt;}
._1b{width:60.997867pt;}
._33{width:65.777493pt;}
._17{width:69.464213pt;}
._2c{width:78.628160pt;}
._22{width:99.544640pt;}
._5{width:100.625995pt;}
._34{width:120.924937pt;}
._1f{width:154.190080pt;}
._3f{width:156.868480pt;}
._16{width:165.256000pt;}
._2e{width:167.613333pt;}
._3a{width:169.067520pt;}
._1e{width:174.306259pt;}
._2f{width:175.370667pt;}
._41{width:179.600640pt;}
._30{width:189.365333pt;}
._21{width:198.503040pt;}
._1a{width:202.148160pt;}
._35{width:218.241920pt;}
._36{width:227.811307pt;}
._38{width:240.598933pt;}
._39{width:249.884693pt;}
._23{width:268.696747pt;}
._28{width:288.290153pt;}
._b{width:293.301333pt;}
._40{width:358.449067pt;}
._3c{width:389.161726pt;}
._2a{width:426.093867pt;}
._3d{width:446.822507pt;}
._24{width:581.697067pt;}
._32{width:759.079467pt;}
.fs4{font-size:15.467200pt;}
.fs6{font-size:36.267200pt;}
.fs7{font-size:37.333333pt;}
.fs0{font-size:42.640000pt;}
.fs5{font-size:43.733333pt;}
.fs1{font-size:52.266667pt;}
.fs2{font-size:54.400000pt;}
.fs8{font-size:72.000000pt;}
.fs3{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:3.000000pt;}
.y3{bottom:19.560000pt;}
.y52{bottom:139.859733pt;}
.y51{bottom:152.017600pt;}
.y50{bottom:164.175467pt;}
.y4f{bottom:176.016267pt;}
.y4e{bottom:190.732533pt;}
.y4d{bottom:201.950133pt;}
.y4c{bottom:213.780000pt;}
.y4b{bottom:225.631733pt;}
.y4a{bottom:238.106667pt;}
.y49{bottom:249.291467pt;}
.y48{bottom:262.422400pt;}
.y47{bottom:274.252267pt;}
.y46{bottom:285.776000pt;}
.y45{bottom:298.896000pt;}
.y44{bottom:310.419733pt;}
.y43{bottom:320.992267pt;}
.y42{bottom:335.380533pt;}
.y41{bottom:346.576267pt;}
.y40{bottom:357.793867pt;}
.y3f{bottom:371.876000pt;}
.y3e{bottom:382.426667pt;}
.y3d{bottom:394.267467pt;}
.y3c{bottom:407.081333pt;}
.y3b{bottom:418.583200pt;}
.y3a{bottom:430.741067pt;}
.y39{bottom:441.958667pt;}
.y38{bottom:455.078667pt;}
.y37{bottom:466.919467pt;}
.y36{bottom:479.077333pt;}
.y35{bottom:492.842400pt;}
.y27{bottom:500.834667pt;}
.y34{bottom:504.672267pt;}
.y26{bottom:512.992533pt;}
.y33{bottom:516.841067pt;}
.y25{bottom:524.833333pt;}
.y32{bottom:528.670933pt;}
.y24{bottom:536.991200pt;}
.y31{bottom:540.839733pt;}
.y23{bottom:549.455200pt;}
.y30{bottom:552.669600pt;}
.y2f{bottom:564.827467pt;}
.y22{bottom:568.020000pt;}
.y2e{bottom:576.996267pt;}
.y21{bottom:580.177867pt;}
.y2d{bottom:589.154133pt;}
.y20{bottom:592.335733pt;}
.y2c{bottom:601.301067pt;}
.y1f{bottom:604.493600pt;}
.y2b{bottom:613.152800pt;}
.y1e{bottom:616.334400pt;}
.y2a{bottom:625.299733pt;}
.y1d{bottom:628.492267pt;}
.y29{bottom:637.151467pt;}
.y1c{bottom:640.333067pt;}
.y28{bottom:649.298400pt;}
.y1b{bottom:660.177067pt;}
.y1a{bottom:672.652000pt;}
.y19{bottom:684.492800pt;}
.y18{bottom:696.333600pt;}
.y17{bottom:708.491467pt;}
.y16{bottom:720.649333pt;}
.y15{bottom:733.463200pt;}
.y14{bottom:742.100533pt;}
.y13{bottom:753.624267pt;}
.y12{bottom:769.291733pt;}
.y11{bottom:781.460533pt;}
.y10{bottom:793.618400pt;}
.yf{bottom:805.448267pt;}
.ye{bottom:817.617067pt;}
.yd{bottom:864.324267pt;}
.yc{bottom:876.482133pt;}
.yb{bottom:888.640000pt;}
.ya{bottom:902.098000pt;}
.y9{bottom:922.240000pt;}
.y6{bottom:959.040000pt;}
.y8{bottom:962.560000pt;}
.y7{bottom:963.853333pt;}
.y5{bottom:970.560000pt;}
.y4{bottom:982.093333pt;}
.y1{bottom:1089.560000pt;}
.h2{height:13.000000pt;}
.h3{height:29.294180pt;}
.h8{height:45.612500pt;}
.h4{height:54.512500pt;}
.h5{height:56.737500pt;}
.h7{height:68.652500pt;}
.h9{height:75.093750pt;}
.h6{height:133.500000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:53.000000pt;}
.w2{width:118.000000pt;}
.w3{width:675.000000pt;}
.w4{width:740.000000pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x5{left:7.671867pt;}
.x1{left:32.000000pt;}
.x2{left:118.000000pt;}
.xf{left:176.982133pt;}
.xa{left:185.933333pt;}
.xd{left:189.457067pt;}
.xc{left:234.240000pt;}
.xe{left:252.498667pt;}
.x6{left:264.320000pt;}
.x7{left:270.413333pt;}
.x8{left:271.360000pt;}
.x3{left:290.031333pt;}
.xb{left:313.283333pt;}
.x9{left:355.200000pt;}
.x10{left:397.135733pt;}
.x4{left:740.000000pt;}
}




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