
    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_5fda80afdffd735daafdf185.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_9542c427a34dba85db620b76.woff')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_74a28e988babddcfaa05ae54.woff')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_82dd87183f9284aa2c99a467.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')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_130301694ab792f9947e2b7d.woff')format("woff");}.ff6{font-family:ff6;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.288000px;}
.ls4{letter-spacing:-0.144000px;}
.ls1{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.256200px;}
.ls5{letter-spacing:0.576000px;}
.ls8{letter-spacing:0.720000px;}
.lse{letter-spacing:2.880000px;}
.ls9{letter-spacing:4.320000px;}
.lsc{letter-spacing:10.800000px;}
.lsd{letter-spacing:12.240000px;}
.ls7{letter-spacing:13.680000px;}
.lsa{letter-spacing:16.560000px;}
.ls6{letter-spacing:33.984000px;}
.ls3{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;}
}
.ws4{word-spacing:-59.760000px;}
.ws6{word-spacing:-18.576000px;}
.ws3{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.856000px;}
.ws1{word-spacing:-17.712000px;}
.ws0{word-spacing:-15.226440px;}
.ws2{word-spacing:0.000000px;}
._10{margin-left:-4.896000px;}
._3{margin-left:-3.600000px;}
._4{margin-left:-2.376000px;}
._5{margin-left:-1.080000px;}
._2{width:1.008000px;}
._8{width:2.208000px;}
._f{width:3.912000px;}
._12{width:5.136000px;}
._1{width:6.264000px;}
._0{width:7.488000px;}
._b{width:9.120000px;}
._9{width:10.440000px;}
._a{width:11.448000px;}
._15{width:12.888000px;}
._c{width:14.832000px;}
._d{width:16.128000px;}
._e{width:19.296000px;}
._6{width:20.592000px;}
._7{width:21.744000px;}
._11{width:23.328000px;}
._13{width:26.208000px;}
._14{width:27.576000px;}
._16{width:56.822400px;}
._17{width:846.156000px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:36.000000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y50{bottom:3.960000px;}
.y52{bottom:24.660000px;}
.y2{bottom:58.320000px;}
.y1{bottom:78.516000px;}
.yb5{bottom:111.636000px;}
.y2f{bottom:112.176000px;}
.ya1{bottom:117.396000px;}
.y81{bottom:120.456000px;}
.yb4{bottom:132.156000px;}
.y2e{bottom:132.876000px;}
.y56{bottom:134.136000px;}
.ya0{bottom:138.096000px;}
.y80{bottom:141.156000px;}
.yb3{bottom:152.850000px;}
.y2d{bottom:153.570000px;}
.y55{bottom:155.550000px;}
.y9f{bottom:158.790000px;}
.y7f{bottom:159.870000px;}
.y7e{bottom:172.110000px;}
.yb2{bottom:173.550000px;}
.y2c{bottom:174.270000px;}
.y54{bottom:176.970000px;}
.y9e{bottom:179.490000px;}
.y7d{bottom:192.810000px;}
.y2b{bottom:192.990000px;}
.yb1{bottom:194.250000px;}
.y9d{bottom:200.190000px;}
.y2a{bottom:205.230000px;}
.y7c{bottom:213.510000px;}
.yb0{bottom:214.950000px;}
.y53{bottom:219.090000px;}
.y9c{bottom:220.890000px;}
.y29{bottom:225.930000px;}
.y7b{bottom:234.210000px;}
.yaf{bottom:235.650000px;}
.y9b{bottom:241.590000px;}
.y28{bottom:246.630000px;}
.y7a{bottom:254.910000px;}
.yae{bottom:256.350000px;}
.y51{bottom:261.390000px;}
.y9a{bottom:262.290000px;}
.y27{bottom:267.330000px;}
.y79{bottom:275.610000px;}
.yad{bottom:277.050000px;}
.y99{bottom:282.990000px;}
.y26{bottom:288.030000px;}
.y78{bottom:296.355000px;}
.yac{bottom:297.795000px;}
.y4f{bottom:303.555000px;}
.y98{bottom:303.735000px;}
.y25{bottom:308.775000px;}
.y77{bottom:317.055000px;}
.yab{bottom:318.495000px;}
.y97{bottom:324.435000px;}
.y4e{bottom:328.935000px;}
.y24{bottom:329.475000px;}
.y76{bottom:337.755000px;}
.yaa{bottom:339.195000px;}
.y96{bottom:345.135000px;}
.y4d{bottom:347.655000px;}
.y23{bottom:348.375000px;}
.y75{bottom:358.455000px;}
.y4c{bottom:359.895000px;}
.y22{bottom:360.615000px;}
.y95{bottom:363.855000px;}
.y94{bottom:376.095000px;}
.y74{bottom:379.155000px;}
.y4b{bottom:380.595000px;}
.y21{bottom:381.315000px;}
.y93{bottom:396.795000px;}
.y73{bottom:399.855000px;}
.y4a{bottom:401.295000px;}
.y20{bottom:402.015000px;}
.y92{bottom:417.495000px;}
.y72{bottom:420.555000px;}
.y49{bottom:421.995000px;}
.y1f{bottom:422.715000px;}
.y91{bottom:436.395000px;}
.y71{bottom:441.255000px;}
.y48{bottom:442.695000px;}
.y1e{bottom:443.415000px;}
.y90{bottom:445.395000px;}
.y70{bottom:461.955000px;}
.y47{bottom:463.395000px;}
.y1d{bottom:464.115000px;}
.y8f{bottom:466.815000px;}
.y6f{bottom:482.655000px;}
.y46{bottom:484.095000px;}
.y1c{bottom:484.815000px;}
.y8e{bottom:488.235000px;}
.y45{bottom:502.995000px;}
.y6e{bottom:503.355000px;}
.ya9{bottom:504.795000px;}
.y1b{bottom:505.515000px;}
.y8d{bottom:509.655000px;}
.y44{bottom:515.235000px;}
.y6d{bottom:524.085000px;}
.ya8{bottom:525.525000px;}
.y1a{bottom:526.245000px;}
.y8c{bottom:531.285000px;}
.y43{bottom:535.965000px;}
.y6c{bottom:544.785000px;}
.ya7{bottom:546.225000px;}
.y19{bottom:546.945000px;}
.y42{bottom:556.665000px;}
.y6b{bottom:565.485000px;}
.y18{bottom:565.665000px;}
.ya6{bottom:566.925000px;}
.y41{bottom:577.365000px;}
.y17{bottom:577.905000px;}
.y6a{bottom:586.185000px;}
.ya5{bottom:587.625000px;}
.y40{bottom:598.065000px;}
.y16{bottom:598.605000px;}
.y69{bottom:606.885000px;}
.ya4{bottom:608.325000px;}
.y8b{bottom:616.785000px;}
.y3f{bottom:618.765000px;}
.y15{bottom:619.305000px;}
.y68{bottom:627.585000px;}
.y8a{bottom:629.025000px;}
.y3e{bottom:639.465000px;}
.y14{bottom:640.005000px;}
.y67{bottom:648.285000px;}
.y89{bottom:649.725000px;}
.y3d{bottom:660.165000px;}
.y13{bottom:660.705000px;}
.y66{bottom:668.985000px;}
.y88{bottom:670.425000px;}
.y3c{bottom:680.865000px;}
.y12{bottom:681.405000px;}
.y65{bottom:689.685000px;}
.y87{bottom:691.125000px;}
.y3b{bottom:701.565000px;}
.y11{bottom:702.105000px;}
.y64{bottom:710.385000px;}
.y86{bottom:711.825000px;}
.y3a{bottom:720.285000px;}
.y10{bottom:722.805000px;}
.y63{bottom:731.085000px;}
.y39{bottom:732.525000px;}
.yf{bottom:743.505000px;}
.y62{bottom:751.785000px;}
.y38{bottom:753.225000px;}
.ye{bottom:764.250000px;}
.y61{bottom:772.530000px;}
.y37{bottom:773.970000px;}
.yd{bottom:784.950000px;}
.y60{bottom:793.230000px;}
.y36{bottom:794.670000px;}
.yc{bottom:805.650000px;}
.ya3{bottom:813.570000px;}
.y5f{bottom:813.930000px;}
.y35{bottom:815.370000px;}
.ya2{bottom:823.830000px;}
.yb{bottom:826.350000px;}
.y5e{bottom:834.630000px;}
.y34{bottom:836.070000px;}
.ya{bottom:845.070000px;}
.y5d{bottom:855.330000px;}
.y33{bottom:856.770000px;}
.y9{bottom:862.350000px;}
.y85{bottom:875.670000px;}
.y5c{bottom:876.030000px;}
.y32{bottom:877.470000px;}
.y8{bottom:883.050000px;}
.y84{bottom:887.910000px;}
.y5b{bottom:894.750000px;}
.y31{bottom:898.170000px;}
.y7{bottom:903.750000px;}
.y5a{bottom:906.990000px;}
.y83{bottom:908.610000px;}
.y30{bottom:918.870000px;}
.y6{bottom:922.470000px;}
.y82{bottom:927.330000px;}
.y59{bottom:927.690000px;}
.y5{bottom:939.570000px;}
.y58{bottom:946.590000px;}
.y57{bottom:955.590000px;}
.y4{bottom:960.270000px;}
.y3{bottom:980.970000px;}
.h6{height:20.700000px;}
.ha{height:20.736000px;}
.h4{height:25.400391px;}
.h9{height:32.273438px;}
.h8{height:41.400000px;}
.h7{height:41.436000px;}
.h3{height:50.800781px;}
.h5{height:64.546875px;}
.h2{height:67.824844px;}
.h1{height:1092.750000px;}
.h0{height:1092.780000px;}
.w3{width:136.080000px;}
.w4{width:211.035000px;}
.w5{width:233.670000px;}
.w6{width:236.190000px;}
.w7{width:345.495000px;}
.w2{width:773.819988px;}
.w0{width:773.820000px;}
.w1{width:774.000000px;}
.x0{left:0.000000px;}
.xa{left:7.740000px;}
.x8{left:95.075988px;}
.x4{left:103.355988px;}
.x9{left:122.075988px;}
.xd{left:149.075988px;}
.xe{left:176.069988px;}
.xb{left:232.770000px;}
.x7{left:291.314988px;}
.x5{left:310.214988px;}
.x6{left:318.674988px;}
.xf{left:332.715000px;}
.x3{left:335.414988px;}
.x1{left:378.614988px;}
.x2{left:386.894988px;}
.xc{left:444.525000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.227733pt;}
.ls5{letter-spacing:0.512000pt;}
.ls8{letter-spacing:0.640000pt;}
.lse{letter-spacing:2.560000pt;}
.ls9{letter-spacing:3.840000pt;}
.lsc{letter-spacing:9.600000pt;}
.lsd{letter-spacing:10.880000pt;}
.ls7{letter-spacing:12.160000pt;}
.lsa{letter-spacing:14.720000pt;}
.ls6{letter-spacing:30.208000pt;}
.ls3{letter-spacing:56.912640pt;}
.ws4{word-spacing:-53.120000pt;}
.ws6{word-spacing:-16.512000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.872000pt;}
.ws1{word-spacing:-15.744000pt;}
.ws0{word-spacing:-13.534613pt;}
.ws2{word-spacing:0.000000pt;}
._10{margin-left:-4.352000pt;}
._3{margin-left:-3.200000pt;}
._4{margin-left:-2.112000pt;}
._5{margin-left:-0.960000pt;}
._2{width:0.896000pt;}
._8{width:1.962667pt;}
._f{width:3.477333pt;}
._12{width:4.565333pt;}
._1{width:5.568000pt;}
._0{width:6.656000pt;}
._b{width:8.106667pt;}
._9{width:9.280000pt;}
._a{width:10.176000pt;}
._15{width:11.456000pt;}
._c{width:13.184000pt;}
._d{width:14.336000pt;}
._e{width:17.152000pt;}
._6{width:18.304000pt;}
._7{width:19.328000pt;}
._11{width:20.736000pt;}
._13{width:23.296000pt;}
._14{width:24.512000pt;}
._16{width:50.508800pt;}
._17{width:752.138667pt;}
.fs2{font-size:32.000000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y50{bottom:3.520000pt;}
.y52{bottom:21.920000pt;}
.y2{bottom:51.840000pt;}
.y1{bottom:69.792000pt;}
.yb5{bottom:99.232000pt;}
.y2f{bottom:99.712000pt;}
.ya1{bottom:104.352000pt;}
.y81{bottom:107.072000pt;}
.yb4{bottom:117.472000pt;}
.y2e{bottom:118.112000pt;}
.y56{bottom:119.232000pt;}
.ya0{bottom:122.752000pt;}
.y80{bottom:125.472000pt;}
.yb3{bottom:135.866667pt;}
.y2d{bottom:136.506667pt;}
.y55{bottom:138.266667pt;}
.y9f{bottom:141.146667pt;}
.y7f{bottom:142.106667pt;}
.y7e{bottom:152.986667pt;}
.yb2{bottom:154.266667pt;}
.y2c{bottom:154.906667pt;}
.y54{bottom:157.306667pt;}
.y9e{bottom:159.546667pt;}
.y7d{bottom:171.386667pt;}
.y2b{bottom:171.546667pt;}
.yb1{bottom:172.666667pt;}
.y9d{bottom:177.946667pt;}
.y2a{bottom:182.426667pt;}
.y7c{bottom:189.786667pt;}
.yb0{bottom:191.066667pt;}
.y53{bottom:194.746667pt;}
.y9c{bottom:196.346667pt;}
.y29{bottom:200.826667pt;}
.y7b{bottom:208.186667pt;}
.yaf{bottom:209.466667pt;}
.y9b{bottom:214.746667pt;}
.y28{bottom:219.226667pt;}
.y7a{bottom:226.586667pt;}
.yae{bottom:227.866667pt;}
.y51{bottom:232.346667pt;}
.y9a{bottom:233.146667pt;}
.y27{bottom:237.626667pt;}
.y79{bottom:244.986667pt;}
.yad{bottom:246.266667pt;}
.y99{bottom:251.546667pt;}
.y26{bottom:256.026667pt;}
.y78{bottom:263.426667pt;}
.yac{bottom:264.706667pt;}
.y4f{bottom:269.826667pt;}
.y98{bottom:269.986667pt;}
.y25{bottom:274.466667pt;}
.y77{bottom:281.826667pt;}
.yab{bottom:283.106667pt;}
.y97{bottom:288.386667pt;}
.y4e{bottom:292.386667pt;}
.y24{bottom:292.866667pt;}
.y76{bottom:300.226667pt;}
.yaa{bottom:301.506667pt;}
.y96{bottom:306.786667pt;}
.y4d{bottom:309.026667pt;}
.y23{bottom:309.666667pt;}
.y75{bottom:318.626667pt;}
.y4c{bottom:319.906667pt;}
.y22{bottom:320.546667pt;}
.y95{bottom:323.426667pt;}
.y94{bottom:334.306667pt;}
.y74{bottom:337.026667pt;}
.y4b{bottom:338.306667pt;}
.y21{bottom:338.946667pt;}
.y93{bottom:352.706667pt;}
.y73{bottom:355.426667pt;}
.y4a{bottom:356.706667pt;}
.y20{bottom:357.346667pt;}
.y92{bottom:371.106667pt;}
.y72{bottom:373.826667pt;}
.y49{bottom:375.106667pt;}
.y1f{bottom:375.746667pt;}
.y91{bottom:387.906667pt;}
.y71{bottom:392.226667pt;}
.y48{bottom:393.506667pt;}
.y1e{bottom:394.146667pt;}
.y90{bottom:395.906667pt;}
.y70{bottom:410.626667pt;}
.y47{bottom:411.906667pt;}
.y1d{bottom:412.546667pt;}
.y8f{bottom:414.946667pt;}
.y6f{bottom:429.026667pt;}
.y46{bottom:430.306667pt;}
.y1c{bottom:430.946667pt;}
.y8e{bottom:433.986667pt;}
.y45{bottom:447.106667pt;}
.y6e{bottom:447.426667pt;}
.ya9{bottom:448.706667pt;}
.y1b{bottom:449.346667pt;}
.y8d{bottom:453.026667pt;}
.y44{bottom:457.986667pt;}
.y6d{bottom:465.853333pt;}
.ya8{bottom:467.133333pt;}
.y1a{bottom:467.773333pt;}
.y8c{bottom:472.253333pt;}
.y43{bottom:476.413333pt;}
.y6c{bottom:484.253333pt;}
.ya7{bottom:485.533333pt;}
.y19{bottom:486.173333pt;}
.y42{bottom:494.813333pt;}
.y6b{bottom:502.653333pt;}
.y18{bottom:502.813333pt;}
.ya6{bottom:503.933333pt;}
.y41{bottom:513.213333pt;}
.y17{bottom:513.693333pt;}
.y6a{bottom:521.053333pt;}
.ya5{bottom:522.333333pt;}
.y40{bottom:531.613333pt;}
.y16{bottom:532.093333pt;}
.y69{bottom:539.453333pt;}
.ya4{bottom:540.733333pt;}
.y8b{bottom:548.253333pt;}
.y3f{bottom:550.013333pt;}
.y15{bottom:550.493333pt;}
.y68{bottom:557.853333pt;}
.y8a{bottom:559.133333pt;}
.y3e{bottom:568.413333pt;}
.y14{bottom:568.893333pt;}
.y67{bottom:576.253333pt;}
.y89{bottom:577.533333pt;}
.y3d{bottom:586.813333pt;}
.y13{bottom:587.293333pt;}
.y66{bottom:594.653333pt;}
.y88{bottom:595.933333pt;}
.y3c{bottom:605.213333pt;}
.y12{bottom:605.693333pt;}
.y65{bottom:613.053333pt;}
.y87{bottom:614.333333pt;}
.y3b{bottom:623.613333pt;}
.y11{bottom:624.093333pt;}
.y64{bottom:631.453333pt;}
.y86{bottom:632.733333pt;}
.y3a{bottom:640.253333pt;}
.y10{bottom:642.493333pt;}
.y63{bottom:649.853333pt;}
.y39{bottom:651.133333pt;}
.yf{bottom:660.893333pt;}
.y62{bottom:668.253333pt;}
.y38{bottom:669.533333pt;}
.ye{bottom:679.333333pt;}
.y61{bottom:686.693333pt;}
.y37{bottom:687.973333pt;}
.yd{bottom:697.733333pt;}
.y60{bottom:705.093333pt;}
.y36{bottom:706.373333pt;}
.yc{bottom:716.133333pt;}
.ya3{bottom:723.173333pt;}
.y5f{bottom:723.493333pt;}
.y35{bottom:724.773333pt;}
.ya2{bottom:732.293333pt;}
.yb{bottom:734.533333pt;}
.y5e{bottom:741.893333pt;}
.y34{bottom:743.173333pt;}
.ya{bottom:751.173333pt;}
.y5d{bottom:760.293333pt;}
.y33{bottom:761.573333pt;}
.y9{bottom:766.533333pt;}
.y85{bottom:778.373333pt;}
.y5c{bottom:778.693333pt;}
.y32{bottom:779.973333pt;}
.y8{bottom:784.933333pt;}
.y84{bottom:789.253333pt;}
.y5b{bottom:795.333333pt;}
.y31{bottom:798.373333pt;}
.y7{bottom:803.333333pt;}
.y5a{bottom:806.213333pt;}
.y83{bottom:807.653333pt;}
.y30{bottom:816.773333pt;}
.y6{bottom:819.973333pt;}
.y82{bottom:824.293333pt;}
.y59{bottom:824.613333pt;}
.y5{bottom:835.173333pt;}
.y58{bottom:841.413333pt;}
.y57{bottom:849.413333pt;}
.y4{bottom:853.573333pt;}
.y3{bottom:871.973333pt;}
.h6{height:18.400000pt;}
.ha{height:18.432000pt;}
.h4{height:22.578125pt;}
.h9{height:28.687500pt;}
.h8{height:36.800000pt;}
.h7{height:36.832000pt;}
.h3{height:45.156250pt;}
.h5{height:57.375000pt;}
.h2{height:60.288750pt;}
.h1{height:971.333333pt;}
.h0{height:971.360000pt;}
.w3{width:120.960000pt;}
.w4{width:187.586667pt;}
.w5{width:207.706667pt;}
.w6{width:209.946667pt;}
.w7{width:307.106667pt;}
.w2{width:687.839990pt;}
.w0{width:687.840000pt;}
.w1{width:688.000000pt;}
.x0{left:0.000000pt;}
.xa{left:6.880000pt;}
.x8{left:84.511990pt;}
.x4{left:91.871990pt;}
.x9{left:108.511990pt;}
.xd{left:132.511990pt;}
.xe{left:156.506656pt;}
.xb{left:206.906667pt;}
.x7{left:258.946656pt;}
.x5{left:275.746656pt;}
.x6{left:283.266656pt;}
.xf{left:295.746667pt;}
.x3{left:298.146656pt;}
.x1{left:336.546656pt;}
.x2{left:343.906656pt;}
.xc{left:395.133333pt;}
}




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