
    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_5e083bbc578da9f1172b63e5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.002930;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_5165901426bdacadaac5a47b.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_389fe90f4539607ecddffa2c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.220215;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_730696a40f4624c96cf92afe.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.181152;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_fe3cd936285986f55e165f2a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_bd19b8c089039c5350152620.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_3792e456d01263121dcd21f6.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.024902;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;}
.ls6{letter-spacing:-0.870000px;}
.ls5{letter-spacing:-0.034560px;}
.ls4{letter-spacing:-0.018000px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.044640px;}
.ls0{letter-spacing:0.228960px;}
.ls1{letter-spacing:17.946720px;}
.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;}
}
.ws0{word-spacing:-66.205440px;}
.ws1{word-spacing:-21.080160px;}
.ws2{word-spacing:0.000000px;}
._0{margin-left:-1.026000px;}
._1{width:1.212000px;}
._6{width:2.687280px;}
._8{width:4.242960px;}
._c{width:5.617440px;}
._a{width:7.171200px;}
._9{width:8.187120px;}
._b{width:9.820560px;}
._e{width:11.533680px;}
._11{width:12.914880px;}
._10{width:14.318880px;}
._d{width:15.776640px;}
._18{width:16.828800px;}
._16{width:18.269760px;}
._f{width:20.012160px;}
._13{width:22.971120px;}
._17{width:25.057680px;}
._19{width:35.377920px;}
._15{width:36.432240px;}
._14{width:37.529280px;}
._12{width:49.524240px;}
._7{width:50.740560px;}
._4{width:104.647680px;}
._5{width:105.822720px;}
._2{width:112.554000px;}
._3{width:200.196000px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs4{font-size:69.120000px;}
.fs3{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:57.420000px;}
.y4{bottom:73.620000px;}
.y40{bottom:100.260000px;}
.y7c{bottom:104.760000px;}
.y3f{bottom:118.620000px;}
.y7b{bottom:124.200000px;}
.y3e{bottom:136.800000px;}
.y7a{bottom:142.560000px;}
.y3d{bottom:154.980000px;}
.y79{bottom:160.740000px;}
.y3c{bottom:173.160000px;}
.y78{bottom:178.920000px;}
.y3b{bottom:191.520000px;}
.y77{bottom:197.100000px;}
.y3a{bottom:209.700000px;}
.y76{bottom:215.460000px;}
.y39{bottom:227.880000px;}
.y75{bottom:233.640000px;}
.y38{bottom:246.240000px;}
.y74{bottom:251.850000px;}
.y37{bottom:264.450000px;}
.y73{bottom:270.030000px;}
.y36{bottom:282.630000px;}
.y72{bottom:288.390000px;}
.y35{bottom:300.810000px;}
.y71{bottom:306.570000px;}
.y34{bottom:319.170000px;}
.y70{bottom:324.750000px;}
.y33{bottom:337.350000px;}
.y6f{bottom:343.110000px;}
.y32{bottom:355.530000px;}
.y6e{bottom:361.290000px;}
.y31{bottom:373.890000px;}
.y6d{bottom:379.470000px;}
.y30{bottom:392.070000px;}
.y6c{bottom:397.650000px;}
.y2f{bottom:410.250000px;}
.y6b{bottom:416.010000px;}
.y2e{bottom:428.430000px;}
.y6a{bottom:434.190000px;}
.y2d{bottom:446.790000px;}
.y69{bottom:452.370000px;}
.y2c{bottom:464.970000px;}
.y68{bottom:470.730000px;}
.y2b{bottom:483.150000px;}
.y67{bottom:488.955000px;}
.y2a{bottom:501.375000px;}
.y66{bottom:507.135000px;}
.y29{bottom:519.735000px;}
.y65{bottom:525.315000px;}
.y28{bottom:537.915000px;}
.y64{bottom:543.675000px;}
.y27{bottom:556.095000px;}
.y63{bottom:561.855000px;}
.y26{bottom:574.455000px;}
.y62{bottom:580.035000px;}
.y25{bottom:592.635000px;}
.y61{bottom:598.215000px;}
.y24{bottom:610.815000px;}
.y60{bottom:616.575000px;}
.y23{bottom:628.995000px;}
.y5f{bottom:634.755000px;}
.y22{bottom:647.355000px;}
.y5e{bottom:652.935000px;}
.y21{bottom:665.535000px;}
.y5d{bottom:671.295000px;}
.y20{bottom:683.715000px;}
.y5c{bottom:689.475000px;}
.y1f{bottom:702.075000px;}
.y5b{bottom:707.655000px;}
.y1e{bottom:720.285000px;}
.y5a{bottom:725.865000px;}
.y1d{bottom:738.465000px;}
.y59{bottom:744.225000px;}
.y1c{bottom:756.645000px;}
.y58{bottom:762.405000px;}
.y1b{bottom:775.005000px;}
.y57{bottom:780.585000px;}
.y1a{bottom:793.185000px;}
.y56{bottom:798.945000px;}
.y19{bottom:811.365000px;}
.y55{bottom:817.125000px;}
.y18{bottom:829.545000px;}
.y54{bottom:835.305000px;}
.y17{bottom:847.905000px;}
.y53{bottom:853.485000px;}
.y16{bottom:866.085000px;}
.y52{bottom:871.845000px;}
.y15{bottom:884.265000px;}
.y51{bottom:890.025000px;}
.y14{bottom:902.625000px;}
.y50{bottom:908.205000px;}
.y13{bottom:920.805000px;}
.y4f{bottom:926.385000px;}
.y12{bottom:938.985000px;}
.y4e{bottom:944.745000px;}
.y11{bottom:957.930000px;}
.y4d{bottom:962.970000px;}
.y10{bottom:977.910000px;}
.y4c{bottom:981.150000px;}
.yf{bottom:997.890000px;}
.y4b{bottom:999.510000px;}
.ye{bottom:1017.510000px;}
.y4a{bottom:1017.690000px;}
.yd{bottom:1035.690000px;}
.y49{bottom:1035.870000px;}
.yc{bottom:1053.870000px;}
.y48{bottom:1054.050000px;}
.yb{bottom:1072.230000px;}
.y47{bottom:1072.410000px;}
.y46{bottom:1090.590000px;}
.ya{bottom:1095.630000px;}
.y45{bottom:1108.770000px;}
.y9{bottom:1115.610000px;}
.y44{bottom:1127.130000px;}
.y8{bottom:1136.670000px;}
.y43{bottom:1145.310000px;}
.y7{bottom:1157.550000px;}
.y42{bottom:1163.490000px;}
.y6{bottom:1179.690000px;}
.y41{bottom:1181.670000px;}
.y3{bottom:1200.600000px;}
.y2{bottom:1216.980000px;}
.y1{bottom:1233.540000px;}
.h4{height:32.905898px;}
.h3{height:36.834961px;}
.h2{height:44.534180px;}
.h5{height:45.184219px;}
.h6{height:49.113281px;}
.hb{height:58.242656px;}
.hd{height:60.577031px;}
.ha{height:61.423863px;}
.hc{height:64.558125px;}
.h9{height:67.145625px;}
.h8{height:67.365000px;}
.h7{height:70.065000px;}
.h0{height:1300.320000px;}
.h1{height:1300.500000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:106.416000px;}
.x3{left:133.416000px;}
.x4{left:159.510000px;}
.x2{left:823.110000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.773333pt;}
.ls5{letter-spacing:-0.030720pt;}
.ls4{letter-spacing:-0.016000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.039680pt;}
.ls0{letter-spacing:0.203520pt;}
.ls1{letter-spacing:15.952640pt;}
.ws0{word-spacing:-58.849280pt;}
.ws1{word-spacing:-18.737920pt;}
.ws2{word-spacing:0.000000pt;}
._0{margin-left:-0.912000pt;}
._1{width:1.077333pt;}
._6{width:2.388693pt;}
._8{width:3.771520pt;}
._c{width:4.993280pt;}
._a{width:6.374400pt;}
._9{width:7.277440pt;}
._b{width:8.729387pt;}
._e{width:10.252160pt;}
._11{width:11.479893pt;}
._10{width:12.727893pt;}
._d{width:14.023680pt;}
._18{width:14.958933pt;}
._16{width:16.239787pt;}
._f{width:17.788587pt;}
._13{width:20.418773pt;}
._17{width:22.273493pt;}
._19{width:31.447040pt;}
._15{width:32.384213pt;}
._14{width:33.359360pt;}
._12{width:44.021547pt;}
._7{width:45.102720pt;}
._4{width:93.020160pt;}
._5{width:94.064640pt;}
._2{width:100.048000pt;}
._3{width:177.952000pt;}
.fs1{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs4{font-size:61.440000pt;}
.fs3{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:51.040000pt;}
.y4{bottom:65.440000pt;}
.y40{bottom:89.120000pt;}
.y7c{bottom:93.120000pt;}
.y3f{bottom:105.440000pt;}
.y7b{bottom:110.400000pt;}
.y3e{bottom:121.600000pt;}
.y7a{bottom:126.720000pt;}
.y3d{bottom:137.760000pt;}
.y79{bottom:142.880000pt;}
.y3c{bottom:153.920000pt;}
.y78{bottom:159.040000pt;}
.y3b{bottom:170.240000pt;}
.y77{bottom:175.200000pt;}
.y3a{bottom:186.400000pt;}
.y76{bottom:191.520000pt;}
.y39{bottom:202.560000pt;}
.y75{bottom:207.680000pt;}
.y38{bottom:218.880000pt;}
.y74{bottom:223.866667pt;}
.y37{bottom:235.066667pt;}
.y73{bottom:240.026667pt;}
.y36{bottom:251.226667pt;}
.y72{bottom:256.346667pt;}
.y35{bottom:267.386667pt;}
.y71{bottom:272.506667pt;}
.y34{bottom:283.706667pt;}
.y70{bottom:288.666667pt;}
.y33{bottom:299.866667pt;}
.y6f{bottom:304.986667pt;}
.y32{bottom:316.026667pt;}
.y6e{bottom:321.146667pt;}
.y31{bottom:332.346667pt;}
.y6d{bottom:337.306667pt;}
.y30{bottom:348.506667pt;}
.y6c{bottom:353.466667pt;}
.y2f{bottom:364.666667pt;}
.y6b{bottom:369.786667pt;}
.y2e{bottom:380.826667pt;}
.y6a{bottom:385.946667pt;}
.y2d{bottom:397.146667pt;}
.y69{bottom:402.106667pt;}
.y2c{bottom:413.306667pt;}
.y68{bottom:418.426667pt;}
.y2b{bottom:429.466667pt;}
.y67{bottom:434.626667pt;}
.y2a{bottom:445.666667pt;}
.y66{bottom:450.786667pt;}
.y29{bottom:461.986667pt;}
.y65{bottom:466.946667pt;}
.y28{bottom:478.146667pt;}
.y64{bottom:483.266667pt;}
.y27{bottom:494.306667pt;}
.y63{bottom:499.426667pt;}
.y26{bottom:510.626667pt;}
.y62{bottom:515.586667pt;}
.y25{bottom:526.786667pt;}
.y61{bottom:531.746667pt;}
.y24{bottom:542.946667pt;}
.y60{bottom:548.066667pt;}
.y23{bottom:559.106667pt;}
.y5f{bottom:564.226667pt;}
.y22{bottom:575.426667pt;}
.y5e{bottom:580.386667pt;}
.y21{bottom:591.586667pt;}
.y5d{bottom:596.706667pt;}
.y20{bottom:607.746667pt;}
.y5c{bottom:612.866667pt;}
.y1f{bottom:624.066667pt;}
.y5b{bottom:629.026667pt;}
.y1e{bottom:640.253333pt;}
.y5a{bottom:645.213333pt;}
.y1d{bottom:656.413333pt;}
.y59{bottom:661.533333pt;}
.y1c{bottom:672.573333pt;}
.y58{bottom:677.693333pt;}
.y1b{bottom:688.893333pt;}
.y57{bottom:693.853333pt;}
.y1a{bottom:705.053333pt;}
.y56{bottom:710.173333pt;}
.y19{bottom:721.213333pt;}
.y55{bottom:726.333333pt;}
.y18{bottom:737.373333pt;}
.y54{bottom:742.493333pt;}
.y17{bottom:753.693333pt;}
.y53{bottom:758.653333pt;}
.y16{bottom:769.853333pt;}
.y52{bottom:774.973333pt;}
.y15{bottom:786.013333pt;}
.y51{bottom:791.133333pt;}
.y14{bottom:802.333333pt;}
.y50{bottom:807.293333pt;}
.y13{bottom:818.493333pt;}
.y4f{bottom:823.453333pt;}
.y12{bottom:834.653333pt;}
.y4e{bottom:839.773333pt;}
.y11{bottom:851.493333pt;}
.y4d{bottom:855.973333pt;}
.y10{bottom:869.253333pt;}
.y4c{bottom:872.133333pt;}
.yf{bottom:887.013333pt;}
.y4b{bottom:888.453333pt;}
.ye{bottom:904.453333pt;}
.y4a{bottom:904.613333pt;}
.yd{bottom:920.613333pt;}
.y49{bottom:920.773333pt;}
.yc{bottom:936.773333pt;}
.y48{bottom:936.933333pt;}
.yb{bottom:953.093333pt;}
.y47{bottom:953.253333pt;}
.y46{bottom:969.413333pt;}
.ya{bottom:973.893333pt;}
.y45{bottom:985.573333pt;}
.y9{bottom:991.653333pt;}
.y44{bottom:1001.893333pt;}
.y8{bottom:1010.373333pt;}
.y43{bottom:1018.053333pt;}
.y7{bottom:1028.933333pt;}
.y42{bottom:1034.213333pt;}
.y6{bottom:1048.613333pt;}
.y41{bottom:1050.373333pt;}
.y3{bottom:1067.200000pt;}
.y2{bottom:1081.760000pt;}
.y1{bottom:1096.480000pt;}
.h4{height:29.249687pt;}
.h3{height:32.742188pt;}
.h2{height:39.585938pt;}
.h5{height:40.163750pt;}
.h6{height:43.656250pt;}
.hb{height:51.771250pt;}
.hd{height:53.846250pt;}
.ha{height:54.598989pt;}
.hc{height:57.385000pt;}
.h9{height:59.685000pt;}
.h8{height:59.880000pt;}
.h7{height:62.280000pt;}
.h0{height:1155.840000pt;}
.h1{height:1156.000000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:94.592000pt;}
.x3{left:118.592000pt;}
.x4{left:141.786667pt;}
.x2{left:731.653333pt;}
}




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