
    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_48e4bd9d3e5c1f28ddd18772.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_582c3e076b70dc82b94e323c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_a9e001bdf066a2cbcf5c12c4.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_5df45f319a7523a46389bef6.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.049805;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_e9435eddfb27b9f5115698a8.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_9d06e59298a1567f1b9bb37e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_4756b51a840335773f253bb1.woff2')format("woff");}.ff8{font-family:ff8;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;}
.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;}
.ls8{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.414600px;}
.lsb{letter-spacing:-0.305400px;}
.lsa{letter-spacing:-0.262200px;}
.ls12{letter-spacing:-0.152400px;}
.ls6{letter-spacing:-0.053280px;}
.ls7{letter-spacing:-0.036000px;}
.ls0{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.085440px;}
.ls11{letter-spacing:0.109200px;}
.ls5{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.238080px;}
.ls16{letter-spacing:0.262200px;}
.lsc{letter-spacing:0.305400px;}
.ls1{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.567600px;}
.ls15{letter-spacing:0.720000px;}
.ls4{letter-spacing:3.600000px;}
.lse{letter-spacing:5.760000px;}
.ls14{letter-spacing:30.960000px;}
.ls3{letter-spacing:36.000000px;}
.ls10{letter-spacing:68.376000px;}
.ls2{letter-spacing:906.096000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-26.964000px;}
.ws6{word-spacing:-17.127600px;}
.ws9{word-spacing:-16.822200px;}
.ws7{word-spacing:-16.669200px;}
.ws2{word-spacing:-16.560000px;}
.ws8{word-spacing:-16.407600px;}
.ws4{word-spacing:-16.297800px;}
.ws5{word-spacing:-16.254600px;}
.ws3{word-spacing:-15.840000px;}
.ws0{word-spacing:0.000000px;}
._1{margin-left:-1.135440px;}
._0{width:1.374480px;}
._6{width:2.848320px;}
._7{width:4.637280px;}
._4{width:6.107520px;}
._5{width:7.276320px;}
._c{width:8.324880px;}
._8{width:9.336000px;}
._9{width:10.933440px;}
._a{width:11.939760px;}
._12{width:13.228560px;}
._d{width:14.241600px;}
._e{width:15.452640px;}
._11{width:17.924160px;}
._b{width:19.616400px;}
._15{width:20.928720px;}
._14{width:22.379760px;}
._13{width:23.723280px;}
._20{width:25.104960px;}
._1c{width:26.555760px;}
._19{width:27.867600px;}
._18{width:28.946880px;}
._22{width:30.139200px;}
._1f{width:31.239120px;}
._29{width:32.652720px;}
._21{width:33.774480px;}
._3{width:34.992960px;}
._2{width:36.402240px;}
._1d{width:37.591680px;}
._1b{width:38.599920px;}
._2b{width:39.997440px;}
._16{width:41.002560px;}
._17{width:42.204240px;}
._28{width:43.491600px;}
._2c{width:45.613200px;}
._1e{width:48.193680px;}
._10{width:49.254720px;}
._f{width:50.541120px;}
._2a{width:51.998160px;}
._25{width:53.133840px;}
._2e{width:55.641600px;}
._2d{width:56.777040px;}
._26{width:61.641840px;}
._27{width:62.718240px;}
._38{width:65.785680px;}
._37{width:67.299840px;}
._1a{width:68.376000px;}
._30{width:74.983680px;}
._31{width:76.052880px;}
._32{width:81.342720px;}
._24{width:86.973120px;}
._23{width:88.099200px;}
._2f{width:96.312960px;}
._3b{width:157.656000px;}
._3a{width:188.921280px;}
._34{width:190.776000px;}
._35{width:207.336000px;}
._39{width:223.896000px;}
._36{width:240.456000px;}
._33{width:2011.236000px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.000000px;}
.fs5{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs7{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs8{font-size:84.240000px;}
.fs2{font-size:102.000000px;}
.fs6{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:97.125005px;}
.y1c{bottom:139.264499px;}
.y1e{bottom:173.730000px;}
.y1d{bottom:191.010000px;}
.y13{bottom:196.933500px;}
.y76{bottom:209.190000px;}
.y1b{bottom:209.518500px;}
.y12{bottom:209.533503px;}
.y67{bottom:209.550000px;}
.y1a{bottom:222.118502px;}
.y11{bottom:222.133505px;}
.y4e{bottom:223.410000px;}
.y66{bottom:228.630000px;}
.y19{bottom:234.718504px;}
.y10{bottom:234.733496px;}
.y4d{bottom:242.310000px;}
.y65{bottom:247.530000px;}
.y18{bottom:259.918497px;}
.yf{bottom:259.933500px;}
.y4c{bottom:261.390000px;}
.y64{bottom:266.430000px;}
.y17{bottom:272.518500px;}
.ye{bottom:272.533503px;}
.y4b{bottom:280.335000px;}
.y16{bottom:285.118502px;}
.yd{bottom:285.133499px;}
.y63{bottom:285.555000px;}
.y4a{bottom:299.235000px;}
.y62{bottom:304.455000px;}
.y15{bottom:310.318501px;}
.yc{bottom:310.333501px;}
.y49{bottom:318.315000px;}
.y14{bottom:322.918500px;}
.yb{bottom:322.933500px;}
.y61{bottom:323.535000px;}
.y48{bottom:337.215000px;}
.y60{bottom:342.435000px;}
.ya{bottom:348.133500px;}
.y47{bottom:356.295000px;}
.y5f{bottom:361.335000px;}
.y46{bottom:375.195000px;}
.y5e{bottom:380.415000px;}
.y9{bottom:386.785499px;}
.y45{bottom:394.095000px;}
.y5d{bottom:399.315000px;}
.y8{bottom:408.044999px;}
.y44{bottom:413.175000px;}
.y5c{bottom:418.395000px;}
.y43{bottom:432.075000px;}
.y5b{bottom:437.295000px;}
.y42{bottom:451.155000px;}
.y5a{bottom:456.195000px;}
.y41{bottom:470.055000px;}
.y59{bottom:475.275000px;}
.y40{bottom:488.955000px;}
.y58{bottom:494.175000px;}
.y74{bottom:508.035000px;}
.y3f{bottom:509.115000px;}
.y57{bottom:513.255000px;}
.y7{bottom:520.864502px;}
.y73{bottom:526.935000px;}
.y3e{bottom:532.155000px;}
.y6{bottom:538.864499px;}
.y72{bottom:546.015000px;}
.y75{bottom:546.915000px;}
.y3d{bottom:551.055000px;}
.y5{bottom:556.864499px;}
.y71{bottom:564.945000px;}
.y3c{bottom:570.165000px;}
.y70{bottom:584.025000px;}
.y3b{bottom:589.065000px;}
.y6f{bottom:602.925000px;}
.y3a{bottom:608.145000px;}
.y6e{bottom:621.825000px;}
.y39{bottom:627.045000px;}
.y6d{bottom:640.905000px;}
.y38{bottom:645.945000px;}
.y6c{bottom:659.805000px;}
.y37{bottom:665.025000px;}
.y6b{bottom:678.885000px;}
.y36{bottom:683.925000px;}
.y6a{bottom:697.785000px;}
.y35{bottom:703.005000px;}
.y69{bottom:716.685000px;}
.y34{bottom:721.905000px;}
.y68{bottom:736.845000px;}
.y33{bottom:740.985000px;}
.y3{bottom:752.599495px;}
.y32{bottom:759.885000px;}
.y31{bottom:778.785000px;}
.y30{bottom:797.865000px;}
.y2f{bottom:816.765000px;}
.y2e{bottom:835.845000px;}
.y2d{bottom:854.790000px;}
.y2c{bottom:873.690000px;}
.y2{bottom:879.369000px;}
.y2b{bottom:892.770000px;}
.y2a{bottom:911.670000px;}
.y29{bottom:930.750000px;}
.y28{bottom:949.650000px;}
.y1{bottom:966.726000px;}
.y27{bottom:968.550000px;}
.y26{bottom:987.270000px;}
.y56{bottom:987.630000px;}
.y25{bottom:1004.550000px;}
.y55{bottom:1006.530000px;}
.y24{bottom:1024.170000px;}
.y54{bottom:1025.610000px;}
.y53{bottom:1044.510000px;}
.y23{bottom:1052.790000px;}
.y52{bottom:1063.410000px;}
.y22{bottom:1070.070000px;}
.y51{bottom:1082.490000px;}
.y21{bottom:1087.350000px;}
.y50{bottom:1101.390000px;}
.y20{bottom:1104.630000px;}
.y4f{bottom:1120.470000px;}
.y1f{bottom:1121.940000px;}
.h7{height:32.130000px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h2{height:55.080000px;}
.hf{height:55.243125px;}
.h9{height:58.651172px;}
.he{height:64.978594px;}
.hc{height:65.010937px;}
.hb{height:66.757500px;}
.h5{height:78.030000px;}
.hd{height:82.635820px;}
.ha{height:108.843750px;}
.h4{height:119.055004px;}
.h0{height:1262.833500px;}
.h8{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x6{left:148.896000px;}
.x4{left:203.484001px;}
.x7{left:233.850000px;}
.x3{left:454.959000px;}
.x5{left:736.710000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.368533pt;}
.lsb{letter-spacing:-0.271467pt;}
.lsa{letter-spacing:-0.233067pt;}
.ls12{letter-spacing:-0.135467pt;}
.ls6{letter-spacing:-0.047360pt;}
.ls7{letter-spacing:-0.032000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.075947pt;}
.ls11{letter-spacing:0.097067pt;}
.ls5{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.211627pt;}
.ls16{letter-spacing:0.233067pt;}
.lsc{letter-spacing:0.271467pt;}
.ls1{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.504533pt;}
.ls15{letter-spacing:0.640000pt;}
.ls4{letter-spacing:3.200000pt;}
.lse{letter-spacing:5.120000pt;}
.ls14{letter-spacing:27.520000pt;}
.ls3{letter-spacing:32.000000pt;}
.ls10{letter-spacing:60.778667pt;}
.ls2{letter-spacing:805.418667pt;}
.ws1{word-spacing:-23.968000pt;}
.ws6{word-spacing:-15.224533pt;}
.ws9{word-spacing:-14.953067pt;}
.ws7{word-spacing:-14.817067pt;}
.ws2{word-spacing:-14.720000pt;}
.ws8{word-spacing:-14.584533pt;}
.ws4{word-spacing:-14.486933pt;}
.ws5{word-spacing:-14.448533pt;}
.ws3{word-spacing:-14.080000pt;}
.ws0{word-spacing:0.000000pt;}
._1{margin-left:-1.009280pt;}
._0{width:1.221760pt;}
._6{width:2.531840pt;}
._7{width:4.122027pt;}
._4{width:5.428907pt;}
._5{width:6.467840pt;}
._c{width:7.399893pt;}
._8{width:8.298667pt;}
._9{width:9.718613pt;}
._a{width:10.613120pt;}
._12{width:11.758720pt;}
._d{width:12.659200pt;}
._e{width:13.735680pt;}
._11{width:15.932587pt;}
._b{width:17.436800pt;}
._15{width:18.603307pt;}
._14{width:19.893120pt;}
._13{width:21.087360pt;}
._20{width:22.315520pt;}
._1c{width:23.605120pt;}
._19{width:24.771200pt;}
._18{width:25.730560pt;}
._22{width:26.790400pt;}
._1f{width:27.768107pt;}
._29{width:29.024640pt;}
._21{width:30.021760pt;}
._3{width:31.104853pt;}
._2{width:32.357547pt;}
._1d{width:33.414827pt;}
._1b{width:34.311040pt;}
._2b{width:35.553280pt;}
._16{width:36.446720pt;}
._17{width:37.514880pt;}
._28{width:38.659200pt;}
._2c{width:40.545067pt;}
._1e{width:42.838827pt;}
._10{width:43.781973pt;}
._f{width:44.925440pt;}
._2a{width:46.220587pt;}
._25{width:47.230080pt;}
._2e{width:49.459200pt;}
._2d{width:50.468480pt;}
._26{width:54.792747pt;}
._27{width:55.749547pt;}
._38{width:58.476160pt;}
._37{width:59.822080pt;}
._1a{width:60.778667pt;}
._30{width:66.652160pt;}
._31{width:67.602560pt;}
._32{width:72.304640pt;}
._24{width:77.309440pt;}
._23{width:78.310400pt;}
._2f{width:85.611520pt;}
._3b{width:140.138667pt;}
._3a{width:167.930027pt;}
._34{width:169.578667pt;}
._35{width:184.298667pt;}
._39{width:199.018667pt;}
._36{width:213.738667pt;}
._33{width:1787.765333pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs7{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs8{font-size:74.880000pt;}
.fs2{font-size:90.666667pt;}
.fs6{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:86.333337pt;}
.y1c{bottom:123.790666pt;}
.y1e{bottom:154.426667pt;}
.y1d{bottom:169.786667pt;}
.y13{bottom:175.052000pt;}
.y76{bottom:185.946667pt;}
.y1b{bottom:186.238666pt;}
.y12{bottom:186.252002pt;}
.y67{bottom:186.266667pt;}
.y1a{bottom:197.438668pt;}
.y11{bottom:197.452004pt;}
.y4e{bottom:198.586667pt;}
.y66{bottom:203.226667pt;}
.y19{bottom:208.638670pt;}
.y10{bottom:208.651996pt;}
.y4d{bottom:215.386667pt;}
.y65{bottom:220.026667pt;}
.y18{bottom:231.038664pt;}
.yf{bottom:231.052000pt;}
.y4c{bottom:232.346667pt;}
.y64{bottom:236.826667pt;}
.y17{bottom:242.238666pt;}
.ye{bottom:242.252002pt;}
.y4b{bottom:249.186667pt;}
.y16{bottom:253.438668pt;}
.yd{bottom:253.451999pt;}
.y63{bottom:253.826667pt;}
.y4a{bottom:265.986667pt;}
.y62{bottom:270.626667pt;}
.y15{bottom:275.838667pt;}
.yc{bottom:275.852001pt;}
.y49{bottom:282.946667pt;}
.y14{bottom:287.038667pt;}
.yb{bottom:287.052000pt;}
.y61{bottom:287.586667pt;}
.y48{bottom:299.746667pt;}
.y60{bottom:304.386667pt;}
.ya{bottom:309.452000pt;}
.y47{bottom:316.706667pt;}
.y5f{bottom:321.186667pt;}
.y46{bottom:333.506667pt;}
.y5e{bottom:338.146667pt;}
.y9{bottom:343.809333pt;}
.y45{bottom:350.306667pt;}
.y5d{bottom:354.946667pt;}
.y8{bottom:362.706666pt;}
.y44{bottom:367.266667pt;}
.y5c{bottom:371.906667pt;}
.y43{bottom:384.066667pt;}
.y5b{bottom:388.706667pt;}
.y42{bottom:401.026667pt;}
.y5a{bottom:405.506667pt;}
.y41{bottom:417.826667pt;}
.y59{bottom:422.466667pt;}
.y40{bottom:434.626667pt;}
.y58{bottom:439.266667pt;}
.y74{bottom:451.586667pt;}
.y3f{bottom:452.546667pt;}
.y57{bottom:456.226667pt;}
.y7{bottom:462.990669pt;}
.y73{bottom:468.386667pt;}
.y3e{bottom:473.026667pt;}
.y6{bottom:478.990666pt;}
.y72{bottom:485.346667pt;}
.y75{bottom:486.146667pt;}
.y3d{bottom:489.826667pt;}
.y5{bottom:494.990666pt;}
.y71{bottom:502.173333pt;}
.y3c{bottom:506.813333pt;}
.y70{bottom:519.133333pt;}
.y3b{bottom:523.613333pt;}
.y6f{bottom:535.933333pt;}
.y3a{bottom:540.573333pt;}
.y6e{bottom:552.733333pt;}
.y39{bottom:557.373333pt;}
.y6d{bottom:569.693333pt;}
.y38{bottom:574.173333pt;}
.y6c{bottom:586.493333pt;}
.y37{bottom:591.133333pt;}
.y6b{bottom:603.453333pt;}
.y36{bottom:607.933333pt;}
.y6a{bottom:620.253333pt;}
.y35{bottom:624.893333pt;}
.y69{bottom:637.053333pt;}
.y34{bottom:641.693333pt;}
.y68{bottom:654.973333pt;}
.y33{bottom:658.653333pt;}
.y3{bottom:668.977329pt;}
.y32{bottom:675.453333pt;}
.y31{bottom:692.253333pt;}
.y30{bottom:709.213333pt;}
.y2f{bottom:726.013333pt;}
.y2e{bottom:742.973333pt;}
.y2d{bottom:759.813333pt;}
.y2c{bottom:776.613333pt;}
.y2{bottom:781.661334pt;}
.y2b{bottom:793.573333pt;}
.y2a{bottom:810.373333pt;}
.y29{bottom:827.333333pt;}
.y28{bottom:844.133333pt;}
.y1{bottom:859.312000pt;}
.y27{bottom:860.933333pt;}
.y26{bottom:877.573333pt;}
.y56{bottom:877.893333pt;}
.y25{bottom:892.933333pt;}
.y55{bottom:894.693333pt;}
.y24{bottom:910.373333pt;}
.y54{bottom:911.653333pt;}
.y53{bottom:928.453333pt;}
.y23{bottom:935.813333pt;}
.y52{bottom:945.253333pt;}
.y22{bottom:951.173333pt;}
.y51{bottom:962.213333pt;}
.y21{bottom:966.533333pt;}
.y50{bottom:979.013333pt;}
.y20{bottom:981.893333pt;}
.y4f{bottom:995.973333pt;}
.y1f{bottom:997.280000pt;}
.h7{height:28.560000pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h2{height:48.960000pt;}
.hf{height:49.105000pt;}
.h9{height:52.134375pt;}
.he{height:57.758750pt;}
.hc{height:57.787500pt;}
.hb{height:59.340000pt;}
.h5{height:69.360000pt;}
.hd{height:73.454062pt;}
.ha{height:96.750000pt;}
.h4{height:105.826671pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x6{left:132.352000pt;}
.x4{left:180.874667pt;}
.x7{left:207.866667pt;}
.x3{left:404.408000pt;}
.x5{left:654.853333pt;}
}




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