
    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_902435fcd2a533f9e5f940b4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.939453;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_961e411d2b2106eaece7ee6c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.113281;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_34330271dbd42fb725d88872.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.939453;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:-6.216000px;}
.ls1{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-23.352000px;}
.ws37{word-spacing:-18.348000px;}
.ws0{word-spacing:-17.136000px;}
.ws42{word-spacing:-5.016000px;}
.ws14{word-spacing:-4.488000px;}
.ws4{word-spacing:-4.026000px;}
.ws18{word-spacing:-3.432000px;}
.ws1a{word-spacing:-2.772000px;}
.ws36{word-spacing:-2.574000px;}
.ws44{word-spacing:-2.310000px;}
.ws4c{word-spacing:-2.112000px;}
.ws3{word-spacing:-2.046000px;}
.ws4e{word-spacing:-1.914000px;}
.ws19{word-spacing:-1.848000px;}
.ws43{word-spacing:-1.782000px;}
.ws2b{word-spacing:-1.452000px;}
.ws2e{word-spacing:-1.320000px;}
.ws41{word-spacing:-1.188000px;}
.ws1b{word-spacing:-1.056000px;}
.wsf{word-spacing:-0.990000px;}
.ws16{word-spacing:-0.792000px;}
.ws48{word-spacing:-0.660000px;}
.ws6{word-spacing:-0.462000px;}
.ws15{word-spacing:-0.396000px;}
.ws1d{word-spacing:-0.264000px;}
.ws2{word-spacing:0.000000px;}
.ws21{word-spacing:0.198000px;}
.ws4b{word-spacing:0.264000px;}
.wsd{word-spacing:0.660000px;}
.ws49{word-spacing:0.990000px;}
.ws1e{word-spacing:1.056000px;}
.wsa{word-spacing:1.452000px;}
.ws2a{word-spacing:1.584000px;}
.ws50{word-spacing:1.716000px;}
.wse{word-spacing:1.782000px;}
.ws3b{word-spacing:1.848000px;}
.ws29{word-spacing:2.046000px;}
.ws3d{word-spacing:2.244000px;}
.ws32{word-spacing:2.310000px;}
.ws13{word-spacing:2.508000px;}
.ws9{word-spacing:2.706000px;}
.ws8{word-spacing:2.838000px;}
.ws4a{word-spacing:2.904000px;}
.ws35{word-spacing:3.300000px;}
.ws3f{word-spacing:3.432000px;}
.ws17{word-spacing:3.894000px;}
.ws40{word-spacing:4.356000px;}
.ws26{word-spacing:4.422000px;}
.ws2d{word-spacing:4.554000px;}
.ws2f{word-spacing:4.620000px;}
.ws46{word-spacing:4.950000px;}
.ws4f{word-spacing:5.148000px;}
.ws28{word-spacing:5.478000px;}
.wsc{word-spacing:6.204000px;}
.ws3e{word-spacing:6.270000px;}
.ws1c{word-spacing:6.402000px;}
.ws7{word-spacing:6.534000px;}
.ws20{word-spacing:6.996000px;}
.ws30{word-spacing:7.062000px;}
.ws2c{word-spacing:7.524000px;}
.ws5{word-spacing:7.788000px;}
.ws38{word-spacing:8.712000px;}
.ws12{word-spacing:8.844000px;}
.ws39{word-spacing:9.108000px;}
.ws24{word-spacing:9.372000px;}
.ws11{word-spacing:9.438000px;}
.ws22{word-spacing:9.834000px;}
.ws4d{word-spacing:10.032000px;}
.ws31{word-spacing:10.626000px;}
.ws10{word-spacing:10.692000px;}
.ws34{word-spacing:11.748000px;}
.ws33{word-spacing:11.880000px;}
.ws45{word-spacing:11.946000px;}
.ws3a{word-spacing:13.200000px;}
.ws27{word-spacing:13.332000px;}
.ws47{word-spacing:13.728000px;}
.ws1f{word-spacing:15.048000px;}
.ws23{word-spacing:15.840000px;}
.wsb{word-spacing:17.622000px;}
.ws25{word-spacing:19.404000px;}
.ws3c{word-spacing:20.856000px;}
._1{margin-left:-7.686000px;}
._2{margin-left:-6.207600px;}
._5{margin-left:-4.302000px;}
._3{margin-left:-3.116400px;}
._4{margin-left:-1.503600px;}
._9{width:2.098800px;}
._6{width:3.366000px;}
._7{width:4.560600px;}
._0{width:6.232800px;}
._b{width:7.858200px;}
._8{width:9.127800px;}
._a{width:11.246400px;}
._c{width:12.790800px;}
._e{width:14.678400px;}
._d{width:23.845800px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs1{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y53{bottom:86.255250px;}
.y31{bottom:90.507150px;}
.y86{bottom:102.465900px;}
.y52{bottom:105.005250px;}
.y30{bottom:109.257300px;}
.y85{bottom:121.215900px;}
.y51{bottom:123.755250px;}
.y2f{bottom:128.007300px;}
.y84{bottom:139.965900px;}
.y50{bottom:142.505250px;}
.y2e{bottom:146.757300px;}
.y83{bottom:158.715900px;}
.y4f{bottom:161.255250px;}
.y2d{bottom:165.507300px;}
.y4e{bottom:180.005250px;}
.y82{bottom:181.717950px;}
.y2c{bottom:184.257300px;}
.y4d{bottom:198.755250px;}
.y81{bottom:200.467950px;}
.y2b{bottom:203.007300px;}
.y4c{bottom:217.505250px;}
.y80{bottom:219.217950px;}
.y2a{bottom:221.757300px;}
.y4b{bottom:236.255250px;}
.y7f{bottom:237.967950px;}
.y29{bottom:240.507300px;}
.y4a{bottom:255.005250px;}
.y7e{bottom:256.717950px;}
.y28{bottom:263.509200px;}
.y49{bottom:273.755250px;}
.y7d{bottom:275.467950px;}
.y27{bottom:282.259200px;}
.y7c{bottom:294.217950px;}
.y48{bottom:296.757300px;}
.y26{bottom:301.009200px;}
.y47{bottom:315.507300px;}
.y7b{bottom:317.219850px;}
.y25{bottom:319.759200px;}
.y46{bottom:334.257300px;}
.y7a{bottom:335.969850px;}
.y24{bottom:338.509200px;}
.y45{bottom:353.007300px;}
.y79{bottom:354.719850px;}
.y23{bottom:357.259200px;}
.y44{bottom:371.757300px;}
.y22{bottom:376.009200px;}
.y78{bottom:377.721900px;}
.y43{bottom:390.507300px;}
.y21{bottom:394.759200px;}
.y77{bottom:396.471900px;}
.y42{bottom:409.257300px;}
.y20{bottom:413.509200px;}
.y76{bottom:415.221900px;}
.y41{bottom:428.007300px;}
.y1f{bottom:432.259200px;}
.y75{bottom:433.971900px;}
.y40{bottom:446.757300px;}
.y1e{bottom:451.009200px;}
.y74{bottom:456.973800px;}
.y3f{bottom:465.507300px;}
.y1d{bottom:469.759200px;}
.y73{bottom:475.723800px;}
.y3e{bottom:484.257150px;}
.y1c{bottom:488.509200px;}
.y72{bottom:494.473800px;}
.y3d{bottom:503.007150px;}
.y1b{bottom:507.259200px;}
.y71{bottom:513.223800px;}
.y1a{bottom:526.009200px;}
.y70{bottom:531.973800px;}
.y19{bottom:544.759200px;}
.y6f{bottom:550.723800px;}
.y18{bottom:563.509200px;}
.y6e{bottom:573.725850px;}
.y3c{bottom:582.259200px;}
.y17{bottom:586.511100px;}
.y6d{bottom:592.475850px;}
.y3b{bottom:601.009200px;}
.y16{bottom:605.261100px;}
.y6c{bottom:611.225850px;}
.y3a{bottom:619.759200px;}
.y15{bottom:624.011100px;}
.y96{bottom:627.229050px;}
.y6b{bottom:629.975850px;}
.y39{bottom:638.509200px;}
.y14{bottom:642.761100px;}
.y6a{bottom:648.725850px;}
.y95{bottom:650.231100px;}
.y38{bottom:657.259200px;}
.y13{bottom:661.511100px;}
.y69{bottom:667.475850px;}
.y94{bottom:673.233150px;}
.y37{bottom:676.009200px;}
.y12{bottom:680.261100px;}
.y68{bottom:686.225850px;}
.y36{bottom:694.759200px;}
.y93{bottom:696.235050px;}
.y11{bottom:699.011100px;}
.y67{bottom:709.227750px;}
.y35{bottom:713.509200px;}
.y10{bottom:717.761100px;}
.y92{bottom:719.236950px;}
.y66{bottom:727.977750px;}
.y34{bottom:732.259200px;}
.yf{bottom:736.511100px;}
.y91{bottom:742.239000px;}
.y65{bottom:746.727750px;}
.y33{bottom:751.009200px;}
.ye{bottom:755.261100px;}
.y64{bottom:765.477750px;}
.y32{bottom:769.759200px;}
.yd{bottom:774.011100px;}
.y63{bottom:784.227750px;}
.y90{bottom:788.242800px;}
.yc{bottom:792.761100px;}
.y62{bottom:802.977750px;}
.y8f{bottom:811.245000px;}
.yb{bottom:811.511100px;}
.y61{bottom:821.727750px;}
.ya{bottom:830.261100px;}
.y8e{bottom:834.246900px;}
.y60{bottom:840.477750px;}
.y9{bottom:849.011100px;}
.y8d{bottom:857.248800px;}
.y5f{bottom:863.479650px;}
.y8c{bottom:880.250850px;}
.y5e{bottom:882.229650px;}
.y5{bottom:887.050050px;}
.y5d{bottom:900.979650px;}
.y8b{bottom:903.252750px;}
.y5c{bottom:919.729650px;}
.y4{bottom:920.050050px;}
.y8a{bottom:926.254800px;}
.y5b{bottom:938.479650px;}
.y3{bottom:953.050050px;}
.y5a{bottom:957.229650px;}
.y59{bottom:975.979650px;}
.y89{bottom:980.231700px;}
.y2{bottom:986.050050px;}
.y58{bottom:994.729650px;}
.y88{bottom:998.981700px;}
.y57{bottom:1013.479650px;}
.y87{bottom:1017.731700px;}
.y8{bottom:1023.323700px;}
.y56{bottom:1036.481700px;}
.y7{bottom:1039.823700px;}
.y55{bottom:1055.231700px;}
.y6{bottom:1056.323700px;}
.y54{bottom:1108.294050px;}
.y1{bottom:1109.357100px;}
.h5{height:43.740234px;}
.h6{height:48.114258px;}
.h4{height:54.169922px;}
.h7{height:59.586914px;}
.h2{height:61.236328px;}
.h3{height:75.837891px;}
.h1{height:1194.750000px;}
.h0{height:1194.802500px;}
.w1{width:935.250000px;}
.w0{width:935.433000px;}
.x0{left:0.000000px;}
.x1{left:85.039350px;}
.x9{left:106.299300px;}
.x3{left:141.057900px;}
.x4{left:158.756100px;}
.x5{left:376.902900px;}
.x2{left:424.337400px;}
.xa{left:476.716500px;}
.xb{left:497.976450px;}
.x7{left:508.762800px;}
.x8{left:538.704300px;}
.xf{left:545.925150px;}
.x16{left:552.330300px;}
.x12{left:568.781850px;}
.x15{left:570.634950px;}
.xe{left:615.591000px;}
.x14{left:634.322700px;}
.x10{left:659.612400px;}
.xd{left:662.392050px;}
.x13{left:676.821450px;}
.x11{left:696.318450px;}
.x6{left:775.393650px;}
.xc{left:816.914700px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:-5.525333pt;}
.ls1{letter-spacing:0.000000pt;}
.ws1{word-spacing:-20.757333pt;}
.ws37{word-spacing:-16.309333pt;}
.ws0{word-spacing:-15.232000pt;}
.ws42{word-spacing:-4.458667pt;}
.ws14{word-spacing:-3.989333pt;}
.ws4{word-spacing:-3.578667pt;}
.ws18{word-spacing:-3.050667pt;}
.ws1a{word-spacing:-2.464000pt;}
.ws36{word-spacing:-2.288000pt;}
.ws44{word-spacing:-2.053333pt;}
.ws4c{word-spacing:-1.877333pt;}
.ws3{word-spacing:-1.818667pt;}
.ws4e{word-spacing:-1.701333pt;}
.ws19{word-spacing:-1.642667pt;}
.ws43{word-spacing:-1.584000pt;}
.ws2b{word-spacing:-1.290667pt;}
.ws2e{word-spacing:-1.173333pt;}
.ws41{word-spacing:-1.056000pt;}
.ws1b{word-spacing:-0.938667pt;}
.wsf{word-spacing:-0.880000pt;}
.ws16{word-spacing:-0.704000pt;}
.ws48{word-spacing:-0.586667pt;}
.ws6{word-spacing:-0.410667pt;}
.ws15{word-spacing:-0.352000pt;}
.ws1d{word-spacing:-0.234667pt;}
.ws2{word-spacing:0.000000pt;}
.ws21{word-spacing:0.176000pt;}
.ws4b{word-spacing:0.234667pt;}
.wsd{word-spacing:0.586667pt;}
.ws49{word-spacing:0.880000pt;}
.ws1e{word-spacing:0.938667pt;}
.wsa{word-spacing:1.290667pt;}
.ws2a{word-spacing:1.408000pt;}
.ws50{word-spacing:1.525333pt;}
.wse{word-spacing:1.584000pt;}
.ws3b{word-spacing:1.642667pt;}
.ws29{word-spacing:1.818667pt;}
.ws3d{word-spacing:1.994667pt;}
.ws32{word-spacing:2.053333pt;}
.ws13{word-spacing:2.229333pt;}
.ws9{word-spacing:2.405333pt;}
.ws8{word-spacing:2.522667pt;}
.ws4a{word-spacing:2.581333pt;}
.ws35{word-spacing:2.933333pt;}
.ws3f{word-spacing:3.050667pt;}
.ws17{word-spacing:3.461333pt;}
.ws40{word-spacing:3.872000pt;}
.ws26{word-spacing:3.930667pt;}
.ws2d{word-spacing:4.048000pt;}
.ws2f{word-spacing:4.106667pt;}
.ws46{word-spacing:4.400000pt;}
.ws4f{word-spacing:4.576000pt;}
.ws28{word-spacing:4.869333pt;}
.wsc{word-spacing:5.514667pt;}
.ws3e{word-spacing:5.573333pt;}
.ws1c{word-spacing:5.690667pt;}
.ws7{word-spacing:5.808000pt;}
.ws20{word-spacing:6.218667pt;}
.ws30{word-spacing:6.277333pt;}
.ws2c{word-spacing:6.688000pt;}
.ws5{word-spacing:6.922667pt;}
.ws38{word-spacing:7.744000pt;}
.ws12{word-spacing:7.861333pt;}
.ws39{word-spacing:8.096000pt;}
.ws24{word-spacing:8.330667pt;}
.ws11{word-spacing:8.389333pt;}
.ws22{word-spacing:8.741333pt;}
.ws4d{word-spacing:8.917333pt;}
.ws31{word-spacing:9.445333pt;}
.ws10{word-spacing:9.504000pt;}
.ws34{word-spacing:10.442667pt;}
.ws33{word-spacing:10.560000pt;}
.ws45{word-spacing:10.618667pt;}
.ws3a{word-spacing:11.733333pt;}
.ws27{word-spacing:11.850667pt;}
.ws47{word-spacing:12.202667pt;}
.ws1f{word-spacing:13.376000pt;}
.ws23{word-spacing:14.080000pt;}
.wsb{word-spacing:15.664000pt;}
.ws25{word-spacing:17.248000pt;}
.ws3c{word-spacing:18.538667pt;}
._1{margin-left:-6.832000pt;}
._2{margin-left:-5.517867pt;}
._5{margin-left:-3.824000pt;}
._3{margin-left:-2.770133pt;}
._4{margin-left:-1.336533pt;}
._9{width:1.865600pt;}
._6{width:2.992000pt;}
._7{width:4.053867pt;}
._0{width:5.540267pt;}
._b{width:6.985067pt;}
._8{width:8.113600pt;}
._a{width:9.996800pt;}
._c{width:11.369600pt;}
._e{width:13.047467pt;}
._d{width:21.196267pt;}
.fs1{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y53{bottom:76.671333pt;}
.y31{bottom:80.450800pt;}
.y86{bottom:91.080800pt;}
.y52{bottom:93.338000pt;}
.y30{bottom:97.117600pt;}
.y85{bottom:107.747467pt;}
.y51{bottom:110.004667pt;}
.y2f{bottom:113.784267pt;}
.y84{bottom:124.414133pt;}
.y50{bottom:126.671333pt;}
.y2e{bottom:130.450933pt;}
.y83{bottom:141.080800pt;}
.y4f{bottom:143.338000pt;}
.y2d{bottom:147.117600pt;}
.y4e{bottom:160.004667pt;}
.y82{bottom:161.527067pt;}
.y2c{bottom:163.784267pt;}
.y4d{bottom:176.671333pt;}
.y81{bottom:178.193733pt;}
.y2b{bottom:180.450933pt;}
.y4c{bottom:193.338000pt;}
.y80{bottom:194.860400pt;}
.y2a{bottom:197.117600pt;}
.y4b{bottom:210.004667pt;}
.y7f{bottom:211.527067pt;}
.y29{bottom:213.784267pt;}
.y4a{bottom:226.671333pt;}
.y7e{bottom:228.193733pt;}
.y28{bottom:234.230400pt;}
.y49{bottom:243.338000pt;}
.y7d{bottom:244.860400pt;}
.y27{bottom:250.897067pt;}
.y7c{bottom:261.527067pt;}
.y48{bottom:263.784267pt;}
.y26{bottom:267.563733pt;}
.y47{bottom:280.450933pt;}
.y7b{bottom:281.973200pt;}
.y25{bottom:284.230400pt;}
.y46{bottom:297.117600pt;}
.y7a{bottom:298.639867pt;}
.y24{bottom:300.897067pt;}
.y45{bottom:313.784267pt;}
.y79{bottom:315.306533pt;}
.y23{bottom:317.563733pt;}
.y44{bottom:330.450933pt;}
.y22{bottom:334.230400pt;}
.y78{bottom:335.752800pt;}
.y43{bottom:347.117600pt;}
.y21{bottom:350.897067pt;}
.y77{bottom:352.419467pt;}
.y42{bottom:363.784267pt;}
.y20{bottom:367.563733pt;}
.y76{bottom:369.086133pt;}
.y41{bottom:380.450933pt;}
.y1f{bottom:384.230400pt;}
.y75{bottom:385.752800pt;}
.y40{bottom:397.117600pt;}
.y1e{bottom:400.897067pt;}
.y74{bottom:406.198933pt;}
.y3f{bottom:413.784267pt;}
.y1d{bottom:417.563733pt;}
.y73{bottom:422.865600pt;}
.y3e{bottom:430.450800pt;}
.y1c{bottom:434.230400pt;}
.y72{bottom:439.532267pt;}
.y3d{bottom:447.117467pt;}
.y1b{bottom:450.897067pt;}
.y71{bottom:456.198933pt;}
.y1a{bottom:467.563733pt;}
.y70{bottom:472.865600pt;}
.y19{bottom:484.230400pt;}
.y6f{bottom:489.532267pt;}
.y18{bottom:500.897067pt;}
.y6e{bottom:509.978533pt;}
.y3c{bottom:517.563733pt;}
.y17{bottom:521.343200pt;}
.y6d{bottom:526.645200pt;}
.y3b{bottom:534.230400pt;}
.y16{bottom:538.009867pt;}
.y6c{bottom:543.311867pt;}
.y3a{bottom:550.897067pt;}
.y15{bottom:554.676533pt;}
.y96{bottom:557.536933pt;}
.y6b{bottom:559.978533pt;}
.y39{bottom:567.563733pt;}
.y14{bottom:571.343200pt;}
.y6a{bottom:576.645200pt;}
.y95{bottom:577.983200pt;}
.y38{bottom:584.230400pt;}
.y13{bottom:588.009867pt;}
.y69{bottom:593.311867pt;}
.y94{bottom:598.429467pt;}
.y37{bottom:600.897067pt;}
.y12{bottom:604.676533pt;}
.y68{bottom:609.978533pt;}
.y36{bottom:617.563733pt;}
.y93{bottom:618.875600pt;}
.y11{bottom:621.343200pt;}
.y67{bottom:630.424667pt;}
.y35{bottom:634.230400pt;}
.y10{bottom:638.009867pt;}
.y92{bottom:639.321733pt;}
.y66{bottom:647.091333pt;}
.y34{bottom:650.897067pt;}
.yf{bottom:654.676533pt;}
.y91{bottom:659.768000pt;}
.y65{bottom:663.758000pt;}
.y33{bottom:667.563733pt;}
.ye{bottom:671.343200pt;}
.y64{bottom:680.424667pt;}
.y32{bottom:684.230400pt;}
.yd{bottom:688.009867pt;}
.y63{bottom:697.091333pt;}
.y90{bottom:700.660267pt;}
.yc{bottom:704.676533pt;}
.y62{bottom:713.758000pt;}
.y8f{bottom:721.106667pt;}
.yb{bottom:721.343200pt;}
.y61{bottom:730.424667pt;}
.ya{bottom:738.009867pt;}
.y8e{bottom:741.552800pt;}
.y60{bottom:747.091333pt;}
.y9{bottom:754.676533pt;}
.y8d{bottom:761.998933pt;}
.y5f{bottom:767.537467pt;}
.y8c{bottom:782.445200pt;}
.y5e{bottom:784.204133pt;}
.y5{bottom:788.488933pt;}
.y5d{bottom:800.870800pt;}
.y8b{bottom:802.891333pt;}
.y5c{bottom:817.537467pt;}
.y4{bottom:817.822267pt;}
.y8a{bottom:823.337600pt;}
.y5b{bottom:834.204133pt;}
.y3{bottom:847.155600pt;}
.y5a{bottom:850.870800pt;}
.y59{bottom:867.537467pt;}
.y89{bottom:871.317067pt;}
.y2{bottom:876.488933pt;}
.y58{bottom:884.204133pt;}
.y88{bottom:887.983733pt;}
.y57{bottom:900.870800pt;}
.y87{bottom:904.650400pt;}
.y8{bottom:909.621067pt;}
.y56{bottom:921.317067pt;}
.y7{bottom:924.287733pt;}
.y55{bottom:937.983733pt;}
.y6{bottom:938.954400pt;}
.y54{bottom:985.150267pt;}
.y1{bottom:986.095200pt;}
.h5{height:38.880208pt;}
.h6{height:42.768229pt;}
.h4{height:48.151042pt;}
.h7{height:52.966146pt;}
.h2{height:54.432292pt;}
.h3{height:67.411458pt;}
.h1{height:1062.000000pt;}
.h0{height:1062.046667pt;}
.w1{width:831.333333pt;}
.w0{width:831.496000pt;}
.x0{left:0.000000pt;}
.x1{left:75.590533pt;}
.x9{left:94.488267pt;}
.x3{left:125.384800pt;}
.x4{left:141.116533pt;}
.x5{left:335.024800pt;}
.x2{left:377.188800pt;}
.xa{left:423.748000pt;}
.xb{left:442.645733pt;}
.x7{left:452.233600pt;}
.x8{left:478.848267pt;}
.xf{left:485.266800pt;}
.x16{left:490.960267pt;}
.x12{left:505.583867pt;}
.x15{left:507.231067pt;}
.xe{left:547.192000pt;}
.x14{left:563.842400pt;}
.x10{left:586.322133pt;}
.xd{left:588.792933pt;}
.x13{left:601.619067pt;}
.x11{left:618.949733pt;}
.x6{left:689.238800pt;}
.xc{left:726.146400pt;}
}




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