
    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_c2e2b9db902666a20632b3b1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.143066;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_bacfa57172a7b5883cfe6c4c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.135254;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_f798e38b0db8f78fe82e563d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.918945;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_a67f7cb59d1a76ca089967e4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.967773;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;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.072000px;}
.ls1{letter-spacing:93.960000px;}
.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;}
}
.ws2{word-spacing:-62.640000px;}
.ws0{word-spacing:-53.256000px;}
.ws4{word-spacing:-25.056000px;}
.ws3{word-spacing:-22.824000px;}
.ws1{word-spacing:0.000000px;}
._6{margin-left:-2064.264000px;}
._4{margin-left:-5.880000px;}
._2{margin-left:-3.696000px;}
._1{margin-left:-2.688000px;}
._3{margin-left:-1.680000px;}
._0{width:1.464000px;}
._15{width:2.712000px;}
._d{width:3.888000px;}
._17{width:4.968000px;}
._13{width:6.048000px;}
._f{width:7.632000px;}
._14{width:8.640000px;}
._9{width:10.464000px;}
._a{width:11.712000px;}
._16{width:12.936000px;}
._18{width:14.304000px;}
._12{width:15.336000px;}
._11{width:16.488000px;}
._5{width:18.480000px;}
._10{width:20.016000px;}
._8{width:21.168000px;}
._e{width:24.840000px;}
._1a{width:26.424000px;}
._19{width:28.344000px;}
._b{width:30.312000px;}
._c{width:31.608000px;}
._1d{width:39.168000px;}
._1e{width:44.208000px;}
._1c{width:53.088000px;}
._1b{width:54.720000px;}
._7{width:1998.720000px;}
.fc3{color:rgb(3,192,255);}
.fc1{color:rgb(0,0,0);}
.fc2{color:rgb(0,0,10);}
.fc0{color:rgb(10,83,156);}
.fs3{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs7{font-size:78.000000px;}
.fs6{font-size:96.000000px;}
.fs1{font-size:168.000000px;}
.fs4{font-size:180.000000px;}
.fs0{font-size:288.000000px;}
.y0{bottom:0.000000px;}
.y7{bottom:0.042000px;}
.y8{bottom:10.291500px;}
.ye{bottom:68.641500px;}
.y37{bottom:138.991500px;}
.y6f{bottom:142.891500px;}
.y7d{bottom:145.291500px;}
.y4f{bottom:157.441500px;}
.y36{bottom:159.991500px;}
.y6e{bottom:163.891500px;}
.y7c{bottom:166.291500px;}
.y4e{bottom:178.441500px;}
.y35{bottom:180.991500px;}
.y6d{bottom:184.891500px;}
.y7b{bottom:187.291500px;}
.y4d{bottom:199.441500px;}
.y34{bottom:201.991500px;}
.y6c{bottom:205.891500px;}
.y7a{bottom:208.291500px;}
.y4c{bottom:220.441500px;}
.y33{bottom:222.991500px;}
.y6b{bottom:226.891500px;}
.y79{bottom:229.291500px;}
.y4b{bottom:241.441500px;}
.y32{bottom:243.991500px;}
.y78{bottom:250.291500px;}
.y4a{bottom:262.441500px;}
.y31{bottom:264.991500px;}
.y6a{bottom:268.891500px;}
.y49{bottom:283.891500px;}
.y30{bottom:285.991500px;}
.y69{bottom:289.891500px;}
.y2f{bottom:306.991500px;}
.y68{bottom:310.891500px;}
.y2e{bottom:327.991500px;}
.y48{bottom:330.241500px;}
.y67{bottom:331.891500px;}
.y2d{bottom:348.991500px;}
.y47{bottom:351.241500px;}
.y66{bottom:352.891500px;}
.y2c{bottom:369.991500px;}
.y46{bottom:372.241500px;}
.y65{bottom:373.891500px;}
.y2b{bottom:390.991500px;}
.y45{bottom:393.241500px;}
.y64{bottom:394.891500px;}
.y2a{bottom:411.991500px;}
.y44{bottom:414.241500px;}
.y63{bottom:415.891500px;}
.y43{bottom:435.241500px;}
.y62{bottom:436.891500px;}
.y29{bottom:453.991500px;}
.y61{bottom:457.891500px;}
.y28{bottom:474.991500px;}
.y27{bottom:495.991500px;}
.y60{bottom:499.891500px;}
.y77{bottom:503.491500px;}
.y26{bottom:516.991500px;}
.y5f{bottom:520.891500px;}
.y76{bottom:524.491500px;}
.y6{bottom:534.733500px;}
.y25{bottom:537.991500px;}
.y5e{bottom:541.891500px;}
.y75{bottom:545.491500px;}
.y24{bottom:558.991500px;}
.y5d{bottom:562.891500px;}
.y74{bottom:566.491500px;}
.y23{bottom:579.991500px;}
.y5{bottom:583.633500px;}
.y5c{bottom:583.891500px;}
.y73{bottom:587.491500px;}
.y5b{bottom:604.891500px;}
.y72{bottom:608.491500px;}
.y22{bottom:621.991500px;}
.y71{bottom:629.491500px;}
.y21{bottom:642.991500px;}
.y5a{bottom:646.891500px;}
.y70{bottom:650.491500px;}
.y20{bottom:663.991500px;}
.y59{bottom:667.891500px;}
.y4{bottom:681.733500px;}
.y1f{bottom:684.991500px;}
.y58{bottom:688.891500px;}
.y1e{bottom:705.991500px;}
.y57{bottom:709.891500px;}
.y1d{bottom:726.991500px;}
.y56{bottom:730.891500px;}
.y7e{bottom:743.083500px;}
.y1c{bottom:747.991500px;}
.y55{bottom:751.891500px;}
.y3{bottom:757.183500px;}
.y1b{bottom:768.991500px;}
.y1a{bottom:789.991500px;}
.y54{bottom:793.891500px;}
.y53{bottom:814.891500px;}
.y2{bottom:830.683500px;}
.y19{bottom:831.991500px;}
.y52{bottom:835.891500px;}
.y18{bottom:852.991500px;}
.y51{bottom:856.891500px;}
.y17{bottom:873.991500px;}
.y42{bottom:877.891500px;}
.y16{bottom:894.991500px;}
.y41{bottom:898.891500px;}
.yd{bottom:913.891500px;}
.y15{bottom:915.991500px;}
.y40{bottom:919.891500px;}
.y3f{bottom:940.891500px;}
.yc{bottom:944.041500px;}
.y1{bottom:948.133500px;}
.y14{bottom:957.991500px;}
.y3e{bottom:961.891500px;}
.yb{bottom:974.041500px;}
.y13{bottom:978.991500px;}
.y3d{bottom:982.891500px;}
.y12{bottom:999.991500px;}
.y3c{bottom:1003.891500px;}
.y11{bottom:1020.991500px;}
.y3b{bottom:1024.891500px;}
.y10{bottom:1041.991500px;}
.y50{bottom:1045.891500px;}
.ya{bottom:1062.841500px;}
.y3a{bottom:1066.891500px;}
.yf{bottom:1085.341500px;}
.y39{bottom:1087.891500px;}
.y38{bottom:1108.891500px;}
.y9{bottom:1192.891500px;}
.ha{height:54.703125px;}
.h7{height:61.198242px;}
.h5{height:66.761719px;}
.h9{height:72.325195px;}
.h8{height:89.015625px;}
.h3{height:155.777344px;}
.h6{height:166.904297px;}
.h2{height:267.046875px;}
.h4{height:1262.791500px;}
.h0{height:1262.834646px;}
.h1{height:1263.000000px;}
.w2{width:892.912500px;}
.w0{width:892.955906px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:53.250000px;}
.x5{left:115.500000px;}
.x8{left:127.800000px;}
.x2{left:132.900000px;}
.x3{left:240.450000px;}
.x6{left:270.900000px;}
.x4{left:276.750000px;}
.x1{left:708.450000px;}
.x9{left:770.850000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.064000pt;}
.ls1{letter-spacing:83.520000pt;}
.ws2{word-spacing:-55.680000pt;}
.ws0{word-spacing:-47.338667pt;}
.ws4{word-spacing:-22.272000pt;}
.ws3{word-spacing:-20.288000pt;}
.ws1{word-spacing:0.000000pt;}
._6{margin-left:-1834.901333pt;}
._4{margin-left:-5.226667pt;}
._2{margin-left:-3.285333pt;}
._1{margin-left:-2.389333pt;}
._3{margin-left:-1.493333pt;}
._0{width:1.301333pt;}
._15{width:2.410667pt;}
._d{width:3.456000pt;}
._17{width:4.416000pt;}
._13{width:5.376000pt;}
._f{width:6.784000pt;}
._14{width:7.680000pt;}
._9{width:9.301333pt;}
._a{width:10.410667pt;}
._16{width:11.498667pt;}
._18{width:12.714667pt;}
._12{width:13.632000pt;}
._11{width:14.656000pt;}
._5{width:16.426667pt;}
._10{width:17.792000pt;}
._8{width:18.816000pt;}
._e{width:22.080000pt;}
._1a{width:23.488000pt;}
._19{width:25.194667pt;}
._b{width:26.944000pt;}
._c{width:28.096000pt;}
._1d{width:34.816000pt;}
._1e{width:39.296000pt;}
._1c{width:47.189333pt;}
._1b{width:48.640000pt;}
._7{width:1776.640000pt;}
.fs3{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs7{font-size:69.333333pt;}
.fs6{font-size:85.333333pt;}
.fs1{font-size:149.333333pt;}
.fs4{font-size:160.000000pt;}
.fs0{font-size:256.000000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:0.037333pt;}
.y8{bottom:9.148000pt;}
.ye{bottom:61.014667pt;}
.y37{bottom:123.548000pt;}
.y6f{bottom:127.014667pt;}
.y7d{bottom:129.148000pt;}
.y4f{bottom:139.948000pt;}
.y36{bottom:142.214667pt;}
.y6e{bottom:145.681333pt;}
.y7c{bottom:147.814667pt;}
.y4e{bottom:158.614667pt;}
.y35{bottom:160.881333pt;}
.y6d{bottom:164.348000pt;}
.y7b{bottom:166.481333pt;}
.y4d{bottom:177.281333pt;}
.y34{bottom:179.548000pt;}
.y6c{bottom:183.014667pt;}
.y7a{bottom:185.148000pt;}
.y4c{bottom:195.948000pt;}
.y33{bottom:198.214667pt;}
.y6b{bottom:201.681333pt;}
.y79{bottom:203.814667pt;}
.y4b{bottom:214.614667pt;}
.y32{bottom:216.881333pt;}
.y78{bottom:222.481333pt;}
.y4a{bottom:233.281333pt;}
.y31{bottom:235.548000pt;}
.y6a{bottom:239.014667pt;}
.y49{bottom:252.348000pt;}
.y30{bottom:254.214667pt;}
.y69{bottom:257.681333pt;}
.y2f{bottom:272.881333pt;}
.y68{bottom:276.348000pt;}
.y2e{bottom:291.548000pt;}
.y48{bottom:293.548000pt;}
.y67{bottom:295.014667pt;}
.y2d{bottom:310.214667pt;}
.y47{bottom:312.214667pt;}
.y66{bottom:313.681333pt;}
.y2c{bottom:328.881333pt;}
.y46{bottom:330.881333pt;}
.y65{bottom:332.348000pt;}
.y2b{bottom:347.548000pt;}
.y45{bottom:349.548000pt;}
.y64{bottom:351.014667pt;}
.y2a{bottom:366.214667pt;}
.y44{bottom:368.214667pt;}
.y63{bottom:369.681333pt;}
.y43{bottom:386.881333pt;}
.y62{bottom:388.348000pt;}
.y29{bottom:403.548000pt;}
.y61{bottom:407.014667pt;}
.y28{bottom:422.214667pt;}
.y27{bottom:440.881333pt;}
.y60{bottom:444.348000pt;}
.y77{bottom:447.548000pt;}
.y26{bottom:459.548000pt;}
.y5f{bottom:463.014667pt;}
.y76{bottom:466.214667pt;}
.y6{bottom:475.318667pt;}
.y25{bottom:478.214667pt;}
.y5e{bottom:481.681333pt;}
.y75{bottom:484.881333pt;}
.y24{bottom:496.881333pt;}
.y5d{bottom:500.348000pt;}
.y74{bottom:503.548000pt;}
.y23{bottom:515.548000pt;}
.y5{bottom:518.785333pt;}
.y5c{bottom:519.014667pt;}
.y73{bottom:522.214667pt;}
.y5b{bottom:537.681333pt;}
.y72{bottom:540.881333pt;}
.y22{bottom:552.881333pt;}
.y71{bottom:559.548000pt;}
.y21{bottom:571.548000pt;}
.y5a{bottom:575.014667pt;}
.y70{bottom:578.214667pt;}
.y20{bottom:590.214667pt;}
.y59{bottom:593.681333pt;}
.y4{bottom:605.985333pt;}
.y1f{bottom:608.881333pt;}
.y58{bottom:612.348000pt;}
.y1e{bottom:627.548000pt;}
.y57{bottom:631.014667pt;}
.y1d{bottom:646.214667pt;}
.y56{bottom:649.681333pt;}
.y7e{bottom:660.518667pt;}
.y1c{bottom:664.881333pt;}
.y55{bottom:668.348000pt;}
.y3{bottom:673.052000pt;}
.y1b{bottom:683.548000pt;}
.y1a{bottom:702.214667pt;}
.y54{bottom:705.681333pt;}
.y53{bottom:724.348000pt;}
.y2{bottom:738.385333pt;}
.y19{bottom:739.548000pt;}
.y52{bottom:743.014667pt;}
.y18{bottom:758.214667pt;}
.y51{bottom:761.681333pt;}
.y17{bottom:776.881333pt;}
.y42{bottom:780.348000pt;}
.y16{bottom:795.548000pt;}
.y41{bottom:799.014667pt;}
.yd{bottom:812.348000pt;}
.y15{bottom:814.214667pt;}
.y40{bottom:817.681333pt;}
.y3f{bottom:836.348000pt;}
.yc{bottom:839.148000pt;}
.y1{bottom:842.785333pt;}
.y14{bottom:851.548000pt;}
.y3e{bottom:855.014667pt;}
.yb{bottom:865.814667pt;}
.y13{bottom:870.214667pt;}
.y3d{bottom:873.681333pt;}
.y12{bottom:888.881333pt;}
.y3c{bottom:892.348000pt;}
.y11{bottom:907.548000pt;}
.y3b{bottom:911.014667pt;}
.y10{bottom:926.214667pt;}
.y50{bottom:929.681333pt;}
.ya{bottom:944.748000pt;}
.y3a{bottom:948.348000pt;}
.yf{bottom:964.748000pt;}
.y39{bottom:967.014667pt;}
.y38{bottom:985.681333pt;}
.y9{bottom:1060.348000pt;}
.ha{height:48.625000pt;}
.h7{height:54.398438pt;}
.h5{height:59.343750pt;}
.h9{height:64.289062pt;}
.h8{height:79.125000pt;}
.h3{height:138.468750pt;}
.h6{height:148.359375pt;}
.h2{height:237.375000pt;}
.h4{height:1122.481333pt;}
.h0{height:1122.519685pt;}
.h1{height:1122.666667pt;}
.w2{width:793.700000pt;}
.w0{width:793.738583pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:47.333333pt;}
.x5{left:102.666667pt;}
.x8{left:113.600000pt;}
.x2{left:118.133333pt;}
.x3{left:213.733333pt;}
.x6{left:240.800000pt;}
.x4{left:246.000000pt;}
.x1{left:629.733333pt;}
.x9{left:685.200000pt;}
}




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