
    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_fafcec2a01ed4b4ee6d3a99b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.691406;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_c6a64c1a566eea45b249092e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_2dd4c9e3a767aba1dae13ad8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.727539;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_5dc5755f4bb4bd528ff75113.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.727539;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_e471d96469c3f44602dbba19.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_a7fcd237190d33c474763ef1.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.106934;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;}
.ls3{letter-spacing:-0.432000px;}
.ls4{letter-spacing:-0.106800px;}
.ls2{letter-spacing:-0.028080px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.305400px;}
.ls6{letter-spacing:0.612000px;}
.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:-23.390640px;}
.ws0{word-spacing:-20.016000px;}
.ws5{word-spacing:-18.720120px;}
.ws3{word-spacing:-18.414720px;}
.ws7{word-spacing:-17.225280px;}
.ws6{word-spacing:-16.613280px;}
.ws4{word-spacing:-16.506480px;}
.ws2{word-spacing:0.000000px;}
._2{margin-left:-4.550880px;}
._1{margin-left:-3.097680px;}
._0{margin-left:-1.109520px;}
._3{width:1.499040px;}
._9{width:2.580960px;}
._6{width:3.950880px;}
._5{width:5.488560px;}
._4{width:6.696000px;}
._c{width:11.165520px;}
._8{width:12.720000px;}
._7{width:14.184000px;}
._d{width:15.564960px;}
._b{width:17.424000px;}
._a{width:21.108960px;}
.fc6{color:rgb(102,0,153);}
.fc5{color:transparent;}
.fc3{color:rgb(0,0,129);}
.fc8{color:rgb(119,119,119);}
.fc7{color:rgb(34,34,34);}
.fc4{color:rgb(17,17,17);}
.fc2{color:rgb(127,127,127);}
.fc1{color:rgb(153,153,153);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:2.880000px;}
.fs1{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs7{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:2.880000px;}
.y3b{bottom:3.240000px;}
.y56{bottom:3.405000px;}
.y45{bottom:3.420000px;}
.y4b{bottom:3.450000px;}
.y8{bottom:16.560000px;}
.y5{bottom:18.360000px;}
.y5c{bottom:20.505000px;}
.y3f{bottom:20.520000px;}
.y3a{bottom:20.565000px;}
.y55{bottom:20.685000px;}
.y44{bottom:20.700000px;}
.y4a{bottom:20.730000px;}
.y5d{bottom:21.405000px;}
.y40{bottom:21.420000px;}
.y57{bottom:21.585000px;}
.y46{bottom:21.600000px;}
.y41{bottom:26.640000px;}
.y52{bottom:26.820000px;}
.y5a{bottom:30.945000px;}
.y60{bottom:30.960000px;}
.y4c{bottom:30.990000px;}
.y3c{bottom:31.005000px;}
.y50{bottom:31.140000px;}
.y64{bottom:36.180000px;}
.y54{bottom:38.145000px;}
.y3e{bottom:38.160000px;}
.y49{bottom:38.190000px;}
.y39{bottom:38.205000px;}
.y43{bottom:38.340000px;}
.y3{bottom:41.220000px;}
.y59{bottom:57.045000px;}
.y5f{bottom:57.060000px;}
.y48{bottom:57.090000px;}
.y38{bottom:57.105000px;}
.y4f{bottom:57.240000px;}
.y7{bottom:65.700000px;}
.y33{bottom:122.040000px;}
.y32{bottom:142.740000px;}
.y31{bottom:163.470000px;}
.y5b{bottom:181.485000px;}
.y30{bottom:184.170000px;}
.y2f{bottom:204.870000px;}
.y2e{bottom:225.570000px;}
.y2d{bottom:246.270000px;}
.y58{bottom:252.945000px;}
.y2c{bottom:266.970000px;}
.y2b{bottom:287.670000px;}
.y2a{bottom:308.190000px;}
.y29{bottom:328.890000px;}
.y53{bottom:343.305000px;}
.y28{bottom:349.590000px;}
.y27{bottom:370.290000px;}
.y26{bottom:390.990000px;}
.y25{bottom:411.735000px;}
.y51{bottom:414.795000px;}
.y24{bottom:454.935000px;}
.y4e{bottom:486.255000px;}
.y23{bottom:498.135000px;}
.y22{bottom:541.335000px;}
.y21{bottom:562.035000px;}
.y4d{bottom:576.795000px;}
.y20{bottom:582.735000px;}
.y1f{bottom:603.435000px;}
.y1e{bottom:624.135000px;}
.y1d{bottom:644.835000px;}
.y47{bottom:648.255000px;}
.y1c{bottom:665.565000px;}
.y1b{bottom:686.265000px;}
.y1a{bottom:706.965000px;}
.y19{bottom:727.665000px;}
.y65{bottom:734.325000px;}
.y42{bottom:738.645000px;}
.y18{bottom:748.905000px;}
.y17{bottom:772.485000px;}
.y63{bottom:777.885000px;}
.y16{bottom:793.185000px;}
.y3d{bottom:810.285000px;}
.y15{bottom:813.885000px;}
.y14{bottom:835.305000px;}
.y13{bottom:858.345000px;}
.y62{bottom:868.245000px;}
.y12{bottom:877.245000px;}
.y37{bottom:881.745000px;}
.y11{bottom:896.325000px;}
.y10{bottom:915.270000px;}
.yf{bottom:935.250000px;}
.y61{bottom:939.750000px;}
.ye{bottom:959.550000px;}
.yd{bottom:983.670000px;}
.y36{bottom:989.790000px;}
.yc{bottom:1007.790000px;}
.y5e{bottom:1011.390000px;}
.yb{bottom:1031.370000px;}
.y35{bottom:1032.990000px;}
.ya{bottom:1052.070000px;}
.y9{bottom:1073.310000px;}
.y34{bottom:1076.190000px;}
.y2{bottom:1119.210000px;}
.y1{bottom:1134.870000px;}
.y4{bottom:1160.460000px;}
.h6{height:27.540000px;}
.h3{height:29.340000px;}
.h5{height:38.654297px;}
.h15{height:40.764023px;}
.h2{height:45.184219px;}
.h7{height:50.312812px;}
.hf{height:53.445000px;}
.hc{height:53.460000px;}
.h13{height:53.482500px;}
.h12{height:53.625000px;}
.hd{height:53.640000px;}
.hb{height:62.327813px;}
.h4{height:69.086250px;}
.h11{height:72.345000px;}
.h14{height:72.360000px;}
.ha{height:72.382500px;}
.he{height:72.390000px;}
.h10{height:72.525000px;}
.h9{height:75.093750px;}
.h8{height:87.859687px;}
.h16{height:150.187500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:21.060000px;}
.w5{width:22.140000px;}
.w2{width:362.220000px;}
.w3{width:378.060000px;}
.w4{width:756.135000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:9.000000px;}
.x14{left:13.140000px;}
.xd{left:17.991000px;}
.x8{left:25.185000px;}
.x12{left:26.280000px;}
.x13{left:34.740000px;}
.x11{left:43.020000px;}
.x2{left:93.636000px;}
.x5{left:133.410000px;}
.xb{left:146.736000px;}
.xc{left:157.530000px;}
.x9{left:189.930000px;}
.x6{left:351.600000px;}
.xa{left:369.615000px;}
.x1{left:440.175000px;}
.x3{left:506.085000px;}
.x4{left:513.840000px;}
.x7{left:514.920000px;}
.xe{left:849.780000px;}
.x10{left:871.920000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-0.384000pt;}
.ls4{letter-spacing:-0.094933pt;}
.ls2{letter-spacing:-0.024960pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.271467pt;}
.ls6{letter-spacing:0.544000pt;}
.ws1{word-spacing:-20.791680pt;}
.ws0{word-spacing:-17.792000pt;}
.ws5{word-spacing:-16.640107pt;}
.ws3{word-spacing:-16.368640pt;}
.ws7{word-spacing:-15.311360pt;}
.ws6{word-spacing:-14.767360pt;}
.ws4{word-spacing:-14.672427pt;}
.ws2{word-spacing:0.000000pt;}
._2{margin-left:-4.045227pt;}
._1{margin-left:-2.753493pt;}
._0{margin-left:-0.986240pt;}
._3{width:1.332480pt;}
._9{width:2.294187pt;}
._6{width:3.511893pt;}
._5{width:4.878720pt;}
._4{width:5.952000pt;}
._c{width:9.924907pt;}
._8{width:11.306667pt;}
._7{width:12.608000pt;}
._d{width:13.835520pt;}
._b{width:15.488000pt;}
._a{width:18.763520pt;}
.fs6{font-size:2.560000pt;}
.fs1{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs7{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:2.560000pt;}
.y3b{bottom:2.880000pt;}
.y56{bottom:3.026667pt;}
.y45{bottom:3.040000pt;}
.y4b{bottom:3.066667pt;}
.y8{bottom:14.720000pt;}
.y5{bottom:16.320000pt;}
.y5c{bottom:18.226667pt;}
.y3f{bottom:18.240000pt;}
.y3a{bottom:18.280000pt;}
.y55{bottom:18.386667pt;}
.y44{bottom:18.400000pt;}
.y4a{bottom:18.426667pt;}
.y5d{bottom:19.026667pt;}
.y40{bottom:19.040000pt;}
.y57{bottom:19.186667pt;}
.y46{bottom:19.200000pt;}
.y41{bottom:23.680000pt;}
.y52{bottom:23.840000pt;}
.y5a{bottom:27.506667pt;}
.y60{bottom:27.520000pt;}
.y4c{bottom:27.546667pt;}
.y3c{bottom:27.560000pt;}
.y50{bottom:27.680000pt;}
.y64{bottom:32.160000pt;}
.y54{bottom:33.906667pt;}
.y3e{bottom:33.920000pt;}
.y49{bottom:33.946667pt;}
.y39{bottom:33.960000pt;}
.y43{bottom:34.080000pt;}
.y3{bottom:36.640000pt;}
.y59{bottom:50.706667pt;}
.y5f{bottom:50.720000pt;}
.y48{bottom:50.746667pt;}
.y38{bottom:50.760000pt;}
.y4f{bottom:50.880000pt;}
.y7{bottom:58.400000pt;}
.y33{bottom:108.480000pt;}
.y32{bottom:126.880000pt;}
.y31{bottom:145.306667pt;}
.y5b{bottom:161.320000pt;}
.y30{bottom:163.706667pt;}
.y2f{bottom:182.106667pt;}
.y2e{bottom:200.506667pt;}
.y2d{bottom:218.906667pt;}
.y58{bottom:224.840000pt;}
.y2c{bottom:237.306667pt;}
.y2b{bottom:255.706667pt;}
.y2a{bottom:273.946667pt;}
.y29{bottom:292.346667pt;}
.y53{bottom:305.160000pt;}
.y28{bottom:310.746667pt;}
.y27{bottom:329.146667pt;}
.y26{bottom:347.546667pt;}
.y25{bottom:365.986667pt;}
.y51{bottom:368.706667pt;}
.y24{bottom:404.386667pt;}
.y4e{bottom:432.226667pt;}
.y23{bottom:442.786667pt;}
.y22{bottom:481.186667pt;}
.y21{bottom:499.586667pt;}
.y4d{bottom:512.706667pt;}
.y20{bottom:517.986667pt;}
.y1f{bottom:536.386667pt;}
.y1e{bottom:554.786667pt;}
.y1d{bottom:573.186667pt;}
.y47{bottom:576.226667pt;}
.y1c{bottom:591.613333pt;}
.y1b{bottom:610.013333pt;}
.y1a{bottom:628.413333pt;}
.y19{bottom:646.813333pt;}
.y65{bottom:652.733333pt;}
.y42{bottom:656.573333pt;}
.y18{bottom:665.693333pt;}
.y17{bottom:686.653333pt;}
.y63{bottom:691.453333pt;}
.y16{bottom:705.053333pt;}
.y3d{bottom:720.253333pt;}
.y15{bottom:723.453333pt;}
.y14{bottom:742.493333pt;}
.y13{bottom:762.973333pt;}
.y62{bottom:771.773333pt;}
.y12{bottom:779.773333pt;}
.y37{bottom:783.773333pt;}
.y11{bottom:796.733333pt;}
.y10{bottom:813.573333pt;}
.yf{bottom:831.333333pt;}
.y61{bottom:835.333333pt;}
.ye{bottom:852.933333pt;}
.yd{bottom:874.373333pt;}
.y36{bottom:879.813333pt;}
.yc{bottom:895.813333pt;}
.y5e{bottom:899.013333pt;}
.yb{bottom:916.773333pt;}
.y35{bottom:918.213333pt;}
.ya{bottom:935.173333pt;}
.y9{bottom:954.053333pt;}
.y34{bottom:956.613333pt;}
.y2{bottom:994.853333pt;}
.y1{bottom:1008.773333pt;}
.y4{bottom:1031.520000pt;}
.h6{height:24.480000pt;}
.h3{height:26.080000pt;}
.h5{height:34.359375pt;}
.h15{height:36.234687pt;}
.h2{height:40.163750pt;}
.h7{height:44.722500pt;}
.hf{height:47.506667pt;}
.hc{height:47.520000pt;}
.h13{height:47.540000pt;}
.h12{height:47.666667pt;}
.hd{height:47.680000pt;}
.hb{height:55.402500pt;}
.h4{height:61.410000pt;}
.h11{height:64.306667pt;}
.h14{height:64.320000pt;}
.ha{height:64.340000pt;}
.he{height:64.346667pt;}
.h10{height:64.466667pt;}
.h9{height:66.750000pt;}
.h8{height:78.097500pt;}
.h16{height:133.500000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:18.720000pt;}
.w5{width:19.680000pt;}
.w2{width:321.973333pt;}
.w3{width:336.053333pt;}
.w4{width:672.120000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:8.000000pt;}
.x14{left:11.680000pt;}
.xd{left:15.992000pt;}
.x8{left:22.386667pt;}
.x12{left:23.360000pt;}
.x13{left:30.880000pt;}
.x11{left:38.240000pt;}
.x2{left:83.232000pt;}
.x5{left:118.586667pt;}
.xb{left:130.432000pt;}
.xc{left:140.026667pt;}
.x9{left:168.826667pt;}
.x6{left:312.533333pt;}
.xa{left:328.546667pt;}
.x1{left:391.266667pt;}
.x3{left:449.853333pt;}
.x4{left:456.746667pt;}
.x7{left:457.706667pt;}
.xe{left:755.360000pt;}
.x10{left:775.040000pt;}
}




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