
    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_0bece86951b924367b1513e9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.049805;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_d01386d9a479cd7fb884489e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_a380ce87102a63ee81d0a097.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_45789e43b6292e3a380706f3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.691895;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_e9834e3f274395a1522d72b0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_61568201aea4f3a13a0b68b0.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a81cb974f1993cd1b82cd6ef.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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_a81cb974f1993cd1b82cd6ef.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;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);}
.v5{vertical-align:-19.800000px;}
.v3{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.000000px;}
.v4{vertical-align:19.800000px;}
.v1{vertical-align:21.600000px;}
.lse{letter-spacing:-1.080000px;}
.lsd{letter-spacing:-0.660000px;}
.lsb{letter-spacing:-0.528000px;}
.ls10{letter-spacing:-0.462000px;}
.lsc{letter-spacing:-0.396000px;}
.ls5{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.330000px;}
.ls11{letter-spacing:-0.264000px;}
.ls12{letter-spacing:-0.198000px;}
.ls8{letter-spacing:-0.180000px;}
.ls9{letter-spacing:-0.132000px;}
.ls6{letter-spacing:-0.120000px;}
.ls3{letter-spacing:-0.108000px;}
.ls7{letter-spacing:-0.084000px;}
.lsf{letter-spacing:-0.066000px;}
.ls4{letter-spacing:-0.060000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.007200px;}
.ls1{letter-spacing:0.007800px;}
.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:-15.012000px;}
.ws1{word-spacing:-15.000000px;}
.ws1c{word-spacing:-13.932000px;}
.ws1d{word-spacing:-11.550000px;}
.ws2{word-spacing:-10.500000px;}
.ws3{word-spacing:-10.416000px;}
.ws21{word-spacing:-4.554000px;}
.ws24{word-spacing:-4.488000px;}
.ws6{word-spacing:-3.960000px;}
.ws11{word-spacing:-3.300000px;}
.ws2d{word-spacing:-3.234000px;}
.ws16{word-spacing:-3.102000px;}
.ws9{word-spacing:-3.000000px;}
.ws7{word-spacing:-2.970000px;}
.ws20{word-spacing:-2.508000px;}
.wse{word-spacing:-2.376000px;}
.wsa{word-spacing:-2.280000px;}
.ws2c{word-spacing:-2.178000px;}
.ws27{word-spacing:-1.650000px;}
.ws22{word-spacing:-1.320000px;}
.ws28{word-spacing:-1.056000px;}
.ws5{word-spacing:-0.972000px;}
.ws14{word-spacing:-0.924000px;}
.ws29{word-spacing:-0.660000px;}
.ws25{word-spacing:-0.594000px;}
.ws1f{word-spacing:-0.528000px;}
.ws26{word-spacing:-0.462000px;}
.ws31{word-spacing:-0.264000px;}
.ws13{word-spacing:-0.066000px;}
.ws4{word-spacing:0.000000px;}
.ws8{word-spacing:0.060000px;}
.wsb{word-spacing:0.120000px;}
.ws2a{word-spacing:0.528000px;}
.ws2b{word-spacing:0.660000px;}
.wsc{word-spacing:1.242000px;}
.wsd{word-spacing:1.260000px;}
.ws30{word-spacing:1.782000px;}
.ws17{word-spacing:3.036000px;}
.ws23{word-spacing:4.026000px;}
.wsf{word-spacing:4.752000px;}
.ws12{word-spacing:5.280000px;}
.ws18{word-spacing:6.468000px;}
.ws15{word-spacing:6.534000px;}
.ws1a{word-spacing:9.900000px;}
.ws10{word-spacing:11.682000px;}
.ws2f{word-spacing:13.002000px;}
.ws2e{word-spacing:13.266000px;}
.ws1e{word-spacing:13.398000px;}
.ws1b{word-spacing:14.388000px;}
.ws19{word-spacing:26.202000px;}
._7{margin-left:-13.398000px;}
._3{margin-left:-7.992000px;}
._5{margin-left:-6.944400px;}
._1{margin-left:-4.914000px;}
._6{margin-left:-3.459600px;}
._0{margin-left:-2.014200px;}
._8{margin-left:-1.006200px;}
._2{width:1.057200px;}
._4{width:4.036200px;}
.fc4{color:rgb(177,86,56);}
.fc3{color:rgb(171,35,33);}
.fc2{color:rgb(198,56,54);}
.fc1{color:rgb(133,138,141);}
.fc0{color:rgb(27,24,26);}
.fs5{font-size:42.000000px;}
.fs7{font-size:46.200000px;}
.fs3{font-size:50.400000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:57.631050px;}
.y2b{bottom:128.314950px;}
.y49{bottom:133.725150px;}
.y2a{bottom:149.314950px;}
.y29{bottom:170.314950px;}
.y28{bottom:191.314950px;}
.y27{bottom:212.314950px;}
.y26{bottom:233.314950px;}
.y25{bottom:254.314950px;}
.y24{bottom:275.314950px;}
.y23{bottom:296.314950px;}
.y22{bottom:317.314950px;}
.y21{bottom:338.314950px;}
.y20{bottom:359.314950px;}
.y1f{bottom:380.314950px;}
.y1e{bottom:401.314950px;}
.y1d{bottom:422.314950px;}
.y1c{bottom:443.314950px;}
.y1b{bottom:464.314950px;}
.y1a{bottom:485.314950px;}
.y19{bottom:506.314950px;}
.y18{bottom:527.314950px;}
.y48{bottom:548.314950px;}
.y47{bottom:569.314950px;}
.y46{bottom:590.314950px;}
.y45{bottom:611.314950px;}
.y17{bottom:625.564800px;}
.y44{bottom:632.314950px;}
.y16{bottom:643.564800px;}
.y43{bottom:653.314950px;}
.y15{bottom:661.564800px;}
.y42{bottom:674.314950px;}
.y14{bottom:679.564800px;}
.y41{bottom:695.314950px;}
.y13{bottom:697.564800px;}
.y40{bottom:716.314950px;}
.y12{bottom:720.064800px;}
.y11{bottom:733.564800px;}
.y3f{bottom:737.314950px;}
.y10{bottom:751.564800px;}
.y3e{bottom:758.314950px;}
.yf{bottom:769.564800px;}
.y3d{bottom:779.314950px;}
.ye{bottom:787.564800px;}
.y3c{bottom:800.314950px;}
.yd{bottom:805.564800px;}
.y3b{bottom:821.314950px;}
.yc{bottom:823.564800px;}
.y3a{bottom:842.314950px;}
.y39{bottom:863.314950px;}
.y38{bottom:884.314950px;}
.yb{bottom:901.092450px;}
.y37{bottom:905.314950px;}
.y36{bottom:926.314950px;}
.y35{bottom:947.314950px;}
.y34{bottom:968.314950px;}
.ya{bottom:973.612050px;}
.y33{bottom:989.314950px;}
.y9{bottom:994.612050px;}
.y32{bottom:1010.314950px;}
.y31{bottom:1031.314950px;}
.y30{bottom:1052.314950px;}
.y2f{bottom:1073.314950px;}
.y8{bottom:1082.502300px;}
.y2e{bottom:1094.314950px;}
.y7{bottom:1100.502300px;}
.y2d{bottom:1115.314950px;}
.y6{bottom:1118.502300px;}
.y5{bottom:1136.502300px;}
.y4{bottom:1163.006250px;}
.y3{bottom:1181.006250px;}
.y2c{bottom:1189.226850px;}
.y2{bottom:1199.006250px;}
.h8{height:32.039062px;}
.h3{height:39.313477px;}
.h4{height:39.339844px;}
.h9{height:41.660156px;}
.hc{height:45.035156px;}
.h2{height:50.039062px;}
.h7{height:53.027344px;}
.ha{height:55.042969px;}
.h5{height:58.292578px;}
.hb{height:58.330078px;}
.h6{height:73.195312px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:127.559100px;}
.xb{left:132.374100px;}
.xa{left:170.078850px;}
.x9{left:191.338650px;}
.x1{left:442.706700px;}
.x5{left:534.564000px;}
.x2{left:539.026650px;}
.x4{left:568.274550px;}
.x7{left:571.300200px;}
.x6{left:595.834800px;}
.x3{left:665.879250px;}
@media print{
.v5{vertical-align:-17.600000pt;}
.v3{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.000000pt;}
.v4{vertical-align:17.600000pt;}
.v1{vertical-align:19.200000pt;}
.lse{letter-spacing:-0.960000pt;}
.lsd{letter-spacing:-0.586667pt;}
.lsb{letter-spacing:-0.469333pt;}
.ls10{letter-spacing:-0.410667pt;}
.lsc{letter-spacing:-0.352000pt;}
.ls5{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.293333pt;}
.ls11{letter-spacing:-0.234667pt;}
.ls12{letter-spacing:-0.176000pt;}
.ls8{letter-spacing:-0.160000pt;}
.ls9{letter-spacing:-0.117333pt;}
.ls6{letter-spacing:-0.106667pt;}
.ls3{letter-spacing:-0.096000pt;}
.ls7{letter-spacing:-0.074667pt;}
.lsf{letter-spacing:-0.058667pt;}
.ls4{letter-spacing:-0.053333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.006400pt;}
.ls1{letter-spacing:0.006933pt;}
.ws0{word-spacing:-13.344000pt;}
.ws1{word-spacing:-13.333333pt;}
.ws1c{word-spacing:-12.384000pt;}
.ws1d{word-spacing:-10.266667pt;}
.ws2{word-spacing:-9.333333pt;}
.ws3{word-spacing:-9.258667pt;}
.ws21{word-spacing:-4.048000pt;}
.ws24{word-spacing:-3.989333pt;}
.ws6{word-spacing:-3.520000pt;}
.ws11{word-spacing:-2.933333pt;}
.ws2d{word-spacing:-2.874667pt;}
.ws16{word-spacing:-2.757333pt;}
.ws9{word-spacing:-2.666667pt;}
.ws7{word-spacing:-2.640000pt;}
.ws20{word-spacing:-2.229333pt;}
.wse{word-spacing:-2.112000pt;}
.wsa{word-spacing:-2.026667pt;}
.ws2c{word-spacing:-1.936000pt;}
.ws27{word-spacing:-1.466667pt;}
.ws22{word-spacing:-1.173333pt;}
.ws28{word-spacing:-0.938667pt;}
.ws5{word-spacing:-0.864000pt;}
.ws14{word-spacing:-0.821333pt;}
.ws29{word-spacing:-0.586667pt;}
.ws25{word-spacing:-0.528000pt;}
.ws1f{word-spacing:-0.469333pt;}
.ws26{word-spacing:-0.410667pt;}
.ws31{word-spacing:-0.234667pt;}
.ws13{word-spacing:-0.058667pt;}
.ws4{word-spacing:0.000000pt;}
.ws8{word-spacing:0.053333pt;}
.wsb{word-spacing:0.106667pt;}
.ws2a{word-spacing:0.469333pt;}
.ws2b{word-spacing:0.586667pt;}
.wsc{word-spacing:1.104000pt;}
.wsd{word-spacing:1.120000pt;}
.ws30{word-spacing:1.584000pt;}
.ws17{word-spacing:2.698667pt;}
.ws23{word-spacing:3.578667pt;}
.wsf{word-spacing:4.224000pt;}
.ws12{word-spacing:4.693333pt;}
.ws18{word-spacing:5.749333pt;}
.ws15{word-spacing:5.808000pt;}
.ws1a{word-spacing:8.800000pt;}
.ws10{word-spacing:10.384000pt;}
.ws2f{word-spacing:11.557333pt;}
.ws2e{word-spacing:11.792000pt;}
.ws1e{word-spacing:11.909333pt;}
.ws1b{word-spacing:12.789333pt;}
.ws19{word-spacing:23.290667pt;}
._7{margin-left:-11.909333pt;}
._3{margin-left:-7.104000pt;}
._5{margin-left:-6.172800pt;}
._1{margin-left:-4.368000pt;}
._6{margin-left:-3.075200pt;}
._0{margin-left:-1.790400pt;}
._8{margin-left:-0.894400pt;}
._2{width:0.939733pt;}
._4{width:3.587733pt;}
.fs5{font-size:37.333333pt;}
.fs7{font-size:41.066667pt;}
.fs3{font-size:44.800000pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:51.227600pt;}
.y2b{bottom:114.057733pt;}
.y49{bottom:118.866800pt;}
.y2a{bottom:132.724400pt;}
.y29{bottom:151.391067pt;}
.y28{bottom:170.057733pt;}
.y27{bottom:188.724400pt;}
.y26{bottom:207.391067pt;}
.y25{bottom:226.057733pt;}
.y24{bottom:244.724400pt;}
.y23{bottom:263.391067pt;}
.y22{bottom:282.057733pt;}
.y21{bottom:300.724400pt;}
.y20{bottom:319.391067pt;}
.y1f{bottom:338.057733pt;}
.y1e{bottom:356.724400pt;}
.y1d{bottom:375.391067pt;}
.y1c{bottom:394.057733pt;}
.y1b{bottom:412.724400pt;}
.y1a{bottom:431.391067pt;}
.y19{bottom:450.057733pt;}
.y18{bottom:468.724400pt;}
.y48{bottom:487.391067pt;}
.y47{bottom:506.057733pt;}
.y46{bottom:524.724400pt;}
.y45{bottom:543.391067pt;}
.y17{bottom:556.057600pt;}
.y44{bottom:562.057733pt;}
.y16{bottom:572.057600pt;}
.y43{bottom:580.724400pt;}
.y15{bottom:588.057600pt;}
.y42{bottom:599.391067pt;}
.y14{bottom:604.057600pt;}
.y41{bottom:618.057733pt;}
.y13{bottom:620.057600pt;}
.y40{bottom:636.724400pt;}
.y12{bottom:640.057600pt;}
.y11{bottom:652.057600pt;}
.y3f{bottom:655.391067pt;}
.y10{bottom:668.057600pt;}
.y3e{bottom:674.057733pt;}
.yf{bottom:684.057600pt;}
.y3d{bottom:692.724400pt;}
.ye{bottom:700.057600pt;}
.y3c{bottom:711.391067pt;}
.yd{bottom:716.057600pt;}
.y3b{bottom:730.057733pt;}
.yc{bottom:732.057600pt;}
.y3a{bottom:748.724400pt;}
.y39{bottom:767.391067pt;}
.y38{bottom:786.057733pt;}
.yb{bottom:800.971067pt;}
.y37{bottom:804.724400pt;}
.y36{bottom:823.391067pt;}
.y35{bottom:842.057733pt;}
.y34{bottom:860.724400pt;}
.ya{bottom:865.432933pt;}
.y33{bottom:879.391067pt;}
.y9{bottom:884.099600pt;}
.y32{bottom:898.057733pt;}
.y31{bottom:916.724400pt;}
.y30{bottom:935.391067pt;}
.y2f{bottom:954.057733pt;}
.y8{bottom:962.224267pt;}
.y2e{bottom:972.724400pt;}
.y7{bottom:978.224267pt;}
.y2d{bottom:991.391067pt;}
.y6{bottom:994.224267pt;}
.y5{bottom:1010.224267pt;}
.y4{bottom:1033.783333pt;}
.y3{bottom:1049.783333pt;}
.y2c{bottom:1057.090533pt;}
.y2{bottom:1065.783333pt;}
.h8{height:28.479167pt;}
.h3{height:34.945312pt;}
.h4{height:34.968750pt;}
.h9{height:37.031250pt;}
.hc{height:40.031250pt;}
.h2{height:44.479167pt;}
.h7{height:47.135417pt;}
.ha{height:48.927083pt;}
.h5{height:51.815625pt;}
.hb{height:51.848958pt;}
.h6{height:65.062500pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:113.385867pt;}
.xb{left:117.665867pt;}
.xa{left:151.181200pt;}
.x9{left:170.078800pt;}
.x1{left:393.517067pt;}
.x5{left:475.168000pt;}
.x2{left:479.134800pt;}
.x4{left:505.132933pt;}
.x7{left:507.822400pt;}
.x6{left:529.630933pt;}
.x3{left:591.892667pt;}
}




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