
    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_5f48388444385cc45c41e360.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.914062;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_ede67f013d95850e05c1bdfb.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.914062;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_99a504b1a565bf1bd54d6a1c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.921387;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_47291ad9cbef290a9f29c223.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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:ff7;src:url('chunks/assets/font_ed39a3808a379f76e64439c9.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.940430;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:ff8;src:url('chunks/assets/font_a14e35b38a3600b72a37498a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.940430;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_3d2e3f8c6d2772cbcab4f006.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls9{letter-spacing:-3.546000px;}
.ls6{letter-spacing:-0.540000px;}
.ls4{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.053280px;}
.ls2{letter-spacing:0.119520px;}
.ls1{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.lsc{letter-spacing:11.466720px;}
.ls8{letter-spacing:19.386720px;}
.lsa{letter-spacing:41.682720px;}
.ls5{letter-spacing:46.002720px;}
.ls3{letter-spacing:687.240000px;}
.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:-15.300000px;}
.ws4{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.ws2{word-spacing:-13.500000px;}
.ws3{word-spacing:0.000000px;}
._a{margin-left:-9.360000px;}
._0{margin-left:-7.888320px;}
._5{margin-left:-6.742080px;}
._8{margin-left:-4.752000px;}
._9{margin-left:-3.194400px;}
._2{margin-left:-1.321920px;}
._1{width:1.290720px;}
._3{width:2.923680px;}
._7{width:4.500000px;}
._d{width:5.631360px;}
._c{width:6.932160px;}
._10{width:8.700960px;}
._b{width:9.740880px;}
._f{width:11.019840px;}
._11{width:12.609360px;}
._e{width:13.864320px;}
._12{width:16.564320px;}
._15{width:17.866080px;}
._14{width:19.362240px;}
._13{width:20.497680px;}
._16{width:21.565920px;}
._19{width:29.827440px;}
._1b{width:31.285680px;}
._1a{width:34.780320px;}
._6{width:85.722000px;}
._17{width:105.739440px;}
._18{width:107.273280px;}
._4{width:746.796000px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.760000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yb{bottom:37.080000px;}
.ya{bottom:57.060000px;}
.y9{bottom:72.576000px;}
.y70{bottom:112.356000px;}
.y3c{bottom:114.696000px;}
.y6f{bottom:126.216000px;}
.y6e{bottom:127.296000px;}
.y3b{bottom:131.976000px;}
.y6d{bottom:144.576000px;}
.y3a{bottom:149.256000px;}
.y6c{bottom:161.850000px;}
.y39{bottom:166.530000px;}
.y6b{bottom:179.130000px;}
.y38{bottom:183.630000px;}
.y6a{bottom:196.410000px;}
.y37{bottom:200.910000px;}
.y69{bottom:213.690000px;}
.y36{bottom:218.190000px;}
.y68{bottom:230.790000px;}
.y35{bottom:235.470000px;}
.y67{bottom:248.070000px;}
.y34{bottom:252.750000px;}
.y66{bottom:265.350000px;}
.y33{bottom:269.850000px;}
.y65{bottom:282.630000px;}
.y32{bottom:287.130000px;}
.y64{bottom:299.910000px;}
.y31{bottom:304.410000px;}
.y63{bottom:317.235000px;}
.y30{bottom:321.735000px;}
.y62{bottom:334.335000px;}
.y2f{bottom:339.015000px;}
.y61{bottom:351.615000px;}
.y2e{bottom:356.295000px;}
.y60{bottom:368.895000px;}
.y2d{bottom:373.395000px;}
.y5f{bottom:386.175000px;}
.y2c{bottom:390.675000px;}
.y5e{bottom:403.455000px;}
.y2b{bottom:407.955000px;}
.y5d{bottom:420.555000px;}
.y2a{bottom:425.235000px;}
.y5c{bottom:437.835000px;}
.y29{bottom:446.115000px;}
.y5b{bottom:455.115000px;}
.y28{bottom:463.395000px;}
.y5a{bottom:472.395000px;}
.y27{bottom:480.675000px;}
.y59{bottom:489.675000px;}
.y26{bottom:497.955000px;}
.y58{bottom:506.955000px;}
.y25{bottom:515.235000px;}
.y57{bottom:524.055000px;}
.y24{bottom:532.515000px;}
.y56{bottom:541.335000px;}
.y23{bottom:549.795000px;}
.y55{bottom:558.615000px;}
.y22{bottom:566.895000px;}
.y54{bottom:575.925000px;}
.y21{bottom:584.205000px;}
.y53{bottom:593.205000px;}
.y20{bottom:601.485000px;}
.y52{bottom:610.485000px;}
.y1f{bottom:618.765000px;}
.y51{bottom:627.585000px;}
.y1e{bottom:636.045000px;}
.y50{bottom:644.865000px;}
.y1d{bottom:653.145000px;}
.y4f{bottom:662.145000px;}
.y1c{bottom:670.425000px;}
.y4e{bottom:679.425000px;}
.y1b{bottom:687.705000px;}
.y4d{bottom:696.705000px;}
.y1a{bottom:704.985000px;}
.y4c{bottom:713.985000px;}
.y19{bottom:722.265000px;}
.y4b{bottom:731.085000px;}
.y18{bottom:739.545000px;}
.y4a{bottom:748.365000px;}
.y17{bottom:756.645000px;}
.y49{bottom:765.645000px;}
.y16{bottom:777.885000px;}
.y48{bottom:782.925000px;}
.y15{bottom:797.145000px;}
.y47{bottom:800.205000px;}
.y14{bottom:816.045000px;}
.y46{bottom:817.305000px;}
.y45{bottom:834.630000px;}
.y13{bottom:835.170000px;}
.y44{bottom:851.910000px;}
.y12{bottom:854.070000px;}
.y43{bottom:869.190000px;}
.y11{bottom:873.150000px;}
.y42{bottom:886.470000px;}
.y10{bottom:892.050000px;}
.y41{bottom:903.750000px;}
.yf{bottom:910.950000px;}
.y40{bottom:920.850000px;}
.ye{bottom:930.030000px;}
.y3f{bottom:938.130000px;}
.yd{bottom:949.290000px;}
.y3e{bottom:955.410000px;}
.yc{bottom:969.990000px;}
.y3d{bottom:972.690000px;}
.y8{bottom:991.590000px;}
.y7{bottom:1011.570000px;}
.y6{bottom:1027.410000px;}
.y5{bottom:1045.410000px;}
.y4{bottom:1062.150000px;}
.y3{bottom:1104.300000px;}
.y2{bottom:1124.280000px;}
.y1{bottom:1141.560000px;}
.h5{height:37.705078px;}
.h1{height:41.726953px;}
.h4{height:42.164648px;}
.hb{height:43.302656px;}
.ha{height:43.506914px;}
.h9{height:46.251562px;}
.h7{height:46.736719px;}
.hc{height:49.255313px;}
.h2{height:50.273438px;}
.h3{height:50.800781px;}
.h8{height:53.224453px;}
.h6{height:71.613281px;}
.h0{height:1188.000000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:108.035986px;}
.x12{left:128.375986px;}
.x10{left:135.035986px;}
.x2{left:146.915986px;}
.x7{left:159.509986px;}
.x11{left:162.029986px;}
.xd{left:165.989986px;}
.x8{left:169.589986px;}
.x4{left:170.849986px;}
.xb{left:332.714986px;}
.x14{left:355.394986px;}
.xa{left:387.794986px;}
.xc{left:397.334986px;}
.xe{left:398.954986px;}
.x6{left:409.034986px;}
.xf{left:411.554986px;}
.x15{left:413.174986px;}
.x5{left:424.874986px;}
.x9{left:459.074986px;}
.x3{left:531.104986px;}
.x13{left:830.309986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls9{letter-spacing:-3.152000pt;}
.ls6{letter-spacing:-0.480000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.047360pt;}
.ls2{letter-spacing:0.106240pt;}
.ls1{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.lsc{letter-spacing:10.192640pt;}
.ls8{letter-spacing:17.232640pt;}
.lsa{letter-spacing:37.051307pt;}
.ls5{letter-spacing:40.891307pt;}
.ls3{letter-spacing:610.880000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws3{word-spacing:0.000000pt;}
._a{margin-left:-8.320000pt;}
._0{margin-left:-7.011840pt;}
._5{margin-left:-5.992960pt;}
._8{margin-left:-4.224000pt;}
._9{margin-left:-2.839467pt;}
._2{margin-left:-1.175040pt;}
._1{width:1.147307pt;}
._3{width:2.598827pt;}
._7{width:4.000000pt;}
._d{width:5.005653pt;}
._c{width:6.161920pt;}
._10{width:7.734187pt;}
._b{width:8.658560pt;}
._f{width:9.795413pt;}
._11{width:11.208320pt;}
._e{width:12.323840pt;}
._12{width:14.723840pt;}
._15{width:15.880960pt;}
._14{width:17.210880pt;}
._13{width:18.220160pt;}
._16{width:19.169707pt;}
._19{width:26.513280pt;}
._1b{width:27.809493pt;}
._1a{width:30.915840pt;}
._6{width:76.197333pt;}
._17{width:93.990613pt;}
._18{width:95.354027pt;}
._4{width:663.818667pt;}
.fs4{font-size:37.120000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:32.960000pt;}
.ya{bottom:50.720000pt;}
.y9{bottom:64.512000pt;}
.y70{bottom:99.872000pt;}
.y3c{bottom:101.952000pt;}
.y6f{bottom:112.192000pt;}
.y6e{bottom:113.152000pt;}
.y3b{bottom:117.312000pt;}
.y6d{bottom:128.512000pt;}
.y3a{bottom:132.672000pt;}
.y6c{bottom:143.866667pt;}
.y39{bottom:148.026667pt;}
.y6b{bottom:159.226667pt;}
.y38{bottom:163.226667pt;}
.y6a{bottom:174.586667pt;}
.y37{bottom:178.586667pt;}
.y69{bottom:189.946667pt;}
.y36{bottom:193.946667pt;}
.y68{bottom:205.146667pt;}
.y35{bottom:209.306667pt;}
.y67{bottom:220.506667pt;}
.y34{bottom:224.666667pt;}
.y66{bottom:235.866667pt;}
.y33{bottom:239.866667pt;}
.y65{bottom:251.226667pt;}
.y32{bottom:255.226667pt;}
.y64{bottom:266.586667pt;}
.y31{bottom:270.586667pt;}
.y63{bottom:281.986667pt;}
.y30{bottom:285.986667pt;}
.y62{bottom:297.186667pt;}
.y2f{bottom:301.346667pt;}
.y61{bottom:312.546667pt;}
.y2e{bottom:316.706667pt;}
.y60{bottom:327.906667pt;}
.y2d{bottom:331.906667pt;}
.y5f{bottom:343.266667pt;}
.y2c{bottom:347.266667pt;}
.y5e{bottom:358.626667pt;}
.y2b{bottom:362.626667pt;}
.y5d{bottom:373.826667pt;}
.y2a{bottom:377.986667pt;}
.y5c{bottom:389.186667pt;}
.y29{bottom:396.546667pt;}
.y5b{bottom:404.546667pt;}
.y28{bottom:411.906667pt;}
.y5a{bottom:419.906667pt;}
.y27{bottom:427.266667pt;}
.y59{bottom:435.266667pt;}
.y26{bottom:442.626667pt;}
.y58{bottom:450.626667pt;}
.y25{bottom:457.986667pt;}
.y57{bottom:465.826667pt;}
.y24{bottom:473.346667pt;}
.y56{bottom:481.186667pt;}
.y23{bottom:488.706667pt;}
.y55{bottom:496.546667pt;}
.y22{bottom:503.906667pt;}
.y54{bottom:511.933333pt;}
.y21{bottom:519.293333pt;}
.y53{bottom:527.293333pt;}
.y20{bottom:534.653333pt;}
.y52{bottom:542.653333pt;}
.y1f{bottom:550.013333pt;}
.y51{bottom:557.853333pt;}
.y1e{bottom:565.373333pt;}
.y50{bottom:573.213333pt;}
.y1d{bottom:580.573333pt;}
.y4f{bottom:588.573333pt;}
.y1c{bottom:595.933333pt;}
.y4e{bottom:603.933333pt;}
.y1b{bottom:611.293333pt;}
.y4d{bottom:619.293333pt;}
.y1a{bottom:626.653333pt;}
.y4c{bottom:634.653333pt;}
.y19{bottom:642.013333pt;}
.y4b{bottom:649.853333pt;}
.y18{bottom:657.373333pt;}
.y4a{bottom:665.213333pt;}
.y17{bottom:672.573333pt;}
.y49{bottom:680.573333pt;}
.y16{bottom:691.453333pt;}
.y48{bottom:695.933333pt;}
.y15{bottom:708.573333pt;}
.y47{bottom:711.293333pt;}
.y14{bottom:725.373333pt;}
.y46{bottom:726.493333pt;}
.y45{bottom:741.893333pt;}
.y13{bottom:742.373333pt;}
.y44{bottom:757.253333pt;}
.y12{bottom:759.173333pt;}
.y43{bottom:772.613333pt;}
.y11{bottom:776.133333pt;}
.y42{bottom:787.973333pt;}
.y10{bottom:792.933333pt;}
.y41{bottom:803.333333pt;}
.yf{bottom:809.733333pt;}
.y40{bottom:818.533333pt;}
.ye{bottom:826.693333pt;}
.y3f{bottom:833.893333pt;}
.yd{bottom:843.813333pt;}
.y3e{bottom:849.253333pt;}
.yc{bottom:862.213333pt;}
.y3d{bottom:864.613333pt;}
.y8{bottom:881.413333pt;}
.y7{bottom:899.173333pt;}
.y6{bottom:913.253333pt;}
.y5{bottom:929.253333pt;}
.y4{bottom:944.133333pt;}
.y3{bottom:981.600000pt;}
.y2{bottom:999.360000pt;}
.y1{bottom:1014.720000pt;}
.h5{height:33.515625pt;}
.h1{height:37.090625pt;}
.h4{height:37.479688pt;}
.hb{height:38.491250pt;}
.ha{height:38.672812pt;}
.h9{height:41.112500pt;}
.h7{height:41.543750pt;}
.hc{height:43.782500pt;}
.h2{height:44.687500pt;}
.h3{height:45.156250pt;}
.h8{height:47.310625pt;}
.h6{height:63.656250pt;}
.h0{height:1056.000000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.031988pt;}
.x12{left:114.111988pt;}
.x10{left:120.031988pt;}
.x2{left:130.591988pt;}
.x7{left:141.786655pt;}
.x11{left:144.026655pt;}
.xd{left:147.546655pt;}
.x8{left:150.746655pt;}
.x4{left:151.866655pt;}
.xb{left:295.746655pt;}
.x14{left:315.906655pt;}
.xa{left:344.706655pt;}
.xc{left:353.186655pt;}
.xe{left:354.626655pt;}
.x6{left:363.586655pt;}
.xf{left:365.826655pt;}
.x15{left:367.266655pt;}
.x5{left:377.666655pt;}
.x9{left:408.066655pt;}
.x3{left:472.093321pt;}
.x13{left:738.053321pt;}
}




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