
    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_b7357e5402e61db06ab54266.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_5c4dd7c28406f0dc80b54334.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;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_0fa311c749265eca061f6926.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_2a8f352119ae13633ca26dda.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.891602;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);}
.v2{vertical-align:-20.491262px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:25.044873px;}
.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;}
}
.ws2{word-spacing:-27.000000px;}
.ws3{word-spacing:-18.000000px;}
.ws0{word-spacing:-9.900000px;}
.ws1{word-spacing:-8.100000px;}
.ws4{word-spacing:0.000000px;}
._3{margin-left:-6.989062px;}
._1{margin-left:-4.979213px;}
._2{margin-left:-3.812702px;}
._c{margin-left:-2.798052px;}
._0{margin-left:-1.395522px;}
._4{width:4.404941px;}
._6{width:8.720139px;}
._7{width:9.744971px;}
._5{width:13.415402px;}
._9{width:17.773515px;}
._10{width:18.843404px;}
._8{width:22.404941px;}
._a{width:26.882808px;}
._b{width:31.415402px;}
._f{width:48.530260px;}
._e{width:49.550774px;}
._d{width:53.834671px;}
.fc1{color:rgb(17,85,204);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:32.399999px;}
.fs2{font-size:39.600001px;}
.fs6{font-size:41.999999px;}
.fs4{font-size:54.000000px;}
.fs5{font-size:59.999999px;}
.fs1{font-size:66.000002px;}
.fs7{font-size:72.000000px;}
.fs0{font-size:96.000003px;}
.y0{bottom:0.000000px;}
.y8f{bottom:119.343756px;}
.y83{bottom:132.971198px;}
.y8e{bottom:141.163334px;}
.y32{bottom:152.392093px;}
.y82{bottom:154.790767px;}
.y2b{bottom:157.193293px;}
.y8d{bottom:162.982919px;}
.y31{bottom:175.160158px;}
.y81{bottom:176.609984px;}
.y2a{bottom:179.012705px;}
.y8c{bottom:184.801767px;}
.y30{bottom:197.928054px;}
.y80{bottom:198.429200px;}
.y29{bottom:200.832102px;}
.y8b{bottom:206.621344px;}
.y7f{bottom:220.248777px;}
.y28{bottom:222.651496px;}
.y8a{bottom:228.440923px;}
.y7e{bottom:242.068358px;}
.y27{bottom:244.470893px;}
.y89{bottom:250.260133px;}
.y7d{bottom:263.887573px;}
.y26{bottom:266.290281px;}
.y88{bottom:273.028198px;}
.y7c{bottom:285.706783px;}
.y25{bottom:288.109679px;}
.y87{bottom:294.847387px;}
.y7b{bottom:307.526382px;}
.y24{bottom:309.929075px;}
.y7a{bottom:329.345971px;}
.y23{bottom:331.748472px;}
.y79{bottom:351.165177px;}
.y22{bottom:353.567869px;}
.y78{bottom:372.984382px;}
.y21{bottom:375.387268px;}
.y54{bottom:386.849123px;}
.y77{bottom:394.803968px;}
.y20{bottom:397.206658px;}
.y53{bottom:411.017590px;}
.y76{bottom:416.623537px;}
.y1f{bottom:419.026077px;}
.y52{bottom:433.785656px;}
.y75{bottom:438.442754px;}
.y1e{bottom:440.845475px;}
.y51{bottom:456.553715px;}
.y74{bottom:460.261970px;}
.y1d{bottom:462.664872px;}
.y50{bottom:479.321781px;}
.y73{bottom:482.081547px;}
.y1c{bottom:484.484266px;}
.y4f{bottom:502.089847px;}
.y72{bottom:503.901128px;}
.y1b{bottom:506.303663px;}
.y4e{bottom:524.857913px;}
.y71{bottom:525.720343px;}
.y1a{bottom:528.123051px;}
.y70{bottom:547.539553px;}
.y4d{bottom:547.625980px;}
.y19{bottom:549.942449px;}
.y2f{bottom:567.718138px;}
.y6f{bottom:569.359138px;}
.y4c{bottom:570.394048px;}
.y18{bottom:571.761845px;}
.y2e{bottom:589.537543px;}
.y6e{bottom:592.127203px;}
.y4b{bottom:593.162120px;}
.y17{bottom:593.581242px;}
.y2d{bottom:612.305608px;}
.y6d{bottom:613.946791px;}
.y16{bottom:615.400639px;}
.y4a{bottom:615.930185px;}
.y2c{bottom:634.125009px;}
.y6c{bottom:635.765997px;}
.y15{bottom:637.220038px;}
.y49{bottom:638.698250px;}
.y6b{bottom:657.585203px;}
.y14{bottom:659.039428px;}
.y48{bottom:661.466315px;}
.y6a{bottom:679.404792px;}
.y13{bottom:681.442012px;}
.y47{bottom:684.234385px;}
.y69{bottom:701.224375px;}
.y12{bottom:704.661808px;}
.y46{bottom:707.002451px;}
.y68{bottom:723.043583px;}
.y11{bottom:726.481197px;}
.y45{bottom:729.770510px;}
.y67{bottom:744.862791px;}
.y10{bottom:748.300594px;}
.y44{bottom:752.538576px;}
.y66{bottom:766.682369px;}
.yf{bottom:770.119993px;}
.y43{bottom:775.306642px;}
.y65{bottom:788.501954px;}
.ye{bottom:791.939398px;}
.y42{bottom:798.074708px;}
.y64{bottom:810.321162px;}
.yd{bottom:814.341982px;}
.y41{bottom:820.842775px;}
.y63{bottom:832.140379px;}
.yc{bottom:838.144958px;}
.y40{bottom:843.610843px;}
.y62{bottom:853.959958px;}
.yb{bottom:860.198364px;}
.y3f{bottom:866.378915px;}
.y61{bottom:875.779543px;}
.ya{bottom:876.046503px;}
.y9a{bottom:877.762935px;}
.y3e{bottom:889.146980px;}
.y60{bottom:897.598772px;}
.y99{bottom:899.582520px;}
.y9{bottom:900.421944px;}
.y3d{bottom:911.915045px;}
.y8{bottom:918.274179px;}
.y5f{bottom:919.417979px;}
.y98{bottom:921.401367px;}
.y3c{bottom:934.683110px;}
.y7{bottom:936.126414px;}
.y5e{bottom:941.237562px;}
.y97{bottom:943.220945px;}
.y3b{bottom:957.451175px;}
.y5d{bottom:963.057130px;}
.y96{bottom:965.040531px;}
.y6{bottom:971.662904px;}
.y3a{bottom:980.219245px;}
.y5c{bottom:984.876339px;}
.y95{bottom:986.860108px;}
.y5{bottom:993.409784px;}
.y39{bottom:1002.987311px;}
.y5b{bottom:1006.695555px;}
.y94{bottom:1008.679687px;}
.y4{bottom:1015.229187px;}
.y38{bottom:1025.755370px;}
.y5a{bottom:1028.515140px;}
.y93{bottom:1030.498536px;}
.y3{bottom:1037.048585px;}
.y37{bottom:1048.523436px;}
.y59{bottom:1050.334718px;}
.y92{bottom:1052.318114px;}
.y2{bottom:1070.750977px;}
.y36{bottom:1071.291502px;}
.y58{bottom:1072.153930px;}
.y86{bottom:1074.137695px;}
.y91{bottom:1074.137699px;}
.y57{bottom:1093.973145px;}
.y35{bottom:1094.059568px;}
.y90{bottom:1095.956547px;}
.y85{bottom:1095.956907px;}
.y1{bottom:1102.488283px;}
.y56{bottom:1115.792725px;}
.y34{bottom:1116.827635px;}
.y84{bottom:1117.776124px;}
.y55{bottom:1138.195312px;}
.y33{bottom:1139.595703px;}
.h4{height:29.046093px;}
.h2{height:48.082032px;}
.h6{height:48.410156px;}
.h7{height:48.796875px;}
.h5{height:53.789061px;}
.h8{height:59.167970px;}
.h3{height:60.545655px;}
.h1{height:69.937502px;}
.h0{height:1263.000000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x3{left:108.000000px;}
.x1{left:116.384773px;}
.x6{left:128.603543px;}
.x8{left:133.006863px;}
.x5{left:143.286015px;}
.x7{left:182.612334px;}
.x4{left:185.341896px;}
.xa{left:252.417257px;}
.xd{left:311.065571px;}
.x11{left:322.900043px;}
.x2{left:343.772720px;}
.xc{left:397.611484px;}
.xb{left:446.456700px;}
.x9{left:454.894200px;}
.x10{left:620.831700px;}
.xf{left:777.769200px;}
.x12{left:789.750000px;}
.xe{left:790.875000px;}
@media print{
.v2{vertical-align:-18.214455pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:22.262110pt;}
.ls0{letter-spacing:0.000000pt;}
.ws2{word-spacing:-24.000000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws0{word-spacing:-8.800000pt;}
.ws1{word-spacing:-7.200000pt;}
.ws4{word-spacing:0.000000pt;}
._3{margin-left:-6.212499pt;}
._1{margin-left:-4.425967pt;}
._2{margin-left:-3.389068pt;}
._c{margin-left:-2.487157pt;}
._0{margin-left:-1.240464pt;}
._4{width:3.915504pt;}
._6{width:7.751235pt;}
._7{width:8.662197pt;}
._5{width:11.924802pt;}
._9{width:15.798680pt;}
._10{width:16.749692pt;}
._8{width:19.915504pt;}
._a{width:23.895829pt;}
._b{width:27.924802pt;}
._f{width:43.138009pt;}
._e{width:44.045132pt;}
._d{width:47.853040pt;}
.fs3{font-size:28.799999pt;}
.fs2{font-size:35.200001pt;}
.fs6{font-size:37.333332pt;}
.fs4{font-size:48.000000pt;}
.fs5{font-size:53.333332pt;}
.fs1{font-size:58.666668pt;}
.fs7{font-size:64.000000pt;}
.fs0{font-size:85.333336pt;}
.y0{bottom:0.000000pt;}
.y8f{bottom:106.083339pt;}
.y83{bottom:118.196620pt;}
.y8e{bottom:125.478519pt;}
.y32{bottom:135.459639pt;}
.y82{bottom:137.591793pt;}
.y2b{bottom:139.727372pt;}
.y8d{bottom:144.873706pt;}
.y31{bottom:155.697919pt;}
.y81{bottom:156.986652pt;}
.y2a{bottom:159.122404pt;}
.y8c{bottom:164.268238pt;}
.y30{bottom:175.936048pt;}
.y80{bottom:176.381511pt;}
.y29{bottom:178.517424pt;}
.y8b{bottom:183.663417pt;}
.y7f{bottom:195.776691pt;}
.y28{bottom:197.912441pt;}
.y8a{bottom:203.058599pt;}
.y7e{bottom:215.171874pt;}
.y27{bottom:217.307460pt;}
.y89{bottom:222.453452pt;}
.y7d{bottom:234.566732pt;}
.y26{bottom:236.702472pt;}
.y88{bottom:242.691732pt;}
.y7c{bottom:253.961585pt;}
.y25{bottom:256.097492pt;}
.y87{bottom:262.086566pt;}
.y7b{bottom:273.356784pt;}
.y24{bottom:275.492511pt;}
.y7a{bottom:292.751974pt;}
.y23{bottom:294.887531pt;}
.y79{bottom:312.146824pt;}
.y22{bottom:314.282550pt;}
.y78{bottom:331.541673pt;}
.y21{bottom:333.677572pt;}
.y54{bottom:343.865887pt;}
.y77{bottom:350.936860pt;}
.y20{bottom:353.072585pt;}
.y53{bottom:365.348969pt;}
.y76{bottom:370.332033pt;}
.y1f{bottom:372.467624pt;}
.y52{bottom:385.587250pt;}
.y75{bottom:389.726892pt;}
.y1e{bottom:391.862644pt;}
.y51{bottom:405.825524pt;}
.y74{bottom:409.121751pt;}
.y1d{bottom:411.257664pt;}
.y50{bottom:426.063805pt;}
.y73{bottom:428.516931pt;}
.y1c{bottom:430.652681pt;}
.y4f{bottom:446.302086pt;}
.y72{bottom:447.912114pt;}
.y1b{bottom:450.047700pt;}
.y4e{bottom:466.540367pt;}
.y71{bottom:467.306972pt;}
.y1a{bottom:469.442712pt;}
.y70{bottom:486.701825pt;}
.y4d{bottom:486.778649pt;}
.y19{bottom:488.837732pt;}
.y2f{bottom:504.638345pt;}
.y6f{bottom:506.097012pt;}
.y4c{bottom:507.016932pt;}
.y18{bottom:508.232751pt;}
.y2e{bottom:524.033372pt;}
.y6e{bottom:526.335292pt;}
.y4b{bottom:527.255217pt;}
.y17{bottom:527.627771pt;}
.y2d{bottom:544.271652pt;}
.y6d{bottom:545.730481pt;}
.y16{bottom:547.022790pt;}
.y4a{bottom:547.493497pt;}
.y2c{bottom:563.666675pt;}
.y6c{bottom:565.125331pt;}
.y15{bottom:566.417812pt;}
.y49{bottom:567.731777pt;}
.y6b{bottom:584.520181pt;}
.y14{bottom:585.812825pt;}
.y48{bottom:587.970057pt;}
.y6a{bottom:603.915371pt;}
.y13{bottom:605.726233pt;}
.y47{bottom:608.208342pt;}
.y69{bottom:623.310556pt;}
.y12{bottom:626.366052pt;}
.y46{bottom:628.446623pt;}
.y68{bottom:642.705407pt;}
.y11{bottom:645.761064pt;}
.y45{bottom:648.684897pt;}
.y67{bottom:662.100259pt;}
.y10{bottom:665.156083pt;}
.y44{bottom:668.923178pt;}
.y66{bottom:681.495439pt;}
.yf{bottom:684.551105pt;}
.y43{bottom:689.161459pt;}
.y65{bottom:700.890626pt;}
.ye{bottom:703.946132pt;}
.y42{bottom:709.399740pt;}
.y64{bottom:720.285478pt;}
.yd{bottom:723.859540pt;}
.y41{bottom:729.638022pt;}
.y63{bottom:739.680337pt;}
.yc{bottom:745.017740pt;}
.y40{bottom:749.876305pt;}
.y62{bottom:759.075519pt;}
.yb{bottom:764.620768pt;}
.y3f{bottom:770.114591pt;}
.y61{bottom:778.470705pt;}
.ya{bottom:778.708003pt;}
.y9a{bottom:780.233720pt;}
.y3e{bottom:790.352871pt;}
.y60{bottom:797.865575pt;}
.y99{bottom:799.628907pt;}
.y9{bottom:800.375062pt;}
.y3d{bottom:810.591151pt;}
.y8{bottom:816.243715pt;}
.y5f{bottom:817.260425pt;}
.y98{bottom:819.023438pt;}
.y3c{bottom:830.829431pt;}
.y7{bottom:832.112368pt;}
.y5e{bottom:836.655610pt;}
.y97{bottom:838.418618pt;}
.y3b{bottom:851.067711pt;}
.y5d{bottom:856.050782pt;}
.y96{bottom:857.813806pt;}
.y6{bottom:863.700359pt;}
.y3a{bottom:871.305996pt;}
.y5c{bottom:875.445634pt;}
.y95{bottom:877.208985pt;}
.y5{bottom:883.030919pt;}
.y39{bottom:891.544277pt;}
.y5b{bottom:894.840493pt;}
.y94{bottom:896.604167pt;}
.y4{bottom:902.425944pt;}
.y38{bottom:911.782551pt;}
.y5a{bottom:914.235680pt;}
.y93{bottom:915.998699pt;}
.y3{bottom:921.820964pt;}
.y37{bottom:932.020832pt;}
.y59{bottom:933.630860pt;}
.y92{bottom:935.393879pt;}
.y2{bottom:951.778647pt;}
.y36{bottom:952.259113pt;}
.y58{bottom:953.025715pt;}
.y86{bottom:954.789063pt;}
.y91{bottom:954.789066pt;}
.y57{bottom:972.420573pt;}
.y35{bottom:972.497394pt;}
.y90{bottom:974.183598pt;}
.y85{bottom:974.183918pt;}
.y1{bottom:979.989585pt;}
.y56{bottom:991.815756pt;}
.y34{bottom:992.735676pt;}
.y84{bottom:993.578777pt;}
.y55{bottom:1011.729167pt;}
.y33{bottom:1012.973959pt;}
.h4{height:25.818749pt;}
.h2{height:42.739584pt;}
.h6{height:43.031250pt;}
.h7{height:43.375000pt;}
.h5{height:47.812499pt;}
.h8{height:52.593751pt;}
.h3{height:53.818360pt;}
.h1{height:62.166669pt;}
.h0{height:1122.666667pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x3{left:96.000000pt;}
.x1{left:103.453131pt;}
.x6{left:114.314260pt;}
.x8{left:118.228323pt;}
.x5{left:127.365347pt;}
.x7{left:162.322075pt;}
.x4{left:164.748352pt;}
.xa{left:224.370895pt;}
.xd{left:276.502730pt;}
.x11{left:287.022260pt;}
.x2{left:305.575751pt;}
.xc{left:353.432430pt;}
.xb{left:396.850400pt;}
.x9{left:404.350400pt;}
.x10{left:551.850400pt;}
.xf{left:691.350400pt;}
.x12{left:702.000000pt;}
.xe{left:703.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; }
  