
    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_631654d0abeb78c846ef9358.woff')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_85f9575e6f83d91d6ca88c01.woff')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_d8d456ace27d455860bdb253.woff')format("woff");}.ff3{font-family:ff3;line-height:0.767578;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_d37cac662efb30b9c8c64b2e.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_b2f46fb3c61226021e8d5bbe.woff')format("woff");}.ff5{font-family:ff5;line-height:0.942383;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_cb2f1115e2cf431e9970ecfa.woff')format("woff");}.ff6{font-family:ff6;line-height:0.976562;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_0e969c811f726efbf3230993.woff')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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:ff8;src:url('chunks/assets/font_4fdc5f24dc4e340a03e0b283.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_75a3842b30b7b0a381d0573a.woff')format("woff");}.ff9{font-family:ff9;line-height:0.914062;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:ffa;src:url('chunks/assets/font_419258f8e79bc6f83b47d243.woff')format("woff");}.ffa{font-family:ffa;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;}
.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);}
.v1{vertical-align:-79.200000px;}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-2.880000px;}
.lsc{letter-spacing:-1.440000px;}
.ls3{letter-spacing:-0.144000px;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.072000px;}
.lsa{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.192000px;}
.ls0{letter-spacing:0.360000px;}
.ls8{letter-spacing:1.404000px;}
.ls6{letter-spacing:5.760000px;}
.ls4{letter-spacing:16.560000px;}
.ls9{letter-spacing:20.880000px;}
.ls7{letter-spacing:54.144000px;}
.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;}
}
.ws2{word-spacing:-72.000000px;}
.ws4{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.ws1{word-spacing:-17.856000px;}
.ws6{word-spacing:-16.560000px;}
.ws5{word-spacing:-15.120000px;}
.ws3{word-spacing:0.000000px;}
._f{margin-left:-5.256000px;}
._10{margin-left:-4.170000px;}
._2{margin-left:-2.617920px;}
._0{margin-left:-1.126080px;}
._1{width:1.218000px;}
._6{width:2.412000px;}
._7{width:4.038000px;}
._4{width:5.040000px;}
._5{width:6.132000px;}
._b{width:7.908000px;}
._8{width:9.144000px;}
._9{width:10.368000px;}
._12{width:11.664000px;}
._13{width:13.044000px;}
._a{width:14.880000px;}
._3{width:15.912000px;}
._16{width:16.978080px;}
._14{width:19.224000px;}
._15{width:20.520000px;}
._1a{width:21.822000px;}
._18{width:22.849920px;}
._c{width:23.950080px;}
._17{width:25.315680px;}
._1b{width:27.008400px;}
._11{width:28.872000px;}
._19{width:30.528000px;}
._d{width:37.656000px;}
._e{width:38.664000px;}
._1e{width:58.474080px;}
._1d{width:59.590080px;}
._1f{width:62.840640px;}
._20{width:68.260320px;}
._1c{width:100.560000px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:54.000000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y6{bottom:10.620000px;}
.y7{bottom:11.340000px;}
.y8{bottom:57.420000px;}
.y5{bottom:73.836000px;}
.y6e{bottom:117.396000px;}
.y33{bottom:122.256000px;}
.y6d{bottom:141.156000px;}
.y32{bottom:146.196000px;}
.y4f{bottom:152.130000px;}
.y90{bottom:155.370000px;}
.y6c{bottom:164.910000px;}
.y31{bottom:169.950000px;}
.y4e{bottom:175.890000px;}
.y8f{bottom:179.130000px;}
.y6b{bottom:188.850000px;}
.y30{bottom:193.710000px;}
.y4d{bottom:199.650000px;}
.y8e{bottom:202.890000px;}
.y6a{bottom:212.610000px;}
.y2f{bottom:217.470000px;}
.y4c{bottom:223.590000px;}
.y8d{bottom:226.830000px;}
.y69{bottom:236.370000px;}
.y2e{bottom:241.410000px;}
.y4b{bottom:247.350000px;}
.y8c{bottom:250.590000px;}
.y68{bottom:260.130000px;}
.y2d{bottom:265.170000px;}
.y4a{bottom:271.110000px;}
.y8b{bottom:274.350000px;}
.y67{bottom:284.070000px;}
.y2c{bottom:288.930000px;}
.y49{bottom:294.870000px;}
.y8a{bottom:298.110000px;}
.y66{bottom:307.830000px;}
.y2b{bottom:312.690000px;}
.y48{bottom:318.810000px;}
.y89{bottom:322.050000px;}
.y65{bottom:331.590000px;}
.y2a{bottom:336.675000px;}
.y47{bottom:342.615000px;}
.y88{bottom:345.855000px;}
.y64{bottom:355.575000px;}
.y29{bottom:360.435000px;}
.y46{bottom:366.375000px;}
.y87{bottom:369.615000px;}
.y63{bottom:379.335000px;}
.y28{bottom:384.195000px;}
.y45{bottom:390.135000px;}
.y86{bottom:393.375000px;}
.y62{bottom:403.095000px;}
.y27{bottom:407.955000px;}
.y44{bottom:414.075000px;}
.y85{bottom:417.315000px;}
.y61{bottom:426.855000px;}
.y26{bottom:431.895000px;}
.y43{bottom:437.835000px;}
.y84{bottom:441.075000px;}
.y60{bottom:450.795000px;}
.y25{bottom:455.655000px;}
.y42{bottom:461.595000px;}
.y83{bottom:464.475000px;}
.y5f{bottom:474.555000px;}
.y24{bottom:479.415000px;}
.y41{bottom:485.355000px;}
.y82{bottom:488.235000px;}
.y5e{bottom:498.315000px;}
.y23{bottom:503.175000px;}
.y40{bottom:509.115000px;}
.y81{bottom:512.355000px;}
.y5d{bottom:522.075000px;}
.y22{bottom:526.935000px;}
.y3f{bottom:533.055000px;}
.y80{bottom:536.295000px;}
.y5c{bottom:546.015000px;}
.y21{bottom:550.875000px;}
.y3e{bottom:556.815000px;}
.y7f{bottom:560.055000px;}
.y5b{bottom:569.775000px;}
.y20{bottom:574.635000px;}
.y3d{bottom:580.575000px;}
.y7e{bottom:583.815000px;}
.y5a{bottom:593.535000px;}
.y1f{bottom:598.395000px;}
.y3c{bottom:604.365000px;}
.y7d{bottom:607.605000px;}
.y59{bottom:617.325000px;}
.y1e{bottom:621.825000px;}
.y7c{bottom:631.545000px;}
.y58{bottom:641.085000px;}
.y1d{bottom:646.125000px;}
.y3b{bottom:647.745000px;}
.y7b{bottom:655.305000px;}
.y57{bottom:665.025000px;}
.y1c{bottom:672.945000px;}
.y7a{bottom:679.065000px;}
.y56{bottom:688.785000px;}
.y1b{bottom:696.705000px;}
.y79{bottom:702.825000px;}
.y55{bottom:712.545000px;}
.y1a{bottom:720.645000px;}
.y78{bottom:726.765000px;}
.y54{bottom:736.305000px;}
.y19{bottom:747.465000px;}
.y77{bottom:750.525000px;}
.y53{bottom:760.245000px;}
.y18{bottom:771.225000px;}
.y76{bottom:774.285000px;}
.y52{bottom:784.005000px;}
.y17{bottom:794.985000px;}
.y75{bottom:798.045000px;}
.y51{bottom:807.405000px;}
.y16{bottom:818.745000px;}
.y74{bottom:821.985000px;}
.y50{bottom:827.205000px;}
.y15{bottom:842.685000px;}
.y73{bottom:845.745000px;}
.y14{bottom:866.445000px;}
.y72{bottom:869.505000px;}
.y13{bottom:890.250000px;}
.y71{bottom:893.310000px;}
.y12{bottom:914.010000px;}
.y70{bottom:917.250000px;}
.y11{bottom:937.950000px;}
.y6f{bottom:941.010000px;}
.y10{bottom:964.770000px;}
.yf{bottom:988.170000px;}
.y3a{bottom:988.530000px;}
.ye{bottom:1012.290000px;}
.yd{bottom:1035.870000px;}
.y39{bottom:1036.230000px;}
.yc{bottom:1059.630000px;}
.y38{bottom:1059.990000px;}
.y37{bottom:1083.750000px;}
.yb{bottom:1085.730000px;}
.y36{bottom:1107.510000px;}
.ya{bottom:1117.590000px;}
.y35{bottom:1131.450000px;}
.y9{bottom:1149.300000px;}
.y34{bottom:1155.240000px;}
.y4{bottom:1195.020000px;}
.y3{bottom:1210.680000px;}
.y2{bottom:1226.880000px;}
.y1{bottom:1246.140000px;}
.h5{height:27.000000px;}
.h7{height:50.229844px;}
.hb{height:50.273438px;}
.h4{height:54.421875px;}
.ha{height:54.773438px;}
.h3{height:66.757500px;}
.h9{height:70.628906px;}
.h6{height:70.664062px;}
.h2{height:72.562500px;}
.hc{height:74.004654px;}
.h8{height:96.508125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:104.076000px;}
.w5{width:298.650000px;}
.w3{width:298.830000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:43.020000px;}
.x5{left:95.796000px;}
.xa{left:119.195987px;}
.x14{left:127.835987px;}
.xd{left:148.895987px;}
.xb{left:154.289987px;}
.x3{left:195.869987px;}
.xf{left:268.769987px;}
.xc{left:283.574987px;}
.x6{left:290.739000px;}
.x10{left:311.834987px;}
.x2{left:333.254987px;}
.x4{left:342.614987px;}
.xe{left:375.734987px;}
.x7{left:394.635000px;}
.x9{left:498.705000px;}
.x11{left:711.509987px;}
.x13{left:720.149987px;}
.x12{left:746.249987px;}
.x1{left:797.369987px;}
@media print{
.v1{vertical-align:-70.400000pt;}
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-2.560000pt;}
.lsc{letter-spacing:-1.280000pt;}
.ls3{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.064000pt;}
.lsa{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.170667pt;}
.ls0{letter-spacing:0.320000pt;}
.ls8{letter-spacing:1.248000pt;}
.ls6{letter-spacing:5.120000pt;}
.ls4{letter-spacing:14.720000pt;}
.ls9{letter-spacing:18.560000pt;}
.ls7{letter-spacing:48.128000pt;}
.ws2{word-spacing:-64.000000pt;}
.ws4{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws1{word-spacing:-15.872000pt;}
.ws6{word-spacing:-14.720000pt;}
.ws5{word-spacing:-13.440000pt;}
.ws3{word-spacing:0.000000pt;}
._f{margin-left:-4.672000pt;}
._10{margin-left:-3.706667pt;}
._2{margin-left:-2.327040pt;}
._0{margin-left:-1.000960pt;}
._1{width:1.082667pt;}
._6{width:2.144000pt;}
._7{width:3.589333pt;}
._4{width:4.480000pt;}
._5{width:5.450667pt;}
._b{width:7.029333pt;}
._8{width:8.128000pt;}
._9{width:9.216000pt;}
._12{width:10.368000pt;}
._13{width:11.594667pt;}
._a{width:13.226667pt;}
._3{width:14.144000pt;}
._16{width:15.091627pt;}
._14{width:17.088000pt;}
._15{width:18.240000pt;}
._1a{width:19.397333pt;}
._18{width:20.311040pt;}
._c{width:21.288960pt;}
._17{width:22.502827pt;}
._1b{width:24.007467pt;}
._11{width:25.664000pt;}
._19{width:27.136000pt;}
._d{width:33.472000pt;}
._e{width:34.368000pt;}
._1e{width:51.976960pt;}
._1d{width:52.968960pt;}
._1f{width:55.858347pt;}
._20{width:60.675840pt;}
._1c{width:89.386667pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:9.440000pt;}
.y7{bottom:10.080000pt;}
.y8{bottom:51.040000pt;}
.y5{bottom:65.632000pt;}
.y6e{bottom:104.352000pt;}
.y33{bottom:108.672000pt;}
.y6d{bottom:125.472000pt;}
.y32{bottom:129.952000pt;}
.y4f{bottom:135.226667pt;}
.y90{bottom:138.106667pt;}
.y6c{bottom:146.586667pt;}
.y31{bottom:151.066667pt;}
.y4e{bottom:156.346667pt;}
.y8f{bottom:159.226667pt;}
.y6b{bottom:167.866667pt;}
.y30{bottom:172.186667pt;}
.y4d{bottom:177.466667pt;}
.y8e{bottom:180.346667pt;}
.y6a{bottom:188.986667pt;}
.y2f{bottom:193.306667pt;}
.y4c{bottom:198.746667pt;}
.y8d{bottom:201.626667pt;}
.y69{bottom:210.106667pt;}
.y2e{bottom:214.586667pt;}
.y4b{bottom:219.866667pt;}
.y8c{bottom:222.746667pt;}
.y68{bottom:231.226667pt;}
.y2d{bottom:235.706667pt;}
.y4a{bottom:240.986667pt;}
.y8b{bottom:243.866667pt;}
.y67{bottom:252.506667pt;}
.y2c{bottom:256.826667pt;}
.y49{bottom:262.106667pt;}
.y8a{bottom:264.986667pt;}
.y66{bottom:273.626667pt;}
.y2b{bottom:277.946667pt;}
.y48{bottom:283.386667pt;}
.y89{bottom:286.266667pt;}
.y65{bottom:294.746667pt;}
.y2a{bottom:299.266667pt;}
.y47{bottom:304.546667pt;}
.y88{bottom:307.426667pt;}
.y64{bottom:316.066667pt;}
.y29{bottom:320.386667pt;}
.y46{bottom:325.666667pt;}
.y87{bottom:328.546667pt;}
.y63{bottom:337.186667pt;}
.y28{bottom:341.506667pt;}
.y45{bottom:346.786667pt;}
.y86{bottom:349.666667pt;}
.y62{bottom:358.306667pt;}
.y27{bottom:362.626667pt;}
.y44{bottom:368.066667pt;}
.y85{bottom:370.946667pt;}
.y61{bottom:379.426667pt;}
.y26{bottom:383.906667pt;}
.y43{bottom:389.186667pt;}
.y84{bottom:392.066667pt;}
.y60{bottom:400.706667pt;}
.y25{bottom:405.026667pt;}
.y42{bottom:410.306667pt;}
.y83{bottom:412.866667pt;}
.y5f{bottom:421.826667pt;}
.y24{bottom:426.146667pt;}
.y41{bottom:431.426667pt;}
.y82{bottom:433.986667pt;}
.y5e{bottom:442.946667pt;}
.y23{bottom:447.266667pt;}
.y40{bottom:452.546667pt;}
.y81{bottom:455.426667pt;}
.y5d{bottom:464.066667pt;}
.y22{bottom:468.386667pt;}
.y3f{bottom:473.826667pt;}
.y80{bottom:476.706667pt;}
.y5c{bottom:485.346667pt;}
.y21{bottom:489.666667pt;}
.y3e{bottom:494.946667pt;}
.y7f{bottom:497.826667pt;}
.y5b{bottom:506.466667pt;}
.y20{bottom:510.786667pt;}
.y3d{bottom:516.066667pt;}
.y7e{bottom:518.946667pt;}
.y5a{bottom:527.586667pt;}
.y1f{bottom:531.906667pt;}
.y3c{bottom:537.213333pt;}
.y7d{bottom:540.093333pt;}
.y59{bottom:548.733333pt;}
.y1e{bottom:552.733333pt;}
.y7c{bottom:561.373333pt;}
.y58{bottom:569.853333pt;}
.y1d{bottom:574.333333pt;}
.y3b{bottom:575.773333pt;}
.y7b{bottom:582.493333pt;}
.y57{bottom:591.133333pt;}
.y1c{bottom:598.173333pt;}
.y7a{bottom:603.613333pt;}
.y56{bottom:612.253333pt;}
.y1b{bottom:619.293333pt;}
.y79{bottom:624.733333pt;}
.y55{bottom:633.373333pt;}
.y1a{bottom:640.573333pt;}
.y78{bottom:646.013333pt;}
.y54{bottom:654.493333pt;}
.y19{bottom:664.413333pt;}
.y77{bottom:667.133333pt;}
.y53{bottom:675.773333pt;}
.y18{bottom:685.533333pt;}
.y76{bottom:688.253333pt;}
.y52{bottom:696.893333pt;}
.y17{bottom:706.653333pt;}
.y75{bottom:709.373333pt;}
.y51{bottom:717.693333pt;}
.y16{bottom:727.773333pt;}
.y74{bottom:730.653333pt;}
.y50{bottom:735.293333pt;}
.y15{bottom:749.053333pt;}
.y73{bottom:751.773333pt;}
.y14{bottom:770.173333pt;}
.y72{bottom:772.893333pt;}
.y13{bottom:791.333333pt;}
.y71{bottom:794.053333pt;}
.y12{bottom:812.453333pt;}
.y70{bottom:815.333333pt;}
.y11{bottom:833.733333pt;}
.y6f{bottom:836.453333pt;}
.y10{bottom:857.573333pt;}
.yf{bottom:878.373333pt;}
.y3a{bottom:878.693333pt;}
.ye{bottom:899.813333pt;}
.yd{bottom:920.773333pt;}
.y39{bottom:921.093333pt;}
.yc{bottom:941.893333pt;}
.y38{bottom:942.213333pt;}
.y37{bottom:963.333333pt;}
.yb{bottom:965.093333pt;}
.y36{bottom:984.453333pt;}
.ya{bottom:993.413333pt;}
.y35{bottom:1005.733333pt;}
.y9{bottom:1021.600000pt;}
.y34{bottom:1026.880000pt;}
.y4{bottom:1062.240000pt;}
.y3{bottom:1076.160000pt;}
.y2{bottom:1090.560000pt;}
.y1{bottom:1107.680000pt;}
.h5{height:24.000000pt;}
.h7{height:44.648750pt;}
.hb{height:44.687500pt;}
.h4{height:48.375000pt;}
.ha{height:48.687500pt;}
.h3{height:59.340000pt;}
.h9{height:62.781250pt;}
.h6{height:62.812500pt;}
.h2{height:64.500000pt;}
.hc{height:65.781915pt;}
.h8{height:85.785000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:92.512000pt;}
.w5{width:265.466667pt;}
.w3{width:265.626667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:38.240000pt;}
.x5{left:85.152000pt;}
.xa{left:105.951988pt;}
.x14{left:113.631988pt;}
.xd{left:132.351988pt;}
.xb{left:137.146655pt;}
.x3{left:174.106655pt;}
.xf{left:238.906655pt;}
.xc{left:252.066655pt;}
.x6{left:258.434667pt;}
.x10{left:277.186655pt;}
.x2{left:296.226655pt;}
.x4{left:304.546655pt;}
.xe{left:333.986655pt;}
.x7{left:350.786667pt;}
.x9{left:443.293333pt;}
.x11{left:632.453322pt;}
.x13{left:640.133322pt;}
.x12{left:663.333322pt;}
.x1{left:708.773322pt;}
}




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