
    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_d23ab9bcf59024d567ff36f6.woff')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_fd582dfb0a103e97fc5bdd88.woff')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_281b854eb5c512f3293a7d75.woff')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_c4e11570ab60162a84174b29.woff')format("woff");}.ff4{font-family:ff4;line-height:0.946777;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_664593f6dfc398ad70ea8f1e.woff')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_64620e05f914142086e25839.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_99a4e01235ef9c732f72482b.woff')format("woff");}.ff7{font-family:ff7;line-height:0.944824;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_19b267f0960f1cff855c3d5c.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_9e5729bee4b4d16b7b80b4a4.woff')format("woff");}.ff9{font-family:ff9;line-height:1.402354;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;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.028080px;}
.ls2{letter-spacing:0.360000px;}
.ls0{letter-spacing:0.720000px;}
.ls6{letter-spacing:11.520000px;}
.ls5{letter-spacing:33.984000px;}
.ls4{letter-spacing:191.484000px;}
.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;}
}
.ws0{word-spacing:-21.420000px;}
.ws4{word-spacing:-21.088080px;}
.ws2{word-spacing:-21.060000px;}
.ws1{word-spacing:-18.000000px;}
.ws5{word-spacing:-16.560000px;}
.ws3{word-spacing:0.000000px;}
._0{margin-left:-1.179360px;}
._1{width:1.128000px;}
._2{width:2.376000px;}
._11{width:3.406080px;}
._e{width:6.823440px;}
._13{width:8.035920px;}
._12{width:9.233280px;}
._a{width:10.728000px;}
._c{width:12.000000px;}
._b{width:13.032000px;}
._3{width:14.184000px;}
._4{width:15.240000px;}
._1e{width:16.265760px;}
._1a{width:17.353440px;}
._1b{width:18.448560px;}
._17{width:19.796400px;}
._5{width:21.312000px;}
._6{width:23.472000px;}
._7{width:24.564000px;}
._1c{width:26.872560px;}
._1d{width:28.051920px;}
._18{width:29.989440px;}
._19{width:31.000320px;}
._d{width:32.600880px;}
._20{width:33.611760px;}
._14{width:37.992240px;}
._15{width:39.003120px;}
._f{width:40.423200px;}
._9{width:41.430720px;}
._8{width:42.480000px;}
._16{width:45.152640px;}
._1f{width:65.674080px;}
._10{width:68.150160px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:54.000000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y48{bottom:6.300000px;}
.y4b{bottom:6.480000px;}
.y4{bottom:12.240000px;}
.y46{bottom:17.280000px;}
.y3{bottom:23.976000px;}
.y47{bottom:28.305000px;}
.y2{bottom:31.176000px;}
.y44{bottom:84.096000px;}
.y2f{bottom:108.396000px;}
.y2e{bottom:136.296000px;}
.y2d{bottom:164.010000px;}
.y2c{bottom:191.730000px;}
.y2b{bottom:219.630000px;}
.y2a{bottom:247.350000px;}
.y29{bottom:275.070000px;}
.y28{bottom:302.835000px;}
.y27{bottom:330.735000px;}
.y5d{bottom:351.435000px;}
.y26{bottom:358.455000px;}
.y5c{bottom:375.195000px;}
.y25{bottom:386.175000px;}
.y5b{bottom:398.955000px;}
.y24{bottom:414.075000px;}
.y5a{bottom:422.715000px;}
.y23{bottom:441.795000px;}
.y59{bottom:446.655000px;}
.y22{bottom:465.375000px;}
.y58{bottom:470.415000px;}
.y21{bottom:486.075000px;}
.y57{bottom:494.175000px;}
.y20{bottom:506.775000px;}
.y43{bottom:517.575000px;}
.y56{bottom:517.935000px;}
.y1f{bottom:527.475000px;}
.y55{bottom:541.875000px;}
.y42{bottom:545.475000px;}
.y1e{bottom:548.175000px;}
.y54{bottom:563.835000px;}
.y1d{bottom:568.905000px;}
.y41{bottom:573.225000px;}
.y53{bottom:584.565000px;}
.y1c{bottom:589.605000px;}
.y40{bottom:600.945000px;}
.y1b{bottom:610.305000px;}
.y52{bottom:612.285000px;}
.y3f{bottom:628.845000px;}
.y1a{bottom:631.005000px;}
.y51{bottom:640.185000px;}
.y19{bottom:651.705000px;}
.y3e{bottom:656.565000px;}
.y50{bottom:667.905000px;}
.y18{bottom:672.405000px;}
.y3d{bottom:684.285000px;}
.y17{bottom:693.105000px;}
.y4f{bottom:694.545000px;}
.y3c{bottom:712.005000px;}
.y16{bottom:713.805000px;}
.y4e{bottom:718.305000px;}
.y15{bottom:734.505000px;}
.y4d{bottom:735.945000px;}
.y3b{bottom:739.905000px;}
.y14{bottom:755.205000px;}
.y4c{bottom:758.445000px;}
.y3a{bottom:767.625000px;}
.y13{bottom:775.905000px;}
.y4a{bottom:780.945000px;}
.y39{bottom:795.345000px;}
.y12{bottom:796.605000px;}
.y49{bottom:803.625000px;}
.y11{bottom:817.305000px;}
.y38{bottom:823.065000px;}
.y45{bottom:826.125000px;}
.y10{bottom:838.005000px;}
.y37{bottom:851.010000px;}
.yf{bottom:858.750000px;}
.y36{bottom:878.730000px;}
.ye{bottom:879.450000px;}
.yd{bottom:900.150000px;}
.y35{bottom:906.450000px;}
.yc{bottom:920.850000px;}
.y34{bottom:934.350000px;}
.yb{bottom:941.550000px;}
.y33{bottom:962.070000px;}
.ya{bottom:962.250000px;}
.y9{bottom:982.950000px;}
.y32{bottom:989.790000px;}
.y8{bottom:1003.650000px;}
.y31{bottom:1017.510000px;}
.y7{bottom:1024.890000px;}
.y30{bottom:1045.410000px;}
.y6{bottom:1049.010000px;}
.y5{bottom:1073.130000px;}
.y1{bottom:1190.160000px;}
.hc{height:21.780000px;}
.he{height:21.960000px;}
.h3{height:31.860000px;}
.ha{height:43.776000px;}
.hf{height:54.421875px;}
.h9{height:58.819922px;}
.h5{height:59.436914px;}
.hd{height:65.010937px;}
.hb{height:66.757500px;}
.h7{height:70.628906px;}
.h8{height:70.664062px;}
.h6{height:72.562500px;}
.h10{height:74.004654px;}
.h2{height:82.676953px;}
.h4{height:84.898125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:75.816000px;}
.w4{width:75.996000px;}
.w6{width:87.696000px;}
.w5{width:89.640000px;}
.w8{width:92.016000px;}
.w7{width:95.400000px;}
.w9{width:109.260000px;}
.wa{width:148.536000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:11.340000px;}
.x1b{left:12.960000px;}
.x14{left:17.316000px;}
.x19{left:21.240000px;}
.x1f{left:22.320000px;}
.x21{left:23.400000px;}
.x24{left:25.200000px;}
.x3{left:27.360000px;}
.x25{left:28.440000px;}
.x26{left:29.700000px;}
.x22{left:32.040000px;}
.x27{left:38.160000px;}
.x20{left:41.265000px;}
.x1e{left:45.945000px;}
.x23{left:51.705000px;}
.x28{left:58.005000px;}
.x13{left:77.400000px;}
.x1{left:84.959987px;}
.x2b{left:90.035987px;}
.x2c{left:117.035987px;}
.x10{left:127.475987px;}
.xf{left:138.095987px;}
.x15{left:153.750000px;}
.x4{left:154.829987px;}
.x5{left:173.009987px;}
.x12{left:177.149987px;}
.x6{left:188.489987px;}
.x16{left:243.750000px;}
.x9{left:273.989987px;}
.xc{left:298.514987px;}
.x2a{left:330.194987px;}
.x18{left:331.815000px;}
.xb{left:380.774987px;}
.xd{left:387.254987px;}
.x8{left:388.514987px;}
.x2{left:409.035000px;}
.x1a{left:427.575000px;}
.xa{left:446.474987px;}
.xe{left:461.774987px;}
.x29{left:467.714987px;}
.x7{left:472.964987px;}
.x1c{left:519.945000px;}
.x1d{left:629.565000px;}
.x11{left:777.389987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.024960pt;}
.ls2{letter-spacing:0.320000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls6{letter-spacing:10.240000pt;}
.ls5{letter-spacing:30.208000pt;}
.ls4{letter-spacing:170.208000pt;}
.ws0{word-spacing:-19.040000pt;}
.ws4{word-spacing:-18.744960pt;}
.ws2{word-spacing:-18.720000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws5{word-spacing:-14.720000pt;}
.ws3{word-spacing:0.000000pt;}
._0{margin-left:-1.048320pt;}
._1{width:1.002667pt;}
._2{width:2.112000pt;}
._11{width:3.027627pt;}
._e{width:6.065280pt;}
._13{width:7.143040pt;}
._12{width:8.207360pt;}
._a{width:9.536000pt;}
._c{width:10.666667pt;}
._b{width:11.584000pt;}
._3{width:12.608000pt;}
._4{width:13.546667pt;}
._1e{width:14.458453pt;}
._1a{width:15.425280pt;}
._1b{width:16.398720pt;}
._17{width:17.596800pt;}
._5{width:18.944000pt;}
._6{width:20.864000pt;}
._7{width:21.834667pt;}
._1c{width:23.886720pt;}
._1d{width:24.935040pt;}
._18{width:26.657280pt;}
._19{width:27.555840pt;}
._d{width:28.978560pt;}
._20{width:29.877120pt;}
._14{width:33.770880pt;}
._15{width:34.669440pt;}
._f{width:35.931733pt;}
._9{width:36.827307pt;}
._8{width:37.760000pt;}
._16{width:40.135680pt;}
._1f{width:58.376960pt;}
._10{width:60.577920pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y48{bottom:5.600000pt;}
.y4b{bottom:5.760000pt;}
.y4{bottom:10.880000pt;}
.y46{bottom:15.360000pt;}
.y3{bottom:21.312000pt;}
.y47{bottom:25.160000pt;}
.y2{bottom:27.712000pt;}
.y44{bottom:74.752000pt;}
.y2f{bottom:96.352000pt;}
.y2e{bottom:121.152000pt;}
.y2d{bottom:145.786667pt;}
.y2c{bottom:170.426667pt;}
.y2b{bottom:195.226667pt;}
.y2a{bottom:219.866667pt;}
.y29{bottom:244.506667pt;}
.y28{bottom:269.186667pt;}
.y27{bottom:293.986667pt;}
.y5d{bottom:312.386667pt;}
.y26{bottom:318.626667pt;}
.y5c{bottom:333.506667pt;}
.y25{bottom:343.266667pt;}
.y5b{bottom:354.626667pt;}
.y24{bottom:368.066667pt;}
.y5a{bottom:375.746667pt;}
.y23{bottom:392.706667pt;}
.y59{bottom:397.026667pt;}
.y22{bottom:413.666667pt;}
.y58{bottom:418.146667pt;}
.y21{bottom:432.066667pt;}
.y57{bottom:439.266667pt;}
.y20{bottom:450.466667pt;}
.y43{bottom:460.066667pt;}
.y56{bottom:460.386667pt;}
.y1f{bottom:468.866667pt;}
.y55{bottom:481.666667pt;}
.y42{bottom:484.866667pt;}
.y1e{bottom:487.266667pt;}
.y54{bottom:501.186667pt;}
.y1d{bottom:505.693333pt;}
.y41{bottom:509.533333pt;}
.y53{bottom:519.613333pt;}
.y1c{bottom:524.093333pt;}
.y40{bottom:534.173333pt;}
.y1b{bottom:542.493333pt;}
.y52{bottom:544.253333pt;}
.y3f{bottom:558.973333pt;}
.y1a{bottom:560.893333pt;}
.y51{bottom:569.053333pt;}
.y19{bottom:579.293333pt;}
.y3e{bottom:583.613333pt;}
.y50{bottom:593.693333pt;}
.y18{bottom:597.693333pt;}
.y3d{bottom:608.253333pt;}
.y17{bottom:616.093333pt;}
.y4f{bottom:617.373333pt;}
.y3c{bottom:632.893333pt;}
.y16{bottom:634.493333pt;}
.y4e{bottom:638.493333pt;}
.y15{bottom:652.893333pt;}
.y4d{bottom:654.173333pt;}
.y3b{bottom:657.693333pt;}
.y14{bottom:671.293333pt;}
.y4c{bottom:674.173333pt;}
.y3a{bottom:682.333333pt;}
.y13{bottom:689.693333pt;}
.y4a{bottom:694.173333pt;}
.y39{bottom:706.973333pt;}
.y12{bottom:708.093333pt;}
.y49{bottom:714.333333pt;}
.y11{bottom:726.493333pt;}
.y38{bottom:731.613333pt;}
.y45{bottom:734.333333pt;}
.y10{bottom:744.893333pt;}
.y37{bottom:756.453333pt;}
.yf{bottom:763.333333pt;}
.y36{bottom:781.093333pt;}
.ye{bottom:781.733333pt;}
.yd{bottom:800.133333pt;}
.y35{bottom:805.733333pt;}
.yc{bottom:818.533333pt;}
.y34{bottom:830.533333pt;}
.yb{bottom:836.933333pt;}
.y33{bottom:855.173333pt;}
.ya{bottom:855.333333pt;}
.y9{bottom:873.733333pt;}
.y32{bottom:879.813333pt;}
.y8{bottom:892.133333pt;}
.y31{bottom:904.453333pt;}
.y7{bottom:911.013333pt;}
.y30{bottom:929.253333pt;}
.y6{bottom:932.453333pt;}
.y5{bottom:953.893333pt;}
.y1{bottom:1057.920000pt;}
.hc{height:19.360000pt;}
.he{height:19.520000pt;}
.h3{height:28.320000pt;}
.ha{height:38.912000pt;}
.hf{height:48.375000pt;}
.h9{height:52.284375pt;}
.h5{height:52.832812pt;}
.hd{height:57.787500pt;}
.hb{height:59.340000pt;}
.h7{height:62.781250pt;}
.h8{height:62.812500pt;}
.h6{height:64.500000pt;}
.h10{height:65.781915pt;}
.h2{height:73.490625pt;}
.h4{height:75.465000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:67.392000pt;}
.w4{width:67.552000pt;}
.w6{width:77.952000pt;}
.w5{width:79.680000pt;}
.w8{width:81.792000pt;}
.w7{width:84.800000pt;}
.w9{width:97.120000pt;}
.wa{width:132.032000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:10.080000pt;}
.x1b{left:11.520000pt;}
.x14{left:15.392000pt;}
.x19{left:18.880000pt;}
.x1f{left:19.840000pt;}
.x21{left:20.800000pt;}
.x24{left:22.400000pt;}
.x3{left:24.320000pt;}
.x25{left:25.280000pt;}
.x26{left:26.400000pt;}
.x22{left:28.480000pt;}
.x27{left:33.920000pt;}
.x20{left:36.680000pt;}
.x1e{left:40.840000pt;}
.x23{left:45.960000pt;}
.x28{left:51.560000pt;}
.x13{left:68.800000pt;}
.x1{left:75.519988pt;}
.x2b{left:80.031988pt;}
.x2c{left:104.031988pt;}
.x10{left:113.311988pt;}
.xf{left:122.751988pt;}
.x15{left:136.666667pt;}
.x4{left:137.626655pt;}
.x5{left:153.786655pt;}
.x12{left:157.466655pt;}
.x6{left:167.546655pt;}
.x16{left:216.666667pt;}
.x9{left:243.546655pt;}
.xc{left:265.346655pt;}
.x2a{left:293.506655pt;}
.x18{left:294.946667pt;}
.xb{left:338.466655pt;}
.xd{left:344.226655pt;}
.x8{left:345.346655pt;}
.x2{left:363.586667pt;}
.x1a{left:380.066667pt;}
.xa{left:396.866655pt;}
.xe{left:410.466655pt;}
.x29{left:415.746655pt;}
.x7{left:420.413322pt;}
.x1c{left:462.173333pt;}
.x1d{left:559.613333pt;}
.x11{left:691.013322pt;}
}




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