
    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_5a1cbd6dddfa3b8798862ae1.woff2')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_ed57694ec2873117b547439f.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_565d91ebb209e4bdb66b66c8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.883301;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_0a972923dd806852bb6040d3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_63825da025c5cc9a075bba8d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.942383;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_b01d6ae038b5acd3953cbb05.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_7cb8d3e91d69b70a97cd5fd0.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_700fbe64564f93b3c40fb3ff.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_905216a4bbf27c75e915ba25.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;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;}
.v1{vertical-align:23.760000px;}
.ls3{letter-spacing:-0.375600px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.612000px;}
.lsb{letter-spacing:0.750000px;}
.ls5{letter-spacing:1.080000px;}
.ls0{letter-spacing:2.160000px;}
.ls4{letter-spacing:2.184000px;}
.ls6{letter-spacing:10.424160px;}
.ls7{letter-spacing:14.888160px;}
.lsa{letter-spacing:16.904160px;}
.ls9{letter-spacing:53.624160px;}
.ls8{letter-spacing:135.704160px;}
.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:-71.280000px;}
.ws6{word-spacing:-20.004000px;}
.ws7{word-spacing:-18.900000px;}
.ws9{word-spacing:-18.570000px;}
.ws3{word-spacing:-17.820000px;}
.ws5{word-spacing:-17.444400px;}
.ws0{word-spacing:-15.744960px;}
.ws8{word-spacing:-15.132960px;}
.ws1{word-spacing:-11.880000px;}
.ws4{word-spacing:0.000000px;}
._4{margin-left:-14.608080px;}
._6{margin-left:-5.892480px;}
._17{margin-left:-4.814640px;}
._5{margin-left:-3.801600px;}
._1{margin-left:-2.410560px;}
._0{margin-left:-1.339200px;}
._3{width:1.283040px;}
._2{width:2.300400px;}
._7{width:3.780720px;}
._9{width:5.467440px;}
._18{width:6.482640px;}
._b{width:7.484400px;}
._c{width:8.968320px;}
._11{width:10.699200px;}
._a{width:12.402720px;}
._10{width:14.007600px;}
._f{width:15.526080px;}
._12{width:16.737840px;}
._1b{width:19.273680px;}
._1a{width:20.314800px;}
._19{width:21.693360px;}
._8{width:23.122320px;}
._16{width:24.484080px;}
._15{width:25.602960px;}
._1f{width:26.624160px;}
._13{width:28.216560px;}
._14{width:29.693520px;}
._e{width:31.370640px;}
._d{width:32.522640px;}
._23{width:34.219920px;}
._1d{width:37.297680px;}
._1e{width:38.813040px;}
._1c{width:40.759200px;}
._22{width:85.890240px;}
._21{width:87.376320px;}
._20{width:88.930080px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:47.520000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:66.960000px;}
.fs0{font-size:71.280000px;}
.fs3{font-size:95.040000px;}
.y0{bottom:0.000000px;}
.y74{bottom:7.020000px;}
.y77{bottom:7.560000px;}
.y6{bottom:10.800000px;}
.y7{bottom:11.340000px;}
.y72{bottom:18.900000px;}
.y78{bottom:19.440000px;}
.y73{bottom:30.780000px;}
.y76{bottom:31.320000px;}
.y8{bottom:57.276000px;}
.y5{bottom:73.476000px;}
.y6f{bottom:108.036000px;}
.y34{bottom:115.596000px;}
.y8d{bottom:128.016000px;}
.y60{bottom:131.832000px;}
.y33{bottom:139.392000px;}
.y8c{bottom:151.815000px;}
.y5f{bottom:155.595000px;}
.y32{bottom:163.155000px;}
.y8b{bottom:175.575000px;}
.y5e{bottom:179.355000px;}
.y31{bottom:187.455000px;}
.y8a{bottom:199.335000px;}
.y5d{bottom:203.115000px;}
.y30{bottom:210.675000px;}
.y89{bottom:223.125000px;}
.y5c{bottom:226.905000px;}
.y2f{bottom:235.005000px;}
.y88{bottom:246.885000px;}
.y5b{bottom:250.665000px;}
.y2e{bottom:258.765000px;}
.y87{bottom:270.645000px;}
.y5a{bottom:274.425000px;}
.y6e{bottom:274.965000px;}
.y2d{bottom:282.525000px;}
.y6d{bottom:294.405000px;}
.y59{bottom:298.230000px;}
.y2c{bottom:306.330000px;}
.y86{bottom:318.210000px;}
.y58{bottom:321.990000px;}
.y2b{bottom:330.090000px;}
.y85{bottom:341.970000px;}
.y57{bottom:345.750000px;}
.y2a{bottom:353.850000px;}
.y84{bottom:366.270000px;}
.y56{bottom:369.510000px;}
.y29{bottom:377.610000px;}
.y83{bottom:390.060000px;}
.y55{bottom:393.840000px;}
.y28{bottom:401.400000px;}
.y82{bottom:413.820000px;}
.y54{bottom:417.600000px;}
.y27{bottom:425.160000px;}
.y81{bottom:437.580000px;}
.y53{bottom:441.360000px;}
.y26{bottom:448.920000px;}
.y80{bottom:461.340000px;}
.y52{bottom:465.120000px;}
.y25{bottom:472.710000px;}
.y7f{bottom:485.130000px;}
.y51{bottom:488.910000px;}
.y24{bottom:497.010000px;}
.y7e{bottom:508.890000px;}
.y50{bottom:512.670000px;}
.y23{bottom:520.770000px;}
.y7d{bottom:532.650000px;}
.y4f{bottom:536.430000px;}
.y22{bottom:544.530000px;}
.y7c{bottom:556.455000px;}
.y4e{bottom:560.235000px;}
.y21{bottom:568.335000px;}
.y7b{bottom:579.675000px;}
.y4d{bottom:583.995000px;}
.y6c{bottom:585.615000px;}
.y20{bottom:592.095000px;}
.y7a{bottom:597.495000px;}
.y4c{bottom:607.755000px;}
.y6b{bottom:609.375000px;}
.y1f{bottom:615.855000px;}
.y4b{bottom:631.515000px;}
.y6a{bottom:633.135000px;}
.y1e{bottom:639.645000px;}
.y79{bottom:645.585000px;}
.y61{bottom:654.765000px;}
.y4a{bottom:655.305000px;}
.y69{bottom:656.925000px;}
.y1d{bottom:663.405000px;}
.y75{bottom:670.425000px;}
.y93{bottom:679.065000px;}
.y49{bottom:679.605000px;}
.y68{bottom:680.685000px;}
.y1c{bottom:687.165000px;}
.y92{bottom:702.825000px;}
.y48{bottom:703.365000px;}
.y67{bottom:704.445000px;}
.y1b{bottom:710.925000px;}
.y71{bottom:718.530000px;}
.y47{bottom:727.170000px;}
.y66{bottom:728.250000px;}
.y1a{bottom:734.190000px;}
.y46{bottom:750.930000px;}
.y65{bottom:752.010000px;}
.y19{bottom:757.950000px;}
.y91{bottom:774.150000px;}
.y45{bottom:774.690000px;}
.y64{bottom:775.770000px;}
.y18{bottom:782.790000px;}
.y44{bottom:798.450000px;}
.y63{bottom:799.530000px;}
.y17{bottom:806.580000px;}
.y62{bottom:819.000000px;}
.y43{bottom:822.240000px;}
.y16{bottom:830.340000px;}
.y42{bottom:846.000000px;}
.y15{bottom:854.100000px;}
.y41{bottom:869.760000px;}
.y14{bottom:877.860000px;}
.y40{bottom:893.550000px;}
.y13{bottom:901.650000px;}
.y90{bottom:916.770000px;}
.y3f{bottom:917.310000px;}
.y12{bottom:925.410000px;}
.y8f{bottom:940.530000px;}
.y3e{bottom:941.070000px;}
.y11{bottom:949.170000px;}
.y3d{bottom:964.830000px;}
.y10{bottom:972.435000px;}
.y3c{bottom:989.175000px;}
.yf{bottom:996.195000px;}
.y70{bottom:1012.395000px;}
.y3b{bottom:1012.935000px;}
.ye{bottom:1020.495000px;}
.y3a{bottom:1036.695000px;}
.yd{bottom:1044.255000px;}
.y39{bottom:1060.485000px;}
.yc{bottom:1067.505000px;}
.y38{bottom:1084.245000px;}
.yb{bottom:1091.805000px;}
.y37{bottom:1108.005000px;}
.ya{bottom:1117.725000px;}
.y36{bottom:1131.765000px;}
.y9{bottom:1149.630000px;}
.y8e{bottom:1155.030000px;}
.y35{bottom:1155.570000px;}
.y4{bottom:1194.990000px;}
.y3{bottom:1210.650000px;}
.y2{bottom:1227.420000px;}
.y1{bottom:1246.320000px;}
.hf{height:23.760000px;}
.h5{height:27.000000px;}
.he{height:47.520000px;}
.h10{height:47.556000px;}
.hc{height:49.770703px;}
.h7{height:50.775820px;}
.h4{height:54.421875px;}
.h8{height:67.057031px;}
.h3{height:67.483125px;}
.hb{height:69.922617px;}
.h6{height:69.957422px;}
.ha{height:70.398281px;}
.h2{height:71.836875px;}
.hd{height:73.264608px;}
.h9{height:95.782500px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w4{width:103.716000px;}
.wa{width:111.852000px;}
.w9{width:121.572000px;}
.w6{width:140.472000px;}
.w7{width:143.208000px;}
.w8{width:151.815000px;}
.w5{width:298.800000px;}
.w3{width:299.340000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1c{left:7.560000px;}
.x17{left:9.180000px;}
.x16{left:39.420000px;}
.x8{left:43.740000px;}
.x5{left:95.652000px;}
.xa{left:111.311987px;}
.x14{left:127.511987px;}
.x11{left:138.311987px;}
.xc{left:148.607987px;}
.x1e{left:149.687987px;}
.x13{left:181.004987px;}
.x3{left:190.724987px;}
.x1d{left:202.604987px;}
.x18{left:251.790000px;}
.x6{left:290.703000px;}
.xf{left:313.379987px;}
.xb{left:317.699987px;}
.x10{left:322.019987px;}
.x2{left:333.389987px;}
.x4{left:342.569987px;}
.xe{left:344.189987px;}
.xd{left:376.589987px;}
.x7{left:394.995000px;}
.x19{left:396.075000px;}
.x9{left:498.705000px;}
.x1a{left:548.430000px;}
.x1b{left:671.070000px;}
.x15{left:681.329987px;}
.x12{left:705.134987px;}
.x1{left:797.504987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls3{letter-spacing:-0.333867pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.544000pt;}
.lsb{letter-spacing:0.666667pt;}
.ls5{letter-spacing:0.960000pt;}
.ls0{letter-spacing:1.920000pt;}
.ls4{letter-spacing:1.941333pt;}
.ls6{letter-spacing:9.265920pt;}
.ls7{letter-spacing:13.233920pt;}
.lsa{letter-spacing:15.025920pt;}
.ls9{letter-spacing:47.665920pt;}
.ls8{letter-spacing:120.625920pt;}
.ws2{word-spacing:-63.360000pt;}
.ws6{word-spacing:-17.781333pt;}
.ws7{word-spacing:-16.800000pt;}
.ws9{word-spacing:-16.506667pt;}
.ws3{word-spacing:-15.840000pt;}
.ws5{word-spacing:-15.506133pt;}
.ws0{word-spacing:-13.995520pt;}
.ws8{word-spacing:-13.451520pt;}
.ws1{word-spacing:-10.560000pt;}
.ws4{word-spacing:0.000000pt;}
._4{margin-left:-12.984960pt;}
._6{margin-left:-5.237760pt;}
._17{margin-left:-4.279680pt;}
._5{margin-left:-3.379200pt;}
._1{margin-left:-2.142720pt;}
._0{margin-left:-1.190400pt;}
._3{width:1.140480pt;}
._2{width:2.044800pt;}
._7{width:3.360640pt;}
._9{width:4.859947pt;}
._18{width:5.762347pt;}
._b{width:6.652800pt;}
._c{width:7.971840pt;}
._11{width:9.510400pt;}
._a{width:11.024640pt;}
._10{width:12.451200pt;}
._f{width:13.800960pt;}
._12{width:14.878080pt;}
._1b{width:17.132160pt;}
._1a{width:18.057600pt;}
._19{width:19.282987pt;}
._8{width:20.553173pt;}
._16{width:21.763627pt;}
._15{width:22.758187pt;}
._1f{width:23.665920pt;}
._13{width:25.081387pt;}
._14{width:26.394240pt;}
._e{width:27.885013pt;}
._d{width:28.909013pt;}
._23{width:30.417707pt;}
._1d{width:33.153493pt;}
._1e{width:34.500480pt;}
._1c{width:36.230400pt;}
._22{width:76.346880pt;}
._21{width:77.667840pt;}
._20{width:79.048960pt;}
.fs4{font-size:42.240000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:59.520000pt;}
.fs0{font-size:63.360000pt;}
.fs3{font-size:84.480000pt;}
.y0{bottom:0.000000pt;}
.y74{bottom:6.240000pt;}
.y77{bottom:6.720000pt;}
.y6{bottom:9.600000pt;}
.y7{bottom:10.080000pt;}
.y72{bottom:16.800000pt;}
.y78{bottom:17.280000pt;}
.y73{bottom:27.360000pt;}
.y76{bottom:27.840000pt;}
.y8{bottom:50.912000pt;}
.y5{bottom:65.312000pt;}
.y6f{bottom:96.032000pt;}
.y34{bottom:102.752000pt;}
.y8d{bottom:113.792000pt;}
.y60{bottom:117.184000pt;}
.y33{bottom:123.904000pt;}
.y8c{bottom:134.946667pt;}
.y5f{bottom:138.306667pt;}
.y32{bottom:145.026667pt;}
.y8b{bottom:156.066667pt;}
.y5e{bottom:159.426667pt;}
.y31{bottom:166.626667pt;}
.y8a{bottom:177.186667pt;}
.y5d{bottom:180.546667pt;}
.y30{bottom:187.266667pt;}
.y89{bottom:198.333333pt;}
.y5c{bottom:201.693333pt;}
.y2f{bottom:208.893333pt;}
.y88{bottom:219.453333pt;}
.y5b{bottom:222.813333pt;}
.y2e{bottom:230.013333pt;}
.y87{bottom:240.573333pt;}
.y5a{bottom:243.933333pt;}
.y6e{bottom:244.413333pt;}
.y2d{bottom:251.133333pt;}
.y6d{bottom:261.693333pt;}
.y59{bottom:265.093333pt;}
.y2c{bottom:272.293333pt;}
.y86{bottom:282.853333pt;}
.y58{bottom:286.213333pt;}
.y2b{bottom:293.413333pt;}
.y85{bottom:303.973333pt;}
.y57{bottom:307.333333pt;}
.y2a{bottom:314.533333pt;}
.y84{bottom:325.573333pt;}
.y56{bottom:328.453333pt;}
.y29{bottom:335.653333pt;}
.y83{bottom:346.720000pt;}
.y55{bottom:350.080000pt;}
.y28{bottom:356.800000pt;}
.y82{bottom:367.840000pt;}
.y54{bottom:371.200000pt;}
.y27{bottom:377.920000pt;}
.y81{bottom:388.960000pt;}
.y53{bottom:392.320000pt;}
.y26{bottom:399.040000pt;}
.y80{bottom:410.080000pt;}
.y52{bottom:413.440000pt;}
.y25{bottom:420.186667pt;}
.y7f{bottom:431.226667pt;}
.y51{bottom:434.586667pt;}
.y24{bottom:441.786667pt;}
.y7e{bottom:452.346667pt;}
.y50{bottom:455.706667pt;}
.y23{bottom:462.906667pt;}
.y7d{bottom:473.466667pt;}
.y4f{bottom:476.826667pt;}
.y22{bottom:484.026667pt;}
.y7c{bottom:494.626667pt;}
.y4e{bottom:497.986667pt;}
.y21{bottom:505.186667pt;}
.y7b{bottom:515.266667pt;}
.y4d{bottom:519.106667pt;}
.y6c{bottom:520.546667pt;}
.y20{bottom:526.306667pt;}
.y7a{bottom:531.106667pt;}
.y4c{bottom:540.226667pt;}
.y6b{bottom:541.666667pt;}
.y1f{bottom:547.426667pt;}
.y4b{bottom:561.346667pt;}
.y6a{bottom:562.786667pt;}
.y1e{bottom:568.573333pt;}
.y79{bottom:573.853333pt;}
.y61{bottom:582.013333pt;}
.y4a{bottom:582.493333pt;}
.y69{bottom:583.933333pt;}
.y1d{bottom:589.693333pt;}
.y75{bottom:595.933333pt;}
.y93{bottom:603.613333pt;}
.y49{bottom:604.093333pt;}
.y68{bottom:605.053333pt;}
.y1c{bottom:610.813333pt;}
.y92{bottom:624.733333pt;}
.y48{bottom:625.213333pt;}
.y67{bottom:626.173333pt;}
.y1b{bottom:631.933333pt;}
.y71{bottom:638.693333pt;}
.y47{bottom:646.373333pt;}
.y66{bottom:647.333333pt;}
.y1a{bottom:652.613333pt;}
.y46{bottom:667.493333pt;}
.y65{bottom:668.453333pt;}
.y19{bottom:673.733333pt;}
.y91{bottom:688.133333pt;}
.y45{bottom:688.613333pt;}
.y64{bottom:689.573333pt;}
.y18{bottom:695.813333pt;}
.y44{bottom:709.733333pt;}
.y63{bottom:710.693333pt;}
.y17{bottom:716.960000pt;}
.y62{bottom:728.000000pt;}
.y43{bottom:730.880000pt;}
.y16{bottom:738.080000pt;}
.y42{bottom:752.000000pt;}
.y15{bottom:759.200000pt;}
.y41{bottom:773.120000pt;}
.y14{bottom:780.320000pt;}
.y40{bottom:794.266667pt;}
.y13{bottom:801.466667pt;}
.y90{bottom:814.906667pt;}
.y3f{bottom:815.386667pt;}
.y12{bottom:822.586667pt;}
.y8f{bottom:836.026667pt;}
.y3e{bottom:836.506667pt;}
.y11{bottom:843.706667pt;}
.y3d{bottom:857.626667pt;}
.y10{bottom:864.386667pt;}
.y3c{bottom:879.266667pt;}
.yf{bottom:885.506667pt;}
.y70{bottom:899.906667pt;}
.y3b{bottom:900.386667pt;}
.ye{bottom:907.106667pt;}
.y3a{bottom:921.506667pt;}
.yd{bottom:928.226667pt;}
.y39{bottom:942.653333pt;}
.yc{bottom:948.893333pt;}
.y38{bottom:963.773333pt;}
.yb{bottom:970.493333pt;}
.y37{bottom:984.893333pt;}
.ya{bottom:993.533333pt;}
.y36{bottom:1006.013333pt;}
.y9{bottom:1021.893333pt;}
.y8e{bottom:1026.693333pt;}
.y35{bottom:1027.173333pt;}
.y4{bottom:1062.213333pt;}
.y3{bottom:1076.133333pt;}
.y2{bottom:1091.040000pt;}
.y1{bottom:1107.840000pt;}
.hf{height:21.120000pt;}
.h5{height:24.000000pt;}
.he{height:42.240000pt;}
.h10{height:42.272000pt;}
.hc{height:44.240625pt;}
.h7{height:45.134063pt;}
.h4{height:48.375000pt;}
.h8{height:59.606250pt;}
.h3{height:59.985000pt;}
.hb{height:62.153437pt;}
.h6{height:62.184375pt;}
.ha{height:62.576250pt;}
.h2{height:63.855000pt;}
.hd{height:65.124096pt;}
.h9{height:85.140000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w4{width:92.192000pt;}
.wa{width:99.424000pt;}
.w9{width:108.064000pt;}
.w6{width:124.864000pt;}
.w7{width:127.296000pt;}
.w8{width:134.946667pt;}
.w5{width:265.600000pt;}
.w3{width:266.080000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:6.720000pt;}
.x17{left:8.160000pt;}
.x16{left:35.040000pt;}
.x8{left:38.880000pt;}
.x5{left:85.024000pt;}
.xa{left:98.943988pt;}
.x14{left:113.343988pt;}
.x11{left:122.943988pt;}
.xc{left:132.095988pt;}
.x1e{left:133.055988pt;}
.x13{left:160.893322pt;}
.x3{left:169.533322pt;}
.x1d{left:180.093322pt;}
.x18{left:223.813333pt;}
.x6{left:258.402667pt;}
.xf{left:278.559988pt;}
.xb{left:282.399988pt;}
.x10{left:286.239988pt;}
.x2{left:296.346655pt;}
.x4{left:304.506655pt;}
.xe{left:305.946655pt;}
.xd{left:334.746655pt;}
.x7{left:351.106667pt;}
.x19{left:352.066667pt;}
.x9{left:443.293333pt;}
.x1a{left:487.493333pt;}
.x1b{left:596.506667pt;}
.x15{left:605.626655pt;}
.x12{left:626.786655pt;}
.x1{left:708.893322pt;}
}




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