
    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_f64c6eb1a8bcecd426c60752.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.120605;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_dbbd407ca2a1c940b3249d7d.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_79fa23418677db35f8466b7f.woff2')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_666b9f19cf69bf0b27b8e38b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_84b6dba8bc72c06dd395f216.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_e5471692d4fdaf2f48076ad8.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_05c6efd5e90e981fc709fe04.woff2')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_7fb5ba517b59ca02c978fbf8.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff9{font-family:ff9;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;}
.lsb{letter-spacing:-0.936000px;}
.ls5{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.216000px;}
.lsd{letter-spacing:-0.144000px;}
.lsf{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.072000px;}
.ls1{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.149760px;}
.ls8{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.256200px;}
.lsa{letter-spacing:0.504000px;}
.lsc{letter-spacing:0.576000px;}
.ls3{letter-spacing:0.720000px;}
.ls6{letter-spacing:33.960000px;}
.ls7{letter-spacing:38.304000px;}
.lse{letter-spacing:846.120000px;}
.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:-72.720000px;}
.ws3{word-spacing:-72.000000px;}
.ws9{word-spacing:-18.576000px;}
.ws6{word-spacing:-18.144000px;}
.ws2{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.928000px;}
.wsa{word-spacing:-17.856000px;}
.ws5{word-spacing:-17.784000px;}
.ws7{word-spacing:-17.712000px;}
.ws8{word-spacing:-15.226440px;}
.ws1{word-spacing:0.000000px;}
._1{margin-left:-4.043520px;}
._0{margin-left:-2.948400px;}
._2{margin-left:-1.599360px;}
._3{width:1.167360px;}
._6{width:2.271360px;}
._5{width:197.976000px;}
._4{width:846.156000px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:transparent;}
.fc1{color:rgb(5,99,193);}
.fc2{color:rgb(68,84,106);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y3b{bottom:24.654000px;}
.y38{bottom:24.660000px;}
.y2{bottom:58.320000px;}
.y1{bottom:78.516000px;}
.y7d{bottom:122.076000px;}
.y3a{bottom:126.216000px;}
.y72{bottom:133.416000px;}
.y32{bottom:148.716000px;}
.y5e{bottom:150.150000px;}
.y52{bottom:150.870000px;}
.y28{bottom:152.310000px;}
.y36{bottom:163.470000px;}
.y39{bottom:167.610000px;}
.y71{bottom:174.810000px;}
.y6b{bottom:181.110000px;}
.y31{bottom:190.110000px;}
.y5d{bottom:191.550000px;}
.y51{bottom:192.270000px;}
.y27{bottom:193.710000px;}
.y7c{bottom:204.870000px;}
.y37{bottom:209.730000px;}
.y6a{bottom:215.490000px;}
.y70{bottom:216.210000px;}
.y35{bottom:219.990000px;}
.y30{bottom:231.510000px;}
.y5c{bottom:232.950000px;}
.y50{bottom:233.670000px;}
.y26{bottom:235.110000px;}
.y69{bottom:237.810000px;}
.y7b{bottom:246.270000px;}
.y6f{bottom:257.610000px;}
.y68{bottom:260.130000px;}
.y34{bottom:261.390000px;}
.y2f{bottom:272.910000px;}
.y5b{bottom:274.350000px;}
.y4f{bottom:275.070000px;}
.y25{bottom:276.510000px;}
.y67{bottom:282.450000px;}
.y33{bottom:298.650000px;}
.y6e{bottom:299.010000px;}
.y7a{bottom:302.790000px;}
.y66{bottom:304.950000px;}
.y2e{bottom:314.310000px;}
.y5a{bottom:315.750000px;}
.y4e{bottom:316.470000px;}
.y24{bottom:317.955000px;}
.y65{bottom:327.315000px;}
.y59{bottom:333.255000px;}
.y6d{bottom:340.455000px;}
.y79{bottom:344.235000px;}
.y64{bottom:349.635000px;}
.y2d{bottom:355.755000px;}
.y4d{bottom:357.915000px;}
.y23{bottom:359.355000px;}
.y63{bottom:371.955000px;}
.y58{bottom:374.655000px;}
.y6c{bottom:377.895000px;}
.y78{bottom:385.635000px;}
.y62{bottom:394.275000px;}
.y2c{bottom:397.155000px;}
.y4c{bottom:399.315000px;}
.y22{bottom:400.755000px;}
.y57{bottom:416.055000px;}
.y61{bottom:416.595000px;}
.y77{bottom:426.855000px;}
.y2b{bottom:438.555000px;}
.y60{bottom:438.915000px;}
.y4b{bottom:440.715000px;}
.y21{bottom:442.155000px;}
.y56{bottom:457.455000px;}
.y5f{bottom:461.235000px;}
.y76{bottom:468.255000px;}
.y2a{bottom:479.955000px;}
.y4a{bottom:482.115000px;}
.y20{bottom:483.555000px;}
.y11{bottom:486.435000px;}
.y55{bottom:498.855000px;}
.y75{bottom:509.655000px;}
.y29{bottom:517.395000px;}
.y10{bottom:521.175000px;}
.y49{bottom:523.515000px;}
.y1f{bottom:524.955000px;}
.y54{bottom:540.255000px;}
.y74{bottom:551.055000px;}
.yf{bottom:561.495000px;}
.y48{bottom:564.915000px;}
.y1e{bottom:566.355000px;}
.y53{bottom:582.405000px;}
.y73{bottom:588.525000px;}
.ye{bottom:602.925000px;}
.y47{bottom:606.345000px;}
.y1d{bottom:607.785000px;}
.yd{bottom:644.325000px;}
.y46{bottom:647.745000px;}
.y1c{bottom:649.185000px;}
.yc{bottom:685.725000px;}
.y45{bottom:689.145000px;}
.y1b{bottom:690.585000px;}
.yb{bottom:727.125000px;}
.y44{bottom:730.545000px;}
.y1a{bottom:731.985000px;}
.ya{bottom:768.525000px;}
.y43{bottom:771.945000px;}
.y19{bottom:773.385000px;}
.y9{bottom:809.925000px;}
.y42{bottom:813.345000px;}
.y18{bottom:814.785000px;}
.y8{bottom:851.370000px;}
.y41{bottom:854.790000px;}
.y17{bottom:856.230000px;}
.y40{bottom:872.250000px;}
.y7{bottom:892.770000px;}
.y16{bottom:897.630000px;}
.y3f{bottom:914.370000px;}
.y6{bottom:934.170000px;}
.y15{bottom:939.030000px;}
.y3e{bottom:955.770000px;}
.y5{bottom:967.830000px;}
.y14{bottom:980.430000px;}
.y3d{bottom:997.170000px;}
.y4{bottom:1012.110000px;}
.y13{bottom:1021.830000px;}
.y3c{bottom:1038.570000px;}
.y3{bottom:1060.350000px;}
.y12{bottom:1063.230000px;}
.h8{height:41.400000px;}
.h9{height:41.436000px;}
.h3{height:47.901094px;}
.h6{height:50.800781px;}
.h4{height:52.066406px;}
.h7{height:52.171875px;}
.h5{height:59.343750px;}
.h2{height:59.436914px;}
.h1{height:65.884219px;}
.h0{height:1188.000000px;}
.w7{width:104.760000px;}
.w3{width:114.840000px;}
.w2{width:128.196000px;}
.w8{width:152.850000px;}
.w5{width:155.190000px;}
.w4{width:162.030000px;}
.w6{width:179.130000px;}
.w9{width:183.990000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x6{left:8.100000px;}
.x2{left:108.035986px;}
.xa{left:135.035986px;}
.x12{left:143.675986px;}
.xe{left:148.716000px;}
.x3{left:162.029986px;}
.x5{left:178.950000px;}
.xb{left:189.029986px;}
.xc{left:216.029986px;}
.x7{left:307.155000px;}
.xf{left:327.855000px;}
.x8{left:421.995000px;}
.x10{left:432.615000px;}
.x9{left:584.025000px;}
.x11{left:585.465000px;}
.xd{left:793.409986px;}
.x1{left:801.869986px;}
.x4{left:810.149986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-0.832000pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.192000pt;}
.lsd{letter-spacing:-0.128000pt;}
.lsf{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.064000pt;}
.ls1{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.133120pt;}
.ls8{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.227733pt;}
.lsa{letter-spacing:0.448000pt;}
.lsc{letter-spacing:0.512000pt;}
.ls3{letter-spacing:0.640000pt;}
.ls6{letter-spacing:30.186667pt;}
.ls7{letter-spacing:34.048000pt;}
.lse{letter-spacing:752.106667pt;}
.ws4{word-spacing:-64.640000pt;}
.ws3{word-spacing:-64.000000pt;}
.ws9{word-spacing:-16.512000pt;}
.ws6{word-spacing:-16.128000pt;}
.ws2{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.936000pt;}
.wsa{word-spacing:-15.872000pt;}
.ws5{word-spacing:-15.808000pt;}
.ws7{word-spacing:-15.744000pt;}
.ws8{word-spacing:-13.534613pt;}
.ws1{word-spacing:0.000000pt;}
._1{margin-left:-3.594240pt;}
._0{margin-left:-2.620800pt;}
._2{margin-left:-1.421653pt;}
._3{width:1.037653pt;}
._6{width:2.018987pt;}
._5{width:175.978667pt;}
._4{width:752.138667pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y3b{bottom:21.914667pt;}
.y38{bottom:21.920000pt;}
.y2{bottom:51.840000pt;}
.y1{bottom:69.792000pt;}
.y7d{bottom:108.512000pt;}
.y3a{bottom:112.192000pt;}
.y72{bottom:118.592000pt;}
.y32{bottom:132.192000pt;}
.y5e{bottom:133.466667pt;}
.y52{bottom:134.106667pt;}
.y28{bottom:135.386667pt;}
.y36{bottom:145.306667pt;}
.y39{bottom:148.986667pt;}
.y71{bottom:155.386667pt;}
.y6b{bottom:160.986667pt;}
.y31{bottom:168.986667pt;}
.y5d{bottom:170.266667pt;}
.y51{bottom:170.906667pt;}
.y27{bottom:172.186667pt;}
.y7c{bottom:182.106667pt;}
.y37{bottom:186.426667pt;}
.y6a{bottom:191.546667pt;}
.y70{bottom:192.186667pt;}
.y35{bottom:195.546667pt;}
.y30{bottom:205.786667pt;}
.y5c{bottom:207.066667pt;}
.y50{bottom:207.706667pt;}
.y26{bottom:208.986667pt;}
.y69{bottom:211.386667pt;}
.y7b{bottom:218.906667pt;}
.y6f{bottom:228.986667pt;}
.y68{bottom:231.226667pt;}
.y34{bottom:232.346667pt;}
.y2f{bottom:242.586667pt;}
.y5b{bottom:243.866667pt;}
.y4f{bottom:244.506667pt;}
.y25{bottom:245.786667pt;}
.y67{bottom:251.066667pt;}
.y33{bottom:265.466667pt;}
.y6e{bottom:265.786667pt;}
.y7a{bottom:269.146667pt;}
.y66{bottom:271.066667pt;}
.y2e{bottom:279.386667pt;}
.y5a{bottom:280.666667pt;}
.y4e{bottom:281.306667pt;}
.y24{bottom:282.626667pt;}
.y65{bottom:290.946667pt;}
.y59{bottom:296.226667pt;}
.y6d{bottom:302.626667pt;}
.y79{bottom:305.986667pt;}
.y64{bottom:310.786667pt;}
.y2d{bottom:316.226667pt;}
.y4d{bottom:318.146667pt;}
.y23{bottom:319.426667pt;}
.y63{bottom:330.626667pt;}
.y58{bottom:333.026667pt;}
.y6c{bottom:335.906667pt;}
.y78{bottom:342.786667pt;}
.y62{bottom:350.466667pt;}
.y2c{bottom:353.026667pt;}
.y4c{bottom:354.946667pt;}
.y22{bottom:356.226667pt;}
.y57{bottom:369.826667pt;}
.y61{bottom:370.306667pt;}
.y77{bottom:379.426667pt;}
.y2b{bottom:389.826667pt;}
.y60{bottom:390.146667pt;}
.y4b{bottom:391.746667pt;}
.y21{bottom:393.026667pt;}
.y56{bottom:406.626667pt;}
.y5f{bottom:409.986667pt;}
.y76{bottom:416.226667pt;}
.y2a{bottom:426.626667pt;}
.y4a{bottom:428.546667pt;}
.y20{bottom:429.826667pt;}
.y11{bottom:432.386667pt;}
.y55{bottom:443.426667pt;}
.y75{bottom:453.026667pt;}
.y29{bottom:459.906667pt;}
.y10{bottom:463.266667pt;}
.y49{bottom:465.346667pt;}
.y1f{bottom:466.626667pt;}
.y54{bottom:480.226667pt;}
.y74{bottom:489.826667pt;}
.yf{bottom:499.106667pt;}
.y48{bottom:502.146667pt;}
.y1e{bottom:503.426667pt;}
.y53{bottom:517.693333pt;}
.y73{bottom:523.133333pt;}
.ye{bottom:535.933333pt;}
.y47{bottom:538.973333pt;}
.y1d{bottom:540.253333pt;}
.yd{bottom:572.733333pt;}
.y46{bottom:575.773333pt;}
.y1c{bottom:577.053333pt;}
.yc{bottom:609.533333pt;}
.y45{bottom:612.573333pt;}
.y1b{bottom:613.853333pt;}
.yb{bottom:646.333333pt;}
.y44{bottom:649.373333pt;}
.y1a{bottom:650.653333pt;}
.ya{bottom:683.133333pt;}
.y43{bottom:686.173333pt;}
.y19{bottom:687.453333pt;}
.y9{bottom:719.933333pt;}
.y42{bottom:722.973333pt;}
.y18{bottom:724.253333pt;}
.y8{bottom:756.773333pt;}
.y41{bottom:759.813333pt;}
.y17{bottom:761.093333pt;}
.y40{bottom:775.333333pt;}
.y7{bottom:793.573333pt;}
.y16{bottom:797.893333pt;}
.y3f{bottom:812.773333pt;}
.y6{bottom:830.373333pt;}
.y15{bottom:834.693333pt;}
.y3e{bottom:849.573333pt;}
.y5{bottom:860.293333pt;}
.y14{bottom:871.493333pt;}
.y3d{bottom:886.373333pt;}
.y4{bottom:899.653333pt;}
.y13{bottom:908.293333pt;}
.y3c{bottom:923.173333pt;}
.y3{bottom:942.533333pt;}
.y12{bottom:945.093333pt;}
.h8{height:36.800000pt;}
.h9{height:36.832000pt;}
.h3{height:42.578750pt;}
.h6{height:45.156250pt;}
.h4{height:46.281250pt;}
.h7{height:46.375000pt;}
.h5{height:52.750000pt;}
.h2{height:52.832812pt;}
.h1{height:58.563750pt;}
.h0{height:1056.000000pt;}
.w7{width:93.120000pt;}
.w3{width:102.080000pt;}
.w2{width:113.952000pt;}
.w8{width:135.866667pt;}
.w5{width:137.946667pt;}
.w4{width:144.026667pt;}
.w6{width:159.226667pt;}
.w9{width:163.546667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x6{left:7.200000pt;}
.x2{left:96.031988pt;}
.xa{left:120.031988pt;}
.x12{left:127.711988pt;}
.xe{left:132.192000pt;}
.x3{left:144.026655pt;}
.x5{left:159.066667pt;}
.xb{left:168.026655pt;}
.xc{left:192.026655pt;}
.x7{left:273.026667pt;}
.xf{left:291.426667pt;}
.x8{left:375.106667pt;}
.x10{left:384.546667pt;}
.x9{left:519.133333pt;}
.x11{left:520.413333pt;}
.xd{left:705.253321pt;}
.x1{left:712.773321pt;}
.x4{left:720.133321pt;}
}




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