
    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_6252893a9ab2e04bdfd75bb1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.969000;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_891c7ec11a6917aeca0e20f7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.982000;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_839908a125fad9ef9532eb61.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.725098;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_449159a68b89c2668ac09422.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.982000;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_620eea6e1cab10738e46032d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.916016;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_164df29ed07684f708ce0c9b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.982000;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);}
.v1{vertical-align:-1.219800px;}
.v0{vertical-align:0.000000px;}
.ls8{letter-spacing:-0.660000px;}
.ls7{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.600000px;}
.ls6{letter-spacing:0.840000px;}
.ls0{letter-spacing:0.900000px;}
.ls4{letter-spacing:1.080000px;}
.ls3{letter-spacing:1.320000px;}
.ls2{letter-spacing:1.920000px;}
.ls1{letter-spacing:2.400000px;}
.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:-14.679000px;}
.ws3{word-spacing:-14.580000px;}
.ws25{word-spacing:-13.620000px;}
.ws4{word-spacing:-10.374000px;}
.ws1c{word-spacing:-2.880000px;}
.ws1b{word-spacing:-2.640000px;}
.ws38{word-spacing:-2.340000px;}
.ws33{word-spacing:-2.280000px;}
.ws20{word-spacing:-2.220000px;}
.ws21{word-spacing:-2.160000px;}
.ws2a{word-spacing:-1.980000px;}
.ws22{word-spacing:-1.920000px;}
.ws27{word-spacing:-1.140000px;}
.ws2{word-spacing:-0.990000px;}
.ws2d{word-spacing:-0.900000px;}
.ws30{word-spacing:-0.600000px;}
.ws3d{word-spacing:-0.180000px;}
.ws24{word-spacing:-0.054000px;}
.ws5{word-spacing:0.000000px;}
.ws32{word-spacing:0.180000px;}
.ws16{word-spacing:0.660000px;}
.ws9{word-spacing:1.200000px;}
.ws34{word-spacing:2.400000px;}
.ws14{word-spacing:3.060000px;}
.ws37{word-spacing:3.240000px;}
.ws2c{word-spacing:4.380000px;}
.ws3e{word-spacing:4.560000px;}
.ws1e{word-spacing:4.920000px;}
.wsc{word-spacing:5.040000px;}
.ws2e{word-spacing:5.400000px;}
.ws36{word-spacing:5.520000px;}
.ws2f{word-spacing:6.120000px;}
.ws1a{word-spacing:6.240000px;}
.ws18{word-spacing:7.020000px;}
.ws29{word-spacing:7.500000px;}
.ws40{word-spacing:7.800000px;}
.ws3f{word-spacing:7.860000px;}
.ws19{word-spacing:8.880000px;}
.wsa{word-spacing:9.180000px;}
.ws6{word-spacing:9.780000px;}
.ws12{word-spacing:9.960000px;}
.ws11{word-spacing:10.080000px;}
.ws26{word-spacing:11.520000px;}
.ws3b{word-spacing:11.700000px;}
.ws1f{word-spacing:11.880000px;}
.ws1d{word-spacing:12.780000px;}
.ws15{word-spacing:14.460000px;}
.ws2b{word-spacing:15.540000px;}
.ws31{word-spacing:15.900000px;}
.wsb{word-spacing:16.320000px;}
.ws41{word-spacing:17.280000px;}
.ws8{word-spacing:17.760000px;}
.ws3c{word-spacing:17.940000px;}
.ws13{word-spacing:18.180000px;}
.wsf{word-spacing:18.720000px;}
.wsd{word-spacing:18.780000px;}
.ws7{word-spacing:18.960000px;}
.ws3a{word-spacing:19.500000px;}
.ws23{word-spacing:21.780000px;}
.wse{word-spacing:22.020000px;}
.ws17{word-spacing:22.620000px;}
.ws10{word-spacing:22.680000px;}
.ws35{word-spacing:24.300000px;}
.ws42{word-spacing:24.900000px;}
.ws39{word-spacing:27.060000px;}
.ws28{word-spacing:28.500000px;}
.ws0{word-spacing:776.251200px;}
._1{margin-left:-11.992800px;}
._3{margin-left:-5.940000px;}
._5{margin-left:-3.580800px;}
._2{margin-left:-1.440000px;}
._0{width:1.134000px;}
._4{width:2.274000px;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:30.000000px;}
.fs9{font-size:42.000000px;}
.fs4{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs7{font-size:66.000000px;}
.fs3{font-size:90.000000px;}
.fs6{font-size:96.000000px;}
.fs5{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y12{bottom:114.177150px;}
.y11{bottom:133.677150px;}
.y10{bottom:153.177150px;}
.yf{bottom:172.677150px;}
.ye{bottom:192.177150px;}
.yd{bottom:211.677150px;}
.yc{bottom:231.177150px;}
.yb{bottom:250.677150px;}
.ya{bottom:270.177150px;}
.y9{bottom:289.677150px;}
.y8{bottom:309.177150px;}
.y13{bottom:328.677150px;}
.y7{bottom:348.177150px;}
.y6{bottom:367.677150px;}
.y5{bottom:387.177150px;}
.y4{bottom:406.677150px;}
.y3{bottom:426.177150px;}
.y2{bottom:445.677150px;}
.y34{bottom:543.177150px;}
.y33{bottom:562.677150px;}
.y1d{bottom:567.379500px;}
.y32{bottom:582.177150px;}
.y1c{bottom:585.132000px;}
.y31{bottom:601.677150px;}
.y1b{bottom:602.884500px;}
.y30{bottom:621.177150px;}
.y1a{bottom:624.888450px;}
.y2f{bottom:640.677150px;}
.y36{bottom:660.177150px;}
.y19{bottom:679.255950px;}
.y2e{bottom:679.677150px;}
.y2d{bottom:699.177150px;}
.y18{bottom:704.743950px;}
.y2c{bottom:718.677150px;}
.y2b{bottom:738.177150px;}
.y17{bottom:745.794000px;}
.y2a{bottom:757.677150px;}
.y29{bottom:777.177150px;}
.y28{bottom:796.677150px;}
.y1e{bottom:812.455050px;}
.y27{bottom:816.177150px;}
.y26{bottom:835.677150px;}
.y1f{bottom:853.827150px;}
.y25{bottom:855.177150px;}
.y16{bottom:871.894500px;}
.y35{bottom:874.677150px;}
.y15{bottom:886.894500px;}
.y24{bottom:894.177150px;}
.y23{bottom:913.677150px;}
.y14{bottom:917.432100px;}
.y22{bottom:933.177150px;}
.y21{bottom:983.249850px;}
.y20{bottom:984.260400px;}
.y1{bottom:984.437550px;}
.ha{height:21.360000px;}
.hb{height:29.904000px;}
.h5{height:34.512000px;}
.hc{height:38.448000px;}
.hd{height:38.826000px;}
.h9{height:39.155273px;}
.h3{height:42.720000px;}
.h2{height:44.077200px;}
.h8{height:47.856445px;}
.h4{height:64.072266px;}
.h7{height:69.609375px;}
.h6{height:87.011719px;}
.h0{height:1054.488000px;}
.h1{height:1054.500000px;}
.w1{width:731.250000px;}
.w0{width:731.338500px;}
.x0{left:0.000000px;}
.x1{left:27.535800px;}
.x2{left:51.023550px;}
.xb{left:93.543300px;}
.x4{left:281.717100px;}
.x3{left:355.043550px;}
.xa{left:365.255700px;}
.xc{left:397.563300px;}
.x5{left:441.455700px;}
.x8{left:481.431300px;}
.x7{left:576.496050px;}
.x6{left:608.531700px;}
.x9{left:683.401950px;}
@media print{
.v1{vertical-align:-1.084267pt;}
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-0.586667pt;}
.ls7{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.533333pt;}
.ls6{letter-spacing:0.746667pt;}
.ls0{letter-spacing:0.800000pt;}
.ls4{letter-spacing:0.960000pt;}
.ls3{letter-spacing:1.173333pt;}
.ls2{letter-spacing:1.706667pt;}
.ls1{letter-spacing:2.133333pt;}
.ws1{word-spacing:-13.048000pt;}
.ws3{word-spacing:-12.960000pt;}
.ws25{word-spacing:-12.106667pt;}
.ws4{word-spacing:-9.221333pt;}
.ws1c{word-spacing:-2.560000pt;}
.ws1b{word-spacing:-2.346667pt;}
.ws38{word-spacing:-2.080000pt;}
.ws33{word-spacing:-2.026667pt;}
.ws20{word-spacing:-1.973333pt;}
.ws21{word-spacing:-1.920000pt;}
.ws2a{word-spacing:-1.760000pt;}
.ws22{word-spacing:-1.706667pt;}
.ws27{word-spacing:-1.013333pt;}
.ws2{word-spacing:-0.880000pt;}
.ws2d{word-spacing:-0.800000pt;}
.ws30{word-spacing:-0.533333pt;}
.ws3d{word-spacing:-0.160000pt;}
.ws24{word-spacing:-0.048000pt;}
.ws5{word-spacing:0.000000pt;}
.ws32{word-spacing:0.160000pt;}
.ws16{word-spacing:0.586667pt;}
.ws9{word-spacing:1.066667pt;}
.ws34{word-spacing:2.133333pt;}
.ws14{word-spacing:2.720000pt;}
.ws37{word-spacing:2.880000pt;}
.ws2c{word-spacing:3.893333pt;}
.ws3e{word-spacing:4.053333pt;}
.ws1e{word-spacing:4.373333pt;}
.wsc{word-spacing:4.480000pt;}
.ws2e{word-spacing:4.800000pt;}
.ws36{word-spacing:4.906667pt;}
.ws2f{word-spacing:5.440000pt;}
.ws1a{word-spacing:5.546667pt;}
.ws18{word-spacing:6.240000pt;}
.ws29{word-spacing:6.666667pt;}
.ws40{word-spacing:6.933333pt;}
.ws3f{word-spacing:6.986667pt;}
.ws19{word-spacing:7.893333pt;}
.wsa{word-spacing:8.160000pt;}
.ws6{word-spacing:8.693333pt;}
.ws12{word-spacing:8.853333pt;}
.ws11{word-spacing:8.960000pt;}
.ws26{word-spacing:10.240000pt;}
.ws3b{word-spacing:10.400000pt;}
.ws1f{word-spacing:10.560000pt;}
.ws1d{word-spacing:11.360000pt;}
.ws15{word-spacing:12.853333pt;}
.ws2b{word-spacing:13.813333pt;}
.ws31{word-spacing:14.133333pt;}
.wsb{word-spacing:14.506667pt;}
.ws41{word-spacing:15.360000pt;}
.ws8{word-spacing:15.786667pt;}
.ws3c{word-spacing:15.946667pt;}
.ws13{word-spacing:16.160000pt;}
.wsf{word-spacing:16.640000pt;}
.wsd{word-spacing:16.693333pt;}
.ws7{word-spacing:16.853333pt;}
.ws3a{word-spacing:17.333333pt;}
.ws23{word-spacing:19.360000pt;}
.wse{word-spacing:19.573333pt;}
.ws17{word-spacing:20.106667pt;}
.ws10{word-spacing:20.160000pt;}
.ws35{word-spacing:21.600000pt;}
.ws42{word-spacing:22.133333pt;}
.ws39{word-spacing:24.053333pt;}
.ws28{word-spacing:25.333333pt;}
.ws0{word-spacing:690.001067pt;}
._1{margin-left:-10.660267pt;}
._3{margin-left:-5.280000pt;}
._5{margin-left:-3.182933pt;}
._2{margin-left:-1.280000pt;}
._0{width:1.008000pt;}
._4{width:2.021333pt;}
.fs8{font-size:26.666667pt;}
.fs9{font-size:37.333333pt;}
.fs4{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs7{font-size:58.666667pt;}
.fs3{font-size:80.000000pt;}
.fs6{font-size:85.333333pt;}
.fs5{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y12{bottom:101.490800pt;}
.y11{bottom:118.824133pt;}
.y10{bottom:136.157467pt;}
.yf{bottom:153.490800pt;}
.ye{bottom:170.824133pt;}
.yd{bottom:188.157467pt;}
.yc{bottom:205.490800pt;}
.yb{bottom:222.824133pt;}
.ya{bottom:240.157467pt;}
.y9{bottom:257.490800pt;}
.y8{bottom:274.824133pt;}
.y13{bottom:292.157467pt;}
.y7{bottom:309.490800pt;}
.y6{bottom:326.824133pt;}
.y5{bottom:344.157467pt;}
.y4{bottom:361.490800pt;}
.y3{bottom:378.824133pt;}
.y2{bottom:396.157467pt;}
.y34{bottom:482.824133pt;}
.y33{bottom:500.157467pt;}
.y1d{bottom:504.337333pt;}
.y32{bottom:517.490800pt;}
.y1c{bottom:520.117333pt;}
.y31{bottom:534.824133pt;}
.y1b{bottom:535.897333pt;}
.y30{bottom:552.157467pt;}
.y1a{bottom:555.456400pt;}
.y2f{bottom:569.490800pt;}
.y36{bottom:586.824133pt;}
.y19{bottom:603.783067pt;}
.y2e{bottom:604.157467pt;}
.y2d{bottom:621.490800pt;}
.y18{bottom:626.439067pt;}
.y2c{bottom:638.824133pt;}
.y2b{bottom:656.157467pt;}
.y17{bottom:662.928000pt;}
.y2a{bottom:673.490800pt;}
.y29{bottom:690.824133pt;}
.y28{bottom:708.157467pt;}
.y1e{bottom:722.182267pt;}
.y27{bottom:725.490800pt;}
.y26{bottom:742.824133pt;}
.y1f{bottom:758.957467pt;}
.y25{bottom:760.157467pt;}
.y16{bottom:775.017333pt;}
.y35{bottom:777.490800pt;}
.y15{bottom:788.350667pt;}
.y24{bottom:794.824133pt;}
.y23{bottom:812.157467pt;}
.y14{bottom:815.495200pt;}
.y22{bottom:829.490800pt;}
.y21{bottom:873.999867pt;}
.y20{bottom:874.898133pt;}
.y1{bottom:875.055600pt;}
.ha{height:18.986667pt;}
.hb{height:26.581333pt;}
.h5{height:30.677333pt;}
.hc{height:34.176000pt;}
.hd{height:34.512000pt;}
.h9{height:34.804688pt;}
.h3{height:37.973333pt;}
.h2{height:39.179733pt;}
.h8{height:42.539062pt;}
.h4{height:56.953125pt;}
.h7{height:61.875000pt;}
.h6{height:77.343750pt;}
.h0{height:937.322667pt;}
.h1{height:937.333333pt;}
.w1{width:650.000000pt;}
.w0{width:650.078667pt;}
.x0{left:0.000000pt;}
.x1{left:24.476267pt;}
.x2{left:45.354267pt;}
.xb{left:83.149600pt;}
.x4{left:250.415200pt;}
.x3{left:315.594267pt;}
.xa{left:324.671733pt;}
.xc{left:353.389600pt;}
.x5{left:392.405067pt;}
.x8{left:427.938933pt;}
.x7{left:512.440933pt;}
.x6{left:540.917067pt;}
.x9{left:607.468400pt;}
}




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