
    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_8dfd0d9525cd62a4cc0a8b6f.woff')format("woff");}.ff1{font-family:ff1;line-height:1.012000;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_c8f3718f219a13b853af10ad.woff')format("woff");}.ff2{font-family:ff2;line-height:0.871094;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_e5108fd157344998c1264a51.woff')format("woff");}.ff3{font-family:ff3;line-height:1.021000;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_b5c67c7102ab77939fc4f8f2.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_88ef73749f6f04eab8a34b25.woff')format("woff");}.ff5{font-family:ff5;line-height:0.717285;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_155c75a0056a49bb5c865f93.woff')format("woff");}.ff6{font-family:ff6;line-height:0.855469;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_eddc84e6d437700ea1ca321d.woff')format("woff");}.ff7{font-family:ff7;line-height:0.773000;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_e28cbe23d29d660cd7335832.woff')format("woff");}.ff8{font-family:ff8;line-height:0.738000;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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:-75.540000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:5.655000px;}
.lsa{letter-spacing:-9.000000px;}
.lsb{letter-spacing:-0.048000px;}
.lsf{letter-spacing:-0.024000px;}
.lsc{letter-spacing:-0.012000px;}
.ls9{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.012888px;}
.ls6{letter-spacing:0.016404px;}
.ls3{letter-spacing:0.020100px;}
.lsd{letter-spacing:0.024000px;}
.lse{letter-spacing:0.036000px;}
.ls8{letter-spacing:0.048000px;}
.ls2{letter-spacing:95.189412px;}
.ls5{letter-spacing:119.189412px;}
.ls4{letter-spacing:124.240020px;}
.ls7{letter-spacing:133.831716px;}
.ls1{letter-spacing:155.189412px;}
.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;}
}
.ws3{word-spacing:-132.000000px;}
.ws7{word-spacing:-33.300000px;}
.ws8{word-spacing:-0.180000px;}
.ws4{word-spacing:-0.150000px;}
.ws6{word-spacing:-0.144000px;}
.ws5{word-spacing:-0.096000px;}
.ws9{word-spacing:0.000000px;}
.ws1{word-spacing:142.368000px;}
.ws0{word-spacing:148.350000px;}
.ws2{word-spacing:154.518000px;}
._6{margin-left:-24.192000px;}
._3{margin-left:-20.736000px;}
._12{margin-left:-16.679880px;}
._8{margin-left:-13.824000px;}
._b{margin-left:-10.800000px;}
._7{margin-left:-9.504000px;}
._9{margin-left:-8.352000px;}
._a{margin-left:-7.200000px;}
._4{margin-left:-6.048000px;}
._0{margin-left:-4.320000px;}
._5{margin-left:-2.592000px;}
._1{margin-left:-1.440000px;}
._2{width:2.880000px;}
._e{width:4.284000px;}
._d{width:5.724000px;}
._c{width:177.294000px;}
._11{width:206.520600px;}
._10{width:445.251600px;}
._f{width:1499.248620px;}
.fc4{color:rgb(2,42,70);}
.fc3{color:rgb(25,39,55);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc5{color:transparent;}
.fc0{color:rgb(244,72,0);}
.fs8{font-size:90.000000px;}
.fsa{font-size:96.000000px;}
.fs0{font-size:120.000000px;}
.fs6{font-size:132.000000px;}
.fs4{font-size:150.000000px;}
.fs9{font-size:168.000000px;}
.fs7{font-size:180.000000px;}
.fs5{font-size:210.000000px;}
.fs3{font-size:300.000000px;}
.fs2{font-size:546.000000px;}
.fs1{font-size:576.000000px;}
.y0{bottom:0.000000px;}
.y67{bottom:423.028800px;}
.y69{bottom:477.281850px;}
.y68{bottom:516.309600px;}
.y6a{bottom:519.461850px;}
.y66{bottom:632.100000px;}
.y65{bottom:683.099850px;}
.y64{bottom:732.599700px;}
.y63{bottom:783.599850px;}
.y62{bottom:833.099850px;}
.y61{bottom:884.099700px;}
.y60{bottom:935.099700px;}
.y5f{bottom:984.599700px;}
.y5e{bottom:1035.599850px;}
.y5d{bottom:1085.099700px;}
.y5b{bottom:1124.383350px;}
.y5c{bottom:1137.599700px;}
.y4b{bottom:1299.525150px;}
.y53{bottom:1301.836050px;}
.y4a{bottom:1335.525000px;}
.y52{bottom:1346.836050px;}
.y51{bottom:1391.836200px;}
.y50{bottom:1436.836050px;}
.y48{bottom:1462.253100px;}
.y4f{bottom:1481.836500px;}
.y47{bottom:1498.252500px;}
.y4e{bottom:1526.836500px;}
.y49{bottom:1650.349500px;}
.y41{bottom:1755.441000px;}
.y46{bottom:1763.601000px;}
.y4d{bottom:1774.291500px;}
.y40{bottom:1803.861000px;}
.y4c{bottom:1810.291500px;}
.y3f{bottom:1842.441000px;}
.y3e{bottom:1890.441000px;}
.y6f{bottom:1907.794500px;}
.y3d{bottom:1938.441000px;}
.y3c{bottom:1984.941000px;}
.y3b{bottom:2033.361000px;}
.y16{bottom:2052.744000px;}
.y3a{bottom:2071.941000px;}
.y39{bottom:2119.941000px;}
.y15{bottom:2129.128500px;}
.y5{bottom:2142.864000px;}
.y7{bottom:2147.778000px;}
.y38{bottom:2167.941000px;}
.y4{bottom:2178.864000px;}
.y6{bottom:2183.778000px;}
.y14{bottom:2195.644500px;}
.y37{bottom:2214.441000px;}
.y3{bottom:2214.864000px;}
.y58{bottom:2253.849000px;}
.y36{bottom:2262.441000px;}
.y13{bottom:2269.009500px;}
.y12{bottom:2308.774500px;}
.y59{bottom:2308.792500px;}
.y35{bottom:2310.441000px;}
.y2{bottom:2336.710500px;}
.y34{bottom:2356.941000px;}
.y1{bottom:2372.710500px;}
.y57{bottom:2375.479500px;}
.y5a{bottom:2393.410500px;}
.y33{bottom:2404.941000px;}
.y42{bottom:2466.706500px;}
.y32{bottom:2470.746000px;}
.y45{bottom:2574.885000px;}
.y21{bottom:2670.420000px;}
.y1b{bottom:2715.420000px;}
.y6e{bottom:2725.860000px;}
.y1f{bottom:2739.039000px;}
.y1a{bottom:2760.420000px;}
.y6d{bottom:2779.860000px;}
.y1e{bottom:2784.039000px;}
.y19{bottom:2805.420000px;}
.y1d{bottom:2829.039000px;}
.y6c{bottom:2833.860000px;}
.y18{bottom:2850.420000px;}
.y1c{bottom:2874.039000px;}
.y6b{bottom:2887.860000px;}
.y17{bottom:2895.420000px;}
.y20{bottom:2940.420000px;}
.y55{bottom:2951.772000px;}
.y56{bottom:3001.429500px;}
.y54{bottom:3005.772000px;}
.y31{bottom:3114.889500px;}
.y30{bottom:3177.889500px;}
.y2f{bottom:3240.889500px;}
.y2e{bottom:3303.889500px;}
.y2d{bottom:3366.889500px;}
.y2c{bottom:3429.889500px;}
.y43{bottom:3488.593500px;}
.y2b{bottom:3492.889500px;}
.y2a{bottom:3555.889500px;}
.y29{bottom:3618.889500px;}
.y28{bottom:3681.888000px;}
.y27{bottom:3744.889500px;}
.y26{bottom:3807.889500px;}
.y25{bottom:3870.889500px;}
.y24{bottom:3933.889500px;}
.y23{bottom:3996.888000px;}
.y44{bottom:4012.428000px;}
.yb{bottom:4053.805500px;}
.y22{bottom:4059.889500px;}
.y11{bottom:4083.255000px;}
.ya{bottom:4218.805500px;}
.y10{bottom:4234.755000px;}
.yf{bottom:4324.755000px;}
.y9{bottom:4391.305500px;}
.ye{bottom:4414.755000px;}
.yd{bottom:4504.755000px;}
.y8{bottom:4563.805500px;}
.yc{bottom:4594.755000px;}
.hf{height:65.340000px;}
.h12{height:66.515625px;}
.h6{height:83.144531px;}
.h2{height:92.640000px;}
.ha{height:101.904000px;}
.hb{height:103.092000px;}
.h7{height:115.800000px;}
.hd{height:117.150000px;}
.h10{height:129.696000px;}
.h11{height:131.208000px;}
.he{height:138.960000px;}
.hc{height:140.580000px;}
.h13{height:144.615000px;}
.h9{height:162.120000px;}
.h8{height:164.010000px;}
.h5{height:231.600000px;}
.h4{height:378.307617px;}
.h3{height:444.672000px;}
.h1{height:4751.999838px;}
.h0{height:4752.000000px;}
.w0{width:4752.000000px;}
.x0{left:0.000000px;}
.x34{left:56.181375px;}
.x9{left:60.025980px;}
.x2d{left:65.717355px;}
.x1d{left:73.620345px;}
.x32{left:80.737665px;}
.x35{left:110.181360px;}
.x2c{left:123.447975px;}
.x8{left:124.525965px;}
.x11{left:170.211118px;}
.xe{left:176.060766px;}
.x12{left:203.678340px;}
.xf{left:205.084890px;}
.x10{left:212.940915px;}
.x36{left:475.559250px;}
.x16{left:565.157220px;}
.x14{left:574.363770px;}
.x15{left:580.438020px;}
.x37{left:590.185200px;}
.x13{left:595.681245px;}
.x2a{left:650.951100px;}
.x29{left:676.425600px;}
.x2b{left:688.676850px;}
.x38{left:774.781800px;}
.x2f{left:817.786650px;}
.x30{left:823.150950px;}
.x31{left:872.981700px;}
.x39{left:900.046950px;}
.x1a{left:937.861980px;}
.x18{left:948.287160px;}
.x19{left:949.917870px;}
.x17{left:951.323505px;}
.x1c{left:956.874165px;}
.x1b{left:965.911395px;}
.x1f{left:1007.662500px;}
.x1e{left:1021.162500px;}
.x20{left:1067.662500px;}
.x21{left:1121.662500px;}
.x23{left:1322.895825px;}
.x24{left:1329.646050px;}
.x25{left:1339.808130px;}
.x26{left:1347.514860px;}
.x27{left:1349.389410px;}
.x2e{left:1597.464000px;}
.x3a{left:1758.318000px;}
.x3b{left:1791.318000px;}
.x22{left:1853.482500px;}
.x6{left:2131.060934px;}
.x1{left:2138.076844px;}
.x2{left:2155.131405px;}
.x7{left:2157.565125px;}
.x33{left:2173.264500px;}
.x4{left:2821.488870px;}
.x3{left:2825.103885px;}
.x5{left:2832.468525px;}
.xc{left:3005.706000px;}
.xd{left:3007.264500px;}
.xb{left:3040.635000px;}
.xa{left:3442.083000px;}
.x28{left:3747.037500px;}
.x3c{left:3765.037500px;}
@media print{
.v1{vertical-align:-67.146667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:5.026667pt;}
.lsa{letter-spacing:-8.000000pt;}
.lsb{letter-spacing:-0.042667pt;}
.lsf{letter-spacing:-0.021333pt;}
.lsc{letter-spacing:-0.010667pt;}
.ls9{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.011456pt;}
.ls6{letter-spacing:0.014581pt;}
.ls3{letter-spacing:0.017867pt;}
.lsd{letter-spacing:0.021333pt;}
.lse{letter-spacing:0.032000pt;}
.ls8{letter-spacing:0.042667pt;}
.ls2{letter-spacing:84.612811pt;}
.ls5{letter-spacing:105.946144pt;}
.ls4{letter-spacing:110.435573pt;}
.ls7{letter-spacing:118.961525pt;}
.ls1{letter-spacing:137.946144pt;}
.ws3{word-spacing:-117.333333pt;}
.ws7{word-spacing:-29.600000pt;}
.ws8{word-spacing:-0.160000pt;}
.ws4{word-spacing:-0.133333pt;}
.ws6{word-spacing:-0.128000pt;}
.ws5{word-spacing:-0.085333pt;}
.ws9{word-spacing:0.000000pt;}
.ws1{word-spacing:126.549333pt;}
.ws0{word-spacing:131.866667pt;}
.ws2{word-spacing:137.349333pt;}
._6{margin-left:-21.504000pt;}
._3{margin-left:-18.432000pt;}
._12{margin-left:-14.826560pt;}
._8{margin-left:-12.288000pt;}
._b{margin-left:-9.600000pt;}
._7{margin-left:-8.448000pt;}
._9{margin-left:-7.424000pt;}
._a{margin-left:-6.400000pt;}
._4{margin-left:-5.376000pt;}
._0{margin-left:-3.840000pt;}
._5{margin-left:-2.304000pt;}
._1{margin-left:-1.280000pt;}
._2{width:2.560000pt;}
._e{width:3.808000pt;}
._d{width:5.088000pt;}
._c{width:157.594667pt;}
._11{width:183.573867pt;}
._10{width:395.779200pt;}
._f{width:1332.665440pt;}
.fs8{font-size:80.000000pt;}
.fsa{font-size:85.333333pt;}
.fs0{font-size:106.666667pt;}
.fs6{font-size:117.333333pt;}
.fs4{font-size:133.333333pt;}
.fs9{font-size:149.333333pt;}
.fs7{font-size:160.000000pt;}
.fs5{font-size:186.666667pt;}
.fs3{font-size:266.666667pt;}
.fs2{font-size:485.333333pt;}
.fs1{font-size:512.000000pt;}
.y0{bottom:0.000000pt;}
.y67{bottom:376.025600pt;}
.y69{bottom:424.250533pt;}
.y68{bottom:458.941867pt;}
.y6a{bottom:461.743867pt;}
.y66{bottom:561.866667pt;}
.y65{bottom:607.199867pt;}
.y64{bottom:651.199733pt;}
.y63{bottom:696.533200pt;}
.y62{bottom:740.533200pt;}
.y61{bottom:785.866400pt;}
.y60{bottom:831.199733pt;}
.y5f{bottom:875.199733pt;}
.y5e{bottom:920.533200pt;}
.y5d{bottom:964.533067pt;}
.y5b{bottom:999.451867pt;}
.y5c{bottom:1011.199733pt;}
.y4b{bottom:1155.133467pt;}
.y53{bottom:1157.187600pt;}
.y4a{bottom:1187.133333pt;}
.y52{bottom:1197.187600pt;}
.y51{bottom:1237.187733pt;}
.y50{bottom:1277.187600pt;}
.y48{bottom:1299.780533pt;}
.y4f{bottom:1317.188000pt;}
.y47{bottom:1331.780000pt;}
.y4e{bottom:1357.188000pt;}
.y49{bottom:1466.977333pt;}
.y41{bottom:1560.392000pt;}
.y46{bottom:1567.645333pt;}
.y4d{bottom:1577.148000pt;}
.y40{bottom:1603.432000pt;}
.y4c{bottom:1609.148000pt;}
.y3f{bottom:1637.725333pt;}
.y3e{bottom:1680.392000pt;}
.y6f{bottom:1695.817333pt;}
.y3d{bottom:1723.058667pt;}
.y3c{bottom:1764.392000pt;}
.y3b{bottom:1807.432000pt;}
.y16{bottom:1824.661333pt;}
.y3a{bottom:1841.725333pt;}
.y39{bottom:1884.392000pt;}
.y15{bottom:1892.558667pt;}
.y5{bottom:1904.768000pt;}
.y7{bottom:1909.136000pt;}
.y38{bottom:1927.058667pt;}
.y4{bottom:1936.768000pt;}
.y6{bottom:1941.136000pt;}
.y14{bottom:1951.684000pt;}
.y37{bottom:1968.392000pt;}
.y3{bottom:1968.768000pt;}
.y58{bottom:2003.421333pt;}
.y36{bottom:2011.058667pt;}
.y13{bottom:2016.897333pt;}
.y12{bottom:2052.244000pt;}
.y59{bottom:2052.260000pt;}
.y35{bottom:2053.725333pt;}
.y2{bottom:2077.076000pt;}
.y34{bottom:2095.058667pt;}
.y1{bottom:2109.076000pt;}
.y57{bottom:2111.537333pt;}
.y5a{bottom:2127.476000pt;}
.y33{bottom:2137.725333pt;}
.y42{bottom:2192.628000pt;}
.y32{bottom:2196.218667pt;}
.y45{bottom:2288.786667pt;}
.y21{bottom:2373.706667pt;}
.y1b{bottom:2413.706667pt;}
.y6e{bottom:2422.986667pt;}
.y1f{bottom:2434.701333pt;}
.y1a{bottom:2453.706667pt;}
.y6d{bottom:2470.986667pt;}
.y1e{bottom:2474.701333pt;}
.y19{bottom:2493.706667pt;}
.y1d{bottom:2514.701333pt;}
.y6c{bottom:2518.986667pt;}
.y18{bottom:2533.706667pt;}
.y1c{bottom:2554.701333pt;}
.y6b{bottom:2566.986667pt;}
.y17{bottom:2573.706667pt;}
.y20{bottom:2613.706667pt;}
.y55{bottom:2623.797333pt;}
.y56{bottom:2667.937333pt;}
.y54{bottom:2671.797333pt;}
.y31{bottom:2768.790667pt;}
.y30{bottom:2824.790667pt;}
.y2f{bottom:2880.790667pt;}
.y2e{bottom:2936.790667pt;}
.y2d{bottom:2992.790667pt;}
.y2c{bottom:3048.790667pt;}
.y43{bottom:3100.972000pt;}
.y2b{bottom:3104.790667pt;}
.y2a{bottom:3160.790667pt;}
.y29{bottom:3216.790667pt;}
.y28{bottom:3272.789333pt;}
.y27{bottom:3328.790667pt;}
.y26{bottom:3384.790667pt;}
.y25{bottom:3440.790667pt;}
.y24{bottom:3496.790667pt;}
.y23{bottom:3552.789333pt;}
.y44{bottom:3566.602667pt;}
.yb{bottom:3603.382667pt;}
.y22{bottom:3608.790667pt;}
.y11{bottom:3629.560000pt;}
.ya{bottom:3750.049333pt;}
.y10{bottom:3764.226667pt;}
.yf{bottom:3844.226667pt;}
.y9{bottom:3903.382667pt;}
.ye{bottom:3924.226667pt;}
.yd{bottom:4004.226667pt;}
.y8{bottom:4056.716000pt;}
.yc{bottom:4084.226667pt;}
.hf{height:58.080000pt;}
.h12{height:59.125000pt;}
.h6{height:73.906250pt;}
.h2{height:82.346667pt;}
.ha{height:90.581333pt;}
.hb{height:91.637333pt;}
.h7{height:102.933333pt;}
.hd{height:104.133333pt;}
.h10{height:115.285333pt;}
.h11{height:116.629333pt;}
.he{height:123.520000pt;}
.hc{height:124.960000pt;}
.h13{height:128.546667pt;}
.h9{height:144.106667pt;}
.h8{height:145.786667pt;}
.h5{height:205.866667pt;}
.h4{height:336.273438pt;}
.h3{height:395.264000pt;}
.h1{height:4223.999856pt;}
.h0{height:4224.000000pt;}
.w0{width:4224.000000pt;}
.x0{left:0.000000pt;}
.x34{left:49.939000pt;}
.x9{left:53.356427pt;}
.x2d{left:58.415427pt;}
.x1d{left:65.440307pt;}
.x32{left:71.766813pt;}
.x35{left:97.938987pt;}
.x2c{left:109.731533pt;}
.x8{left:110.689747pt;}
.x11{left:151.298772pt;}
.xe{left:156.498459pt;}
.x12{left:181.047413pt;}
.xf{left:182.297680pt;}
.x10{left:189.280813pt;}
.x36{left:422.719333pt;}
.x16{left:502.361973pt;}
.x14{left:510.545573pt;}
.x15{left:515.944907pt;}
.x37{left:524.609067pt;}
.x13{left:529.494440pt;}
.x2a{left:578.623200pt;}
.x29{left:601.267200pt;}
.x2b{left:612.157200pt;}
.x38{left:688.694933pt;}
.x2f{left:726.921467pt;}
.x30{left:731.689733pt;}
.x31{left:775.983733pt;}
.x39{left:800.041733pt;}
.x1a{left:833.655093pt;}
.x18{left:842.921920pt;}
.x19{left:844.371440pt;}
.x17{left:845.620893pt;}
.x1c{left:850.554813pt;}
.x1b{left:858.587907pt;}
.x1f{left:895.700000pt;}
.x1e{left:907.700000pt;}
.x20{left:949.033333pt;}
.x21{left:997.033333pt;}
.x23{left:1175.907400pt;}
.x24{left:1181.907600pt;}
.x25{left:1190.940560pt;}
.x26{left:1197.790987pt;}
.x27{left:1199.457253pt;}
.x2e{left:1419.968000pt;}
.x3a{left:1562.949333pt;}
.x3b{left:1592.282667pt;}
.x22{left:1647.540000pt;}
.x6{left:1894.276386pt;}
.x1{left:1900.512751pt;}
.x2{left:1915.672360pt;}
.x7{left:1917.835667pt;}
.x33{left:1931.790667pt;}
.x4{left:2507.990107pt;}
.x3{left:2511.203453pt;}
.x5{left:2517.749800pt;}
.xc{left:2671.738667pt;}
.xd{left:2673.124000pt;}
.xb{left:2702.786667pt;}
.xa{left:3059.629333pt;}
.x28{left:3330.700000pt;}
.x3c{left:3346.700000pt;}
}




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