
    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_6c93d78e17b9fef1377be285.woff')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_a812f8998363ffbcf3ad78e6.woff')format("woff");}.ff2{font-family:ff2;line-height:1.197754;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_709b222273c1f823979c830c.woff')format("woff");}.ff3{font-family:ff3;line-height:1.090332;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_d56fdd87d0644a81ec2c9c3e.woff')format("woff");}.ff4{font-family:ff4;line-height:1.059000;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_86725c9d253e63dbce349c0e.woff')format("woff");}.ff5{font-family:ff5;line-height:1.084961;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_2c6804adb118919e9d1c6d33.woff')format("woff");}.ff6{font-family:ff6;line-height:0.922852;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_d91e978586d8cb6d53ba98f6.woff')format("woff");}.ff7{font-family:ff7;line-height:0.947266;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);}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.024600px;}
.ls7{letter-spacing:0.072000px;}
.ls4{letter-spacing:0.120000px;}
.ls10{letter-spacing:0.144000px;}
.ls12{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.288000px;}
.lsc{letter-spacing:0.360000px;}
.lse{letter-spacing:0.396000px;}
.ls5{letter-spacing:0.420000px;}
.ls11{letter-spacing:0.432000px;}
.lsa{letter-spacing:0.480000px;}
.ls2{letter-spacing:0.540000px;}
.ls9{letter-spacing:0.576000px;}
.lsf{letter-spacing:0.594000px;}
.ls8{letter-spacing:0.648000px;}
.ls15{letter-spacing:0.720000px;}
.ls14{letter-spacing:1.080000px;}
.ls13{letter-spacing:1.440000px;}
.ls16{letter-spacing:1.872000px;}
.lsb{letter-spacing:5.112000px;}
.ls0{letter-spacing:8.460000px;}
.ls1{letter-spacing:10.740000px;}
.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;}
}
.ws2{word-spacing:-48.528000px;}
.ws1{word-spacing:-40.440000px;}
.ws5{word-spacing:-25.320000px;}
.ws3{word-spacing:-16.860000px;}
.ws4{word-spacing:0.000000px;}
.ws0{word-spacing:129.300000px;}
._10{margin-left:-948.900000px;}
._f{margin-left:-20.256000px;}
._e{margin-left:-12.960000px;}
._12{margin-left:-11.940000px;}
._6{margin-left:-10.740000px;}
._11{margin-left:-9.000000px;}
._8{margin-left:-7.368000px;}
._d{margin-left:-5.892000px;}
._c{margin-left:-4.008000px;}
._0{margin-left:-2.400000px;}
._2{margin-left:-1.200000px;}
._5{width:1.080000px;}
._3{width:2.940000px;}
._1{width:4.200000px;}
._b{width:5.424000px;}
._9{width:6.984000px;}
._4{width:8.520000px;}
._a{width:10.524000px;}
._7{width:12.420000px;}
.fc0{color:rgb(35,31,32);}
.fs0{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:93.257850px;}
.y6b{bottom:139.296000px;}
.y46{bottom:140.749950px;}
.y90{bottom:141.517950px;}
.yb2{bottom:142.285950px;}
.y20{bottom:142.768500px;}
.y6a{bottom:158.646000px;}
.y45{bottom:160.399950px;}
.y8f{bottom:161.466450px;}
.y1f{bottom:162.568500px;}
.yb1{bottom:165.379950px;}
.y44{bottom:180.049950px;}
.y8e{bottom:181.414950px;}
.y1e{bottom:182.218500px;}
.y69{bottom:186.499950px;}
.yb0{bottom:188.473950px;}
.y43{bottom:199.699950px;}
.y8d{bottom:201.363450px;}
.y1d{bottom:201.868500px;}
.y68{bottom:208.549950px;}
.yaf{bottom:211.567950px;}
.y42{bottom:219.349950px;}
.y8c{bottom:221.311950px;}
.y1c{bottom:230.004300px;}
.y67{bottom:230.599950px;}
.y41{bottom:238.999950px;}
.y8b{bottom:241.260450px;}
.y1b{bottom:252.360300px;}
.yae{bottom:257.773950px;}
.y40{bottom:258.649950px;}
.y8a{bottom:261.208950px;}
.y66{bottom:274.699950px;}
.y1a{bottom:274.716300px;}
.y3f{bottom:278.299950px;}
.yad{bottom:280.867950px;}
.y89{bottom:281.157450px;}
.y65{bottom:294.049950px;}
.y19{bottom:297.072300px;}
.y3e{bottom:297.949950px;}
.y88{bottom:301.105950px;}
.yac{bottom:303.961950px;}
.y64{bottom:313.399950px;}
.y3d{bottom:317.599950px;}
.y87{bottom:321.054450px;}
.yab{bottom:327.055950px;}
.y63{bottom:332.749950px;}
.y3c{bottom:337.249950px;}
.y86{bottom:341.002950px;}
.y18{bottom:341.772450px;}
.yaa{bottom:350.149950px;}
.y62{bottom:352.099950px;}
.y3b{bottom:356.899950px;}
.y85{bottom:360.951450px;}
.y17{bottom:361.422450px;}
.y61{bottom:371.449950px;}
.y3a{bottom:376.549950px;}
.y84{bottom:380.899950px;}
.y16{bottom:381.072450px;}
.y60{bottom:390.799950px;}
.ya9{bottom:396.349950px;}
.y15{bottom:400.722450px;}
.y39{bottom:404.685900px;}
.y83{bottom:409.389900px;}
.y5f{bottom:410.149950px;}
.ya8{bottom:416.749950px;}
.y14{bottom:420.372450px;}
.y38{bottom:427.041900px;}
.y82{bottom:432.033900px;}
.ya7{bottom:437.149950px;}
.y5e{bottom:438.003900px;}
.y13{bottom:440.022450px;}
.y37{bottom:449.397900px;}
.y81{bottom:454.677900px;}
.ya6{bottom:457.549950px;}
.y12{bottom:459.672450px;}
.y5d{bottom:460.053900px;}
.y36{bottom:471.753900px;}
.y80{bottom:477.321900px;}
.ya5{bottom:477.949950px;}
.y11{bottom:479.322450px;}
.y5c{bottom:482.103900px;}
.ya4{bottom:498.349950px;}
.y10{bottom:498.972450px;}
.y7f{bottom:499.965900px;}
.y35{bottom:516.453900px;}
.yf{bottom:518.622450px;}
.y7e{bottom:522.609900px;}
.y5b{bottom:526.203900px;}
.ya3{bottom:527.283900px;}
.y34{bottom:536.103900px;}
.ye{bottom:538.272450px;}
.y7d{bottom:545.253900px;}
.y5a{bottom:545.553900px;}
.ya2{bottom:550.377900px;}
.y33{bottom:555.753900px;}
.yc4{bottom:564.453900px;}
.y59{bottom:564.903900px;}
.yd{bottom:566.384250px;}
.ya1{bottom:573.471900px;}
.y32{bottom:575.403900px;}
.yc3{bottom:583.203900px;}
.y58{bottom:584.253900px;}
.yc{bottom:588.740250px;}
.y7c{bottom:590.553900px;}
.y31{bottom:595.053900px;}
.ya0{bottom:596.565900px;}
.yc2{bottom:601.953900px;}
.y57{bottom:603.603900px;}
.y7b{bottom:610.503900px;}
.yb{bottom:611.096250px;}
.y30{bottom:614.703900px;}
.y9f{bottom:619.659900px;}
.yc1{bottom:620.703900px;}
.y56{bottom:622.953900px;}
.y7a{bottom:630.453900px;}
.ya{bottom:633.452250px;}
.y2f{bottom:634.353900px;}
.y55{bottom:642.303900px;}
.y9e{bottom:642.753900px;}
.y79{bottom:650.403900px;}
.y9{bottom:655.808250px;}
.yc0{bottom:658.203900px;}
.y54{bottom:661.653900px;}
.y2e{bottom:662.489850px;}
.y78{bottom:670.353900px;}
.y8{bottom:678.164250px;}
.y53{bottom:681.003900px;}
.y2d{bottom:684.845850px;}
.y9d{bottom:688.953900px;}
.y77{bottom:690.303900px;}
.ybf{bottom:699.453900px;}
.y52{bottom:700.353900px;}
.y7{bottom:700.520250px;}
.y2c{bottom:707.201850px;}
.y9c{bottom:709.353900px;}
.y76{bottom:710.253900px;}
.ybe{bottom:719.253900px;}
.y6{bottom:722.876250px;}
.y51{bottom:728.207850px;}
.y2b{bottom:729.557850px;}
.y9b{bottom:729.753900px;}
.y75{bottom:730.203900px;}
.ybd{bottom:739.053900px;}
.y5{bottom:745.226400px;}
.y9a{bottom:750.153900px;}
.y50{bottom:750.257850px;}
.y74{bottom:758.675850px;}
.ybc{bottom:758.853900px;}
.y99{bottom:770.553900px;}
.y4f{bottom:772.307850px;}
.y2a{bottom:774.257850px;}
.ybb{bottom:778.653900px;}
.y73{bottom:781.319850px;}
.y98{bottom:790.953900px;}
.y4{bottom:791.112150px;}
.y29{bottom:793.907850px;}
.y4e{bottom:794.357850px;}
.yba{bottom:798.453900px;}
.y72{bottom:803.963850px;}
.y97{bottom:811.353900px;}
.y28{bottom:813.557850px;}
.y3{bottom:813.612150px;}
.y4d{bottom:816.407850px;}
.yb9{bottom:818.253900px;}
.y71{bottom:826.607850px;}
.y96{bottom:831.753900px;}
.y27{bottom:833.207850px;}
.yb8{bottom:838.053900px;}
.y4c{bottom:838.457850px;}
.y95{bottom:852.153900px;}
.y26{bottom:852.857850px;}
.yb7{bottom:857.853900px;}
.y4b{bottom:860.507850px;}
.y70{bottom:871.757850px;}
.y25{bottom:872.507850px;}
.y94{bottom:872.553900px;}
.yb6{bottom:877.653900px;}
.y2{bottom:880.757850px;}
.y4a{bottom:882.557850px;}
.y6f{bottom:891.557850px;}
.y24{bottom:892.157850px;}
.yb5{bottom:897.453900px;}
.y93{bottom:901.469850px;}
.y49{bottom:904.607850px;}
.y6e{bottom:911.357850px;}
.y23{bottom:911.807850px;}
.y92{bottom:924.563850px;}
.yb4{bottom:925.757850px;}
.y48{bottom:926.657850px;}
.y6d{bottom:931.157850px;}
.y22{bottom:931.457850px;}
.y91{bottom:947.657850px;}
.yb3{bottom:948.257850px;}
.y47{bottom:948.707850px;}
.y6c{bottom:950.957850px;}
.y21{bottom:951.107850px;}
.h4{height:50.580000px;}
.h2{height:57.890625px;}
.h5{height:61.136719px;}
.h7{height:63.679688px;}
.h6{height:69.468750px;}
.h3{height:115.781250px;}
.h0{height:1059.519000px;}
.h1{height:1059.750000px;}
.w1{width:741.000000px;}
.w0{width:741.259500px;}
.x0{left:0.000000px;}
.x1{left:88.759800px;}
.x2{left:103.641750px;}
.x7{left:112.495950px;}
.x3{left:118.523550px;}
.x6{left:127.381950px;}
.x5{left:142.256250px;}
.x8{left:180.528750px;}
.x4{left:625.781250px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.021867pt;}
.ls7{letter-spacing:0.064000pt;}
.ls4{letter-spacing:0.106667pt;}
.ls10{letter-spacing:0.128000pt;}
.ls12{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.256000pt;}
.lsc{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.352000pt;}
.ls5{letter-spacing:0.373333pt;}
.ls11{letter-spacing:0.384000pt;}
.lsa{letter-spacing:0.426667pt;}
.ls2{letter-spacing:0.480000pt;}
.ls9{letter-spacing:0.512000pt;}
.lsf{letter-spacing:0.528000pt;}
.ls8{letter-spacing:0.576000pt;}
.ls15{letter-spacing:0.640000pt;}
.ls14{letter-spacing:0.960000pt;}
.ls13{letter-spacing:1.280000pt;}
.ls16{letter-spacing:1.664000pt;}
.lsb{letter-spacing:4.544000pt;}
.ls0{letter-spacing:7.520000pt;}
.ls1{letter-spacing:9.546667pt;}
.ws2{word-spacing:-43.136000pt;}
.ws1{word-spacing:-35.946667pt;}
.ws5{word-spacing:-22.506667pt;}
.ws3{word-spacing:-14.986667pt;}
.ws4{word-spacing:0.000000pt;}
.ws0{word-spacing:114.933333pt;}
._10{margin-left:-843.466667pt;}
._f{margin-left:-18.005333pt;}
._e{margin-left:-11.520000pt;}
._12{margin-left:-10.613333pt;}
._6{margin-left:-9.546667pt;}
._11{margin-left:-8.000000pt;}
._8{margin-left:-6.549333pt;}
._d{margin-left:-5.237333pt;}
._c{margin-left:-3.562667pt;}
._0{margin-left:-2.133333pt;}
._2{margin-left:-1.066667pt;}
._5{width:0.960000pt;}
._3{width:2.613333pt;}
._1{width:3.733333pt;}
._b{width:4.821333pt;}
._9{width:6.208000pt;}
._4{width:7.573333pt;}
._a{width:9.354667pt;}
._7{width:11.040000pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:82.895867pt;}
.y6b{bottom:123.818667pt;}
.y46{bottom:125.111067pt;}
.y90{bottom:125.793733pt;}
.yb2{bottom:126.476400pt;}
.y20{bottom:126.905333pt;}
.y6a{bottom:141.018667pt;}
.y45{bottom:142.577733pt;}
.y8f{bottom:143.525733pt;}
.y1f{bottom:144.505333pt;}
.yb1{bottom:147.004400pt;}
.y44{bottom:160.044400pt;}
.y8e{bottom:161.257733pt;}
.y1e{bottom:161.972000pt;}
.y69{bottom:165.777733pt;}
.yb0{bottom:167.532400pt;}
.y43{bottom:177.511067pt;}
.y8d{bottom:178.989733pt;}
.y1d{bottom:179.438667pt;}
.y68{bottom:185.377733pt;}
.yaf{bottom:188.060400pt;}
.y42{bottom:194.977733pt;}
.y8c{bottom:196.721733pt;}
.y1c{bottom:204.448267pt;}
.y67{bottom:204.977733pt;}
.y41{bottom:212.444400pt;}
.y8b{bottom:214.453733pt;}
.y1b{bottom:224.320267pt;}
.yae{bottom:229.132400pt;}
.y40{bottom:229.911067pt;}
.y8a{bottom:232.185733pt;}
.y66{bottom:244.177733pt;}
.y1a{bottom:244.192267pt;}
.y3f{bottom:247.377733pt;}
.yad{bottom:249.660400pt;}
.y89{bottom:249.917733pt;}
.y65{bottom:261.377733pt;}
.y19{bottom:264.064267pt;}
.y3e{bottom:264.844400pt;}
.y88{bottom:267.649733pt;}
.yac{bottom:270.188400pt;}
.y64{bottom:278.577733pt;}
.y3d{bottom:282.311067pt;}
.y87{bottom:285.381733pt;}
.yab{bottom:290.716400pt;}
.y63{bottom:295.777733pt;}
.y3c{bottom:299.777733pt;}
.y86{bottom:303.113733pt;}
.y18{bottom:303.797733pt;}
.yaa{bottom:311.244400pt;}
.y62{bottom:312.977733pt;}
.y3b{bottom:317.244400pt;}
.y85{bottom:320.845733pt;}
.y17{bottom:321.264400pt;}
.y61{bottom:330.177733pt;}
.y3a{bottom:334.711067pt;}
.y84{bottom:338.577733pt;}
.y16{bottom:338.731067pt;}
.y60{bottom:347.377733pt;}
.ya9{bottom:352.311067pt;}
.y15{bottom:356.197733pt;}
.y39{bottom:359.720800pt;}
.y83{bottom:363.902133pt;}
.y5f{bottom:364.577733pt;}
.ya8{bottom:370.444400pt;}
.y14{bottom:373.664400pt;}
.y38{bottom:379.592800pt;}
.y82{bottom:384.030133pt;}
.ya7{bottom:388.577733pt;}
.y5e{bottom:389.336800pt;}
.y13{bottom:391.131067pt;}
.y37{bottom:399.464800pt;}
.y81{bottom:404.158133pt;}
.ya6{bottom:406.711067pt;}
.y12{bottom:408.597733pt;}
.y5d{bottom:408.936800pt;}
.y36{bottom:419.336800pt;}
.y80{bottom:424.286133pt;}
.ya5{bottom:424.844400pt;}
.y11{bottom:426.064400pt;}
.y5c{bottom:428.536800pt;}
.ya4{bottom:442.977733pt;}
.y10{bottom:443.531067pt;}
.y7f{bottom:444.414133pt;}
.y35{bottom:459.070133pt;}
.yf{bottom:460.997733pt;}
.y7e{bottom:464.542133pt;}
.y5b{bottom:467.736800pt;}
.ya3{bottom:468.696800pt;}
.y34{bottom:476.536800pt;}
.ye{bottom:478.464400pt;}
.y7d{bottom:484.670133pt;}
.y5a{bottom:484.936800pt;}
.ya2{bottom:489.224800pt;}
.y33{bottom:494.003467pt;}
.yc4{bottom:501.736800pt;}
.y59{bottom:502.136800pt;}
.yd{bottom:503.452667pt;}
.ya1{bottom:509.752800pt;}
.y32{bottom:511.470133pt;}
.yc3{bottom:518.403467pt;}
.y58{bottom:519.336800pt;}
.yc{bottom:523.324667pt;}
.y7c{bottom:524.936800pt;}
.y31{bottom:528.936800pt;}
.ya0{bottom:530.280800pt;}
.yc2{bottom:535.070133pt;}
.y57{bottom:536.536800pt;}
.y7b{bottom:542.670133pt;}
.yb{bottom:543.196667pt;}
.y30{bottom:546.403467pt;}
.y9f{bottom:550.808800pt;}
.yc1{bottom:551.736800pt;}
.y56{bottom:553.736800pt;}
.y7a{bottom:560.403467pt;}
.ya{bottom:563.068667pt;}
.y2f{bottom:563.870133pt;}
.y55{bottom:570.936800pt;}
.y9e{bottom:571.336800pt;}
.y79{bottom:578.136800pt;}
.y9{bottom:582.940667pt;}
.yc0{bottom:585.070133pt;}
.y54{bottom:588.136800pt;}
.y2e{bottom:588.879867pt;}
.y78{bottom:595.870133pt;}
.y8{bottom:602.812667pt;}
.y53{bottom:605.336800pt;}
.y2d{bottom:608.751867pt;}
.y9d{bottom:612.403467pt;}
.y77{bottom:613.603467pt;}
.ybf{bottom:621.736800pt;}
.y52{bottom:622.536800pt;}
.y7{bottom:622.684667pt;}
.y2c{bottom:628.623867pt;}
.y9c{bottom:630.536800pt;}
.y76{bottom:631.336800pt;}
.ybe{bottom:639.336800pt;}
.y6{bottom:642.556667pt;}
.y51{bottom:647.295867pt;}
.y2b{bottom:648.495867pt;}
.y9b{bottom:648.670133pt;}
.y75{bottom:649.070133pt;}
.ybd{bottom:656.936800pt;}
.y5{bottom:662.423467pt;}
.y9a{bottom:666.803467pt;}
.y50{bottom:666.895867pt;}
.y74{bottom:674.378533pt;}
.ybc{bottom:674.536800pt;}
.y99{bottom:684.936800pt;}
.y4f{bottom:686.495867pt;}
.y2a{bottom:688.229200pt;}
.ybb{bottom:692.136800pt;}
.y73{bottom:694.506533pt;}
.y98{bottom:703.070133pt;}
.y4{bottom:703.210800pt;}
.y29{bottom:705.695867pt;}
.y4e{bottom:706.095867pt;}
.yba{bottom:709.736800pt;}
.y72{bottom:714.634533pt;}
.y97{bottom:721.203467pt;}
.y28{bottom:723.162533pt;}
.y3{bottom:723.210800pt;}
.y4d{bottom:725.695867pt;}
.yb9{bottom:727.336800pt;}
.y71{bottom:734.762533pt;}
.y96{bottom:739.336800pt;}
.y27{bottom:740.629200pt;}
.yb8{bottom:744.936800pt;}
.y4c{bottom:745.295867pt;}
.y95{bottom:757.470133pt;}
.y26{bottom:758.095867pt;}
.yb7{bottom:762.536800pt;}
.y4b{bottom:764.895867pt;}
.y70{bottom:774.895867pt;}
.y25{bottom:775.562533pt;}
.y94{bottom:775.603467pt;}
.yb6{bottom:780.136800pt;}
.y2{bottom:782.895867pt;}
.y4a{bottom:784.495867pt;}
.y6f{bottom:792.495867pt;}
.y24{bottom:793.029200pt;}
.yb5{bottom:797.736800pt;}
.y93{bottom:801.306533pt;}
.y49{bottom:804.095867pt;}
.y6e{bottom:810.095867pt;}
.y23{bottom:810.495867pt;}
.y92{bottom:821.834533pt;}
.yb4{bottom:822.895867pt;}
.y48{bottom:823.695867pt;}
.y6d{bottom:827.695867pt;}
.y22{bottom:827.962533pt;}
.y91{bottom:842.362533pt;}
.yb3{bottom:842.895867pt;}
.y47{bottom:843.295867pt;}
.y6c{bottom:845.295867pt;}
.y21{bottom:845.429200pt;}
.h4{height:44.960000pt;}
.h2{height:51.458333pt;}
.h5{height:54.343750pt;}
.h7{height:56.604167pt;}
.h6{height:61.750000pt;}
.h3{height:102.916667pt;}
.h0{height:941.794667pt;}
.h1{height:942.000000pt;}
.w1{width:658.666667pt;}
.w0{width:658.897333pt;}
.x0{left:0.000000pt;}
.x1{left:78.897600pt;}
.x2{left:92.126000pt;}
.x7{left:99.996400pt;}
.x3{left:105.354267pt;}
.x6{left:113.228400pt;}
.x5{left:126.450000pt;}
.x8{left:160.470000pt;}
.x4{left:556.250000pt;}
}




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