
    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_0fe90e26895ca6d9fa27ea4e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_0caee9cf12e03e60d8cbc5a3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.862305;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_a46312c6c440e592005978e7.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b07344921fc04c6f59e24de2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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;}
.ls22{letter-spacing:-0.861120px;}
.ls29{letter-spacing:-0.776880px;}
.ls26{letter-spacing:-0.758160px;}
.ls25{letter-spacing:-0.336960px;}
.ls1c{letter-spacing:-0.298800px;}
.ls27{letter-spacing:-0.289440px;}
.ls28{letter-spacing:-0.239040px;}
.ls20{letter-spacing:-0.144000px;}
.ls21{letter-spacing:-0.132480px;}
.ls1b{letter-spacing:-0.119520px;}
.ls24{letter-spacing:-0.084240px;}
.ls1e{letter-spacing:-0.066240px;}
.ls1d{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.059760px;}
.ls1f{letter-spacing:0.066240px;}
.ls12{letter-spacing:0.239040px;}
.ls23{letter-spacing:0.240480px;}
.ls1{letter-spacing:0.288000px;}
.ls14{letter-spacing:0.298800px;}
.ls2{letter-spacing:0.331200px;}
.ls4{letter-spacing:0.336960px;}
.ls19{letter-spacing:0.537840px;}
.lsf{letter-spacing:0.597600px;}
.ls0{letter-spacing:0.657360px;}
.ls3{letter-spacing:0.956160px;}
.ls17{letter-spacing:1.075680px;}
.lse{letter-spacing:1.095120px;}
.ls15{letter-spacing:2.091600px;}
.ls7{letter-spacing:2.527200px;}
.ls10{letter-spacing:2.808720px;}
.ls11{letter-spacing:3.705120px;}
.lsc{letter-spacing:3.959280px;}
.lsa{letter-spacing:4.717440px;}
.ls13{letter-spacing:8.605440px;}
.ls6{letter-spacing:10.445760px;}
.ls18{letter-spacing:10.756800px;}
.ls5{letter-spacing:11.119680px;}
.ls8{letter-spacing:14.742000px;}
.lsd{letter-spacing:39.929760px;}
.lsb{letter-spacing:41.361840px;}
.ls9{letter-spacing:47.174400px;}
.ls16{letter-spacing:79.122240px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-33.667200px;}
.ws4{word-spacing:-23.755680px;}
.ws5{word-spacing:-23.418720px;}
.ws3{word-spacing:-23.334480px;}
.ws6{word-spacing:-23.081760px;}
.ws0{word-spacing:-17.553600px;}
.wsb{word-spacing:-16.673040px;}
.ws7{word-spacing:-16.613280px;}
.ws1{word-spacing:-16.493760px;}
.ws9{word-spacing:-16.374240px;}
.wsc{word-spacing:-16.314480px;}
.wsa{word-spacing:-15.836400px;}
.ws8{word-spacing:-13.121280px;}
.ws30{word-spacing:-0.657360px;}
.ws2f{word-spacing:-0.119520px;}
.wse{word-spacing:0.000000px;}
.wsd{word-spacing:0.059760px;}
.ws11{word-spacing:0.066240px;}
.ws1f{word-spacing:0.084240px;}
.ws14{word-spacing:0.119520px;}
.ws10{word-spacing:0.198720px;}
.ws28{word-spacing:0.239040px;}
.wsf{word-spacing:0.298800px;}
.ws16{word-spacing:0.421200px;}
.ws12{word-spacing:0.432000px;}
.ws13{word-spacing:0.463680px;}
.ws15{word-spacing:0.776880px;}
.ws24{word-spacing:1.179360px;}
.ws2b{word-spacing:1.494000px;}
.ws25{word-spacing:1.853280px;}
.ws2a{word-spacing:2.211120px;}
.ws26{word-spacing:2.988000px;}
.ws18{word-spacing:3.285360px;}
.ws27{word-spacing:3.705120px;}
.ws21{word-spacing:4.043520px;}
.ws20{word-spacing:4.717440px;}
.ws22{word-spacing:4.801680px;}
.ws1c{word-spacing:5.475600px;}
.ws29{word-spacing:8.724960px;}
.ws19{word-spacing:10.530000px;}
.ws2e{word-spacing:10.876320px;}
.ws17{word-spacing:11.203920px;}
.ws1a{word-spacing:14.826240px;}
.ws23{word-spacing:40.014000px;}
.ws1d{word-spacing:41.361840px;}
.ws1e{word-spacing:41.446080px;}
.ws1b{word-spacing:47.258640px;}
.ws2d{word-spacing:79.301520px;}
.ws2c{word-spacing:80.018640px;}
._1{margin-left:-1.126080px;}
._0{width:1.374480px;}
._2{width:2.569680px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:84.240000px;}
.fs3{font-size:120.240000px;}
.fs2{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:57.779280px;}
.y3{bottom:77.932800px;}
.y35{bottom:197.425800px;}
.y34{bottom:214.711380px;}
.y33{bottom:231.996960px;}
.y32{bottom:249.282540px;}
.y31{bottom:266.568120px;}
.y30{bottom:283.674420px;}
.y2f{bottom:300.960000px;}
.y2e{bottom:318.420000px;}
.y2d{bottom:336.874140px;}
.y2c{bottom:360.987840px;}
.y2b{bottom:385.291080px;}
.y2a{bottom:409.404780px;}
.y29{bottom:433.518480px;}
.y28{bottom:457.632180px;}
.y27{bottom:481.745880px;}
.y26{bottom:505.859580px;}
.y25{bottom:530.162820px;}
.y24{bottom:554.276520px;}
.y23{bottom:578.390220px;}
.y22{bottom:602.503920px;}
.y21{bottom:626.617620px;}
.y20{bottom:650.731320px;}
.y1f{bottom:674.845020px;}
.y1e{bottom:699.148260px;}
.y1d{bottom:723.261960px;}
.y1c{bottom:747.375660px;}
.y1b{bottom:771.489360px;}
.y1a{bottom:795.603060px;}
.y19{bottom:819.716760px;}
.y18{bottom:844.020000px;}
.y17{bottom:869.931000px;}
.y16{bottom:904.500000px;}
.ye{bottom:935.808120px;}
.y15{bottom:937.428840px;}
.yd{bottom:953.093700px;}
.y14{bottom:954.714420px;}
.yc{bottom:970.183260px;}
.y13{bottom:971.962920px;}
.yb{bottom:987.468840px;}
.y12{bottom:989.248500px;}
.ya{bottom:1004.754420px;}
.y11{bottom:1006.534080px;}
.y9{bottom:1022.040000px;}
.y10{bottom:1023.640380px;}
.y8{bottom:1039.502880px;}
.yf{bottom:1040.925960px;}
.y7{bottom:1058.580000px;}
.y6{bottom:1081.980000px;}
.y5{bottom:1123.380000px;}
.y2{bottom:1177.020000px;}
.y1{bottom:1195.920000px;}
.h3{height:45.345937px;}
.h2{height:62.327813px;}
.h6{height:62.394773px;}
.h7{height:62.476133px;}
.h5{height:69.086250px;}
.h9{height:87.859687px;}
.h8{height:125.406562px;}
.h4{height:150.187500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:127.620000px;}
.x3{left:135.540000px;}
.x4{left:154.260000px;}
.x7{left:167.040000px;}
.xa{left:182.323620px;}
.x6{left:190.266480px;}
.x8{left:197.084340px;}
.x9{left:202.836240px;}
.x1{left:228.420000px;}
.xb{left:273.787200px;}
.x5{left:446.400000px;}
.x12{left:473.045580px;}
.xd{left:501.099300px;}
.x10{left:528.633720px;}
.xc{left:536.581800px;}
.xe{left:542.498040px;}
.xf{left:548.249940px;}
.x11{left:619.203600px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls22{letter-spacing:-0.765440pt;}
.ls29{letter-spacing:-0.690560pt;}
.ls26{letter-spacing:-0.673920pt;}
.ls25{letter-spacing:-0.299520pt;}
.ls1c{letter-spacing:-0.265600pt;}
.ls27{letter-spacing:-0.257280pt;}
.ls28{letter-spacing:-0.212480pt;}
.ls20{letter-spacing:-0.128000pt;}
.ls21{letter-spacing:-0.117760pt;}
.ls1b{letter-spacing:-0.106240pt;}
.ls24{letter-spacing:-0.074880pt;}
.ls1e{letter-spacing:-0.058880pt;}
.ls1d{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.053120pt;}
.ls1f{letter-spacing:0.058880pt;}
.ls12{letter-spacing:0.212480pt;}
.ls23{letter-spacing:0.213760pt;}
.ls1{letter-spacing:0.256000pt;}
.ls14{letter-spacing:0.265600pt;}
.ls2{letter-spacing:0.294400pt;}
.ls4{letter-spacing:0.299520pt;}
.ls19{letter-spacing:0.478080pt;}
.lsf{letter-spacing:0.531200pt;}
.ls0{letter-spacing:0.584320pt;}
.ls3{letter-spacing:0.849920pt;}
.ls17{letter-spacing:0.956160pt;}
.lse{letter-spacing:0.973440pt;}
.ls15{letter-spacing:1.859200pt;}
.ls7{letter-spacing:2.246400pt;}
.ls10{letter-spacing:2.496640pt;}
.ls11{letter-spacing:3.293440pt;}
.lsc{letter-spacing:3.519360pt;}
.lsa{letter-spacing:4.193280pt;}
.ls13{letter-spacing:7.649280pt;}
.ls6{letter-spacing:9.285120pt;}
.ls18{letter-spacing:9.561600pt;}
.ls5{letter-spacing:9.884160pt;}
.ls8{letter-spacing:13.104000pt;}
.lsd{letter-spacing:35.493120pt;}
.lsb{letter-spacing:36.766080pt;}
.ls9{letter-spacing:41.932800pt;}
.ls16{letter-spacing:70.330880pt;}
.ws2{word-spacing:-29.926400pt;}
.ws4{word-spacing:-21.116160pt;}
.ws5{word-spacing:-20.816640pt;}
.ws3{word-spacing:-20.741760pt;}
.ws6{word-spacing:-20.517120pt;}
.ws0{word-spacing:-15.603200pt;}
.wsb{word-spacing:-14.820480pt;}
.ws7{word-spacing:-14.767360pt;}
.ws1{word-spacing:-14.661120pt;}
.ws9{word-spacing:-14.554880pt;}
.wsc{word-spacing:-14.501760pt;}
.wsa{word-spacing:-14.076800pt;}
.ws8{word-spacing:-11.663360pt;}
.ws30{word-spacing:-0.584320pt;}
.ws2f{word-spacing:-0.106240pt;}
.wse{word-spacing:0.000000pt;}
.wsd{word-spacing:0.053120pt;}
.ws11{word-spacing:0.058880pt;}
.ws1f{word-spacing:0.074880pt;}
.ws14{word-spacing:0.106240pt;}
.ws10{word-spacing:0.176640pt;}
.ws28{word-spacing:0.212480pt;}
.wsf{word-spacing:0.265600pt;}
.ws16{word-spacing:0.374400pt;}
.ws12{word-spacing:0.384000pt;}
.ws13{word-spacing:0.412160pt;}
.ws15{word-spacing:0.690560pt;}
.ws24{word-spacing:1.048320pt;}
.ws2b{word-spacing:1.328000pt;}
.ws25{word-spacing:1.647360pt;}
.ws2a{word-spacing:1.965440pt;}
.ws26{word-spacing:2.656000pt;}
.ws18{word-spacing:2.920320pt;}
.ws27{word-spacing:3.293440pt;}
.ws21{word-spacing:3.594240pt;}
.ws20{word-spacing:4.193280pt;}
.ws22{word-spacing:4.268160pt;}
.ws1c{word-spacing:4.867200pt;}
.ws29{word-spacing:7.755520pt;}
.ws19{word-spacing:9.360000pt;}
.ws2e{word-spacing:9.667840pt;}
.ws17{word-spacing:9.959040pt;}
.ws1a{word-spacing:13.178880pt;}
.ws23{word-spacing:35.568000pt;}
.ws1d{word-spacing:36.766080pt;}
.ws1e{word-spacing:36.840960pt;}
.ws1b{word-spacing:42.007680pt;}
.ws2d{word-spacing:70.490240pt;}
.ws2c{word-spacing:71.127680pt;}
._1{margin-left:-1.000960pt;}
._0{width:1.221760pt;}
._2{width:2.284160pt;}
.fs5{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:74.880000pt;}
.fs3{font-size:106.880000pt;}
.fs2{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:51.359360pt;}
.y3{bottom:69.273600pt;}
.y35{bottom:175.489600pt;}
.y34{bottom:190.854560pt;}
.y33{bottom:206.219520pt;}
.y32{bottom:221.584480pt;}
.y31{bottom:236.949440pt;}
.y30{bottom:252.155040pt;}
.y2f{bottom:267.520000pt;}
.y2e{bottom:283.040000pt;}
.y2d{bottom:299.443680pt;}
.y2c{bottom:320.878080pt;}
.y2b{bottom:342.480960pt;}
.y2a{bottom:363.915360pt;}
.y29{bottom:385.349760pt;}
.y28{bottom:406.784160pt;}
.y27{bottom:428.218560pt;}
.y26{bottom:449.652960pt;}
.y25{bottom:471.255840pt;}
.y24{bottom:492.690240pt;}
.y23{bottom:514.124640pt;}
.y22{bottom:535.559040pt;}
.y21{bottom:556.993440pt;}
.y20{bottom:578.427840pt;}
.y1f{bottom:599.862240pt;}
.y1e{bottom:621.465120pt;}
.y1d{bottom:642.899520pt;}
.y1c{bottom:664.333920pt;}
.y1b{bottom:685.768320pt;}
.y1a{bottom:707.202720pt;}
.y19{bottom:728.637120pt;}
.y18{bottom:750.240000pt;}
.y17{bottom:773.272000pt;}
.y16{bottom:804.000000pt;}
.ye{bottom:831.829440pt;}
.y15{bottom:833.270080pt;}
.yd{bottom:847.194400pt;}
.y14{bottom:848.635040pt;}
.yc{bottom:862.385120pt;}
.y13{bottom:863.967040pt;}
.yb{bottom:877.750080pt;}
.y12{bottom:879.332000pt;}
.ya{bottom:893.115040pt;}
.y11{bottom:894.696960pt;}
.y9{bottom:908.480000pt;}
.y10{bottom:909.902560pt;}
.y8{bottom:924.002560pt;}
.yf{bottom:925.267520pt;}
.y7{bottom:940.960000pt;}
.y6{bottom:961.760000pt;}
.y5{bottom:998.560000pt;}
.y2{bottom:1046.240000pt;}
.y1{bottom:1063.040000pt;}
.h3{height:40.307500pt;}
.h2{height:55.402500pt;}
.h6{height:55.462020pt;}
.h7{height:55.534340pt;}
.h5{height:61.410000pt;}
.h9{height:78.097500pt;}
.h8{height:111.472500pt;}
.h4{height:133.500000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:113.440000pt;}
.x3{left:120.480000pt;}
.x4{left:137.120000pt;}
.x7{left:148.480000pt;}
.xa{left:162.065440pt;}
.x6{left:169.125760pt;}
.x8{left:175.186080pt;}
.x9{left:180.298880pt;}
.x1{left:203.040000pt;}
.xb{left:243.366400pt;}
.x5{left:396.800000pt;}
.x12{left:420.484960pt;}
.xd{left:445.421600pt;}
.x10{left:469.896640pt;}
.xc{left:476.961600pt;}
.xe{left:482.220480pt;}
.xf{left:487.333280pt;}
.x11{left:550.403200pt;}
}




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