
    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_8e7143dcf74bbd0e2f6c94bd.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.939941;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_a341250e8ef0daa8da590132.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;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_9cf3d5f157d012579a70c15b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;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;}
.ls2{letter-spacing:-0.180000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.028080px;}
.ls1{letter-spacing:0.360000px;}
.ls6{letter-spacing:208.026720px;}
.ls5{letter-spacing:427.806720px;}
.ls4{letter-spacing:568.206720px;}
.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;}
}
.ws4{word-spacing:-59.760000px;}
.ws0{word-spacing:-21.420000px;}
.ws2{word-spacing:-21.088080px;}
.ws3{word-spacing:-21.060000px;}
.ws1{word-spacing:0.000000px;}
._f{margin-left:-4.398960px;}
._10{margin-left:-2.598960px;}
._0{margin-left:-1.263600px;}
._1{width:1.280400px;}
._8{width:2.503680px;}
._d{width:36.086160px;}
._5{width:39.413520px;}
._4{width:53.132160px;}
._b{width:58.319760px;}
._3{width:64.394640px;}
._c{width:71.496720px;}
._7{width:89.699040px;}
._2{width:97.687920px;}
._6{width:179.685120px;}
._9{width:233.280000px;}
._a{width:1007.777280px;}
._e{width:1169.798928px;}
.fc3{color:rgb(247,150,70);}
.fc2{color:rgb(152,72,7);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(54,95,145);}
.fs2{font-size:59.760000px;}
.fs0{font-size:84.240000px;}
.fs1{font-size:84.384000px;}
.y0{bottom:0.000000px;}
.y92{bottom:115.056000px;}
.y23{bottom:116.316000px;}
.y49{bottom:128.376000px;}
.y6f{bottom:130.356000px;}
.ycb{bottom:139.176000px;}
.y22{bottom:140.436000px;}
.y48{bottom:152.490000px;}
.y6e{bottom:158.430000px;}
.yca{bottom:163.290000px;}
.y21{bottom:164.550000px;}
.y91{bottom:169.230000px;}
.y47{bottom:176.610000px;}
.y6d{bottom:178.050000px;}
.yc9{bottom:187.410000px;}
.y20{bottom:188.670000px;}
.yb4{bottom:192.450000px;}
.y90{bottom:193.350000px;}
.y46{bottom:204.510000px;}
.y6c{bottom:206.670000px;}
.yc8{bottom:211.530000px;}
.y1f{bottom:212.790000px;}
.yb3{bottom:216.570000px;}
.y8f{bottom:217.470000px;}
.y6b{bottom:226.290000px;}
.y45{bottom:228.090000px;}
.yc7{bottom:235.650000px;}
.y1e{bottom:237.090000px;}
.y8e{bottom:245.370000px;}
.yb2{bottom:245.910000px;}
.y6a{bottom:255.630000px;}
.y44{bottom:256.710000px;}
.yc6{bottom:259.950000px;}
.y1d{bottom:261.210000px;}
.yb1{bottom:270.030000px;}
.y8d{bottom:274.710000px;}
.y69{bottom:279.750000px;}
.y43{bottom:280.830000px;}
.yc5{bottom:284.070000px;}
.y1c{bottom:285.330000px;}
.yb0{bottom:289.650000px;}
.y8c{bottom:298.830000px;}
.y68{bottom:303.915000px;}
.y42{bottom:304.995000px;}
.yc4{bottom:308.235000px;}
.y1b{bottom:309.495000px;}
.y8b{bottom:322.995000px;}
.y67{bottom:328.035000px;}
.y41{bottom:329.115000px;}
.yc3{bottom:332.355000px;}
.y1a{bottom:333.615000px;}
.yae{bottom:337.215000px;}
.y8a{bottom:347.115000px;}
.y66{bottom:347.655000px;}
.yc2{bottom:351.975000px;}
.y40{bottom:353.235000px;}
.y19{bottom:357.735000px;}
.yad{bottom:361.335000px;}
.y89{bottom:371.415000px;}
.y65{bottom:376.995000px;}
.y3f{bottom:377.535000px;}
.y18{bottom:385.635000px;}
.yac{bottom:390.675000px;}
.y88{bottom:395.535000px;}
.y64{bottom:401.115000px;}
.y3e{bottom:401.655000px;}
.y17{bottom:413.355000px;}
.yab{bottom:414.795000px;}
.y87{bottom:419.655000px;}
.y63{bottom:425.235000px;}
.y3d{bottom:425.775000px;}
.yaa{bottom:438.915000px;}
.y16{bottom:441.075000px;}
.y86{bottom:443.775000px;}
.y62{bottom:449.355000px;}
.y3c{bottom:449.895000px;}
.ya9{bottom:463.035000px;}
.y85{bottom:467.895000px;}
.y15{bottom:468.795000px;}
.y61{bottom:473.475000px;}
.y3b{bottom:474.015000px;}
.ya8{bottom:487.155000px;}
.y84{bottom:492.015000px;}
.y60{bottom:493.095000px;}
.y14{bottom:496.695000px;}
.y3a{bottom:498.135000px;}
.ya7{bottom:511.455000px;}
.y83{bottom:516.135000px;}
.y39{bottom:521.715000px;}
.y5f{bottom:522.435000px;}
.y13{bottom:524.415000px;}
.ya6{bottom:535.575000px;}
.y82{bottom:535.755000px;}
.y5e{bottom:546.555000px;}
.y38{bottom:550.335000px;}
.y12{bottom:552.135000px;}
.yc1{bottom:554.475000px;}
.ya5{bottom:559.725000px;}
.y81{bottom:569.625000px;}
.y5d{bottom:570.705000px;}
.y37{bottom:574.485000px;}
.yc0{bottom:578.625000px;}
.y11{bottom:580.065000px;}
.ya4{bottom:583.845000px;}
.y5c{bottom:595.005000px;}
.y36{bottom:602.385000px;}
.ybf{bottom:602.745000px;}
.y80{bottom:605.625000px;}
.y10{bottom:607.785000px;}
.ya3{bottom:607.965000px;}
.y5b{bottom:622.905000px;}
.y35{bottom:626.505000px;}
.ybe{bottom:627.045000px;}
.y7f{bottom:629.745000px;}
.ya2{bottom:632.085000px;}
.yf{bottom:635.505000px;}
.y5a{bottom:647.025000px;}
.y34{bottom:650.625000px;}
.ybd{bottom:651.165000px;}
.y7e{bottom:653.865000px;}
.ya1{bottom:656.385000px;}
.ye{bottom:663.225000px;}
.y59{bottom:671.145000px;}
.y33{bottom:674.925000px;}
.ybc{bottom:675.285000px;}
.y7d{bottom:678.165000px;}
.ya0{bottom:680.505000px;}
.y58{bottom:690.765000px;}
.yd{bottom:691.125000px;}
.ybb{bottom:699.405000px;}
.y7c{bottom:702.285000px;}
.y32{bottom:702.825000px;}
.y9f{bottom:704.625000px;}
.yc{bottom:718.845000px;}
.yba{bottom:723.525000px;}
.y31{bottom:726.225000px;}
.y7b{bottom:726.405000px;}
.y57{bottom:727.665000px;}
.y9e{bottom:728.745000px;}
.yb{bottom:746.565000px;}
.y56{bottom:747.285000px;}
.yb9{bottom:747.645000px;}
.y7a{bottom:750.525000px;}
.y9d{bottom:752.865000px;}
.y30{bottom:766.725000px;}
.yb8{bottom:771.945000px;}
.ya{bottom:774.285000px;}
.y79{bottom:774.645000px;}
.yaf{bottom:775.725000px;}
.y9c{bottom:776.985000px;}
.y55{bottom:779.685000px;}
.y2f{bottom:790.845000px;}
.yb7{bottom:796.065000px;}
.y78{bottom:798.765000px;}
.y9b{bottom:801.285000px;}
.y9{bottom:802.185000px;}
.y54{bottom:803.805000px;}
.y2e{bottom:815.010000px;}
.yb6{bottom:815.730000px;}
.y77{bottom:822.930000px;}
.y9a{bottom:825.450000px;}
.y53{bottom:828.150000px;}
.y8{bottom:829.950000px;}
.y2d{bottom:839.310000px;}
.yb5{bottom:839.850000px;}
.y76{bottom:847.230000px;}
.y52{bottom:852.270000px;}
.y7{bottom:857.670000px;}
.y2c{bottom:863.430000px;}
.y75{bottom:866.850000px;}
.y51{bottom:876.390000px;}
.y99{bottom:879.450000px;}
.y6{bottom:885.570000px;}
.y2b{bottom:887.550000px;}
.y50{bottom:900.510000px;}
.y74{bottom:902.850000px;}
.y5{bottom:913.290000px;}
.y2a{bottom:915.450000px;}
.y98{bottom:924.450000px;}
.y4f{bottom:924.630000px;}
.y73{bottom:926.970000px;}
.y29{bottom:939.570000px;}
.y4{bottom:941.010000px;}
.y72{bottom:946.590000px;}
.y4e{bottom:948.750000px;}
.y97{bottom:952.350000px;}
.y28{bottom:963.690000px;}
.y3{bottom:968.730000px;}
.y4d{bottom:973.050000px;}
.y96{bottom:976.470000px;}
.y71{bottom:978.990000px;}
.y27{bottom:987.990000px;}
.y2{bottom:996.630000px;}
.y95{bottom:1000.770000px;}
.y4c{bottom:1000.950000px;}
.y70{bottom:1003.110000px;}
.ycd{bottom:1004.550000px;}
.y26{bottom:1012.110000px;}
.y1{bottom:1024.350000px;}
.y94{bottom:1028.670000px;}
.y4b{bottom:1032.450000px;}
.ycc{bottom:1032.630000px;}
.y25{bottom:1036.230000px;}
.y4a{bottom:1052.070000px;}
.y93{bottom:1056.570000px;}
.y24{bottom:1060.350000px;}
.h1{height:60.999961px;}
.h2{height:75.519844px;}
.h3{height:75.648938px;}
.h0{height:1188.000000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:135.035986px;}
.x4{left:151.229986px;}
.x3{left:166.529986px;}
.x1d{left:178.229986px;}
.x15{left:189.029986px;}
.x1a{left:193.529986px;}
.x19{left:207.029986px;}
.x5{left:209.189986px;}
.xb{left:223.229986px;}
.x6{left:243.029986px;}
.xa{left:270.929986px;}
.x14{left:283.529986px;}
.x7{left:311.474986px;}
.x11{left:342.074986px;}
.x8{left:358.274986px;}
.x13{left:374.834986px;}
.x16{left:377.714986px;}
.xc{left:392.474986px;}
.x12{left:400.754986px;}
.x18{left:408.854986px;}
.x9{left:411.734986px;}
.x10{left:443.234986px;}
.x1e{left:455.474986px;}
.xf{left:481.574986px;}
.x2{left:486.074986px;}
.xd{left:488.234986px;}
.x1b{left:590.504986px;}
.x17{left:609.764986px;}
.xe{left:748.049986px;}
.x1c{left:769.649986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-0.160000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.024960pt;}
.ls1{letter-spacing:0.320000pt;}
.ls6{letter-spacing:184.912640pt;}
.ls5{letter-spacing:380.272640pt;}
.ls4{letter-spacing:505.072640pt;}
.ws4{word-spacing:-53.120000pt;}
.ws0{word-spacing:-19.040000pt;}
.ws2{word-spacing:-18.744960pt;}
.ws3{word-spacing:-18.720000pt;}
.ws1{word-spacing:0.000000pt;}
._f{margin-left:-3.910187pt;}
._10{margin-left:-2.310187pt;}
._0{margin-left:-1.123200pt;}
._1{width:1.138133pt;}
._8{width:2.225493pt;}
._d{width:32.076587pt;}
._5{width:35.034240pt;}
._4{width:47.228587pt;}
._b{width:51.839787pt;}
._3{width:57.239680pt;}
._c{width:63.552640pt;}
._7{width:79.732480pt;}
._2{width:86.833707pt;}
._6{width:159.720107pt;}
._9{width:207.360000pt;}
._a{width:895.802027pt;}
._e{width:1039.821269pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:74.880000pt;}
.fs1{font-size:75.008000pt;}
.y0{bottom:0.000000pt;}
.y92{bottom:102.272000pt;}
.y23{bottom:103.392000pt;}
.y49{bottom:114.112000pt;}
.y6f{bottom:115.872000pt;}
.ycb{bottom:123.712000pt;}
.y22{bottom:124.832000pt;}
.y48{bottom:135.546667pt;}
.y6e{bottom:140.826667pt;}
.yca{bottom:145.146667pt;}
.y21{bottom:146.266667pt;}
.y91{bottom:150.426667pt;}
.y47{bottom:156.986667pt;}
.y6d{bottom:158.266667pt;}
.yc9{bottom:166.586667pt;}
.y20{bottom:167.706667pt;}
.yb4{bottom:171.066667pt;}
.y90{bottom:171.866667pt;}
.y46{bottom:181.786667pt;}
.y6c{bottom:183.706667pt;}
.yc8{bottom:188.026667pt;}
.y1f{bottom:189.146667pt;}
.yb3{bottom:192.506667pt;}
.y8f{bottom:193.306667pt;}
.y6b{bottom:201.146667pt;}
.y45{bottom:202.746667pt;}
.yc7{bottom:209.466667pt;}
.y1e{bottom:210.746667pt;}
.y8e{bottom:218.106667pt;}
.yb2{bottom:218.586667pt;}
.y6a{bottom:227.226667pt;}
.y44{bottom:228.186667pt;}
.yc6{bottom:231.066667pt;}
.y1d{bottom:232.186667pt;}
.yb1{bottom:240.026667pt;}
.y8d{bottom:244.186667pt;}
.y69{bottom:248.666667pt;}
.y43{bottom:249.626667pt;}
.yc5{bottom:252.506667pt;}
.y1c{bottom:253.626667pt;}
.yb0{bottom:257.466667pt;}
.y8c{bottom:265.626667pt;}
.y68{bottom:270.146667pt;}
.y42{bottom:271.106667pt;}
.yc4{bottom:273.986667pt;}
.y1b{bottom:275.106667pt;}
.y8b{bottom:287.106667pt;}
.y67{bottom:291.586667pt;}
.y41{bottom:292.546667pt;}
.yc3{bottom:295.426667pt;}
.y1a{bottom:296.546667pt;}
.yae{bottom:299.746667pt;}
.y8a{bottom:308.546667pt;}
.y66{bottom:309.026667pt;}
.yc2{bottom:312.866667pt;}
.y40{bottom:313.986667pt;}
.y19{bottom:317.986667pt;}
.yad{bottom:321.186667pt;}
.y89{bottom:330.146667pt;}
.y65{bottom:335.106667pt;}
.y3f{bottom:335.586667pt;}
.y18{bottom:342.786667pt;}
.yac{bottom:347.266667pt;}
.y88{bottom:351.586667pt;}
.y64{bottom:356.546667pt;}
.y3e{bottom:357.026667pt;}
.y17{bottom:367.426667pt;}
.yab{bottom:368.706667pt;}
.y87{bottom:373.026667pt;}
.y63{bottom:377.986667pt;}
.y3d{bottom:378.466667pt;}
.yaa{bottom:390.146667pt;}
.y16{bottom:392.066667pt;}
.y86{bottom:394.466667pt;}
.y62{bottom:399.426667pt;}
.y3c{bottom:399.906667pt;}
.ya9{bottom:411.586667pt;}
.y85{bottom:415.906667pt;}
.y15{bottom:416.706667pt;}
.y61{bottom:420.866667pt;}
.y3b{bottom:421.346667pt;}
.ya8{bottom:433.026667pt;}
.y84{bottom:437.346667pt;}
.y60{bottom:438.306667pt;}
.y14{bottom:441.506667pt;}
.y3a{bottom:442.786667pt;}
.ya7{bottom:454.626667pt;}
.y83{bottom:458.786667pt;}
.y39{bottom:463.746667pt;}
.y5f{bottom:464.386667pt;}
.y13{bottom:466.146667pt;}
.ya6{bottom:476.066667pt;}
.y82{bottom:476.226667pt;}
.y5e{bottom:485.826667pt;}
.y38{bottom:489.186667pt;}
.y12{bottom:490.786667pt;}
.yc1{bottom:492.866667pt;}
.ya5{bottom:497.533333pt;}
.y81{bottom:506.333333pt;}
.y5d{bottom:507.293333pt;}
.y37{bottom:510.653333pt;}
.yc0{bottom:514.333333pt;}
.y11{bottom:515.613333pt;}
.ya4{bottom:518.973333pt;}
.y5c{bottom:528.893333pt;}
.y36{bottom:535.453333pt;}
.ybf{bottom:535.773333pt;}
.y80{bottom:538.333333pt;}
.y10{bottom:540.253333pt;}
.ya3{bottom:540.413333pt;}
.y5b{bottom:553.693333pt;}
.y35{bottom:556.893333pt;}
.ybe{bottom:557.373333pt;}
.y7f{bottom:559.773333pt;}
.ya2{bottom:561.853333pt;}
.yf{bottom:564.893333pt;}
.y5a{bottom:575.133333pt;}
.y34{bottom:578.333333pt;}
.ybd{bottom:578.813333pt;}
.y7e{bottom:581.213333pt;}
.ya1{bottom:583.453333pt;}
.ye{bottom:589.533333pt;}
.y59{bottom:596.573333pt;}
.y33{bottom:599.933333pt;}
.ybc{bottom:600.253333pt;}
.y7d{bottom:602.813333pt;}
.ya0{bottom:604.893333pt;}
.y58{bottom:614.013333pt;}
.yd{bottom:614.333333pt;}
.ybb{bottom:621.693333pt;}
.y7c{bottom:624.253333pt;}
.y32{bottom:624.733333pt;}
.y9f{bottom:626.333333pt;}
.yc{bottom:638.973333pt;}
.yba{bottom:643.133333pt;}
.y31{bottom:645.533333pt;}
.y7b{bottom:645.693333pt;}
.y57{bottom:646.813333pt;}
.y9e{bottom:647.773333pt;}
.yb{bottom:663.613333pt;}
.y56{bottom:664.253333pt;}
.yb9{bottom:664.573333pt;}
.y7a{bottom:667.133333pt;}
.y9d{bottom:669.213333pt;}
.y30{bottom:681.533333pt;}
.yb8{bottom:686.173333pt;}
.ya{bottom:688.253333pt;}
.y79{bottom:688.573333pt;}
.yaf{bottom:689.533333pt;}
.y9c{bottom:690.653333pt;}
.y55{bottom:693.053333pt;}
.y2f{bottom:702.973333pt;}
.yb7{bottom:707.613333pt;}
.y78{bottom:710.013333pt;}
.y9b{bottom:712.253333pt;}
.y9{bottom:713.053333pt;}
.y54{bottom:714.493333pt;}
.y2e{bottom:724.453333pt;}
.yb6{bottom:725.093333pt;}
.y77{bottom:731.493333pt;}
.y9a{bottom:733.733333pt;}
.y53{bottom:736.133333pt;}
.y8{bottom:737.733333pt;}
.y2d{bottom:746.053333pt;}
.yb5{bottom:746.533333pt;}
.y76{bottom:753.093333pt;}
.y52{bottom:757.573333pt;}
.y7{bottom:762.373333pt;}
.y2c{bottom:767.493333pt;}
.y75{bottom:770.533333pt;}
.y51{bottom:779.013333pt;}
.y99{bottom:781.733333pt;}
.y6{bottom:787.173333pt;}
.y2b{bottom:788.933333pt;}
.y50{bottom:800.453333pt;}
.y74{bottom:802.533333pt;}
.y5{bottom:811.813333pt;}
.y2a{bottom:813.733333pt;}
.y98{bottom:821.733333pt;}
.y4f{bottom:821.893333pt;}
.y73{bottom:823.973333pt;}
.y29{bottom:835.173333pt;}
.y4{bottom:836.453333pt;}
.y72{bottom:841.413333pt;}
.y4e{bottom:843.333333pt;}
.y97{bottom:846.533333pt;}
.y28{bottom:856.613333pt;}
.y3{bottom:861.093333pt;}
.y4d{bottom:864.933333pt;}
.y96{bottom:867.973333pt;}
.y71{bottom:870.213333pt;}
.y27{bottom:878.213333pt;}
.y2{bottom:885.893333pt;}
.y95{bottom:889.573333pt;}
.y4c{bottom:889.733333pt;}
.y70{bottom:891.653333pt;}
.ycd{bottom:892.933333pt;}
.y26{bottom:899.653333pt;}
.y1{bottom:910.533333pt;}
.y94{bottom:914.373333pt;}
.y4b{bottom:917.733333pt;}
.ycc{bottom:917.893333pt;}
.y25{bottom:921.093333pt;}
.y4a{bottom:935.173333pt;}
.y93{bottom:939.173333pt;}
.y24{bottom:942.533333pt;}
.h1{height:54.222187pt;}
.h2{height:67.128750pt;}
.h3{height:67.243500pt;}
.h0{height:1056.000000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:120.031988pt;}
.x4{left:134.426655pt;}
.x3{left:148.026655pt;}
.x1d{left:158.426655pt;}
.x15{left:168.026655pt;}
.x1a{left:172.026655pt;}
.x19{left:184.026655pt;}
.x5{left:185.946655pt;}
.xb{left:198.426655pt;}
.x6{left:216.026655pt;}
.xa{left:240.826655pt;}
.x14{left:252.026655pt;}
.x7{left:276.866655pt;}
.x11{left:304.066655pt;}
.x8{left:318.466655pt;}
.x13{left:333.186655pt;}
.x16{left:335.746655pt;}
.xc{left:348.866655pt;}
.x12{left:356.226655pt;}
.x18{left:363.426655pt;}
.x9{left:365.986655pt;}
.x10{left:393.986655pt;}
.x1e{left:404.866655pt;}
.xf{left:428.066655pt;}
.x2{left:432.066655pt;}
.xd{left:433.986655pt;}
.x1b{left:524.893321pt;}
.x17{left:542.013321pt;}
.xe{left:664.933321pt;}
.x1c{left:684.133321pt;}
}




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