
    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;}
.ff1{font-family:sans-serif;visibility:hidden;}
.ff2{font-family:sans-serif;visibility:hidden;}
.ff3{font-family:sans-serif;visibility:hidden;}
.ff4{font-family:sans-serif;visibility:hidden;}
.ff5{font-family:sans-serif;visibility:hidden;}
.ff6{font-family:sans-serif;visibility:hidden;}
.ff7{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff8;src:url('chunks/assets/font_0814819428194376caba393c.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_6b4521b2df7767750ad25719.woff')format("woff");}.ff9{font-family:ff9;line-height:0.935547;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;}
.ffa{font-family:sans-serif;visibility:hidden;}
.m1{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,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);}
.m2{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;}
.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;}
}
.ws1{word-spacing:-13.327602px;}
.ws0{word-spacing:0.000000px;}
._6{margin-left:-10.306202px;}
._5{margin-left:-8.398222px;}
._4{margin-left:-6.927244px;}
._3{margin-left:-5.790542px;}
._2{margin-left:-3.891788px;}
._0{margin-left:-1.898524px;}
._1{width:1.898357px;}
._7{width:3.323346px;}
._c{width:4.354984px;}
._d{width:6.441358px;}
._e{width:7.630081px;}
._b{width:9.633710px;}
._a{width:10.979673px;}
._8{width:23.168445px;}
._9{width:24.356115px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:47.969997px;}
.fs5{font-size:62.999997px;}
.fs4{font-size:64.799996px;}
.fs0{font-size:71.999997px;}
.fs2{font-size:79.199997px;}
.fs9{font-size:81.637488px;}
.fs6{font-size:86.400001px;}
.fs3{font-size:89.999996px;}
.fs8{font-size:161.999993px;}
.fs1{font-size:194.399996px;}
.y0{bottom:0.000000px;}
.y1f{bottom:2.250000px;}
.y4f{bottom:23.519519px;}
.y20{bottom:23.805073px;}
.y1{bottom:43.035553px;}
.y7a{bottom:43.769518px;}
.y4e{bottom:49.394518px;}
.y40{bottom:69.644517px;}
.y79{bottom:70.769517px;}
.y4d{bottom:76.394517px;}
.y3f{bottom:96.644516px;}
.y4c{bottom:103.394516px;}
.y78{bottom:116.894515px;}
.y3e{bottom:123.644515px;}
.y4b{bottom:130.394515px;}
.y77{bottom:143.894514px;}
.y3d{bottom:149.519514px;}
.y4a{bottom:157.394513px;}
.y76{bottom:170.894513px;}
.y3c{bottom:176.519513px;}
.y3b{bottom:203.519512px;}
.y75{bottom:217.019511px;}
.y3a{bottom:230.519510px;}
.y74{bottom:244.019510px;}
.y39{bottom:256.394509px;}
.y73{bottom:269.894509px;}
.y38{bottom:283.394508px;}
.y37{bottom:310.394507px;}
.y72{bottom:317.144507px;}
.y36{bottom:337.394506px;}
.y71{bottom:344.144506px;}
.y35{bottom:383.519504px;}
.y70{bottom:406.019503px;}
.y34{bottom:410.519503px;}
.y62{bottom:411.644503px;}
.y33{bottom:437.519502px;}
.y61{bottom:438.644502px;}
.y1c{bottom:456.644501px;}
.y32{bottom:463.394501px;}
.y60{bottom:465.644501px;}
.y6f{bottom:482.519500px;}
.y31{bottom:490.394500px;}
.y5f{bottom:492.644499px;}
.y1d{bottom:497.144499px;}
.y6e{bottom:509.519499px;}
.y1b{bottom:515.144499px;}
.y30{bottom:517.394498px;}
.y5e{bottom:519.644498px;}
.y6d{bottom:536.519498px;}
.y2f{bottom:544.394497px;}
.y5d{bottom:545.519497px;}
.y6c{bottom:563.519497px;}
.y2e{bottom:570.269496px;}
.y5c{bottom:572.519496px;}
.y1a{bottom:584.894496px;}
.y6b{bottom:589.394495px;}
.y49{bottom:597.269495px;}
.y5b{bottom:599.519495px;}
.y18{bottom:602.894495px;}
.y6a{bottom:616.394494px;}
.y2d{bottom:617.519494px;}
.y5a{bottom:626.519494px;}
.y19{bottom:643.394493px;}
.y2c{bottom:644.519493px;}
.y59{bottom:652.394493px;}
.y17{bottom:661.394492px;}
.y2b{bottom:670.394492px;}
.y58{bottom:679.394492px;}
.y69{bottom:696.269491px;}
.y2a{bottom:697.394491px;}
.y57{bottom:706.394491px;}
.y13{bottom:715.394490px;}
.y56{bottom:733.394489px;}
.y55{bottom:759.269488px;}
.y29{bottom:760.394488px;}
.y12{bottom:761.519488px;}
.y54{bottom:786.269487px;}
.y11{bottom:793.019487px;}
.y10{bottom:824.519486px;}
.y28{bottom:835.769485px;}
.y53{bottom:849.269485px;}
.yf{bottom:856.019484px;}
.y68{bottom:862.769484px;}
.y27{bottom:870.644484px;}
.ye{bottom:887.519483px;}
.y67{bottom:889.769483px;}
.y26{bottom:905.519482px;}
.y66{bottom:915.644482px;}
.yd{bottom:919.019482px;}
.y25{bottom:940.394481px;}
.y65{bottom:942.644481px;}
.yc{bottom:950.519480px;}
.y64{bottom:969.644480px;}
.y24{bottom:975.269479px;}
.yb{bottom:982.019479px;}
.y23{bottom:1009.019478px;}
.ya{bottom:1013.519478px;}
.y63{bottom:1032.644477px;}
.y22{bottom:1043.894477px;}
.y9{bottom:1045.019476px;}
.y8{bottom:1076.519475px;}
.y21{bottom:1078.769475px;}
.y16{bottom:1120.394473px;}
.y15{bottom:1182.269471px;}
.y14{bottom:1204.769470px;}
.y6{bottom:1381.394462px;}
.y5{bottom:1416.269461px;}
.y48{bottom:1454.519459px;}
.y4{bottom:1456.769459px;}
.y47{bottom:1481.519458px;}
.y3{bottom:1496.144458px;}
.y46{bottom:1528.769456px;}
.y52{bottom:1547.894456px;}
.y7{bottom:1551.269455px;}
.y45{bottom:1554.644455px;}
.y51{bottom:1574.894454px;}
.y44{bottom:1581.644454px;}
.y50{bottom:1601.894453px;}
.y43{bottom:1627.769452px;}
.y42{bottom:1654.769451px;}
.y2{bottom:1675.054606px;}
.y41{bottom:1681.769450px;}
.y1e{bottom:1750.680001px;}
.ha{height:13.499999px;}
.hb{height:34.946892px;}
.hc{height:57.698435px;}
.h8{height:59.849998px;}
.h7{height:61.559996px;}
.h3{height:68.399997px;}
.h5{height:75.239997px;}
.he{height:77.555614px;}
.h9{height:82.080001px;}
.h6{height:85.499996px;}
.hd{height:153.899994px;}
.h4{height:184.679997px;}
.h2{height:1700.894449px;}
.h1{height:1786.500000px;}
.h0{height:1786.680000px;}
.w6{width:60.749997px;}
.w3{width:120.374995px;}
.w4{width:1141.874952px;}
.w2{width:1177.892519px;}
.w5{width:1201.499950px;}
.w0{width:1262.879970px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.xc{left:8.630865px;}
.x3{left:33.749999px;}
.x8{left:35.999999px;}
.x1{left:42.749998px;}
.x6{left:46.599607px;}
.x7{left:49.201170px;}
.xd{left:50.624998px;}
.x1a{left:74.518149px;}
.x2b{left:85.645737px;}
.x1b{left:86.774342px;}
.x2d{left:88.453121px;}
.x2c{left:97.901929px;}
.x9{left:120.374995px;}
.x2e{left:127.248042px;}
.x3f{left:180.568157px;}
.x40{left:192.824350px;}
.x28{left:204.366414px;}
.x26{left:216.052731px;}
.x1e{left:225.690996px;}
.x1f{left:237.947189px;}
.x44{left:242.789052px;}
.x27{left:265.728510px;}
.x34{left:277.309587px;}
.x2{left:294.749988px;}
.x45{left:309.656237px;}
.x24{left:372.230721px;}
.x25{left:384.486896px;}
.xa{left:406.107411px;}
.x1c{left:424.938280px;}
.x1d{left:437.194455px;}
.x2f{left:443.471047px;}
.x30{left:455.687638px;}
.x22{left:458.320992px;}
.x37{left:468.003139px;}
.x23{left:470.537582px;}
.x18{left:475.249995px;}
.x19{left:487.506205px;}
.x29{left:514.018342px;}
.x41{left:522.140603px;}
.x2a{left:526.274552px;}
.x12{left:535.324196px;}
.x10{left:574.982539px;}
.x20{left:578.460913px;}
.x11{left:587.238714px;}
.x33{left:625.499974px;}
.x46{left:641.320286px;}
.x31{left:652.855793px;}
.x32{left:665.112002px;}
.x43{left:682.013649px;}
.xe{left:712.564429px;}
.x16{left:717.802710px;}
.xf{left:751.359344px;}
.x4a{left:761.589812px;}
.x3c{left:763.418761px;}
.x14{left:800.840939px;}
.x15{left:813.097080px;}
.x42{left:816.556612px;}
.x21{left:831.339809px;}
.x4b{left:866.460901px;}
.x35{left:869.804315px;}
.x36{left:882.060525px;}
.x3d{left:937.421111px;}
.x13{left:944.121054px;}
.x48{left:945.124638px;}
.x3e{left:949.677321px;}
.x49{left:958.390629px;}
.x47{left:964.634731px;}
.x4{left:990.989278px;}
.x5{left:1005.186772px;}
.x17{left:1030.253863px;}
.x38{left:1032.381915px;}
.x39{left:1044.638056px;}
.x3a{left:1050.914682px;}
.x3b{left:1063.170823px;}
.xb{left:1201.499950px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:-11.846757pt;}
.ws0{word-spacing:0.000000pt;}
._6{margin-left:-9.161068pt;}
._5{margin-left:-7.465086pt;}
._4{margin-left:-6.157551pt;}
._3{margin-left:-5.147149pt;}
._2{margin-left:-3.459367pt;}
._0{margin-left:-1.687577pt;}
._1{width:1.687429pt;}
._7{width:2.954085pt;}
._c{width:3.871097pt;}
._d{width:5.725651pt;}
._e{width:6.782294pt;}
._b{width:8.563298pt;}
._a{width:9.759709pt;}
._8{width:20.594173pt;}
._9{width:21.649880pt;}
.fs7{font-size:42.639997pt;}
.fs5{font-size:55.999998pt;}
.fs4{font-size:57.599996pt;}
.fs0{font-size:63.999997pt;}
.fs2{font-size:70.399997pt;}
.fs9{font-size:72.566656pt;}
.fs6{font-size:76.800001pt;}
.fs3{font-size:79.999997pt;}
.fs8{font-size:143.999994pt;}
.fs1{font-size:172.799997pt;}
.y0{bottom:0.000000pt;}
.y1f{bottom:2.000000pt;}
.y4f{bottom:20.906239pt;}
.y20{bottom:21.160065pt;}
.y1{bottom:38.253825pt;}
.y7a{bottom:38.906238pt;}
.y4e{bottom:43.906238pt;}
.y40{bottom:61.906237pt;}
.y79{bottom:62.906237pt;}
.y4d{bottom:67.906237pt;}
.y3f{bottom:85.906236pt;}
.y4c{bottom:91.906236pt;}
.y78{bottom:103.906236pt;}
.y3e{bottom:109.906235pt;}
.y4b{bottom:115.906235pt;}
.y77{bottom:127.906235pt;}
.y3d{bottom:132.906234pt;}
.y4a{bottom:139.906234pt;}
.y76{bottom:151.906234pt;}
.y3c{bottom:156.906233pt;}
.y3b{bottom:180.906232pt;}
.y75{bottom:192.906232pt;}
.y3a{bottom:204.906231pt;}
.y74{bottom:216.906231pt;}
.y39{bottom:227.906231pt;}
.y73{bottom:239.906230pt;}
.y38{bottom:251.906230pt;}
.y37{bottom:275.906229pt;}
.y72{bottom:281.906228pt;}
.y36{bottom:299.906228pt;}
.y71{bottom:305.906227pt;}
.y35{bottom:340.906226pt;}
.y70{bottom:360.906225pt;}
.y34{bottom:364.906225pt;}
.y62{bottom:365.906225pt;}
.y33{bottom:388.906224pt;}
.y61{bottom:389.906224pt;}
.y1c{bottom:405.906223pt;}
.y32{bottom:411.906223pt;}
.y60{bottom:413.906223pt;}
.y6f{bottom:428.906222pt;}
.y31{bottom:435.906222pt;}
.y5f{bottom:437.906222pt;}
.y1d{bottom:441.906222pt;}
.y6e{bottom:452.906221pt;}
.y1b{bottom:457.906221pt;}
.y30{bottom:459.906221pt;}
.y5e{bottom:461.906221pt;}
.y6d{bottom:476.906220pt;}
.y2f{bottom:483.906220pt;}
.y5d{bottom:484.906220pt;}
.y6c{bottom:500.906219pt;}
.y2e{bottom:506.906219pt;}
.y5c{bottom:508.906219pt;}
.y1a{bottom:519.906218pt;}
.y6b{bottom:523.906218pt;}
.y49{bottom:530.906218pt;}
.y5b{bottom:532.906218pt;}
.y18{bottom:535.906218pt;}
.y6a{bottom:547.906217pt;}
.y2d{bottom:548.906217pt;}
.y5a{bottom:556.906217pt;}
.y19{bottom:571.906216pt;}
.y2c{bottom:572.906216pt;}
.y59{bottom:579.906216pt;}
.y17{bottom:587.906216pt;}
.y2b{bottom:595.906215pt;}
.y58{bottom:603.906215pt;}
.y69{bottom:618.906214pt;}
.y2a{bottom:619.906214pt;}
.y57{bottom:627.906214pt;}
.y13{bottom:635.906214pt;}
.y56{bottom:651.906213pt;}
.y55{bottom:674.906212pt;}
.y29{bottom:675.906212pt;}
.y12{bottom:676.906212pt;}
.y54{bottom:698.906211pt;}
.y11{bottom:704.906211pt;}
.y10{bottom:732.906209pt;}
.y28{bottom:742.906209pt;}
.y53{bottom:754.906209pt;}
.yf{bottom:760.906208pt;}
.y68{bottom:766.906208pt;}
.y27{bottom:773.906208pt;}
.ye{bottom:788.906207pt;}
.y67{bottom:790.906207pt;}
.y26{bottom:804.906206pt;}
.y66{bottom:813.906206pt;}
.yd{bottom:816.906206pt;}
.y25{bottom:835.906205pt;}
.y65{bottom:837.906205pt;}
.yc{bottom:844.906205pt;}
.y64{bottom:861.906204pt;}
.y24{bottom:866.906204pt;}
.yb{bottom:872.906204pt;}
.y23{bottom:896.906203pt;}
.ya{bottom:900.906202pt;}
.y63{bottom:917.906202pt;}
.y22{bottom:927.906201pt;}
.y9{bottom:928.906201pt;}
.y8{bottom:956.906200pt;}
.y21{bottom:958.906200pt;}
.y16{bottom:995.906199pt;}
.y15{bottom:1050.906196pt;}
.y14{bottom:1070.906195pt;}
.y6{bottom:1227.906189pt;}
.y5{bottom:1258.906188pt;}
.y48{bottom:1292.906186pt;}
.y4{bottom:1294.906186pt;}
.y47{bottom:1316.906185pt;}
.y3{bottom:1329.906185pt;}
.y46{bottom:1358.906183pt;}
.y52{bottom:1375.906183pt;}
.y7{bottom:1378.906183pt;}
.y45{bottom:1381.906182pt;}
.y51{bottom:1399.906182pt;}
.y44{bottom:1405.906181pt;}
.y50{bottom:1423.906181pt;}
.y43{bottom:1446.906180pt;}
.y42{bottom:1470.906179pt;}
.y2{bottom:1488.937428pt;}
.y41{bottom:1494.906178pt;}
.y1e{bottom:1556.160001pt;}
.ha{height:12.000000pt;}
.hb{height:31.063904pt;}
.hc{height:51.287498pt;}
.h8{height:53.199998pt;}
.h7{height:54.719996pt;}
.h3{height:60.799997pt;}
.h5{height:66.879997pt;}
.he{height:68.938323pt;}
.h9{height:72.960001pt;}
.h6{height:75.999997pt;}
.hd{height:136.799994pt;}
.h4{height:164.159997pt;}
.h2{height:1511.906177pt;}
.h1{height:1588.000000pt;}
.h0{height:1588.160000pt;}
.w6{width:53.999998pt;}
.w3{width:106.999996pt;}
.w4{width:1014.999958pt;}
.w2{width:1047.015572pt;}
.w5{width:1067.999956pt;}
.w0{width:1122.559973pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.xc{left:7.671880pt;}
.x3{left:29.999999pt;}
.x8{left:31.999999pt;}
.x1{left:37.999998pt;}
.x6{left:41.421873pt;}
.x7{left:43.734373pt;}
.xd{left:44.999998pt;}
.x1a{left:66.238355pt;}
.x2b{left:76.129544pt;}
.x1b{left:77.132748pt;}
.x2d{left:78.624997pt;}
.x2c{left:87.023937pt;}
.x9{left:106.999996pt;}
.x2e{left:113.109370pt;}
.x3f{left:160.505029pt;}
.x40{left:171.399422pt;}
.x28{left:181.659035pt;}
.x26{left:192.046872pt;}
.x1e{left:200.614219pt;}
.x1f{left:211.508612pt;}
.x44{left:215.812491pt;}
.x27{left:236.203120pt;}
.x34{left:246.497410pt;}
.x2{left:261.999989pt;}
.x45{left:275.249989pt;}
.x24{left:330.871752pt;}
.x25{left:341.766130pt;}
.xa{left:360.984365pt;}
.x1c{left:377.722915pt;}
.x1d{left:388.617293pt;}
.x2f{left:394.196486pt;}
.x30{left:405.055678pt;}
.x22{left:407.396437pt;}
.x37{left:416.002790pt;}
.x23{left:418.255628pt;}
.x18{left:422.444440pt;}
.x19{left:433.338849pt;}
.x29{left:456.905193pt;}
.x41{left:464.124981pt;}
.x2a{left:467.799602pt;}
.x12{left:475.843730pt;}
.x10{left:511.095590pt;}
.x20{left:514.187479pt;}
.x11{left:521.989968pt;}
.x33{left:555.999977pt;}
.x46{left:570.062476pt;}
.x31{left:580.316260pt;}
.x32{left:591.210669pt;}
.x43{left:606.234355pt;}
.xe{left:633.390604pt;}
.x16{left:638.046853pt;}
.xf{left:667.874972pt;}
.x4a{left:676.968722pt;}
.x3c{left:678.594454pt;}
.x14{left:711.858613pt;}
.x15{left:722.752960pt;}
.x42{left:725.828100pt;}
.x21{left:738.968719pt;}
.x4b{left:770.187468pt;}
.x35{left:773.159391pt;}
.x36{left:784.053800pt;}
.x3d{left:833.263210pt;}
.x13{left:839.218715pt;}
.x48{left:840.110790pt;}
.x3e{left:844.157619pt;}
.x49{left:851.902781pt;}
.x47{left:857.453094pt;}
.x4{left:880.879358pt;}
.x5{left:893.499353pt;}
.x17{left:915.781212pt;}
.x38{left:917.672813pt;}
.x39{left:928.567161pt;}
.x3a{left:934.146384pt;}
.x3b{left:945.040732pt;}
.xb{left:1067.999956pt;}
}




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