
    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_7f51555dce3d0f85073518d3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_1a462609e0bc331afc449935.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.897000;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_38d76948d63708346f0bde2a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.620000;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_8b0372af363afff2db4e643a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.890000;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);}
.v2{vertical-align:-21.696000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:21.696000px;}
.v1{vertical-align:23.754000px;}
.ls5{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.038257px;}
.ls8{letter-spacing:1.645034px;}
.ls6{letter-spacing:2.371909px;}
.lsf{letter-spacing:2.391030px;}
.ls7{letter-spacing:2.410166px;}
.lsa{letter-spacing:2.869245px;}
.ls4{letter-spacing:2.964877px;}
.ls2{letter-spacing:2.985797px;}
.ls0{letter-spacing:2.987923px;}
.ls3{letter-spacing:2.988600px;}
.ls1{letter-spacing:2.990400px;}
.lsb{letter-spacing:5.738490px;}
.ls9{letter-spacing:13.150665px;}
.lse{letter-spacing:14.298359px;}
.lsd{letter-spacing:14.346180px;}
.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;}
}
.ws7{word-spacing:-14.920027px;}
.ws37{word-spacing:-14.394001px;}
.ws14{word-spacing:-11.955150px;}
.ws2f{word-spacing:-11.936059px;}
.ws3{word-spacing:-11.506800px;}
.ws2b{word-spacing:-9.564150px;}
.ws2c{word-spacing:-5.776747px;}
.ws36{word-spacing:-2.410166px;}
.ws1a{word-spacing:-0.478206px;}
.ws23{word-spacing:-0.286924px;}
.ws2d{word-spacing:-0.038257px;}
.ws2a{word-spacing:-0.009609px;}
.ws29{word-spacing:0.000000px;}
.ws39{word-spacing:0.038212px;}
.ws22{word-spacing:1.099874px;}
.ws1b{word-spacing:1.578080px;}
.ws32{word-spacing:1.990541px;}
.ws2e{word-spacing:2.391030px;}
.ws26{word-spacing:2.677954px;}
.ws9{word-spacing:3.765863px;}
.ws35{word-spacing:4.734209px;}
.ws34{word-spacing:4.782030px;}
.ws1d{word-spacing:4.782060px;}
.ws15{word-spacing:4.901599px;}
.ws31{word-spacing:5.379840px;}
.ws6{word-spacing:5.917754px;}
.ws13{word-spacing:5.977530px;}
.ws4{word-spacing:5.977560px;}
.ws1e{word-spacing:6.168857px;}
.ws2{word-spacing:6.575340px;}
.wsc{word-spacing:6.814418px;}
.ws19{word-spacing:6.933970px;}
.ws16{word-spacing:7.113296px;}
.ws10{word-spacing:7.770828px;}
.ws12{word-spacing:8.189257px;}
.ws8{word-spacing:8.428360px;}
.ws38{word-spacing:9.516299px;}
.wsb{word-spacing:9.982525px;}
.ws1f{word-spacing:10.377070px;}
.ws18{word-spacing:11.417140px;}
.ws24{word-spacing:11.620406px;}
.wsf{word-spacing:11.955120px;}
.wsd{word-spacing:12.074671px;}
.ws1c{word-spacing:13.485409px;}
.ws3a{word-spacing:14.298359px;}
.ws0{word-spacing:14.346180px;}
.ws25{word-spacing:14.585283px;}
.wsa{word-spacing:16.258963px;}
.ws21{word-spacing:16.689389px;}
.ws11{word-spacing:17.275148px;}
.ws5{word-spacing:17.932680px;}
.ws1{word-spacing:20.120602px;}
.ws17{word-spacing:20.383480px;}
.ws20{word-spacing:22.284400px;}
.wse{word-spacing:26.839244px;}
.ws27{word-spacing:30.366081px;}
.ws28{word-spacing:42.321231px;}
.ws33{word-spacing:58.263667px;}
.ws30{word-spacing:91.134490px;}
._37{margin-left:-11.824844px;}
._2{margin-left:-7.308013px;}
._0{margin-left:-5.738472px;}
._4{margin-left:-4.634290px;}
._5{margin-left:-2.910604px;}
._1{margin-left:-1.344960px;}
._6{width:1.938783px;}
._3{width:2.977931px;}
._23{width:10.472731px;}
._7{width:29.887875px;}
._9{width:40.462211px;}
._8{width:47.820600px;}
._30{width:71.444275px;}
._e{width:88.175578px;}
._16{width:94.147200px;}
._1d{width:97.159910px;}
._20{width:100.118822px;}
._21{width:172.316275px;}
._24{width:196.364160px;}
._12{width:221.657035px;}
._35{width:223.155763px;}
._18{width:262.159603px;}
._1f{width:270.014170px;}
._38{width:272.058509px;}
._44{width:280.235866px;}
._3c{width:282.226406px;}
._13{width:295.522238px;}
._c{width:305.367346px;}
._2a{width:309.663590px;}
._1a{width:312.245914px;}
._31{width:314.236454px;}
._f{width:320.323301px;}
._17{width:321.606835px;}
._1e{width:327.632256px;}
._10{width:330.544997px;}
._19{width:331.989926px;}
._4b{width:338.983718px;}
._1c{width:341.727437px;}
._50{width:344.955341px;}
._3f{width:348.828826px;}
._15{width:350.657971px;}
._22{width:372.446323px;}
._d{width:376.219838px;}
._3a{width:381.807245px;}
._27{width:383.528794px;}
._41{width:384.658560px;}
._36{width:389.554214px;}
._43{width:392.368203px;}
._26{width:393.373901px;}
._14{width:399.345523px;}
._1b{width:402.358234px;}
._2f{width:405.370944px;}
._28{width:408.329856px;}
._11{width:415.976856px;}
._55{width:440.186136px;}
._48{width:450.507802px;}
._46{width:459.438336px;}
._32{width:473.210726px;}
._4d{width:474.340493px;}
._2b{width:476.976614px;}
._53{width:482.041291px;}
._33{width:486.068544px;}
._2e{width:503.983411px;}
._2c{width:518.831770px;}
._25{width:568.487693px;}
._58{width:600.674390px;}
._34{width:605.608589px;}
._29{width:614.700518px;}
._a{width:617.605632px;}
._49{width:658.177253px;}
._3e{width:672.041986px;}
._45{width:685.399243px;}
._52{width:713.359157px;}
._2d{width:721.605566px;}
._40{width:745.653451px;}
._4f{width:787.245105px;}
._3d{width:809.612122px;}
._4a{width:853.409510px;}
._56{width:861.058646px;}
._47{width:879.496243px;}
._4e{width:882.570379px;}
._42{width:886.933540px;}
._54{width:946.811159px;}
._51{width:977.409331px;}
._57{width:1044.242198px;}
._4c{width:1073.977459px;}
._3b{width:1132.246617px;}
._b{width:1336.459853px;}
._39{width:1676.573338px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.256600px;}
.fs4{font-size:41.842800px;}
.fs3{font-size:46.027200px;}
.fs6{font-size:47.820600px;}
.fs1{font-size:53.798400px;}
.fs5{font-size:59.775600px;}
.fs2{font-size:65.753400px;}
.fs0{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.y46{bottom:342.252000px;}
.y45{bottom:363.174000px;}
.y5f{bottom:363.921000px;}
.y44{bottom:384.094500px;}
.y5e{bottom:384.841500px;}
.y43{bottom:405.016500px;}
.y5d{bottom:405.763500px;}
.y42{bottom:425.937000px;}
.y5c{bottom:426.685500px;}
.y41{bottom:446.859000px;}
.y5b{bottom:447.606000px;}
.y40{bottom:467.781000px;}
.y5a{bottom:468.528000px;}
.y3f{bottom:488.701500px;}
.y59{bottom:489.448500px;}
.y3e{bottom:509.623500px;}
.y58{bottom:510.370500px;}
.y3d{bottom:530.545500px;}
.y57{bottom:531.292500px;}
.y2b{bottom:538.339500px;}
.y3c{bottom:551.466000px;}
.y2a{bottom:551.788500px;}
.y56{bottom:552.213000px;}
.y17{bottom:560.083500px;}
.y29{bottom:565.239000px;}
.y3b{bottom:572.388000px;}
.y55{bottom:573.135000px;}
.y16{bottom:578.016000px;}
.y28{bottom:578.688000px;}
.y27{bottom:592.137000px;}
.y3a{bottom:593.308500px;}
.y54{bottom:594.057000px;}
.y15{bottom:600.655500px;}
.y26{bottom:605.587500px;}
.y39{bottom:614.230500px;}
.y53{bottom:614.977500px;}
.y25{bottom:619.036500px;}
.y14{bottom:628.675500px;}
.y24{bottom:632.487000px;}
.y38{bottom:635.152500px;}
.y52{bottom:635.899500px;}
.y23{bottom:645.936000px;}
.y13{bottom:646.608000px;}
.y37{bottom:656.073000px;}
.y51{bottom:656.820000px;}
.y22{bottom:659.385000px;}
.y12{bottom:664.540500px;}
.y21{bottom:672.835500px;}
.y36{bottom:676.995000px;}
.y50{bottom:677.742000px;}
.y11{bottom:682.474500px;}
.y20{bottom:686.284500px;}
.y35{bottom:697.917000px;}
.y4f{bottom:698.664000px;}
.y1f{bottom:699.733500px;}
.y10{bottom:700.407000px;}
.y1e{bottom:713.184000px;}
.yf{bottom:718.339500px;}
.y34{bottom:718.837500px;}
.y4e{bottom:719.584500px;}
.y1d{bottom:726.633000px;}
.ye{bottom:736.272000px;}
.y33{bottom:739.759500px;}
.y4d{bottom:740.506500px;}
.y1c{bottom:748.825500px;}
.yd{bottom:754.204500px;}
.y32{bottom:754.702500px;}
.y4c{bottom:761.428500px;}
.yc{bottom:772.137000px;}
.y31{bottom:775.624500px;}
.y1b{bottom:776.845500px;}
.y4b{bottom:782.947500px;}
.yb{bottom:790.071000px;}
.y1a{bottom:794.778000px;}
.y30{bottom:796.546500px;}
.ya{bottom:808.003500px;}
.y19{bottom:812.710500px;}
.y4a{bottom:815.572500px;}
.y2f{bottom:818.065500px;}
.y9{bottom:825.936000px;}
.y49{bottom:829.021500px;}
.y18{bottom:830.643000px;}
.y48{bottom:842.472000px;}
.y8{bottom:848.575500px;}
.y2e{bottom:850.690500px;}
.y47{bottom:855.921000px;}
.y2d{bottom:864.139500px;}
.y2c{bottom:877.590000px;}
.y7{bottom:894.691500px;}
.y6{bottom:918.607500px;}
.y5{bottom:937.101000px;}
.y4{bottom:950.392500px;}
.y3{bottom:997.465500px;}
.y2{bottom:1039.309500px;}
.y1{bottom:1081.152000px;}
.h4{height:28.787846px;}
.h7{height:32.661470px;}
.h6{height:32.900573px;}
.h8{height:33.091855px;}
.h9{height:37.013299px;}
.h2{height:37.228493px;}
.h5{height:41.125613px;}
.h3{height:55.420714px;}
.h1{height:98.701718px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xa{left:73.446000px;}
.x9{left:88.390500px;}
.x2{left:99.864000px;}
.x11{left:103.870500px;}
.x17{left:111.169500px;}
.x19{left:124.492500px;}
.x12{left:141.144000px;}
.x7{left:155.910000px;}
.xb{left:177.666000px;}
.x8{left:186.310500px;}
.x1{left:200.250000px;}
.x4{left:210.810000px;}
.x5{left:241.845000px;}
.x18{left:287.044500px;}
.x10{left:291.163500px;}
.x6{left:301.464000px;}
.x13{left:329.155500px;}
.x16{left:354.925500px;}
.x3{left:409.183500px;}
.x15{left:434.223000px;}
.xf{left:436.213500px;}
.xc{left:467.967000px;}
.xe{left:489.378000px;}
.xd{left:614.418000px;}
.x14{left:729.765000px;}
@media print{
.v2{vertical-align:-19.285333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:19.285333pt;}
.v1{vertical-align:21.114667pt;}
.ls5{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.034006pt;}
.ls8{letter-spacing:1.462252pt;}
.ls6{letter-spacing:2.108364pt;}
.lsf{letter-spacing:2.125360pt;}
.ls7{letter-spacing:2.142370pt;}
.lsa{letter-spacing:2.550440pt;}
.ls4{letter-spacing:2.635446pt;}
.ls2{letter-spacing:2.654042pt;}
.ls0{letter-spacing:2.655932pt;}
.ls3{letter-spacing:2.656533pt;}
.ls1{letter-spacing:2.658133pt;}
.lsb{letter-spacing:5.100880pt;}
.ls9{letter-spacing:11.689480pt;}
.lse{letter-spacing:12.709653pt;}
.lsd{letter-spacing:12.752160pt;}
.ws7{word-spacing:-13.262246pt;}
.ws37{word-spacing:-12.794667pt;}
.ws14{word-spacing:-10.626800pt;}
.ws2f{word-spacing:-10.609830pt;}
.ws3{word-spacing:-10.228267pt;}
.ws2b{word-spacing:-8.501467pt;}
.ws2c{word-spacing:-5.134886pt;}
.ws36{word-spacing:-2.142370pt;}
.ws1a{word-spacing:-0.425072pt;}
.ws23{word-spacing:-0.255043pt;}
.ws2d{word-spacing:-0.034006pt;}
.ws2a{word-spacing:-0.008541pt;}
.ws29{word-spacing:0.000000pt;}
.ws39{word-spacing:0.033966pt;}
.ws22{word-spacing:0.977666pt;}
.ws1b{word-spacing:1.402738pt;}
.ws32{word-spacing:1.769370pt;}
.ws2e{word-spacing:2.125360pt;}
.ws26{word-spacing:2.380403pt;}
.ws9{word-spacing:3.347434pt;}
.ws35{word-spacing:4.208186pt;}
.ws34{word-spacing:4.250693pt;}
.ws1d{word-spacing:4.250720pt;}
.ws15{word-spacing:4.356977pt;}
.ws31{word-spacing:4.782080pt;}
.ws6{word-spacing:5.260226pt;}
.ws13{word-spacing:5.313360pt;}
.ws4{word-spacing:5.313387pt;}
.ws1e{word-spacing:5.483429pt;}
.ws2{word-spacing:5.844747pt;}
.wsc{word-spacing:6.057261pt;}
.ws19{word-spacing:6.163529pt;}
.ws16{word-spacing:6.322930pt;}
.ws10{word-spacing:6.907403pt;}
.ws12{word-spacing:7.279340pt;}
.ws8{word-spacing:7.491875pt;}
.ws38{word-spacing:8.458933pt;}
.wsb{word-spacing:8.873356pt;}
.ws1f{word-spacing:9.224062pt;}
.ws18{word-spacing:10.148569pt;}
.ws24{word-spacing:10.329250pt;}
.wsf{word-spacing:10.626773pt;}
.wsd{word-spacing:10.733041pt;}
.ws1c{word-spacing:11.987030pt;}
.ws3a{word-spacing:12.709653pt;}
.ws0{word-spacing:12.752160pt;}
.ws25{word-spacing:12.964696pt;}
.wsa{word-spacing:14.452412pt;}
.ws21{word-spacing:14.835013pt;}
.ws11{word-spacing:15.355687pt;}
.ws5{word-spacing:15.940160pt;}
.ws1{word-spacing:17.884979pt;}
.ws17{word-spacing:18.118649pt;}
.ws20{word-spacing:19.808355pt;}
.wse{word-spacing:23.857106pt;}
.ws27{word-spacing:26.992072pt;}
.ws28{word-spacing:37.618872pt;}
.ws33{word-spacing:51.789926pt;}
.ws30{word-spacing:81.008435pt;}
._37{margin-left:-10.510973pt;}
._2{margin-left:-6.496012pt;}
._0{margin-left:-5.100864pt;}
._4{margin-left:-4.119369pt;}
._5{margin-left:-2.587204pt;}
._1{margin-left:-1.195520pt;}
._6{width:1.723363pt;}
._3{width:2.647050pt;}
._23{width:9.309094pt;}
._7{width:26.567000pt;}
._9{width:35.966410pt;}
._8{width:42.507200pt;}
._30{width:63.506022pt;}
._e{width:78.378291pt;}
._16{width:83.686400pt;}
._1d{width:86.364365pt;}
._20{width:88.994509pt;}
._21{width:153.170022pt;}
._24{width:174.545920pt;}
._12{width:197.028476pt;}
._35{width:198.360678pt;}
._18{width:233.030758pt;}
._1f{width:240.012595pt;}
._38{width:241.829786pt;}
._44{width:249.098547pt;}
._3c{width:250.867917pt;}
._13{width:262.686434pt;}
._c{width:271.437641pt;}
._2a{width:275.256525pt;}
._1a{width:277.551923pt;}
._31{width:279.321293pt;}
._f{width:284.731823pt;}
._17{width:285.872742pt;}
._1e{width:291.228672pt;}
._10{width:293.817775pt;}
._19{width:295.102157pt;}
._4b{width:301.318861pt;}
._1c{width:303.757722pt;}
._50{width:306.626970pt;}
._3f{width:310.070067pt;}
._15{width:311.695974pt;}
._22{width:331.063398pt;}
._d{width:334.417634pt;}
._3a{width:339.384218pt;}
._27{width:340.914483pt;}
._41{width:341.918720pt;}
._36{width:346.270413pt;}
._43{width:348.771736pt;}
._26{width:349.665690pt;}
._14{width:354.973798pt;}
._1b{width:357.651763pt;}
._2f{width:360.329728pt;}
._28{width:362.959872pt;}
._11{width:369.757205pt;}
._55{width:391.276565pt;}
._48{width:400.451379pt;}
._46{width:408.389632pt;}
._32{width:420.631757pt;}
._4d{width:421.635994pt;}
._2b{width:423.979213pt;}
._53{width:428.481148pt;}
._33{width:432.060928pt;}
._2e{width:447.985254pt;}
._2c{width:461.183795pt;}
._25{width:505.322394pt;}
._58{width:533.932791pt;}
._34{width:538.318746pt;}
._29{width:546.400461pt;}
._a{width:548.982784pt;}
._49{width:585.046447pt;}
._3e{width:597.370654pt;}
._45{width:609.243772pt;}
._52{width:634.097028pt;}
._2d{width:641.427170pt;}
._40{width:662.803068pt;}
._4f{width:699.773427pt;}
._3d{width:719.655219pt;}
._4a{width:758.586231pt;}
._56{width:765.385463pt;}
._47{width:781.774438pt;}
._4e{width:784.507004pt;}
._42{width:788.385369pt;}
._54{width:841.609919pt;}
._51{width:868.808294pt;}
._57{width:928.215287pt;}
._4c{width:954.646630pt;}
._3b{width:1006.441437pt;}
._b{width:1187.964314pt;}
._39{width:1490.287411pt;}
.fs7{font-size:34.005867pt;}
.fs4{font-size:37.193600pt;}
.fs3{font-size:40.913067pt;}
.fs6{font-size:42.507200pt;}
.fs1{font-size:47.820800pt;}
.fs5{font-size:53.133867pt;}
.fs2{font-size:58.447467pt;}
.fs0{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.y46{bottom:304.224000pt;}
.y45{bottom:322.821333pt;}
.y5f{bottom:323.485333pt;}
.y44{bottom:341.417333pt;}
.y5e{bottom:342.081333pt;}
.y43{bottom:360.014667pt;}
.y5d{bottom:360.678667pt;}
.y42{bottom:378.610667pt;}
.y5c{bottom:379.276000pt;}
.y41{bottom:397.208000pt;}
.y5b{bottom:397.872000pt;}
.y40{bottom:415.805333pt;}
.y5a{bottom:416.469333pt;}
.y3f{bottom:434.401333pt;}
.y59{bottom:435.065333pt;}
.y3e{bottom:452.998667pt;}
.y58{bottom:453.662667pt;}
.y3d{bottom:471.596000pt;}
.y57{bottom:472.260000pt;}
.y2b{bottom:478.524000pt;}
.y3c{bottom:490.192000pt;}
.y2a{bottom:490.478667pt;}
.y56{bottom:490.856000pt;}
.y17{bottom:497.852000pt;}
.y29{bottom:502.434667pt;}
.y3b{bottom:508.789333pt;}
.y55{bottom:509.453333pt;}
.y16{bottom:513.792000pt;}
.y28{bottom:514.389333pt;}
.y27{bottom:526.344000pt;}
.y3a{bottom:527.385333pt;}
.y54{bottom:528.050667pt;}
.y15{bottom:533.916000pt;}
.y26{bottom:538.300000pt;}
.y39{bottom:545.982667pt;}
.y53{bottom:546.646667pt;}
.y25{bottom:550.254667pt;}
.y14{bottom:558.822667pt;}
.y24{bottom:562.210667pt;}
.y38{bottom:564.580000pt;}
.y52{bottom:565.244000pt;}
.y23{bottom:574.165333pt;}
.y13{bottom:574.762667pt;}
.y37{bottom:583.176000pt;}
.y51{bottom:583.840000pt;}
.y22{bottom:586.120000pt;}
.y12{bottom:590.702667pt;}
.y21{bottom:598.076000pt;}
.y36{bottom:601.773333pt;}
.y50{bottom:602.437333pt;}
.y11{bottom:606.644000pt;}
.y20{bottom:610.030667pt;}
.y35{bottom:620.370667pt;}
.y4f{bottom:621.034667pt;}
.y1f{bottom:621.985333pt;}
.y10{bottom:622.584000pt;}
.y1e{bottom:633.941333pt;}
.yf{bottom:638.524000pt;}
.y34{bottom:638.966667pt;}
.y4e{bottom:639.630667pt;}
.y1d{bottom:645.896000pt;}
.ye{bottom:654.464000pt;}
.y33{bottom:657.564000pt;}
.y4d{bottom:658.228000pt;}
.y1c{bottom:665.622667pt;}
.yd{bottom:670.404000pt;}
.y32{bottom:670.846667pt;}
.y4c{bottom:676.825333pt;}
.yc{bottom:686.344000pt;}
.y31{bottom:689.444000pt;}
.y1b{bottom:690.529333pt;}
.y4b{bottom:695.953333pt;}
.yb{bottom:702.285333pt;}
.y1a{bottom:706.469333pt;}
.y30{bottom:708.041333pt;}
.ya{bottom:718.225333pt;}
.y19{bottom:722.409333pt;}
.y4a{bottom:724.953333pt;}
.y2f{bottom:727.169333pt;}
.y9{bottom:734.165333pt;}
.y49{bottom:736.908000pt;}
.y18{bottom:738.349333pt;}
.y48{bottom:748.864000pt;}
.y8{bottom:754.289333pt;}
.y2e{bottom:756.169333pt;}
.y47{bottom:760.818667pt;}
.y2d{bottom:768.124000pt;}
.y2c{bottom:780.080000pt;}
.y7{bottom:795.281333pt;}
.y6{bottom:816.540000pt;}
.y5{bottom:832.978667pt;}
.y4{bottom:844.793333pt;}
.y3{bottom:886.636000pt;}
.y2{bottom:923.830667pt;}
.y1{bottom:961.024000pt;}
.h4{height:25.589197pt;}
.h7{height:29.032418pt;}
.h6{height:29.244954pt;}
.h8{height:29.414982pt;}
.h9{height:32.900710pt;}
.h2{height:33.091994pt;}
.h5{height:36.556100pt;}
.h3{height:49.262857pt;}
.h1{height:87.734861pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xa{left:65.285333pt;}
.x9{left:78.569333pt;}
.x2{left:88.768000pt;}
.x11{left:92.329333pt;}
.x17{left:98.817333pt;}
.x19{left:110.660000pt;}
.x12{left:125.461333pt;}
.x7{left:138.586667pt;}
.xb{left:157.925333pt;}
.x8{left:165.609333pt;}
.x1{left:178.000000pt;}
.x4{left:187.386667pt;}
.x5{left:214.973333pt;}
.x18{left:255.150667pt;}
.x10{left:258.812000pt;}
.x6{left:267.968000pt;}
.x13{left:292.582667pt;}
.x16{left:315.489333pt;}
.x3{left:363.718667pt;}
.x15{left:385.976000pt;}
.xf{left:387.745333pt;}
.xc{left:415.970667pt;}
.xe{left:435.002667pt;}
.xd{left:546.149333pt;}
.x14{left:648.680000pt;}
}




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