
    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_067a5ba507ffa9b0eae286a0.woff')format("woff");}.ff1{font-family:ff1;line-height:0.857910;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_1db211e8e71896d6923789a6.woff')format("woff");}.ff2{font-family:ff2;line-height:0.895996;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_eb8c6bc7ccd7c45946502fba.woff')format("woff");}.ff3{font-family:ff3;line-height:0.904297;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_a8cd7c844ae641743c8041cd.woff')format("woff");}.ff4{font-family:ff4;line-height:0.861816;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);}
.v1{vertical-align:-3.720000px;}
.v0{vertical-align:0.000000px;}
.ls1a{letter-spacing:-1.808664px;}
.ls16{letter-spacing:-1.780020px;}
.ls25{letter-spacing:-1.657260px;}
.ls23{letter-spacing:-1.620432px;}
.ls1c{letter-spacing:-1.370820px;}
.ls13{letter-spacing:-1.329900px;}
.ls19{letter-spacing:-1.239876px;}
.ls15{letter-spacing:-1.121208px;}
.ls21{letter-spacing:-1.002540px;}
.ls8{letter-spacing:-0.716100px;}
.ls11{letter-spacing:-0.679272px;}
.ls10{letter-spacing:-0.634260px;}
.ls4{letter-spacing:-0.281232px;}
.ls5{letter-spacing:-0.184140px;}
.ls22{letter-spacing:-0.020460px;}
.ls12{letter-spacing:0.000000px;}
.ls26{letter-spacing:0.102300px;}
.lsc{letter-spacing:0.126852px;}
.ls9{letter-spacing:0.212784px;}
.ls6{letter-spacing:0.220968px;}
.lsd{letter-spacing:0.233244px;}
.lsf{letter-spacing:0.261888px;}
.lse{letter-spacing:0.347820px;}
.ls1e{letter-spacing:0.503316px;}
.ls14{letter-spacing:0.511500px;}
.lsb{letter-spacing:0.552420px;}
.lsa{letter-spacing:0.675180px;}
.ls20{letter-spacing:0.785664px;}
.ls7{letter-spacing:0.838860px;}
.ls24{letter-spacing:0.847044px;}
.ls1f{letter-spacing:0.875688px;}
.ls1b{letter-spacing:0.912516px;}
.ls1d{letter-spacing:1.170312px;}
.ls18{letter-spacing:1.243968px;}
.ls17{letter-spacing:1.288980px;}
.ls0{letter-spacing:1.575420px;}
.ls3{letter-spacing:1.788204px;}
.ls1{letter-spacing:373.573560px;}
.ls2{letter-spacing:395.893560px;}
.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;}
}
.ws1d{word-spacing:-405.141480px;}
.ws1b{word-spacing:-338.181480px;}
.ws1f{word-spacing:-11.036124px;}
.ws11{word-spacing:-10.823340px;}
.ws13{word-spacing:-10.536900px;}
.ws14{word-spacing:-10.491888px;}
.ws2{word-spacing:-10.086780px;}
.ws17{word-spacing:-10.033584px;}
.ws4{word-spacing:-9.923100px;}
.ws5{word-spacing:-9.800340px;}
.ws8{word-spacing:-9.509808px;}
.ws7{word-spacing:-9.481164px;}
.ws1{word-spacing:-9.468888px;}
.ws6{word-spacing:-9.374772px;}
.ws1a{word-spacing:-9.227460px;}
.ws0{word-spacing:-9.063780px;}
.ws9{word-spacing:-8.613660px;}
.ws3{word-spacing:-8.531820px;}
.ws20{word-spacing:-7.877100px;}
.ws12{word-spacing:-7.467900px;}
.ws21{word-spacing:0.000000px;}
.wsd{word-spacing:7.782240px;}
.wsb{word-spacing:108.220380px;}
.ws18{word-spacing:108.222240px;}
.ws15{word-spacing:130.542240px;}
.wse{word-spacing:230.980380px;}
.ws10{word-spacing:253.300380px;}
.wsf{word-spacing:275.620380px;}
.wsc{word-spacing:327.700380px;}
.ws19{word-spacing:327.702240px;}
.ws16{word-spacing:350.022240px;}
.ws1e{word-spacing:361.172940px;}
.ws1c{word-spacing:383.492940px;}
.wsa{word-spacing:1010.660760px;}
._f{margin-left:-395.893560px;}
._5{margin-left:-4.341240px;}
._3{margin-left:-3.191760px;}
._0{margin-left:-1.428480px;}
._1{width:1.473120px;}
._4{width:2.618880px;}
._9{width:3.679080px;}
._c{width:220.166340px;}
._6{width:315.868920px;}
._a{width:337.867140px;}
._11{width:349.676280px;}
._7{width:359.906280px;}
._8{width:360.921840px;}
._b{width:382.228140px;}
._12{width:394.316280px;}
._13{width:797.850720px;}
._d{width:800.333820px;}
._10{width:805.441380px;}
._14{width:838.015560px;}
._e{width:871.912200px;}
._2{width:5005.448976px;}
.fc1{color:rgb(191,191,191);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:29.760000px;}
.fs1{font-size:40.920000px;}
.fs0{font-size:44.640000px;}
.y0{bottom:0.000000px;}
.yf{bottom:2.790015px;}
.y12{bottom:3.720015px;}
.ya{bottom:4.650015px;}
.y1e{bottom:15.810015px;}
.ye{bottom:16.740015px;}
.y9{bottom:17.670015px;}
.y7{bottom:20.460015px;}
.y56{bottom:26.970015px;}
.y35{bottom:28.830015px;}
.y8{bottom:30.690015px;}
.y6{bottom:33.480015px;}
.y5{bottom:46.500015px;}
.y4{bottom:59.520015px;}
.y55{bottom:138.570015px;}
.y1{bottom:186.990000px;}
.y4b{bottom:296.670015px;}
.y4a{bottom:309.690015px;}
.y48{bottom:323.640015px;}
.y47{bottom:336.660015px;}
.y45{bottom:350.610015px;}
.y54{bottom:368.340000px;}
.y53{bottom:382.290000px;}
.y43{bottom:390.600015px;}
.y52{bottom:396.240000px;}
.y41{bottom:404.550015px;}
.y51{bottom:410.190000px;}
.y40{bottom:417.570015px;}
.y50{bottom:424.140000px;}
.y3e{bottom:431.520015px;}
.y4f{bottom:438.090000px;}
.y3d{bottom:444.540015px;}
.y4e{bottom:452.040000px;}
.y3b{bottom:458.490015px;}
.y4d{bottom:465.990000px;}
.y3a{bottom:471.510015px;}
.y4c{bottom:479.940000px;}
.y38{bottom:485.460015px;}
.y49{bottom:493.890000px;}
.y46{bottom:520.860000px;}
.y36{bottom:525.450015px;}
.y44{bottom:547.830000px;}
.y33{bottom:553.350015px;}
.y32{bottom:566.370015px;}
.y42{bottom:574.800000px;}
.y30{bottom:580.320015px;}
.y2f{bottom:593.340015px;}
.y3f{bottom:601.770000px;}
.y2d{bottom:607.290015px;}
.y2c{bottom:620.310015px;}
.y3c{bottom:628.740000px;}
.y2a{bottom:634.260015px;}
.y39{bottom:655.710000px;}
.y28{bottom:674.250015px;}
.y37{bottom:682.680000px;}
.y26{bottom:688.200015px;}
.y25{bottom:701.220015px;}
.y34{bottom:709.650000px;}
.y23{bottom:715.170015px;}
.y22{bottom:728.190015px;}
.y20{bottom:742.140015px;}
.y31{bottom:750.570000px;}
.y1f{bottom:755.160015px;}
.y1c{bottom:769.110015px;}
.y2e{bottom:777.540000px;}
.y1a{bottom:782.130015px;}
.y19{bottom:795.150015px;}
.y2b{bottom:804.510000px;}
.y17{bottom:809.100015px;}
.y16{bottom:822.120015px;}
.y29{bottom:831.480000px;}
.y14{bottom:836.070015px;}
.y13{bottom:849.090015px;}
.y27{bottom:858.450000px;}
.y10{bottom:863.040015px;}
.y24{bottom:885.420000px;}
.yc{bottom:890.010015px;}
.yb{bottom:903.030015px;}
.y21{bottom:912.390000px;}
.y1d{bottom:939.360000px;}
.y1b{bottom:966.330000px;}
.y18{bottom:979.350000px;}
.y2{bottom:985.800015px;}
.y15{bottom:1006.320000px;}
.y11{bottom:1033.290000px;}
.yd{bottom:1060.260000px;}
.y3{bottom:1100.250000px;}
.h7{height:12.090000px;}
.h9{height:13.020000px;}
.ha{height:20.343750px;}
.h6{height:26.040000px;}
.h5{height:29.371289px;}
.h4{height:29.710957px;}
.h2{height:30.341250px;}
.h8{height:39.990000px;}
.h3{height:68.820000px;}
.h1{height:996.030000px;}
.h0{height:1263.000000px;}
.w2{width:48.360000px;}
.w3{width:53.940000px;}
.w6{width:94.860000px;}
.w4{width:209.250000px;}
.w5{width:219.480000px;}
.w1{width:1611.690000px;}
.w0{width:1786.500000px;}
.x0{left:0.000000px;}
.x2{left:1.860000px;}
.x7{left:3.720000px;}
.x10{left:10.230000px;}
.x8{left:12.090000px;}
.xd{left:14.880000px;}
.x1b{left:16.740000px;}
.x6{left:20.460000px;}
.x1{left:77.190000px;}
.x23{left:81.840000px;}
.x1e{left:87.420000px;}
.x1f{left:97.650000px;}
.x21{left:172.980000px;}
.x22{left:299.460000px;}
.x20{left:348.750000px;}
.x3{left:393.390000px;}
.x4{left:442.680000px;}
.x5{left:491.970000px;}
.xa{left:515.220000px;}
.x9{left:541.260000px;}
.xb{left:639.840000px;}
.xc{left:694.710000px;}
.xe{left:749.580000px;}
.xf{left:804.450000px;}
.x11{left:853.740000px;}
.x12{left:908.610000px;}
.x14{left:943.950000px;}
.x13{left:957.900000px;}
.x15{left:1062.060000px;}
.x16{left:1116.930000px;}
.x17{left:1166.220000px;}
.x18{left:1221.090000px;}
.x19{left:1270.380000px;}
.x1a{left:1325.250000px;}
.x1c{left:1374.540000px;}
.x1d{left:1478.700000px;}
@media print{
.v1{vertical-align:-3.306667pt;}
.v0{vertical-align:0.000000pt;}
.ls1a{letter-spacing:-1.607701pt;}
.ls16{letter-spacing:-1.582240pt;}
.ls25{letter-spacing:-1.473120pt;}
.ls23{letter-spacing:-1.440384pt;}
.ls1c{letter-spacing:-1.218507pt;}
.ls13{letter-spacing:-1.182133pt;}
.ls19{letter-spacing:-1.102112pt;}
.ls15{letter-spacing:-0.996629pt;}
.ls21{letter-spacing:-0.891147pt;}
.ls8{letter-spacing:-0.636533pt;}
.ls11{letter-spacing:-0.603797pt;}
.ls10{letter-spacing:-0.563787pt;}
.ls4{letter-spacing:-0.249984pt;}
.ls5{letter-spacing:-0.163680pt;}
.ls22{letter-spacing:-0.018187pt;}
.ls12{letter-spacing:0.000000pt;}
.ls26{letter-spacing:0.090933pt;}
.lsc{letter-spacing:0.112757pt;}
.ls9{letter-spacing:0.189141pt;}
.ls6{letter-spacing:0.196416pt;}
.lsd{letter-spacing:0.207328pt;}
.lsf{letter-spacing:0.232789pt;}
.lse{letter-spacing:0.309173pt;}
.ls1e{letter-spacing:0.447392pt;}
.ls14{letter-spacing:0.454667pt;}
.lsb{letter-spacing:0.491040pt;}
.lsa{letter-spacing:0.600160pt;}
.ls20{letter-spacing:0.698368pt;}
.ls7{letter-spacing:0.745653pt;}
.ls24{letter-spacing:0.752928pt;}
.ls1f{letter-spacing:0.778389pt;}
.ls1b{letter-spacing:0.811125pt;}
.ls1d{letter-spacing:1.040277pt;}
.ls18{letter-spacing:1.105749pt;}
.ls17{letter-spacing:1.145760pt;}
.ls0{letter-spacing:1.400373pt;}
.ls3{letter-spacing:1.589515pt;}
.ls1{letter-spacing:332.065387pt;}
.ls2{letter-spacing:351.905387pt;}
.ws1d{word-spacing:-360.125760pt;}
.ws1b{word-spacing:-300.605760pt;}
.ws1f{word-spacing:-9.809888pt;}
.ws11{word-spacing:-9.620747pt;}
.ws13{word-spacing:-9.366133pt;}
.ws14{word-spacing:-9.326123pt;}
.ws2{word-spacing:-8.966027pt;}
.ws17{word-spacing:-8.918741pt;}
.ws4{word-spacing:-8.820533pt;}
.ws5{word-spacing:-8.711413pt;}
.ws8{word-spacing:-8.453163pt;}
.ws7{word-spacing:-8.427701pt;}
.ws1{word-spacing:-8.416789pt;}
.ws6{word-spacing:-8.333131pt;}
.ws1a{word-spacing:-8.202187pt;}
.ws0{word-spacing:-8.056693pt;}
.ws9{word-spacing:-7.656587pt;}
.ws3{word-spacing:-7.583840pt;}
.ws20{word-spacing:-7.001867pt;}
.ws12{word-spacing:-6.638133pt;}
.ws21{word-spacing:0.000000pt;}
.wsd{word-spacing:6.917547pt;}
.wsb{word-spacing:96.195893pt;}
.ws18{word-spacing:96.197547pt;}
.ws15{word-spacing:116.037547pt;}
.wse{word-spacing:205.315893pt;}
.ws10{word-spacing:225.155893pt;}
.wsf{word-spacing:244.995893pt;}
.wsc{word-spacing:291.289227pt;}
.ws19{word-spacing:291.290880pt;}
.ws16{word-spacing:311.130880pt;}
.ws1e{word-spacing:321.042613pt;}
.ws1c{word-spacing:340.882613pt;}
.wsa{word-spacing:898.365120pt;}
._f{margin-left:-351.905387pt;}
._5{margin-left:-3.858880pt;}
._3{margin-left:-2.837120pt;}
._0{margin-left:-1.269760pt;}
._1{width:1.309440pt;}
._4{width:2.327893pt;}
._9{width:3.270293pt;}
._c{width:195.703413pt;}
._6{width:280.772373pt;}
._a{width:300.326347pt;}
._11{width:310.823360pt;}
._7{width:319.916693pt;}
._8{width:320.819413pt;}
._b{width:339.758347pt;}
._12{width:350.503360pt;}
._13{width:709.200640pt;}
._d{width:711.407840pt;}
._10{width:715.947893pt;}
._14{width:744.902720pt;}
._e{width:775.033067pt;}
._2{width:4449.287979pt;}
.fs2{font-size:26.453333pt;}
.fs1{font-size:36.373333pt;}
.fs0{font-size:39.680000pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:2.480013pt;}
.y12{bottom:3.306680pt;}
.ya{bottom:4.133347pt;}
.y1e{bottom:14.053347pt;}
.ye{bottom:14.880013pt;}
.y9{bottom:15.706680pt;}
.y7{bottom:18.186680pt;}
.y56{bottom:23.973347pt;}
.y35{bottom:25.626680pt;}
.y8{bottom:27.280013pt;}
.y6{bottom:29.760013pt;}
.y5{bottom:41.333347pt;}
.y4{bottom:52.906680pt;}
.y55{bottom:123.173347pt;}
.y1{bottom:166.213333pt;}
.y4b{bottom:263.706680pt;}
.y4a{bottom:275.280013pt;}
.y48{bottom:287.680013pt;}
.y47{bottom:299.253347pt;}
.y45{bottom:311.653347pt;}
.y54{bottom:327.413333pt;}
.y53{bottom:339.813333pt;}
.y43{bottom:347.200013pt;}
.y52{bottom:352.213333pt;}
.y41{bottom:359.600013pt;}
.y51{bottom:364.613333pt;}
.y40{bottom:371.173347pt;}
.y50{bottom:377.013333pt;}
.y3e{bottom:383.573347pt;}
.y4f{bottom:389.413333pt;}
.y3d{bottom:395.146680pt;}
.y4e{bottom:401.813333pt;}
.y3b{bottom:407.546680pt;}
.y4d{bottom:414.213333pt;}
.y3a{bottom:419.120013pt;}
.y4c{bottom:426.613333pt;}
.y38{bottom:431.520013pt;}
.y49{bottom:439.013333pt;}
.y46{bottom:462.986667pt;}
.y36{bottom:467.066680pt;}
.y44{bottom:486.960000pt;}
.y33{bottom:491.866680pt;}
.y32{bottom:503.440013pt;}
.y42{bottom:510.933333pt;}
.y30{bottom:515.840013pt;}
.y2f{bottom:527.413347pt;}
.y3f{bottom:534.906667pt;}
.y2d{bottom:539.813347pt;}
.y2c{bottom:551.386680pt;}
.y3c{bottom:558.880000pt;}
.y2a{bottom:563.786680pt;}
.y39{bottom:582.853333pt;}
.y28{bottom:599.333347pt;}
.y37{bottom:606.826667pt;}
.y26{bottom:611.733347pt;}
.y25{bottom:623.306680pt;}
.y34{bottom:630.800000pt;}
.y23{bottom:635.706680pt;}
.y22{bottom:647.280013pt;}
.y20{bottom:659.680013pt;}
.y31{bottom:667.173333pt;}
.y1f{bottom:671.253347pt;}
.y1c{bottom:683.653347pt;}
.y2e{bottom:691.146667pt;}
.y1a{bottom:695.226680pt;}
.y19{bottom:706.800013pt;}
.y2b{bottom:715.120000pt;}
.y17{bottom:719.200013pt;}
.y16{bottom:730.773347pt;}
.y29{bottom:739.093333pt;}
.y14{bottom:743.173347pt;}
.y13{bottom:754.746680pt;}
.y27{bottom:763.066667pt;}
.y10{bottom:767.146680pt;}
.y24{bottom:787.040000pt;}
.yc{bottom:791.120013pt;}
.yb{bottom:802.693347pt;}
.y21{bottom:811.013333pt;}
.y1d{bottom:834.986667pt;}
.y1b{bottom:858.960000pt;}
.y18{bottom:870.533333pt;}
.y2{bottom:876.266680pt;}
.y15{bottom:894.506667pt;}
.y11{bottom:918.480000pt;}
.yd{bottom:942.453333pt;}
.y3{bottom:978.000000pt;}
.h7{height:10.746667pt;}
.h9{height:11.573333pt;}
.ha{height:18.083333pt;}
.h6{height:23.146667pt;}
.h5{height:26.107813pt;}
.h4{height:26.409740pt;}
.h2{height:26.970000pt;}
.h8{height:35.546667pt;}
.h3{height:61.173333pt;}
.h1{height:885.360000pt;}
.h0{height:1122.666667pt;}
.w2{width:42.986667pt;}
.w3{width:47.946667pt;}
.w6{width:84.320000pt;}
.w4{width:186.000000pt;}
.w5{width:195.093333pt;}
.w1{width:1432.613333pt;}
.w0{width:1588.000000pt;}
.x0{left:0.000000pt;}
.x2{left:1.653333pt;}
.x7{left:3.306667pt;}
.x10{left:9.093333pt;}
.x8{left:10.746667pt;}
.xd{left:13.226667pt;}
.x1b{left:14.880000pt;}
.x6{left:18.186667pt;}
.x1{left:68.613333pt;}
.x23{left:72.746667pt;}
.x1e{left:77.706667pt;}
.x1f{left:86.800000pt;}
.x21{left:153.760000pt;}
.x22{left:266.186667pt;}
.x20{left:310.000000pt;}
.x3{left:349.680000pt;}
.x4{left:393.493333pt;}
.x5{left:437.306667pt;}
.xa{left:457.973333pt;}
.x9{left:481.120000pt;}
.xb{left:568.746667pt;}
.xc{left:617.520000pt;}
.xe{left:666.293333pt;}
.xf{left:715.066667pt;}
.x11{left:758.880000pt;}
.x12{left:807.653333pt;}
.x14{left:839.066667pt;}
.x13{left:851.466667pt;}
.x15{left:944.053333pt;}
.x16{left:992.826667pt;}
.x17{left:1036.640000pt;}
.x18{left:1085.413333pt;}
.x19{left:1129.226667pt;}
.x1a{left:1178.000000pt;}
.x1c{left:1221.813333pt;}
.x1d{left:1314.400000pt;}
}




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