
    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_0861ae71538b94e9bd8cee7b.woff')format("woff");}.ff1{font-family:ff1;line-height:0.943848;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_e1abed8e196115caf916eaa2.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_ca9b4a660c05e764ebf82bf8.woff')format("woff");}.ff3{font-family:ff3;line-height:0.692871;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_e86a96078662c43cfcf10199.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_7b1171587ff19df88c655081.woff')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_28a02c3496ca272355e1ef4d.woff')format("woff");}.ff6{font-family:ff6;line-height:1.093262;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_7b0f378e03009ece0466dcf9.woff')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_9d444695403f50d482463387.woff')format("woff");}.ff8{font-family:ff8;line-height:0.953125;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_5572a2ad3f4641e3f7d9a14d.woff')format("woff");}.ff9{font-family:ff9;line-height:0.759033;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;}
.v1{vertical-align:21.978000px;}
.ls9{letter-spacing:-0.480000px;}
.ls5{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000600px;}
.ls2{letter-spacing:0.007800px;}
.ls8{letter-spacing:0.021000px;}
.lsb{letter-spacing:0.330000px;}
.lsc{letter-spacing:0.336000px;}
.ls0{letter-spacing:0.720000px;}
.lsa{letter-spacing:1.680000px;}
.ls6{letter-spacing:2.100000px;}
.ls7{letter-spacing:10.701600px;}
.ls3{letter-spacing:12.842400px;}
.ls4{letter-spacing:20.460000px;}
.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;}
}
.ws0{word-spacing:-72.720000px;}
.ws2{word-spacing:-48.000000px;}
.ws4{word-spacing:-15.000000px;}
.ws1c{word-spacing:-13.680000px;}
.ws3{word-spacing:-12.000000px;}
.ws10{word-spacing:-6.180000px;}
.wsf{word-spacing:-5.880000px;}
.wsa{word-spacing:-3.660000px;}
.ws11{word-spacing:-3.600000px;}
.ws15{word-spacing:-2.280000px;}
.ws6{word-spacing:-2.100000px;}
.wsb{word-spacing:-1.620000px;}
.ws7{word-spacing:-1.320000px;}
.wse{word-spacing:-0.816000px;}
.wsd{word-spacing:-0.768000px;}
.ws17{word-spacing:-0.576000px;}
.ws21{word-spacing:-0.336000px;}
.ws1{word-spacing:-0.048000px;}
.ws5{word-spacing:0.000000px;}
.ws22{word-spacing:0.336000px;}
.ws9{word-spacing:0.360000px;}
.ws1b{word-spacing:0.480000px;}
.ws14{word-spacing:0.660000px;}
.ws19{word-spacing:1.680000px;}
.ws16{word-spacing:4.620000px;}
.ws1f{word-spacing:5.040000px;}
.ws1a{word-spacing:5.952000px;}
.ws20{word-spacing:6.480000px;}
.ws1e{word-spacing:6.540000px;}
.ws23{word-spacing:6.579000px;}
.ws18{word-spacing:7.320000px;}
.ws8{word-spacing:9.000000px;}
.ws13{word-spacing:10.680000px;}
.wsc{word-spacing:12.840000px;}
.ws12{word-spacing:13.860000px;}
.ws1d{word-spacing:22.200000px;}
._16{margin-left:-15.798600px;}
._c{margin-left:-14.622000px;}
._7{margin-left:-7.402200px;}
._0{margin-left:-6.045600px;}
._4{margin-left:-4.732800px;}
._1{margin-left:-2.856000px;}
._3{margin-left:-1.600800px;}
._2{width:1.838400px;}
._f{width:2.920800px;}
._10{width:4.656000px;}
._d{width:6.375000px;}
._b{width:7.662000px;}
._6{width:8.856000px;}
._15{width:10.125000px;}
._12{width:11.244000px;}
._5{width:12.318000px;}
._8{width:13.464000px;}
._18{width:14.640600px;}
._e{width:16.434000px;}
._11{width:19.876800px;}
._9{width:20.988000px;}
._a{width:21.994800px;}
._17{width:23.049000px;}
._14{width:24.175200px;}
._13{width:27.426000px;}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:38.478000px;}
.fs2{font-size:48.000000px;}
.fs5{font-size:51.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y28{bottom:55.955700px;}
.y1{bottom:56.664300px;}
.y7b{bottom:103.158300px;}
.y60{bottom:105.253200px;}
.y25{bottom:105.570300px;}
.y50{bottom:115.663350px;}
.y7a{bottom:122.958300px;}
.y5f{bottom:123.253200px;}
.y24{bottom:123.570300px;}
.y4f{bottom:133.963350px;}
.y5e{bottom:141.253200px;}
.y23{bottom:141.570300px;}
.y4e{bottom:152.263350px;}
.y5d{bottom:159.253200px;}
.y22{bottom:159.570300px;}
.y4d{bottom:170.563350px;}
.y5c{bottom:177.253200px;}
.y21{bottom:177.570300px;}
.y4c{bottom:188.863350px;}
.y53{bottom:190.518450px;}
.y5b{bottom:195.253200px;}
.y20{bottom:199.822200px;}
.y4b{bottom:207.163350px;}
.y52{bottom:208.518450px;}
.y5a{bottom:213.253200px;}
.y1f{bottom:217.822200px;}
.y4a{bottom:225.463350px;}
.y59{bottom:231.253200px;}
.y1e{bottom:235.822200px;}
.y49{bottom:243.763350px;}
.y58{bottom:249.253200px;}
.y1d{bottom:253.822200px;}
.y48{bottom:262.063350px;}
.y57{bottom:267.253200px;}
.y1c{bottom:271.822200px;}
.y47{bottom:280.363350px;}
.y56{bottom:285.253200px;}
.y1b{bottom:289.822200px;}
.y46{bottom:298.663350px;}
.y55{bottom:303.253200px;}
.y1a{bottom:307.822200px;}
.y45{bottom:316.963350px;}
.y54{bottom:321.253200px;}
.y19{bottom:325.822200px;}
.y44{bottom:335.263350px;}
.y18{bottom:343.822200px;}
.y43{bottom:353.563350px;}
.y64{bottom:360.360900px;}
.y17{bottom:361.822200px;}
.y42{bottom:371.863350px;}
.y63{bottom:375.360900px;}
.y16{bottom:384.074100px;}
.y41{bottom:390.163350px;}
.y62{bottom:393.360900px;}
.y15{bottom:402.074100px;}
.y61{bottom:408.360900px;}
.y14{bottom:420.074100px;}
.y40{bottom:421.219350px;}
.y13{bottom:438.074100px;}
.y3f{bottom:452.275200px;}
.y12{bottom:456.074100px;}
.y3e{bottom:470.575200px;}
.y11{bottom:474.074100px;}
.y3d{bottom:488.875200px;}
.y10{bottom:492.074100px;}
.y3c{bottom:507.175200px;}
.yf{bottom:510.074100px;}
.y3b{bottom:525.475200px;}
.ye{bottom:528.074100px;}
.y3a{bottom:543.775200px;}
.yd{bottom:558.830100px;}
.y39{bottom:562.075200px;}
.y79{bottom:574.170450px;}
.y38{bottom:584.627250px;}
.y78{bottom:588.570300px;}
.y37{bottom:602.927100px;}
.y77{bottom:602.970450px;}
.y76{bottom:617.370450px;}
.y36{bottom:625.479150px;}
.y75{bottom:631.770450px;}
.yc{bottom:636.357600px;}
.y35{bottom:643.779150px;}
.y74{bottom:646.170450px;}
.y73{bottom:660.570300px;}
.yb{bottom:664.113600px;}
.y34{bottom:674.835000px;}
.y72{bottom:674.970450px;}
.ya{bottom:678.513450px;}
.y71{bottom:689.370450px;}
.y9{bottom:692.913600px;}
.y70{bottom:703.770450px;}
.y33{bottom:705.891000px;}
.y8{bottom:707.313600px;}
.y6f{bottom:718.170450px;}
.y32{bottom:724.190850px;}
.y6e{bottom:732.570300px;}
.y7{bottom:738.721500px;}
.y31{bottom:742.491000px;}
.y6d{bottom:746.970450px;}
.y6{bottom:754.973400px;}
.y30{bottom:760.791000px;}
.y6c{bottom:761.370450px;}
.y6b{bottom:775.770300px;}
.y2f{bottom:779.091000px;}
.y5{bottom:782.977350px;}
.y6a{bottom:790.170450px;}
.y2e{bottom:797.391000px;}
.y2d{bottom:815.690850px;}
.y69{bottom:817.326300px;}
.y4{bottom:817.985250px;}
.y2c{bottom:833.991000px;}
.y3{bottom:835.737150px;}
.y68{bottom:847.632150px;}
.y2b{bottom:852.291000px;}
.y2{bottom:857.337150px;}
.y67{bottom:865.632150px;}
.y2a{bottom:870.591000px;}
.y66{bottom:883.632150px;}
.y65{bottom:901.632150px;}
.y29{bottom:901.646850px;}
.y27{bottom:927.827700px;}
.y26{bottom:948.827700px;}
.y51{bottom:951.848250px;}
.h4{height:33.328125px;}
.ha{height:35.411133px;}
.h9{height:36.375000px;}
.h6{height:42.117188px;}
.h2{height:45.468750px;}
.h8{height:48.468750px;}
.h3{height:48.796875px;}
.h7{height:52.646484px;}
.h5{height:57.911133px;}
.h1{height:1011.750000px;}
.h0{height:1011.969000px;}
.w0{width:697.323000px;}
.w1{width:697.500000px;}
.x0{left:0.000000px;}
.xc{left:76.535400px;}
.x8{left:93.543300px;}
.x2{left:95.458950px;}
.xe{left:102.047250px;}
.x9{left:110.551200px;}
.x12{left:114.803100px;}
.x6{left:119.652600px;}
.xb{left:192.121500px;}
.x7{left:195.499350px;}
.x4{left:257.778600px;}
.xd{left:260.638500px;}
.x5{left:282.507450px;}
.x11{left:294.004950px;}
.x3{left:295.388250px;}
.x10{left:300.383400px;}
.xf{left:310.516350px;}
.xa{left:331.805250px;}
.x1{left:613.053000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.536000pt;}
.ls9{letter-spacing:-0.426667pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000533pt;}
.ls2{letter-spacing:0.006933pt;}
.ls8{letter-spacing:0.018667pt;}
.lsb{letter-spacing:0.293333pt;}
.lsc{letter-spacing:0.298667pt;}
.ls0{letter-spacing:0.640000pt;}
.lsa{letter-spacing:1.493333pt;}
.ls6{letter-spacing:1.866667pt;}
.ls7{letter-spacing:9.512533pt;}
.ls3{letter-spacing:11.415467pt;}
.ls4{letter-spacing:18.186667pt;}
.ws0{word-spacing:-64.640000pt;}
.ws2{word-spacing:-42.666667pt;}
.ws4{word-spacing:-13.333333pt;}
.ws1c{word-spacing:-12.160000pt;}
.ws3{word-spacing:-10.666667pt;}
.ws10{word-spacing:-5.493333pt;}
.wsf{word-spacing:-5.226667pt;}
.wsa{word-spacing:-3.253333pt;}
.ws11{word-spacing:-3.200000pt;}
.ws15{word-spacing:-2.026667pt;}
.ws6{word-spacing:-1.866667pt;}
.wsb{word-spacing:-1.440000pt;}
.ws7{word-spacing:-1.173333pt;}
.wse{word-spacing:-0.725333pt;}
.wsd{word-spacing:-0.682667pt;}
.ws17{word-spacing:-0.512000pt;}
.ws21{word-spacing:-0.298667pt;}
.ws1{word-spacing:-0.042667pt;}
.ws5{word-spacing:0.000000pt;}
.ws22{word-spacing:0.298667pt;}
.ws9{word-spacing:0.320000pt;}
.ws1b{word-spacing:0.426667pt;}
.ws14{word-spacing:0.586667pt;}
.ws19{word-spacing:1.493333pt;}
.ws16{word-spacing:4.106667pt;}
.ws1f{word-spacing:4.480000pt;}
.ws1a{word-spacing:5.290667pt;}
.ws20{word-spacing:5.760000pt;}
.ws1e{word-spacing:5.813333pt;}
.ws23{word-spacing:5.848000pt;}
.ws18{word-spacing:6.506667pt;}
.ws8{word-spacing:8.000000pt;}
.ws13{word-spacing:9.493333pt;}
.wsc{word-spacing:11.413333pt;}
.ws12{word-spacing:12.320000pt;}
.ws1d{word-spacing:19.733333pt;}
._16{margin-left:-14.043200pt;}
._c{margin-left:-12.997333pt;}
._7{margin-left:-6.579733pt;}
._0{margin-left:-5.373867pt;}
._4{margin-left:-4.206933pt;}
._1{margin-left:-2.538667pt;}
._3{margin-left:-1.422933pt;}
._2{width:1.634133pt;}
._f{width:2.596267pt;}
._10{width:4.138667pt;}
._d{width:5.666667pt;}
._b{width:6.810667pt;}
._6{width:7.872000pt;}
._15{width:9.000000pt;}
._12{width:9.994667pt;}
._5{width:10.949333pt;}
._8{width:11.968000pt;}
._18{width:13.013867pt;}
._e{width:14.608000pt;}
._11{width:17.668267pt;}
._9{width:18.656000pt;}
._a{width:19.550933pt;}
._17{width:20.488000pt;}
._14{width:21.489067pt;}
._13{width:24.378667pt;}
.fs4{font-size:34.202667pt;}
.fs2{font-size:42.666667pt;}
.fs5{font-size:45.333333pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y28{bottom:49.738400pt;}
.y1{bottom:50.368267pt;}
.y7b{bottom:91.696267pt;}
.y60{bottom:93.558400pt;}
.y25{bottom:93.840267pt;}
.y50{bottom:102.811867pt;}
.y7a{bottom:109.296267pt;}
.y5f{bottom:109.558400pt;}
.y24{bottom:109.840267pt;}
.y4f{bottom:119.078533pt;}
.y5e{bottom:125.558400pt;}
.y23{bottom:125.840267pt;}
.y4e{bottom:135.345200pt;}
.y5d{bottom:141.558400pt;}
.y22{bottom:141.840267pt;}
.y4d{bottom:151.611867pt;}
.y5c{bottom:157.558400pt;}
.y21{bottom:157.840267pt;}
.y4c{bottom:167.878533pt;}
.y53{bottom:169.349733pt;}
.y5b{bottom:173.558400pt;}
.y20{bottom:177.619733pt;}
.y4b{bottom:184.145200pt;}
.y52{bottom:185.349733pt;}
.y5a{bottom:189.558400pt;}
.y1f{bottom:193.619733pt;}
.y4a{bottom:200.411867pt;}
.y59{bottom:205.558400pt;}
.y1e{bottom:209.619733pt;}
.y49{bottom:216.678533pt;}
.y58{bottom:221.558400pt;}
.y1d{bottom:225.619733pt;}
.y48{bottom:232.945200pt;}
.y57{bottom:237.558400pt;}
.y1c{bottom:241.619733pt;}
.y47{bottom:249.211867pt;}
.y56{bottom:253.558400pt;}
.y1b{bottom:257.619733pt;}
.y46{bottom:265.478533pt;}
.y55{bottom:269.558400pt;}
.y1a{bottom:273.619733pt;}
.y45{bottom:281.745200pt;}
.y54{bottom:285.558400pt;}
.y19{bottom:289.619733pt;}
.y44{bottom:298.011867pt;}
.y18{bottom:305.619733pt;}
.y43{bottom:314.278533pt;}
.y64{bottom:320.320800pt;}
.y17{bottom:321.619733pt;}
.y42{bottom:330.545200pt;}
.y63{bottom:333.654133pt;}
.y16{bottom:341.399200pt;}
.y41{bottom:346.811867pt;}
.y62{bottom:349.654133pt;}
.y15{bottom:357.399200pt;}
.y61{bottom:362.987467pt;}
.y14{bottom:373.399200pt;}
.y40{bottom:374.417200pt;}
.y13{bottom:389.399200pt;}
.y3f{bottom:402.022400pt;}
.y12{bottom:405.399200pt;}
.y3e{bottom:418.289067pt;}
.y11{bottom:421.399200pt;}
.y3d{bottom:434.555733pt;}
.y10{bottom:437.399200pt;}
.y3c{bottom:450.822400pt;}
.yf{bottom:453.399200pt;}
.y3b{bottom:467.089067pt;}
.ye{bottom:469.399200pt;}
.y3a{bottom:483.355733pt;}
.yd{bottom:496.737867pt;}
.y39{bottom:499.622400pt;}
.y79{bottom:510.373733pt;}
.y38{bottom:519.668667pt;}
.y78{bottom:523.173600pt;}
.y37{bottom:535.935200pt;}
.y77{bottom:535.973733pt;}
.y76{bottom:548.773733pt;}
.y36{bottom:555.981467pt;}
.y75{bottom:561.573733pt;}
.yc{bottom:565.651200pt;}
.y35{bottom:572.248133pt;}
.y74{bottom:574.373733pt;}
.y73{bottom:587.173600pt;}
.yb{bottom:590.323200pt;}
.y34{bottom:599.853333pt;}
.y72{bottom:599.973733pt;}
.ya{bottom:603.123067pt;}
.y71{bottom:612.773733pt;}
.y9{bottom:615.923200pt;}
.y70{bottom:625.573733pt;}
.y33{bottom:627.458667pt;}
.y8{bottom:628.723200pt;}
.y6f{bottom:638.373733pt;}
.y32{bottom:643.725200pt;}
.y6e{bottom:651.173600pt;}
.y7{bottom:656.641333pt;}
.y31{bottom:659.992000pt;}
.y6d{bottom:663.973733pt;}
.y6{bottom:671.087467pt;}
.y30{bottom:676.258667pt;}
.y6c{bottom:676.773733pt;}
.y6b{bottom:689.573600pt;}
.y2f{bottom:692.525333pt;}
.y5{bottom:695.979867pt;}
.y6a{bottom:702.373733pt;}
.y2e{bottom:708.792000pt;}
.y2d{bottom:725.058533pt;}
.y69{bottom:726.512267pt;}
.y4{bottom:727.098000pt;}
.y2c{bottom:741.325333pt;}
.y3{bottom:742.877467pt;}
.y68{bottom:753.450800pt;}
.y2b{bottom:757.592000pt;}
.y2{bottom:762.077467pt;}
.y67{bottom:769.450800pt;}
.y2a{bottom:773.858667pt;}
.y66{bottom:785.450800pt;}
.y65{bottom:801.450800pt;}
.y29{bottom:801.463867pt;}
.y27{bottom:824.735733pt;}
.y26{bottom:843.402400pt;}
.y51{bottom:846.087333pt;}
.h4{height:29.625000pt;}
.ha{height:31.476562pt;}
.h9{height:32.333333pt;}
.h6{height:37.437500pt;}
.h2{height:40.416667pt;}
.h8{height:43.083333pt;}
.h3{height:43.375000pt;}
.h7{height:46.796875pt;}
.h5{height:51.476562pt;}
.h1{height:899.333333pt;}
.h0{height:899.528000pt;}
.w0{width:619.842667pt;}
.w1{width:620.000000pt;}
.x0{left:0.000000pt;}
.xc{left:68.031467pt;}
.x8{left:83.149600pt;}
.x2{left:84.852400pt;}
.xe{left:90.708667pt;}
.x9{left:98.267733pt;}
.x12{left:102.047200pt;}
.x6{left:106.357867pt;}
.xb{left:170.774667pt;}
.x7{left:173.777200pt;}
.x4{left:229.136533pt;}
.xd{left:231.678667pt;}
.x5{left:251.117733pt;}
.x11{left:261.337733pt;}
.x3{left:262.567333pt;}
.x10{left:267.007467pt;}
.xf{left:276.014533pt;}
.xa{left:294.938000pt;}
.x1{left:544.936000pt;}
}




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