
    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_b9ff56e0409128030a1e95ac.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.201172;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_e7969fa593cca5d2e655a8a3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_ac26abec9d7d521063ace4f1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.172852;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_ecf53b99b417b3ba4cd28696.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.758789;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);}
.v1{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:29.520000px;}
.lsa{letter-spacing:-0.144000px;}
.ls7{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.022320px;}
.ls8{letter-spacing:0.072000px;}
.ls5{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.358560px;}
.ls9{letter-spacing:0.360000px;}
.lsb{letter-spacing:33.240000px;}
.ls2{letter-spacing:44.784000px;}
.ls0{letter-spacing:54.840000px;}
.ls6{letter-spacing:54.864000px;}
.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:-72.000000px;}
.ws3{word-spacing:-16.632000px;}
.ws6{word-spacing:-16.488000px;}
.ws7{word-spacing:-16.344000px;}
.ws0{word-spacing:-16.272000px;}
.ws5{word-spacing:-10.902240px;}
.ws2{word-spacing:-0.072000px;}
.ws4{word-spacing:0.000000px;}
._1{margin-left:-1.008000px;}
._0{width:1.164000px;}
._2{width:2.184000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.240000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y75{bottom:117.936000px;}
.y2b{bottom:122.616000px;}
.y74{bottom:139.896000px;}
.y2a{bottom:144.576000px;}
.y73{bottom:161.850000px;}
.y4e{bottom:166.530000px;}
.y29{bottom:166.710000px;}
.y72{bottom:183.810000px;}
.y4d{bottom:188.490000px;}
.y28{bottom:189.570000px;}
.y71{bottom:205.770000px;}
.y4c{bottom:210.630000px;}
.y27{bottom:212.430000px;}
.y70{bottom:227.730000px;}
.y4b{bottom:232.590000px;}
.y26{bottom:235.470000px;}
.y6f{bottom:249.690000px;}
.y4a{bottom:254.550000px;}
.y25{bottom:257.430000px;}
.y6e{bottom:271.650000px;}
.y49{bottom:276.510000px;}
.y24{bottom:280.290000px;}
.y6d{bottom:293.790000px;}
.y48{bottom:299.370000px;}
.y23{bottom:302.250000px;}
.y6c{bottom:315.750000px;}
.y47{bottom:322.455000px;}
.y22{bottom:325.155000px;}
.y6b{bottom:337.755000px;}
.y46{bottom:344.415000px;}
.y21{bottom:347.295000px;}
.y6a{bottom:359.715000px;}
.y45{bottom:367.275000px;}
.y20{bottom:369.255000px;}
.y69{bottom:381.675000px;}
.y44{bottom:390.135000px;}
.y1f{bottom:391.215000px;}
.y68{bottom:403.635000px;}
.y43{bottom:412.275000px;}
.y1e{bottom:413.175000px;}
.y67{bottom:425.595000px;}
.y1d{bottom:435.135000px;}
.y66{bottom:447.555000px;}
.y1c{bottom:457.095000px;}
.y42{bottom:457.995000px;}
.y65{bottom:469.515000px;}
.y1b{bottom:479.055000px;}
.y41{bottom:480.135000px;}
.y64{bottom:491.475000px;}
.y1a{bottom:501.015000px;}
.y40{bottom:502.995000px;}
.y63{bottom:513.435000px;}
.y19{bottom:524.055000px;}
.y3f{bottom:524.955000px;}
.y62{bottom:535.395000px;}
.y18{bottom:546.915000px;}
.y61{bottom:557.355000px;}
.y3e{bottom:569.805000px;}
.y17{bottom:569.985000px;}
.y60{bottom:579.345000px;}
.y3d{bottom:591.765000px;}
.y16{bottom:592.845000px;}
.y5f{bottom:601.485000px;}
.y3c{bottom:613.725000px;}
.y15{bottom:615.705000px;}
.y5e{bottom:623.445000px;}
.y3b{bottom:635.685000px;}
.y14{bottom:638.565000px;}
.y5d{bottom:645.405000px;}
.y3a{bottom:657.825000px;}
.y13{bottom:660.705000px;}
.y5c{bottom:667.365000px;}
.y39{bottom:679.785000px;}
.y12{bottom:683.565000px;}
.y5b{bottom:689.325000px;}
.y38{bottom:702.645000px;}
.y11{bottom:706.605000px;}
.y5a{bottom:711.285000px;}
.y37{bottom:725.685000px;}
.y10{bottom:729.465000px;}
.y59{bottom:733.245000px;}
.y36{bottom:748.545000px;}
.yf{bottom:751.425000px;}
.y58{bottom:755.205000px;}
.y35{bottom:770.505000px;}
.ye{bottom:774.285000px;}
.y57{bottom:777.165000px;}
.y34{bottom:792.465000px;}
.yd{bottom:796.245000px;}
.y56{bottom:799.125000px;}
.y33{bottom:814.425000px;}
.yc{bottom:818.205000px;}
.y55{bottom:821.130000px;}
.y32{bottom:837.330000px;}
.yb{bottom:840.210000px;}
.y54{bottom:843.090000px;}
.y31{bottom:859.470000px;}
.ya{bottom:862.350000px;}
.y53{bottom:865.050000px;}
.y30{bottom:882.330000px;}
.y9{bottom:885.210000px;}
.y52{bottom:887.010000px;}
.y2f{bottom:905.370000px;}
.y8{bottom:907.170000px;}
.y51{bottom:909.150000px;}
.y2e{bottom:928.230000px;}
.y7{bottom:929.130000px;}
.y50{bottom:931.110000px;}
.y2d{bottom:951.090000px;}
.y6{bottom:952.170000px;}
.y4f{bottom:953.070000px;}
.y2c{bottom:974.130000px;}
.y5{bottom:975.030000px;}
.y4{bottom:996.990000px;}
.y3{bottom:1018.950000px;}
.y2{bottom:1040.910000px;}
.y1{bottom:1062.870000px;}
.h2{height:71.613281px;}
.h3{height:71.740898px;}
.h1{height:73.722656px;}
.h0{height:1188.000000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:108.035986px;}
.x2{left:135.035986px;}
.x3{left:162.029986px;}
.x4{left:189.029986px;}
.x5{left:243.029986px;}
@media print{
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:26.240000pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.019840pt;}
.ls8{letter-spacing:0.064000pt;}
.ls5{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.318720pt;}
.ls9{letter-spacing:0.320000pt;}
.lsb{letter-spacing:29.546667pt;}
.ls2{letter-spacing:39.808000pt;}
.ls0{letter-spacing:48.746667pt;}
.ls6{letter-spacing:48.768000pt;}
.ws1{word-spacing:-64.000000pt;}
.ws3{word-spacing:-14.784000pt;}
.ws6{word-spacing:-14.656000pt;}
.ws7{word-spacing:-14.528000pt;}
.ws0{word-spacing:-14.464000pt;}
.ws5{word-spacing:-9.690880pt;}
.ws2{word-spacing:-0.064000pt;}
.ws4{word-spacing:0.000000pt;}
._1{margin-left:-0.896000pt;}
._0{width:1.034667pt;}
._2{width:1.941333pt;}
.fs1{font-size:42.880000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y75{bottom:104.832000pt;}
.y2b{bottom:108.992000pt;}
.y74{bottom:124.352000pt;}
.y2a{bottom:128.512000pt;}
.y73{bottom:143.866667pt;}
.y4e{bottom:148.026667pt;}
.y29{bottom:148.186667pt;}
.y72{bottom:163.386667pt;}
.y4d{bottom:167.546667pt;}
.y28{bottom:168.506667pt;}
.y71{bottom:182.906667pt;}
.y4c{bottom:187.226667pt;}
.y27{bottom:188.826667pt;}
.y70{bottom:202.426667pt;}
.y4b{bottom:206.746667pt;}
.y26{bottom:209.306667pt;}
.y6f{bottom:221.946667pt;}
.y4a{bottom:226.266667pt;}
.y25{bottom:228.826667pt;}
.y6e{bottom:241.466667pt;}
.y49{bottom:245.786667pt;}
.y24{bottom:249.146667pt;}
.y6d{bottom:261.146667pt;}
.y48{bottom:266.106667pt;}
.y23{bottom:268.666667pt;}
.y6c{bottom:280.666667pt;}
.y47{bottom:286.626667pt;}
.y22{bottom:289.026667pt;}
.y6b{bottom:300.226667pt;}
.y46{bottom:306.146667pt;}
.y21{bottom:308.706667pt;}
.y6a{bottom:319.746667pt;}
.y45{bottom:326.466667pt;}
.y20{bottom:328.226667pt;}
.y69{bottom:339.266667pt;}
.y44{bottom:346.786667pt;}
.y1f{bottom:347.746667pt;}
.y68{bottom:358.786667pt;}
.y43{bottom:366.466667pt;}
.y1e{bottom:367.266667pt;}
.y67{bottom:378.306667pt;}
.y1d{bottom:386.786667pt;}
.y66{bottom:397.826667pt;}
.y1c{bottom:406.306667pt;}
.y42{bottom:407.106667pt;}
.y65{bottom:417.346667pt;}
.y1b{bottom:425.826667pt;}
.y41{bottom:426.786667pt;}
.y64{bottom:436.866667pt;}
.y1a{bottom:445.346667pt;}
.y40{bottom:447.106667pt;}
.y63{bottom:456.386667pt;}
.y19{bottom:465.826667pt;}
.y3f{bottom:466.626667pt;}
.y62{bottom:475.906667pt;}
.y18{bottom:486.146667pt;}
.y61{bottom:495.426667pt;}
.y3e{bottom:506.493333pt;}
.y17{bottom:506.653333pt;}
.y60{bottom:514.973333pt;}
.y3d{bottom:526.013333pt;}
.y16{bottom:526.973333pt;}
.y5f{bottom:534.653333pt;}
.y3c{bottom:545.533333pt;}
.y15{bottom:547.293333pt;}
.y5e{bottom:554.173333pt;}
.y3b{bottom:565.053333pt;}
.y14{bottom:567.613333pt;}
.y5d{bottom:573.693333pt;}
.y3a{bottom:584.733333pt;}
.y13{bottom:587.293333pt;}
.y5c{bottom:593.213333pt;}
.y39{bottom:604.253333pt;}
.y12{bottom:607.613333pt;}
.y5b{bottom:612.733333pt;}
.y38{bottom:624.573333pt;}
.y11{bottom:628.093333pt;}
.y5a{bottom:632.253333pt;}
.y37{bottom:645.053333pt;}
.y10{bottom:648.413333pt;}
.y59{bottom:651.773333pt;}
.y36{bottom:665.373333pt;}
.yf{bottom:667.933333pt;}
.y58{bottom:671.293333pt;}
.y35{bottom:684.893333pt;}
.ye{bottom:688.253333pt;}
.y57{bottom:690.813333pt;}
.y34{bottom:704.413333pt;}
.yd{bottom:707.773333pt;}
.y56{bottom:710.333333pt;}
.y33{bottom:723.933333pt;}
.yc{bottom:727.293333pt;}
.y55{bottom:729.893333pt;}
.y32{bottom:744.293333pt;}
.yb{bottom:746.853333pt;}
.y54{bottom:749.413333pt;}
.y31{bottom:763.973333pt;}
.ya{bottom:766.533333pt;}
.y53{bottom:768.933333pt;}
.y30{bottom:784.293333pt;}
.y9{bottom:786.853333pt;}
.y52{bottom:788.453333pt;}
.y2f{bottom:804.773333pt;}
.y8{bottom:806.373333pt;}
.y51{bottom:808.133333pt;}
.y2e{bottom:825.093333pt;}
.y7{bottom:825.893333pt;}
.y50{bottom:827.653333pt;}
.y2d{bottom:845.413333pt;}
.y6{bottom:846.373333pt;}
.y4f{bottom:847.173333pt;}
.y2c{bottom:865.893333pt;}
.y5{bottom:866.693333pt;}
.y4{bottom:886.213333pt;}
.y3{bottom:905.733333pt;}
.y2{bottom:925.253333pt;}
.y1{bottom:944.773333pt;}
.h2{height:63.656250pt;}
.h3{height:63.769687pt;}
.h1{height:65.531250pt;}
.h0{height:1056.000000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.031988pt;}
.x2{left:120.031988pt;}
.x3{left:144.026655pt;}
.x4{left:168.026655pt;}
.x5{left:216.026655pt;}
}




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