
    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_8ba3bfc7c06d22a1b5a595f3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.687500;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_2aac850d24ab0d8ca89b0415.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.750000;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_fb367a8ad4d12c2b77231974.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.971191;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_7c7063ace81345a857cf59c2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.781738;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_cf49e45855bd3dd0d578e59b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.966309;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_9d0d3169f88e473028a550cd.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.750000;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_802d48b81e4498d137395037.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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_ec3969c85fae9b8fd97f29ff.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938965;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_f3c54a05e7682f0dad085f26.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.857910;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_17816fed20c1eb412822fd49.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938477;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_5976699dcbfc04e007c3f328.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;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_5d223e1cab2caa26997c52bc.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;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:ffd;src:url('chunks/assets/font_954624784e41153f9757bd82.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.675781;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);}
.m2{transform:matrix(0.250019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250019,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);}
.v1{vertical-align:-3.941700px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:3.941700px;}
.ls11{letter-spacing:-0.225422px;}
.lsf{letter-spacing:-0.198720px;}
.ls9{letter-spacing:-0.158976px;}
.ls10{letter-spacing:-0.147690px;}
.lsb{letter-spacing:-0.125856px;}
.lsc{letter-spacing:-0.119232px;}
.ls12{letter-spacing:-0.101051px;}
.lsd{letter-spacing:-0.079488px;}
.lse{letter-spacing:-0.039744px;}
.ls8{letter-spacing:-0.036000px;}
.ls5{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.007200px;}
.ls6{letter-spacing:0.028800px;}
.lsa{letter-spacing:0.119520px;}
.ls4{letter-spacing:1.678320px;}
.ls3{letter-spacing:1.679040px;}
.ls0{letter-spacing:3.486240px;}
.ls1{letter-spacing:3.486960px;}
.ls2{letter-spacing:3.487680px;}
.ls16{letter-spacing:5.101920px;}
.ls13{letter-spacing:5.457600px;}
.ls18{letter-spacing:7.161120px;}
.ls17{letter-spacing:7.938000px;}
.ls19{letter-spacing:12.436416px;}
.ls1a{letter-spacing:12.436560px;}
.ls15{letter-spacing:216.782851px;}
.ls14{letter-spacing:957.845206px;}
.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;}
}
.ws0{word-spacing:-24.631200px;}
.ws4{word-spacing:-18.414720px;}
.ws2{word-spacing:-18.374976px;}
.ws5{word-spacing:-18.335232px;}
.ws3{word-spacing:-18.295488px;}
.ws6{word-spacing:-18.288864px;}
.ws7{word-spacing:-18.255744px;}
.wsc{word-spacing:-18.216000px;}
.ws1{word-spacing:-0.179280px;}
.wsb{word-spacing:0.000000px;}
.wsa{word-spacing:0.023319px;}
.ws8{word-spacing:0.069958px;}
.ws9{word-spacing:0.147690px;}
.wse{word-spacing:57.514555px;}
.wsd{word-spacing:93.686915px;}
._5{margin-left:-4.388328px;}
._3{margin-left:-3.113280px;}
._6{margin-left:-2.061288px;}
._4{margin-left:-1.039176px;}
._1{width:1.059840px;}
._2{width:2.642832px;}
._0{width:3.775680px;}
._7{width:5.762880px;}
._c{width:7.052976px;}
._b{width:8.213760px;}
._d{width:12.769776px;}
._8{width:277.180189px;}
._a{width:531.733968px;}
._9{width:599.056585px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:transparent;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:30.240000px;}
.fs6{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs7{font-size:63.067258px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:77.731574px;}
.y0{bottom:0.000000px;}
.y3{bottom:5.460000px;}
.y1d{bottom:37.246338px;}
.y2{bottom:52.500000px;}
.y1{bottom:57.960000px;}
.y1f{bottom:72.333438px;}
.y4f{bottom:84.240000px;}
.y4a{bottom:86.040000px;}
.y1e{bottom:88.527588px;}
.y1a{bottom:90.540000px;}
.y2e{bottom:92.880000px;}
.y2f{bottom:92.880030px;}
.y42{bottom:94.500000px;}
.y49{bottom:101.520000px;}
.y19{bottom:109.620000px;}
.y41{bottom:113.400000px;}
.y18{bottom:128.520000px;}
.y40{bottom:132.300000px;}
.y17{bottom:144.000000px;}
.y3f{bottom:151.380000px;}
.y1c{bottom:151.684488px;}
.y3e{bottom:170.280000px;}
.y3d{bottom:189.360000px;}
.y3c{bottom:208.260000px;}
.y3b{bottom:227.160000px;}
.y3a{bottom:242.640000px;}
.y30{bottom:285.688091px;}
.y31{bottom:414.778886px;}
.y4e{bottom:527.220000px;}
.y2d{bottom:535.860000px;}
.y4d{bottom:546.120000px;}
.y2c{bottom:554.760000px;}
.y4c{bottom:565.200000px;}
.y2b{bottom:573.660000px;}
.y48{bottom:584.100000px;}
.y16{bottom:586.980000px;}
.y2a{bottom:591.660000px;}
.y4b{bottom:599.580000px;}
.y47{bottom:603.180000px;}
.y15{bottom:605.880000px;}
.y29{bottom:606.420000px;}
.y46{bottom:622.080000px;}
.y14{bottom:624.960000px;}
.y28{bottom:625.500000px;}
.y45{bottom:641.160000px;}
.y13{bottom:643.860000px;}
.y27{bottom:644.400000px;}
.y12{bottom:659.340000px;}
.y1b{bottom:659.770800px;}
.y44{bottom:660.060000px;}
.y26{bottom:663.480000px;}
.y43{bottom:675.540000px;}
.y25{bottom:682.380000px;}
.y39{bottom:685.620000px;}
.y24{bottom:701.460000px;}
.y38{bottom:704.700000px;}
.y23{bottom:718.560000px;}
.y37{bottom:723.600000px;}
.y22{bottom:729.000000px;}
.y36{bottom:739.080000px;}
.y21{bottom:744.480000px;}
.y11{bottom:868.320000px;}
.y10{bottom:887.400000px;}
.yf{bottom:906.300000px;}
.ye{bottom:925.380000px;}
.yd{bottom:944.280000px;}
.yc{bottom:963.180000px;}
.yb{bottom:982.260000px;}
.ya{bottom:1001.160000px;}
.y9{bottom:1020.420000px;}
.y8{bottom:1040.580000px;}
.y35{bottom:1042.560000px;}
.y7{bottom:1059.120000px;}
.y34{bottom:1061.640000px;}
.y6{bottom:1078.740000px;}
.y33{bottom:1080.540000px;}
.y5{bottom:1097.640000px;}
.y32{bottom:1099.620000px;}
.y20{bottom:1118.520000px;}
.y4{bottom:1118.880000px;}
.hc{height:20.155078px;}
.h2{height:22.500000px;}
.hd{height:32.152148px;}
.hf{height:42.034574px;}
.h3{height:44.820000px;}
.h6{height:45.403594px;}
.h10{height:45.976274px;}
.h7{height:47.988281px;}
.hb{height:48.224531px;}
.h8{height:48.256875px;}
.h1{height:48.656250px;}
.h5{height:50.650313px;}
.ha{height:52.833179px;}
.h4{height:55.054688px;}
.h9{height:205.125000px;}
.he{height:439.380000px;}
.h0{height:1188.000000px;}
.w1{width:10.500000px;}
.w2{width:365.986050px;}
.w3{width:788.400000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x3{left:1.200000px;}
.x7{left:37.654755px;}
.x1{left:64.799928px;}
.xa{left:110.782620px;}
.xb{left:140.450370px;}
.x6{left:153.086820px;}
.x9{left:159.640770px;}
.x8{left:294.868470px;}
.xc{left:351.052020px;}
.x4{left:430.739820px;}
.xd{left:616.679820px;}
.x2{left:843.000000px;}
.x5{left:853.739820px;}
@media print{
.v1{vertical-align:-3.503733pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:3.503733pt;}
.ls11{letter-spacing:-0.200375pt;}
.lsf{letter-spacing:-0.176640pt;}
.ls9{letter-spacing:-0.141312pt;}
.ls10{letter-spacing:-0.131280pt;}
.lsb{letter-spacing:-0.111872pt;}
.lsc{letter-spacing:-0.105984pt;}
.ls12{letter-spacing:-0.089823pt;}
.lsd{letter-spacing:-0.070656pt;}
.lse{letter-spacing:-0.035328pt;}
.ls8{letter-spacing:-0.032000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.006400pt;}
.ls6{letter-spacing:0.025600pt;}
.lsa{letter-spacing:0.106240pt;}
.ls4{letter-spacing:1.491840pt;}
.ls3{letter-spacing:1.492480pt;}
.ls0{letter-spacing:3.098880pt;}
.ls1{letter-spacing:3.099520pt;}
.ls2{letter-spacing:3.100160pt;}
.ls16{letter-spacing:4.535040pt;}
.ls13{letter-spacing:4.851200pt;}
.ls18{letter-spacing:6.365440pt;}
.ls17{letter-spacing:7.056000pt;}
.ls19{letter-spacing:11.054592pt;}
.ls1a{letter-spacing:11.054720pt;}
.ls15{letter-spacing:192.695867pt;}
.ls14{letter-spacing:851.417961pt;}
.ws0{word-spacing:-21.894400pt;}
.ws4{word-spacing:-16.368640pt;}
.ws2{word-spacing:-16.333312pt;}
.ws5{word-spacing:-16.297984pt;}
.ws3{word-spacing:-16.262656pt;}
.ws6{word-spacing:-16.256768pt;}
.ws7{word-spacing:-16.227328pt;}
.wsc{word-spacing:-16.192000pt;}
.ws1{word-spacing:-0.159360pt;}
.wsb{word-spacing:0.000000pt;}
.wsa{word-spacing:0.020728pt;}
.ws8{word-spacing:0.062185pt;}
.ws9{word-spacing:0.131280pt;}
.wse{word-spacing:51.124049pt;}
.wsd{word-spacing:83.277258pt;}
._5{margin-left:-3.900736pt;}
._3{margin-left:-2.767360pt;}
._6{margin-left:-1.832256pt;}
._4{margin-left:-0.923712pt;}
._1{width:0.942080pt;}
._2{width:2.349184pt;}
._0{width:3.356160pt;}
._7{width:5.122560pt;}
._c{width:6.269312pt;}
._b{width:7.301120pt;}
._d{width:11.350912pt;}
._8{width:246.382390pt;}
._a{width:472.652416pt;}
._9{width:532.494743pt;}
.fs5{font-size:26.880000pt;}
.fs6{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs7{font-size:56.059785pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:69.094733pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:4.853333pt;}
.y1d{bottom:33.107856pt;}
.y2{bottom:46.666667pt;}
.y1{bottom:51.520000pt;}
.y1f{bottom:64.296389pt;}
.y4f{bottom:74.880000pt;}
.y4a{bottom:76.480000pt;}
.y1e{bottom:78.691189pt;}
.y1a{bottom:80.480000pt;}
.y2e{bottom:82.560000pt;}
.y2f{bottom:82.560027pt;}
.y42{bottom:84.000000pt;}
.y49{bottom:90.240000pt;}
.y19{bottom:97.440000pt;}
.y41{bottom:100.800000pt;}
.y18{bottom:114.240000pt;}
.y40{bottom:117.600000pt;}
.y17{bottom:128.000000pt;}
.y3f{bottom:134.560000pt;}
.y1c{bottom:134.830656pt;}
.y3e{bottom:151.360000pt;}
.y3d{bottom:168.320000pt;}
.y3c{bottom:185.120000pt;}
.y3b{bottom:201.920000pt;}
.y3a{bottom:215.680000pt;}
.y30{bottom:253.944970pt;}
.y31{bottom:368.692343pt;}
.y4e{bottom:468.640000pt;}
.y2d{bottom:476.320000pt;}
.y4d{bottom:485.440000pt;}
.y2c{bottom:493.120000pt;}
.y4c{bottom:502.400000pt;}
.y2b{bottom:509.920000pt;}
.y48{bottom:519.200000pt;}
.y16{bottom:521.760000pt;}
.y2a{bottom:525.920000pt;}
.y4b{bottom:532.960000pt;}
.y47{bottom:536.160000pt;}
.y15{bottom:538.560000pt;}
.y29{bottom:539.040000pt;}
.y46{bottom:552.960000pt;}
.y14{bottom:555.520000pt;}
.y28{bottom:556.000000pt;}
.y45{bottom:569.920000pt;}
.y13{bottom:572.320000pt;}
.y27{bottom:572.800000pt;}
.y12{bottom:586.080000pt;}
.y1b{bottom:586.462933pt;}
.y44{bottom:586.720000pt;}
.y26{bottom:589.760000pt;}
.y43{bottom:600.480000pt;}
.y25{bottom:606.560000pt;}
.y39{bottom:609.440000pt;}
.y24{bottom:623.520000pt;}
.y38{bottom:626.400000pt;}
.y23{bottom:638.720000pt;}
.y37{bottom:643.200000pt;}
.y22{bottom:648.000000pt;}
.y36{bottom:656.960000pt;}
.y21{bottom:661.760000pt;}
.y11{bottom:771.840000pt;}
.y10{bottom:788.800000pt;}
.yf{bottom:805.600000pt;}
.ye{bottom:822.560000pt;}
.yd{bottom:839.360000pt;}
.yc{bottom:856.160000pt;}
.yb{bottom:873.120000pt;}
.ya{bottom:889.920000pt;}
.y9{bottom:907.040000pt;}
.y8{bottom:924.960000pt;}
.y35{bottom:926.720000pt;}
.y7{bottom:941.440000pt;}
.y34{bottom:943.680000pt;}
.y6{bottom:958.880000pt;}
.y33{bottom:960.480000pt;}
.y5{bottom:975.680000pt;}
.y32{bottom:977.440000pt;}
.y20{bottom:994.240000pt;}
.y4{bottom:994.560000pt;}
.hc{height:17.915625pt;}
.h2{height:20.000000pt;}
.hd{height:28.579688pt;}
.hf{height:37.364065pt;}
.h3{height:39.840000pt;}
.h6{height:40.358750pt;}
.h10{height:40.867799pt;}
.h7{height:42.656250pt;}
.hb{height:42.866250pt;}
.h8{height:42.895000pt;}
.h1{height:43.250000pt;}
.h5{height:45.022500pt;}
.ha{height:46.962826pt;}
.h4{height:48.937500pt;}
.h9{height:182.333333pt;}
.he{height:390.560000pt;}
.h0{height:1056.000000pt;}
.w1{width:9.333333pt;}
.w2{width:325.320933pt;}
.w3{width:700.800000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x3{left:1.066667pt;}
.x7{left:33.470893pt;}
.x1{left:57.599936pt;}
.xa{left:98.473440pt;}
.xb{left:124.844773pt;}
.x6{left:136.077173pt;}
.x9{left:141.902907pt;}
.x8{left:262.105307pt;}
.xc{left:312.046240pt;}
.x4{left:382.879840pt;}
.xd{left:548.159840pt;}
.x2{left:749.333333pt;}
.x5{left:758.879840pt;}
}




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