
    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_78d3f8e4b3563e561ece2d2e.woff')format("woff");}.ff1{font-family:ff1;line-height:1.279785;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_8d69cc120e688b7391e3729c.woff')format("woff");}.ff2{font-family:ff2;line-height:1.279785;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_cd8fcd169c15911aeab9c663.woff')format("woff");}.ff3{font-family:ff3;line-height:1.090332;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_4f27a7159e055ff6d0b9918e.woff')format("woff");}.ff4{font-family:ff4;line-height:1.090332;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_95ca7e31a27eef802853834b.woff')format("woff");}.ff5{font-family:ff5;line-height:1.091797;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_bd035409e05c2c46f69330be.woff')format("woff");}.ff6{font-family:ff6;line-height:1.091797;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_0a47a2fbbfe22396df453a23.woff')format("woff");}.ff7{font-family:ff7;line-height:1.107422;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_3d8e5c381865080c7754bc5e.woff')format("woff");}.ff8{font-family:ff8;line-height:1.087891;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_d18861fe735072766e52e0f0.woff')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_33349aff6125936961d6f0ad.woff')format("woff");}.ffa{font-family:ffa;line-height:1.030273;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:-111.000000px;}
.v0{vertical-align:0.000000px;}
.ls24{letter-spacing:-3.576000px;}
.lsd{letter-spacing:-1.542000px;}
.ls23{letter-spacing:-1.320000px;}
.ls29{letter-spacing:-1.092000px;}
.ls11{letter-spacing:-0.708000px;}
.lsa{letter-spacing:-0.672000px;}
.lsf{letter-spacing:-0.492000px;}
.ls21{letter-spacing:-0.444000px;}
.ls15{letter-spacing:-0.408000px;}
.lse{letter-spacing:-0.345000px;}
.ls2a{letter-spacing:-0.204000px;}
.ls13{letter-spacing:-0.021000px;}
.ls4{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.012000px;}
.ls2e{letter-spacing:0.018000px;}
.ls1d{letter-spacing:0.024000px;}
.ls30{letter-spacing:0.030000px;}
.ls2d{letter-spacing:0.120000px;}
.ls25{letter-spacing:0.150000px;}
.ls14{letter-spacing:0.162000px;}
.ls1a{letter-spacing:0.174000px;}
.ls1e{letter-spacing:0.183000px;}
.ls27{letter-spacing:0.228000px;}
.ls1c{letter-spacing:0.246000px;}
.ls17{letter-spacing:0.258000px;}
.ls26{letter-spacing:0.270000px;}
.lsc{letter-spacing:0.276000px;}
.ls19{letter-spacing:0.300000px;}
.ls1b{letter-spacing:0.324000px;}
.ls3{letter-spacing:0.384000px;}
.ls7{letter-spacing:0.408000px;}
.ls31{letter-spacing:0.429000px;}
.ls10{letter-spacing:0.456000px;}
.ls22{letter-spacing:0.468000px;}
.ls32{letter-spacing:0.498000px;}
.ls0{letter-spacing:0.552000px;}
.ls28{letter-spacing:0.606000px;}
.ls18{letter-spacing:0.618000px;}
.ls2b{letter-spacing:0.780000px;}
.ls16{letter-spacing:1.020000px;}
.ls20{letter-spacing:1.056000px;}
.ls9{letter-spacing:1.404000px;}
.ls5{letter-spacing:1.908000px;}
.lsb{letter-spacing:1.929000px;}
.ls12{letter-spacing:1.944000px;}
.ls2f{letter-spacing:9.429000px;}
.ls2c{letter-spacing:14.109000px;}
.ls8{letter-spacing:18.429000px;}
.ls6{letter-spacing:27.984000px;}
.ls2{letter-spacing:29.484000px;}
.ls1{letter-spacing:936.834000px;}
.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:-30.108000px;}
.wsa{word-spacing:-15.672000px;}
.ws11{word-spacing:-15.396000px;}
.ws0{word-spacing:-15.168000px;}
.wsc{word-spacing:-15.084000px;}
.ws2{word-spacing:-14.616000px;}
.wsf{word-spacing:-14.412000px;}
.wsb{word-spacing:-14.172000px;}
.ws5{word-spacing:-13.944000px;}
.ws6{word-spacing:-11.847000px;}
.ws10{word-spacing:-11.799000px;}
.wse{word-spacing:-11.754000px;}
.ws3{word-spacing:-11.571000px;}
.ws9{word-spacing:-11.550000px;}
.ws8{word-spacing:-11.226000px;}
.ws7{word-spacing:-10.029000px;}
.wsd{word-spacing:-7.995000px;}
.ws4{word-spacing:0.000000px;}
._2{margin-left:-10.206000px;}
._11{margin-left:-8.094000px;}
._1a{margin-left:-6.084000px;}
._10{margin-left:-4.860000px;}
._4{margin-left:-3.840000px;}
._3{margin-left:-2.718000px;}
._0{margin-left:-1.650000px;}
._1{width:1.584000px;}
._7{width:3.396000px;}
._c{width:5.100000px;}
._12{width:6.984000px;}
._13{width:8.202000px;}
._14{width:9.258000px;}
._f{width:10.296000px;}
._a{width:11.442000px;}
._b{width:12.606000px;}
._16{width:13.608000px;}
._5{width:15.918000px;}
._6{width:17.334000px;}
._23{width:18.516000px;}
._9{width:19.536000px;}
._8{width:21.030000px;}
._1f{width:22.158000px;}
._20{width:23.268000px;}
._25{width:24.456000px;}
._24{width:25.842000px;}
._28{width:26.874000px;}
._26{width:27.876000px;}
._15{width:29.724000px;}
._d{width:31.242000px;}
._e{width:32.430000px;}
._27{width:34.302000px;}
._1c{width:35.352000px;}
._1b{width:36.498000px;}
._1d{width:37.656000px;}
._1e{width:39.570000px;}
._29{width:40.824000px;}
._34{width:41.898000px;}
._2b{width:43.056000px;}
._2c{width:44.178000px;}
._22{width:46.296000px;}
._21{width:47.742000px;}
._2a{width:48.870000px;}
._2d{width:91.572000px;}
._2e{width:92.580000px;}
._32{width:113.928000px;}
._33{width:115.944000px;}
._31{width:176.088000px;}
._30{width:177.840000px;}
._2f{width:207.216000px;}
._18{width:249.222000px;}
._19{width:555.282000px;}
._17{width:1262.232000px;}
.fc5{color:rgb(70,120,134);}
.fc4{color:rgb(39,83,23);}
.fc3{color:transparent;}
.fc1{color:rgb(112,48,160);}
.fc2{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:57.000000px;}
.fs1{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:96.000000px;}
.fs2{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y33{bottom:4.875000px;}
.y4{bottom:5.250000px;}
.y58{bottom:26.662500px;}
.y32{bottom:27.000000px;}
.y56{bottom:30.750000px;}
.y57{bottom:34.875000px;}
.y31{bottom:49.162500px;}
.y3{bottom:51.037500px;}
.y2{bottom:57.412500px;}
.y2e{bottom:58.162500px;}
.y30{bottom:70.912500px;}
.y2d{bottom:79.537500px;}
.y2f{bottom:93.037500px;}
.y2b{bottom:117.412500px;}
.y55{bottom:129.412500px;}
.y2a{bottom:139.537500px;}
.y54{bottom:151.530000px;}
.y29{bottom:161.655000px;}
.y53{bottom:173.670000px;}
.y28{bottom:183.450000px;}
.y52{bottom:195.450000px;}
.y27{bottom:205.575000px;}
.y51{bottom:217.575000px;}
.y26{bottom:227.325000px;}
.y50{bottom:239.325000px;}
.y25{bottom:249.450000px;}
.y4f{bottom:261.450000px;}
.y24{bottom:271.575000px;}
.y4e{bottom:283.575000px;}
.y23{bottom:293.325000px;}
.y4d{bottom:305.370000px;}
.y22{bottom:315.495000px;}
.y4c{bottom:327.480000px;}
.y21{bottom:337.245000px;}
.y4b{bottom:349.245000px;}
.y20{bottom:359.370000px;}
.y4a{bottom:371.355000px;}
.y1f{bottom:381.480000px;}
.y49{bottom:393.495000px;}
.y1e{bottom:403.245000px;}
.y48{bottom:415.245000px;}
.y1d{bottom:425.370000px;}
.y47{bottom:437.400000px;}
.y1c{bottom:447.150000px;}
.y46{bottom:459.150000px;}
.y1b{bottom:469.275000px;}
.y45{bottom:481.275000px;}
.y1a{bottom:491.025000px;}
.y44{bottom:503.400000px;}
.y19{bottom:513.150000px;}
.y43{bottom:525.150000px;}
.y18{bottom:546.900000px;}
.y42{bottom:547.275000px;}
.y17{bottom:569.070000px;}
.y16{bottom:591.195000px;}
.y15{bottom:612.945000px;}
.y41{bottom:613.320000px;}
.y14{bottom:635.070000px;}
.y13{bottom:657.195000px;}
.y12{bottom:678.945000px;}
.y11{bottom:701.100000px;}
.y10{bottom:722.850000px;}
.y40{bottom:723.225000px;}
.yf{bottom:744.975000px;}
.ye{bottom:767.100000px;}
.yd{bottom:788.850000px;}
.yc{bottom:810.975000px;}
.y3f{bottom:832.770000px;}
.yb{bottom:834.630000px;}
.y3e{bottom:854.880000px;}
.ya{bottom:863.880000px;}
.y3d{bottom:877.005000px;}
.y3c{bottom:898.755000px;}
.y9{bottom:920.880000px;}
.y3b{bottom:942.630000px;}
.y8{bottom:954.300000px;}
.y3a{bottom:964.800000px;}
.y39{bottom:986.925000px;}
.y7{bottom:1001.925000px;}
.y38{bottom:1008.675000px;}
.y37{bottom:1030.800000px;}
.y6{bottom:1049.550000px;}
.y36{bottom:1052.550000px;}
.y35{bottom:1074.705000px;}
.y34{bottom:1096.830000px;}
.y5{bottom:1118.580000px;}
.y1{bottom:1193.205000px;}
.y2c{bottom:1193.955000px;}
.h3{height:22.125000px;}
.h8{height:22.162500px;}
.h9{height:42.037500px;}
.ha{height:62.226562px;}
.h5{height:62.507812px;}
.h2{height:66.644531px;}
.h1{height:72.703125px;}
.h6{height:96.937500px;}
.h7{height:109.537500px;}
.h4{height:135.205078px;}
.h0{height:1263.000000px;}
.w3{width:28.912500px;}
.w4{width:638.175000px;}
.w2{width:892.874987px;}
.w0{width:892.875000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:27.037500px;}
.xd{left:126.037500px;}
.x1{left:127.537487px;}
.x5{left:148.949987px;}
.x9{left:154.574987px;}
.xe{left:156.082500px;}
.xa{left:181.574987px;}
.x4{left:187.199987px;}
.xb{left:236.744987px;}
.x2{left:282.119987px;}
.x7{left:332.774987px;}
.x6{left:359.774987px;}
.x8{left:373.274987px;}
.x3{left:736.800000px;}
@media print{
.v1{vertical-align:-98.666667pt;}
.v0{vertical-align:0.000000pt;}
.ls24{letter-spacing:-3.178667pt;}
.lsd{letter-spacing:-1.370667pt;}
.ls23{letter-spacing:-1.173333pt;}
.ls29{letter-spacing:-0.970667pt;}
.ls11{letter-spacing:-0.629333pt;}
.lsa{letter-spacing:-0.597333pt;}
.lsf{letter-spacing:-0.437333pt;}
.ls21{letter-spacing:-0.394667pt;}
.ls15{letter-spacing:-0.362667pt;}
.lse{letter-spacing:-0.306667pt;}
.ls2a{letter-spacing:-0.181333pt;}
.ls13{letter-spacing:-0.018667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.010667pt;}
.ls2e{letter-spacing:0.016000pt;}
.ls1d{letter-spacing:0.021333pt;}
.ls30{letter-spacing:0.026667pt;}
.ls2d{letter-spacing:0.106667pt;}
.ls25{letter-spacing:0.133333pt;}
.ls14{letter-spacing:0.144000pt;}
.ls1a{letter-spacing:0.154667pt;}
.ls1e{letter-spacing:0.162667pt;}
.ls27{letter-spacing:0.202667pt;}
.ls1c{letter-spacing:0.218667pt;}
.ls17{letter-spacing:0.229333pt;}
.ls26{letter-spacing:0.240000pt;}
.lsc{letter-spacing:0.245333pt;}
.ls19{letter-spacing:0.266667pt;}
.ls1b{letter-spacing:0.288000pt;}
.ls3{letter-spacing:0.341333pt;}
.ls7{letter-spacing:0.362667pt;}
.ls31{letter-spacing:0.381333pt;}
.ls10{letter-spacing:0.405333pt;}
.ls22{letter-spacing:0.416000pt;}
.ls32{letter-spacing:0.442667pt;}
.ls0{letter-spacing:0.490667pt;}
.ls28{letter-spacing:0.538667pt;}
.ls18{letter-spacing:0.549333pt;}
.ls2b{letter-spacing:0.693333pt;}
.ls16{letter-spacing:0.906667pt;}
.ls20{letter-spacing:0.938667pt;}
.ls9{letter-spacing:1.248000pt;}
.ls5{letter-spacing:1.696000pt;}
.lsb{letter-spacing:1.714667pt;}
.ls12{letter-spacing:1.728000pt;}
.ls2f{letter-spacing:8.381333pt;}
.ls2c{letter-spacing:12.541333pt;}
.ls8{letter-spacing:16.381333pt;}
.ls6{letter-spacing:24.874667pt;}
.ls2{letter-spacing:26.208000pt;}
.ls1{letter-spacing:832.741333pt;}
.ws1{word-spacing:-26.762667pt;}
.wsa{word-spacing:-13.930667pt;}
.ws11{word-spacing:-13.685333pt;}
.ws0{word-spacing:-13.482667pt;}
.wsc{word-spacing:-13.408000pt;}
.ws2{word-spacing:-12.992000pt;}
.wsf{word-spacing:-12.810667pt;}
.wsb{word-spacing:-12.597333pt;}
.ws5{word-spacing:-12.394667pt;}
.ws6{word-spacing:-10.530667pt;}
.ws10{word-spacing:-10.488000pt;}
.wse{word-spacing:-10.448000pt;}
.ws3{word-spacing:-10.285333pt;}
.ws9{word-spacing:-10.266667pt;}
.ws8{word-spacing:-9.978667pt;}
.ws7{word-spacing:-8.914667pt;}
.wsd{word-spacing:-7.106667pt;}
.ws4{word-spacing:0.000000pt;}
._2{margin-left:-9.072000pt;}
._11{margin-left:-7.194667pt;}
._1a{margin-left:-5.408000pt;}
._10{margin-left:-4.320000pt;}
._4{margin-left:-3.413333pt;}
._3{margin-left:-2.416000pt;}
._0{margin-left:-1.466667pt;}
._1{width:1.408000pt;}
._7{width:3.018667pt;}
._c{width:4.533333pt;}
._12{width:6.208000pt;}
._13{width:7.290667pt;}
._14{width:8.229333pt;}
._f{width:9.152000pt;}
._a{width:10.170667pt;}
._b{width:11.205333pt;}
._16{width:12.096000pt;}
._5{width:14.149333pt;}
._6{width:15.408000pt;}
._23{width:16.458667pt;}
._9{width:17.365333pt;}
._8{width:18.693333pt;}
._1f{width:19.696000pt;}
._20{width:20.682667pt;}
._25{width:21.738667pt;}
._24{width:22.970667pt;}
._28{width:23.888000pt;}
._26{width:24.778667pt;}
._15{width:26.421333pt;}
._d{width:27.770667pt;}
._e{width:28.826667pt;}
._27{width:30.490667pt;}
._1c{width:31.424000pt;}
._1b{width:32.442667pt;}
._1d{width:33.472000pt;}
._1e{width:35.173333pt;}
._29{width:36.288000pt;}
._34{width:37.242667pt;}
._2b{width:38.272000pt;}
._2c{width:39.269333pt;}
._22{width:41.152000pt;}
._21{width:42.437333pt;}
._2a{width:43.440000pt;}
._2d{width:81.397333pt;}
._2e{width:82.293333pt;}
._32{width:101.269333pt;}
._33{width:103.061333pt;}
._31{width:156.522667pt;}
._30{width:158.080000pt;}
._2f{width:184.192000pt;}
._18{width:221.530667pt;}
._19{width:493.584000pt;}
._17{width:1121.984000pt;}
.fs4{font-size:50.666667pt;}
.fs1{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:85.333333pt;}
.fs2{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y33{bottom:4.333333pt;}
.y4{bottom:4.666667pt;}
.y58{bottom:23.700000pt;}
.y32{bottom:24.000000pt;}
.y56{bottom:27.333333pt;}
.y57{bottom:31.000000pt;}
.y31{bottom:43.700000pt;}
.y3{bottom:45.366667pt;}
.y2{bottom:51.033333pt;}
.y2e{bottom:51.700000pt;}
.y30{bottom:63.033333pt;}
.y2d{bottom:70.700000pt;}
.y2f{bottom:82.700000pt;}
.y2b{bottom:104.366667pt;}
.y55{bottom:115.033333pt;}
.y2a{bottom:124.033333pt;}
.y54{bottom:134.693333pt;}
.y29{bottom:143.693333pt;}
.y53{bottom:154.373333pt;}
.y28{bottom:163.066667pt;}
.y52{bottom:173.733333pt;}
.y27{bottom:182.733333pt;}
.y51{bottom:193.400000pt;}
.y26{bottom:202.066667pt;}
.y50{bottom:212.733333pt;}
.y25{bottom:221.733333pt;}
.y4f{bottom:232.400000pt;}
.y24{bottom:241.400000pt;}
.y4e{bottom:252.066667pt;}
.y23{bottom:260.733333pt;}
.y4d{bottom:271.440000pt;}
.y22{bottom:280.440000pt;}
.y4c{bottom:291.093333pt;}
.y21{bottom:299.773333pt;}
.y4b{bottom:310.440000pt;}
.y20{bottom:319.440000pt;}
.y4a{bottom:330.093333pt;}
.y1f{bottom:339.093333pt;}
.y49{bottom:349.773333pt;}
.y1e{bottom:358.440000pt;}
.y48{bottom:369.106667pt;}
.y1d{bottom:378.106667pt;}
.y47{bottom:388.800000pt;}
.y1c{bottom:397.466667pt;}
.y46{bottom:408.133333pt;}
.y1b{bottom:417.133333pt;}
.y45{bottom:427.800000pt;}
.y1a{bottom:436.466667pt;}
.y44{bottom:447.466667pt;}
.y19{bottom:456.133333pt;}
.y43{bottom:466.800000pt;}
.y18{bottom:486.133333pt;}
.y42{bottom:486.466667pt;}
.y17{bottom:505.840000pt;}
.y16{bottom:525.506667pt;}
.y15{bottom:544.840000pt;}
.y41{bottom:545.173333pt;}
.y14{bottom:564.506667pt;}
.y13{bottom:584.173333pt;}
.y12{bottom:603.506667pt;}
.y11{bottom:623.200000pt;}
.y10{bottom:642.533333pt;}
.y40{bottom:642.866667pt;}
.yf{bottom:662.200000pt;}
.ye{bottom:681.866667pt;}
.yd{bottom:701.200000pt;}
.yc{bottom:720.866667pt;}
.y3f{bottom:740.240000pt;}
.yb{bottom:741.893333pt;}
.y3e{bottom:759.893333pt;}
.ya{bottom:767.893333pt;}
.y3d{bottom:779.560000pt;}
.y3c{bottom:798.893333pt;}
.y9{bottom:818.560000pt;}
.y3b{bottom:837.893333pt;}
.y8{bottom:848.266667pt;}
.y3a{bottom:857.600000pt;}
.y39{bottom:877.266667pt;}
.y7{bottom:890.600000pt;}
.y38{bottom:896.600000pt;}
.y37{bottom:916.266667pt;}
.y6{bottom:932.933333pt;}
.y36{bottom:935.600000pt;}
.y35{bottom:955.293333pt;}
.y34{bottom:974.960000pt;}
.y5{bottom:994.293333pt;}
.y1{bottom:1060.626667pt;}
.y2c{bottom:1061.293333pt;}
.h3{height:19.666667pt;}
.h8{height:19.700000pt;}
.h9{height:37.366667pt;}
.ha{height:55.312500pt;}
.h5{height:55.562500pt;}
.h2{height:59.239583pt;}
.h1{height:64.625000pt;}
.h6{height:86.166667pt;}
.h7{height:97.366667pt;}
.h4{height:120.182292pt;}
.h0{height:1122.666667pt;}
.w3{width:25.700000pt;}
.w4{width:567.266667pt;}
.w2{width:793.666655pt;}
.w0{width:793.666667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:24.033333pt;}
.xd{left:112.033333pt;}
.x1{left:113.366655pt;}
.x5{left:132.399988pt;}
.x9{left:137.399988pt;}
.xe{left:138.740000pt;}
.xa{left:161.399988pt;}
.x4{left:166.399988pt;}
.xb{left:210.439988pt;}
.x2{left:250.773322pt;}
.x7{left:295.799988pt;}
.x6{left:319.799988pt;}
.x8{left:331.799988pt;}
.x3{left:654.933333pt;}
}




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