
    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_9d57719474e357e978e00a74.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.952637;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_7815aa440abc59f9bad4480b.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c42a208e6ace6fee9d19e2a8.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_aba301c14898aded8da460c9.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_a285923ebffb71cb94e3bb7e.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_67c2219a07bee062a5ccb0cd.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_faf519d5f9429247228722fe.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.097168;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_eb966660e23a982bb4a2aed2.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_137e5c8471ebbdb7eddd06d9.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;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:27.360000px;}
.ls23{letter-spacing:-0.936000px;}
.ls17{letter-spacing:-0.720000px;}
.ls20{letter-spacing:-0.360000px;}
.ls16{letter-spacing:-0.288000px;}
.ls15{letter-spacing:-0.144000px;}
.ls1f{letter-spacing:-0.053280px;}
.ls14{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000001px;}
.ls25{letter-spacing:0.120000px;}
.ls2{letter-spacing:0.144000px;}
.ls1b{letter-spacing:0.150000px;}
.ls1e{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.288000px;}
.ls1d{letter-spacing:0.298800px;}
.ls26{letter-spacing:0.360000px;}
.ls22{letter-spacing:0.460080px;}
.ls1a{letter-spacing:0.720000px;}
.ls24{letter-spacing:0.864000px;}
.ls18{letter-spacing:3.600000px;}
.ls21{letter-spacing:3.780000px;}
.ls1c{letter-spacing:4.500000px;}
.ls1{letter-spacing:10.080000px;}
.ls6{letter-spacing:13.680000px;}
.ls5{letter-spacing:14.400000px;}
.ls4{letter-spacing:14.580000px;}
.ls3{letter-spacing:15.120000px;}
.ls27{letter-spacing:15.300000px;}
.ls8{letter-spacing:19.560000px;}
.ls7{letter-spacing:20.160000px;}
.lse{letter-spacing:21.600000px;}
.lsa{letter-spacing:22.320000px;}
.lsb{letter-spacing:23.040000px;}
.ls12{letter-spacing:25.200000px;}
.ls13{letter-spacing:25.380000px;}
.ls19{letter-spacing:29.520000px;}
.ls11{letter-spacing:32.400000px;}
.ls10{letter-spacing:33.120000px;}
.lsc{letter-spacing:35.280000px;}
.lsd{letter-spacing:36.000000px;}
.ls9{letter-spacing:43.920000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0{text-shadow:-0.015em 0 rgb(255,0,0),0 0.015em rgb(255,0,0),0.015em 0 rgb(255,0,0),0 -0.015em  rgb(255,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc2{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(255,0,0);text-shadow:none;}
}
.wsc{word-spacing:-18.864000px;}
.wsa{word-spacing:-18.720000px;}
.ws3{word-spacing:-18.288000px;}
.ws1{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.856000px;}
.ws9{word-spacing:-17.712000px;}
.wsb{word-spacing:-17.064000px;}
.ws8{word-spacing:-15.238800px;}
.ws5{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.886720px;}
.ws7{word-spacing:-14.580000px;}
.ws4{word-spacing:0.000000px;}
._8{margin-left:-5.112000px;}
._4{margin-left:-3.816000px;}
._3{margin-left:-2.736000px;}
._2{margin-left:-1.152000px;}
._0{width:1.723680px;}
._5{width:3.600000px;}
._19{width:5.044320px;}
._1a{width:6.048000px;}
._c{width:7.488000px;}
._1b{width:9.144000px;}
._9{width:10.152000px;}
._10{width:11.376000px;}
._f{width:12.528000px;}
._1f{width:13.536000px;}
._6{width:14.832000px;}
._7{width:16.572000px;}
._1c{width:19.156320px;}
._17{width:20.784000px;}
._18{width:22.032000px;}
._a{width:23.232000px;}
._15{width:26.944320px;}
._14{width:28.008000px;}
._16{width:29.592000px;}
._b{width:36.000000px;}
._12{width:37.588320px;}
._11{width:38.736000px;}
._22{width:42.140160px;}
._21{width:43.385760px;}
._13{width:45.432000px;}
._d{width:47.088000px;}
._e{width:48.528000px;}
._20{width:91.339200px;}
._1d{width:115.776000px;}
._1e{width:117.072000px;}
._1{width:141.870226px;}
.fc6{color:rgb(68,71,70);}
.fc5{color:rgb(0,0,255);}
.fc4{color:rgb(71,71,71);}
.fc3{color:rgb(118,118,118);}
.fc2{color:rgb(31,31,31);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs6{font-size:38.880000px;}
.fs5{font-size:48.240000px;}
.fs4{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:69.120000px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y5{bottom:26.640000px;}
.y3{bottom:31.140000px;}
.y4{bottom:42.120000px;}
.y4c{bottom:106.920000px;}
.y4b{bottom:124.236000px;}
.y4a{bottom:129.456000px;}
.y49{bottom:141.336000px;}
.y25{bottom:147.096000px;}
.y48{bottom:158.610000px;}
.y54{bottom:163.830000px;}
.y47{bottom:175.890000px;}
.y53{bottom:176.790000px;}
.y50{bottom:177.510000px;}
.y24{bottom:178.230000px;}
.y57{bottom:181.110000px;}
.y46{bottom:193.170000px;}
.y56{bottom:194.070000px;}
.y45{bottom:198.390000px;}
.y4f{bottom:208.650000px;}
.y23{bottom:209.190000px;}
.y44{bottom:211.350000px;}
.y4e{bottom:239.610000px;}
.y22{bottom:240.330000px;}
.y43{bottom:270.750000px;}
.y21{bottom:271.290000px;}
.y42{bottom:301.710000px;}
.y20{bottom:302.430000px;}
.y41{bottom:332.850000px;}
.y1f{bottom:333.390000px;}
.y3f{bottom:363.810000px;}
.y1e{bottom:364.530000px;}
.y40{bottom:370.695000px;}
.y3d{bottom:394.995000px;}
.y1d{bottom:395.535000px;}
.y3e{bottom:401.835000px;}
.y3c{bottom:425.955000px;}
.y1c{bottom:426.675000px;}
.y3b{bottom:456.915000px;}
.y1b{bottom:457.635000px;}
.y3a{bottom:488.055000px;}
.y1a{bottom:488.775000px;}
.y39{bottom:519.015000px;}
.y19{bottom:519.375000px;}
.y38{bottom:550.155000px;}
.y18{bottom:550.875000px;}
.y37{bottom:581.115000px;}
.y17{bottom:581.835000px;}
.y55{bottom:587.955000px;}
.y36{bottom:612.255000px;}
.y16{bottom:612.975000px;}
.y35{bottom:643.245000px;}
.y15{bottom:643.965000px;}
.y52{bottom:674.025000px;}
.y34{bottom:674.385000px;}
.y14{bottom:675.105000px;}
.y33{bottom:705.345000px;}
.y13{bottom:706.065000px;}
.y32{bottom:736.485000px;}
.y12{bottom:737.205000px;}
.y31{bottom:767.445000px;}
.y11{bottom:768.165000px;}
.y30{bottom:798.585000px;}
.y10{bottom:799.305000px;}
.y2f{bottom:829.545000px;}
.yf{bottom:830.265000px;}
.y2e{bottom:860.685000px;}
.ye{bottom:861.405000px;}
.y2d{bottom:891.690000px;}
.yd{bottom:892.410000px;}
.y2c{bottom:922.830000px;}
.yc{bottom:923.190000px;}
.y2b{bottom:953.790000px;}
.yb{bottom:954.150000px;}
.y2a{bottom:984.930000px;}
.ya{bottom:985.110000px;}
.y29{bottom:1015.530000px;}
.y4d{bottom:1015.890000px;}
.y9{bottom:1016.250000px;}
.y8{bottom:1045.410000px;}
.y28{bottom:1047.030000px;}
.y7{bottom:1077.630000px;}
.y27{bottom:1077.990000px;}
.y6{bottom:1108.770000px;}
.y26{bottom:1109.130000px;}
.y51{bottom:1115.970000px;}
.y2{bottom:1171.260000px;}
.y1{bottom:1215.360000px;}
.he{height:38.158594px;}
.hc{height:47.344922px;}
.h4{height:50.229844px;}
.h5{height:50.760000px;}
.h10{height:52.669336px;}
.h3{height:57.948750px;}
.h8{height:58.651172px;}
.ha{height:63.457031px;}
.hd{height:65.884219px;}
.hf{height:70.628906px;}
.h9{height:70.664062px;}
.h7{height:72.562500px;}
.h11{height:74.704922px;}
.h2{height:80.283164px;}
.h6{height:95.245664px;}
.hb{height:1262.864910px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:50.040000px;}
.w3{width:892.957500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:6.810000px;}
.xd{left:127.656000px;}
.x14{left:132.516000px;}
.x1{left:148.896000px;}
.x8{left:170.130000px;}
.x6{left:176.970000px;}
.x17{left:192.607500px;}
.x18{left:198.750000px;}
.x15{left:201.067500px;}
.x16{left:207.210000px;}
.x2{left:235.110000px;}
.x7{left:251.310000px;}
.xb{left:267.690000px;}
.x9{left:315.435000px;}
.x13{left:343.695000px;}
.xa{left:365.655000px;}
.xe{left:454.215000px;}
.xc{left:466.275000px;}
.x11{left:523.522500px;}
.x12{left:529.665000px;}
.xf{left:686.062500px;}
.x10{left:692.205000px;}
.x4{left:758.520000px;}
.x3{left:819.510000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls23{letter-spacing:-0.832000pt;}
.ls17{letter-spacing:-0.640000pt;}
.ls20{letter-spacing:-0.320000pt;}
.ls16{letter-spacing:-0.256000pt;}
.ls15{letter-spacing:-0.128000pt;}
.ls1f{letter-spacing:-0.047360pt;}
.ls14{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000001pt;}
.ls25{letter-spacing:0.106667pt;}
.ls2{letter-spacing:0.128000pt;}
.ls1b{letter-spacing:0.133333pt;}
.ls1e{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.256000pt;}
.ls1d{letter-spacing:0.265600pt;}
.ls26{letter-spacing:0.320000pt;}
.ls22{letter-spacing:0.408960pt;}
.ls1a{letter-spacing:0.640000pt;}
.ls24{letter-spacing:0.768000pt;}
.ls18{letter-spacing:3.200000pt;}
.ls21{letter-spacing:3.360000pt;}
.ls1c{letter-spacing:4.000000pt;}
.ls1{letter-spacing:8.960000pt;}
.ls6{letter-spacing:12.160000pt;}
.ls5{letter-spacing:12.800000pt;}
.ls4{letter-spacing:12.960000pt;}
.ls3{letter-spacing:13.440000pt;}
.ls27{letter-spacing:13.600000pt;}
.ls8{letter-spacing:17.386667pt;}
.ls7{letter-spacing:17.920000pt;}
.lse{letter-spacing:19.200000pt;}
.lsa{letter-spacing:19.840000pt;}
.lsb{letter-spacing:20.480000pt;}
.ls12{letter-spacing:22.400000pt;}
.ls13{letter-spacing:22.560000pt;}
.ls19{letter-spacing:26.240000pt;}
.ls11{letter-spacing:28.800000pt;}
.ls10{letter-spacing:29.440000pt;}
.lsc{letter-spacing:31.360000pt;}
.lsd{letter-spacing:32.000000pt;}
.ls9{letter-spacing:39.040000pt;}
.wsc{word-spacing:-16.768000pt;}
.wsa{word-spacing:-16.640000pt;}
.ws3{word-spacing:-16.256000pt;}
.ws1{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.872000pt;}
.ws9{word-spacing:-15.744000pt;}
.wsb{word-spacing:-15.168000pt;}
.ws8{word-spacing:-13.545600pt;}
.ws5{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.232640pt;}
.ws7{word-spacing:-12.960000pt;}
.ws4{word-spacing:0.000000pt;}
._8{margin-left:-4.544000pt;}
._4{margin-left:-3.392000pt;}
._3{margin-left:-2.432000pt;}
._2{margin-left:-1.024000pt;}
._0{width:1.532160pt;}
._5{width:3.200000pt;}
._19{width:4.483840pt;}
._1a{width:5.376000pt;}
._c{width:6.656000pt;}
._1b{width:8.128000pt;}
._9{width:9.024000pt;}
._10{width:10.112000pt;}
._f{width:11.136000pt;}
._1f{width:12.032000pt;}
._6{width:13.184000pt;}
._7{width:14.730667pt;}
._1c{width:17.027840pt;}
._17{width:18.474667pt;}
._18{width:19.584000pt;}
._a{width:20.650667pt;}
._15{width:23.950507pt;}
._14{width:24.896000pt;}
._16{width:26.304000pt;}
._b{width:32.000000pt;}
._12{width:33.411840pt;}
._11{width:34.432000pt;}
._22{width:37.457920pt;}
._21{width:38.565120pt;}
._13{width:40.384000pt;}
._d{width:41.856000pt;}
._e{width:43.136000pt;}
._20{width:81.190400pt;}
._1d{width:102.912000pt;}
._1e{width:104.064000pt;}
._1{width:126.106867pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:42.880000pt;}
.fs4{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:61.440000pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:23.680000pt;}
.y3{bottom:27.680000pt;}
.y4{bottom:37.440000pt;}
.y4c{bottom:95.040000pt;}
.y4b{bottom:110.432000pt;}
.y4a{bottom:115.072000pt;}
.y49{bottom:125.632000pt;}
.y25{bottom:130.752000pt;}
.y48{bottom:140.986667pt;}
.y54{bottom:145.626667pt;}
.y47{bottom:156.346667pt;}
.y53{bottom:157.146667pt;}
.y50{bottom:157.786667pt;}
.y24{bottom:158.426667pt;}
.y57{bottom:160.986667pt;}
.y46{bottom:171.706667pt;}
.y56{bottom:172.506667pt;}
.y45{bottom:176.346667pt;}
.y4f{bottom:185.466667pt;}
.y23{bottom:185.946667pt;}
.y44{bottom:187.866667pt;}
.y4e{bottom:212.986667pt;}
.y22{bottom:213.626667pt;}
.y43{bottom:240.666667pt;}
.y21{bottom:241.146667pt;}
.y42{bottom:268.186667pt;}
.y20{bottom:268.826667pt;}
.y41{bottom:295.866667pt;}
.y1f{bottom:296.346667pt;}
.y3f{bottom:323.386667pt;}
.y1e{bottom:324.026667pt;}
.y40{bottom:329.506667pt;}
.y3d{bottom:351.106667pt;}
.y1d{bottom:351.586667pt;}
.y3e{bottom:357.186667pt;}
.y3c{bottom:378.626667pt;}
.y1c{bottom:379.266667pt;}
.y3b{bottom:406.146667pt;}
.y1b{bottom:406.786667pt;}
.y3a{bottom:433.826667pt;}
.y1a{bottom:434.466667pt;}
.y39{bottom:461.346667pt;}
.y19{bottom:461.666667pt;}
.y38{bottom:489.026667pt;}
.y18{bottom:489.666667pt;}
.y37{bottom:516.546667pt;}
.y17{bottom:517.186667pt;}
.y55{bottom:522.626667pt;}
.y36{bottom:544.226667pt;}
.y16{bottom:544.866667pt;}
.y35{bottom:571.773333pt;}
.y15{bottom:572.413333pt;}
.y52{bottom:599.133333pt;}
.y34{bottom:599.453333pt;}
.y14{bottom:600.093333pt;}
.y33{bottom:626.973333pt;}
.y13{bottom:627.613333pt;}
.y32{bottom:654.653333pt;}
.y12{bottom:655.293333pt;}
.y31{bottom:682.173333pt;}
.y11{bottom:682.813333pt;}
.y30{bottom:709.853333pt;}
.y10{bottom:710.493333pt;}
.y2f{bottom:737.373333pt;}
.yf{bottom:738.013333pt;}
.y2e{bottom:765.053333pt;}
.ye{bottom:765.693333pt;}
.y2d{bottom:792.613333pt;}
.yd{bottom:793.253333pt;}
.y2c{bottom:820.293333pt;}
.yc{bottom:820.613333pt;}
.y2b{bottom:847.813333pt;}
.yb{bottom:848.133333pt;}
.y2a{bottom:875.493333pt;}
.ya{bottom:875.653333pt;}
.y29{bottom:902.693333pt;}
.y4d{bottom:903.013333pt;}
.y9{bottom:903.333333pt;}
.y8{bottom:929.253333pt;}
.y28{bottom:930.693333pt;}
.y7{bottom:957.893333pt;}
.y27{bottom:958.213333pt;}
.y6{bottom:985.573333pt;}
.y26{bottom:985.893333pt;}
.y51{bottom:991.973333pt;}
.y2{bottom:1041.120000pt;}
.y1{bottom:1080.320000pt;}
.he{height:33.918750pt;}
.hc{height:42.084375pt;}
.h4{height:44.648750pt;}
.h5{height:45.120000pt;}
.h10{height:46.817187pt;}
.h3{height:51.510000pt;}
.h8{height:52.134375pt;}
.ha{height:56.406250pt;}
.hd{height:58.563750pt;}
.hf{height:62.781250pt;}
.h9{height:62.812500pt;}
.h7{height:64.500000pt;}
.h11{height:66.404375pt;}
.h2{height:71.362813pt;}
.h6{height:84.662813pt;}
.hb{height:1122.546587pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:44.480000pt;}
.w3{width:793.740000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:6.053333pt;}
.xd{left:113.472000pt;}
.x14{left:117.792000pt;}
.x1{left:132.352000pt;}
.x8{left:151.226667pt;}
.x6{left:157.306667pt;}
.x17{left:171.206667pt;}
.x18{left:176.666667pt;}
.x15{left:178.726667pt;}
.x16{left:184.186667pt;}
.x2{left:208.986667pt;}
.x7{left:223.386667pt;}
.xb{left:237.946667pt;}
.x9{left:280.386667pt;}
.x13{left:305.506667pt;}
.xa{left:325.026667pt;}
.xe{left:403.746667pt;}
.xc{left:414.466667pt;}
.x11{left:465.353333pt;}
.x12{left:470.813333pt;}
.xf{left:609.833333pt;}
.x10{left:615.293333pt;}
.x4{left:674.240000pt;}
.x3{left:728.453333pt;}
}




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