
    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_194a19d01df56b2d3bb6b32b.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_481a70b9afd9a6271a0d3b63.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_5d5b3b8577102f9dd8b137cb.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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);}
.v2{vertical-align:-88.560000px;}
.v1{vertical-align:-66.241980px;}
.v0{vertical-align:0.000000px;}
.ls1d{letter-spacing:-0.144288px;}
.ls12{letter-spacing:-0.043200px;}
.ls14{letter-spacing:-0.036000px;}
.lsf{letter-spacing:-0.030060px;}
.ls17{letter-spacing:-0.024048px;}
.ls11{letter-spacing:-0.023940px;}
.ls1c{letter-spacing:-0.018036px;}
.ls16{letter-spacing:-0.012024px;}
.ls15{letter-spacing:-0.006012px;}
.ls10{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.006012px;}
.ls13{letter-spacing:0.007200px;}
.ls1b{letter-spacing:0.009576px;}
.lsc{letter-spacing:0.012024px;}
.ls7{letter-spacing:0.014400px;}
.ls4{letter-spacing:0.018036px;}
.ls20{letter-spacing:0.023940px;}
.ls8{letter-spacing:0.024048px;}
.ls5{letter-spacing:0.025164px;}
.ls2{letter-spacing:0.028728px;}
.ls9{letter-spacing:0.030060px;}
.ls18{letter-spacing:0.033516px;}
.lse{letter-spacing:0.036072px;}
.ls1a{letter-spacing:0.038304px;}
.ls1{letter-spacing:0.041940px;}
.lsa{letter-spacing:0.042084px;}
.ls19{letter-spacing:0.043092px;}
.ls0{letter-spacing:0.050328px;}
.ls1f{letter-spacing:0.052668px;}
.lsd{letter-spacing:0.054108px;}
.ls6{letter-spacing:0.083880px;}
.ls1e{letter-spacing:0.339948px;}
.ls3{letter-spacing:1480.689000px;}
.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.000000px;}
.ws2b{word-spacing:-0.174348px;}
.ws37{word-spacing:-0.168336px;}
.ws9{word-spacing:-0.167760px;}
.ws6{word-spacing:-0.162324px;}
.ws1f{word-spacing:-0.156312px;}
.ws16{word-spacing:-0.150300px;}
.ws39{word-spacing:-0.144288px;}
.ws24{word-spacing:-0.132264px;}
.ws2c{word-spacing:-0.126252px;}
.ws3{word-spacing:-0.114228px;}
.ws3c{word-spacing:-0.023940px;}
.ws3d{word-spacing:-0.019152px;}
.ws3b{word-spacing:-0.014364px;}
.ws5{word-spacing:-0.009576px;}
.ws2{word-spacing:-0.008388px;}
.ws1{word-spacing:0.000000px;}
.ws3e{word-spacing:0.009576px;}
.ws3a{word-spacing:0.038304px;}
.ws4{word-spacing:0.043092px;}
.wse{word-spacing:0.129600px;}
.ws14{word-spacing:0.174348px;}
.wsf{word-spacing:0.194400px;}
.ws15{word-spacing:0.210420px;}
.ws3f{word-spacing:0.354312px;}
.ws27{word-spacing:1.647288px;}
.ws17{word-spacing:2.001996px;}
.ws18{word-spacing:2.026044px;}
.ws26{word-spacing:2.362716px;}
.ws25{word-spacing:2.398788px;}
.ws2d{word-spacing:2.699388px;}
.ws33{word-spacing:3.066120px;}
.ws32{word-spacing:3.072132px;}
.ws30{word-spacing:3.096180px;}
.ws31{word-spacing:3.108204px;}
.ws2f{word-spacing:3.432852px;}
.ws2e{word-spacing:3.823632px;}
.ws20{word-spacing:4.166316px;}
.ws10{word-spacing:4.184352px;}
.ws11{word-spacing:4.545072px;}
.ws34{word-spacing:4.869720px;}
.ws22{word-spacing:5.236452px;}
.ws21{word-spacing:5.248476px;}
.ws23{word-spacing:5.254488px;}
.ws13{word-spacing:5.945868px;}
.ws12{word-spacing:5.951880px;}
.ws1b{word-spacing:7.364700px;}
.ws1c{word-spacing:7.400772px;}
.ws1e{word-spacing:8.098164px;}
.ws19{word-spacing:9.186336px;}
.ws1a{word-spacing:9.198360px;}
.wsd{word-spacing:10.584000px;}
.wsc{word-spacing:10.598400px;}
.ws36{word-spacing:12.438828px;}
.ws35{word-spacing:12.480912px;}
.ws29{word-spacing:15.306552px;}
.ws2a{word-spacing:15.324588px;}
.ws8{word-spacing:17.212176px;}
.ws7{word-spacing:17.346384px;}
.wsb{word-spacing:17.431200px;}
.wsa{word-spacing:17.632800px;}
.ws38{word-spacing:17.849628px;}
.ws28{word-spacing:19.971864px;}
.ws1d{word-spacing:19.995912px;}
._1{margin-left:-1.022040px;}
._2{width:1.000692px;}
._3{width:234.233280px;}
._0{width:410.441616px;}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(128,128,128);}
.fc1{color:rgb(170,170,170);}
.fc0{color:rgb(131,131,131);}
.fs2{font-size:47.880000px;}
.fs1{font-size:60.120000px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y5{bottom:74.549460px;}
.y4{bottom:91.109955px;}
.y3{bottom:107.670450px;}
.y2{bottom:140.070450px;}
.y25{bottom:197.390133px;}
.y24{bottom:223.220691px;}
.y23{bottom:249.141429px;}
.y22{bottom:274.971987px;}
.y21{bottom:300.892725px;}
.y20{bottom:326.723283px;}
.y1f{bottom:352.644021px;}
.y1e{bottom:378.474579px;}
.y1d{bottom:404.395317px;}
.y1c{bottom:430.225875px;}
.y1b{bottom:456.146613px;}
.y1a{bottom:493.227126px;}
.y19{bottom:519.147864px;}
.y3f{bottom:531.301566px;}
.y18{bottom:544.978422px;}
.y3c{bottom:552.001287px;}
.y17{bottom:570.897657px;}
.y3b{bottom:572.701008px;}
.y3a{bottom:593.400729px;}
.y3e{bottom:600.331359px;}
.y16{bottom:611.758215px;}
.y39{bottom:614.100450px;}
.y3d{bottom:614.101647px;}
.y38{bottom:631.914618px;}
.y15{bottom:637.588773px;}
.y37{bottom:662.064798px;}
.y14{bottom:663.508008px;}
.y36{bottom:679.254609px;}
.y35{bottom:696.534600px;}
.y13{bottom:704.368566px;}
.y34{bottom:713.814591px;}
.y12{bottom:730.289304px;}
.y33{bottom:731.004402px;}
.y32{bottom:748.284393px;}
.y11{bottom:756.119862px;}
.y31{bottom:774.114951px;}
.y10{bottom:782.040600px;}
.y30{bottom:800.035689px;}
.yf{bottom:822.811017px;}
.y2f{bottom:825.866247px;}
.ye{bottom:844.320450px;}
.y2e{bottom:851.786985px;}
.y2d{bottom:877.617543px;}
.yd{bottom:878.160450px;}
.yc{bottom:901.920450px;}
.y2c{bottom:903.538281px;}
.yb{bottom:925.770450px;}
.y2b{bottom:929.368839px;}
.ya{bottom:949.620450px;}
.y2a{bottom:955.289577px;}
.y29{bottom:981.120135px;}
.y9{bottom:997.140450px;}
.y28{bottom:1007.039370px;}
.y8{bottom:1024.860450px;}
.y27{bottom:1032.869928px;}
.y7{bottom:1059.689631px;}
.y26{bottom:1067.700450px;}
.y6{bottom:1080.390450px;}
.y1{bottom:1098.930450px;}
.h3{height:49.937344px;}
.h2{height:62.703281px;}
.h4{height:75.093750px;}
.h1{height:87.484219px;}
.h0{height:1263.000000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x3{left:72.000000px;}
.x5{left:99.000000px;}
.x6{left:126.000000px;}
.x1{left:282.420000px;}
.x8{left:450.720027px;}
.x7{left:461.339811px;}
.x2{left:503.190000px;}
.x4{left:530.550000px;}
@media print{
.v2{vertical-align:-78.720000pt;}
.v1{vertical-align:-58.881760pt;}
.v0{vertical-align:0.000000pt;}
.ls1d{letter-spacing:-0.128256pt;}
.ls12{letter-spacing:-0.038400pt;}
.ls14{letter-spacing:-0.032000pt;}
.lsf{letter-spacing:-0.026720pt;}
.ls17{letter-spacing:-0.021376pt;}
.ls11{letter-spacing:-0.021280pt;}
.ls1c{letter-spacing:-0.016032pt;}
.ls16{letter-spacing:-0.010688pt;}
.ls15{letter-spacing:-0.005344pt;}
.ls10{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.005344pt;}
.ls13{letter-spacing:0.006400pt;}
.ls1b{letter-spacing:0.008512pt;}
.lsc{letter-spacing:0.010688pt;}
.ls7{letter-spacing:0.012800pt;}
.ls4{letter-spacing:0.016032pt;}
.ls20{letter-spacing:0.021280pt;}
.ls8{letter-spacing:0.021376pt;}
.ls5{letter-spacing:0.022368pt;}
.ls2{letter-spacing:0.025536pt;}
.ls9{letter-spacing:0.026720pt;}
.ls18{letter-spacing:0.029792pt;}
.lse{letter-spacing:0.032064pt;}
.ls1a{letter-spacing:0.034048pt;}
.ls1{letter-spacing:0.037280pt;}
.lsa{letter-spacing:0.037408pt;}
.ls19{letter-spacing:0.038304pt;}
.ls0{letter-spacing:0.044736pt;}
.ls1f{letter-spacing:0.046816pt;}
.lsd{letter-spacing:0.048096pt;}
.ls6{letter-spacing:0.074560pt;}
.ls1e{letter-spacing:0.302176pt;}
.ls3{letter-spacing:1316.168000pt;}
.ws0{word-spacing:-64.000000pt;}
.ws2b{word-spacing:-0.154976pt;}
.ws37{word-spacing:-0.149632pt;}
.ws9{word-spacing:-0.149120pt;}
.ws6{word-spacing:-0.144288pt;}
.ws1f{word-spacing:-0.138944pt;}
.ws16{word-spacing:-0.133600pt;}
.ws39{word-spacing:-0.128256pt;}
.ws24{word-spacing:-0.117568pt;}
.ws2c{word-spacing:-0.112224pt;}
.ws3{word-spacing:-0.101536pt;}
.ws3c{word-spacing:-0.021280pt;}
.ws3d{word-spacing:-0.017024pt;}
.ws3b{word-spacing:-0.012768pt;}
.ws5{word-spacing:-0.008512pt;}
.ws2{word-spacing:-0.007456pt;}
.ws1{word-spacing:0.000000pt;}
.ws3e{word-spacing:0.008512pt;}
.ws3a{word-spacing:0.034048pt;}
.ws4{word-spacing:0.038304pt;}
.wse{word-spacing:0.115200pt;}
.ws14{word-spacing:0.154976pt;}
.wsf{word-spacing:0.172800pt;}
.ws15{word-spacing:0.187040pt;}
.ws3f{word-spacing:0.314944pt;}
.ws27{word-spacing:1.464256pt;}
.ws17{word-spacing:1.779552pt;}
.ws18{word-spacing:1.800928pt;}
.ws26{word-spacing:2.100192pt;}
.ws25{word-spacing:2.132256pt;}
.ws2d{word-spacing:2.399456pt;}
.ws33{word-spacing:2.725440pt;}
.ws32{word-spacing:2.730784pt;}
.ws30{word-spacing:2.752160pt;}
.ws31{word-spacing:2.762848pt;}
.ws2f{word-spacing:3.051424pt;}
.ws2e{word-spacing:3.398784pt;}
.ws20{word-spacing:3.703392pt;}
.ws10{word-spacing:3.719424pt;}
.ws11{word-spacing:4.040064pt;}
.ws34{word-spacing:4.328640pt;}
.ws22{word-spacing:4.654624pt;}
.ws21{word-spacing:4.665312pt;}
.ws23{word-spacing:4.670656pt;}
.ws13{word-spacing:5.285216pt;}
.ws12{word-spacing:5.290560pt;}
.ws1b{word-spacing:6.546400pt;}
.ws1c{word-spacing:6.578464pt;}
.ws1e{word-spacing:7.198368pt;}
.ws19{word-spacing:8.165632pt;}
.ws1a{word-spacing:8.176320pt;}
.wsd{word-spacing:9.408000pt;}
.wsc{word-spacing:9.420800pt;}
.ws36{word-spacing:11.056736pt;}
.ws35{word-spacing:11.094144pt;}
.ws29{word-spacing:13.605824pt;}
.ws2a{word-spacing:13.621856pt;}
.ws8{word-spacing:15.299712pt;}
.ws7{word-spacing:15.419008pt;}
.wsb{word-spacing:15.494400pt;}
.wsa{word-spacing:15.673600pt;}
.ws38{word-spacing:15.866336pt;}
.ws28{word-spacing:17.752768pt;}
.ws1d{word-spacing:17.774144pt;}
._1{margin-left:-0.908480pt;}
._2{width:0.889504pt;}
._3{width:208.207360pt;}
._0{width:364.836992pt;}
.fs2{font-size:42.560000pt;}
.fs1{font-size:53.440000pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:66.266187pt;}
.y4{bottom:80.986627pt;}
.y3{bottom:95.707067pt;}
.y2{bottom:124.507067pt;}
.y25{bottom:175.457896pt;}
.y24{bottom:198.418392pt;}
.y23{bottom:221.459048pt;}
.y22{bottom:244.419544pt;}
.y21{bottom:267.460200pt;}
.y20{bottom:290.420696pt;}
.y1f{bottom:313.461352pt;}
.y1e{bottom:336.421848pt;}
.y1d{bottom:359.462504pt;}
.y1c{bottom:382.423000pt;}
.y1b{bottom:405.463656pt;}
.y1a{bottom:438.424112pt;}
.y19{bottom:461.464768pt;}
.y3f{bottom:472.268059pt;}
.y18{bottom:484.425264pt;}
.y3c{bottom:490.667811pt;}
.y17{bottom:507.464584pt;}
.y3b{bottom:509.067563pt;}
.y3a{bottom:527.467315pt;}
.y3e{bottom:533.627875pt;}
.y16{bottom:543.785080pt;}
.y39{bottom:545.867067pt;}
.y3d{bottom:545.868131pt;}
.y38{bottom:561.701883pt;}
.y15{bottom:566.745576pt;}
.y37{bottom:588.502043pt;}
.y14{bottom:589.784896pt;}
.y36{bottom:603.781875pt;}
.y35{bottom:619.141867pt;}
.y13{bottom:626.105392pt;}
.y34{bottom:634.501859pt;}
.y12{bottom:649.146048pt;}
.y33{bottom:649.781691pt;}
.y32{bottom:665.141683pt;}
.y11{bottom:672.106544pt;}
.y31{bottom:688.102179pt;}
.y10{bottom:695.147200pt;}
.y30{bottom:711.142835pt;}
.yf{bottom:731.387571pt;}
.y2f{bottom:734.103331pt;}
.ye{bottom:750.507067pt;}
.y2e{bottom:757.143987pt;}
.y2d{bottom:780.104483pt;}
.yd{bottom:780.587067pt;}
.yc{bottom:801.707067pt;}
.y2c{bottom:803.145139pt;}
.yb{bottom:822.907067pt;}
.y2b{bottom:826.105635pt;}
.ya{bottom:844.107067pt;}
.y2a{bottom:849.146291pt;}
.y29{bottom:872.106787pt;}
.y9{bottom:886.347067pt;}
.y28{bottom:895.146107pt;}
.y8{bottom:910.987067pt;}
.y27{bottom:918.106603pt;}
.y7{bottom:941.946339pt;}
.y26{bottom:949.067067pt;}
.y6{bottom:960.347067pt;}
.y1{bottom:976.827067pt;}
.h3{height:44.388750pt;}
.h2{height:55.736250pt;}
.h4{height:66.750000pt;}
.h1{height:77.763750pt;}
.h0{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x3{left:64.000000pt;}
.x5{left:88.000000pt;}
.x6{left:112.000000pt;}
.x1{left:251.040000pt;}
.x8{left:400.640024pt;}
.x7{left:410.079832pt;}
.x2{left:447.280000pt;}
.x4{left:471.600000pt;}
}




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