
    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_a1cb17e70f65ff90e4e8f599.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.981934;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_1da7b900dc2e7169e40268f5.woff2')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_19fffdc7c776c22bb396fca5.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_8561dbab299faeef29438633.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_b646a7abbc941fcde4f3ef2c.woff2')format("woff");}.ff6{font-family:ff6;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:-1.134000px;}
.lsb{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.288000px;}
.lsa{letter-spacing:-0.262200px;}
.ls8{letter-spacing:-0.053280px;}
.ls7{letter-spacing:-0.034560px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.259920px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:161.460000px;}
.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;}
}
.ws7{word-spacing:-16.560000px;}
.ws3{word-spacing:-15.300000px;}
.ws5{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.580000px;}
.ws2{word-spacing:-12.420000px;}
.ws1{word-spacing:-12.060000px;}
.ws0{word-spacing:-11.700000px;}
.ws6{word-spacing:-10.440000px;}
.ws8{word-spacing:0.000000px;}
._16{margin-left:-4.993920px;}
._d{margin-left:-3.744000px;}
._6{margin-left:-2.644560px;}
._0{margin-left:-1.192320px;}
._3{width:1.326960px;}
._a{width:2.706000px;}
._9{width:4.290480px;}
._f{width:5.485680px;}
._10{width:6.752880px;}
._8{width:8.719920px;}
._7{width:9.793440px;}
._e{width:11.461680px;}
._5{width:12.955680px;}
._14{width:14.042880px;}
._18{width:15.301440px;}
._13{width:17.951040px;}
._17{width:19.039680px;}
._4{width:20.186640px;}
._15{width:21.733680px;}
._c{width:23.585520px;}
._b{width:24.979680px;}
._19{width:26.616000px;}
._1a{width:27.697440px;}
._1e{width:30.889920px;}
._1f{width:31.971840px;}
._12{width:33.914880px;}
._11{width:35.570880px;}
._1c{width:37.425600px;}
._1d{width:38.858880px;}
._1b{width:44.115840px;}
._2{width:244.380000px;}
._1{width:1161.446880px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:4.500000px;}
.y6{bottom:23.760000px;}
.y5{bottom:37.620000px;}
.y4{bottom:51.480000px;}
.y3a{bottom:121.176000px;}
.y69{bottom:131.436000px;}
.y39{bottom:142.956000px;}
.y68{bottom:153.210000px;}
.y38{bottom:164.730000px;}
.y67{bottom:174.990000px;}
.y37{bottom:186.690000px;}
.y66{bottom:196.950000px;}
.y36{bottom:208.470000px;}
.y65{bottom:218.730000px;}
.y35{bottom:228.450000px;}
.y64{bottom:240.510000px;}
.y34{bottom:244.290000px;}
.y33{bottom:261.390000px;}
.y63{bottom:262.290000px;}
.y32{bottom:281.370000px;}
.y62{bottom:284.070000px;}
.y31{bottom:301.170000px;}
.y61{bottom:306.030000px;}
.y30{bottom:320.970000px;}
.y60{bottom:327.810000px;}
.y2f{bottom:340.815000px;}
.y5f{bottom:349.635000px;}
.y2e{bottom:360.615000px;}
.y5e{bottom:371.415000px;}
.y2d{bottom:380.595000px;}
.y5d{bottom:393.375000px;}
.y2c{bottom:400.395000px;}
.y5c{bottom:415.155000px;}
.y2b{bottom:420.195000px;}
.y5b{bottom:436.935000px;}
.y2a{bottom:439.995000px;}
.y5a{bottom:458.715000px;}
.y29{bottom:459.795000px;}
.y28{bottom:479.775000px;}
.y59{bottom:480.495000px;}
.y27{bottom:499.575000px;}
.y58{bottom:502.455000px;}
.y26{bottom:519.375000px;}
.y57{bottom:524.235000px;}
.y25{bottom:539.175000px;}
.y56{bottom:546.015000px;}
.y24{bottom:558.975000px;}
.y55{bottom:567.795000px;}
.y23{bottom:578.955000px;}
.y54{bottom:589.755000px;}
.y22{bottom:598.755000px;}
.y53{bottom:611.565000px;}
.y21{bottom:618.585000px;}
.y52{bottom:633.345000px;}
.y20{bottom:638.385000px;}
.y51{bottom:655.125000px;}
.y1f{bottom:658.185000px;}
.y50{bottom:676.905000px;}
.y1e{bottom:678.165000px;}
.y1d{bottom:697.965000px;}
.y4f{bottom:698.865000px;}
.y1c{bottom:717.765000px;}
.y4e{bottom:720.645000px;}
.y1b{bottom:737.565000px;}
.y4d{bottom:742.425000px;}
.y1a{bottom:757.365000px;}
.y4c{bottom:764.205000px;}
.y19{bottom:777.345000px;}
.y4b{bottom:786.165000px;}
.y18{bottom:797.145000px;}
.y4a{bottom:807.945000px;}
.y17{bottom:816.945000px;}
.y49{bottom:829.725000px;}
.y16{bottom:836.745000px;}
.y48{bottom:851.505000px;}
.y15{bottom:856.545000px;}
.y47{bottom:873.330000px;}
.y14{bottom:875.130000px;}
.y13{bottom:892.950000px;}
.y46{bottom:895.290000px;}
.y12{bottom:914.730000px;}
.y45{bottom:917.070000px;}
.y11{bottom:936.510000px;}
.y44{bottom:938.850000px;}
.y10{bottom:958.290000px;}
.y43{bottom:960.630000px;}
.yf{bottom:980.250000px;}
.y42{bottom:982.410000px;}
.ye{bottom:1003.290000px;}
.y41{bottom:1004.370000px;}
.y40{bottom:1026.150000px;}
.yd{bottom:1029.030000px;}
.y3f{bottom:1047.930000px;}
.yc{bottom:1050.450000px;}
.yb{bottom:1067.730000px;}
.y3e{bottom:1069.710000px;}
.ya{bottom:1085.010000px;}
.y3d{bottom:1091.670000px;}
.y9{bottom:1102.290000px;}
.y3c{bottom:1113.450000px;}
.y8{bottom:1119.390000px;}
.y3b{bottom:1135.230000px;}
.y7{bottom:1136.670000px;}
.y3{bottom:1155.240000px;}
.y1{bottom:1170.900000px;}
.h2{height:20.160000px;}
.h6{height:33.683203px;}
.hc{height:34.036523px;}
.h5{height:39.760312px;}
.hd{height:41.726953px;}
.h7{height:42.164648px;}
.hb{height:46.251562px;}
.hf{height:46.736719px;}
.he{height:49.255313px;}
.ha{height:53.224453px;}
.h3{height:53.237812px;}
.h9{height:54.596250px;}
.h8{height:54.864844px;}
.h4{height:65.884219px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:53.100000px;}
.w3{width:627.585000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x1{left:108.036000px;}
.x8{left:122.975987px;}
.x4{left:130.535987px;}
.xd{left:140.075987px;}
.x6{left:148.535987px;}
.x3{left:161.130000px;}
.x9{left:274.349987px;}
.xa{left:391.754987px;}
.x5{left:413.534987px;}
.xc{left:418.574987px;}
.xb{left:420.194987px;}
.x7{left:446.474987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls9{letter-spacing:-1.008000pt;}
.lsb{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.256000pt;}
.lsa{letter-spacing:-0.233067pt;}
.ls8{letter-spacing:-0.047360pt;}
.ls7{letter-spacing:-0.030720pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.231040pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:143.520000pt;}
.ws7{word-spacing:-14.720000pt;}
.ws3{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.280000pt;}
.ws4{word-spacing:-12.960000pt;}
.ws2{word-spacing:-11.040000pt;}
.ws1{word-spacing:-10.720000pt;}
.ws0{word-spacing:-10.400000pt;}
.ws6{word-spacing:-9.280000pt;}
.ws8{word-spacing:0.000000pt;}
._16{margin-left:-4.439040pt;}
._d{margin-left:-3.328000pt;}
._6{margin-left:-2.350720pt;}
._0{margin-left:-1.059840pt;}
._3{width:1.179520pt;}
._a{width:2.405333pt;}
._9{width:3.813760pt;}
._f{width:4.876160pt;}
._10{width:6.002560pt;}
._8{width:7.751040pt;}
._7{width:8.705280pt;}
._e{width:10.188160pt;}
._5{width:11.516160pt;}
._14{width:12.482560pt;}
._18{width:13.601280pt;}
._13{width:15.956480pt;}
._17{width:16.924160pt;}
._4{width:17.943680pt;}
._15{width:19.318827pt;}
._c{width:20.964907pt;}
._b{width:22.204160pt;}
._19{width:23.658667pt;}
._1a{width:24.619947pt;}
._1e{width:27.457707pt;}
._1f{width:28.419413pt;}
._12{width:30.146560pt;}
._11{width:31.618560pt;}
._1c{width:33.267200pt;}
._1d{width:34.541227pt;}
._1b{width:39.214080pt;}
._2{width:217.226667pt;}
._1{width:1032.397227pt;}
.fs4{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:4.000000pt;}
.y6{bottom:21.120000pt;}
.y5{bottom:33.440000pt;}
.y4{bottom:45.760000pt;}
.y3a{bottom:107.712000pt;}
.y69{bottom:116.832000pt;}
.y39{bottom:127.072000pt;}
.y68{bottom:136.186667pt;}
.y38{bottom:146.426667pt;}
.y67{bottom:155.546667pt;}
.y37{bottom:165.946667pt;}
.y66{bottom:175.066667pt;}
.y36{bottom:185.306667pt;}
.y65{bottom:194.426667pt;}
.y35{bottom:203.066667pt;}
.y64{bottom:213.786667pt;}
.y34{bottom:217.146667pt;}
.y33{bottom:232.346667pt;}
.y63{bottom:233.146667pt;}
.y32{bottom:250.106667pt;}
.y62{bottom:252.506667pt;}
.y31{bottom:267.706667pt;}
.y61{bottom:272.026667pt;}
.y30{bottom:285.306667pt;}
.y60{bottom:291.386667pt;}
.y2f{bottom:302.946667pt;}
.y5f{bottom:310.786667pt;}
.y2e{bottom:320.546667pt;}
.y5e{bottom:330.146667pt;}
.y2d{bottom:338.306667pt;}
.y5d{bottom:349.666667pt;}
.y2c{bottom:355.906667pt;}
.y5c{bottom:369.026667pt;}
.y2b{bottom:373.506667pt;}
.y5b{bottom:388.386667pt;}
.y2a{bottom:391.106667pt;}
.y5a{bottom:407.746667pt;}
.y29{bottom:408.706667pt;}
.y28{bottom:426.466667pt;}
.y59{bottom:427.106667pt;}
.y27{bottom:444.066667pt;}
.y58{bottom:446.626667pt;}
.y26{bottom:461.666667pt;}
.y57{bottom:465.986667pt;}
.y25{bottom:479.266667pt;}
.y56{bottom:485.346667pt;}
.y24{bottom:496.866667pt;}
.y55{bottom:504.706667pt;}
.y23{bottom:514.626667pt;}
.y54{bottom:524.226667pt;}
.y22{bottom:532.226667pt;}
.y53{bottom:543.613333pt;}
.y21{bottom:549.853333pt;}
.y52{bottom:562.973333pt;}
.y20{bottom:567.453333pt;}
.y51{bottom:582.333333pt;}
.y1f{bottom:585.053333pt;}
.y50{bottom:601.693333pt;}
.y1e{bottom:602.813333pt;}
.y1d{bottom:620.413333pt;}
.y4f{bottom:621.213333pt;}
.y1c{bottom:638.013333pt;}
.y4e{bottom:640.573333pt;}
.y1b{bottom:655.613333pt;}
.y4d{bottom:659.933333pt;}
.y1a{bottom:673.213333pt;}
.y4c{bottom:679.293333pt;}
.y19{bottom:690.973333pt;}
.y4b{bottom:698.813333pt;}
.y18{bottom:708.573333pt;}
.y4a{bottom:718.173333pt;}
.y17{bottom:726.173333pt;}
.y49{bottom:737.533333pt;}
.y16{bottom:743.773333pt;}
.y48{bottom:756.893333pt;}
.y15{bottom:761.373333pt;}
.y47{bottom:776.293333pt;}
.y14{bottom:777.893333pt;}
.y13{bottom:793.733333pt;}
.y46{bottom:795.813333pt;}
.y12{bottom:813.093333pt;}
.y45{bottom:815.173333pt;}
.y11{bottom:832.453333pt;}
.y44{bottom:834.533333pt;}
.y10{bottom:851.813333pt;}
.y43{bottom:853.893333pt;}
.yf{bottom:871.333333pt;}
.y42{bottom:873.253333pt;}
.ye{bottom:891.813333pt;}
.y41{bottom:892.773333pt;}
.y40{bottom:912.133333pt;}
.yd{bottom:914.693333pt;}
.y3f{bottom:931.493333pt;}
.yc{bottom:933.733333pt;}
.yb{bottom:949.093333pt;}
.y3e{bottom:950.853333pt;}
.ya{bottom:964.453333pt;}
.y3d{bottom:970.373333pt;}
.y9{bottom:979.813333pt;}
.y3c{bottom:989.733333pt;}
.y8{bottom:995.013333pt;}
.y3b{bottom:1009.093333pt;}
.y7{bottom:1010.373333pt;}
.y3{bottom:1026.880000pt;}
.y1{bottom:1040.800000pt;}
.h2{height:17.920000pt;}
.h6{height:29.940625pt;}
.hc{height:30.254687pt;}
.h5{height:35.342500pt;}
.hd{height:37.090625pt;}
.h7{height:37.479688pt;}
.hb{height:41.112500pt;}
.hf{height:41.543750pt;}
.he{height:43.782500pt;}
.ha{height:47.310625pt;}
.h3{height:47.322500pt;}
.h9{height:48.530000pt;}
.h8{height:48.768750pt;}
.h4{height:58.563750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:47.200000pt;}
.w3{width:557.853333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x1{left:96.032000pt;}
.x8{left:109.311988pt;}
.x4{left:116.031988pt;}
.xd{left:124.511988pt;}
.x6{left:132.031988pt;}
.x3{left:143.226667pt;}
.x9{left:243.866655pt;}
.xa{left:348.226655pt;}
.x5{left:367.586655pt;}
.xc{left:372.066655pt;}
.xb{left:373.506655pt;}
.x7{left:396.866655pt;}
}




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