
    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_85b8cd46c631a500b2bd8313.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.984000;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_4b228f084dcc5d4d0103f245.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.121000;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_c95fd99ec97c67e789434460.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.700000;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_5c777a39d1059b0f2d963075.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.969000;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;}
.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:-18.720000px;}
.ws3{word-spacing:-17.706000px;}
.ws2{word-spacing:-1.170000px;}
.ws1{word-spacing:0.000000px;}
._2{margin-left:-10.140000px;}
._3{margin-left:-6.029400px;}
._6{margin-left:-4.999800px;}
._1{margin-left:-3.283800px;}
._0{margin-left:-1.404000px;}
._4{width:1.084200px;}
._5{width:6.084000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:72.000000px;}
.fs0{font-size:78.000000px;}
.fs2{font-size:81.000000px;}
.y0{bottom:0.000000px;}
.y4a{bottom:90.773400px;}
.y49{bottom:114.173400px;}
.yc3{bottom:118.605150px;}
.y8c{bottom:129.296700px;}
.yc2{bottom:142.905150px;}
.y8b{bottom:150.896700px;}
.y48{bottom:166.004400px;}
.yc1{bottom:167.205150px;}
.y8a{bottom:172.496700px;}
.y47{bottom:189.404400px;}
.y89{bottom:194.096700px;}
.y11{bottom:209.954550px;}
.y46{bottom:212.804400px;}
.y88{bottom:215.696700px;}
.yc0{bottom:215.805150px;}
.y10{bottom:233.354550px;}
.y45{bottom:236.204400px;}
.y87{bottom:237.296700px;}
.ybf{bottom:240.105150px;}
.ya7{bottom:251.365050px;}
.yf{bottom:256.754550px;}
.y44{bottom:259.604400px;}
.ybe{bottom:264.405150px;}
.ya6{bottom:274.765050px;}
.y43{bottom:283.004400px;}
.y86{bottom:286.570950px;}
.ybd{bottom:288.705150px;}
.ya5{bottom:298.165050px;}
.ye{bottom:303.554550px;}
.y85{bottom:310.870950px;}
.ybc{bottom:313.005150px;}
.ya4{bottom:321.565050px;}
.yd{bottom:326.954550px;}
.y84{bottom:335.170950px;}
.ya3{bottom:344.965050px;}
.yc{bottom:350.354550px;}
.y83{bottom:359.470950px;}
.ybb{bottom:361.605150px;}
.yb{bottom:373.754550px;}
.y82{bottom:383.770950px;}
.yba{bottom:385.905150px;}
.y81{bottom:408.070950px;}
.yb9{bottom:410.205150px;}
.y42{bottom:413.950500px;}
.ya2{bottom:419.586750px;}
.ya{bottom:420.554550px;}
.y80{bottom:432.370950px;}
.y41{bottom:438.250500px;}
.ya1{bottom:443.886750px;}
.y9{bottom:443.954550px;}
.y7f{bottom:456.670950px;}
.yb8{bottom:458.805150px;}
.y40{bottom:462.550500px;}
.y7e{bottom:480.970950px;}
.yb7{bottom:483.105150px;}
.y3f{bottom:486.850500px;}
.y95{bottom:487.332750px;}
.y8{bottom:490.754550px;}
.ya0{bottom:492.486750px;}
.y7d{bottom:505.270950px;}
.yb6{bottom:507.405150px;}
.y94{bottom:510.732750px;}
.y7{bottom:514.154550px;}
.y9f{bottom:516.786750px;}
.y7c{bottom:529.570950px;}
.yb5{bottom:531.705150px;}
.y3e{bottom:535.450500px;}
.y6{bottom:537.554550px;}
.y9e{bottom:541.086750px;}
.y56{bottom:552.076050px;}
.y3d{bottom:559.750500px;}
.y64{bottom:564.132450px;}
.y9d{bottom:565.386750px;}
.y55{bottom:575.476050px;}
.y3c{bottom:584.050500px;}
.y5{bottom:584.354550px;}
.y63{bottom:588.432450px;}
.y58{bottom:598.876050px;}
.y32{bottom:599.876100px;}
.y93{bottom:600.621300px;}
.y4{bottom:607.754550px;}
.y3b{bottom:608.350500px;}
.y62{bottom:612.732450px;}
.y9c{bottom:613.986750px;}
.y1b{bottom:618.520200px;}
.y31{bottom:620.877600px;}
.y54{bottom:622.276050px;}
.y92{bottom:624.921300px;}
.y77{bottom:627.642600px;}
.y3a{bottom:632.650500px;}
.y61{bottom:637.032450px;}
.y9b{bottom:638.286750px;}
.y30{bottom:641.879100px;}
.y1a{bottom:641.920200px;}
.y53{bottom:645.676050px;}
.y91{bottom:649.221300px;}
.y76{bottom:651.942600px;}
.y23{bottom:653.122650px;}
.y3{bottom:654.554550px;}
.y60{bottom:661.332450px;}
.y9a{bottom:662.586750px;}
.y52{bottom:669.076050px;}
.y90{bottom:673.521300px;}
.y22{bottom:674.722650px;}
.y75{bottom:676.242600px;}
.y39{bottom:681.250500px;}
.y2f{bottom:683.882100px;}
.y5f{bottom:685.632450px;}
.y6e{bottom:685.907250px;}
.y99{bottom:686.886750px;}
.y19{bottom:688.720200px;}
.yae{bottom:688.722600px;}
.y51{bottom:692.476050px;}
.y21{bottom:696.322650px;}
.y8f{bottom:697.821300px;}
.y74{bottom:700.542600px;}
.y2{bottom:701.354550px;}
.y2e{bottom:704.883600px;}
.y38{bottom:705.550500px;}
.y6d{bottom:709.307250px;}
.y5e{bottom:709.932450px;}
.y18{bottom:712.120200px;}
.yad{bottom:712.122600px;}
.yb3{bottom:713.624100px;}
.y50{bottom:715.876050px;}
.y20{bottom:717.922650px;}
.y8e{bottom:722.121300px;}
.y73{bottom:724.842600px;}
.y2d{bottom:725.885100px;}
.y68{bottom:727.032750px;}
.y7b{bottom:729.288600px;}
.y37{bottom:729.850500px;}
.y6c{bottom:732.707250px;}
.y5d{bottom:734.232450px;}
.y98{bottom:735.486750px;}
.y17{bottom:735.520200px;}
.yac{bottom:735.522600px;}
.yb2{bottom:737.024100px;}
.y4f{bottom:739.276050px;}
.y8d{bottom:746.421300px;}
.y2c{bottom:746.886600px;}
.y1{bottom:748.154550px;}
.y67{bottom:750.432750px;}
.y7a{bottom:752.688600px;}
.y36{bottom:754.150500px;}
.y6b{bottom:756.107250px;}
.yab{bottom:758.922600px;}
.y97{bottom:759.786750px;}
.yb1{bottom:760.424100px;}
.y1f{bottom:761.122650px;}
.y4e{bottom:762.676050px;}
.y2b{bottom:767.888100px;}
.y72{bottom:773.442600px;}
.y66{bottom:773.832750px;}
.y79{bottom:776.088600px;}
.y27{bottom:776.132400px;}
.y25{bottom:778.798650px;}
.y6a{bottom:779.507250px;}
.y16{bottom:782.320200px;}
.yaa{bottom:782.322600px;}
.y1e{bottom:782.722650px;}
.y5c{bottom:782.832450px;}
.yb0{bottom:783.824100px;}
.y96{bottom:784.086750px;}
.y4d{bottom:786.076050px;}
.yb4{bottom:791.067150px;}
.y65{bottom:797.232750px;}
.y71{bottom:797.742600px;}
.y78{bottom:799.488600px;}
.y26{bottom:799.532400px;}
.y24{bottom:800.398650px;}
.y35{bottom:802.750500px;}
.y69{bottom:802.907250px;}
.y1d{bottom:804.322650px;}
.y15{bottom:805.720200px;}
.ya9{bottom:805.722600px;}
.y5b{bottom:807.132450px;}
.yaf{bottom:807.224100px;}
.y57{bottom:809.476050px;}
.y2a{bottom:809.891100px;}
.y70{bottom:822.042600px;}
.y1c{bottom:825.922650px;}
.y34{bottom:827.050500px;}
.y14{bottom:829.120200px;}
.ya8{bottom:829.122600px;}
.y29{bottom:830.892600px;}
.y5a{bottom:831.432450px;}
.y4c{bottom:832.876050px;}
.y6f{bottom:846.342600px;}
.y33{bottom:851.350500px;}
.y28{bottom:851.894100px;}
.y13{bottom:852.520200px;}
.y12{bottom:853.532550px;}
.y59{bottom:855.732450px;}
.y4b{bottom:856.276050px;}
.h5{height:51.264000px;}
.h3{height:54.600000px;}
.h6{height:55.536000px;}
.h4{height:61.344000px;}
.h2{height:66.456000px;}
.h7{height:69.012000px;}
.h0{height:892.914000px;}
.h1{height:893.250000px;}
.w1{width:1126.500000px;}
.w0{width:1126.771500px;}
.w2{width:2253.540000px;}
.w3{width:2253.750000px;}
.x0{left:0.000000px;}
.x3{left:25.759800px;}
.x2{left:29.137800px;}
.x3c{left:46.984200px;}
.x1{left:54.000000px;}
.x13{left:58.641750px;}
.x31{left:139.251900px;}
.x14{left:446.711250px;}
.x36{left:662.711700px;}
.x32{left:663.959700px;}
.x35{left:680.534700px;}
.x34{left:682.036200px;}
.x33{left:705.904200px;}
.x9{left:707.822850px;}
.x11{left:815.212200px;}
.x12{left:841.712700px;}
.x7{left:845.280450px;}
.x8{left:870.201450px;}
.x20{left:871.721400px;}
.x21{left:888.296400px;}
.x19{left:889.981050px;}
.x16{left:895.070550px;}
.x18{left:896.357550px;}
.x1f{left:897.773400px;}
.x17{left:902.656050px;}
.x22{left:1180.771650px;}
.x15{left:1194.301050px;}
.xa{left:1213.936950px;}
.x24{left:1243.775850px;}
.x23{left:1247.249850px;}
.x25{left:1253.999850px;}
.x27{left:1265.681850px;}
.x26{left:1267.121850px;}
.x37{left:1288.346400px;}
.x28{left:1312.193850px;}
.x3d{left:1337.253450px;}
.x2a{left:1347.991650px;}
.x2c{left:1351.454400px;}
.x29{left:1364.475150px;}
.x2b{left:1366.074900px;}
.x2d{left:1448.978400px;}
.x4{left:1488.862200px;}
.x30{left:1621.330650px;}
.x2e{left:1623.229650px;}
.x2f{left:1645.042650px;}
.xb{left:1920.179700px;}
.xc{left:1937.086200px;}
.x38{left:1940.601900px;}
.xf{left:1942.097700px;}
.x3b{left:1943.156400px;}
.xd{left:1949.936700px;}
.x39{left:1951.950900px;}
.xe{left:1959.764700px;}
.x10{left:1967.369700px;}
.x1a{left:1978.237050px;}
.x1d{left:1979.738550px;}
.x3a{left:1989.546900px;}
.x1c{left:1991.575050px;}
.x1b{left:1997.015550px;}
.x1e{left:2001.403050px;}
.x5{left:2042.074200px;}
.x6{left:2056.366200px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-16.640000pt;}
.ws3{word-spacing:-15.738667pt;}
.ws2{word-spacing:-1.040000pt;}
.ws1{word-spacing:0.000000pt;}
._2{margin-left:-9.013333pt;}
._3{margin-left:-5.359467pt;}
._6{margin-left:-4.444267pt;}
._1{margin-left:-2.918933pt;}
._0{margin-left:-1.248000pt;}
._4{width:0.963733pt;}
._5{width:5.408000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:69.333333pt;}
.fs2{font-size:72.000000pt;}
.y0{bottom:0.000000pt;}
.y4a{bottom:80.687467pt;}
.y49{bottom:101.487467pt;}
.yc3{bottom:105.426800pt;}
.y8c{bottom:114.930400pt;}
.yc2{bottom:127.026800pt;}
.y8b{bottom:134.130400pt;}
.y48{bottom:147.559467pt;}
.yc1{bottom:148.626800pt;}
.y8a{bottom:153.330400pt;}
.y47{bottom:168.359467pt;}
.y89{bottom:172.530400pt;}
.y11{bottom:186.626267pt;}
.y46{bottom:189.159467pt;}
.y88{bottom:191.730400pt;}
.yc0{bottom:191.826800pt;}
.y10{bottom:207.426267pt;}
.y45{bottom:209.959467pt;}
.y87{bottom:210.930400pt;}
.ybf{bottom:213.426800pt;}
.ya7{bottom:223.435600pt;}
.yf{bottom:228.226267pt;}
.y44{bottom:230.759467pt;}
.ybe{bottom:235.026800pt;}
.ya6{bottom:244.235600pt;}
.y43{bottom:251.559467pt;}
.y86{bottom:254.729733pt;}
.ybd{bottom:256.626800pt;}
.ya5{bottom:265.035600pt;}
.ye{bottom:269.826267pt;}
.y85{bottom:276.329733pt;}
.ybc{bottom:278.226800pt;}
.ya4{bottom:285.835600pt;}
.yd{bottom:290.626267pt;}
.y84{bottom:297.929733pt;}
.ya3{bottom:306.635600pt;}
.yc{bottom:311.426267pt;}
.y83{bottom:319.529733pt;}
.ybb{bottom:321.426800pt;}
.yb{bottom:332.226267pt;}
.y82{bottom:341.129733pt;}
.yba{bottom:343.026800pt;}
.y81{bottom:362.729733pt;}
.yb9{bottom:364.626800pt;}
.y42{bottom:367.956000pt;}
.ya2{bottom:372.966000pt;}
.ya{bottom:373.826267pt;}
.y80{bottom:384.329733pt;}
.y41{bottom:389.556000pt;}
.ya1{bottom:394.566000pt;}
.y9{bottom:394.626267pt;}
.y7f{bottom:405.929733pt;}
.yb8{bottom:407.826800pt;}
.y40{bottom:411.156000pt;}
.y7e{bottom:427.529733pt;}
.yb7{bottom:429.426800pt;}
.y3f{bottom:432.756000pt;}
.y95{bottom:433.184667pt;}
.y8{bottom:436.226267pt;}
.ya0{bottom:437.766000pt;}
.y7d{bottom:449.129733pt;}
.yb6{bottom:451.026800pt;}
.y94{bottom:453.984667pt;}
.y7{bottom:457.026267pt;}
.y9f{bottom:459.366000pt;}
.y7c{bottom:470.729733pt;}
.yb5{bottom:472.626800pt;}
.y3e{bottom:475.956000pt;}
.y6{bottom:477.826267pt;}
.y9e{bottom:480.966000pt;}
.y56{bottom:490.734267pt;}
.y3d{bottom:497.556000pt;}
.y64{bottom:501.451067pt;}
.y9d{bottom:502.566000pt;}
.y55{bottom:511.534267pt;}
.y3c{bottom:519.156000pt;}
.y5{bottom:519.426267pt;}
.y63{bottom:523.051067pt;}
.y58{bottom:532.334267pt;}
.y32{bottom:533.223200pt;}
.y93{bottom:533.885600pt;}
.y4{bottom:540.226267pt;}
.y3b{bottom:540.756000pt;}
.y62{bottom:544.651067pt;}
.y9c{bottom:545.766000pt;}
.y1b{bottom:549.795733pt;}
.y31{bottom:551.891200pt;}
.y54{bottom:553.134267pt;}
.y92{bottom:555.485600pt;}
.y77{bottom:557.904533pt;}
.y3a{bottom:562.356000pt;}
.y61{bottom:566.251067pt;}
.y9b{bottom:567.366000pt;}
.y30{bottom:570.559200pt;}
.y1a{bottom:570.595733pt;}
.y53{bottom:573.934267pt;}
.y91{bottom:577.085600pt;}
.y76{bottom:579.504533pt;}
.y23{bottom:580.553467pt;}
.y3{bottom:581.826267pt;}
.y60{bottom:587.851067pt;}
.y9a{bottom:588.966000pt;}
.y52{bottom:594.734267pt;}
.y90{bottom:598.685600pt;}
.y22{bottom:599.753467pt;}
.y75{bottom:601.104533pt;}
.y39{bottom:605.556000pt;}
.y2f{bottom:607.895200pt;}
.y5f{bottom:609.451067pt;}
.y6e{bottom:609.695333pt;}
.y99{bottom:610.566000pt;}
.y19{bottom:612.195733pt;}
.yae{bottom:612.197867pt;}
.y51{bottom:615.534267pt;}
.y21{bottom:618.953467pt;}
.y8f{bottom:620.285600pt;}
.y74{bottom:622.704533pt;}
.y2{bottom:623.426267pt;}
.y2e{bottom:626.563200pt;}
.y38{bottom:627.156000pt;}
.y6d{bottom:630.495333pt;}
.y5e{bottom:631.051067pt;}
.y18{bottom:632.995733pt;}
.yad{bottom:632.997867pt;}
.yb3{bottom:634.332533pt;}
.y50{bottom:636.334267pt;}
.y20{bottom:638.153467pt;}
.y8e{bottom:641.885600pt;}
.y73{bottom:644.304533pt;}
.y2d{bottom:645.231200pt;}
.y68{bottom:646.251333pt;}
.y7b{bottom:648.256533pt;}
.y37{bottom:648.756000pt;}
.y6c{bottom:651.295333pt;}
.y5d{bottom:652.651067pt;}
.y98{bottom:653.766000pt;}
.y17{bottom:653.795733pt;}
.yac{bottom:653.797867pt;}
.yb2{bottom:655.132533pt;}
.y4f{bottom:657.134267pt;}
.y8d{bottom:663.485600pt;}
.y2c{bottom:663.899200pt;}
.y1{bottom:665.026267pt;}
.y67{bottom:667.051333pt;}
.y7a{bottom:669.056533pt;}
.y36{bottom:670.356000pt;}
.y6b{bottom:672.095333pt;}
.yab{bottom:674.597867pt;}
.y97{bottom:675.366000pt;}
.yb1{bottom:675.932533pt;}
.y1f{bottom:676.553467pt;}
.y4e{bottom:677.934267pt;}
.y2b{bottom:682.567200pt;}
.y72{bottom:687.504533pt;}
.y66{bottom:687.851333pt;}
.y79{bottom:689.856533pt;}
.y27{bottom:689.895467pt;}
.y25{bottom:692.265467pt;}
.y6a{bottom:692.895333pt;}
.y16{bottom:695.395733pt;}
.yaa{bottom:695.397867pt;}
.y1e{bottom:695.753467pt;}
.y5c{bottom:695.851067pt;}
.yb0{bottom:696.732533pt;}
.y96{bottom:696.966000pt;}
.y4d{bottom:698.734267pt;}
.yb4{bottom:703.170800pt;}
.y65{bottom:708.651333pt;}
.y71{bottom:709.104533pt;}
.y78{bottom:710.656533pt;}
.y26{bottom:710.695467pt;}
.y24{bottom:711.465467pt;}
.y35{bottom:713.556000pt;}
.y69{bottom:713.695333pt;}
.y1d{bottom:714.953467pt;}
.y15{bottom:716.195733pt;}
.ya9{bottom:716.197867pt;}
.y5b{bottom:717.451067pt;}
.yaf{bottom:717.532533pt;}
.y57{bottom:719.534267pt;}
.y2a{bottom:719.903200pt;}
.y70{bottom:730.704533pt;}
.y1c{bottom:734.153467pt;}
.y34{bottom:735.156000pt;}
.y14{bottom:736.995733pt;}
.ya8{bottom:736.997867pt;}
.y29{bottom:738.571200pt;}
.y5a{bottom:739.051067pt;}
.y4c{bottom:740.334267pt;}
.y6f{bottom:752.304533pt;}
.y33{bottom:756.756000pt;}
.y28{bottom:757.239200pt;}
.y13{bottom:757.795733pt;}
.y12{bottom:758.695600pt;}
.y59{bottom:760.651067pt;}
.y4b{bottom:761.134267pt;}
.h5{height:45.568000pt;}
.h3{height:48.533333pt;}
.h6{height:49.365333pt;}
.h4{height:54.528000pt;}
.h2{height:59.072000pt;}
.h7{height:61.344000pt;}
.h0{height:793.701333pt;}
.h1{height:794.000000pt;}
.w1{width:1001.333333pt;}
.w0{width:1001.574667pt;}
.w2{width:2003.146667pt;}
.w3{width:2003.333333pt;}
.x0{left:0.000000pt;}
.x3{left:22.897600pt;}
.x2{left:25.900267pt;}
.x3c{left:41.763733pt;}
.x1{left:48.000000pt;}
.x13{left:52.126000pt;}
.x31{left:123.779467pt;}
.x14{left:397.076667pt;}
.x36{left:589.077067pt;}
.x32{left:590.186400pt;}
.x35{left:604.919733pt;}
.x34{left:606.254400pt;}
.x33{left:627.470400pt;}
.x9{left:629.175867pt;}
.x11{left:724.633067pt;}
.x12{left:748.189067pt;}
.x7{left:751.360400pt;}
.x8{left:773.512400pt;}
.x20{left:774.863467pt;}
.x21{left:789.596800pt;}
.x19{left:791.094267pt;}
.x16{left:795.618267pt;}
.x18{left:796.762267pt;}
.x1f{left:798.020800pt;}
.x17{left:802.360933pt;}
.x22{left:1049.574800pt;}
.x15{left:1061.600933pt;}
.xa{left:1079.055067pt;}
.x24{left:1105.578533pt;}
.x23{left:1108.666533pt;}
.x25{left:1114.666533pt;}
.x27{left:1125.050533pt;}
.x26{left:1126.330533pt;}
.x37{left:1145.196800pt;}
.x28{left:1166.394533pt;}
.x3d{left:1188.669733pt;}
.x2a{left:1198.214800pt;}
.x2c{left:1201.292800pt;}
.x29{left:1212.866800pt;}
.x2b{left:1214.288800pt;}
.x2d{left:1287.980800pt;}
.x4{left:1323.433067pt;}
.x30{left:1441.182800pt;}
.x2e{left:1442.870800pt;}
.x2f{left:1462.260133pt;}
.xb{left:1706.826400pt;}
.xc{left:1721.854400pt;}
.x38{left:1724.979467pt;}
.xf{left:1726.309067pt;}
.x3b{left:1727.250133pt;}
.xd{left:1733.277067pt;}
.x39{left:1735.067467pt;}
.xe{left:1742.013067pt;}
.x10{left:1748.773067pt;}
.x1a{left:1758.432933pt;}
.x1d{left:1759.767600pt;}
.x3a{left:1768.486133pt;}
.x1c{left:1770.288933pt;}
.x1b{left:1775.124933pt;}
.x1e{left:1779.024933pt;}
.x5{left:1815.177067pt;}
.x6{left:1827.881067pt;}
}




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