
    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_8bfc6b79e63a28056c56f0e5.woff')format("woff");}.ff1{font-family:ff1;line-height:0.986000;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_46e91c7d001ee2547ed64c42.woff')format("woff");}.ff2{font-family:ff2;line-height:0.973000;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.v1{vertical-align:-32.975400px;}
.v4{vertical-align:-7.854000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:25.973400px;}
.v3{vertical-align:32.967000px;}
.lsa{letter-spacing:-4.368000px;}
.ls2{letter-spacing:-2.520000px;}
.ls5{letter-spacing:-1.980000px;}
.ls6{letter-spacing:-1.920000px;}
.lsd{letter-spacing:-1.560000px;}
.lsf{letter-spacing:-1.188000px;}
.ls13{letter-spacing:-0.570000px;}
.ls15{letter-spacing:-0.480000px;}
.lse{letter-spacing:-0.342000px;}
.ls9{letter-spacing:-0.228000px;}
.ls7{letter-spacing:-0.171000px;}
.lsc{letter-spacing:-0.057000px;}
.ls1{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.053760px;}
.ls12{letter-spacing:0.171000px;}
.ls8{letter-spacing:0.228000px;}
.ls14{letter-spacing:0.285000px;}
.ls11{letter-spacing:0.384000px;}
.ls10{letter-spacing:0.480000px;}
.ls4{letter-spacing:0.570000px;}
.ls3{letter-spacing:1.680000px;}
.ls0{letter-spacing:3.960000px;}
.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;}
}
.ws3{word-spacing:-17.028000px;}
.ws9{word-spacing:-15.840000px;}
.ws1{word-spacing:-15.312000px;}
.ws7{word-spacing:-10.657920px;}
.wsb{word-spacing:-10.317000px;}
.wsa{word-spacing:-10.128000px;}
.ws5{word-spacing:-10.032000px;}
.ws4{word-spacing:-9.927324px;}
.ws6{word-spacing:-9.861000px;}
.ws0{word-spacing:-9.804000px;}
.ws8{word-spacing:-9.690000px;}
.wsc{word-spacing:-8.256000px;}
.ws12{word-spacing:-0.480000px;}
.ws13{word-spacing:-0.384000px;}
.ws16{word-spacing:-0.285000px;}
.ws14{word-spacing:-0.171000px;}
.ws10{word-spacing:-0.053760px;}
.ws2{word-spacing:0.000000px;}
.ws11{word-spacing:0.057000px;}
.wse{word-spacing:0.171000px;}
.wsf{word-spacing:0.228000px;}
.ws15{word-spacing:0.570000px;}
.wsd{word-spacing:6006.672000px;}
._4{margin-left:-6.930000px;}
._1{margin-left:-5.016000px;}
._2{margin-left:-3.078000px;}
._0{margin-left:-1.140000px;}
._5{width:1.037400px;}
._3{width:2.494800px;}
._7{width:3.739008px;}
._6{width:5.363904px;}
._b{width:62.187000px;}
._a{width:66.006000px;}
._9{width:69.369000px;}
._c{width:205.969500px;}
._8{width:318.186000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsc{font-size:42.000000px;}
.fsa{font-size:45.474000px;}
.fsb{font-size:48.000000px;}
.fs8{font-size:53.760000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:57.000000px;}
.fs6{font-size:57.717000px;}
.fs3{font-size:66.000000px;}
.fs9{font-size:78.000000px;}
.fs7{font-size:87.360000px;}
.fs2{font-size:99.000000px;}
.fs5{font-size:192.000000px;}
.fs1{font-size:252.000000px;}
.y0{bottom:0.000000px;}
.y30{bottom:106.334700px;}
.y2f{bottom:124.334700px;}
.y4d{bottom:124.372950px;}
.y54{bottom:133.884000px;}
.y3a{bottom:139.682700px;}
.y4c{bottom:142.370700px;}
.y39{bottom:161.270700px;}
.y4b{bottom:178.366200px;}
.y38{bottom:182.858700px;}
.y4a{bottom:196.363950px;}
.y37{bottom:204.446700px;}
.y49{bottom:214.361700px;}
.y36{bottom:226.034700px;}
.y7{bottom:232.350450px;}
.y8{bottom:232.600800px;}
.y35{bottom:247.622700px;}
.y6{bottom:250.348200px;}
.y48{bottom:250.357200px;}
.y5{bottom:268.345950px;}
.y47{bottom:268.354950px;}
.y34{bottom:269.210700px;}
.y4{bottom:286.343700px;}
.y46{bottom:286.352700px;}
.y33{bottom:290.798700px;}
.y45{bottom:304.350450px;}
.y32{bottom:312.386700px;}
.y3{bottom:322.339200px;}
.y44{bottom:322.348200px;}
.y31{bottom:333.974700px;}
.y2{bottom:340.336950px;}
.y52{bottom:355.011900px;}
.y1{bottom:358.334700px;}
.y43{bottom:358.343700px;}
.y42{bottom:376.341450px;}
.y2e{bottom:394.334700px;}
.y41{bottom:394.339200px;}
.y40{bottom:412.336950px;}
.y3f{bottom:430.334700px;}
.y50{bottom:430.377450px;}
.y4f{bottom:448.375200px;}
.y3e{bottom:466.334700px;}
.y4e{bottom:466.372950px;}
.y1f{bottom:520.345800px;}
.y1e{bottom:538.343550px;}
.y24{bottom:538.357800px;}
.y1d{bottom:556.341300px;}
.y23{bottom:556.355550px;}
.y1c{bottom:574.339050px;}
.y22{bottom:574.353300px;}
.y1b{bottom:592.336800px;}
.y21{bottom:592.351050px;}
.y1a{bottom:610.334550px;}
.y20{bottom:610.348800px;}
.y27{bottom:637.074300px;}
.y18{bottom:646.334550px;}
.y16{bottom:646.334700px;}
.y26{bottom:650.312700px;}
.y25{bottom:666.769200px;}
.y51{bottom:686.123850px;}
.y2d{bottom:700.334700px;}
.y2c{bottom:718.334700px;}
.y53{bottom:734.925000px;}
.y2b{bottom:736.336950px;}
.y2a{bottom:754.334700px;}
.y29{bottom:772.334700px;}
.y28{bottom:790.334700px;}
.y3b{bottom:844.334550px;}
.y3c{bottom:916.334700px;}
.y19{bottom:970.336800px;}
.ye{bottom:990.121500px;}
.yd{bottom:1024.312200px;}
.y15{bottom:1029.059400px;}
.y14{bottom:1045.259400px;}
.yc{bottom:1060.323450px;}
.y13{bottom:1061.459400px;}
.y12{bottom:1093.859400px;}
.yb{bottom:1096.334700px;}
.y11{bottom:1110.059400px;}
.ya{bottom:1115.751900px;}
.y10{bottom:1126.259400px;}
.yf{bottom:1142.459400px;}
.y9{bottom:1178.751900px;}
.y3d{bottom:1190.428950px;}
.y17{bottom:1194.680850px;}
.hd{height:33.516000px;}
.hf{height:34.104000px;}
.hc{height:38.304000px;}
.he{height:38.976000px;}
.ha{height:42.900480px;}
.h7{height:43.092000px;}
.h3{height:45.486000px;}
.h2{height:46.284000px;}
.h6{height:53.592000px;}
.hb{height:63.336000px;}
.h9{height:70.936320px;}
.h5{height:80.388000px;}
.h8{height:153.216000px;}
.h4{height:201.096000px;}
.h0{height:1325.835000px;}
.h1{height:1326.000000px;}
.w1{width:1848.750000px;}
.w0{width:1848.825000px;}
.x0{left:0.000000px;}
.x6{left:82.523550px;}
.x1{left:85.500000px;}
.x19{left:154.807650px;}
.x5{left:516.224400px;}
.x16{left:543.228150px;}
.x18{left:820.644150px;}
.x2{left:891.673500px;}
.x15{left:974.007600px;}
.x7{left:975.648300px;}
.x3{left:977.031450px;}
.x4{left:978.413400px;}
.xf{left:979.689000px;}
.x11{left:1046.355150px;}
.x10{left:1060.971150px;}
.xa{left:1131.169950px;}
.xb{left:1145.577900px;}
.x12{left:1198.803150px;}
.x14{left:1286.622150px;}
.x13{left:1361.451150px;}
.xc{left:1435.921650px;}
.xd{left:1437.299400px;}
.xe{left:1450.335300px;}
.x9{left:1586.954220px;}
.x8{left:1589.200800px;}
.x17{left:1688.917200px;}
@media print{
.v1{vertical-align:-29.311467pt;}
.v4{vertical-align:-6.981333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:23.087467pt;}
.v3{vertical-align:29.304000pt;}
.lsa{letter-spacing:-3.882667pt;}
.ls2{letter-spacing:-2.240000pt;}
.ls5{letter-spacing:-1.760000pt;}
.ls6{letter-spacing:-1.706667pt;}
.lsd{letter-spacing:-1.386667pt;}
.lsf{letter-spacing:-1.056000pt;}
.ls13{letter-spacing:-0.506667pt;}
.ls15{letter-spacing:-0.426667pt;}
.lse{letter-spacing:-0.304000pt;}
.ls9{letter-spacing:-0.202667pt;}
.ls7{letter-spacing:-0.152000pt;}
.lsc{letter-spacing:-0.050667pt;}
.ls1{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.047787pt;}
.ls12{letter-spacing:0.152000pt;}
.ls8{letter-spacing:0.202667pt;}
.ls14{letter-spacing:0.253333pt;}
.ls11{letter-spacing:0.341333pt;}
.ls10{letter-spacing:0.426667pt;}
.ls4{letter-spacing:0.506667pt;}
.ls3{letter-spacing:1.493333pt;}
.ls0{letter-spacing:3.520000pt;}
.ws3{word-spacing:-15.136000pt;}
.ws9{word-spacing:-14.080000pt;}
.ws1{word-spacing:-13.610667pt;}
.ws7{word-spacing:-9.473707pt;}
.wsb{word-spacing:-9.170667pt;}
.wsa{word-spacing:-9.002667pt;}
.ws5{word-spacing:-8.917333pt;}
.ws4{word-spacing:-8.824288pt;}
.ws6{word-spacing:-8.765333pt;}
.ws0{word-spacing:-8.714667pt;}
.ws8{word-spacing:-8.613333pt;}
.wsc{word-spacing:-7.338667pt;}
.ws12{word-spacing:-0.426667pt;}
.ws13{word-spacing:-0.341333pt;}
.ws16{word-spacing:-0.253333pt;}
.ws14{word-spacing:-0.152000pt;}
.ws10{word-spacing:-0.047787pt;}
.ws2{word-spacing:0.000000pt;}
.ws11{word-spacing:0.050667pt;}
.wse{word-spacing:0.152000pt;}
.wsf{word-spacing:0.202667pt;}
.ws15{word-spacing:0.506667pt;}
.wsd{word-spacing:5339.264000pt;}
._4{margin-left:-6.160000pt;}
._1{margin-left:-4.458667pt;}
._2{margin-left:-2.736000pt;}
._0{margin-left:-1.013333pt;}
._5{width:0.922133pt;}
._3{width:2.217600pt;}
._7{width:3.323563pt;}
._6{width:4.767915pt;}
._b{width:55.277333pt;}
._a{width:58.672000pt;}
._9{width:61.661333pt;}
._c{width:183.084000pt;}
._8{width:282.832000pt;}
.fsc{font-size:37.333333pt;}
.fsa{font-size:40.421333pt;}
.fsb{font-size:42.666667pt;}
.fs8{font-size:47.786667pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:50.666667pt;}
.fs6{font-size:51.304000pt;}
.fs3{font-size:58.666667pt;}
.fs9{font-size:69.333333pt;}
.fs7{font-size:77.653333pt;}
.fs2{font-size:88.000000pt;}
.fs5{font-size:170.666667pt;}
.fs1{font-size:224.000000pt;}
.y0{bottom:0.000000pt;}
.y30{bottom:94.519733pt;}
.y2f{bottom:110.519733pt;}
.y4d{bottom:110.553733pt;}
.y54{bottom:119.008000pt;}
.y3a{bottom:124.162400pt;}
.y4c{bottom:126.551733pt;}
.y39{bottom:143.351733pt;}
.y4b{bottom:158.547733pt;}
.y38{bottom:162.541067pt;}
.y4a{bottom:174.545733pt;}
.y37{bottom:181.730400pt;}
.y49{bottom:190.543733pt;}
.y36{bottom:200.919733pt;}
.y7{bottom:206.533733pt;}
.y8{bottom:206.756267pt;}
.y35{bottom:220.109067pt;}
.y6{bottom:222.531733pt;}
.y48{bottom:222.539733pt;}
.y5{bottom:238.529733pt;}
.y47{bottom:238.537733pt;}
.y34{bottom:239.298400pt;}
.y4{bottom:254.527733pt;}
.y46{bottom:254.535733pt;}
.y33{bottom:258.487733pt;}
.y45{bottom:270.533733pt;}
.y32{bottom:277.677067pt;}
.y3{bottom:286.523733pt;}
.y44{bottom:286.531733pt;}
.y31{bottom:296.866400pt;}
.y2{bottom:302.521733pt;}
.y52{bottom:315.566133pt;}
.y1{bottom:318.519733pt;}
.y43{bottom:318.527733pt;}
.y42{bottom:334.525733pt;}
.y2e{bottom:350.519733pt;}
.y41{bottom:350.523733pt;}
.y40{bottom:366.521733pt;}
.y3f{bottom:382.519733pt;}
.y50{bottom:382.557733pt;}
.y4f{bottom:398.555733pt;}
.y3e{bottom:414.519733pt;}
.y4e{bottom:414.553733pt;}
.y1f{bottom:462.529600pt;}
.y1e{bottom:478.527600pt;}
.y24{bottom:478.540267pt;}
.y1d{bottom:494.525600pt;}
.y23{bottom:494.538267pt;}
.y1c{bottom:510.523600pt;}
.y22{bottom:510.536267pt;}
.y1b{bottom:526.521600pt;}
.y21{bottom:526.534267pt;}
.y1a{bottom:542.519600pt;}
.y20{bottom:542.532267pt;}
.y27{bottom:566.288267pt;}
.y18{bottom:574.519600pt;}
.y16{bottom:574.519733pt;}
.y26{bottom:578.055733pt;}
.y25{bottom:592.683733pt;}
.y51{bottom:609.887867pt;}
.y2d{bottom:622.519733pt;}
.y2c{bottom:638.519733pt;}
.y53{bottom:653.266667pt;}
.y2b{bottom:654.521733pt;}
.y2a{bottom:670.519733pt;}
.y29{bottom:686.519733pt;}
.y28{bottom:702.519733pt;}
.y3b{bottom:750.519600pt;}
.y3c{bottom:814.519733pt;}
.y19{bottom:862.521600pt;}
.ye{bottom:880.108000pt;}
.yd{bottom:910.499733pt;}
.y15{bottom:914.719467pt;}
.y14{bottom:929.119467pt;}
.yc{bottom:942.509733pt;}
.y13{bottom:943.519467pt;}
.y12{bottom:972.319467pt;}
.yb{bottom:974.519733pt;}
.y11{bottom:986.719467pt;}
.ya{bottom:991.779467pt;}
.y10{bottom:1001.119467pt;}
.yf{bottom:1015.519467pt;}
.y9{bottom:1047.779467pt;}
.y3d{bottom:1058.159067pt;}
.y17{bottom:1061.938533pt;}
.hd{height:29.792000pt;}
.hf{height:30.314667pt;}
.hc{height:34.048000pt;}
.he{height:34.645333pt;}
.ha{height:38.133760pt;}
.h7{height:38.304000pt;}
.h3{height:40.432000pt;}
.h2{height:41.141333pt;}
.h6{height:47.637333pt;}
.hb{height:56.298667pt;}
.h9{height:63.054507pt;}
.h5{height:71.456000pt;}
.h8{height:136.192000pt;}
.h4{height:178.752000pt;}
.h0{height:1178.520000pt;}
.h1{height:1178.666667pt;}
.w1{width:1643.333333pt;}
.w0{width:1643.400000pt;}
.x0{left:0.000000pt;}
.x6{left:73.354267pt;}
.x1{left:76.000000pt;}
.x19{left:137.606800pt;}
.x5{left:458.866133pt;}
.x16{left:482.869467pt;}
.x18{left:729.461467pt;}
.x2{left:792.598667pt;}
.x15{left:865.784533pt;}
.x7{left:867.242933pt;}
.x3{left:868.472400pt;}
.x4{left:869.700800pt;}
.xf{left:870.834667pt;}
.x11{left:930.093467pt;}
.x10{left:943.085467pt;}
.xa{left:1005.484400pt;}
.xb{left:1018.291467pt;}
.x12{left:1065.602800pt;}
.x14{left:1143.664133pt;}
.x13{left:1210.178800pt;}
.xc{left:1276.374800pt;}
.xd{left:1277.599467pt;}
.xe{left:1289.186933pt;}
.x9{left:1410.625973pt;}
.x8{left:1412.622933pt;}
.x17{left:1501.259733pt;}
}




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