
    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_4bf03fe81b066ec28d76d185.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_8c0579584e3454f1ef58a297.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_cf8b4b125549e1c6b8b93805.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_c0c64fd836c36d2247bf8fc6.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_836e1efd3aef197c96105342.woff')format("woff");}.ff5{font-family:ff5;line-height:0.946777;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_0d67e1cff9d8ecc09962d608.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_bf55e86dabd1531c65877de2.woff')format("woff");}.ff7{font-family:ff7;line-height:0.884277;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_a49737e8e76070a7f2e3615d.woff')format("woff");}.ff8{font-family:ff8;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);}
.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;}
.v1{vertical-align:62.160000px;}
.ls4{letter-spacing:-2.322000px;}
.lsc{letter-spacing:-1.740000px;}
.ls18{letter-spacing:-1.530000px;}
.ls16{letter-spacing:-1.482000px;}
.ls1a{letter-spacing:-1.332000px;}
.ls5{letter-spacing:-1.230000px;}
.ls6{letter-spacing:-1.128000px;}
.ls13{letter-spacing:-0.454200px;}
.ls14{letter-spacing:-0.378000px;}
.ls15{letter-spacing:-0.228000px;}
.ls3{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.060000px;}
.ls1e{letter-spacing:0.180000px;}
.ls0{letter-spacing:1.027800px;}
.ls12{letter-spacing:1.495500px;}
.ls1d{letter-spacing:1.525500px;}
.lsf{letter-spacing:2.034000px;}
.ls8{letter-spacing:2.142000px;}
.ls1{letter-spacing:2.178000px;}
.lse{letter-spacing:2.220000px;}
.ls7{letter-spacing:2.250000px;}
.ls19{letter-spacing:2.328000px;}
.ls9{letter-spacing:2.370000px;}
.ls17{letter-spacing:2.400000px;}
.lsb{letter-spacing:2.430000px;}
.lsa{letter-spacing:3.375000px;}
.ls10{letter-spacing:3.555000px;}
.ls1b{letter-spacing:16.995000px;}
.ls1c{letter-spacing:25.875000px;}
.ls11{letter-spacing:43.875000px;}
.ls1f{letter-spacing:46.383000px;}
.ls2{letter-spacing:1384.417500px;}
.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;}
}
.ws1{word-spacing:-23.590500px;}
.ws0{word-spacing:-21.412500px;}
.ws6{word-spacing:-21.375000px;}
.ws4{word-spacing:-19.125000px;}
.ws2{word-spacing:-19.090500px;}
.ws3{word-spacing:-17.895000px;}
.ws7{word-spacing:-17.385000px;}
.wsc{word-spacing:-17.025000px;}
.wsb{word-spacing:-16.840500px;}
.wse{word-spacing:-13.537500px;}
.wsd{word-spacing:-13.500000px;}
.ws5{word-spacing:0.000000px;}
.ws8{word-spacing:104.185500px;}
.ws9{word-spacing:122.030400px;}
.wsa{word-spacing:356.754000px;}
._1{margin-left:-8.736300px;}
._5{margin-left:-7.280250px;}
._1d{margin-left:-6.143850px;}
._6{margin-left:-4.967700px;}
._4{margin-left:-3.083400px;}
._3{margin-left:-1.798650px;}
._0{width:1.199100px;}
._2{width:2.312550px;}
._d{width:3.498450px;}
._8{width:4.628850px;}
._15{width:6.112800px;}
._10{width:7.130550px;}
._13{width:8.313150px;}
._7{width:9.491850px;}
._27{width:10.543050px;}
._f{width:12.043350px;}
._14{width:13.263150px;}
._e{width:15.990600px;}
._12{width:17.516850px;}
._26{width:20.747850px;}
._c{width:21.882600px;}
._11{width:22.993950px;}
._b{width:25.185300px;}
._22{width:26.598300px;}
._28{width:29.842950px;}
._20{width:30.963150px;}
._21{width:34.061700px;}
._25{width:35.601900px;}
._29{width:38.758650px;}
._23{width:40.020900px;}
._24{width:43.799250px;}
._2a{width:44.887350px;}
._2b{width:46.730100px;}
._19{width:48.868200px;}
._18{width:52.104900px;}
._16{width:53.190600px;}
._17{width:54.314400px;}
._1b{width:57.609000px;}
._1c{width:60.552750px;}
._33{width:61.728450px;}
._1a{width:62.862600px;}
._32{width:66.368550px;}
._31{width:67.401600px;}
._1f{width:74.693400px;}
._1e{width:75.910050px;}
._2f{width:83.865750px;}
._30{width:85.430550px;}
._2e{width:89.561100px;}
._2d{width:189.394950px;}
._9{width:262.498500px;}
._a{width:1956.457500px;}
._2c{width:2323.755000px;}
.fc5{color:rgb(255,255,255);}
.fc4{color:rgb(64,64,64);}
.fc3{color:rgb(89,89,89);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(54,95,145);}
.fs2{font-size:54.000000px;}
.fs3{font-size:54.150000px;}
.fs4{font-size:58.500000px;}
.fs5{font-size:58.650000px;}
.fs1{font-size:76.500000px;}
.fs0{font-size:85.650000px;}
.y0{bottom:0.000000px;}
.y52{bottom:13.755000px;}
.y51{bottom:29.295000px;}
.y49{bottom:45.600000px;}
.y9{bottom:57.412500px;}
.y4a{bottom:76.800000px;}
.y8{bottom:82.200000px;}
.y59{bottom:96.480000px;}
.y7{bottom:105.825000px;}
.y4b{bottom:108.000000px;}
.y60{bottom:108.120000px;}
.y58{bottom:112.620000px;}
.y6{bottom:130.612500px;}
.y5f{bottom:131.925000px;}
.y4c{bottom:139.170000px;}
.y5e{bottom:155.745000px;}
.y47{bottom:157.650000px;}
.y2d{bottom:167.775000px;}
.y4d{bottom:170.370000px;}
.y46{bottom:179.025000px;}
.y5d{bottom:179.550000px;}
.y56{bottom:181.125000px;}
.y2c{bottom:193.650000px;}
.y5a{bottom:194.400000px;}
.y55{bottom:197.250000px;}
.y4e{bottom:201.570000px;}
.y5c{bottom:203.370000px;}
.y57{bottom:206.880000px;}
.y2b{bottom:219.570000px;}
.y3a{bottom:221.820000px;}
.y5b{bottom:226.455000px;}
.y54{bottom:228.450000px;}
.y4f{bottom:232.755000px;}
.y2a{bottom:245.475000px;}
.y39{bottom:247.725000px;}
.y50{bottom:263.925000px;}
.y29{bottom:271.350000px;}
.y38{bottom:273.600000px;}
.y53{bottom:290.820000px;}
.y28{bottom:297.255000px;}
.y37{bottom:299.505000px;}
.y27{bottom:323.130000px;}
.y36{bottom:324.300000px;}
.y26{bottom:349.050000px;}
.y35{bottom:350.175000px;}
.y25{bottom:374.955000px;}
.y34{bottom:376.095000px;}
.y24{bottom:399.720000px;}
.y33{bottom:401.955000px;}
.y23{bottom:425.625000px;}
.y32{bottom:427.875000px;}
.y22{bottom:451.530000px;}
.y31{bottom:453.795000px;}
.y21{bottom:477.420000px;}
.y30{bottom:479.670000px;}
.y20{bottom:503.325000px;}
.y2f{bottom:505.575000px;}
.y45{bottom:511.200000px;}
.y2e{bottom:526.950000px;}
.y1f{bottom:529.200000px;}
.y44{bottom:537.120000px;}
.y1e{bottom:555.105000px;}
.y43{bottom:562.995000px;}
.y1d{bottom:581.025000px;}
.y42{bottom:588.900000px;}
.y1c{bottom:606.900000px;}
.y41{bottom:614.775000px;}
.y1b{bottom:632.820000px;}
.y40{bottom:640.695000px;}
.y1a{bottom:658.725000px;}
.y3f{bottom:666.600000px;}
.y19{bottom:684.600000px;}
.y3e{bottom:692.475000px;}
.y18{bottom:710.505000px;}
.y3d{bottom:717.255000px;}
.y17{bottom:735.255000px;}
.y3c{bottom:743.175000px;}
.y16{bottom:761.175000px;}
.y3b{bottom:764.550000px;}
.y48{bottom:766.125000px;}
.y15{bottom:787.080000px;}
.y14{bottom:812.955000px;}
.y13{bottom:838.875000px;}
.y12{bottom:864.750000px;}
.y61{bottom:871.545000px;}
.y11{bottom:890.670000px;}
.y10{bottom:916.575000px;}
.yf{bottom:942.450000px;}
.ye{bottom:968.370000px;}
.yd{bottom:994.275000px;}
.yc{bottom:1020.150000px;}
.yb{bottom:1044.945000px;}
.ya{bottom:1070.820000px;}
.y5{bottom:1094.475000px;}
.y4{bottom:1118.100000px;}
.y3{bottom:1142.880000px;}
.y2{bottom:1166.550000px;}
.y1{bottom:1191.300000px;}
.ha{height:40.948242px;}
.hb{height:41.061987px;}
.h10{height:52.998047px;}
.hc{height:53.145264px;}
.h8{height:53.415527px;}
.h7{height:55.918213px;}
.he{height:58.957031px;}
.hf{height:59.108203px;}
.h5{height:75.043213px;}
.h6{height:75.080566px;}
.h4{height:77.097656px;}
.h11{height:78.629945px;}
.h3{height:84.060791px;}
.h2{height:86.319141px;}
.hd{height:115.305264px;}
.h9{height:322.875000px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w2{width:540.000000px;}
.w1{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:25.350000px;}
.x10{left:32.212500px;}
.x12{left:82.725000px;}
.x2{left:85.612487px;}
.x18{left:101.400000px;}
.xf{left:105.750000px;}
.xd{left:107.024987px;}
.x14{left:111.945000px;}
.x17{left:120.075000px;}
.x3{left:138.562487px;}
.x4{left:145.312487px;}
.x19{left:154.905000px;}
.x1{left:162.224987px;}
.x15{left:214.620000px;}
.x16{left:221.850000px;}
.x5{left:244.424987px;}
.x9{left:246.674987px;}
.x8{left:278.219987px;}
.x13{left:283.875000px;}
.x7{left:297.374987px;}
.xb{left:317.654987px;}
.xa{left:322.169987px;}
.x1b{left:346.949987px;}
.xc{left:355.949987px;}
.x1a{left:397.695000px;}
.x6{left:458.474987px;}
.xe{left:647.699987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:55.253333pt;}
.ls4{letter-spacing:-2.064000pt;}
.lsc{letter-spacing:-1.546667pt;}
.ls18{letter-spacing:-1.360000pt;}
.ls16{letter-spacing:-1.317333pt;}
.ls1a{letter-spacing:-1.184000pt;}
.ls5{letter-spacing:-1.093333pt;}
.ls6{letter-spacing:-1.002667pt;}
.ls13{letter-spacing:-0.403733pt;}
.ls14{letter-spacing:-0.336000pt;}
.ls15{letter-spacing:-0.202667pt;}
.ls3{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.053333pt;}
.ls1e{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.913600pt;}
.ls12{letter-spacing:1.329333pt;}
.ls1d{letter-spacing:1.356000pt;}
.lsf{letter-spacing:1.808000pt;}
.ls8{letter-spacing:1.904000pt;}
.ls1{letter-spacing:1.936000pt;}
.lse{letter-spacing:1.973333pt;}
.ls7{letter-spacing:2.000000pt;}
.ls19{letter-spacing:2.069333pt;}
.ls9{letter-spacing:2.106667pt;}
.ls17{letter-spacing:2.133333pt;}
.lsb{letter-spacing:2.160000pt;}
.lsa{letter-spacing:3.000000pt;}
.ls10{letter-spacing:3.160000pt;}
.ls1b{letter-spacing:15.106667pt;}
.ls1c{letter-spacing:23.000000pt;}
.ls11{letter-spacing:39.000000pt;}
.ls1f{letter-spacing:41.229333pt;}
.ls2{letter-spacing:1230.593333pt;}
.ws1{word-spacing:-20.969333pt;}
.ws0{word-spacing:-19.033333pt;}
.ws6{word-spacing:-19.000000pt;}
.ws4{word-spacing:-17.000000pt;}
.ws2{word-spacing:-16.969333pt;}
.ws3{word-spacing:-15.906667pt;}
.ws7{word-spacing:-15.453333pt;}
.wsc{word-spacing:-15.133333pt;}
.wsb{word-spacing:-14.969333pt;}
.wse{word-spacing:-12.033333pt;}
.wsd{word-spacing:-12.000000pt;}
.ws5{word-spacing:0.000000pt;}
.ws8{word-spacing:92.609333pt;}
.ws9{word-spacing:108.471467pt;}
.wsa{word-spacing:317.114667pt;}
._1{margin-left:-7.765600pt;}
._5{margin-left:-6.471333pt;}
._1d{margin-left:-5.461200pt;}
._6{margin-left:-4.415733pt;}
._4{margin-left:-2.740800pt;}
._3{margin-left:-1.598800pt;}
._0{width:1.065867pt;}
._2{width:2.055600pt;}
._d{width:3.109733pt;}
._8{width:4.114533pt;}
._15{width:5.433600pt;}
._10{width:6.338267pt;}
._13{width:7.389467pt;}
._7{width:8.437200pt;}
._27{width:9.371600pt;}
._f{width:10.705200pt;}
._14{width:11.789467pt;}
._e{width:14.213867pt;}
._12{width:15.570533pt;}
._26{width:18.442533pt;}
._c{width:19.451200pt;}
._11{width:20.439067pt;}
._b{width:22.386933pt;}
._22{width:23.642933pt;}
._28{width:26.527067pt;}
._20{width:27.522800pt;}
._21{width:30.277067pt;}
._25{width:31.646133pt;}
._29{width:34.452133pt;}
._23{width:35.574133pt;}
._24{width:38.932667pt;}
._2a{width:39.899867pt;}
._2b{width:41.537867pt;}
._19{width:43.438400pt;}
._18{width:46.315467pt;}
._16{width:47.280533pt;}
._17{width:48.279467pt;}
._1b{width:51.208000pt;}
._1c{width:53.824667pt;}
._33{width:54.869733pt;}
._1a{width:55.877867pt;}
._32{width:58.994267pt;}
._31{width:59.912533pt;}
._1f{width:66.394133pt;}
._1e{width:67.475600pt;}
._2f{width:74.547333pt;}
._30{width:75.938267pt;}
._2e{width:79.609867pt;}
._2d{width:168.351067pt;}
._9{width:233.332000pt;}
._a{width:1739.073333pt;}
._2c{width:2065.560000pt;}
.fs2{font-size:48.000000pt;}
.fs3{font-size:48.133333pt;}
.fs4{font-size:52.000000pt;}
.fs5{font-size:52.133333pt;}
.fs1{font-size:68.000000pt;}
.fs0{font-size:76.133333pt;}
.y0{bottom:0.000000pt;}
.y52{bottom:12.226667pt;}
.y51{bottom:26.040000pt;}
.y49{bottom:40.533333pt;}
.y9{bottom:51.033333pt;}
.y4a{bottom:68.266667pt;}
.y8{bottom:73.066667pt;}
.y59{bottom:85.760000pt;}
.y7{bottom:94.066667pt;}
.y4b{bottom:96.000000pt;}
.y60{bottom:96.106667pt;}
.y58{bottom:100.106667pt;}
.y6{bottom:116.100000pt;}
.y5f{bottom:117.266667pt;}
.y4c{bottom:123.706667pt;}
.y5e{bottom:138.440000pt;}
.y47{bottom:140.133333pt;}
.y2d{bottom:149.133333pt;}
.y4d{bottom:151.440000pt;}
.y46{bottom:159.133333pt;}
.y5d{bottom:159.600000pt;}
.y56{bottom:161.000000pt;}
.y2c{bottom:172.133333pt;}
.y5a{bottom:172.800000pt;}
.y55{bottom:175.333333pt;}
.y4e{bottom:179.173333pt;}
.y5c{bottom:180.773333pt;}
.y57{bottom:183.893333pt;}
.y2b{bottom:195.173333pt;}
.y3a{bottom:197.173333pt;}
.y5b{bottom:201.293333pt;}
.y54{bottom:203.066667pt;}
.y4f{bottom:206.893333pt;}
.y2a{bottom:218.200000pt;}
.y39{bottom:220.200000pt;}
.y50{bottom:234.600000pt;}
.y29{bottom:241.200000pt;}
.y38{bottom:243.200000pt;}
.y53{bottom:258.506667pt;}
.y28{bottom:264.226667pt;}
.y37{bottom:266.226667pt;}
.y27{bottom:287.226667pt;}
.y36{bottom:288.266667pt;}
.y26{bottom:310.266667pt;}
.y35{bottom:311.266667pt;}
.y25{bottom:333.293333pt;}
.y34{bottom:334.306667pt;}
.y24{bottom:355.306667pt;}
.y33{bottom:357.293333pt;}
.y23{bottom:378.333333pt;}
.y32{bottom:380.333333pt;}
.y22{bottom:401.360000pt;}
.y31{bottom:403.373333pt;}
.y21{bottom:424.373333pt;}
.y30{bottom:426.373333pt;}
.y20{bottom:447.400000pt;}
.y2f{bottom:449.400000pt;}
.y45{bottom:454.400000pt;}
.y2e{bottom:468.400000pt;}
.y1f{bottom:470.400000pt;}
.y44{bottom:477.440000pt;}
.y1e{bottom:493.426667pt;}
.y43{bottom:500.440000pt;}
.y1d{bottom:516.466667pt;}
.y42{bottom:523.466667pt;}
.y1c{bottom:539.466667pt;}
.y41{bottom:546.466667pt;}
.y1b{bottom:562.506667pt;}
.y40{bottom:569.506667pt;}
.y1a{bottom:585.533333pt;}
.y3f{bottom:592.533333pt;}
.y19{bottom:608.533333pt;}
.y3e{bottom:615.533333pt;}
.y18{bottom:631.560000pt;}
.y3d{bottom:637.560000pt;}
.y17{bottom:653.560000pt;}
.y3c{bottom:660.600000pt;}
.y16{bottom:676.600000pt;}
.y3b{bottom:679.600000pt;}
.y48{bottom:681.000000pt;}
.y15{bottom:699.626667pt;}
.y14{bottom:722.626667pt;}
.y13{bottom:745.666667pt;}
.y12{bottom:768.666667pt;}
.y61{bottom:774.706667pt;}
.y11{bottom:791.706667pt;}
.y10{bottom:814.733333pt;}
.yf{bottom:837.733333pt;}
.ye{bottom:860.773333pt;}
.yd{bottom:883.800000pt;}
.yc{bottom:906.800000pt;}
.yb{bottom:928.840000pt;}
.ya{bottom:951.840000pt;}
.y5{bottom:972.866667pt;}
.y4{bottom:993.866667pt;}
.y3{bottom:1015.893333pt;}
.y2{bottom:1036.933333pt;}
.y1{bottom:1058.933333pt;}
.ha{height:36.398438pt;}
.hb{height:36.499544pt;}
.h10{height:47.109375pt;}
.hc{height:47.240234pt;}
.h8{height:47.480469pt;}
.h7{height:49.705078pt;}
.he{height:52.406250pt;}
.hf{height:52.540625pt;}
.h5{height:66.705078pt;}
.h6{height:66.738281pt;}
.h4{height:68.531250pt;}
.h11{height:69.893285pt;}
.h3{height:74.720703pt;}
.h2{height:76.728125pt;}
.hd{height:102.493568pt;}
.h9{height:287.000000pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w2{width:480.000000pt;}
.w1{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:22.533333pt;}
.x10{left:28.633333pt;}
.x12{left:73.533333pt;}
.x2{left:76.099988pt;}
.x18{left:90.133333pt;}
.xf{left:94.000000pt;}
.xd{left:95.133322pt;}
.x14{left:99.506667pt;}
.x17{left:106.733333pt;}
.x3{left:123.166655pt;}
.x4{left:129.166655pt;}
.x19{left:137.693333pt;}
.x1{left:144.199988pt;}
.x15{left:190.773333pt;}
.x16{left:197.200000pt;}
.x5{left:217.266655pt;}
.x9{left:219.266655pt;}
.x8{left:247.306655pt;}
.x13{left:252.333333pt;}
.x7{left:264.333322pt;}
.xb{left:282.359988pt;}
.xa{left:286.373322pt;}
.x1b{left:308.399988pt;}
.xc{left:316.399988pt;}
.x1a{left:353.506667pt;}
.x6{left:407.533322pt;}
.xe{left:575.733322pt;}
}




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