
    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_140bc85f4704548139fd3abc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_c5e6e13116d8352227e057d2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_843d0d1baad07cbb62f9814e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005859;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_898eb21f35853732de419457.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.752441;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_58985701b4c755d552b4c977.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_29b334f464f968931d5e18df.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_ad488dd8557fb99f7c451dfd.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.091309;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;}
.ls5{letter-spacing:-0.378600px;}
.ls7{letter-spacing:-0.360000px;}
.ls3{letter-spacing:-0.144000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.037440px;}
.ls4{letter-spacing:0.341400px;}
.ls6{letter-spacing:0.360000px;}
.ls0{letter-spacing:64.026720px;}
.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:-59.760000px;}
.ws6{word-spacing:-21.420000px;}
.ws4{word-spacing:-21.401400px;}
.ws3{word-spacing:-21.097440px;}
.ws2{word-spacing:-21.060000px;}
.ws7{word-spacing:-20.700000px;}
.ws5{word-spacing:-20.681400px;}
.ws1{word-spacing:0.000000px;}
._1a{margin-left:-5.421120px;}
._5{margin-left:-4.386480px;}
._1{margin-left:-2.733120px;}
._0{margin-left:-1.312080px;}
._4{width:1.213920px;}
._f{width:2.516880px;}
._a{width:3.706560px;}
._b{width:4.765920px;}
._c{width:6.451200px;}
._17{width:7.736400px;}
._10{width:8.813280px;}
._11{width:10.561920px;}
._16{width:12.396000px;}
._14{width:13.646880px;}
._6{width:15.247440px;}
._7{width:16.785360px;}
._12{width:18.159360px;}
._13{width:19.428000px;}
._19{width:22.362000px;}
._18{width:23.386320px;}
._9{width:26.162880px;}
._8{width:27.293760px;}
._1b{width:30.073680px;}
._1c{width:31.220160px;}
._d{width:36.307440px;}
._e{width:37.464960px;}
._1f{width:47.524080px;}
._1e{width:48.690720px;}
._15{width:61.038240px;}
._1d{width:99.957120px;}
._2{width:641.856000px;}
._3{width:1830.720000px;}
.fc2{color:transparent;}
.fc1{color:rgb(38,38,38);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:59.760000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:144.000000px;}
.fs2{font-size:216.000000px;}
.y6{bottom:-25.020000px;}
.y29{bottom:-4.350000px;}
.y0{bottom:0.000000px;}
.yb{bottom:5.400000px;}
.y8{bottom:5.940000px;}
.y5{bottom:10.830000px;}
.ya{bottom:12.240000px;}
.y2{bottom:20.340000px;}
.y7{bottom:31.500000px;}
.y4{bottom:47.010000px;}
.yc{bottom:59.400000px;}
.yd{bottom:64.800000px;}
.y27{bottom:82.410000px;}
.y5a{bottom:138.240000px;}
.y44{bottom:153.540000px;}
.y25{bottom:162.000000px;}
.y59{bottom:174.450000px;}
.y43{bottom:189.750000px;}
.y24{bottom:198.030000px;}
.y58{bottom:210.630000px;}
.y42{bottom:225.930000px;}
.y23{bottom:234.210000px;}
.y57{bottom:246.990000px;}
.y41{bottom:262.110000px;}
.y22{bottom:270.390000px;}
.y56{bottom:283.170000px;}
.y40{bottom:298.290000px;}
.y21{bottom:306.750000px;}
.y55{bottom:319.350000px;}
.y3f{bottom:334.650000px;}
.y20{bottom:342.930000px;}
.y54{bottom:355.530000px;}
.y3e{bottom:370.830000px;}
.y1f{bottom:379.110000px;}
.y53{bottom:391.890000px;}
.y3d{bottom:407.010000px;}
.y1e{bottom:414.975000px;}
.y52{bottom:428.115000px;}
.y3c{bottom:443.235000px;}
.y51{bottom:464.295000px;}
.y1d{bottom:472.755000px;}
.y3b{bottom:479.595000px;}
.y50{bottom:500.475000px;}
.y1c{bottom:508.755000px;}
.y3a{bottom:515.775000px;}
.y4f{bottom:536.835000px;}
.y1b{bottom:545.115000px;}
.y39{bottom:551.955000px;}
.y4e{bottom:573.015000px;}
.y1a{bottom:580.935000px;}
.y38{bottom:588.135000px;}
.y4d{bottom:609.195000px;}
.y37{bottom:624.495000px;}
.y19{bottom:638.715000px;}
.y4c{bottom:645.375000px;}
.y36{bottom:660.705000px;}
.y18{bottom:674.745000px;}
.y4b{bottom:681.585000px;}
.y35{bottom:696.885000px;}
.y17{bottom:710.925000px;}
.y4a{bottom:717.945000px;}
.y34{bottom:733.065000px;}
.y16{bottom:747.285000px;}
.y49{bottom:754.125000px;}
.y33{bottom:769.245000px;}
.y15{bottom:783.465000px;}
.y48{bottom:790.305000px;}
.y32{bottom:805.605000px;}
.y14{bottom:819.645000px;}
.y47{bottom:826.485000px;}
.y31{bottom:841.785000px;}
.y13{bottom:855.825000px;}
.y46{bottom:862.845000px;}
.y12{bottom:892.005000px;}
.y45{bottom:899.025000px;}
.y30{bottom:899.205000px;}
.y11{bottom:928.410000px;}
.y2f{bottom:935.250000px;}
.y10{bottom:964.590000px;}
.y2e{bottom:971.430000px;}
.yf{bottom:1000.410000px;}
.y2d{bottom:1007.790000px;}
.ye{bottom:1031.910000px;}
.y26{bottom:1033.560000px;}
.y2c{bottom:1043.970000px;}
.y28{bottom:1079.790000px;}
.y2b{bottom:1080.150000px;}
.y2a{bottom:1116.330000px;}
.y3{bottom:1148.190000px;}
.y1{bottom:1171.260000px;}
.y9{bottom:1195.920000px;}
.h6{height:25.380000px;}
.h2{height:40.320000px;}
.h7{height:58.651172px;}
.h4{height:66.450000px;}
.hd{height:73.751133px;}
.h5{height:82.676953px;}
.h3{height:84.898125px;}
.hb{height:101.880000px;}
.ha{height:106.593750px;}
.h8{height:110.700000px;}
.hc{height:145.125000px;}
.h9{height:182.039062px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w5{width:122.400000px;}
.w3{width:163.830000px;}
.w4{width:169.230000px;}
.w2{width:188.481000px;}
.w6{width:693.720000px;}
.w1{width:893.250000px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x15{left:1.116000px;}
.x4{left:22.680000px;}
.x17{left:29.880000px;}
.x7{left:44.820000px;}
.x8{left:74.700000px;}
.x12{left:88.956000px;}
.xc{left:93.096000px;}
.xf{left:95.436000px;}
.x6{left:100.476000px;}
.x1{left:106.425000px;}
.x5{left:108.036000px;}
.x13{left:124.776000px;}
.x14{left:143.316000px;}
.x16{left:259.230000px;}
.xd{left:274.935000px;}
.x10{left:331.275000px;}
.x11{left:335.415000px;}
.xb{left:347.655000px;}
.xe{left:357.555000px;}
.x18{left:395.355000px;}
.xa{left:409.935000px;}
.x3{left:643.830000px;}
.x2{left:648.150000px;}
.x9{left:838.620000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.336533pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.033280pt;}
.ls4{letter-spacing:0.303467pt;}
.ls6{letter-spacing:0.320000pt;}
.ls0{letter-spacing:56.912640pt;}
.ws0{word-spacing:-53.120000pt;}
.ws6{word-spacing:-19.040000pt;}
.ws4{word-spacing:-19.023467pt;}
.ws3{word-spacing:-18.753280pt;}
.ws2{word-spacing:-18.720000pt;}
.ws7{word-spacing:-18.400000pt;}
.ws5{word-spacing:-18.383467pt;}
.ws1{word-spacing:0.000000pt;}
._1a{margin-left:-4.818773pt;}
._5{margin-left:-3.899093pt;}
._1{margin-left:-2.429440pt;}
._0{margin-left:-1.166293pt;}
._4{width:1.079040pt;}
._f{width:2.237227pt;}
._a{width:3.294720pt;}
._b{width:4.236373pt;}
._c{width:5.734400pt;}
._17{width:6.876800pt;}
._10{width:7.834027pt;}
._11{width:9.388373pt;}
._16{width:11.018667pt;}
._14{width:12.130560pt;}
._6{width:13.553280pt;}
._7{width:14.920320pt;}
._12{width:16.141653pt;}
._13{width:17.269333pt;}
._19{width:19.877333pt;}
._18{width:20.787840pt;}
._9{width:23.255893pt;}
._8{width:24.261120pt;}
._1b{width:26.732160pt;}
._1c{width:27.751253pt;}
._d{width:32.273280pt;}
._e{width:33.302187pt;}
._1f{width:42.243627pt;}
._1e{width:43.280640pt;}
._15{width:54.256213pt;}
._1d{width:88.850773pt;}
._2{width:570.538667pt;}
._3{width:1627.306667pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:128.000000pt;}
.fs2{font-size:192.000000pt;}
.y6{bottom:-22.240000pt;}
.y29{bottom:-3.866667pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:4.800000pt;}
.y8{bottom:5.280000pt;}
.y5{bottom:9.626667pt;}
.ya{bottom:10.880000pt;}
.y2{bottom:18.080000pt;}
.y7{bottom:28.000000pt;}
.y4{bottom:41.786667pt;}
.yc{bottom:52.800000pt;}
.yd{bottom:57.600000pt;}
.y27{bottom:73.253333pt;}
.y5a{bottom:122.880000pt;}
.y44{bottom:136.480000pt;}
.y25{bottom:144.000000pt;}
.y59{bottom:155.066667pt;}
.y43{bottom:168.666667pt;}
.y24{bottom:176.026667pt;}
.y58{bottom:187.226667pt;}
.y42{bottom:200.826667pt;}
.y23{bottom:208.186667pt;}
.y57{bottom:219.546667pt;}
.y41{bottom:232.986667pt;}
.y22{bottom:240.346667pt;}
.y56{bottom:251.706667pt;}
.y40{bottom:265.146667pt;}
.y21{bottom:272.666667pt;}
.y55{bottom:283.866667pt;}
.y3f{bottom:297.466667pt;}
.y20{bottom:304.826667pt;}
.y54{bottom:316.026667pt;}
.y3e{bottom:329.626667pt;}
.y1f{bottom:336.986667pt;}
.y53{bottom:348.346667pt;}
.y3d{bottom:361.786667pt;}
.y1e{bottom:368.866667pt;}
.y52{bottom:380.546667pt;}
.y3c{bottom:393.986667pt;}
.y51{bottom:412.706667pt;}
.y1d{bottom:420.226667pt;}
.y3b{bottom:426.306667pt;}
.y50{bottom:444.866667pt;}
.y1c{bottom:452.226667pt;}
.y3a{bottom:458.466667pt;}
.y4f{bottom:477.186667pt;}
.y1b{bottom:484.546667pt;}
.y39{bottom:490.626667pt;}
.y4e{bottom:509.346667pt;}
.y1a{bottom:516.386667pt;}
.y38{bottom:522.786667pt;}
.y4d{bottom:541.506667pt;}
.y37{bottom:555.106667pt;}
.y19{bottom:567.746667pt;}
.y4c{bottom:573.666667pt;}
.y36{bottom:587.293333pt;}
.y18{bottom:599.773333pt;}
.y4b{bottom:605.853333pt;}
.y35{bottom:619.453333pt;}
.y17{bottom:631.933333pt;}
.y4a{bottom:638.173333pt;}
.y34{bottom:651.613333pt;}
.y16{bottom:664.253333pt;}
.y49{bottom:670.333333pt;}
.y33{bottom:683.773333pt;}
.y15{bottom:696.413333pt;}
.y48{bottom:702.493333pt;}
.y32{bottom:716.093333pt;}
.y14{bottom:728.573333pt;}
.y47{bottom:734.653333pt;}
.y31{bottom:748.253333pt;}
.y13{bottom:760.733333pt;}
.y46{bottom:766.973333pt;}
.y12{bottom:792.893333pt;}
.y45{bottom:799.133333pt;}
.y30{bottom:799.293333pt;}
.y11{bottom:825.253333pt;}
.y2f{bottom:831.333333pt;}
.y10{bottom:857.413333pt;}
.y2e{bottom:863.493333pt;}
.yf{bottom:889.253333pt;}
.y2d{bottom:895.813333pt;}
.ye{bottom:917.253333pt;}
.y26{bottom:918.720000pt;}
.y2c{bottom:927.973333pt;}
.y28{bottom:959.813333pt;}
.y2b{bottom:960.133333pt;}
.y2a{bottom:992.293333pt;}
.y3{bottom:1020.613333pt;}
.y1{bottom:1041.120000pt;}
.y9{bottom:1063.040000pt;}
.h6{height:22.560000pt;}
.h2{height:35.840000pt;}
.h7{height:52.134375pt;}
.h4{height:59.066667pt;}
.hd{height:65.556562pt;}
.h5{height:73.490625pt;}
.h3{height:75.465000pt;}
.hb{height:90.560000pt;}
.ha{height:94.750000pt;}
.h8{height:98.400000pt;}
.hc{height:129.000000pt;}
.h9{height:161.812500pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w5{width:108.800000pt;}
.w3{width:145.626667pt;}
.w4{width:150.426667pt;}
.w2{width:167.538667pt;}
.w6{width:616.640000pt;}
.w1{width:794.000000pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x15{left:0.992000pt;}
.x4{left:20.160000pt;}
.x17{left:26.560000pt;}
.x7{left:39.840000pt;}
.x8{left:66.400000pt;}
.x12{left:79.072000pt;}
.xc{left:82.752000pt;}
.xf{left:84.832000pt;}
.x6{left:89.312000pt;}
.x1{left:94.600000pt;}
.x5{left:96.032000pt;}
.x13{left:110.912000pt;}
.x14{left:127.392000pt;}
.x16{left:230.426667pt;}
.xd{left:244.386667pt;}
.x10{left:294.466667pt;}
.x11{left:298.146667pt;}
.xb{left:309.026667pt;}
.xe{left:317.826667pt;}
.x18{left:351.426667pt;}
.xa{left:364.386667pt;}
.x3{left:572.293333pt;}
.x2{left:576.133333pt;}
.x9{left:745.440000pt;}
}




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