
    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_e7351f5f91241f40475a1325.woff')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_10c7a9fa2dcdac35963f42fe.woff')format("woff");}.ff2{font-family:ff2;line-height:0.691406;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_11b11cdb8626119fc5d0079b.woff')format("woff");}.ff3{font-family:ff3;line-height:0.910645;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_a4b5f36b95349f0ff4d88de5.woff')format("woff");}.ff4{font-family:ff4;line-height:0.722656;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;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:50.832000px;}
.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;}
}
.wsa{word-spacing:-55.944000px;}
.ws0{word-spacing:-45.005400px;}
.ws1{word-spacing:-44.989800px;}
.ws2{word-spacing:-38.870100px;}
.ws35{word-spacing:-38.862000px;}
.ws41{word-spacing:-38.661000px;}
.ws38{word-spacing:-38.658600px;}
.ws3b{word-spacing:-38.653200px;}
.ws53{word-spacing:-38.645400px;}
.ws3f{word-spacing:-38.644200px;}
.ws4c{word-spacing:-38.641200px;}
.ws52{word-spacing:-38.446800px;}
.ws33{word-spacing:-38.442600px;}
.ws8{word-spacing:-38.440800px;}
.ws9{word-spacing:-38.438700px;}
.ws39{word-spacing:-38.436300px;}
.ws16{word-spacing:-38.434800px;}
.ws63{word-spacing:-38.433600px;}
.ws57{word-spacing:-38.426400px;}
.ws58{word-spacing:-38.359800px;}
.ws7{word-spacing:-38.160000px;}
.ws27{word-spacing:-38.157000px;}
.ws2d{word-spacing:-38.145600px;}
.ws32{word-spacing:-38.139600px;}
.ws50{word-spacing:-38.138400px;}
.ws37{word-spacing:-38.136600px;}
.ws17{word-spacing:-37.944000px;}
.ws51{word-spacing:-37.942200px;}
.ws44{word-spacing:-37.939200px;}
.ws34{word-spacing:-37.935000px;}
.ws13{word-spacing:-37.932900px;}
.ws49{word-spacing:-37.932300px;}
.ws5c{word-spacing:-37.931400px;}
.ws5a{word-spacing:-37.927800px;}
.ws6b{word-spacing:-37.922400px;}
.ws6{word-spacing:-37.921500px;}
.ws5e{word-spacing:-37.919100px;}
.ws1d{word-spacing:-37.722600px;}
.ws36{word-spacing:-37.440000px;}
.ws2f{word-spacing:-37.216800px;}
.ws30{word-spacing:-36.492300px;}
.ws61{word-spacing:-36.423000px;}
.ws43{word-spacing:-36.280800px;}
.ws5d{word-spacing:-35.783100px;}
.ws5{word-spacing:-35.515200px;}
.ws4{word-spacing:-35.413200px;}
.ws3c{word-spacing:-35.070000px;}
.ws29{word-spacing:-34.335000px;}
.ws19{word-spacing:-33.829200px;}
.ws3{word-spacing:-33.547800px;}
.ws2e{word-spacing:-33.397200px;}
.ws20{word-spacing:-33.395400px;}
.ws65{word-spacing:-33.040800px;}
.ws4e{word-spacing:-31.959600px;}
.ws6c{word-spacing:-31.456800px;}
.ws26{word-spacing:-31.455000px;}
.ws15{word-spacing:-31.453200px;}
.ws4b{word-spacing:-31.226400px;}
.wsf{word-spacing:-30.966000px;}
.ws48{word-spacing:-30.960000px;}
.ws14{word-spacing:-30.951900px;}
.ws2a{word-spacing:-30.949200px;}
.ws1b{word-spacing:-30.750000px;}
.ws60{word-spacing:-30.742200px;}
.ws47{word-spacing:-30.022200px;}
.ws40{word-spacing:-29.804400px;}
.ws4f{word-spacing:-29.291400px;}
.wse{word-spacing:-28.558200px;}
.ws5f{word-spacing:-27.856800px;}
.ws3a{word-spacing:-27.840000px;}
.ws1f{word-spacing:-27.133200px;}
.wsb{word-spacing:-25.901100px;}
.ws24{word-spacing:-25.695000px;}
.ws2b{word-spacing:-25.691400px;}
.wsc{word-spacing:-25.486800px;}
.ws67{word-spacing:-24.480000px;}
.ws1a{word-spacing:-24.270000px;}
.ws21{word-spacing:-24.031800px;}
.ws68{word-spacing:-23.535000px;}
.ws3d{word-spacing:-22.320000px;}
.ws1c{word-spacing:-22.084200px;}
.ws4a{word-spacing:-21.387300px;}
.wsd{word-spacing:-20.662200px;}
.ws5b{word-spacing:-20.649000px;}
.ws46{word-spacing:-19.708200px;}
.ws10{word-spacing:-19.440000px;}
.ws28{word-spacing:-18.710100px;}
.ws22{word-spacing:-18.003300px;}
.ws66{word-spacing:-17.270700px;}
.ws62{word-spacing:-17.063100px;}
.ws2c{word-spacing:-15.621300px;}
.ws31{word-spacing:-14.891400px;}
.ws42{word-spacing:-14.175000px;}
.ws25{word-spacing:-13.669200px;}
.ws45{word-spacing:-12.735000px;}
.ws4d{word-spacing:-12.013200px;}
.ws18{word-spacing:-11.797200px;}
.ws3e{word-spacing:-10.584000px;}
.ws6a{word-spacing:-10.574100px;}
.ws1e{word-spacing:-7.695600px;}
.ws56{word-spacing:-6.033000px;}
.ws23{word-spacing:-5.537400px;}
.ws64{word-spacing:-2.381100px;}
.ws59{word-spacing:-1.944000px;}
.ws69{word-spacing:-1.942200px;}
.ws54{word-spacing:0.000000px;}
.ws12{word-spacing:0.226800px;}
.ws6d{word-spacing:0.956700px;}
.ws55{word-spacing:3.090000px;}
.ws11{word-spacing:9.078300px;}
._0{margin-left:-1.110600px;}
._5{width:1.145700px;}
._4{width:17.133000px;}
._1{width:18.144000px;}
._10{width:19.294200px;}
._16{width:20.502300px;}
._17{width:21.912300px;}
._d{width:23.378400px;}
._19{width:25.181100px;}
._8{width:26.203200px;}
._18{width:27.210600px;}
._7{width:28.414200px;}
._12{width:30.262800px;}
._6{width:32.163900px;}
._e{width:33.374400px;}
._f{width:35.122500px;}
._2{width:36.560100px;}
._9{width:38.679900px;}
._1e{width:40.132800px;}
._15{width:41.469300px;}
._14{width:43.452900px;}
._b{width:45.216000px;}
._c{width:46.496700px;}
._11{width:49.815600px;}
._13{width:51.784500px;}
._1d{width:54.000000px;}
._1b{width:55.368000px;}
._1c{width:56.785500px;}
._23{width:58.185900px;}
._1a{width:60.222600px;}
._a{width:66.058500px;}
._1f{width:70.416000px;}
._20{width:71.424000px;}
._21{width:78.480000px;}
._22{width:79.560000px;}
._3{width:287.934000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:66.300000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.300000px;}
.y0{bottom:0.000000px;}
.y5{bottom:4.590000px;}
.y4{bottom:52.725000px;}
.y33{bottom:111.675000px;}
.y32{bottom:132.375000px;}
.y63{bottom:134.896500px;}
.y31{bottom:153.075000px;}
.y62{bottom:155.596500px;}
.y30{bottom:173.775000px;}
.y61{bottom:176.296500px;}
.y2f{bottom:194.475000px;}
.y60{bottom:196.996500px;}
.y2e{bottom:215.175000px;}
.y5f{bottom:217.696500px;}
.y2d{bottom:235.696500px;}
.y5e{bottom:238.215000px;}
.y2c{bottom:256.396500px;}
.y5d{bottom:258.915000px;}
.y2b{bottom:277.096500px;}
.y5c{bottom:279.615000px;}
.y2a{bottom:297.795000px;}
.y5b{bottom:300.315000px;}
.y29{bottom:318.496500px;}
.y5a{bottom:321.015000px;}
.y28{bottom:339.196500px;}
.y59{bottom:341.715000px;}
.y27{bottom:359.896500px;}
.y58{bottom:362.415000px;}
.y26{bottom:380.596500px;}
.y57{bottom:383.115000px;}
.y25{bottom:401.295000px;}
.y56{bottom:403.815000px;}
.y24{bottom:421.996500px;}
.y55{bottom:424.515000px;}
.y23{bottom:442.696500px;}
.y54{bottom:445.215000px;}
.y22{bottom:463.396500px;}
.y53{bottom:465.915000px;}
.y21{bottom:484.096500px;}
.y52{bottom:486.615000px;}
.y20{bottom:504.796500px;}
.y51{bottom:507.315000px;}
.y1f{bottom:525.496500px;}
.y50{bottom:528.015000px;}
.y1e{bottom:546.195000px;}
.y4f{bottom:548.715000px;}
.y1d{bottom:566.896500px;}
.y4e{bottom:569.415000px;}
.y1c{bottom:587.596500px;}
.y4d{bottom:590.115000px;}
.y1b{bottom:608.295000px;}
.y4c{bottom:610.815000px;}
.y1a{bottom:628.996500px;}
.y4b{bottom:631.515000px;}
.y19{bottom:649.695000px;}
.y4a{bottom:652.215000px;}
.y18{bottom:670.396500px;}
.y49{bottom:672.915000px;}
.y17{bottom:691.096500px;}
.y48{bottom:693.615000px;}
.y16{bottom:711.795000px;}
.y47{bottom:714.315000px;}
.y46{bottom:735.015000px;}
.y45{bottom:755.715000px;}
.y15{bottom:768.315000px;}
.y44{bottom:776.415000px;}
.y14{bottom:789.015000px;}
.y43{bottom:797.115000px;}
.y13{bottom:809.715000px;}
.y6e{bottom:817.815000px;}
.y12{bottom:830.415000px;}
.y42{bottom:832.936500px;}
.y6d{bottom:838.515000px;}
.y11{bottom:851.115000px;}
.y41{bottom:853.636500px;}
.y6c{bottom:859.215000px;}
.y10{bottom:871.815000px;}
.y40{bottom:874.336500px;}
.y6b{bottom:879.915000px;}
.yf{bottom:892.515000px;}
.y3f{bottom:895.036500px;}
.y6a{bottom:900.615000px;}
.ye{bottom:913.215000px;}
.y3e{bottom:915.736500px;}
.y69{bottom:921.315000px;}
.yd{bottom:933.915000px;}
.y3d{bottom:936.436500px;}
.y68{bottom:942.015000px;}
.yc{bottom:954.615000px;}
.y3c{bottom:957.136500px;}
.y67{bottom:962.715000px;}
.y3b{bottom:977.836500px;}
.y66{bottom:983.415000px;}
.yb{bottom:996.015000px;}
.y65{bottom:1004.115000px;}
.y3a{bottom:1013.475000px;}
.ya{bottom:1016.715000px;}
.y39{bottom:1034.175000px;}
.y9{bottom:1037.415000px;}
.y64{bottom:1039.936500px;}
.y38{bottom:1054.875000px;}
.y8{bottom:1058.115000px;}
.y37{bottom:1075.575000px;}
.y36{bottom:1096.275000px;}
.y35{bottom:1116.975000px;}
.y7{bottom:1120.215000px;}
.y34{bottom:1137.675000px;}
.y6{bottom:1139.115000px;}
.y3{bottom:1176.555000px;}
.y2{bottom:1197.975000px;}
.y1{bottom:1221.915000px;}
.h4{height:20.175000px;}
.h6{height:44.933789px;}
.h5{height:45.225146px;}
.h3{height:48.796875px;}
.h7{height:50.027344px;}
.h8{height:52.031250px;}
.h2{height:57.133008px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:16.725000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:127.620000px;}
.x3{left:145.620000px;}
.x5{left:147.238500px;}
.xc{left:154.620000px;}
.x2{left:159.838500px;}
.x1{left:163.080000px;}
.x6{left:171.000000px;}
.x4{left:470.025000px;}
.xa{left:555.660000px;}
.x8{left:603.720000px;}
.x9{left:627.660000px;}
.x7{left:641.700000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:45.184000pt;}
.wsa{word-spacing:-49.728000pt;}
.ws0{word-spacing:-40.004800pt;}
.ws1{word-spacing:-39.990933pt;}
.ws2{word-spacing:-34.551200pt;}
.ws35{word-spacing:-34.544000pt;}
.ws41{word-spacing:-34.365333pt;}
.ws38{word-spacing:-34.363200pt;}
.ws3b{word-spacing:-34.358400pt;}
.ws53{word-spacing:-34.351467pt;}
.ws3f{word-spacing:-34.350400pt;}
.ws4c{word-spacing:-34.347733pt;}
.ws52{word-spacing:-34.174933pt;}
.ws33{word-spacing:-34.171200pt;}
.ws8{word-spacing:-34.169600pt;}
.ws9{word-spacing:-34.167733pt;}
.ws39{word-spacing:-34.165600pt;}
.ws16{word-spacing:-34.164267pt;}
.ws63{word-spacing:-34.163200pt;}
.ws57{word-spacing:-34.156800pt;}
.ws58{word-spacing:-34.097600pt;}
.ws7{word-spacing:-33.920000pt;}
.ws27{word-spacing:-33.917333pt;}
.ws2d{word-spacing:-33.907200pt;}
.ws32{word-spacing:-33.901867pt;}
.ws50{word-spacing:-33.900800pt;}
.ws37{word-spacing:-33.899200pt;}
.ws17{word-spacing:-33.728000pt;}
.ws51{word-spacing:-33.726400pt;}
.ws44{word-spacing:-33.723733pt;}
.ws34{word-spacing:-33.720000pt;}
.ws13{word-spacing:-33.718133pt;}
.ws49{word-spacing:-33.717600pt;}
.ws5c{word-spacing:-33.716800pt;}
.ws5a{word-spacing:-33.713600pt;}
.ws6b{word-spacing:-33.708800pt;}
.ws6{word-spacing:-33.708000pt;}
.ws5e{word-spacing:-33.705867pt;}
.ws1d{word-spacing:-33.531200pt;}
.ws36{word-spacing:-33.280000pt;}
.ws2f{word-spacing:-33.081600pt;}
.ws30{word-spacing:-32.437600pt;}
.ws61{word-spacing:-32.376000pt;}
.ws43{word-spacing:-32.249600pt;}
.ws5d{word-spacing:-31.807200pt;}
.ws5{word-spacing:-31.569067pt;}
.ws4{word-spacing:-31.478400pt;}
.ws3c{word-spacing:-31.173333pt;}
.ws29{word-spacing:-30.520000pt;}
.ws19{word-spacing:-30.070400pt;}
.ws3{word-spacing:-29.820267pt;}
.ws2e{word-spacing:-29.686400pt;}
.ws20{word-spacing:-29.684800pt;}
.ws65{word-spacing:-29.369600pt;}
.ws4e{word-spacing:-28.408533pt;}
.ws6c{word-spacing:-27.961600pt;}
.ws26{word-spacing:-27.960000pt;}
.ws15{word-spacing:-27.958400pt;}
.ws4b{word-spacing:-27.756800pt;}
.wsf{word-spacing:-27.525333pt;}
.ws48{word-spacing:-27.520000pt;}
.ws14{word-spacing:-27.512800pt;}
.ws2a{word-spacing:-27.510400pt;}
.ws1b{word-spacing:-27.333333pt;}
.ws60{word-spacing:-27.326400pt;}
.ws47{word-spacing:-26.686400pt;}
.ws40{word-spacing:-26.492800pt;}
.ws4f{word-spacing:-26.036800pt;}
.wse{word-spacing:-25.385067pt;}
.ws5f{word-spacing:-24.761600pt;}
.ws3a{word-spacing:-24.746667pt;}
.ws1f{word-spacing:-24.118400pt;}
.wsb{word-spacing:-23.023200pt;}
.ws24{word-spacing:-22.840000pt;}
.ws2b{word-spacing:-22.836800pt;}
.wsc{word-spacing:-22.654933pt;}
.ws67{word-spacing:-21.760000pt;}
.ws1a{word-spacing:-21.573333pt;}
.ws21{word-spacing:-21.361600pt;}
.ws68{word-spacing:-20.920000pt;}
.ws3d{word-spacing:-19.840000pt;}
.ws1c{word-spacing:-19.630400pt;}
.ws4a{word-spacing:-19.010933pt;}
.wsd{word-spacing:-18.366400pt;}
.ws5b{word-spacing:-18.354667pt;}
.ws46{word-spacing:-17.518400pt;}
.ws10{word-spacing:-17.280000pt;}
.ws28{word-spacing:-16.631200pt;}
.ws22{word-spacing:-16.002933pt;}
.ws66{word-spacing:-15.351733pt;}
.ws62{word-spacing:-15.167200pt;}
.ws2c{word-spacing:-13.885600pt;}
.ws31{word-spacing:-13.236800pt;}
.ws42{word-spacing:-12.600000pt;}
.ws25{word-spacing:-12.150400pt;}
.ws45{word-spacing:-11.320000pt;}
.ws4d{word-spacing:-10.678400pt;}
.ws18{word-spacing:-10.486400pt;}
.ws3e{word-spacing:-9.408000pt;}
.ws6a{word-spacing:-9.399200pt;}
.ws1e{word-spacing:-6.840533pt;}
.ws56{word-spacing:-5.362667pt;}
.ws23{word-spacing:-4.922133pt;}
.ws64{word-spacing:-2.116533pt;}
.ws59{word-spacing:-1.728000pt;}
.ws69{word-spacing:-1.726400pt;}
.ws54{word-spacing:0.000000pt;}
.ws12{word-spacing:0.201600pt;}
.ws6d{word-spacing:0.850400pt;}
.ws55{word-spacing:2.746667pt;}
.ws11{word-spacing:8.069600pt;}
._0{margin-left:-0.987200pt;}
._5{width:1.018400pt;}
._4{width:15.229333pt;}
._1{width:16.128000pt;}
._10{width:17.150400pt;}
._16{width:18.224267pt;}
._17{width:19.477600pt;}
._d{width:20.780800pt;}
._19{width:22.383200pt;}
._8{width:23.291733pt;}
._18{width:24.187200pt;}
._7{width:25.257067pt;}
._12{width:26.900267pt;}
._6{width:28.590133pt;}
._e{width:29.666133pt;}
._f{width:31.220000pt;}
._2{width:32.497867pt;}
._9{width:34.382133pt;}
._1e{width:35.673600pt;}
._15{width:36.861600pt;}
._14{width:38.624800pt;}
._b{width:40.192000pt;}
._c{width:41.330400pt;}
._11{width:44.280533pt;}
._13{width:46.030667pt;}
._1d{width:48.000000pt;}
._1b{width:49.216000pt;}
._1c{width:50.476000pt;}
._23{width:51.720800pt;}
._1a{width:53.531200pt;}
._a{width:58.718667pt;}
._1f{width:62.592000pt;}
._20{width:63.488000pt;}
._21{width:69.760000pt;}
._22{width:70.720000pt;}
._3{width:255.941333pt;}
.fs2{font-size:58.933333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.933333pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:4.080000pt;}
.y4{bottom:46.866667pt;}
.y33{bottom:99.266667pt;}
.y32{bottom:117.666667pt;}
.y63{bottom:119.908000pt;}
.y31{bottom:136.066667pt;}
.y62{bottom:138.308000pt;}
.y30{bottom:154.466667pt;}
.y61{bottom:156.708000pt;}
.y2f{bottom:172.866667pt;}
.y60{bottom:175.108000pt;}
.y2e{bottom:191.266667pt;}
.y5f{bottom:193.508000pt;}
.y2d{bottom:209.508000pt;}
.y5e{bottom:211.746667pt;}
.y2c{bottom:227.908000pt;}
.y5d{bottom:230.146667pt;}
.y2b{bottom:246.308000pt;}
.y5c{bottom:248.546667pt;}
.y2a{bottom:264.706667pt;}
.y5b{bottom:266.946667pt;}
.y29{bottom:283.108000pt;}
.y5a{bottom:285.346667pt;}
.y28{bottom:301.508000pt;}
.y59{bottom:303.746667pt;}
.y27{bottom:319.908000pt;}
.y58{bottom:322.146667pt;}
.y26{bottom:338.308000pt;}
.y57{bottom:340.546667pt;}
.y25{bottom:356.706667pt;}
.y56{bottom:358.946667pt;}
.y24{bottom:375.108000pt;}
.y55{bottom:377.346667pt;}
.y23{bottom:393.508000pt;}
.y54{bottom:395.746667pt;}
.y22{bottom:411.908000pt;}
.y53{bottom:414.146667pt;}
.y21{bottom:430.308000pt;}
.y52{bottom:432.546667pt;}
.y20{bottom:448.708000pt;}
.y51{bottom:450.946667pt;}
.y1f{bottom:467.108000pt;}
.y50{bottom:469.346667pt;}
.y1e{bottom:485.506667pt;}
.y4f{bottom:487.746667pt;}
.y1d{bottom:503.908000pt;}
.y4e{bottom:506.146667pt;}
.y1c{bottom:522.308000pt;}
.y4d{bottom:524.546667pt;}
.y1b{bottom:540.706667pt;}
.y4c{bottom:542.946667pt;}
.y1a{bottom:559.108000pt;}
.y4b{bottom:561.346667pt;}
.y19{bottom:577.506667pt;}
.y4a{bottom:579.746667pt;}
.y18{bottom:595.908000pt;}
.y49{bottom:598.146667pt;}
.y17{bottom:614.308000pt;}
.y48{bottom:616.546667pt;}
.y16{bottom:632.706667pt;}
.y47{bottom:634.946667pt;}
.y46{bottom:653.346667pt;}
.y45{bottom:671.746667pt;}
.y15{bottom:682.946667pt;}
.y44{bottom:690.146667pt;}
.y14{bottom:701.346667pt;}
.y43{bottom:708.546667pt;}
.y13{bottom:719.746667pt;}
.y6e{bottom:726.946667pt;}
.y12{bottom:738.146667pt;}
.y42{bottom:740.388000pt;}
.y6d{bottom:745.346667pt;}
.y11{bottom:756.546667pt;}
.y41{bottom:758.788000pt;}
.y6c{bottom:763.746667pt;}
.y10{bottom:774.946667pt;}
.y40{bottom:777.188000pt;}
.y6b{bottom:782.146667pt;}
.yf{bottom:793.346667pt;}
.y3f{bottom:795.588000pt;}
.y6a{bottom:800.546667pt;}
.ye{bottom:811.746667pt;}
.y3e{bottom:813.988000pt;}
.y69{bottom:818.946667pt;}
.yd{bottom:830.146667pt;}
.y3d{bottom:832.388000pt;}
.y68{bottom:837.346667pt;}
.yc{bottom:848.546667pt;}
.y3c{bottom:850.788000pt;}
.y67{bottom:855.746667pt;}
.y3b{bottom:869.188000pt;}
.y66{bottom:874.146667pt;}
.yb{bottom:885.346667pt;}
.y65{bottom:892.546667pt;}
.y3a{bottom:900.866667pt;}
.ya{bottom:903.746667pt;}
.y39{bottom:919.266667pt;}
.y9{bottom:922.146667pt;}
.y64{bottom:924.388000pt;}
.y38{bottom:937.666667pt;}
.y8{bottom:940.546667pt;}
.y37{bottom:956.066667pt;}
.y36{bottom:974.466667pt;}
.y35{bottom:992.866667pt;}
.y7{bottom:995.746667pt;}
.y34{bottom:1011.266667pt;}
.y6{bottom:1012.546667pt;}
.y3{bottom:1045.826667pt;}
.y2{bottom:1064.866667pt;}
.y1{bottom:1086.146667pt;}
.h4{height:17.933333pt;}
.h6{height:39.941146pt;}
.h5{height:40.200130pt;}
.h3{height:43.375000pt;}
.h7{height:44.468750pt;}
.h8{height:46.250000pt;}
.h2{height:50.784896pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:14.866667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:113.440000pt;}
.x3{left:129.440000pt;}
.x5{left:130.878667pt;}
.xc{left:137.440000pt;}
.x2{left:142.078667pt;}
.x1{left:144.960000pt;}
.x6{left:152.000000pt;}
.x4{left:417.800000pt;}
.xa{left:493.920000pt;}
.x8{left:536.640000pt;}
.x9{left:557.920000pt;}
.x7{left:570.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; }
  