
    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_c894e83ffad0d76d96b6bf4d.woff')format("woff");}.ff1{font-family:ff1;line-height:1.096191;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_f191829e4a03523218a3844d.woff')format("woff");}.ff2{font-family:ff2;line-height:1.096191;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_649485695ddca61cfdc81e46.woff')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_d9b9fa2ad41e94accd38f446.woff')format("woff");}.ff4{font-family:ff4;line-height:0.914062;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_1dd65b1d0815b313020cab18.woff')format("woff");}.ff5{font-family:ff5;line-height:1.402354;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_ac3ab6958458848029518c39.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_a7e944c8943072718513606e.woff')format("woff");}.ff7{font-family:ff7;line-height:0.676758;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_8c5e250500d587216da3ef15.woff')format("woff");}.ff8{font-family:ff8;line-height:0.676758;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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;}
.ls2{letter-spacing:-0.139800px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.053280px;}
.ls0{letter-spacing:0.078840px;}
.ls4{letter-spacing:848.970000px;}
.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:-15.083280px;}
.ws1{word-spacing:-15.030000px;}
.ws0{word-spacing:-14.890200px;}
.ws3{word-spacing:0.000000px;}
._5{margin-left:-7.649280px;}
._0{margin-left:-5.531040px;}
._3{margin-left:-3.377160px;}
._2{margin-left:-2.344680px;}
._1{margin-left:-1.036320px;}
._4{width:2.885760px;}
._6{width:4.240080px;}
._7{width:6.432840px;}
._8{width:7.697640px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:47.880000px;}
.fs1{font-size:60.120000px;}
.fs2{font-size:63.371411px;}
.fs0{font-size:65.880000px;}
.y0{bottom:0.000000px;}
.yb{bottom:16.560000px;}
.y8{bottom:16.590000px;}
.y6{bottom:16.650000px;}
.y3{bottom:58.320000px;}
.y2{bottom:78.480000px;}
.y38{bottom:98.910000px;}
.y35{bottom:106.020000px;}
.y36{bottom:108.180000px;}
.y34{bottom:108.270000px;}
.y37{bottom:110.250000px;}
.y33{bottom:110.340000px;}
.y3e{bottom:111.150000px;}
.y26{bottom:117.090000px;}
.y3d{bottom:137.010000px;}
.y25{bottom:148.500000px;}
.y3c{bottom:162.930000px;}
.y24{bottom:179.850000px;}
.y3b{bottom:188.760000px;}
.y23{bottom:211.260000px;}
.y3a{bottom:229.440000px;}
.y22{bottom:242.580000px;}
.y21{bottom:273.990000px;}
.y20{bottom:305.310000px;}
.y1f{bottom:339.960000px;}
.y1e{bottom:354.720000px;}
.y1d{bottom:386.040000px;}
.y1c{bottom:417.450000px;}
.y1b{bottom:448.770000px;}
.y1a{bottom:480.180000px;}
.y19{bottom:511.500000px;}
.y18{bottom:542.910000px;}
.y17{bottom:577.500000px;}
.y16{bottom:592.260000px;}
.y15{bottom:623.580000px;}
.y14{bottom:654.990000px;}
.y13{bottom:686.310000px;}
.y12{bottom:717.720000px;}
.y11{bottom:749.040000px;}
.y39{bottom:752.100000px;}
.y10{bottom:780.450000px;}
.y30{bottom:791.430000px;}
.y32{bottom:795.960000px;}
.yf{bottom:815.010000px;}
.y2f{bottom:822.750000px;}
.ye{bottom:829.770000px;}
.y31{bottom:848.250000px;}
.y2e{bottom:854.160000px;}
.yd{bottom:861.180000px;}
.y2d{bottom:885.480000px;}
.yc{bottom:892.500000px;}
.y2c{bottom:916.890000px;}
.ya{bottom:923.910000px;}
.y2b{bottom:948.210000px;}
.y9{bottom:955.230000px;}
.y2a{bottom:979.620000px;}
.y7{bottom:986.640000px;}
.y29{bottom:1014.210000px;}
.y5{bottom:1017.990000px;}
.y28{bottom:1031.490000px;}
.y27{bottom:1048.770000px;}
.y4{bottom:1065.960000px;}
.y1{bottom:1118.250000px;}
.h6{height:30.600000px;}
.h5{height:30.630000px;}
.h3{height:30.690000px;}
.ha{height:40.070215px;}
.hb{height:41.978320px;}
.h9{height:42.237293px;}
.h8{height:42.418652px;}
.h2{height:61.793886px;}
.h4{height:62.585859px;}
.h1{height:65.526152px;}
.h7{height:918.000000px;}
.h0{height:1188.000000px;}
.wd{width:49.140000px;}
.w1b{width:49.170000px;}
.wa{width:49.230000px;}
.wb{width:49.260000px;}
.w5{width:49.680000px;}
.w6{width:49.710000px;}
.w11{width:50.310000px;}
.w1e{width:52.380000px;}
.w1f{width:52.410000px;}
.w13{width:55.710000px;}
.w1a{width:56.160000px;}
.w19{width:56.700000px;}
.w12{width:57.870000px;}
.w14{width:58.050000px;}
.wc{width:63.000000px;}
.w18{width:66.960000px;}
.w7{width:152.940000px;}
.w15{width:153.750000px;}
.w1c{width:153.990000px;}
.we{width:155.370000px;}
.w2{width:155.730000px;}
.w8{width:249.060000px;}
.w4{width:251.280000px;}
.w3{width:251.310000px;}
.w1d{width:255.360000px;}
.w17{width:255.990000px;}
.w9{width:262.800000px;}
.wf{width:266.250000px;}
.w16{width:274.350000px;}
.w10{width:276.510000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.w21{width:1187.999982px;}
.w20{width:1188.000000px;}
.x0{left:0.000000px;}
.x4{left:7.740000px;}
.x44{left:9.270000px;}
.x11{left:11.970000px;}
.x45{left:13.050000px;}
.x22{left:14.580000px;}
.x8{left:16.110000px;}
.x21{left:18.360000px;}
.x2a{left:20.250000px;}
.x1d{left:22.770000px;}
.x35{left:24.750000px;}
.x15{left:98.460000px;}
.x6{left:99.540000px;}
.x34{left:101.970000px;}
.x17{left:105.300000px;}
.x1{left:107.999986px;}
.x23{left:109.260000px;}
.x32{left:111.060000px;}
.x26{left:112.140000px;}
.x30{left:116.280000px;}
.x13{left:125.910000px;}
.x3{left:129.150000px;}
.x3e{left:254.010000px;}
.x24{left:265.350000px;}
.x31{left:270.750000px;}
.x14{left:279.570000px;}
.x5{left:285.600000px;}
.x27{left:315.750000px;}
.x18{left:329.520000px;}
.x9{left:336.000000px;}
.x36{left:338.520000px;}
.x28{left:366.150000px;}
.x19{left:379.470000px;}
.xa{left:386.400000px;}
.x37{left:395.940000px;}
.x3f{left:408.720000px;}
.x46{left:415.829982px;}
.x29{left:417.270000px;}
.x1a{left:429.420000px;}
.xb{left:436.800000px;}
.x38{left:445.890000px;}
.x2{left:454.799986px;}
.x12{left:459.029986px;}
.x40{left:461.820000px;}
.x2b{left:475.890000px;}
.x1b{left:479.400000px;}
.xc{left:487.230000px;}
.x39{left:495.870000px;}
.x41{left:514.950000px;}
.x16{left:529.350000px;}
.x25{left:532.320000px;}
.x7{left:537.630000px;}
.x33{left:545.820000px;}
.x42{left:564.900000px;}
.x1c{left:579.300000px;}
.xd{left:588.030000px;}
.x2c{left:591.090000px;}
.x48{left:594.029982px;}
.x3a{left:595.770000px;}
.x43{left:614.850000px;}
.xe{left:638.430000px;}
.x1e{left:643.110000px;}
.x2d{left:649.950000px;}
.x3b{left:652.740000px;}
.xf{left:688.830000px;}
.x1f{left:693.060000px;}
.x3c{left:702.690000px;}
.x2e{left:708.720000px;}
.x10{left:739.230000px;}
.x20{left:743.010000px;}
.x3d{left:752.640000px;}
.x2f{left:759.120000px;}
.x47{left:774.329982px;}
.x49{left:913.559982px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-0.124267pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.047360pt;}
.ls0{letter-spacing:0.070080pt;}
.ls4{letter-spacing:754.640000pt;}
.ws2{word-spacing:-13.407360pt;}
.ws1{word-spacing:-13.360000pt;}
.ws0{word-spacing:-13.235733pt;}
.ws3{word-spacing:0.000000pt;}
._5{margin-left:-6.799360pt;}
._0{margin-left:-4.916480pt;}
._3{margin-left:-3.001920pt;}
._2{margin-left:-2.084160pt;}
._1{margin-left:-0.921173pt;}
._4{width:2.565120pt;}
._6{width:3.768960pt;}
._7{width:5.718080pt;}
._8{width:6.842347pt;}
.fs3{font-size:42.560000pt;}
.fs1{font-size:53.440000pt;}
.fs2{font-size:56.330143pt;}
.fs0{font-size:58.560000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:14.720000pt;}
.y8{bottom:14.746667pt;}
.y6{bottom:14.800000pt;}
.y3{bottom:51.840000pt;}
.y2{bottom:69.760000pt;}
.y38{bottom:87.920000pt;}
.y35{bottom:94.240000pt;}
.y36{bottom:96.160000pt;}
.y34{bottom:96.240000pt;}
.y37{bottom:98.000000pt;}
.y33{bottom:98.080000pt;}
.y3e{bottom:98.800000pt;}
.y26{bottom:104.080000pt;}
.y3d{bottom:121.786667pt;}
.y25{bottom:132.000000pt;}
.y3c{bottom:144.826667pt;}
.y24{bottom:159.866667pt;}
.y3b{bottom:167.786667pt;}
.y23{bottom:187.786667pt;}
.y3a{bottom:203.946667pt;}
.y22{bottom:215.626667pt;}
.y21{bottom:243.546667pt;}
.y20{bottom:271.386667pt;}
.y1f{bottom:302.186667pt;}
.y1e{bottom:315.306667pt;}
.y1d{bottom:343.146667pt;}
.y1c{bottom:371.066667pt;}
.y1b{bottom:398.906667pt;}
.y1a{bottom:426.826667pt;}
.y19{bottom:454.666667pt;}
.y18{bottom:482.586667pt;}
.y17{bottom:513.333333pt;}
.y16{bottom:526.453333pt;}
.y15{bottom:554.293333pt;}
.y14{bottom:582.213333pt;}
.y13{bottom:610.053333pt;}
.y12{bottom:637.973333pt;}
.y11{bottom:665.813333pt;}
.y39{bottom:668.533333pt;}
.y10{bottom:693.733333pt;}
.y30{bottom:703.493333pt;}
.y32{bottom:707.520000pt;}
.yf{bottom:724.453333pt;}
.y2f{bottom:731.333333pt;}
.ye{bottom:737.573333pt;}
.y31{bottom:754.000000pt;}
.y2e{bottom:759.253333pt;}
.yd{bottom:765.493333pt;}
.y2d{bottom:787.093333pt;}
.yc{bottom:793.333333pt;}
.y2c{bottom:815.013333pt;}
.ya{bottom:821.253333pt;}
.y2b{bottom:842.853333pt;}
.y9{bottom:849.093333pt;}
.y2a{bottom:870.773333pt;}
.y7{bottom:877.013333pt;}
.y29{bottom:901.520000pt;}
.y5{bottom:904.880000pt;}
.y28{bottom:916.880000pt;}
.y27{bottom:932.240000pt;}
.y4{bottom:947.520000pt;}
.y1{bottom:994.000000pt;}
.h6{height:27.200000pt;}
.h5{height:27.226667pt;}
.h3{height:27.280000pt;}
.ha{height:35.617969pt;}
.hb{height:37.314062pt;}
.h9{height:37.544260pt;}
.h8{height:37.705469pt;}
.h2{height:54.927899pt;}
.h4{height:55.631875pt;}
.h1{height:58.245469pt;}
.h7{height:816.000000pt;}
.h0{height:1056.000000pt;}
.wd{width:43.680000pt;}
.w1b{width:43.706667pt;}
.wa{width:43.760000pt;}
.wb{width:43.786667pt;}
.w5{width:44.160000pt;}
.w6{width:44.186667pt;}
.w11{width:44.720000pt;}
.w1e{width:46.560000pt;}
.w1f{width:46.586667pt;}
.w13{width:49.520000pt;}
.w1a{width:49.920000pt;}
.w19{width:50.400000pt;}
.w12{width:51.440000pt;}
.w14{width:51.600000pt;}
.wc{width:56.000000pt;}
.w18{width:59.520000pt;}
.w7{width:135.946667pt;}
.w15{width:136.666667pt;}
.w1c{width:136.880000pt;}
.we{width:138.106667pt;}
.w2{width:138.426667pt;}
.w8{width:221.386667pt;}
.w4{width:223.360000pt;}
.w3{width:223.386667pt;}
.w1d{width:226.986667pt;}
.w17{width:227.546667pt;}
.w9{width:233.600000pt;}
.wf{width:236.666667pt;}
.w16{width:243.866667pt;}
.w10{width:245.786667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.w21{width:1055.999984pt;}
.w20{width:1056.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.880000pt;}
.x44{left:8.240000pt;}
.x11{left:10.640000pt;}
.x45{left:11.600000pt;}
.x22{left:12.960000pt;}
.x8{left:14.320000pt;}
.x21{left:16.320000pt;}
.x2a{left:18.000000pt;}
.x1d{left:20.240000pt;}
.x35{left:22.000000pt;}
.x15{left:87.520000pt;}
.x6{left:88.480000pt;}
.x34{left:90.640000pt;}
.x17{left:93.600000pt;}
.x1{left:95.999988pt;}
.x23{left:97.120000pt;}
.x32{left:98.720000pt;}
.x26{left:99.680000pt;}
.x30{left:103.360000pt;}
.x13{left:111.920000pt;}
.x3{left:114.800000pt;}
.x3e{left:225.786667pt;}
.x24{left:235.866667pt;}
.x31{left:240.666667pt;}
.x14{left:248.506667pt;}
.x5{left:253.866667pt;}
.x27{left:280.666667pt;}
.x18{left:292.906667pt;}
.x9{left:298.666667pt;}
.x36{left:300.906667pt;}
.x28{left:325.466667pt;}
.x19{left:337.306667pt;}
.xa{left:343.466667pt;}
.x37{left:351.946667pt;}
.x3f{left:363.306667pt;}
.x46{left:369.626651pt;}
.x29{left:370.906667pt;}
.x1a{left:381.706667pt;}
.xb{left:388.266667pt;}
.x38{left:396.346667pt;}
.x2{left:404.266655pt;}
.x12{left:408.026655pt;}
.x40{left:410.506667pt;}
.x2b{left:423.013333pt;}
.x1b{left:426.133333pt;}
.xc{left:433.093333pt;}
.x39{left:440.773333pt;}
.x41{left:457.733333pt;}
.x16{left:470.533333pt;}
.x25{left:473.173333pt;}
.x7{left:477.893333pt;}
.x33{left:485.173333pt;}
.x42{left:502.133333pt;}
.x1c{left:514.933333pt;}
.xd{left:522.693333pt;}
.x2c{left:525.413333pt;}
.x48{left:528.026651pt;}
.x3a{left:529.573333pt;}
.x43{left:546.533333pt;}
.xe{left:567.493333pt;}
.x1e{left:571.653333pt;}
.x2d{left:577.733333pt;}
.x3b{left:580.213333pt;}
.xf{left:612.293333pt;}
.x1f{left:616.053333pt;}
.x3c{left:624.613333pt;}
.x2e{left:629.973333pt;}
.x10{left:657.093333pt;}
.x20{left:660.453333pt;}
.x3d{left:669.013333pt;}
.x2f{left:674.773333pt;}
.x47{left:688.293318pt;}
.x49{left:812.053318pt;}
}




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