
    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_9c683306ddb2fbddedbaa20f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_5cfc32a4cdc9a799df2ab76d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.962402;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_3a63eb84098a4ba57512b12b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.941406;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_05a2d02fe8497d237985f088.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.941406;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_274d736ee0677f1fe8a200f1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.090000;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_ce5884705e96cb6b87943571.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.172852;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.240802,-0.067187,0.067187,0.240802,0,0);-ms-transform:matrix(0.240802,-0.067187,0.067187,0.240802,0,0);-webkit-transform:matrix(0.240802,-0.067187,0.067187,0.240802,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);}
.v0{vertical-align:0.000000px;}
.ls10{letter-spacing:-1.176000px;}
.ls5{letter-spacing:-0.136200px;}
.ls0{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.072600px;}
.ls15{letter-spacing:0.132600px;}
.ls13{letter-spacing:1.446000px;}
.ls3{letter-spacing:1.833150px;}
.ls14{letter-spacing:84.495000px;}
.ls17{letter-spacing:84.547500px;}
.ls12{letter-spacing:84.645000px;}
.ls11{letter-spacing:84.697500px;}
.lsb{letter-spacing:92.422500px;}
.ls18{letter-spacing:97.117500px;}
.ls19{letter-spacing:97.297500px;}
.lsf{letter-spacing:101.872500px;}
.lse{letter-spacing:101.925000px;}
.ls8{letter-spacing:102.022500px;}
.ls9{letter-spacing:102.075000px;}
.lsd{letter-spacing:105.022500px;}
.lsc{letter-spacing:105.075000px;}
.lsa{letter-spacing:105.172500px;}
.ls2{letter-spacing:111.645000px;}
.ls1{letter-spacing:111.697500px;}
.ls4{letter-spacing:124.297500px;}
.ls7{letter-spacing:129.022500px;}
.ls6{letter-spacing:132.172500px;}
.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;}
}
.ws8{word-spacing:-53.876400px;}
.ws5{word-spacing:-46.328700px;}
.ws6{word-spacing:-45.152700px;}
.ws4{word-spacing:-40.115400px;}
.ws1{word-spacing:-40.073700px;}
.ws7{word-spacing:-33.818700px;}
.ws3{word-spacing:-30.065700px;}
.ws2{word-spacing:-29.929500px;}
.ws0{word-spacing:0.000000px;}
._d{margin-left:-23.818950px;}
._a{margin-left:-16.165050px;}
._9{margin-left:-13.845900px;}
._f{margin-left:-11.574000px;}
._c{margin-left:-9.859350px;}
._8{margin-left:-8.453100px;}
._1{margin-left:-7.407450px;}
._e{margin-left:-5.537100px;}
._4{margin-left:-4.301100px;}
._6{margin-left:-2.629050px;}
._2{margin-left:-1.507050px;}
._7{width:1.335450px;}
._0{width:2.389500px;}
._3{width:3.584250px;}
._5{width:5.017950px;}
._b{width:7.362600px;}
.fc6{color:rgb(255,0,0);}
.fc5{color:transparent;}
.fc3{color:rgb(0,32,96);}
.fc7{color:rgb(204,101,79);}
.fc2{color:rgb(0,50,110);}
.fc1{color:rgb(10,200,255);}
.fc4{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsb{font-size:85.500000px;}
.fs8{font-size:85.650000px;}
.fsa{font-size:94.500000px;}
.fs9{font-size:94.650000px;}
.fs6{font-size:108.150000px;}
.fs5{font-size:121.650000px;}
.fs3{font-size:144.150000px;}
.fs7{font-size:144.150005px;}
.fs2{font-size:144.300000px;}
.fs4{font-size:166.650000px;}
.fse{font-size:166.800000px;}
.fsc{font-size:193.650000px;}
.fsd{font-size:193.800000px;}
.fs1{font-size:238.800000px;}
.fs0{font-size:238.950000px;}
.y33{bottom:-6.405000px;}
.y0{bottom:0.000000px;}
.y18{bottom:1.005000px;}
.y1a{bottom:6.637500px;}
.y35{bottom:8.130000px;}
.y31{bottom:8.220000px;}
.y6f{bottom:34.237500px;}
.y10{bottom:44.287500px;}
.yf{bottom:80.362500px;}
.y19{bottom:81.000000px;}
.ye{bottom:116.400000px;}
.y2f{bottom:119.437500px;}
.y6a{bottom:130.350000px;}
.y7b{bottom:140.400000px;}
.y2e{bottom:162.255000px;}
.y7a{bottom:173.055000px;}
.y69{bottom:183.300000px;}
.y4c{bottom:192.255000px;}
.y23{bottom:204.225000px;}
.y79{bottom:205.725000px;}
.y2d{bottom:206.220000px;}
.y7{bottom:217.695000px;}
.y4b{bottom:229.470000px;}
.y70{bottom:237.525000px;}
.y68{bottom:244.125000px;}
.y56{bottom:246.375000px;}
.y2c{bottom:250.125000px;}
.y78{bottom:251.325000px;}
.y22{bottom:252.675000px;}
.y6{bottom:260.475000px;}
.y4a{bottom:272.250000px;}
.y55{bottom:290.325000px;}
.y77{bottom:294.255000px;}
.y67{bottom:295.950000px;}
.y2b{bottom:296.325000px;}
.y21{bottom:302.250000px;}
.y5{bottom:304.425000px;}
.y5c{bottom:305.220000px;}
.y76{bottom:321.300000px;}
.y49{bottom:321.825000px;}
.y54{bottom:333.150000px;}
.y2a{bottom:334.605000px;}
.y20{bottom:350.655000px;}
.y75{bottom:352.845000px;}
.y66{bottom:356.775000px;}
.y16{bottom:361.425000px;}
.y48{bottom:363.525000px;}
.y5b{bottom:370.545000px;}
.y29{bottom:371.820000px;}
.y53{bottom:375.945000px;}
.y74{bottom:378.750000px;}
.yd{bottom:398.775000px;}
.y1f{bottom:399.120000px;}
.y42{bottom:402.645000px;}
.y15{bottom:404.220000px;}
.y65{bottom:409.725000px;}
.y73{bottom:410.280000px;}
.y28{bottom:412.350000px;}
.y47{bottom:414.225000px;}
.y3b{bottom:418.845000px;}
.y52{bottom:419.880000px;}
.y5a{bottom:434.775000px;}
.y72{bottom:437.325000px;}
.y41{bottom:440.925000px;}
.yc{bottom:441.570000px;}
.y14{bottom:447.045000px;}
.y1e{bottom:447.570000px;}
.y46{bottom:455.880000px;}
.y27{bottom:458.550000px;}
.y3a{bottom:462.750000px;}
.y64{bottom:470.550000px;}
.y51{bottom:470.880000px;}
.y4{bottom:471.525000px;}
.y40{bottom:479.250000px;}
.y71{bottom:482.925000px;}
.yb{bottom:485.505000px;}
.y13{bottom:490.995000px;}
.y1d{bottom:496.005000px;}
.y26{bottom:496.845000px;}
.y59{bottom:500.100000px;}
.y60{bottom:503.505000px;}
.y45{bottom:505.470000px;}
.y39{bottom:505.575000px;}
.y58{bottom:507.720000px;}
.y50{bottom:513.720000px;}
.y3f{bottom:516.405000px;}
.y63{bottom:523.500000px;}
.y25{bottom:537.405000px;}
.y3{bottom:543.600000px;}
.y44{bottom:543.750000px;}
.y1b{bottom:544.275000px;}
.y1c{bottom:545.595000px;}
.y38{bottom:548.370000px;}
.y6e{bottom:553.320000px;}
.y3e{bottom:554.700000px;}
.y4f{bottom:556.500000px;}
.y57{bottom:566.280000px;}
.y5f{bottom:567.720000px;}
.ya{bottom:571.500000px;}
.y62{bottom:584.325000px;}
.y43{bottom:585.450000px;}
.y34{bottom:587.250000px;}
.y6d{bottom:589.380000px;}
.y3d{bottom:591.900000px;}
.y37{bottom:592.320000px;}
.y17{bottom:598.500000px;}
.y4e{bottom:600.450000px;}
.y9{bottom:615.450000px;}
.y2{bottom:615.720000px;}
.y12{bottom:620.400000px;}
.y6c{bottom:626.550000px;}
.y30{bottom:631.125000px;}
.y3c{bottom:631.320000px;}
.y5e{bottom:633.075000px;}
.y36{bottom:635.130000px;}
.y61{bottom:637.275000px;}
.y4d{bottom:643.245000px;}
.y24{bottom:645.345000px;}
.y32{bottom:645.750000px;}
.y11{bottom:653.100000px;}
.y1{bottom:687.825000px;}
.y6b{bottom:704.745000px;}
.y5d{bottom:732.870000px;}
.y8{bottom:741.630000px;}
.h10{height:5.625000px;}
.h9{height:28.125000px;}
.hf{height:34.875000px;}
.h11{height:36.000000px;}
.h12{height:62.496826px;}
.hc{height:62.606470px;}
.he{height:69.075439px;}
.hd{height:69.185083px;}
.h8{height:79.053003px;}
.h1b{height:85.189966px;}
.h7{height:88.920923px;}
.h4{height:105.367456px;}
.hb{height:105.367460px;}
.h5{height:105.477100px;}
.h1a{height:107.569116px;}
.h17{height:108.394043px;}
.h3{height:108.506836px;}
.h18{height:120.596400px;}
.h6{height:121.813989px;}
.h15{height:121.923633px;}
.h13{height:141.549829px;}
.h14{height:141.659473px;}
.h19{height:143.375757px;}
.h16{height:174.552539px;}
.h2{height:244.513477px;}
.h1{height:244.667065px;}
.ha{height:312.750000px;}
.h0{height:810.000000px;}
.w6{width:11.250000px;}
.w4{width:144.000000px;}
.w5{width:358.875000px;}
.w2{width:400.500000px;}
.w8{width:444.375000px;}
.w7{width:766.125000px;}
.w3{width:1013.625000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x8{left:-3.045000px;}
.x12{left:-1.537500px;}
.x0{left:0.000000px;}
.xa{left:5.287500px;}
.x9{left:6.750000px;}
.x2{left:10.799979px;}
.x22{left:13.799979px;}
.x5{left:16.762479px;}
.x1a{left:22.987479px;}
.x3{left:32.962479px;}
.x1c{left:34.199979px;}
.xb{left:36.149979px;}
.xe{left:37.499979px;}
.x17{left:54.037479px;}
.x1{left:55.649979px;}
.x16{left:63.000000px;}
.x11{left:64.125000px;}
.x25{left:65.924979px;}
.x23{left:70.199979px;}
.x6{left:73.499979px;}
.xc{left:76.687479px;}
.x18{left:87.824979px;}
.xf{left:91.537479px;}
.x29{left:95.099979px;}
.x24{left:103.949979px;}
.x19{left:108.074979px;}
.x1b{left:110.774979px;}
.x26{left:119.962479px;}
.x10{left:132.074979px;}
.xd{left:137.962479px;}
.x2a{left:149.137479px;}
.x13{left:220.500000px;}
.x4{left:383.744979px;}
.x14{left:581.625000px;}
.x15{left:594.000000px;}
.x1d{left:607.979979px;}
.x28{left:647.444979px;}
.x1f{left:670.274979px;}
.x1e{left:676.979979px;}
.x20{left:678.119979px;}
.x21{left:792.224979px;}
.x27{left:875.444979px;}
.x7{left:1000.125000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls10{letter-spacing:-1.045333pt;}
.ls5{letter-spacing:-0.121067pt;}
.ls0{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.064533pt;}
.ls15{letter-spacing:0.117867pt;}
.ls13{letter-spacing:1.285333pt;}
.ls3{letter-spacing:1.629467pt;}
.ls14{letter-spacing:75.106667pt;}
.ls17{letter-spacing:75.153333pt;}
.ls12{letter-spacing:75.240000pt;}
.ls11{letter-spacing:75.286667pt;}
.lsb{letter-spacing:82.153333pt;}
.ls18{letter-spacing:86.326667pt;}
.ls19{letter-spacing:86.486667pt;}
.lsf{letter-spacing:90.553333pt;}
.lse{letter-spacing:90.600000pt;}
.ls8{letter-spacing:90.686667pt;}
.ls9{letter-spacing:90.733333pt;}
.lsd{letter-spacing:93.353333pt;}
.lsc{letter-spacing:93.400000pt;}
.lsa{letter-spacing:93.486667pt;}
.ls2{letter-spacing:99.240000pt;}
.ls1{letter-spacing:99.286667pt;}
.ls4{letter-spacing:110.486667pt;}
.ls7{letter-spacing:114.686667pt;}
.ls6{letter-spacing:117.486667pt;}
.ws8{word-spacing:-47.890133pt;}
.ws5{word-spacing:-41.181067pt;}
.ws6{word-spacing:-40.135733pt;}
.ws4{word-spacing:-35.658133pt;}
.ws1{word-spacing:-35.621067pt;}
.ws7{word-spacing:-30.061067pt;}
.ws3{word-spacing:-26.725067pt;}
.ws2{word-spacing:-26.604000pt;}
.ws0{word-spacing:0.000000pt;}
._d{margin-left:-21.172400pt;}
._a{margin-left:-14.368933pt;}
._9{margin-left:-12.307467pt;}
._f{margin-left:-10.288000pt;}
._c{margin-left:-8.763867pt;}
._8{margin-left:-7.513867pt;}
._1{margin-left:-6.584400pt;}
._e{margin-left:-4.921867pt;}
._4{margin-left:-3.823200pt;}
._6{margin-left:-2.336933pt;}
._2{margin-left:-1.339600pt;}
._7{width:1.187067pt;}
._0{width:2.124000pt;}
._3{width:3.186000pt;}
._5{width:4.460400pt;}
._b{width:6.544533pt;}
.fsb{font-size:76.000000pt;}
.fs8{font-size:76.133333pt;}
.fsa{font-size:84.000000pt;}
.fs9{font-size:84.133333pt;}
.fs6{font-size:96.133333pt;}
.fs5{font-size:108.133333pt;}
.fs3{font-size:128.133333pt;}
.fs7{font-size:128.133338pt;}
.fs2{font-size:128.266667pt;}
.fs4{font-size:148.133333pt;}
.fse{font-size:148.266667pt;}
.fsc{font-size:172.133333pt;}
.fsd{font-size:172.266667pt;}
.fs1{font-size:212.266667pt;}
.fs0{font-size:212.400000pt;}
.y33{bottom:-5.693333pt;}
.y0{bottom:0.000000pt;}
.y18{bottom:0.893333pt;}
.y1a{bottom:5.900000pt;}
.y35{bottom:7.226667pt;}
.y31{bottom:7.306667pt;}
.y6f{bottom:30.433333pt;}
.y10{bottom:39.366667pt;}
.yf{bottom:71.433333pt;}
.y19{bottom:72.000000pt;}
.ye{bottom:103.466667pt;}
.y2f{bottom:106.166667pt;}
.y6a{bottom:115.866667pt;}
.y7b{bottom:124.800000pt;}
.y2e{bottom:144.226667pt;}
.y7a{bottom:153.826667pt;}
.y69{bottom:162.933333pt;}
.y4c{bottom:170.893333pt;}
.y23{bottom:181.533333pt;}
.y79{bottom:182.866667pt;}
.y2d{bottom:183.306667pt;}
.y7{bottom:193.506667pt;}
.y4b{bottom:203.973333pt;}
.y70{bottom:211.133333pt;}
.y68{bottom:217.000000pt;}
.y56{bottom:219.000000pt;}
.y2c{bottom:222.333333pt;}
.y78{bottom:223.400000pt;}
.y22{bottom:224.600000pt;}
.y6{bottom:231.533333pt;}
.y4a{bottom:242.000000pt;}
.y55{bottom:258.066667pt;}
.y77{bottom:261.560000pt;}
.y67{bottom:263.066667pt;}
.y2b{bottom:263.400000pt;}
.y21{bottom:268.666667pt;}
.y5{bottom:270.600000pt;}
.y5c{bottom:271.306667pt;}
.y76{bottom:285.600000pt;}
.y49{bottom:286.066667pt;}
.y54{bottom:296.133333pt;}
.y2a{bottom:297.426667pt;}
.y20{bottom:311.693333pt;}
.y75{bottom:313.640000pt;}
.y66{bottom:317.133333pt;}
.y16{bottom:321.266667pt;}
.y48{bottom:323.133333pt;}
.y5b{bottom:329.373333pt;}
.y29{bottom:330.506667pt;}
.y53{bottom:334.173333pt;}
.y74{bottom:336.666667pt;}
.yd{bottom:354.466667pt;}
.y1f{bottom:354.773333pt;}
.y42{bottom:357.906667pt;}
.y15{bottom:359.306667pt;}
.y65{bottom:364.200000pt;}
.y73{bottom:364.693333pt;}
.y28{bottom:366.533333pt;}
.y47{bottom:368.200000pt;}
.y3b{bottom:372.306667pt;}
.y52{bottom:373.226667pt;}
.y5a{bottom:386.466667pt;}
.y72{bottom:388.733333pt;}
.y41{bottom:391.933333pt;}
.yc{bottom:392.506667pt;}
.y14{bottom:397.373333pt;}
.y1e{bottom:397.840000pt;}
.y46{bottom:405.226667pt;}
.y27{bottom:407.600000pt;}
.y3a{bottom:411.333333pt;}
.y64{bottom:418.266667pt;}
.y51{bottom:418.560000pt;}
.y4{bottom:419.133333pt;}
.y40{bottom:426.000000pt;}
.y71{bottom:429.266667pt;}
.yb{bottom:431.560000pt;}
.y13{bottom:436.440000pt;}
.y1d{bottom:440.893333pt;}
.y26{bottom:441.640000pt;}
.y59{bottom:444.533333pt;}
.y60{bottom:447.560000pt;}
.y45{bottom:449.306667pt;}
.y39{bottom:449.400000pt;}
.y58{bottom:451.306667pt;}
.y50{bottom:456.640000pt;}
.y3f{bottom:459.026667pt;}
.y63{bottom:465.333333pt;}
.y25{bottom:477.693333pt;}
.y3{bottom:483.200000pt;}
.y44{bottom:483.333333pt;}
.y1b{bottom:483.800000pt;}
.y1c{bottom:484.973333pt;}
.y38{bottom:487.440000pt;}
.y6e{bottom:491.840000pt;}
.y3e{bottom:493.066667pt;}
.y4f{bottom:494.666667pt;}
.y57{bottom:503.360000pt;}
.y5f{bottom:504.640000pt;}
.ya{bottom:508.000000pt;}
.y62{bottom:519.400000pt;}
.y43{bottom:520.400000pt;}
.y34{bottom:522.000000pt;}
.y6d{bottom:523.893333pt;}
.y3d{bottom:526.133333pt;}
.y37{bottom:526.506667pt;}
.y17{bottom:532.000000pt;}
.y4e{bottom:533.733333pt;}
.y9{bottom:547.066667pt;}
.y2{bottom:547.306667pt;}
.y12{bottom:551.466667pt;}
.y6c{bottom:556.933333pt;}
.y30{bottom:561.000000pt;}
.y3c{bottom:561.173333pt;}
.y5e{bottom:562.733333pt;}
.y36{bottom:564.560000pt;}
.y61{bottom:566.466667pt;}
.y4d{bottom:571.773333pt;}
.y24{bottom:573.640000pt;}
.y32{bottom:574.000000pt;}
.y11{bottom:580.533333pt;}
.y1{bottom:611.400000pt;}
.y6b{bottom:626.440000pt;}
.y5d{bottom:651.440000pt;}
.y8{bottom:659.226667pt;}
.h10{height:5.000000pt;}
.h9{height:25.000000pt;}
.hf{height:31.000000pt;}
.h11{height:32.000000pt;}
.h12{height:55.552734pt;}
.hc{height:55.650195pt;}
.he{height:61.400391pt;}
.hd{height:61.497852pt;}
.h8{height:70.269336pt;}
.h1b{height:75.724414pt;}
.h7{height:79.040820pt;}
.h4{height:93.659961pt;}
.hb{height:93.659964pt;}
.h5{height:93.757422pt;}
.h1a{height:95.616992pt;}
.h17{height:96.350260pt;}
.h3{height:96.450521pt;}
.h18{height:107.196800pt;}
.h6{height:108.279102pt;}
.h15{height:108.376562pt;}
.h13{height:125.822070pt;}
.h14{height:125.919531pt;}
.h19{height:127.445117pt;}
.h16{height:155.157812pt;}
.h2{height:217.345312pt;}
.h1{height:217.481836pt;}
.ha{height:278.000000pt;}
.h0{height:720.000000pt;}
.w6{width:10.000000pt;}
.w4{width:128.000000pt;}
.w5{width:319.000000pt;}
.w2{width:356.000000pt;}
.w8{width:395.000000pt;}
.w7{width:681.000000pt;}
.w3{width:901.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x8{left:-2.706667pt;}
.x12{left:-1.366667pt;}
.x0{left:0.000000pt;}
.xa{left:4.700000pt;}
.x9{left:6.000000pt;}
.x2{left:9.599981pt;}
.x22{left:12.266648pt;}
.x5{left:14.899981pt;}
.x1a{left:20.433314pt;}
.x3{left:29.299981pt;}
.x1c{left:30.399981pt;}
.xb{left:32.133314pt;}
.xe{left:33.333314pt;}
.x17{left:48.033314pt;}
.x1{left:49.466648pt;}
.x16{left:56.000000pt;}
.x11{left:57.000000pt;}
.x25{left:58.599981pt;}
.x23{left:62.399981pt;}
.x6{left:65.333314pt;}
.xc{left:68.166648pt;}
.x18{left:78.066648pt;}
.xf{left:81.366648pt;}
.x29{left:84.533314pt;}
.x24{left:92.399981pt;}
.x19{left:96.066648pt;}
.x1b{left:98.466648pt;}
.x26{left:106.633314pt;}
.x10{left:117.399981pt;}
.xd{left:122.633314pt;}
.x2a{left:132.566648pt;}
.x13{left:196.000000pt;}
.x4{left:341.106648pt;}
.x14{left:517.000000pt;}
.x15{left:528.000000pt;}
.x1d{left:540.426648pt;}
.x28{left:575.506648pt;}
.x1f{left:595.799981pt;}
.x1e{left:601.759981pt;}
.x20{left:602.773314pt;}
.x21{left:704.199981pt;}
.x27{left:778.173314pt;}
.x7{left:889.000000pt;}
}




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