
    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_d05de87c1416b48447984f9d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.122070;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_f171eddcb4bcc51b012a6487.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.110352;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_232486e61aa2971ffbc4d3a9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_b9f35955b6dead9b74066077.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_0489ac4e398f9b6a3b2b14c9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.963379;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_02afe7e5ec7565bfecc439bb.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.740723;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:108.000566px;}
.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:-86.400003px;}
.ws0{word-spacing:-80.928003px;}
.ws1{word-spacing:-39.888001px;}
.ws3{word-spacing:-36.564002px;}
.ws4{word-spacing:-29.916001px;}
.ws5{word-spacing:0.000000px;}
._15{margin-left:-36.000001px;}
._13{margin-left:-28.550250px;}
._12{margin-left:-23.690250px;}
._d{margin-left:-22.608000px;}
._f{margin-left:-19.896000px;}
._8{margin-left:-15.840023px;}
._b{margin-left:-14.688000px;}
._c{margin-left:-13.104000px;}
._1{margin-left:-11.232000px;}
._3{margin-left:-10.080000px;}
._14{margin-left:-8.928000px;}
._6{margin-left:-7.367040px;}
._0{margin-left:-5.760000px;}
._9{margin-left:-4.608000px;}
._11{margin-left:-3.600000px;}
._a{margin-left:-2.151090px;}
._5{width:1.103040px;}
._4{width:2.450250px;}
._2{width:4.320000px;}
._10{width:5.760000px;}
._e{width:9.000000px;}
._7{width:108.000566px;}
.fc2{color:rgb(24,128,56);}
.fc1{color:rgb(4,12,40);}
.fc3{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:108.000003px;}
.fs8{font-size:132.000007px;}
.fs1{font-size:144.000005px;}
.fs3{font-size:180.000006px;}
.fs2{font-size:216.000007px;}
.fs7{font-size:240.000002px;}
.fs0{font-size:288.000009px;}
.fs6{font-size:299.999998px;}
.fs5{font-size:390.000000px;}
.fs4{font-size:600.000004px;}
.y0{bottom:0.000000px;}
.y49{bottom:63.554289px;}
.y48{bottom:103.154290px;}
.y47{bottom:142.754292px;}
.y46{bottom:182.354282px;}
.y45{bottom:221.954283px;}
.y44{bottom:301.154286px;}
.y61{bottom:533.486278px;}
.y2c{bottom:559.250331px;}
.y60{bottom:576.686279px;}
.y2b{bottom:602.450333px;}
.y5f{bottom:663.086260px;}
.y5e{bottom:706.286261px;}
.y2a{bottom:732.050224px;}
.y5d{bottom:749.486262px;}
.y29{bottom:775.250226px;}
.y5c{bottom:887.726267px;}
.y28{bottom:904.850072px;}
.y27{bottom:948.050006px;}
.y26{bottom:991.250008px;}
.y25{bottom:1034.449953px;}
.y24{bottom:1077.649898px;}
.y5b{bottom:1148.394738px;}
.y5a{bottom:1191.594739px;}
.y59{bottom:1234.794662px;}
.y23{bottom:1250.449858px;}
.y58{bottom:1277.994629px;}
.y22{bottom:1293.649849px;}
.y57{bottom:1321.194586px;}
.y21{bottom:1336.849850px;}
.y20{bottom:1380.049840px;}
.y56{bottom:1407.594521px;}
.y55{bottom:1450.794466px;}
.y1f{bottom:1466.449809px;}
.y54{bottom:1493.994411px;}
.y1e{bottom:1509.649810px;}
.y86{bottom:1536.334463px;}
.y53{bottom:1537.194413px;}
.y52{bottom:1580.394346px;}
.y85{bottom:1586.014352px;}
.y51{bottom:1623.594348px;}
.y84{bottom:1635.694241px;}
.y1d{bottom:1647.889804px;}
.y83{bottom:1685.374130px;}
.y50{bottom:1709.994328px;}
.y82{bottom:1735.054019px;}
.y4f{bottom:1753.194329px;}
.y81{bottom:1784.733908px;}
.y4e{bottom:1796.394308px;}
.y80{bottom:1834.413910px;}
.y4d{bottom:1839.594310px;}
.y4c{bottom:1882.794311px;}
.y7f{bottom:1884.093911px;}
.yd{bottom:1885.953817px;}
.yc{bottom:1929.153763px;}
.y7e{bottom:1933.773800px;}
.yb{bottom:1972.353764px;}
.y7d{bottom:1983.453689px;}
.y4b{bottom:1986.834314px;}
.ya{bottom:2015.553698px;}
.y7c{bottom:2033.133578px;}
.y9{bottom:2058.753699px;}
.y4a{bottom:2073.234317px;}
.y7b{bottom:2082.813580px;}
.y8{bottom:2101.953689px;}
.y7a{bottom:2132.493469px;}
.y7{bottom:2145.153680px;}
.y79{bottom:2182.173358px;}
.y6{bottom:2188.353681px;}
.y78{bottom:2231.853247px;}
.y88{bottom:2261.520848px;}
.y5{bottom:2274.753661px;}
.y77{bottom:2281.533136px;}
.y4{bottom:2317.953663px;}
.y76{bottom:2331.213025px;}
.y3{bottom:2361.153664px;}
.y75{bottom:2380.892915px;}
.y8a{bottom:2393.109967px;}
.y74{bottom:2448.572804px;}
.y2{bottom:2457.993667px;}
.y1{bottom:2544.393670px;}
.y73{bottom:2565.302695px;}
.y87{bottom:2611.369197px;}
.y72{bottom:2614.982585px;}
.y71{bottom:2664.662586px;}
.y89{bottom:2704.182827px;}
.y70{bottom:2714.342475px;}
.y3e{bottom:2730.060863px;}
.y6f{bottom:2764.022364px;}
.y6e{bottom:2813.702253px;}
.y6d{bottom:2863.382143px;}
.y3d{bottom:2896.437681px;}
.y6c{bottom:2913.062032px;}
.y6b{bottom:2962.741921px;}
.y3c{bottom:2980.632796px;}
.y6a{bottom:3012.421810px;}
.y3b{bottom:3035.547986px;}
.y69{bottom:3080.101924px;}
.y3a{bottom:3090.463231px;}
.y39{bottom:3145.378477px;}
.y68{bottom:3196.831928px;}
.y38{bottom:3200.293666px;}
.y1c{bottom:3208.530972px;}
.y67{bottom:3246.511874px;}
.y37{bottom:3255.208934px;}
.y1b{bottom:3263.446218px;}
.y66{bottom:3296.191819px;}
.y36{bottom:3310.124157px;}
.y1a{bottom:3318.361407px;}
.y65{bottom:3363.871821px;}
.y35{bottom:3365.039391px;}
.y19{bottom:3373.276664px;}
.y18{bottom:3428.191898px;}
.y34{bottom:3431.954652px;}
.y64{bottom:3499.231769px;}
.y17{bottom:3526.591826px;}
.y63{bottom:3548.911714px;}
.y33{bottom:3565.785140px;}
.y62{bottom:3598.591716px;}
.y16{bottom:3612.991761px;}
.y32{bottom:3620.700385px;}
.y15{bottom:3656.191763px;}
.y31{bottom:3675.615631px;}
.y14{bottom:3699.391753px;}
.y30{bottom:3742.530858px;}
.y13{bottom:3785.791745px;}
.y12{bottom:3828.991723px;}
.y11{bottom:3872.191725px;}
.y2f{bottom:3876.361279px;}
.y10{bottom:3915.391726px;}
.y2e{bottom:3931.276502px;}
.y2d{bottom:3986.191725px;}
.yf{bottom:4010.431729px;}
.ye{bottom:4096.831732px;}
.y43{bottom:4330.077179px;}
.y42{bottom:4405.677182px;}
.y41{bottom:4501.077162px;}
.y40{bottom:4656.082667px;}
.y3f{bottom:4836.082672px;}
.hc{height:78.679690px;}
.hb{height:96.164068px;}
.h3{height:104.835941px;}
.h2{height:104.906253px;}
.h4{height:108.000003px;}
.h6{height:131.132817px;}
.h5{height:157.253911px;}
.ha{height:217.500002px;}
.h1{height:261.000008px;}
.h9{height:271.874998px;}
.h8{height:353.437500px;}
.h7{height:543.750004px;}
.h0{height:5050.500000px;}
.w0{width:3574.500000px;}
.x0{left:0.000000px;}
.x10{left:119.562990px;}
.xf{left:133.331697px;}
.x3{left:138.552169px;}
.x4{left:143.808029px;}
.x7{left:160.202818px;}
.x8{left:192.566931px;}
.x5{left:251.808038px;}
.x1{left:332.313063px;}
.x6{left:334.208688px;}
.x9{left:395.945878px;}
.x2{left:438.959557px;}
.x14{left:1255.178178px;}
.x15{left:1260.434037px;}
.x13{left:1274.641180px;}
.x16{left:1309.178179px;}
.xe{left:2405.025639px;}
.x17{left:2449.969616px;}
.xb{left:2459.025641px;}
.xc{left:2464.281501px;}
.x11{left:2517.777591px;}
.xa{left:2559.545947px;}
.x12{left:2759.898688px;}
.xd{left:2783.025652px;}
.x18{left:3362.625108px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:96.000503pt;}
.ws2{word-spacing:-76.800002pt;}
.ws0{word-spacing:-71.936002pt;}
.ws1{word-spacing:-35.456001pt;}
.ws3{word-spacing:-32.501335pt;}
.ws4{word-spacing:-26.592001pt;}
.ws5{word-spacing:0.000000pt;}
._15{margin-left:-32.000001pt;}
._13{margin-left:-25.378000pt;}
._12{margin-left:-21.058000pt;}
._d{margin-left:-20.096000pt;}
._f{margin-left:-17.685333pt;}
._8{margin-left:-14.080020pt;}
._b{margin-left:-13.056000pt;}
._c{margin-left:-11.648000pt;}
._1{margin-left:-9.984000pt;}
._3{margin-left:-8.960000pt;}
._14{margin-left:-7.936000pt;}
._6{margin-left:-6.548480pt;}
._0{margin-left:-5.120000pt;}
._9{margin-left:-4.096000pt;}
._11{margin-left:-3.200000pt;}
._a{margin-left:-1.912080pt;}
._5{width:0.980480pt;}
._4{width:2.178000pt;}
._2{width:3.840000pt;}
._10{width:5.120000pt;}
._e{width:8.000000pt;}
._7{width:96.000503pt;}
.fs9{font-size:96.000003pt;}
.fs8{font-size:117.333340pt;}
.fs1{font-size:128.000004pt;}
.fs3{font-size:160.000005pt;}
.fs2{font-size:192.000006pt;}
.fs7{font-size:213.333335pt;}
.fs0{font-size:256.000008pt;}
.fs6{font-size:266.666665pt;}
.fs5{font-size:346.666667pt;}
.fs4{font-size:533.333337pt;}
.y0{bottom:0.000000pt;}
.y49{bottom:56.492701pt;}
.y48{bottom:91.692703pt;}
.y47{bottom:126.892704pt;}
.y46{bottom:162.092695pt;}
.y45{bottom:197.292696pt;}
.y44{bottom:267.692698pt;}
.y61{bottom:474.210025pt;}
.y2c{bottom:497.111406pt;}
.y60{bottom:512.610026pt;}
.y2b{bottom:535.511407pt;}
.y5f{bottom:589.410009pt;}
.y5e{bottom:627.810010pt;}
.y2a{bottom:650.711310pt;}
.y5d{bottom:666.210011pt;}
.y29{bottom:689.111312pt;}
.y5c{bottom:789.090015pt;}
.y28{bottom:804.311175pt;}
.y27{bottom:842.711117pt;}
.y26{bottom:881.111118pt;}
.y25{bottom:919.511069pt;}
.y24{bottom:957.911020pt;}
.y5b{bottom:1020.795322pt;}
.y5a{bottom:1059.195324pt;}
.y59{bottom:1097.595255pt;}
.y23{bottom:1111.510985pt;}
.y58{bottom:1135.995226pt;}
.y22{bottom:1149.910976pt;}
.y57{bottom:1174.395187pt;}
.y21{bottom:1188.310978pt;}
.y20{bottom:1226.710969pt;}
.y56{bottom:1251.195130pt;}
.y55{bottom:1289.595081pt;}
.y1f{bottom:1303.510941pt;}
.y54{bottom:1327.995032pt;}
.y1e{bottom:1341.910943pt;}
.y86{bottom:1365.630633pt;}
.y53{bottom:1366.395033pt;}
.y52{bottom:1404.794975pt;}
.y85{bottom:1409.790535pt;}
.y51{bottom:1443.194976pt;}
.y84{bottom:1453.950436pt;}
.y1d{bottom:1464.790937pt;}
.y83{bottom:1498.110338pt;}
.y50{bottom:1519.994958pt;}
.y82{bottom:1542.270239pt;}
.y4f{bottom:1558.394960pt;}
.y81{bottom:1586.430140pt;}
.y4e{bottom:1596.794941pt;}
.y80{bottom:1630.590142pt;}
.y4d{bottom:1635.194942pt;}
.y4c{bottom:1673.594943pt;}
.y7f{bottom:1674.750143pt;}
.yd{bottom:1676.403393pt;}
.yc{bottom:1714.803345pt;}
.y7e{bottom:1718.910045pt;}
.yb{bottom:1753.203346pt;}
.y7d{bottom:1763.069946pt;}
.y4b{bottom:1766.074946pt;}
.ya{bottom:1791.603287pt;}
.y7c{bottom:1807.229848pt;}
.y9{bottom:1830.003288pt;}
.y4a{bottom:1842.874949pt;}
.y7b{bottom:1851.389849pt;}
.y8{bottom:1868.403279pt;}
.y7a{bottom:1895.549750pt;}
.y7{bottom:1906.803271pt;}
.y79{bottom:1939.709652pt;}
.y6{bottom:1945.203272pt;}
.y78{bottom:1983.869553pt;}
.y88{bottom:2010.240754pt;}
.y5{bottom:2022.003254pt;}
.y77{bottom:2028.029455pt;}
.y4{bottom:2060.403256pt;}
.y76{bottom:2072.189356pt;}
.y3{bottom:2098.803257pt;}
.y75{bottom:2116.349257pt;}
.y8a{bottom:2127.208860pt;}
.y74{bottom:2176.509159pt;}
.y2{bottom:2184.883260pt;}
.y1{bottom:2261.683262pt;}
.y73{bottom:2280.269063pt;}
.y87{bottom:2321.217064pt;}
.y72{bottom:2324.428964pt;}
.y71{bottom:2368.588965pt;}
.y89{bottom:2403.718069pt;}
.y70{bottom:2412.748867pt;}
.y3e{bottom:2426.720767pt;}
.y6f{bottom:2456.908768pt;}
.y6e{bottom:2501.068670pt;}
.y6d{bottom:2545.228571pt;}
.y3d{bottom:2574.611272pt;}
.y6c{bottom:2589.388473pt;}
.y6b{bottom:2633.548374pt;}
.y3c{bottom:2649.451374pt;}
.y6a{bottom:2677.708275pt;}
.y3b{bottom:2698.264876pt;}
.y69{bottom:2737.868377pt;}
.y3a{bottom:2747.078428pt;}
.y39{bottom:2795.891979pt;}
.y68{bottom:2841.628381pt;}
.y38{bottom:2844.705481pt;}
.y1c{bottom:2852.027531pt;}
.y67{bottom:2885.788332pt;}
.y37{bottom:2893.519052pt;}
.y1b{bottom:2900.841083pt;}
.y66{bottom:2929.948283pt;}
.y36{bottom:2942.332584pt;}
.y1a{bottom:2949.654584pt;}
.y65{bottom:2990.108285pt;}
.y35{bottom:2991.146125pt;}
.y19{bottom:2998.468146pt;}
.y18{bottom:3047.281687pt;}
.y34{bottom:3050.626357pt;}
.y64{bottom:3110.428239pt;}
.y17{bottom:3134.748290pt;}
.y63{bottom:3154.588191pt;}
.y33{bottom:3169.586791pt;}
.y62{bottom:3198.748192pt;}
.y16{bottom:3211.548232pt;}
.y32{bottom:3218.400343pt;}
.y15{bottom:3249.948234pt;}
.y31{bottom:3267.213894pt;}
.y14{bottom:3288.348225pt;}
.y30{bottom:3326.694096pt;}
.y13{bottom:3365.148217pt;}
.y12{bottom:3403.548199pt;}
.y11{bottom:3441.948200pt;}
.y2f{bottom:3445.654470pt;}
.y10{bottom:3480.348201pt;}
.y2e{bottom:3494.468001pt;}
.y2d{bottom:3543.281533pt;}
.yf{bottom:3564.828204pt;}
.ye{bottom:3641.628206pt;}
.y43{bottom:3848.957493pt;}
.y42{bottom:3916.157495pt;}
.y41{bottom:4000.957478pt;}
.y40{bottom:4138.740148pt;}
.y3f{bottom:4298.740153pt;}
.hc{height:69.937502pt;}
.hb{height:85.479171pt;}
.h3{height:93.187503pt;}
.h2{height:93.250003pt;}
.h4{height:96.000003pt;}
.h6{height:116.562504pt;}
.h5{height:139.781254pt;}
.ha{height:193.333335pt;}
.h1{height:232.000007pt;}
.h9{height:241.666665pt;}
.h8{height:314.166667pt;}
.h7{height:483.333337pt;}
.h0{height:4489.333333pt;}
.w0{width:3177.333333pt;}
.x0{left:0.000000pt;}
.x10{left:106.278213pt;}
.xf{left:118.517064pt;}
.x3{left:123.157484pt;}
.x4{left:127.829359pt;}
.x7{left:142.402505pt;}
.x8{left:171.170605pt;}
.x5{left:223.829367pt;}
.x1{left:295.389389pt;}
.x6{left:297.074390pt;}
.x9{left:351.951891pt;}
.x2{left:390.186272pt;}
.x14{left:1115.713936pt;}
.x15{left:1120.385811pt;}
.x13{left:1133.014382pt;}
.x16{left:1163.713937pt;}
.xe{left:2137.800568pt;}
.x17{left:2177.750770pt;}
.xb{left:2185.800570pt;}
.xc{left:2190.472445pt;}
.x11{left:2238.024526pt;}
.xa{left:2275.151953pt;}
.x12{left:2453.243279pt;}
.xd{left:2473.800579pt;}
.x18{left:2989.000096pt;}
}




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