
    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_42999e2be6aa3730b3a2bcbd.woff')format("woff");}.ff1{font-family:ff1;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_912bc33b524b77e87c0f69d9.woff')format("woff");}.ff2{font-family:ff2;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_057bd140edb726876c4c00ce.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_eccc6bfe97a80bb676ec1e8f.woff')format("woff");}.ff4{font-family:ff4;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_e6f0708552efe89a65852fea.woff')format("woff");}.ff5{font-family:ff5;line-height:0.854004;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls7{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.053280px;}
.ls2{letter-spacing:0.119520px;}
.ls1{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.ls8{letter-spacing:46.002720px;}
.ls4{letter-spacing:64.002720px;}
.ls3{letter-spacing:636.840000px;}
.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;}
}
.ws3{word-spacing:-59.760000px;}
.ws1{word-spacing:-15.300000px;}
.ws4{word-spacing:-15.238800px;}
.ws0{word-spacing:-14.940000px;}
.ws2{word-spacing:-13.500000px;}
.ws5{word-spacing:0.000000px;}
._0{margin-left:-7.888320px;}
._4{margin-left:-6.760080px;}
._b{margin-left:-5.553360px;}
._7{margin-left:-3.888000px;}
._a{margin-left:-2.481840px;}
._2{margin-left:-1.303920px;}
._1{width:1.290720px;}
._8{width:2.452080px;}
._3{width:3.480240px;}
._6{width:4.500000px;}
._9{width:6.221040px;}
._c{width:7.469280px;}
._d{width:9.517680px;}
._5{width:136.122000px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(76,148,216);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y37{bottom:3.240000px;}
.yc{bottom:37.260000px;}
.yb{bottom:57.060000px;}
.ya{bottom:72.576000px;}
.y3d{bottom:124.236000px;}
.y3c{bottom:141.516000px;}
.y61{bottom:158.430000px;}
.y3b{bottom:158.610000px;}
.y60{bottom:175.710000px;}
.y3a{bottom:175.890000px;}
.y39{bottom:190.650000px;}
.y5f{bottom:192.810000px;}
.y38{bottom:208.650000px;}
.y5e{bottom:210.090000px;}
.y36{bottom:226.650000px;}
.y5d{bottom:227.370000px;}
.y5c{bottom:244.650000px;}
.y35{bottom:247.890000px;}
.y5b{bottom:261.930000px;}
.y34{bottom:265.170000px;}
.y5a{bottom:279.210000px;}
.y33{bottom:282.450000px;}
.y59{bottom:296.310000px;}
.y32{bottom:299.730000px;}
.y4a{bottom:303.150000px;}
.y58{bottom:313.590000px;}
.y31{bottom:317.055000px;}
.y49{bottom:320.475000px;}
.y57{bottom:330.915000px;}
.y30{bottom:334.155000px;}
.y56{bottom:348.195000px;}
.y2f{bottom:351.435000px;}
.y55{bottom:365.475000px;}
.y2e{bottom:368.715000px;}
.y54{bottom:383.655000px;}
.y2d{bottom:385.995000px;}
.y53{bottom:402.015000px;}
.y2c{bottom:404.355000px;}
.y52{bottom:419.295000px;}
.y2b{bottom:422.535000px;}
.y51{bottom:437.655000px;}
.y2a{bottom:440.895000px;}
.y50{bottom:454.935000px;}
.y29{bottom:458.175000px;}
.y4f{bottom:472.215000px;}
.y28{bottom:476.535000px;}
.y4e{bottom:489.315000px;}
.y27{bottom:493.815000px;}
.y4d{bottom:506.595000px;}
.y26{bottom:511.095000px;}
.y4c{bottom:523.875000px;}
.y25{bottom:528.195000px;}
.y4b{bottom:537.915000px;}
.y24{bottom:545.475000px;}
.y23{bottom:562.755000px;}
.y22{bottom:580.065000px;}
.y21{bottom:597.345000px;}
.y20{bottom:614.445000px;}
.y1f{bottom:631.725000px;}
.y1e{bottom:649.005000px;}
.y1d{bottom:668.445000px;}
.y1c{bottom:685.725000px;}
.y1b{bottom:703.005000px;}
.y1a{bottom:720.285000px;}
.y19{bottom:737.565000px;}
.y18{bottom:754.845000px;}
.y48{bottom:756.105000px;}
.y17{bottom:771.945000px;}
.y47{bottom:773.385000px;}
.y6b{bottom:781.125000px;}
.y16{bottom:789.225000px;}
.y46{bottom:791.745000px;}
.y6a{bottom:798.405000px;}
.y15{bottom:806.505000px;}
.y45{bottom:810.105000px;}
.y69{bottom:815.685000px;}
.y14{bottom:825.990000px;}
.y44{bottom:828.510000px;}
.y68{bottom:833.010000px;}
.y13{bottom:843.270000px;}
.y43{bottom:845.790000px;}
.y67{bottom:850.290000px;}
.y12{bottom:860.550000px;}
.y66{bottom:867.390000px;}
.y11{bottom:877.830000px;}
.y42{bottom:878.550000px;}
.y65{bottom:884.670000px;}
.y10{bottom:895.110000px;}
.y41{bottom:896.550000px;}
.y64{bottom:901.950000px;}
.yf{bottom:912.390000px;}
.y40{bottom:914.550000px;}
.y63{bottom:919.230000px;}
.ye{bottom:930.210000px;}
.y3f{bottom:932.550000px;}
.y62{bottom:936.510000px;}
.yd{bottom:950.910000px;}
.y3e{bottom:953.610000px;}
.y9{bottom:972.690000px;}
.y8{bottom:992.850000px;}
.y7{bottom:1010.130000px;}
.y6{bottom:1028.130000px;}
.y5{bottom:1044.870000px;}
.y4{bottom:1087.200000px;}
.y3{bottom:1107.180000px;}
.y2{bottom:1124.280000px;}
.y1{bottom:1141.560000px;}
.h9{height:17.100000px;}
.h8{height:17.280000px;}
.h6{height:37.705078px;}
.h1{height:41.726953px;}
.h4{height:42.164648px;}
.h7{height:43.506914px;}
.h2{height:50.273438px;}
.h3{height:50.800781px;}
.h5{height:60.855469px;}
.h0{height:1188.000000px;}
.w3{width:37.980000px;}
.w2{width:56.376000px;}
.w5{width:72.756000px;}
.w4{width:90.000000px;}
.wa{width:93.456000px;}
.w9{width:110.160000px;}
.w8{width:120.636000px;}
.w6{width:160.920000px;}
.w7{width:171.930000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x13{left:7.740000px;}
.x8{left:108.035986px;}
.x2{left:120.635986px;}
.xf{left:135.035986px;}
.x1{left:141.695986px;}
.x9{left:160.229986px;}
.x10{left:162.029986px;}
.x5{left:180.569986px;}
.x19{left:209.910000px;}
.x12{left:248.610000px;}
.x1f{left:256.169986px;}
.x14{left:305.715000px;}
.x1c{left:339.014986px;}
.x15{left:344.415000px;}
.xc{left:353.954986px;}
.xa{left:359.534986px;}
.x11{left:360.974986px;}
.x18{left:383.474986px;}
.xb{left:385.634986px;}
.xd{left:387.614986px;}
.xe{left:392.114986px;}
.x7{left:398.774986px;}
.x20{left:408.134986px;}
.x6{left:424.874986px;}
.x16{left:435.135000px;}
.x3{left:459.074986px;}
.x1d{left:486.104986px;}
.x1a{left:503.925000px;}
.x17{left:508.605000px;}
.x4{left:531.104986px;}
.x1b{left:614.805000px;}
.x1e{left:802.229986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.047360pt;}
.ls2{letter-spacing:0.106240pt;}
.ls1{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.ls8{letter-spacing:40.891307pt;}
.ls4{letter-spacing:56.891307pt;}
.ls3{letter-spacing:566.080000pt;}
.ws3{word-spacing:-53.120000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.545600pt;}
.ws0{word-spacing:-13.280000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws5{word-spacing:0.000000pt;}
._0{margin-left:-7.011840pt;}
._4{margin-left:-6.008960pt;}
._b{margin-left:-4.936320pt;}
._7{margin-left:-3.456000pt;}
._a{margin-left:-2.206080pt;}
._2{margin-left:-1.159040pt;}
._1{width:1.147307pt;}
._8{width:2.179627pt;}
._3{width:3.093547pt;}
._6{width:4.000000pt;}
._9{width:5.529813pt;}
._c{width:6.639360pt;}
._d{width:8.460160pt;}
._5{width:120.997333pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y37{bottom:2.880000pt;}
.yc{bottom:33.120000pt;}
.yb{bottom:50.720000pt;}
.ya{bottom:64.512000pt;}
.y3d{bottom:110.432000pt;}
.y3c{bottom:125.792000pt;}
.y61{bottom:140.826667pt;}
.y3b{bottom:140.986667pt;}
.y60{bottom:156.186667pt;}
.y3a{bottom:156.346667pt;}
.y39{bottom:169.466667pt;}
.y5f{bottom:171.386667pt;}
.y38{bottom:185.466667pt;}
.y5e{bottom:186.746667pt;}
.y36{bottom:201.466667pt;}
.y5d{bottom:202.106667pt;}
.y5c{bottom:217.466667pt;}
.y35{bottom:220.346667pt;}
.y5b{bottom:232.826667pt;}
.y34{bottom:235.706667pt;}
.y5a{bottom:248.186667pt;}
.y33{bottom:251.066667pt;}
.y59{bottom:263.386667pt;}
.y32{bottom:266.426667pt;}
.y4a{bottom:269.466667pt;}
.y58{bottom:278.746667pt;}
.y31{bottom:281.826667pt;}
.y49{bottom:284.866667pt;}
.y57{bottom:294.146667pt;}
.y30{bottom:297.026667pt;}
.y56{bottom:309.506667pt;}
.y2f{bottom:312.386667pt;}
.y55{bottom:324.866667pt;}
.y2e{bottom:327.746667pt;}
.y54{bottom:341.026667pt;}
.y2d{bottom:343.106667pt;}
.y53{bottom:357.346667pt;}
.y2c{bottom:359.426667pt;}
.y52{bottom:372.706667pt;}
.y2b{bottom:375.586667pt;}
.y51{bottom:389.026667pt;}
.y2a{bottom:391.906667pt;}
.y50{bottom:404.386667pt;}
.y29{bottom:407.266667pt;}
.y4f{bottom:419.746667pt;}
.y28{bottom:423.586667pt;}
.y4e{bottom:434.946667pt;}
.y27{bottom:438.946667pt;}
.y4d{bottom:450.306667pt;}
.y26{bottom:454.306667pt;}
.y4c{bottom:465.666667pt;}
.y25{bottom:469.506667pt;}
.y4b{bottom:478.146667pt;}
.y24{bottom:484.866667pt;}
.y23{bottom:500.226667pt;}
.y22{bottom:515.613333pt;}
.y21{bottom:530.973333pt;}
.y20{bottom:546.173333pt;}
.y1f{bottom:561.533333pt;}
.y1e{bottom:576.893333pt;}
.y1d{bottom:594.173333pt;}
.y1c{bottom:609.533333pt;}
.y1b{bottom:624.893333pt;}
.y1a{bottom:640.253333pt;}
.y19{bottom:655.613333pt;}
.y18{bottom:670.973333pt;}
.y48{bottom:672.093333pt;}
.y17{bottom:686.173333pt;}
.y47{bottom:687.453333pt;}
.y6b{bottom:694.333333pt;}
.y16{bottom:701.533333pt;}
.y46{bottom:703.773333pt;}
.y6a{bottom:709.693333pt;}
.y15{bottom:716.893333pt;}
.y45{bottom:720.093333pt;}
.y69{bottom:725.053333pt;}
.y14{bottom:734.213333pt;}
.y44{bottom:736.453333pt;}
.y68{bottom:740.453333pt;}
.y13{bottom:749.573333pt;}
.y43{bottom:751.813333pt;}
.y67{bottom:755.813333pt;}
.y12{bottom:764.933333pt;}
.y66{bottom:771.013333pt;}
.y11{bottom:780.293333pt;}
.y42{bottom:780.933333pt;}
.y65{bottom:786.373333pt;}
.y10{bottom:795.653333pt;}
.y41{bottom:796.933333pt;}
.y64{bottom:801.733333pt;}
.yf{bottom:811.013333pt;}
.y40{bottom:812.933333pt;}
.y63{bottom:817.093333pt;}
.ye{bottom:826.853333pt;}
.y3f{bottom:828.933333pt;}
.y62{bottom:832.453333pt;}
.yd{bottom:845.253333pt;}
.y3e{bottom:847.653333pt;}
.y9{bottom:864.613333pt;}
.y8{bottom:882.533333pt;}
.y7{bottom:897.893333pt;}
.y6{bottom:913.893333pt;}
.y5{bottom:928.773333pt;}
.y4{bottom:966.400000pt;}
.y3{bottom:984.160000pt;}
.y2{bottom:999.360000pt;}
.y1{bottom:1014.720000pt;}
.h9{height:15.200000pt;}
.h8{height:15.360000pt;}
.h6{height:33.515625pt;}
.h1{height:37.090625pt;}
.h4{height:37.479688pt;}
.h7{height:38.672812pt;}
.h2{height:44.687500pt;}
.h3{height:45.156250pt;}
.h5{height:54.093750pt;}
.h0{height:1056.000000pt;}
.w3{width:33.760000pt;}
.w2{width:50.112000pt;}
.w5{width:64.672000pt;}
.w4{width:80.000000pt;}
.wa{width:83.072000pt;}
.w9{width:97.920000pt;}
.w8{width:107.232000pt;}
.w6{width:143.040000pt;}
.w7{width:152.826667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x13{left:6.880000pt;}
.x8{left:96.031988pt;}
.x2{left:107.231988pt;}
.xf{left:120.031988pt;}
.x1{left:125.951988pt;}
.x9{left:142.426655pt;}
.x10{left:144.026655pt;}
.x5{left:160.506655pt;}
.x19{left:186.586667pt;}
.x12{left:220.986667pt;}
.x1f{left:227.706655pt;}
.x14{left:271.746667pt;}
.x1c{left:301.346655pt;}
.x15{left:306.146667pt;}
.xc{left:314.626655pt;}
.xa{left:319.586655pt;}
.x11{left:320.866655pt;}
.x18{left:340.866655pt;}
.xb{left:342.786655pt;}
.xd{left:344.546655pt;}
.xe{left:348.546655pt;}
.x7{left:354.466655pt;}
.x20{left:362.786655pt;}
.x6{left:377.666655pt;}
.x16{left:386.786667pt;}
.x3{left:408.066655pt;}
.x1d{left:432.093321pt;}
.x1a{left:447.933333pt;}
.x17{left:452.093333pt;}
.x4{left:472.093321pt;}
.x1b{left:546.493333pt;}
.x1e{left:713.093321pt;}
}




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