
    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_f8d88238ac5c230d104965ab.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.120605;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_0d3ef80d0e7f97810c705a5c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.886230;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_ecf37b7871ae32825788a83d.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_6571652ca7ef86d2473ee0a8.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_d0ab7f0bdae9669024fbdb60.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.916992;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_52c87b00db11e3c8251d58f3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.960449;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_91cede6422e4473b3d8b78f5.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_d7cebb3ea57f2abfde20ee5e.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_3c24c42119805a5019ed62df.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893066;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_21b4bed260bf053ac3da7d7b.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_a11c1eb7f622f01ff274da36.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.747559;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:-0.360000px;}
.ls3{letter-spacing:-0.350400px;}
.ls13{letter-spacing:-0.341400px;}
.ls8{letter-spacing:-0.180000px;}
.lsd{letter-spacing:-0.028080px;}
.ls1{letter-spacing:0.000000px;}
.lse{letter-spacing:0.028080px;}
.ls9{letter-spacing:0.037440px;}
.ls6{letter-spacing:0.252720px;}
.ls5{letter-spacing:0.341400px;}
.ls0{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.504000px;}
.lsb{letter-spacing:1.260000px;}
.lsc{letter-spacing:2.700000px;}
.ls12{letter-spacing:8.460000px;}
.lsa{letter-spacing:9.900000px;}
.ls15{letter-spacing:10.620000px;}
.ls14{letter-spacing:12.060000px;}
.ls17{letter-spacing:15.060000px;}
.lsf{letter-spacing:16.380000px;}
.ls7{letter-spacing:18.149760px;}
.ls11{letter-spacing:25.020000px;}
.ls10{letter-spacing:31.500000px;}
.ls4{letter-spacing:34.380000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(68,114,196),0 0.015em rgb(68,114,196),0.015em 0 rgb(68,114,196),0 -0.015em  rgb(68,114,196);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(68,114,196);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb{word-spacing:-84.240000px;}
.ws5{word-spacing:-21.420000px;}
.ws4{word-spacing:-21.401400px;}
.ws6{word-spacing:-21.312720px;}
.ws7{word-spacing:-21.097440px;}
.ws9{word-spacing:-21.088080px;}
.ws0{word-spacing:-21.060000px;}
.ws8{word-spacing:-21.031920px;}
.wsa{word-spacing:-20.718600px;}
.ws2{word-spacing:-20.709600px;}
.ws1{word-spacing:-20.700000px;}
.ws3{word-spacing:0.000000px;}
._12{margin-left:-2.112240px;}
._0{margin-left:-1.010880px;}
._8{width:1.017120px;}
._4{width:2.077440px;}
._e{width:3.115440px;}
._2a{width:4.321680px;}
._28{width:5.740800px;}
._b{width:6.823440px;}
._a{width:8.002800px;}
._2{width:9.097920px;}
._1{width:10.445760px;}
._10{width:11.456640px;}
._2f{width:12.635040px;}
._1c{width:13.900560px;}
._9{width:15.247440px;}
._f{width:16.763760px;}
._1d{width:18.823200px;}
._2b{width:19.893120px;}
._27{width:22.116240px;}
._25{width:23.250240px;}
._2e{width:24.254880px;}
._2d{width:25.524720px;}
._18{width:27.378000px;}
._19{width:28.822560px;}
._24{width:30.145440px;}
._1a{width:31.842720px;}
._1b{width:32.987280px;}
._13{width:34.032960px;}
._5{width:35.802000px;}
._6{width:37.234080px;}
._7{width:38.834640px;}
._1e{width:40.772160px;}
._1f{width:44.226000px;}
._20{width:45.495840px;}
._11{width:46.753200px;}
._21{width:48.690720px;}
._22{width:49.870080px;}
._26{width:51.133680px;}
._23{width:52.144560px;}
._29{width:53.641920px;}
._15{width:56.693520px;}
._2c{width:58.462560px;}
._d{width:60.045360px;}
._c{width:61.260240px;}
._14{width:72.783360px;}
._16{width:76.237200px;}
._17{width:77.655360px;}
._3{width:89.294400px;}
.fc3{color:transparent;}
.fc2{color:rgb(68,114,196);}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y4{bottom:6.660000px;}
.y3{bottom:31.140000px;}
.y2{bottom:57.600000px;}
.y4e{bottom:101.700000px;}
.y35{bottom:110.880000px;}
.y65{bottom:122.940000px;}
.y4d{bottom:138.096000px;}
.y34{bottom:147.096000px;}
.y1b{bottom:154.470000px;}
.y64{bottom:159.150000px;}
.y33{bottom:183.450000px;}
.y4c{bottom:189.210000px;}
.y1a{bottom:190.650000px;}
.y63{bottom:195.510000px;}
.y32{bottom:219.630000px;}
.y4b{bottom:225.390000px;}
.y19{bottom:226.830000px;}
.y62{bottom:231.690000px;}
.y31{bottom:255.810000px;}
.y4a{bottom:261.750000px;}
.y18{bottom:263.190000px;}
.y61{bottom:267.870000px;}
.y30{bottom:291.990000px;}
.y49{bottom:297.930000px;}
.y17{bottom:299.370000px;}
.y60{bottom:304.050000px;}
.y2f{bottom:328.350000px;}
.y48{bottom:334.110000px;}
.y16{bottom:335.550000px;}
.y69{bottom:340.410000px;}
.y5f{bottom:355.350000px;}
.y2e{bottom:364.530000px;}
.y47{bottom:370.290000px;}
.y15{bottom:373.170000px;}
.y68{bottom:376.590000px;}
.y5e{bottom:391.575000px;}
.y2d{bottom:400.755000px;}
.y46{bottom:406.515000px;}
.y14{bottom:425.235000px;}
.y67{bottom:427.395000px;}
.y5d{bottom:427.755000px;}
.y2c{bottom:436.935000px;}
.y45{bottom:442.875000px;}
.y13{bottom:461.415000px;}
.y5c{bottom:464.115000px;}
.y44{bottom:479.055000px;}
.y2b{bottom:487.875000px;}
.y12{bottom:497.775000px;}
.y5b{bottom:500.295000px;}
.y43{bottom:515.235000px;}
.y11{bottom:533.955000px;}
.y5a{bottom:536.475000px;}
.y2a{bottom:537.015000px;}
.y66{bottom:551.415000px;}
.y42{bottom:566.535000px;}
.y10{bottom:570.135000px;}
.y29{bottom:570.495000px;}
.y59{bottom:587.775000px;}
.y75{bottom:589.935000px;}
.y41{bottom:602.715000px;}
.yf{bottom:606.315000px;}
.y28{bottom:606.675000px;}
.y58{bottom:623.955000px;}
.y74{bottom:637.845000px;}
.y40{bottom:638.925000px;}
.ye{bottom:642.705000px;}
.y27{bottom:658.005000px;}
.y57{bottom:660.165000px;}
.y3f{bottom:675.105000px;}
.y73{bottom:688.965000px;}
.yd{bottom:693.465000px;}
.y26{bottom:694.185000px;}
.y56{bottom:696.345000px;}
.y3e{bottom:711.465000px;}
.y25{bottom:730.365000px;}
.y72{bottom:731.805000px;}
.y55{bottom:732.705000px;}
.yc{bottom:745.125000px;}
.y3d{bottom:747.645000px;}
.y71{bottom:759.525000px;}
.y24{bottom:766.545000px;}
.y54{bottom:768.885000px;}
.y3c{bottom:783.825000px;}
.yb{bottom:796.245000px;}
.y70{bottom:802.365000px;}
.y23{bottom:802.905000px;}
.y53{bottom:805.065000px;}
.y3b{bottom:820.005000px;}
.y6f{bottom:830.085000px;}
.y22{bottom:839.085000px;}
.y52{bottom:841.245000px;}
.ya{bottom:847.185000px;}
.y3a{bottom:856.365000px;}
.y6e{bottom:857.805000px;}
.y21{bottom:875.265000px;}
.y51{bottom:877.605000px;}
.y39{bottom:892.590000px;}
.y9{bottom:898.710000px;}
.y6d{bottom:900.690000px;}
.y20{bottom:911.490000px;}
.y50{bottom:913.830000px;}
.y38{bottom:928.770000px;}
.y6c{bottom:943.530000px;}
.y1f{bottom:947.850000px;}
.y8{bottom:949.650000px;}
.y4f{bottom:950.010000px;}
.y37{bottom:964.950000px;}
.y6b{bottom:971.250000px;}
.y1e{bottom:985.290000px;}
.y7{bottom:1000.950000px;}
.y36{bottom:1001.310000px;}
.y6a{bottom:1022.370000px;}
.y6{bottom:1037.130000px;}
.y1d{bottom:1037.490000px;}
.y5{bottom:1073.310000px;}
.y1c{bottom:1073.670000px;}
.y1{bottom:1194.300000px;}
.h3{height:22.320000px;}
.h7{height:59.066719px;}
.h4{height:59.436914px;}
.h2{height:65.884219px;}
.h9{height:70.664062px;}
.h8{height:80.208984px;}
.ha{height:82.635820px;}
.h6{height:82.676953px;}
.h5{height:84.898125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:62.856000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:18.900000px;}
.x1{left:84.960000px;}
.x5{left:131.976000px;}
.x7{left:203.070000px;}
.x4{left:284.115000px;}
.x6{left:296.175000px;}
.x8{left:332.895000px;}
.x2{left:415.155000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:-0.311467pt;}
.ls13{letter-spacing:-0.303467pt;}
.ls8{letter-spacing:-0.160000pt;}
.lsd{letter-spacing:-0.024960pt;}
.ls1{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.024960pt;}
.ls9{letter-spacing:0.033280pt;}
.ls6{letter-spacing:0.224640pt;}
.ls5{letter-spacing:0.303467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.448000pt;}
.lsb{letter-spacing:1.120000pt;}
.lsc{letter-spacing:2.400000pt;}
.ls12{letter-spacing:7.520000pt;}
.lsa{letter-spacing:8.800000pt;}
.ls15{letter-spacing:9.440000pt;}
.ls14{letter-spacing:10.720000pt;}
.ls17{letter-spacing:13.386667pt;}
.lsf{letter-spacing:14.560000pt;}
.ls7{letter-spacing:16.133120pt;}
.ls11{letter-spacing:22.240000pt;}
.ls10{letter-spacing:28.000000pt;}
.ls4{letter-spacing:30.560000pt;}
.wsb{word-spacing:-74.880000pt;}
.ws5{word-spacing:-19.040000pt;}
.ws4{word-spacing:-19.023467pt;}
.ws6{word-spacing:-18.944640pt;}
.ws7{word-spacing:-18.753280pt;}
.ws9{word-spacing:-18.744960pt;}
.ws0{word-spacing:-18.720000pt;}
.ws8{word-spacing:-18.695040pt;}
.wsa{word-spacing:-18.416533pt;}
.ws2{word-spacing:-18.408533pt;}
.ws1{word-spacing:-18.400000pt;}
.ws3{word-spacing:0.000000pt;}
._12{margin-left:-1.877547pt;}
._0{margin-left:-0.898560pt;}
._8{width:0.904107pt;}
._4{width:1.846613pt;}
._e{width:2.769280pt;}
._2a{width:3.841493pt;}
._28{width:5.102933pt;}
._b{width:6.065280pt;}
._a{width:7.113600pt;}
._2{width:8.087040pt;}
._1{width:9.285120pt;}
._10{width:10.183680pt;}
._2f{width:11.231147pt;}
._1c{width:12.356053pt;}
._9{width:13.553280pt;}
._f{width:14.901120pt;}
._1d{width:16.731733pt;}
._2b{width:17.682773pt;}
._27{width:19.658880pt;}
._25{width:20.666880pt;}
._2e{width:21.559893pt;}
._2d{width:22.688640pt;}
._18{width:24.336000pt;}
._19{width:25.620053pt;}
._24{width:26.795947pt;}
._1a{width:28.304640pt;}
._1b{width:29.322027pt;}
._13{width:30.251520pt;}
._5{width:31.824000pt;}
._6{width:33.096960pt;}
._7{width:34.519680pt;}
._1e{width:36.241920pt;}
._1f{width:39.312000pt;}
._20{width:40.440747pt;}
._11{width:41.558400pt;}
._21{width:43.280640pt;}
._22{width:44.328960pt;}
._26{width:45.452160pt;}
._23{width:46.350720pt;}
._29{width:47.681707pt;}
._15{width:50.394240pt;}
._2c{width:51.966720pt;}
._d{width:53.373653pt;}
._c{width:54.453547pt;}
._14{width:64.696320pt;}
._16{width:67.766400pt;}
._17{width:69.026987pt;}
._3{width:79.372800pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:5.920000pt;}
.y3{bottom:27.680000pt;}
.y2{bottom:51.200000pt;}
.y4e{bottom:90.400000pt;}
.y35{bottom:98.560000pt;}
.y65{bottom:109.280000pt;}
.y4d{bottom:122.752000pt;}
.y34{bottom:130.752000pt;}
.y1b{bottom:137.306667pt;}
.y64{bottom:141.466667pt;}
.y33{bottom:163.066667pt;}
.y4c{bottom:168.186667pt;}
.y1a{bottom:169.466667pt;}
.y63{bottom:173.786667pt;}
.y32{bottom:195.226667pt;}
.y4b{bottom:200.346667pt;}
.y19{bottom:201.626667pt;}
.y62{bottom:205.946667pt;}
.y31{bottom:227.386667pt;}
.y4a{bottom:232.666667pt;}
.y18{bottom:233.946667pt;}
.y61{bottom:238.106667pt;}
.y30{bottom:259.546667pt;}
.y49{bottom:264.826667pt;}
.y17{bottom:266.106667pt;}
.y60{bottom:270.266667pt;}
.y2f{bottom:291.866667pt;}
.y48{bottom:296.986667pt;}
.y16{bottom:298.266667pt;}
.y69{bottom:302.586667pt;}
.y5f{bottom:315.866667pt;}
.y2e{bottom:324.026667pt;}
.y47{bottom:329.146667pt;}
.y15{bottom:331.706667pt;}
.y68{bottom:334.746667pt;}
.y5e{bottom:348.066667pt;}
.y2d{bottom:356.226667pt;}
.y46{bottom:361.346667pt;}
.y14{bottom:377.986667pt;}
.y67{bottom:379.906667pt;}
.y5d{bottom:380.226667pt;}
.y2c{bottom:388.386667pt;}
.y45{bottom:393.666667pt;}
.y13{bottom:410.146667pt;}
.y5c{bottom:412.546667pt;}
.y44{bottom:425.826667pt;}
.y2b{bottom:433.666667pt;}
.y12{bottom:442.466667pt;}
.y5b{bottom:444.706667pt;}
.y43{bottom:457.986667pt;}
.y11{bottom:474.626667pt;}
.y5a{bottom:476.866667pt;}
.y2a{bottom:477.346667pt;}
.y66{bottom:490.146667pt;}
.y42{bottom:503.586667pt;}
.y10{bottom:506.786667pt;}
.y29{bottom:507.106667pt;}
.y59{bottom:522.466667pt;}
.y75{bottom:524.386667pt;}
.y41{bottom:535.746667pt;}
.yf{bottom:538.946667pt;}
.y28{bottom:539.266667pt;}
.y58{bottom:554.626667pt;}
.y74{bottom:566.973333pt;}
.y40{bottom:567.933333pt;}
.ye{bottom:571.293333pt;}
.y27{bottom:584.893333pt;}
.y57{bottom:586.813333pt;}
.y3f{bottom:600.093333pt;}
.y73{bottom:612.413333pt;}
.yd{bottom:616.413333pt;}
.y26{bottom:617.053333pt;}
.y56{bottom:618.973333pt;}
.y3e{bottom:632.413333pt;}
.y25{bottom:649.213333pt;}
.y72{bottom:650.493333pt;}
.y55{bottom:651.293333pt;}
.yc{bottom:662.333333pt;}
.y3d{bottom:664.573333pt;}
.y71{bottom:675.133333pt;}
.y24{bottom:681.373333pt;}
.y54{bottom:683.453333pt;}
.y3c{bottom:696.733333pt;}
.yb{bottom:707.773333pt;}
.y70{bottom:713.213333pt;}
.y23{bottom:713.693333pt;}
.y53{bottom:715.613333pt;}
.y3b{bottom:728.893333pt;}
.y6f{bottom:737.853333pt;}
.y22{bottom:745.853333pt;}
.y52{bottom:747.773333pt;}
.ya{bottom:753.053333pt;}
.y3a{bottom:761.213333pt;}
.y6e{bottom:762.493333pt;}
.y21{bottom:778.013333pt;}
.y51{bottom:780.093333pt;}
.y39{bottom:793.413333pt;}
.y9{bottom:798.853333pt;}
.y6d{bottom:800.613333pt;}
.y20{bottom:810.213333pt;}
.y50{bottom:812.293333pt;}
.y38{bottom:825.573333pt;}
.y6c{bottom:838.693333pt;}
.y1f{bottom:842.533333pt;}
.y8{bottom:844.133333pt;}
.y4f{bottom:844.453333pt;}
.y37{bottom:857.733333pt;}
.y6b{bottom:863.333333pt;}
.y1e{bottom:875.813333pt;}
.y7{bottom:889.733333pt;}
.y36{bottom:890.053333pt;}
.y6a{bottom:908.773333pt;}
.y6{bottom:921.893333pt;}
.y1d{bottom:922.213333pt;}
.y5{bottom:954.053333pt;}
.y1c{bottom:954.373333pt;}
.y1{bottom:1061.600000pt;}
.h3{height:19.840000pt;}
.h7{height:52.503750pt;}
.h4{height:52.832812pt;}
.h2{height:58.563750pt;}
.h9{height:62.812500pt;}
.h8{height:71.296875pt;}
.ha{height:73.454062pt;}
.h6{height:73.490625pt;}
.h5{height:75.465000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:55.872000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:16.800000pt;}
.x1{left:75.520000pt;}
.x5{left:117.312000pt;}
.x7{left:180.506667pt;}
.x4{left:252.546667pt;}
.x6{left:263.266667pt;}
.x8{left:295.906667pt;}
.x2{left:369.026667pt;}
}




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