
    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_545a0eb8aa16f566c749c447.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_028df02a5fde76afe533d688.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c0357fa73d1b2e87e0487370.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_28f04718c7a7fc0d8e362c67.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.677000;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:-40.500001px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:40.500001px;}
.v1{vertical-align:54.000002px;}
.ls9{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.001512px;}
.ls1{letter-spacing:0.010933px;}
.ls2{letter-spacing:0.010978px;}
.ls3{letter-spacing:0.011248px;}
.ls7{letter-spacing:0.016335px;}
.ls5{letter-spacing:0.016425px;}
.ls8{letter-spacing:0.016452px;}
.ls4{letter-spacing:0.016470px;}
.ls6{letter-spacing:0.090675px;}
.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:-29.916001px;}
.ws1{word-spacing:-26.592002px;}
.ws2{word-spacing:-23.268000px;}
.ws5{word-spacing:-0.108000px;}
.ws6{word-spacing:-0.084000px;}
.ws7{word-spacing:0.000000px;}
.ws3{word-spacing:379.088206px;}
.ws4{word-spacing:2187.260589px;}
._b{margin-left:-1763.862414px;}
._7{margin-left:-11.880000px;}
._9{margin-left:-9.084000px;}
._3{margin-left:-7.992018px;}
._2{margin-left:-5.940000px;}
._8{margin-left:-4.620000px;}
._5{margin-left:-3.024000px;}
._4{margin-left:-1.944000px;}
._6{width:1.798065px;}
._1{width:108.000426px;}
._a{width:487.889534px;}
._c{width:1084.937711px;}
._0{width:6975.224120px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(149,55,53);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:72.000006px;}
.fs6{font-size:84.000000px;}
.fs7{font-size:96.000006px;}
.fs4{font-size:96.000008px;}
.fs1{font-size:108.000003px;}
.fs0{font-size:132.000007px;}
.fs3{font-size:144.000005px;}
.fs2{font-size:167.999999px;}
.y0{bottom:0.000000px;}
.y3c{bottom:67.055444px;}
.y6a{bottom:70.185305px;}
.y52{bottom:78.962438px;}
.y69{bottom:102.585306px;}
.y30{bottom:105.110616px;}
.y51{bottom:111.362443px;}
.y2f{bottom:130.310605px;}
.y68{bottom:134.985284px;}
.y3b{bottom:162.318196px;}
.y67{bottom:167.385308px;}
.y2e{bottom:180.710607px;}
.y66{bottom:199.785309px;}
.y2d{bottom:205.910601px;}
.y3a{bottom:207.092974px;}
.y2c{bottom:231.110600px;}
.y65{bottom:232.185310px;}
.y64{bottom:264.585311px;}
.y1a{bottom:296.052237px;}
.y39{bottom:303.865598px;}
.y63{bottom:329.385302px;}
.y38{bottom:336.265593px;}
.y35{bottom:361.006836px;}
.y62{bottom:361.785303px;}
.y37{bottom:368.665590px;}
.y34{bottom:386.206826px;}
.y61{bottom:394.185311px;}
.y60{bottom:426.585316px;}
.y33{bottom:436.606828px;}
.y32{bottom:461.806822px;}
.y1e{bottom:476.614298px;}
.y5d{bottom:477.168355px;}
.y31{bottom:487.006820px;}
.y1d{bottom:509.014305px;}
.y87{bottom:527.084944px;}
.y1c{bottom:541.414299px;}
.y3{bottom:544.054220px;}
.y1b{bottom:573.814297px;}
.y4f{bottom:616.883122px;}
.y36{bottom:627.699098px;}
.y4e{bottom:649.283123px;}
.y3e{bottom:679.773774px;}
.y4d{bottom:681.683113px;}
.y8a{bottom:690.041098px;}
.y4c{bottom:714.083114px;}
.y89{bottom:718.841090px;}
.y4b{bottom:746.483122px;}
.y88{bottom:747.641089px;}
.y4a{bottom:778.883127px;}
.y7d{bottom:804.283266px;}
.y86{bottom:815.144961px;}
.y49{bottom:835.739279px;}
.y7c{bottom:836.683267px;}
.y85{bottom:847.544940px;}
.y7b{bottom:869.083268px;}
.y84{bottom:879.944963px;}
.y7a{bottom:901.483258px;}
.y83{bottom:912.344964px;}
.y76{bottom:919.877132px;}
.y79{bottom:933.883259px;}
.y78{bottom:966.283266px;}
.y82{bottom:977.144966px;}
.y48{bottom:987.997020px;}
.y5f{bottom:991.885117px;}
.y77{bottom:998.683272px;}
.y81{bottom:1009.544967px;}
.y47{bottom:1020.397015px;}
.y5e{bottom:1024.285123px;}
.y46{bottom:1052.797012px;}
.y75{bottom:1055.163786px;}
.y53{bottom:1073.117212px;}
.y80{bottom:1074.344958px;}
.y74{bottom:1087.563765px;}
.y45{bottom:1097.086355px;}
.y7f{bottom:1106.744966px;}
.y73{bottom:1119.963788px;}
.y44{bottom:1122.286353px;}
.y7e{bottom:1139.144971px;}
.y72{bottom:1152.363789px;}
.y5c{bottom:1178.937246px;}
.y71{bottom:1184.763790px;}
.y5b{bottom:1211.337225px;}
.y70{bottom:1217.163791px;}
.y5{bottom:1241.698917px;}
.y6f{bottom:1249.563792px;}
.y43{bottom:1257.440379px;}
.y5a{bottom:1276.137250px;}
.y6e{bottom:1281.963782px;}
.y42{bottom:1289.840373px;}
.y16{bottom:1304.365885px;}
.y59{bottom:1308.537251px;}
.y6d{bottom:1314.363783px;}
.y41{bottom:1322.240371px;}
.y58{bottom:1340.937252px;}
.y15{bottom:1341.625875px;}
.y6c{bottom:1346.763791px;}
.y57{bottom:1373.337253px;}
.y40{bottom:1374.653266px;}
.y14{bottom:1378.885877px;}
.y6b{bottom:1379.163797px;}
.y13{bottom:1416.145866px;}
.y3f{bottom:1429.184786px;}
.y2{bottom:1437.602486px;}
.y56{bottom:1438.137243px;}
.y12{bottom:1453.405868px;}
.y55{bottom:1470.537251px;}
.y4{bottom:1481.062587px;}
.y11{bottom:1490.665846px;}
.y54{bottom:1502.937257px;}
.y2b{bottom:1505.905963px;}
.y10{bottom:1527.925848px;}
.y2a{bottom:1538.305942px;}
.y50{bottom:1550.260262px;}
.yf{bottom:1565.185849px;}
.y29{bottom:1570.705943px;}
.ye{bottom:1602.445850px;}
.y28{bottom:1603.105921px;}
.y27{bottom:1635.505945px;}
.yd{bottom:1639.705885px;}
.y26{bottom:1667.905968px;}
.yc{bottom:1676.965897px;}
.y25{bottom:1700.305969px;}
.yb{bottom:1714.225887px;}
.y24{bottom:1732.705970px;}
.ya{bottom:1751.485888px;}
.y23{bottom:1765.105960px;}
.y9{bottom:1788.745878px;}
.y22{bottom:1797.505956px;}
.y8{bottom:1826.005868px;}
.y21{bottom:1829.905962px;}
.y20{bottom:1862.305957px;}
.y7{bottom:1863.265863px;}
.y1f{bottom:1894.705954px;}
.y6{bottom:1900.525861px;}
.y1{bottom:1954.883960px;}
.y3d{bottom:1977.834906px;}
.y19{bottom:2099.167552px;}
.y18{bottom:2123.602553px;}
.y17{bottom:2168.242559px;}
.h5{height:52.453129px;}
.h8{height:61.154297px;}
.h6{height:61.195312px;}
.h7{height:61.201162px;}
.ha{height:69.937504px;}
.h9{height:78.626956px;}
.h2{height:78.679690px;}
.h1{height:96.164068px;}
.h3{height:122.308593px;}
.h4{height:123.937507px;}
.h0{height:2268.000000px;}
.w0{width:3888.000000px;}
.x0{left:0.000000px;}
.x1{left:71.781499px;}
.x2c{left:73.960633px;}
.xb{left:76.110378px;}
.x4{left:82.319850px;}
.x14{left:108.953822px;}
.x5{left:125.627958px;}
.x6{left:136.319857px;}
.x7{left:179.627959px;}
.x11{left:202.386336px;}
.x10{left:280.777565px;}
.x12{left:419.403568px;}
.x3{left:1030.544324px;}
.x17{left:1035.026746px;}
.x13{left:1038.039896px;}
.x1b{left:1044.463646px;}
.x15{left:1053.053179px;}
.x1c{left:1055.155541px;}
.x8{left:1058.826566px;}
.x2d{left:1071.000034px;}
.x1a{left:1084.544326px;}
.x1e{left:1089.965622px;}
.x18{left:1095.236225px;}
.xa{left:1186.316183px;}
.x16{left:1285.700779px;}
.x1d{left:1387.869119px;}
.x19{left:1459.792284px;}
.x9{left:1556.181162px;}
.x1f{left:1987.996226px;}
.x20{left:2418.862465px;}
.x21{left:2467.123729px;}
.x22{left:2560.434944px;}
.x2{left:2947.015894px;}
.x23{left:2950.887216px;}
.xc{left:2952.377989px;}
.x29{left:2966.774270px;}
.x2a{left:2977.466165px;}
.xd{left:2995.686096px;}
.x24{left:3000.404796px;}
.xe{left:3006.377995px;}
.x25{left:3011.096695px;}
.x2b{left:3020.774272px;}
.xf{left:3049.686098px;}
.x26{left:3054.404798px;}
.x27{left:3067.904798px;}
.x28{left:3108.404799px;}
.x2e{left:3149.598476px;}
@media print{
.v2{vertical-align:-36.000001pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:36.000001pt;}
.v1{vertical-align:48.000002pt;}
.ls9{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.001344pt;}
.ls1{letter-spacing:0.009718pt;}
.ls2{letter-spacing:0.009758pt;}
.ls3{letter-spacing:0.009998pt;}
.ls7{letter-spacing:0.014520pt;}
.ls5{letter-spacing:0.014600pt;}
.ls8{letter-spacing:0.014624pt;}
.ls4{letter-spacing:0.014640pt;}
.ls6{letter-spacing:0.080600pt;}
.ws0{word-spacing:-26.592001pt;}
.ws1{word-spacing:-23.637335pt;}
.ws2{word-spacing:-20.682667pt;}
.ws5{word-spacing:-0.096000pt;}
.ws6{word-spacing:-0.074667pt;}
.ws7{word-spacing:0.000000pt;}
.ws3{word-spacing:336.967294pt;}
.ws4{word-spacing:1944.231635pt;}
._b{margin-left:-1567.877701pt;}
._7{margin-left:-10.560000pt;}
._9{margin-left:-8.074666pt;}
._3{margin-left:-7.104016pt;}
._2{margin-left:-5.280000pt;}
._8{margin-left:-4.106667pt;}
._5{margin-left:-2.688000pt;}
._4{margin-left:-1.728000pt;}
._6{width:1.598280pt;}
._1{width:96.000379pt;}
._a{width:433.679586pt;}
._c{width:964.389077pt;}
._0{width:6200.199218pt;}
.fs5{font-size:64.000005pt;}
.fs6{font-size:74.666666pt;}
.fs7{font-size:85.333339pt;}
.fs4{font-size:85.333340pt;}
.fs1{font-size:96.000003pt;}
.fs0{font-size:117.333340pt;}
.fs3{font-size:128.000004pt;}
.fs2{font-size:149.333333pt;}
.y0{bottom:0.000000pt;}
.y3c{bottom:59.604839pt;}
.y6a{bottom:62.386937pt;}
.y52{bottom:70.188834pt;}
.y69{bottom:91.186938pt;}
.y30{bottom:93.431658pt;}
.y51{bottom:98.988839pt;}
.y2f{bottom:115.831649pt;}
.y68{bottom:119.986919pt;}
.y3b{bottom:144.282841pt;}
.y67{bottom:148.786940pt;}
.y2e{bottom:160.631651pt;}
.y66{bottom:177.586941pt;}
.y2d{bottom:183.031645pt;}
.y3a{bottom:184.082643pt;}
.y2c{bottom:205.431644pt;}
.y65{bottom:206.386942pt;}
.y64{bottom:235.186943pt;}
.y1a{bottom:263.157544pt;}
.y39{bottom:270.102754pt;}
.y63{bottom:292.786935pt;}
.y38{bottom:298.902749pt;}
.y35{bottom:320.894966pt;}
.y62{bottom:321.586936pt;}
.y37{bottom:327.702747pt;}
.y34{bottom:343.294956pt;}
.y61{bottom:350.386943pt;}
.y60{bottom:379.186948pt;}
.y33{bottom:388.094958pt;}
.y32{bottom:410.494953pt;}
.y1e{bottom:423.657154pt;}
.y5d{bottom:424.149649pt;}
.y31{bottom:432.894951pt;}
.y1d{bottom:452.457160pt;}
.y87{bottom:468.519950pt;}
.y1c{bottom:481.257155pt;}
.y3{bottom:483.603751pt;}
.y1b{bottom:510.057153pt;}
.y4f{bottom:548.340553pt;}
.y36{bottom:557.954753pt;}
.y4e{bottom:577.140554pt;}
.y3e{bottom:604.243355pt;}
.y4d{bottom:605.940545pt;}
.y8a{bottom:613.369865pt;}
.y4c{bottom:634.740546pt;}
.y89{bottom:638.969858pt;}
.y4b{bottom:663.540553pt;}
.y88{bottom:664.569857pt;}
.y4a{bottom:692.340558pt;}
.y7d{bottom:714.918458pt;}
.y86{bottom:724.573299pt;}
.y49{bottom:742.879359pt;}
.y7c{bottom:743.718459pt;}
.y85{bottom:753.373280pt;}
.y7b{bottom:772.518460pt;}
.y84{bottom:782.173301pt;}
.y7a{bottom:801.318451pt;}
.y83{bottom:810.973301pt;}
.y76{bottom:817.668562pt;}
.y79{bottom:830.118452pt;}
.y78{bottom:858.918459pt;}
.y82{bottom:868.573303pt;}
.y48{bottom:878.219574pt;}
.y5f{bottom:881.675660pt;}
.y77{bottom:887.718464pt;}
.y81{bottom:897.373304pt;}
.y47{bottom:907.019569pt;}
.y5e{bottom:910.475665pt;}
.y46{bottom:935.819566pt;}
.y75{bottom:937.923366pt;}
.y53{bottom:953.881966pt;}
.y80{bottom:954.973296pt;}
.y74{bottom:966.723346pt;}
.y45{bottom:975.187871pt;}
.y7f{bottom:983.773303pt;}
.y73{bottom:995.523367pt;}
.y44{bottom:997.587869pt;}
.y7e{bottom:1012.573308pt;}
.y72{bottom:1024.323368pt;}
.y5c{bottom:1047.944219pt;}
.y71{bottom:1053.123369pt;}
.y5b{bottom:1076.744200pt;}
.y70{bottom:1081.923370pt;}
.y5{bottom:1103.732371pt;}
.y6f{bottom:1110.723371pt;}
.y43{bottom:1117.724781pt;}
.y5a{bottom:1134.344222pt;}
.y6e{bottom:1139.523362pt;}
.y42{bottom:1146.524776pt;}
.y16{bottom:1159.436343pt;}
.y59{bottom:1163.144223pt;}
.y6d{bottom:1168.323363pt;}
.y41{bottom:1175.324774pt;}
.y58{bottom:1191.944224pt;}
.y15{bottom:1192.556334pt;}
.y6c{bottom:1197.123370pt;}
.y57{bottom:1220.744225pt;}
.y40{bottom:1221.914015pt;}
.y14{bottom:1225.676335pt;}
.y6b{bottom:1225.923375pt;}
.y13{bottom:1258.796326pt;}
.y3f{bottom:1270.386476pt;}
.y2{bottom:1277.868876pt;}
.y56{bottom:1278.344216pt;}
.y12{bottom:1291.916327pt;}
.y55{bottom:1307.144223pt;}
.y4{bottom:1316.500078pt;}
.y11{bottom:1325.036308pt;}
.y54{bottom:1335.944228pt;}
.y2b{bottom:1338.583078pt;}
.y10{bottom:1358.156309pt;}
.y2a{bottom:1367.383059pt;}
.y50{bottom:1378.009122pt;}
.yf{bottom:1391.276310pt;}
.y29{bottom:1396.183060pt;}
.ye{bottom:1424.396311pt;}
.y28{bottom:1424.983041pt;}
.y27{bottom:1453.783062pt;}
.yd{bottom:1457.516342pt;}
.y26{bottom:1482.583083pt;}
.yc{bottom:1490.636353pt;}
.y25{bottom:1511.383084pt;}
.yb{bottom:1523.756344pt;}
.y24{bottom:1540.183085pt;}
.ya{bottom:1556.876345pt;}
.y23{bottom:1568.983076pt;}
.y9{bottom:1589.996336pt;}
.y22{bottom:1597.783072pt;}
.y8{bottom:1623.116327pt;}
.y21{bottom:1626.583078pt;}
.y20{bottom:1655.383072pt;}
.y7{bottom:1656.236322pt;}
.y1f{bottom:1684.183070pt;}
.y6{bottom:1689.356321pt;}
.y1{bottom:1737.674631pt;}
.y3d{bottom:1758.075472pt;}
.y19{bottom:1865.926713pt;}
.y18{bottom:1887.646714pt;}
.y17{bottom:1927.326719pt;}
.h5{height:46.625004pt;}
.h8{height:54.359375pt;}
.h6{height:54.395833pt;}
.h7{height:54.401033pt;}
.ha{height:62.166671pt;}
.h9{height:69.890627pt;}
.h2{height:69.937502pt;}
.h1{height:85.479171pt;}
.h3{height:108.718750pt;}
.h4{height:110.166673pt;}
.h0{height:2016.000000pt;}
.w0{width:3456.000000pt;}
.x0{left:0.000000pt;}
.x1{left:63.805777pt;}
.x2c{left:65.742785pt;}
.xb{left:67.653669pt;}
.x4{left:73.173200pt;}
.x14{left:96.847842pt;}
.x5{left:111.669296pt;}
.x6{left:121.173206pt;}
.x7{left:159.669297pt;}
.x11{left:179.898966pt;}
.x10{left:249.580058pt;}
.x12{left:372.803172pt;}
.x3{left:916.039399pt;}
.x17{left:920.023774pt;}
.x13{left:922.702130pt;}
.x1b{left:928.412130pt;}
.x15{left:936.047270pt;}
.x1c{left:937.916036pt;}
.x8{left:941.179170pt;}
.x2d{left:952.000030pt;}
.x1a{left:964.039401pt;}
.x1e{left:968.858331pt;}
.x18{left:973.543311pt;}
.xa{left:1054.503274pt;}
.x16{left:1142.845137pt;}
.x1d{left:1233.661439pt;}
.x19{left:1297.593142pt;}
.x9{left:1383.272144pt;}
.x1f{left:1767.107757pt;}
.x20{left:2150.099969pt;}
.x21{left:2192.998870pt;}
.x22{left:2275.942173pt;}
.x2{left:2619.569684pt;}
.x23{left:2623.010859pt;}
.xc{left:2624.335990pt;}
.x29{left:2637.132684pt;}
.x2a{left:2646.636591pt;}
.xd{left:2662.832085pt;}
.x24{left:2667.026485pt;}
.xe{left:2672.335996pt;}
.x25{left:2676.530396pt;}
.x2b{left:2685.132686pt;}
.xf{left:2710.832087pt;}
.x26{left:2715.026487pt;}
.x27{left:2727.026487pt;}
.x28{left:2763.026488pt;}
.x2e{left:2799.643090pt;}
}




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