
    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_fc44bf04dcfee03c56277cd3.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_0159cdd8ca749bcab9ea081f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_a0c8a728c2097b8df29ae84e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.097168;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_c3a87c505bf221321a3331eb.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:-1.200000px;}
.ls1{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.024000px;}
.ls4{letter-spacing:0.060000px;}
.ls5{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.384000px;}
.ls6{letter-spacing:0.408000px;}
.ls0{letter-spacing:0.600000px;}
.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;}
}
.ws4{word-spacing:-18.408000px;}
.ws3{word-spacing:-18.384000px;}
.ws5{word-spacing:-18.024000px;}
.ws1{word-spacing:-18.000000px;}
.ws0{word-spacing:-15.000000px;}
.ws2{word-spacing:0.000000px;}
._18{margin-left:-9.516000px;}
._17{margin-left:-7.656000px;}
._4{margin-left:-6.048000px;}
._15{margin-left:-5.028000px;}
._3{margin-left:-3.888000px;}
._2{margin-left:-2.640000px;}
._1{margin-left:-1.200000px;}
._0{width:1.380000px;}
._5{width:2.496000px;}
._8{width:3.606000px;}
._12{width:5.508000px;}
._16{width:6.528000px;}
._13{width:8.016000px;}
._14{width:9.444000px;}
._11{width:11.136000px;}
._a{width:13.092000px;}
._6{width:14.502000px;}
._7{width:16.272000px;}
._9{width:19.332000px;}
._10{width:21.372000px;}
._1b{width:22.452000px;}
._1c{width:23.700000px;}
._1d{width:25.584000px;}
._f{width:26.736000px;}
._1e{width:27.948000px;}
._b{width:36.624000px;}
._c{width:47.280000px;}
._d{width:57.228000px;}
._e{width:58.344000px;}
._19{width:60.096000px;}
._1a{width:61.656000px;}
.fc1{color:rgb(0,112,192);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs0{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y6e{bottom:6.885000px;}
.y34{bottom:6.900000px;}
.y51{bottom:7.185000px;}
.y37{bottom:7.200000px;}
.y4b{bottom:18.900000px;}
.y3d{bottom:21.915000px;}
.y4c{bottom:30.600000px;}
.y50{bottom:30.885000px;}
.y33{bottom:30.900000px;}
.y53{bottom:30.915000px;}
.y69{bottom:30.945000px;}
.y3c{bottom:45.915000px;}
.y70{bottom:54.585000px;}
.y36{bottom:54.600000px;}
.y6{bottom:68.737500px;}
.y3b{bottom:69.615000px;}
.y4e{bottom:78.300000px;}
.y39{bottom:78.600000px;}
.y79{bottom:92.437500px;}
.y31{bottom:97.537500px;}
.y49{bottom:101.737500px;}
.y67{bottom:116.137500px;}
.y30{bottom:121.237500px;}
.y48{bottom:125.737500px;}
.y66{bottom:139.837500px;}
.y2f{bottom:145.237500px;}
.y47{bottom:149.437500px;}
.y65{bottom:163.830000px;}
.y2e{bottom:168.975000px;}
.y46{bottom:173.475000px;}
.y64{bottom:187.575000px;}
.y2d{bottom:192.675000px;}
.y45{bottom:197.175000px;}
.y63{bottom:211.275000px;}
.y2c{bottom:216.675000px;}
.y44{bottom:220.875000px;}
.y62{bottom:235.275000px;}
.y2b{bottom:240.375000px;}
.y43{bottom:244.875000px;}
.y61{bottom:258.975000px;}
.y2a{bottom:264.375000px;}
.y42{bottom:268.575000px;}
.y60{bottom:282.675000px;}
.y29{bottom:288.075000px;}
.y41{bottom:292.275000px;}
.y5f{bottom:306.675000px;}
.y28{bottom:311.775000px;}
.y40{bottom:316.275000px;}
.y5e{bottom:330.375000px;}
.y27{bottom:335.775000px;}
.y3f{bottom:340.005000px;}
.y5d{bottom:354.105000px;}
.y3e{bottom:357.405000px;}
.y26{bottom:359.505000px;}
.y5c{bottom:378.105000px;}
.y25{bottom:383.205000px;}
.y5b{bottom:401.820000px;}
.y24{bottom:407.205000px;}
.y5a{bottom:425.505000px;}
.y3a{bottom:429.705000px;}
.y23{bottom:430.920000px;}
.y59{bottom:449.505000px;}
.y22{bottom:454.620000px;}
.y58{bottom:473.205000px;}
.y21{bottom:478.620000px;}
.y57{bottom:496.905000px;}
.y20{bottom:502.305000px;}
.y38{bottom:516.750000px;}
.y56{bottom:520.950000px;}
.y1f{bottom:526.050000px;}
.y55{bottom:538.350000px;}
.y78{bottom:544.650000px;}
.y1e{bottom:550.050000px;}
.y77{bottom:568.350000px;}
.y1d{bottom:573.750000px;}
.y76{bottom:592.350000px;}
.y1c{bottom:597.450000px;}
.y54{bottom:610.650000px;}
.y35{bottom:612.750000px;}
.y75{bottom:616.050000px;}
.y1b{bottom:621.450000px;}
.y74{bottom:640.050000px;}
.y1a{bottom:645.150000px;}
.y73{bottom:663.750000px;}
.y19{bottom:668.850000px;}
.y52{bottom:682.680000px;}
.y32{bottom:685.080000px;}
.y72{bottom:687.480000px;}
.y18{bottom:692.880000px;}
.y71{bottom:711.480000px;}
.y17{bottom:716.580000px;}
.y6f{bottom:728.895000px;}
.y16{bottom:740.280000px;}
.y15{bottom:764.280000px;}
.y4f{bottom:778.695000px;}
.y14{bottom:787.995000px;}
.y6d{bottom:801.195000px;}
.y13{bottom:811.695000px;}
.y12{bottom:835.695000px;}
.y6c{bottom:849.525000px;}
.y4d{bottom:851.025000px;}
.y11{bottom:859.425000px;}
.y10{bottom:883.125000px;}
.y6b{bottom:897.825000px;}
.yf{bottom:907.125000px;}
.ye{bottom:930.825000px;}
.y6a{bottom:946.125000px;}
.y4a{bottom:947.025000px;}
.yd{bottom:954.525000px;}
.yc{bottom:978.525000px;}
.y68{bottom:994.425000px;}
.yb{bottom:1002.225000px;}
.ya{bottom:1025.955000px;}
.y9{bottom:1049.955000px;}
.y8{bottom:1073.655000px;}
.y7{bottom:1097.655000px;}
.y5{bottom:1130.355000px;}
.y4{bottom:1162.155000px;}
.y3{bottom:1191.600000px;}
.y2{bottom:1220.700000px;}
.y1{bottom:1238.100000px;}
.h2{height:42.333984px;}
.hf{height:47.400000px;}
.h12{height:47.437500px;}
.ha{height:47.700000px;}
.h11{height:47.737500px;}
.h6{height:50.800781px;}
.h3{height:60.468750px;}
.h9{height:63.457031px;}
.h5{height:64.775391px;}
.h8{height:70.664062px;}
.he{height:71.400000px;}
.hb{height:71.437500px;}
.h7{height:72.562500px;}
.h4{height:84.656250px;}
.hd{height:86.437500px;}
.h10{height:95.100000px;}
.hc{height:95.400000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.wd{width:111.337500px;}
.wc{width:129.637500px;}
.w8{width:129.937500px;}
.w7{width:135.037500px;}
.wf{width:136.837500px;}
.w9{width:137.737500px;}
.wa{width:140.137500px;}
.we{width:140.737500px;}
.wb{width:153.975000px;}
.w3{width:156.645000px;}
.w5{width:174.930000px;}
.w6{width:176.175000px;}
.w10{width:179.475000px;}
.w4{width:190.275000px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:7.800000px;}
.x20{left:9.885000px;}
.x23{left:11.400000px;}
.x32{left:12.900000px;}
.x2b{left:14.100000px;}
.x2e{left:15.945000px;}
.x17{left:18.000000px;}
.x1e{left:20.100000px;}
.x31{left:21.300000px;}
.x12{left:23.100000px;}
.x27{left:25.200000px;}
.x2a{left:27.300000px;}
.x1f{left:29.400000px;}
.x29{left:32.145000px;}
.x10{left:34.200000px;}
.x1b{left:35.700000px;}
.x2f{left:37.545000px;}
.x2d{left:38.730000px;}
.x1a{left:40.800000px;}
.x33{left:42.045000px;}
.x1d{left:43.485000px;}
.x2c{left:45.000000px;}
.x30{left:48.000000px;}
.x3a{left:49.545000px;}
.x39{left:51.900000px;}
.x1c{left:53.430000px;}
.x15{left:56.100000px;}
.x13{left:58.245000px;}
.x18{left:70.230000px;}
.x3{left:84.937487px;}
.x6{left:93.337487px;}
.x22{left:96.337500px;}
.x35{left:216.075000px;}
.xa{left:222.674987px;}
.x24{left:232.275000px;}
.x11{left:243.075000px;}
.xc{left:280.574987px;}
.xb{left:313.619987px;}
.x9{left:317.219987px;}
.x36{left:328.020000px;}
.x4{left:350.819987px;}
.x3c{left:356.504987px;}
.x25{left:363.120000px;}
.xe{left:374.219987px;}
.x7{left:376.319987px;}
.x3b{left:385.319987px;}
.x21{left:401.504987px;}
.x5{left:428.549987px;}
.x14{left:434.250000px;}
.x8{left:446.249987px;}
.x2{left:457.049987px;}
.x37{left:469.350000px;}
.x26{left:501.750000px;}
.x1{left:510.449987px;}
.x38{left:606.780000px;}
.x16{left:610.095000px;}
.x28{left:642.780000px;}
.x34{left:750.224987px;}
.xf{left:752.024987px;}
.xd{left:807.869987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-1.066667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.021333pt;}
.ls4{letter-spacing:0.053333pt;}
.ls5{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.341333pt;}
.ls6{letter-spacing:0.362667pt;}
.ls0{letter-spacing:0.533333pt;}
.ws4{word-spacing:-16.362667pt;}
.ws3{word-spacing:-16.341333pt;}
.ws5{word-spacing:-16.021333pt;}
.ws1{word-spacing:-16.000000pt;}
.ws0{word-spacing:-13.333333pt;}
.ws2{word-spacing:0.000000pt;}
._18{margin-left:-8.458667pt;}
._17{margin-left:-6.805333pt;}
._4{margin-left:-5.376000pt;}
._15{margin-left:-4.469333pt;}
._3{margin-left:-3.456000pt;}
._2{margin-left:-2.346667pt;}
._1{margin-left:-1.066667pt;}
._0{width:1.226667pt;}
._5{width:2.218667pt;}
._8{width:3.205333pt;}
._12{width:4.896000pt;}
._16{width:5.802667pt;}
._13{width:7.125333pt;}
._14{width:8.394667pt;}
._11{width:9.898667pt;}
._a{width:11.637333pt;}
._6{width:12.890667pt;}
._7{width:14.464000pt;}
._9{width:17.184000pt;}
._10{width:18.997333pt;}
._1b{width:19.957333pt;}
._1c{width:21.066667pt;}
._1d{width:22.741333pt;}
._f{width:23.765333pt;}
._1e{width:24.842667pt;}
._b{width:32.554667pt;}
._c{width:42.026667pt;}
._d{width:50.869333pt;}
._e{width:51.861333pt;}
._19{width:53.418667pt;}
._1a{width:54.805333pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y6e{bottom:6.120000pt;}
.y34{bottom:6.133333pt;}
.y51{bottom:6.386667pt;}
.y37{bottom:6.400000pt;}
.y4b{bottom:16.800000pt;}
.y3d{bottom:19.480000pt;}
.y4c{bottom:27.200000pt;}
.y50{bottom:27.453333pt;}
.y33{bottom:27.466667pt;}
.y53{bottom:27.480000pt;}
.y69{bottom:27.506667pt;}
.y3c{bottom:40.813333pt;}
.y70{bottom:48.520000pt;}
.y36{bottom:48.533333pt;}
.y6{bottom:61.100000pt;}
.y3b{bottom:61.880000pt;}
.y4e{bottom:69.600000pt;}
.y39{bottom:69.866667pt;}
.y79{bottom:82.166667pt;}
.y31{bottom:86.700000pt;}
.y49{bottom:90.433333pt;}
.y67{bottom:103.233333pt;}
.y30{bottom:107.766667pt;}
.y48{bottom:111.766667pt;}
.y66{bottom:124.300000pt;}
.y2f{bottom:129.100000pt;}
.y47{bottom:132.833333pt;}
.y65{bottom:145.626667pt;}
.y2e{bottom:150.200000pt;}
.y46{bottom:154.200000pt;}
.y64{bottom:166.733333pt;}
.y2d{bottom:171.266667pt;}
.y45{bottom:175.266667pt;}
.y63{bottom:187.800000pt;}
.y2c{bottom:192.600000pt;}
.y44{bottom:196.333333pt;}
.y62{bottom:209.133333pt;}
.y2b{bottom:213.666667pt;}
.y43{bottom:217.666667pt;}
.y61{bottom:230.200000pt;}
.y2a{bottom:235.000000pt;}
.y42{bottom:238.733333pt;}
.y60{bottom:251.266667pt;}
.y29{bottom:256.066667pt;}
.y41{bottom:259.800000pt;}
.y5f{bottom:272.600000pt;}
.y28{bottom:277.133333pt;}
.y40{bottom:281.133333pt;}
.y5e{bottom:293.666667pt;}
.y27{bottom:298.466667pt;}
.y3f{bottom:302.226667pt;}
.y5d{bottom:314.760000pt;}
.y3e{bottom:317.693333pt;}
.y26{bottom:319.560000pt;}
.y5c{bottom:336.093333pt;}
.y25{bottom:340.626667pt;}
.y5b{bottom:357.173333pt;}
.y24{bottom:361.960000pt;}
.y5a{bottom:378.226667pt;}
.y3a{bottom:381.960000pt;}
.y23{bottom:383.040000pt;}
.y59{bottom:399.560000pt;}
.y22{bottom:404.106667pt;}
.y58{bottom:420.626667pt;}
.y21{bottom:425.440000pt;}
.y57{bottom:441.693333pt;}
.y20{bottom:446.493333pt;}
.y38{bottom:459.333333pt;}
.y56{bottom:463.066667pt;}
.y1f{bottom:467.600000pt;}
.y55{bottom:478.533333pt;}
.y78{bottom:484.133333pt;}
.y1e{bottom:488.933333pt;}
.y77{bottom:505.200000pt;}
.y1d{bottom:510.000000pt;}
.y76{bottom:526.533333pt;}
.y1c{bottom:531.066667pt;}
.y54{bottom:542.800000pt;}
.y35{bottom:544.666667pt;}
.y75{bottom:547.600000pt;}
.y1b{bottom:552.400000pt;}
.y74{bottom:568.933333pt;}
.y1a{bottom:573.466667pt;}
.y73{bottom:590.000000pt;}
.y19{bottom:594.533333pt;}
.y52{bottom:606.826667pt;}
.y32{bottom:608.960000pt;}
.y72{bottom:611.093333pt;}
.y18{bottom:615.893333pt;}
.y71{bottom:632.426667pt;}
.y17{bottom:636.960000pt;}
.y6f{bottom:647.906667pt;}
.y16{bottom:658.026667pt;}
.y15{bottom:679.360000pt;}
.y4f{bottom:692.173333pt;}
.y14{bottom:700.440000pt;}
.y6d{bottom:712.173333pt;}
.y13{bottom:721.506667pt;}
.y12{bottom:742.840000pt;}
.y6c{bottom:755.133333pt;}
.y4d{bottom:756.466667pt;}
.y11{bottom:763.933333pt;}
.y10{bottom:785.000000pt;}
.y6b{bottom:798.066667pt;}
.yf{bottom:806.333333pt;}
.ye{bottom:827.400000pt;}
.y6a{bottom:841.000000pt;}
.y4a{bottom:841.800000pt;}
.yd{bottom:848.466667pt;}
.yc{bottom:869.800000pt;}
.y68{bottom:883.933333pt;}
.yb{bottom:890.866667pt;}
.ya{bottom:911.960000pt;}
.y9{bottom:933.293333pt;}
.y8{bottom:954.360000pt;}
.y7{bottom:975.693333pt;}
.y5{bottom:1004.760000pt;}
.y4{bottom:1033.026667pt;}
.y3{bottom:1059.200000pt;}
.y2{bottom:1085.066667pt;}
.y1{bottom:1100.533333pt;}
.h2{height:37.630208pt;}
.hf{height:42.133333pt;}
.h12{height:42.166667pt;}
.ha{height:42.400000pt;}
.h11{height:42.433333pt;}
.h6{height:45.156250pt;}
.h3{height:53.750000pt;}
.h9{height:56.406250pt;}
.h5{height:57.578125pt;}
.h8{height:62.812500pt;}
.he{height:63.466667pt;}
.hb{height:63.500000pt;}
.h7{height:64.500000pt;}
.h4{height:75.250000pt;}
.hd{height:76.833333pt;}
.h10{height:84.533333pt;}
.hc{height:84.800000pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.wd{width:98.966667pt;}
.wc{width:115.233333pt;}
.w8{width:115.500000pt;}
.w7{width:120.033333pt;}
.wf{width:121.633333pt;}
.w9{width:122.433333pt;}
.wa{width:124.566667pt;}
.we{width:125.100000pt;}
.wb{width:136.866667pt;}
.w3{width:139.240000pt;}
.w5{width:155.493333pt;}
.w6{width:156.600000pt;}
.w10{width:159.533333pt;}
.w4{width:169.133333pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:6.933333pt;}
.x20{left:8.786667pt;}
.x23{left:10.133333pt;}
.x32{left:11.466667pt;}
.x2b{left:12.533333pt;}
.x2e{left:14.173333pt;}
.x17{left:16.000000pt;}
.x1e{left:17.866667pt;}
.x31{left:18.933333pt;}
.x12{left:20.533333pt;}
.x27{left:22.400000pt;}
.x2a{left:24.266667pt;}
.x1f{left:26.133333pt;}
.x29{left:28.573333pt;}
.x10{left:30.400000pt;}
.x1b{left:31.733333pt;}
.x2f{left:33.373333pt;}
.x2d{left:34.426667pt;}
.x1a{left:36.266667pt;}
.x33{left:37.373333pt;}
.x1d{left:38.653333pt;}
.x2c{left:40.000000pt;}
.x30{left:42.666667pt;}
.x3a{left:44.040000pt;}
.x39{left:46.133333pt;}
.x1c{left:47.493333pt;}
.x15{left:49.866667pt;}
.x13{left:51.773333pt;}
.x18{left:62.426667pt;}
.x3{left:75.499988pt;}
.x6{left:82.966655pt;}
.x22{left:85.633333pt;}
.x35{left:192.066667pt;}
.xa{left:197.933322pt;}
.x24{left:206.466667pt;}
.x11{left:216.066667pt;}
.xc{left:249.399988pt;}
.xb{left:278.773322pt;}
.x9{left:281.973322pt;}
.x36{left:291.573333pt;}
.x4{left:311.839988pt;}
.x3c{left:316.893322pt;}
.x25{left:322.773333pt;}
.xe{left:332.639988pt;}
.x7{left:334.506655pt;}
.x3b{left:342.506655pt;}
.x21{left:356.893322pt;}
.x5{left:380.933322pt;}
.x14{left:386.000000pt;}
.x8{left:396.666655pt;}
.x2{left:406.266655pt;}
.x37{left:417.200000pt;}
.x26{left:446.000000pt;}
.x1{left:453.733322pt;}
.x38{left:539.360000pt;}
.x16{left:542.306667pt;}
.x28{left:571.360000pt;}
.x34{left:666.866655pt;}
.xf{left:668.466655pt;}
.xd{left:718.106655pt;}
}




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