
    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_b663aaa5afa5cc154ed031a2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.575000;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_dbbd51fd2626dafaf4f00c17.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.281250;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_4aec0c439f687f45aee49ee5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.575000;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;}
.lsa{letter-spacing:-1.584000px;}
.lsb{letter-spacing:-1.518000px;}
.lsc{letter-spacing:-1.452000px;}
.ls1b{letter-spacing:-1.386000px;}
.ls13{letter-spacing:-1.188000px;}
.ls12{letter-spacing:-0.990000px;}
.ls1d{letter-spacing:-0.924000px;}
.ls1c{letter-spacing:-0.726000px;}
.ls1{letter-spacing:-0.720000px;}
.ls10{letter-spacing:-0.660000px;}
.lsd{letter-spacing:-0.462000px;}
.lse{letter-spacing:-0.396000px;}
.lsf{letter-spacing:-0.330000px;}
.ls1a{letter-spacing:-0.198000px;}
.ls11{letter-spacing:-0.132000px;}
.ls15{letter-spacing:-0.096000px;}
.ls9{letter-spacing:-0.066000px;}
.ls14{letter-spacing:-0.048000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.066000px;}
.ls7{letter-spacing:0.132000px;}
.ls2{letter-spacing:0.198000px;}
.ls4{letter-spacing:0.330000px;}
.ls19{letter-spacing:0.396000px;}
.ls8{letter-spacing:0.594000px;}
.ls17{letter-spacing:0.858000px;}
.ls18{letter-spacing:0.924000px;}
.ls3{letter-spacing:1.320000px;}
.ls16{letter-spacing:1.452000px;}
.ls6{letter-spacing:1.650000px;}
.ls1e{letter-spacing:1.716000px;}
.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;}
}
.wsc{word-spacing:-23.904000px;}
.ws26{word-spacing:-18.216000px;}
.ws27{word-spacing:-18.150000px;}
.ws25{word-spacing:-17.952000px;}
.ws3{word-spacing:-17.820000px;}
.ws8{word-spacing:-17.094000px;}
.ws29{word-spacing:-16.896000px;}
.ws28{word-spacing:-16.830000px;}
.ws7{word-spacing:-16.566000px;}
.ws2{word-spacing:-16.500000px;}
.ws4{word-spacing:-16.434000px;}
.ws9{word-spacing:-16.368000px;}
.ws6{word-spacing:-16.038000px;}
.ws24{word-spacing:-15.114000px;}
.ws5{word-spacing:-14.982000px;}
.wsb{word-spacing:-12.240000px;}
.wsa{word-spacing:-12.000000px;}
.ws1{word-spacing:-7.200000px;}
.wsd{word-spacing:-0.792000px;}
.ws1f{word-spacing:-0.726000px;}
.ws2b{word-spacing:-0.660000px;}
.ws19{word-spacing:-0.594000px;}
.ws1c{word-spacing:-0.528000px;}
.ws1b{word-spacing:-0.462000px;}
.ws18{word-spacing:-0.396000px;}
.ws33{word-spacing:-0.198000px;}
.ws1e{word-spacing:-0.132000px;}
.ws0{word-spacing:0.000000px;}
.ws1a{word-spacing:0.066000px;}
.ws20{word-spacing:0.132000px;}
.ws10{word-spacing:0.198000px;}
.ws2e{word-spacing:0.264000px;}
.wsf{word-spacing:0.330000px;}
.ws11{word-spacing:0.396000px;}
.ws23{word-spacing:0.462000px;}
.ws2d{word-spacing:0.528000px;}
.ws16{word-spacing:0.594000px;}
.ws14{word-spacing:0.660000px;}
.ws12{word-spacing:0.726000px;}
.ws2f{word-spacing:0.792000px;}
.ws22{word-spacing:1.056000px;}
.ws32{word-spacing:1.254000px;}
.ws13{word-spacing:1.320000px;}
.wse{word-spacing:1.386000px;}
.ws2c{word-spacing:1.452000px;}
.ws21{word-spacing:1.518000px;}
.ws15{word-spacing:1.584000px;}
.ws1d{word-spacing:1.650000px;}
.ws30{word-spacing:1.782000px;}
.ws17{word-spacing:3.102000px;}
.ws31{word-spacing:5.610000px;}
.ws2a{word-spacing:35.712000px;}
._5{margin-left:-6.534000px;}
._1{margin-left:-3.498000px;}
._0{margin-left:-1.518000px;}
._2{width:1.056000px;}
._3{width:2.376000px;}
._4{width:47.682000px;}
._6{width:1115.610000px;}
.fc1{color:transparent;}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs1{font-size:48.000000px;}
.fs2{font-size:66.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y23{bottom:53.962500px;}
.y22{bottom:71.205000px;}
.y21{bottom:88.447500px;}
.y4e{bottom:105.426000px;}
.y20{bottom:105.690000px;}
.y4d{bottom:122.668500px;}
.y1f{bottom:122.932500px;}
.y4c{bottom:139.911000px;}
.y1e{bottom:140.175000px;}
.y4b{bottom:157.153500px;}
.y1d{bottom:157.417500px;}
.y1c{bottom:174.660000px;}
.y4a{bottom:191.655000px;}
.y1b{bottom:191.902500px;}
.y49{bottom:208.897500px;}
.y1a{bottom:209.145000px;}
.y48{bottom:226.140000px;}
.y19{bottom:226.387500px;}
.y47{bottom:243.382500px;}
.y18{bottom:243.630000px;}
.y46{bottom:260.625000px;}
.y17{bottom:260.872500px;}
.y45{bottom:277.867500px;}
.y16{bottom:278.115000px;}
.y44{bottom:295.110000px;}
.y15{bottom:295.357500px;}
.y43{bottom:312.352500px;}
.y14{bottom:312.600000px;}
.y42{bottom:329.595000px;}
.y13{bottom:329.842500px;}
.y41{bottom:346.837500px;}
.y12{bottom:347.085000px;}
.y40{bottom:364.080000px;}
.y11{bottom:364.327500px;}
.y3f{bottom:381.322500px;}
.y10{bottom:381.570000px;}
.y3e{bottom:398.565000px;}
.yf{bottom:398.812500px;}
.y3d{bottom:415.807500px;}
.ye{bottom:416.055000px;}
.y3c{bottom:433.050000px;}
.yd{bottom:433.297500px;}
.y3b{bottom:450.292500px;}
.yc{bottom:450.540000px;}
.y3a{bottom:467.535000px;}
.yb{bottom:467.782500px;}
.y39{bottom:484.777500px;}
.ya{bottom:485.025000px;}
.y38{bottom:502.020000px;}
.y9{bottom:502.267500px;}
.y37{bottom:519.262500px;}
.y8{bottom:519.510000px;}
.y36{bottom:536.505000px;}
.y7{bottom:536.752500px;}
.y35{bottom:553.747500px;}
.y6{bottom:553.995000px;}
.y34{bottom:570.990000px;}
.y5{bottom:571.237500px;}
.y33{bottom:588.232500px;}
.y4{bottom:588.480000px;}
.y32{bottom:605.475000px;}
.y31{bottom:622.717500px;}
.y30{bottom:639.960000px;}
.y2f{bottom:657.202500px;}
.y2e{bottom:674.445000px;}
.y2d{bottom:691.687500px;}
.y2c{bottom:708.930000px;}
.y2b{bottom:726.172500px;}
.y2a{bottom:743.415000px;}
.y29{bottom:760.657500px;}
.y2{bottom:769.605000px;}
.y28{bottom:777.900000px;}
.y27{bottom:795.142500px;}
.y1{bottom:805.605000px;}
.y25{bottom:808.605000px;}
.y26{bottom:812.385000px;}
.y24{bottom:859.605000px;}
.y3{bottom:922.500000px;}
.h2{height:47.085938px;}
.h4{height:51.216000px;}
.h3{height:70.422000px;}
.h1{height:102.432000px;}
.h0{height:892.500000px;}
.w0{width:636.000000px;}
.x0{left:0.000000px;}
.x3{left:4.500000px;}
.x4{left:74.700000px;}
.x8{left:75.915000px;}
.x5{left:91.942500px;}
.x6{left:97.206000px;}
.x9{left:98.355000px;}
.xc{left:123.534000px;}
.x2{left:211.947000px;}
.x1{left:269.475000px;}
.xb{left:304.159500px;}
.xa{left:379.267500px;}
.x7{left:389.610000px;}
.xd{left:448.353000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-1.408000pt;}
.lsb{letter-spacing:-1.349333pt;}
.lsc{letter-spacing:-1.290667pt;}
.ls1b{letter-spacing:-1.232000pt;}
.ls13{letter-spacing:-1.056000pt;}
.ls12{letter-spacing:-0.880000pt;}
.ls1d{letter-spacing:-0.821333pt;}
.ls1c{letter-spacing:-0.645333pt;}
.ls1{letter-spacing:-0.640000pt;}
.ls10{letter-spacing:-0.586667pt;}
.lsd{letter-spacing:-0.410667pt;}
.lse{letter-spacing:-0.352000pt;}
.lsf{letter-spacing:-0.293333pt;}
.ls1a{letter-spacing:-0.176000pt;}
.ls11{letter-spacing:-0.117333pt;}
.ls15{letter-spacing:-0.085333pt;}
.ls9{letter-spacing:-0.058667pt;}
.ls14{letter-spacing:-0.042667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.058667pt;}
.ls7{letter-spacing:0.117333pt;}
.ls2{letter-spacing:0.176000pt;}
.ls4{letter-spacing:0.293333pt;}
.ls19{letter-spacing:0.352000pt;}
.ls8{letter-spacing:0.528000pt;}
.ls17{letter-spacing:0.762667pt;}
.ls18{letter-spacing:0.821333pt;}
.ls3{letter-spacing:1.173333pt;}
.ls16{letter-spacing:1.290667pt;}
.ls6{letter-spacing:1.466667pt;}
.ls1e{letter-spacing:1.525333pt;}
.wsc{word-spacing:-21.248000pt;}
.ws26{word-spacing:-16.192000pt;}
.ws27{word-spacing:-16.133333pt;}
.ws25{word-spacing:-15.957333pt;}
.ws3{word-spacing:-15.840000pt;}
.ws8{word-spacing:-15.194667pt;}
.ws29{word-spacing:-15.018667pt;}
.ws28{word-spacing:-14.960000pt;}
.ws7{word-spacing:-14.725333pt;}
.ws2{word-spacing:-14.666667pt;}
.ws4{word-spacing:-14.608000pt;}
.ws9{word-spacing:-14.549333pt;}
.ws6{word-spacing:-14.256000pt;}
.ws24{word-spacing:-13.434667pt;}
.ws5{word-spacing:-13.317333pt;}
.wsb{word-spacing:-10.880000pt;}
.wsa{word-spacing:-10.666667pt;}
.ws1{word-spacing:-6.400000pt;}
.wsd{word-spacing:-0.704000pt;}
.ws1f{word-spacing:-0.645333pt;}
.ws2b{word-spacing:-0.586667pt;}
.ws19{word-spacing:-0.528000pt;}
.ws1c{word-spacing:-0.469333pt;}
.ws1b{word-spacing:-0.410667pt;}
.ws18{word-spacing:-0.352000pt;}
.ws33{word-spacing:-0.176000pt;}
.ws1e{word-spacing:-0.117333pt;}
.ws0{word-spacing:0.000000pt;}
.ws1a{word-spacing:0.058667pt;}
.ws20{word-spacing:0.117333pt;}
.ws10{word-spacing:0.176000pt;}
.ws2e{word-spacing:0.234667pt;}
.wsf{word-spacing:0.293333pt;}
.ws11{word-spacing:0.352000pt;}
.ws23{word-spacing:0.410667pt;}
.ws2d{word-spacing:0.469333pt;}
.ws16{word-spacing:0.528000pt;}
.ws14{word-spacing:0.586667pt;}
.ws12{word-spacing:0.645333pt;}
.ws2f{word-spacing:0.704000pt;}
.ws22{word-spacing:0.938667pt;}
.ws32{word-spacing:1.114667pt;}
.ws13{word-spacing:1.173333pt;}
.wse{word-spacing:1.232000pt;}
.ws2c{word-spacing:1.290667pt;}
.ws21{word-spacing:1.349333pt;}
.ws15{word-spacing:1.408000pt;}
.ws1d{word-spacing:1.466667pt;}
.ws30{word-spacing:1.584000pt;}
.ws17{word-spacing:2.757333pt;}
.ws31{word-spacing:4.986667pt;}
.ws2a{word-spacing:31.744000pt;}
._5{margin-left:-5.808000pt;}
._1{margin-left:-3.109333pt;}
._0{margin-left:-1.349333pt;}
._2{width:0.938667pt;}
._3{width:2.112000pt;}
._4{width:42.384000pt;}
._6{width:991.653333pt;}
.fs1{font-size:42.666667pt;}
.fs2{font-size:58.666667pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:47.966667pt;}
.y22{bottom:63.293333pt;}
.y21{bottom:78.620000pt;}
.y4e{bottom:93.712000pt;}
.y20{bottom:93.946667pt;}
.y4d{bottom:109.038667pt;}
.y1f{bottom:109.273333pt;}
.y4c{bottom:124.365333pt;}
.y1e{bottom:124.600000pt;}
.y4b{bottom:139.692000pt;}
.y1d{bottom:139.926667pt;}
.y1c{bottom:155.253333pt;}
.y4a{bottom:170.360000pt;}
.y1b{bottom:170.580000pt;}
.y49{bottom:185.686667pt;}
.y1a{bottom:185.906667pt;}
.y48{bottom:201.013333pt;}
.y19{bottom:201.233333pt;}
.y47{bottom:216.340000pt;}
.y18{bottom:216.560000pt;}
.y46{bottom:231.666667pt;}
.y17{bottom:231.886667pt;}
.y45{bottom:246.993333pt;}
.y16{bottom:247.213333pt;}
.y44{bottom:262.320000pt;}
.y15{bottom:262.540000pt;}
.y43{bottom:277.646667pt;}
.y14{bottom:277.866667pt;}
.y42{bottom:292.973333pt;}
.y13{bottom:293.193333pt;}
.y41{bottom:308.300000pt;}
.y12{bottom:308.520000pt;}
.y40{bottom:323.626667pt;}
.y11{bottom:323.846667pt;}
.y3f{bottom:338.953333pt;}
.y10{bottom:339.173333pt;}
.y3e{bottom:354.280000pt;}
.yf{bottom:354.500000pt;}
.y3d{bottom:369.606667pt;}
.ye{bottom:369.826667pt;}
.y3c{bottom:384.933333pt;}
.yd{bottom:385.153333pt;}
.y3b{bottom:400.260000pt;}
.yc{bottom:400.480000pt;}
.y3a{bottom:415.586667pt;}
.yb{bottom:415.806667pt;}
.y39{bottom:430.913333pt;}
.ya{bottom:431.133333pt;}
.y38{bottom:446.240000pt;}
.y9{bottom:446.460000pt;}
.y37{bottom:461.566667pt;}
.y8{bottom:461.786667pt;}
.y36{bottom:476.893333pt;}
.y7{bottom:477.113333pt;}
.y35{bottom:492.220000pt;}
.y6{bottom:492.440000pt;}
.y34{bottom:507.546667pt;}
.y5{bottom:507.766667pt;}
.y33{bottom:522.873333pt;}
.y4{bottom:523.093333pt;}
.y32{bottom:538.200000pt;}
.y31{bottom:553.526667pt;}
.y30{bottom:568.853333pt;}
.y2f{bottom:584.180000pt;}
.y2e{bottom:599.506667pt;}
.y2d{bottom:614.833333pt;}
.y2c{bottom:630.160000pt;}
.y2b{bottom:645.486667pt;}
.y2a{bottom:660.813333pt;}
.y29{bottom:676.140000pt;}
.y2{bottom:684.093333pt;}
.y28{bottom:691.466667pt;}
.y27{bottom:706.793333pt;}
.y1{bottom:716.093333pt;}
.y25{bottom:718.760000pt;}
.y26{bottom:722.120000pt;}
.y24{bottom:764.093333pt;}
.y3{bottom:820.000000pt;}
.h2{height:41.854167pt;}
.h4{height:45.525333pt;}
.h3{height:62.597333pt;}
.h1{height:91.050667pt;}
.h0{height:793.333333pt;}
.w0{width:565.333333pt;}
.x0{left:0.000000pt;}
.x3{left:4.000000pt;}
.x4{left:66.400000pt;}
.x8{left:67.480000pt;}
.x5{left:81.726667pt;}
.x6{left:86.405333pt;}
.x9{left:87.426667pt;}
.xc{left:109.808000pt;}
.x2{left:188.397333pt;}
.x1{left:239.533333pt;}
.xb{left:270.364000pt;}
.xa{left:337.126667pt;}
.x7{left:346.320000pt;}
.xd{left:398.536000pt;}
}




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