
    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_defca4745d71b77212ec84c0.woff')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_558106fd6359cc9ed1c33999.woff')format("woff");}.ff2{font-family:ff2;line-height:0.800293;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_69a0828e052c57da38b9941f.woff')format("woff");}.ff3{font-family:ff3;line-height:0.851562;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_afced36d0140b16781d5d775.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b881a4dc12372bc3b6c9902f.woff')format("woff");}.ff5{font-family:ff5;line-height:0.752000;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_d2512d13b130e00b799ec9d3.woff')format("woff");}.ff6{font-family:ff6;line-height:0.752000;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_56846f8760285478893e7ca9.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_2042ba420cae7effc0ba6c4d.woff')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_181a22905b1d3b42ee6a6760.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_9be1c6ecc3d08b135c9e7c3c.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_616231393038127f4f076767.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_6b849957169798e189cd2511.woff')format("woff");}.ffc{font-family:ffc;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;}
.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;}
.ls4{letter-spacing:-0.560400px;}
.ls8{letter-spacing:-0.129600px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.034560px;}
.ls2{letter-spacing:0.072000px;}
.ls0{letter-spacing:0.149760px;}
.lsa{letter-spacing:0.190200px;}
.ls5{letter-spacing:0.249600px;}
.ls6{letter-spacing:0.341400px;}
.ls7{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.504000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,51,0),0 0.015em rgb(255,51,0),0.015em 0 rgb(255,51,0),0 -0.015em  rgb(255,51,0);}
.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(255,51,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8{word-spacing:-84.240000px;}
.wsa{word-spacing:-21.420000px;}
.ws7{word-spacing:-21.401400px;}
.wsb{word-spacing:-21.250200px;}
.ws5{word-spacing:-21.060000px;}
.ws1{word-spacing:-19.976160px;}
.ws9{word-spacing:-19.596960px;}
.ws0{word-spacing:-15.950640px;}
.ws3{word-spacing:-14.904000px;}
.ws2{word-spacing:-14.832000px;}
.ws4{word-spacing:-0.084240px;}
.ws6{word-spacing:0.000000px;}
._19{margin-left:-6.630720px;}
._a{margin-left:-5.531760px;}
._3{margin-left:-4.380480px;}
._4{margin-left:-3.135840px;}
._1{margin-left:-1.471200px;}
._0{width:1.436400px;}
._9{width:2.951760px;}
._15{width:4.717440px;}
._c{width:6.065280px;}
._10{width:7.199520px;}
._8{width:9.143040px;}
._7{width:10.569120px;}
._1d{width:11.601600px;}
._14{width:12.636000px;}
._13{width:13.686000px;}
._11{width:14.949600px;}
._b{width:16.258320px;}
._12{width:17.269200px;}
._2{width:18.433200px;}
._f{width:19.919760px;}
._e{width:22.997520px;}
._1e{width:24.423840px;}
._d{width:25.648080px;}
._1b{width:26.833440px;}
._1c{width:28.045920px;}
._1a{width:29.389440px;}
._18{width:30.528000px;}
._5{width:31.590000px;}
._6{width:32.774880px;}
._16{width:33.943200px;}
._17{width:35.131440px;}
._1f{width:37.104720px;}
._20{width:38.830800px;}
.fc6{color:rgb(0,0,255);}
.fc5{color:transparent;}
.fc4{color:rgb(255,51,0);}
.fc3{color:rgb(51,102,153);}
.fc2{color:rgb(0,32,96);}
.fc1{color:rgb(204,0,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y51{bottom:8.100000px;}
.y4c{bottom:8.280000px;}
.y7{bottom:10.475850px;}
.y4a{bottom:22.140000px;}
.y6{bottom:31.176000px;}
.y56{bottom:35.820000px;}
.y4b{bottom:36.000000px;}
.y59{bottom:49.680000px;}
.y53{bottom:49.860000px;}
.y4e{bottom:49.905000px;}
.y5d{bottom:63.540000px;}
.y5b{bottom:63.570000px;}
.y55{bottom:63.720000px;}
.y50{bottom:63.765000px;}
.y54{bottom:91.440000px;}
.y5a{bottom:91.470000px;}
.y4f{bottom:91.485000px;}
.y2b{bottom:98.136000px;}
.y63{bottom:110.016000px;}
.y40{bottom:116.136000px;}
.y2a{bottom:125.856000px;}
.y62{bottom:137.916000px;}
.y3f{bottom:143.856000px;}
.y29{bottom:153.570000px;}
.y61{bottom:165.630000px;}
.y3e{bottom:171.570000px;}
.y28{bottom:181.290000px;}
.y60{bottom:193.350000px;}
.y3d{bottom:199.290000px;}
.y27{bottom:209.190000px;}
.y5f{bottom:222.690000px;}
.y3c{bottom:227.190000px;}
.y26{bottom:236.910000px;}
.y46{bottom:245.910000px;}
.y3b{bottom:254.910000px;}
.y25{bottom:264.630000px;}
.y45{bottom:273.630000px;}
.y3a{bottom:282.675000px;}
.y24{bottom:292.395000px;}
.y44{bottom:301.395000px;}
.y5e{bottom:306.795000px;}
.y39{bottom:310.395000px;}
.y23{bottom:320.295000px;}
.y43{bottom:329.295000px;}
.y38{bottom:338.295000px;}
.y22{bottom:348.015000px;}
.y42{bottom:357.015000px;}
.y37{bottom:366.015000px;}
.y21{bottom:375.735000px;}
.y41{bottom:384.735000px;}
.y36{bottom:393.735000px;}
.y20{bottom:403.635000px;}
.y5c{bottom:418.755000px;}
.y35{bottom:421.635000px;}
.y1f{bottom:431.355000px;}
.y34{bottom:449.355000px;}
.y1e{bottom:459.075000px;}
.y33{bottom:477.075000px;}
.y1d{bottom:486.795000px;}
.y58{bottom:502.815000px;}
.y32{bottom:504.795000px;}
.y1c{bottom:514.695000px;}
.y31{bottom:532.695000px;}
.y1b{bottom:542.415000px;}
.y30{bottom:560.415000px;}
.y1a{bottom:570.165000px;}
.y2f{bottom:588.165000px;}
.y19{bottom:598.065000px;}
.y57{bottom:614.625000px;}
.y2e{bottom:616.065000px;}
.y18{bottom:634.785000px;}
.y2d{bottom:643.785000px;}
.y17{bottom:662.505000px;}
.y2c{bottom:671.505000px;}
.y52{bottom:698.685000px;}
.y16{bottom:699.225000px;}
.y15{bottom:727.125000px;}
.y14{bottom:754.845000px;}
.y13{bottom:782.565000px;}
.y12{bottom:810.285000px;}
.y4d{bottom:810.465000px;}
.y11{bottom:838.185000px;}
.y10{bottom:865.950000px;}
.yf{bottom:893.670000px;}
.ye{bottom:921.570000px;}
.y49{bottom:922.290000px;}
.yd{bottom:949.290000px;}
.yc{bottom:977.010000px;}
.y48{bottom:995.730000px;}
.yb{bottom:1004.730000px;}
.y47{bottom:1023.630000px;}
.ya{bottom:1032.630000px;}
.y9{bottom:1060.350000px;}
.y8{bottom:1088.070000px;}
.y5{bottom:1112.190000px;}
.y4{bottom:1132.020000px;}
.y3{bottom:1155.600000px;}
.y2{bottom:1179.900000px;}
.y1{bottom:1207.800000px;}
.h5{height:49.150080px;}
.h4{height:50.229844px;}
.ha{height:55.620000px;}
.h9{height:58.819922px;}
.h3{height:67.169883px;}
.h2{height:76.355508px;}
.h7{height:82.635820px;}
.h8{height:82.676953px;}
.he{height:83.160000px;}
.hd{height:83.340000px;}
.hf{height:83.376000px;}
.h6{height:84.898125px;}
.hc{height:111.060000px;}
.hb{height:111.096000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:36.576000px;}
.w4{width:155.520000px;}
.w5{width:228.270000px;}
.w6{width:277.950000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:7.776000px;}
.x10{left:9.936000px;}
.x12{left:18.900000px;}
.x14{left:25.020000px;}
.x6{left:42.479987px;}
.x16{left:56.520000px;}
.x5{left:84.959987px;}
.x9{left:86.939987px;}
.x11{left:123.156000px;}
.xe{left:135.935987px;}
.x17{left:140.940000px;}
.xc{left:229.709987px;}
.x13{left:279.435000px;}
.xb{left:281.234987px;}
.xf{left:288.074987px;}
.x19{left:302.654987px;}
.xd{left:338.294987px;}
.x7{left:382.934987px;}
.xa{left:395.714987px;}
.x8{left:446.474987px;}
.x2{left:490.784987px;}
.x15{left:508.605000px;}
.x1{left:557.204987px;}
.x3{left:632.084987px;}
.x4{left:807.989987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.498133pt;}
.ls8{letter-spacing:-0.115200pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.030720pt;}
.ls2{letter-spacing:0.064000pt;}
.ls0{letter-spacing:0.133120pt;}
.lsa{letter-spacing:0.169067pt;}
.ls5{letter-spacing:0.221867pt;}
.ls6{letter-spacing:0.303467pt;}
.ls7{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.448000pt;}
.ws8{word-spacing:-74.880000pt;}
.wsa{word-spacing:-19.040000pt;}
.ws7{word-spacing:-19.023467pt;}
.wsb{word-spacing:-18.889067pt;}
.ws5{word-spacing:-18.720000pt;}
.ws1{word-spacing:-17.756587pt;}
.ws9{word-spacing:-17.419520pt;}
.ws0{word-spacing:-14.178347pt;}
.ws3{word-spacing:-13.248000pt;}
.ws2{word-spacing:-13.184000pt;}
.ws4{word-spacing:-0.074880pt;}
.ws6{word-spacing:0.000000pt;}
._19{margin-left:-5.893973pt;}
._a{margin-left:-4.917120pt;}
._3{margin-left:-3.893760pt;}
._4{margin-left:-2.787413pt;}
._1{margin-left:-1.307733pt;}
._0{width:1.276800pt;}
._9{width:2.623787pt;}
._15{width:4.193280pt;}
._c{width:5.391360pt;}
._10{width:6.399573pt;}
._8{width:8.127147pt;}
._7{width:9.394773pt;}
._1d{width:10.312533pt;}
._14{width:11.232000pt;}
._13{width:12.165333pt;}
._11{width:13.288533pt;}
._b{width:14.451840pt;}
._12{width:15.350400pt;}
._2{width:16.385067pt;}
._f{width:17.706453pt;}
._e{width:20.442240pt;}
._1e{width:21.710080pt;}
._d{width:22.798293pt;}
._1b{width:23.851947pt;}
._1c{width:24.929707pt;}
._1a{width:26.123947pt;}
._18{width:27.136000pt;}
._5{width:28.080000pt;}
._6{width:29.133227pt;}
._16{width:30.171733pt;}
._17{width:31.227947pt;}
._1f{width:32.981973pt;}
._20{width:34.516267pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y51{bottom:7.200000pt;}
.y4c{bottom:7.360000pt;}
.y7{bottom:9.311867pt;}
.y4a{bottom:19.680000pt;}
.y6{bottom:27.712000pt;}
.y56{bottom:31.840000pt;}
.y4b{bottom:32.000000pt;}
.y59{bottom:44.160000pt;}
.y53{bottom:44.320000pt;}
.y4e{bottom:44.360000pt;}
.y5d{bottom:56.480000pt;}
.y5b{bottom:56.506667pt;}
.y55{bottom:56.640000pt;}
.y50{bottom:56.680000pt;}
.y54{bottom:81.280000pt;}
.y5a{bottom:81.306667pt;}
.y4f{bottom:81.320000pt;}
.y2b{bottom:87.232000pt;}
.y63{bottom:97.792000pt;}
.y40{bottom:103.232000pt;}
.y2a{bottom:111.872000pt;}
.y62{bottom:122.592000pt;}
.y3f{bottom:127.872000pt;}
.y29{bottom:136.506667pt;}
.y61{bottom:147.226667pt;}
.y3e{bottom:152.506667pt;}
.y28{bottom:161.146667pt;}
.y60{bottom:171.866667pt;}
.y3d{bottom:177.146667pt;}
.y27{bottom:185.946667pt;}
.y5f{bottom:197.946667pt;}
.y3c{bottom:201.946667pt;}
.y26{bottom:210.586667pt;}
.y46{bottom:218.586667pt;}
.y3b{bottom:226.586667pt;}
.y25{bottom:235.226667pt;}
.y45{bottom:243.226667pt;}
.y3a{bottom:251.266667pt;}
.y24{bottom:259.906667pt;}
.y44{bottom:267.906667pt;}
.y5e{bottom:272.706667pt;}
.y39{bottom:275.906667pt;}
.y23{bottom:284.706667pt;}
.y43{bottom:292.706667pt;}
.y38{bottom:300.706667pt;}
.y22{bottom:309.346667pt;}
.y42{bottom:317.346667pt;}
.y37{bottom:325.346667pt;}
.y21{bottom:333.986667pt;}
.y41{bottom:341.986667pt;}
.y36{bottom:349.986667pt;}
.y20{bottom:358.786667pt;}
.y5c{bottom:372.226667pt;}
.y35{bottom:374.786667pt;}
.y1f{bottom:383.426667pt;}
.y34{bottom:399.426667pt;}
.y1e{bottom:408.066667pt;}
.y33{bottom:424.066667pt;}
.y1d{bottom:432.706667pt;}
.y58{bottom:446.946667pt;}
.y32{bottom:448.706667pt;}
.y1c{bottom:457.506667pt;}
.y31{bottom:473.506667pt;}
.y1b{bottom:482.146667pt;}
.y30{bottom:498.146667pt;}
.y1a{bottom:506.813333pt;}
.y2f{bottom:522.813333pt;}
.y19{bottom:531.613333pt;}
.y57{bottom:546.333333pt;}
.y2e{bottom:547.613333pt;}
.y18{bottom:564.253333pt;}
.y2d{bottom:572.253333pt;}
.y17{bottom:588.893333pt;}
.y2c{bottom:596.893333pt;}
.y52{bottom:621.053333pt;}
.y16{bottom:621.533333pt;}
.y15{bottom:646.333333pt;}
.y14{bottom:670.973333pt;}
.y13{bottom:695.613333pt;}
.y12{bottom:720.253333pt;}
.y4d{bottom:720.413333pt;}
.y11{bottom:745.053333pt;}
.y10{bottom:769.733333pt;}
.yf{bottom:794.373333pt;}
.ye{bottom:819.173333pt;}
.y49{bottom:819.813333pt;}
.yd{bottom:843.813333pt;}
.yc{bottom:868.453333pt;}
.y48{bottom:885.093333pt;}
.yb{bottom:893.093333pt;}
.y47{bottom:909.893333pt;}
.ya{bottom:917.893333pt;}
.y9{bottom:942.533333pt;}
.y8{bottom:967.173333pt;}
.y5{bottom:988.613333pt;}
.y4{bottom:1006.240000pt;}
.y3{bottom:1027.200000pt;}
.y2{bottom:1048.800000pt;}
.y1{bottom:1073.600000pt;}
.h5{height:43.688960pt;}
.h4{height:44.648750pt;}
.ha{height:49.440000pt;}
.h9{height:52.284375pt;}
.h3{height:59.706562pt;}
.h2{height:67.871563pt;}
.h7{height:73.454062pt;}
.h8{height:73.490625pt;}
.he{height:73.920000pt;}
.hd{height:74.080000pt;}
.hf{height:74.112000pt;}
.h6{height:75.465000pt;}
.hc{height:98.720000pt;}
.hb{height:98.752000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:32.512000pt;}
.w4{width:138.240000pt;}
.w5{width:202.906667pt;}
.w6{width:247.066667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:6.912000pt;}
.x10{left:8.832000pt;}
.x12{left:16.800000pt;}
.x14{left:22.240000pt;}
.x6{left:37.759988pt;}
.x16{left:50.240000pt;}
.x5{left:75.519988pt;}
.x9{left:77.279988pt;}
.x11{left:109.472000pt;}
.xe{left:120.831988pt;}
.x17{left:125.280000pt;}
.xc{left:204.186655pt;}
.x13{left:248.386667pt;}
.xb{left:249.986655pt;}
.xf{left:256.066655pt;}
.x19{left:269.026655pt;}
.xd{left:300.706655pt;}
.x7{left:340.386655pt;}
.xa{left:351.746655pt;}
.x8{left:396.866655pt;}
.x2{left:436.253322pt;}
.x15{left:452.093333pt;}
.x1{left:495.293322pt;}
.x3{left:561.853322pt;}
.x4{left:718.213322pt;}
}




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