
    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_b4ffe66e3f414c4c535c9962.woff')format("woff");}.ff1{font-family:ff1;line-height:1.082031;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_be06c9afcb5dd178868c718e.woff')format("woff");}.ff2{font-family:ff2;line-height:0.682617;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_3f60480ca0e37db82a83118c.woff')format("woff");}.ff3{font-family:ff3;line-height:0.968000;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_e9df2f68ea1cbd44f0becdc9.woff')format("woff");}.ff4{font-family:ff4;line-height:1.090332;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_3796b60c3d2ddf6dd2cfbd74.woff')format("woff");}.ff5{font-family:ff5;line-height:1.084961;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_47c7b165b76f25eb0456ee9f.woff')format("woff");}.ff6{font-family:ff6;line-height:0.922852;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_daef2147e9c80ba0ac971c4d.woff')format("woff");}.ff7{font-family:ff7;line-height:0.899414;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;}
.ls4{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.060000px;}
.lsc{letter-spacing:0.120000px;}
.ls5{letter-spacing:0.300000px;}
.lsa{letter-spacing:0.360000px;}
.lse{letter-spacing:0.420000px;}
.ls8{letter-spacing:0.480000px;}
.lsf{letter-spacing:0.576000px;}
.ls10{letter-spacing:0.660000px;}
.ls6{letter-spacing:0.720000px;}
.lsb{letter-spacing:0.792000px;}
.ls9{letter-spacing:0.864000px;}
.ls7{letter-spacing:1.008000px;}
.ls2{letter-spacing:1.368000px;}
.ls3{letter-spacing:1.656000px;}
.ls11{letter-spacing:4.474200px;}
.ls0{letter-spacing:8.460000px;}
.ls1{letter-spacing:10.740000px;}
.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:-48.528000px;}
.ws4{word-spacing:-40.440000px;}
.ws0{word-spacing:-25.320000px;}
.ws5{word-spacing:-20.232000px;}
.ws2{word-spacing:0.000000px;}
.ws3{word-spacing:129.300000px;}
._c{margin-left:-21.204000px;}
._18{margin-left:-20.196000px;}
._17{margin-left:-15.396000px;}
._12{margin-left:-13.860000px;}
._16{margin-left:-11.784000px;}
._8{margin-left:-10.740000px;}
._5{margin-left:-8.460000px;}
._14{margin-left:-7.404000px;}
._0{margin-left:-5.940000px;}
._f{margin-left:-4.320000px;}
._b{margin-left:-2.856000px;}
._2{margin-left:-1.260000px;}
._1{width:1.860000px;}
._7{width:2.880000px;}
._3{width:4.200000px;}
._d{width:6.192000px;}
._e{width:7.284000px;}
._6{width:8.520000px;}
._13{width:9.732000px;}
._a{width:10.992000px;}
._9{width:12.360000px;}
._10{width:13.752000px;}
._11{width:15.828000px;}
._15{width:16.920000px;}
._4{width:165.360000px;}
.fc0{color:rgb(35,31,32);}
.fs0{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:84.000000px;}
.fs1{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:93.257850px;}
.y8c{bottom:141.655950px;}
.y67{bottom:142.849950px;}
.y1e{bottom:143.144100px;}
.y43{bottom:143.209950px;}
.y66{bottom:162.199950px;}
.y8b{bottom:164.299950px;}
.y42{bottom:165.403950px;}
.y1d{bottom:166.688100px;}
.y65{bottom:181.549950px;}
.y41{bottom:187.597950px;}
.y64{bottom:200.899950px;}
.y8a{bottom:209.599950px;}
.y40{bottom:209.791950px;}
.y1c{bottom:213.788100px;}
.y63{bottom:220.249950px;}
.y89{bottom:228.499950px;}
.y3f{bottom:231.985950px;}
.y1b{bottom:233.588100px;}
.y88{bottom:247.399950px;}
.y62{bottom:248.115900px;}
.y1a{bottom:253.388100px;}
.y3e{bottom:254.179950px;}
.y87{bottom:266.299950px;}
.y61{bottom:271.209900px;}
.y19{bottom:273.188100px;}
.y3d{bottom:276.373950px;}
.y86{bottom:285.199950px;}
.y18{bottom:292.988100px;}
.y60{bottom:294.303900px;}
.y3c{bottom:298.567950px;}
.y85{bottom:312.657900px;}
.y3b{bottom:320.761950px;}
.y17{bottom:321.316050px;}
.y84{bottom:335.301900px;}
.y5f{bottom:340.503900px;}
.y3a{bottom:342.955950px;}
.y16{bottom:344.860050px;}
.y83{bottom:357.945900px;}
.y5e{bottom:359.853900px;}
.y39{bottom:365.149950px;}
.y15{bottom:368.404050px;}
.y5d{bottom:379.203900px;}
.y82{bottom:380.589900px;}
.y14{bottom:391.948050px;}
.y5c{bottom:398.553900px;}
.y81{bottom:403.233900px;}
.y38{bottom:409.549950px;}
.y13{bottom:415.492050px;}
.y80{bottom:425.877900px;}
.y5b{bottom:426.443850px;}
.y37{bottom:428.749950px;}
.y36{bottom:447.949950px;}
.y7f{bottom:448.521900px;}
.y5a{bottom:449.537850px;}
.y12{bottom:462.592050px;}
.y35{bottom:467.149950px;}
.y7e{bottom:471.165900px;}
.y59{bottom:472.631850px;}
.y11{bottom:482.392050px;}
.y34{bottom:486.349950px;}
.y7d{bottom:493.809900px;}
.y58{bottom:495.725850px;}
.y10{bottom:502.192050px;}
.y33{bottom:505.549950px;}
.y7c{bottom:516.453900px;}
.y57{bottom:518.819850px;}
.yf{bottom:521.992050px;}
.y32{bottom:524.749950px;}
.ye{bottom:541.792050px;}
.y31{bottom:543.949950px;}
.yd{bottom:561.592050px;}
.y7b{bottom:561.753900px;}
.y30{bottom:563.149950px;}
.y56{bottom:565.025850px;}
.y7a{bottom:580.653900px;}
.yc{bottom:581.392050px;}
.y2f{bottom:582.349950px;}
.y55{bottom:588.119850px;}
.y79{bottom:599.553900px;}
.yb{bottom:601.192050px;}
.y2e{bottom:610.077900px;}
.y54{bottom:611.213850px;}
.y78{bottom:618.453900px;}
.ya{bottom:629.520000px;}
.y2d{bottom:632.271900px;}
.y53{bottom:634.307850px;}
.y77{bottom:637.353900px;}
.y9{bottom:653.064000px;}
.y2c{bottom:654.465900px;}
.y76{bottom:656.253900px;}
.y99{bottom:669.753900px;}
.y75{bottom:675.153900px;}
.y8{bottom:676.608000px;}
.y2b{bottom:676.659900px;}
.y52{bottom:680.507850px;}
.y98{bottom:688.503900px;}
.y74{bottom:694.053900px;}
.y2a{bottom:698.853900px;}
.y51{bottom:699.857850px;}
.y7{bottom:700.152000px;}
.y97{bottom:707.253900px;}
.y73{bottom:712.953900px;}
.y50{bottom:719.207850px;}
.y6{bottom:723.696000px;}
.y96{bottom:726.003900px;}
.y72{bottom:731.853900px;}
.y4f{bottom:738.557850px;}
.y29{bottom:743.403900px;}
.y5{bottom:747.246000px;}
.y71{bottom:750.753900px;}
.y4e{bottom:757.907850px;}
.y28{bottom:762.753900px;}
.y95{bottom:763.503900px;}
.y70{bottom:769.653900px;}
.y4d{bottom:777.257850px;}
.y27{bottom:782.103900px;}
.y6f{bottom:788.553900px;}
.y4{bottom:793.131750px;}
.y4c{bottom:796.607850px;}
.y26{bottom:801.453900px;}
.y94{bottom:804.753900px;}
.y6e{bottom:807.453900px;}
.y3{bottom:815.631750px;}
.y4b{bottom:815.957850px;}
.y25{bottom:820.803900px;}
.y93{bottom:823.503900px;}
.y6d{bottom:834.887850px;}
.y4a{bottom:835.307850px;}
.y24{bottom:840.153900px;}
.y92{bottom:842.253900px;}
.y49{bottom:854.657850px;}
.y6c{bottom:857.531850px;}
.y23{bottom:859.503900px;}
.y91{bottom:861.003900px;}
.y48{bottom:874.007850px;}
.y22{bottom:878.853900px;}
.y90{bottom:879.753900px;}
.y6b{bottom:880.175850px;}
.y2{bottom:882.777450px;}
.y47{bottom:893.357850px;}
.y21{bottom:898.203900px;}
.y8f{bottom:898.503900px;}
.y6a{bottom:902.819850px;}
.y46{bottom:912.707850px;}
.y69{bottom:925.463850px;}
.y8e{bottom:925.757850px;}
.y20{bottom:926.051850px;}
.y45{bottom:932.057850px;}
.y68{bottom:948.107850px;}
.y8d{bottom:948.257850px;}
.y1f{bottom:948.407850px;}
.y44{bottom:951.407850px;}
.h4{height:50.580000px;}
.h2{height:50.947266px;}
.h6{height:57.955078px;}
.h5{height:61.136719px;}
.h3{height:101.894531px;}
.h0{height:1059.519000px;}
.h1{height:1059.750000px;}
.w1{width:741.000000px;}
.w0{width:741.259500px;}
.x0{left:0.000000px;}
.x5{left:88.759800px;}
.x7{left:103.641750px;}
.x2{left:112.500000px;}
.x6{left:118.523550px;}
.x3{left:127.381950px;}
.x4{left:142.263750px;}
.x8{left:180.532650px;}
.x1{left:417.403050px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.053333pt;}
.lsc{letter-spacing:0.106667pt;}
.ls5{letter-spacing:0.266667pt;}
.lsa{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.373333pt;}
.ls8{letter-spacing:0.426667pt;}
.lsf{letter-spacing:0.512000pt;}
.ls10{letter-spacing:0.586667pt;}
.ls6{letter-spacing:0.640000pt;}
.lsb{letter-spacing:0.704000pt;}
.ls9{letter-spacing:0.768000pt;}
.ls7{letter-spacing:0.896000pt;}
.ls2{letter-spacing:1.216000pt;}
.ls3{letter-spacing:1.472000pt;}
.ls11{letter-spacing:3.977067pt;}
.ls0{letter-spacing:7.520000pt;}
.ls1{letter-spacing:9.546667pt;}
.ws1{word-spacing:-43.136000pt;}
.ws4{word-spacing:-35.946667pt;}
.ws0{word-spacing:-22.506667pt;}
.ws5{word-spacing:-17.984000pt;}
.ws2{word-spacing:0.000000pt;}
.ws3{word-spacing:114.933333pt;}
._c{margin-left:-18.848000pt;}
._18{margin-left:-17.952000pt;}
._17{margin-left:-13.685333pt;}
._12{margin-left:-12.320000pt;}
._16{margin-left:-10.474667pt;}
._8{margin-left:-9.546667pt;}
._5{margin-left:-7.520000pt;}
._14{margin-left:-6.581333pt;}
._0{margin-left:-5.280000pt;}
._f{margin-left:-3.840000pt;}
._b{margin-left:-2.538667pt;}
._2{margin-left:-1.120000pt;}
._1{width:1.653333pt;}
._7{width:2.560000pt;}
._3{width:3.733333pt;}
._d{width:5.504000pt;}
._e{width:6.474667pt;}
._6{width:7.573333pt;}
._13{width:8.650667pt;}
._a{width:9.770667pt;}
._9{width:10.986667pt;}
._10{width:12.224000pt;}
._11{width:14.069333pt;}
._15{width:15.040000pt;}
._4{width:146.986667pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:74.666667pt;}
.fs1{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:82.895867pt;}
.y8c{bottom:125.916400pt;}
.y67{bottom:126.977733pt;}
.y1e{bottom:127.239200pt;}
.y43{bottom:127.297733pt;}
.y66{bottom:144.177733pt;}
.y8b{bottom:146.044400pt;}
.y42{bottom:147.025733pt;}
.y1d{bottom:148.167200pt;}
.y65{bottom:161.377733pt;}
.y41{bottom:166.753733pt;}
.y64{bottom:178.577733pt;}
.y8a{bottom:186.311067pt;}
.y40{bottom:186.481733pt;}
.y1c{bottom:190.033867pt;}
.y63{bottom:195.777733pt;}
.y89{bottom:203.111067pt;}
.y3f{bottom:206.209733pt;}
.y1b{bottom:207.633867pt;}
.y88{bottom:219.911067pt;}
.y62{bottom:220.547467pt;}
.y1a{bottom:225.233867pt;}
.y3e{bottom:225.937733pt;}
.y87{bottom:236.711067pt;}
.y61{bottom:241.075467pt;}
.y19{bottom:242.833867pt;}
.y3d{bottom:245.665733pt;}
.y86{bottom:253.511067pt;}
.y18{bottom:260.433867pt;}
.y60{bottom:261.603467pt;}
.y3c{bottom:265.393733pt;}
.y85{bottom:277.918133pt;}
.y3b{bottom:285.121733pt;}
.y17{bottom:285.614267pt;}
.y84{bottom:298.046133pt;}
.y5f{bottom:302.670133pt;}
.y3a{bottom:304.849733pt;}
.y16{bottom:306.542267pt;}
.y83{bottom:318.174133pt;}
.y5e{bottom:319.870133pt;}
.y39{bottom:324.577733pt;}
.y15{bottom:327.470267pt;}
.y5d{bottom:337.070133pt;}
.y82{bottom:338.302133pt;}
.y14{bottom:348.398267pt;}
.y5c{bottom:354.270133pt;}
.y81{bottom:358.430133pt;}
.y38{bottom:364.044400pt;}
.y13{bottom:369.326267pt;}
.y80{bottom:378.558133pt;}
.y5b{bottom:379.061200pt;}
.y37{bottom:381.111067pt;}
.y36{bottom:398.177733pt;}
.y7f{bottom:398.686133pt;}
.y5a{bottom:399.589200pt;}
.y12{bottom:411.192933pt;}
.y35{bottom:415.244400pt;}
.y7e{bottom:418.814133pt;}
.y59{bottom:420.117200pt;}
.y11{bottom:428.792933pt;}
.y34{bottom:432.311067pt;}
.y7d{bottom:438.942133pt;}
.y58{bottom:440.645200pt;}
.y10{bottom:446.392933pt;}
.y33{bottom:449.377733pt;}
.y7c{bottom:459.070133pt;}
.y57{bottom:461.173200pt;}
.yf{bottom:463.992933pt;}
.y32{bottom:466.444400pt;}
.ye{bottom:481.592933pt;}
.y31{bottom:483.511067pt;}
.yd{bottom:499.192933pt;}
.y7b{bottom:499.336800pt;}
.y30{bottom:500.577733pt;}
.y56{bottom:502.245200pt;}
.y7a{bottom:516.136800pt;}
.yc{bottom:516.792933pt;}
.y2f{bottom:517.644400pt;}
.y55{bottom:522.773200pt;}
.y79{bottom:532.936800pt;}
.yb{bottom:534.392933pt;}
.y2e{bottom:542.291467pt;}
.y54{bottom:543.301200pt;}
.y78{bottom:549.736800pt;}
.ya{bottom:559.573333pt;}
.y2d{bottom:562.019467pt;}
.y53{bottom:563.829200pt;}
.y77{bottom:566.536800pt;}
.y9{bottom:580.501333pt;}
.y2c{bottom:581.747467pt;}
.y76{bottom:583.336800pt;}
.y99{bottom:595.336800pt;}
.y75{bottom:600.136800pt;}
.y8{bottom:601.429333pt;}
.y2b{bottom:601.475467pt;}
.y52{bottom:604.895867pt;}
.y98{bottom:612.003467pt;}
.y74{bottom:616.936800pt;}
.y2a{bottom:621.203467pt;}
.y51{bottom:622.095867pt;}
.y7{bottom:622.357333pt;}
.y97{bottom:628.670133pt;}
.y73{bottom:633.736800pt;}
.y50{bottom:639.295867pt;}
.y6{bottom:643.285333pt;}
.y96{bottom:645.336800pt;}
.y72{bottom:650.536800pt;}
.y4f{bottom:656.495867pt;}
.y29{bottom:660.803467pt;}
.y5{bottom:664.218667pt;}
.y71{bottom:667.336800pt;}
.y4e{bottom:673.695867pt;}
.y28{bottom:678.003467pt;}
.y95{bottom:678.670133pt;}
.y70{bottom:684.136800pt;}
.y4d{bottom:690.895867pt;}
.y27{bottom:695.203467pt;}
.y6f{bottom:700.936800pt;}
.y4{bottom:705.006000pt;}
.y4c{bottom:708.095867pt;}
.y26{bottom:712.403467pt;}
.y94{bottom:715.336800pt;}
.y6e{bottom:717.736800pt;}
.y3{bottom:725.006000pt;}
.y4b{bottom:725.295867pt;}
.y25{bottom:729.603467pt;}
.y93{bottom:732.003467pt;}
.y6d{bottom:742.122533pt;}
.y4a{bottom:742.495867pt;}
.y24{bottom:746.803467pt;}
.y92{bottom:748.670133pt;}
.y49{bottom:759.695867pt;}
.y6c{bottom:762.250533pt;}
.y23{bottom:764.003467pt;}
.y91{bottom:765.336800pt;}
.y48{bottom:776.895867pt;}
.y22{bottom:781.203467pt;}
.y90{bottom:782.003467pt;}
.y6b{bottom:782.378533pt;}
.y2{bottom:784.691067pt;}
.y47{bottom:794.095867pt;}
.y21{bottom:798.403467pt;}
.y8f{bottom:798.670133pt;}
.y6a{bottom:802.506533pt;}
.y46{bottom:811.295867pt;}
.y69{bottom:822.634533pt;}
.y8e{bottom:822.895867pt;}
.y20{bottom:823.157200pt;}
.y45{bottom:828.495867pt;}
.y68{bottom:842.762533pt;}
.y8d{bottom:842.895867pt;}
.y1f{bottom:843.029200pt;}
.y44{bottom:845.695867pt;}
.h4{height:44.960000pt;}
.h2{height:45.286458pt;}
.h6{height:51.515625pt;}
.h5{height:54.343750pt;}
.h3{height:90.572917pt;}
.h0{height:941.794667pt;}
.h1{height:942.000000pt;}
.w1{width:658.666667pt;}
.w0{width:658.897333pt;}
.x0{left:0.000000pt;}
.x5{left:78.897600pt;}
.x7{left:92.126000pt;}
.x2{left:100.000000pt;}
.x6{left:105.354267pt;}
.x3{left:113.228400pt;}
.x4{left:126.456667pt;}
.x8{left:160.473467pt;}
.x1{left:371.024933pt;}
}




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