
    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_34860ff4d80310efc7a43779.woff')format("woff");}.ff1{font-family:ff1;line-height:1.081055;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_a9eb52fcbcf3c88716ed7c05.woff')format("woff");}.ff2{font-family:ff2;line-height:1.081055;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_fb6b32162e10c553f5dacd77.woff')format("woff");}.ff3{font-family:ff3;line-height:1.090332;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_ceec2518f46ec413ff2ece79.woff')format("woff");}.ff4{font-family:ff4;line-height:1.090332;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_c319f858bcc8cebc13dec950.woff')format("woff");}.ff5{font-family:ff5;line-height:1.030273;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_c9377bccdc99f055508b8c17.woff')format("woff");}.ff6{font-family:ff6;line-height:1.030273;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;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.159840px;}
.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:-9.792720px;}
.ws1{word-spacing:0.000000px;}
._3{margin-left:-5.400000px;}
._2{margin-left:-3.600000px;}
._0{margin-left:-2.016000px;}
._4{margin-left:-1.008000px;}
._1{width:1.152000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y8{bottom:3.420000px;}
.y27{bottom:3.600000px;}
.ya{bottom:10.440000px;}
.y46{bottom:10.470000px;}
.ye{bottom:10.485000px;}
.y7{bottom:18.000000px;}
.y26{bottom:18.180000px;}
.yc8{bottom:18.225000px;}
.yb{bottom:21.600000px;}
.y1b{bottom:21.630000px;}
.yf{bottom:21.645000px;}
.yc9{bottom:29.385000px;}
.y96{bottom:109.620000px;}
.y5d{bottom:110.340000px;}
.yb9{bottom:111.060000px;}
.y32{bottom:111.420000px;}
.y77{bottom:124.920000px;}
.y95{bottom:131.940000px;}
.y5c{bottom:132.660000px;}
.yb8{bottom:133.380000px;}
.y31{bottom:133.740000px;}
.y76{bottom:147.420000px;}
.y94{bottom:154.260000px;}
.y5b{bottom:154.980000px;}
.yb7{bottom:155.700000px;}
.y30{bottom:156.060000px;}
.y75{bottom:169.770000px;}
.y93{bottom:176.610000px;}
.y5a{bottom:177.330000px;}
.yb6{bottom:178.230000px;}
.y2f{bottom:178.410000px;}
.y74{bottom:192.090000px;}
.y59{bottom:199.830000px;}
.yb5{bottom:200.550000px;}
.y2e{bottom:200.910000px;}
.y92{bottom:206.670000px;}
.y73{bottom:214.410000px;}
.y58{bottom:222.150000px;}
.yb4{bottom:222.870000px;}
.y2d{bottom:223.230000px;}
.y91{bottom:228.990000px;}
.y72{bottom:236.730000px;}
.y57{bottom:244.470000px;}
.yb3{bottom:245.190000px;}
.y90{bottom:251.490000px;}
.y2c{bottom:253.290000px;}
.y71{bottom:259.050000px;}
.y56{bottom:266.790000px;}
.yb2{bottom:267.510000px;}
.y8f{bottom:273.810000px;}
.y2b{bottom:275.610000px;}
.y70{bottom:281.550000px;}
.y55{bottom:289.110000px;}
.yb1{bottom:289.830000px;}
.y8e{bottom:296.130000px;}
.y2a{bottom:297.930000px;}
.y54{bottom:311.430000px;}
.yb0{bottom:312.330000px;}
.y8d{bottom:318.450000px;}
.y29{bottom:320.250000px;}
.y53{bottom:333.930000px;}
.yaf{bottom:334.650000px;}
.y8c{bottom:340.770000px;}
.yc7{bottom:341.490000px;}
.y28{bottom:350.310000px;}
.y52{bottom:356.250000px;}
.yae{bottom:356.970000px;}
.y8b{bottom:363.090000px;}
.yc6{bottom:371.550000px;}
.y25{bottom:372.630000px;}
.y51{bottom:378.570000px;}
.yad{bottom:379.290000px;}
.y8a{bottom:385.590000px;}
.y6f{bottom:386.310000px;}
.yc5{bottom:394.050000px;}
.y50{bottom:400.935000px;}
.yac{bottom:401.655000px;}
.y24{bottom:402.735000px;}
.y89{bottom:407.955000px;}
.y6e{bottom:408.675000px;}
.yc4{bottom:416.415000px;}
.y4f{bottom:423.255000px;}
.yab{bottom:423.975000px;}
.y23{bottom:425.055000px;}
.y88{bottom:430.275000px;}
.y6d{bottom:430.995000px;}
.yc3{bottom:438.735000px;}
.y4e{bottom:445.575000px;}
.yaa{bottom:446.475000px;}
.y22{bottom:447.375000px;}
.y6c{bottom:453.315000px;}
.y87{bottom:460.335000px;}
.yc2{bottom:461.055000px;}
.y4d{bottom:468.075000px;}
.ya9{bottom:468.795000px;}
.y21{bottom:469.875000px;}
.y6b{bottom:475.635000px;}
.y86{bottom:482.655000px;}
.yc1{bottom:483.375000px;}
.y4c{bottom:490.395000px;}
.ya8{bottom:491.115000px;}
.y20{bottom:492.195000px;}
.y6a{bottom:498.135000px;}
.y85{bottom:504.975000px;}
.yc0{bottom:505.695000px;}
.y4b{bottom:512.715000px;}
.yd0{bottom:513.255000px;}
.ya7{bottom:513.435000px;}
.y1f{bottom:514.515000px;}
.y69{bottom:520.455000px;}
.y84{bottom:527.295000px;}
.ybf{bottom:528.015000px;}
.y4a{bottom:535.035000px;}
.ya6{bottom:535.755000px;}
.y1e{bottom:536.835000px;}
.y68{bottom:542.775000px;}
.y83{bottom:549.795000px;}
.ybe{bottom:550.515000px;}
.y49{bottom:557.355000px;}
.ya5{bottom:558.075000px;}
.y1d{bottom:559.155000px;}
.y67{bottom:565.095000px;}
.y82{bottom:572.115000px;}
.ybd{bottom:572.835000px;}
.y48{bottom:579.675000px;}
.ya4{bottom:580.575000px;}
.y1c{bottom:581.475000px;}
.y66{bottom:587.415000px;}
.y81{bottom:594.435000px;}
.ybc{bottom:595.155000px;}
.y47{bottom:602.175000px;}
.ya3{bottom:602.895000px;}
.y1a{bottom:603.975000px;}
.y65{bottom:609.735000px;}
.ybb{bottom:617.475000px;}
.y45{bottom:624.495000px;}
.ya2{bottom:625.245000px;}
.y19{bottom:626.325000px;}
.y64{bottom:632.265000px;}
.yba{bottom:639.825000px;}
.y44{bottom:646.845000px;}
.ya1{bottom:647.565000px;}
.y18{bottom:648.645000px;}
.y63{bottom:654.585000px;}
.ycf{bottom:662.145000px;}
.y80{bottom:669.165000px;}
.ya0{bottom:669.885000px;}
.y17{bottom:670.965000px;}
.y43{bottom:676.905000px;}
.yce{bottom:684.645000px;}
.y9f{bottom:692.205000px;}
.y16{bottom:693.285000px;}
.y42{bottom:699.225000px;}
.ycd{bottom:706.965000px;}
.y9e{bottom:714.705000px;}
.y15{bottom:715.605000px;}
.y41{bottom:721.545000px;}
.ycc{bottom:729.285000px;}
.y9d{bottom:737.025000px;}
.y14{bottom:738.105000px;}
.y40{bottom:743.865000px;}
.ycb{bottom:751.605000px;}
.y9c{bottom:759.345000px;}
.y13{bottom:760.425000px;}
.y3f{bottom:766.365000px;}
.yca{bottom:773.925000px;}
.y9b{bottom:781.665000px;}
.y12{bottom:782.745000px;}
.y62{bottom:788.685000px;}
.y3e{bottom:796.245000px;}
.y9a{bottom:803.985000px;}
.y11{bottom:805.065000px;}
.y61{bottom:811.005000px;}
.y3d{bottom:818.745000px;}
.y99{bottom:826.305000px;}
.y10{bottom:827.385000px;}
.y60{bottom:833.325000px;}
.y3c{bottom:841.065000px;}
.y98{bottom:848.805000px;}
.yd{bottom:849.705000px;}
.y7f{bottom:855.690000px;}
.y3b{bottom:863.430000px;}
.y97{bottom:871.170000px;}
.yc{bottom:872.250000px;}
.y7e{bottom:878.010000px;}
.y5f{bottom:885.750000px;}
.y3a{bottom:893.490000px;}
.y7d{bottom:900.510000px;}
.y9{bottom:902.310000px;}
.y5e{bottom:908.070000px;}
.y39{bottom:915.810000px;}
.y7c{bottom:922.830000px;}
.y6{bottom:924.630000px;}
.y38{bottom:938.130000px;}
.y7b{bottom:945.150000px;}
.y5{bottom:959.730000px;}
.y37{bottom:960.450000px;}
.y7a{bottom:967.470000px;}
.y4{bottom:981.690000px;}
.y36{bottom:982.950000px;}
.y79{bottom:989.790000px;}
.y3{bottom:1003.650000px;}
.y35{bottom:1005.270000px;}
.y78{bottom:1019.850000px;}
.y2{bottom:1025.610000px;}
.y34{bottom:1027.590000px;}
.y33{bottom:1049.910000px;}
.y1{bottom:1063.050000px;}
.h5{height:21.600000px;}
.h8{height:21.636000px;}
.h3{height:29.160000px;}
.ha{height:29.340000px;}
.h9{height:29.376000px;}
.h6{height:40.773164px;}
.h4{height:41.644687px;}
.h7{height:41.809570px;}
.hb{height:51.793945px;}
.h1{height:62.156250px;}
.h2{height:62.402344px;}
.h0{height:1188.000000px;}
.w4{width:60.660000px;}
.w3{width:85.896000px;}
.w6{width:93.780000px;}
.w5{width:100.476000px;}
.w8{width:140.940000px;}
.w7{width:141.156000px;}
.w2{width:169.740000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x8{left:8.640000px;}
.xf{left:10.080000px;}
.xc{left:11.520000px;}
.x9{left:14.580000px;}
.x6{left:17.640000px;}
.xd{left:19.440000px;}
.x3{left:22.320000px;}
.x4{left:62.994000px;}
.x12{left:64.440000px;}
.x11{left:86.250000px;}
.x2{left:108.035986px;}
.x5{left:279.390000px;}
.x1{left:343.334986px;}
.x7{left:366.015000px;}
.xa{left:427.395000px;}
.xb{left:528.585000px;}
.xe{left:623.085000px;}
.x10{left:764.970000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.142080pt;}
.ws0{word-spacing:-8.704640pt;}
.ws1{word-spacing:0.000000pt;}
._3{margin-left:-4.800000pt;}
._2{margin-left:-3.200000pt;}
._0{margin-left:-1.792000pt;}
._4{margin-left:-0.896000pt;}
._1{width:1.024000pt;}
.fs1{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:3.040000pt;}
.y27{bottom:3.200000pt;}
.ya{bottom:9.280000pt;}
.y46{bottom:9.306667pt;}
.ye{bottom:9.320000pt;}
.y7{bottom:16.000000pt;}
.y26{bottom:16.160000pt;}
.yc8{bottom:16.200000pt;}
.yb{bottom:19.200000pt;}
.y1b{bottom:19.226667pt;}
.yf{bottom:19.240000pt;}
.yc9{bottom:26.120000pt;}
.y96{bottom:97.440000pt;}
.y5d{bottom:98.080000pt;}
.yb9{bottom:98.720000pt;}
.y32{bottom:99.040000pt;}
.y77{bottom:111.040000pt;}
.y95{bottom:117.280000pt;}
.y5c{bottom:117.920000pt;}
.yb8{bottom:118.560000pt;}
.y31{bottom:118.880000pt;}
.y76{bottom:131.040000pt;}
.y94{bottom:137.120000pt;}
.y5b{bottom:137.760000pt;}
.yb7{bottom:138.400000pt;}
.y30{bottom:138.720000pt;}
.y75{bottom:150.906667pt;}
.y93{bottom:156.986667pt;}
.y5a{bottom:157.626667pt;}
.yb6{bottom:158.426667pt;}
.y2f{bottom:158.586667pt;}
.y74{bottom:170.746667pt;}
.y59{bottom:177.626667pt;}
.yb5{bottom:178.266667pt;}
.y2e{bottom:178.586667pt;}
.y92{bottom:183.706667pt;}
.y73{bottom:190.586667pt;}
.y58{bottom:197.466667pt;}
.yb4{bottom:198.106667pt;}
.y2d{bottom:198.426667pt;}
.y91{bottom:203.546667pt;}
.y72{bottom:210.426667pt;}
.y57{bottom:217.306667pt;}
.yb3{bottom:217.946667pt;}
.y90{bottom:223.546667pt;}
.y2c{bottom:225.146667pt;}
.y71{bottom:230.266667pt;}
.y56{bottom:237.146667pt;}
.yb2{bottom:237.786667pt;}
.y8f{bottom:243.386667pt;}
.y2b{bottom:244.986667pt;}
.y70{bottom:250.266667pt;}
.y55{bottom:256.986667pt;}
.yb1{bottom:257.626667pt;}
.y8e{bottom:263.226667pt;}
.y2a{bottom:264.826667pt;}
.y54{bottom:276.826667pt;}
.yb0{bottom:277.626667pt;}
.y8d{bottom:283.066667pt;}
.y29{bottom:284.666667pt;}
.y53{bottom:296.826667pt;}
.yaf{bottom:297.466667pt;}
.y8c{bottom:302.906667pt;}
.yc7{bottom:303.546667pt;}
.y28{bottom:311.386667pt;}
.y52{bottom:316.666667pt;}
.yae{bottom:317.306667pt;}
.y8b{bottom:322.746667pt;}
.yc6{bottom:330.266667pt;}
.y25{bottom:331.226667pt;}
.y51{bottom:336.506667pt;}
.yad{bottom:337.146667pt;}
.y8a{bottom:342.746667pt;}
.y6f{bottom:343.386667pt;}
.yc5{bottom:350.266667pt;}
.y50{bottom:356.386667pt;}
.yac{bottom:357.026667pt;}
.y24{bottom:357.986667pt;}
.y89{bottom:362.626667pt;}
.y6e{bottom:363.266667pt;}
.yc4{bottom:370.146667pt;}
.y4f{bottom:376.226667pt;}
.yab{bottom:376.866667pt;}
.y23{bottom:377.826667pt;}
.y88{bottom:382.466667pt;}
.y6d{bottom:383.106667pt;}
.yc3{bottom:389.986667pt;}
.y4e{bottom:396.066667pt;}
.yaa{bottom:396.866667pt;}
.y22{bottom:397.666667pt;}
.y6c{bottom:402.946667pt;}
.y87{bottom:409.186667pt;}
.yc2{bottom:409.826667pt;}
.y4d{bottom:416.066667pt;}
.ya9{bottom:416.706667pt;}
.y21{bottom:417.666667pt;}
.y6b{bottom:422.786667pt;}
.y86{bottom:429.026667pt;}
.yc1{bottom:429.666667pt;}
.y4c{bottom:435.906667pt;}
.ya8{bottom:436.546667pt;}
.y20{bottom:437.506667pt;}
.y6a{bottom:442.786667pt;}
.y85{bottom:448.866667pt;}
.yc0{bottom:449.506667pt;}
.y4b{bottom:455.746667pt;}
.yd0{bottom:456.226667pt;}
.ya7{bottom:456.386667pt;}
.y1f{bottom:457.346667pt;}
.y69{bottom:462.626667pt;}
.y84{bottom:468.706667pt;}
.ybf{bottom:469.346667pt;}
.y4a{bottom:475.586667pt;}
.ya6{bottom:476.226667pt;}
.y1e{bottom:477.186667pt;}
.y68{bottom:482.466667pt;}
.y83{bottom:488.706667pt;}
.ybe{bottom:489.346667pt;}
.y49{bottom:495.426667pt;}
.ya5{bottom:496.066667pt;}
.y1d{bottom:497.026667pt;}
.y67{bottom:502.306667pt;}
.y82{bottom:508.546667pt;}
.ybd{bottom:509.186667pt;}
.y48{bottom:515.266667pt;}
.ya4{bottom:516.066667pt;}
.y1c{bottom:516.866667pt;}
.y66{bottom:522.146667pt;}
.y81{bottom:528.386667pt;}
.ybc{bottom:529.026667pt;}
.y47{bottom:535.266667pt;}
.ya3{bottom:535.906667pt;}
.y1a{bottom:536.866667pt;}
.y65{bottom:541.986667pt;}
.ybb{bottom:548.866667pt;}
.y45{bottom:555.106667pt;}
.ya2{bottom:555.773333pt;}
.y19{bottom:556.733333pt;}
.y64{bottom:562.013333pt;}
.yba{bottom:568.733333pt;}
.y44{bottom:574.973333pt;}
.ya1{bottom:575.613333pt;}
.y18{bottom:576.573333pt;}
.y63{bottom:581.853333pt;}
.ycf{bottom:588.573333pt;}
.y80{bottom:594.813333pt;}
.ya0{bottom:595.453333pt;}
.y17{bottom:596.413333pt;}
.y43{bottom:601.693333pt;}
.yce{bottom:608.573333pt;}
.y9f{bottom:615.293333pt;}
.y16{bottom:616.253333pt;}
.y42{bottom:621.533333pt;}
.ycd{bottom:628.413333pt;}
.y9e{bottom:635.293333pt;}
.y15{bottom:636.093333pt;}
.y41{bottom:641.373333pt;}
.ycc{bottom:648.253333pt;}
.y9d{bottom:655.133333pt;}
.y14{bottom:656.093333pt;}
.y40{bottom:661.213333pt;}
.ycb{bottom:668.093333pt;}
.y9c{bottom:674.973333pt;}
.y13{bottom:675.933333pt;}
.y3f{bottom:681.213333pt;}
.yca{bottom:687.933333pt;}
.y9b{bottom:694.813333pt;}
.y12{bottom:695.773333pt;}
.y62{bottom:701.053333pt;}
.y3e{bottom:707.773333pt;}
.y9a{bottom:714.653333pt;}
.y11{bottom:715.613333pt;}
.y61{bottom:720.893333pt;}
.y3d{bottom:727.773333pt;}
.y99{bottom:734.493333pt;}
.y10{bottom:735.453333pt;}
.y60{bottom:740.733333pt;}
.y3c{bottom:747.613333pt;}
.y98{bottom:754.493333pt;}
.yd{bottom:755.293333pt;}
.y7f{bottom:760.613333pt;}
.y3b{bottom:767.493333pt;}
.y97{bottom:774.373333pt;}
.yc{bottom:775.333333pt;}
.y7e{bottom:780.453333pt;}
.y5f{bottom:787.333333pt;}
.y3a{bottom:794.213333pt;}
.y7d{bottom:800.453333pt;}
.y9{bottom:802.053333pt;}
.y5e{bottom:807.173333pt;}
.y39{bottom:814.053333pt;}
.y7c{bottom:820.293333pt;}
.y6{bottom:821.893333pt;}
.y38{bottom:833.893333pt;}
.y7b{bottom:840.133333pt;}
.y5{bottom:853.093333pt;}
.y37{bottom:853.733333pt;}
.y7a{bottom:859.973333pt;}
.y4{bottom:872.613333pt;}
.y36{bottom:873.733333pt;}
.y79{bottom:879.813333pt;}
.y3{bottom:892.133333pt;}
.y35{bottom:893.573333pt;}
.y78{bottom:906.533333pt;}
.y2{bottom:911.653333pt;}
.y34{bottom:913.413333pt;}
.y33{bottom:933.253333pt;}
.y1{bottom:944.933333pt;}
.h5{height:19.200000pt;}
.h8{height:19.232000pt;}
.h3{height:25.920000pt;}
.ha{height:26.080000pt;}
.h9{height:26.112000pt;}
.h6{height:36.242812pt;}
.h4{height:37.017500pt;}
.h7{height:37.164062pt;}
.hb{height:46.039063pt;}
.h1{height:55.250000pt;}
.h2{height:55.468750pt;}
.h0{height:1056.000000pt;}
.w4{width:53.920000pt;}
.w3{width:76.352000pt;}
.w6{width:83.360000pt;}
.w5{width:89.312000pt;}
.w8{width:125.280000pt;}
.w7{width:125.472000pt;}
.w2{width:150.880000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x8{left:7.680000pt;}
.xf{left:8.960000pt;}
.xc{left:10.240000pt;}
.x9{left:12.960000pt;}
.x6{left:15.680000pt;}
.xd{left:17.280000pt;}
.x3{left:19.840000pt;}
.x4{left:55.994667pt;}
.x12{left:57.280000pt;}
.x11{left:76.666667pt;}
.x2{left:96.031988pt;}
.x5{left:248.346667pt;}
.x1{left:305.186655pt;}
.x7{left:325.346667pt;}
.xa{left:379.906667pt;}
.xb{left:469.853333pt;}
.xe{left:553.853333pt;}
.x10{left:679.973333pt;}
}




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