
    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_988648ecb02b2e6b9bdde866.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.706543;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_035d061806fe9e6211ad67de.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.034180;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_bff7d33bb4c09b69604f3578.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_aed8b0b993ebb5e77c3681e5.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_f6a4439ba3646abbe9ed43b5.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;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;}
.m4{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-76.319969px;}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.009850px;}
.ls7{letter-spacing:0.009900px;}
.lsc{letter-spacing:0.019800px;}
.ls27{letter-spacing:0.019831px;}
.ls2d{letter-spacing:0.019875px;}
.ls4{letter-spacing:0.070680px;}
.ls3{letter-spacing:0.103020px;}
.ls10{letter-spacing:0.127122px;}
.ls37{letter-spacing:0.189300px;}
.ls17{letter-spacing:0.192180px;}
.ls20{letter-spacing:0.259560px;}
.ls2f{letter-spacing:0.274784px;}
.ls1d{letter-spacing:0.275460px;}
.ls21{letter-spacing:0.360360px;}
.ls35{letter-spacing:0.409020px;}
.ls32{letter-spacing:0.591360px;}
.ls36{letter-spacing:0.591900px;}
.ls38{letter-spacing:0.670740px;}
.ls6{letter-spacing:0.730320px;}
.ls28{letter-spacing:0.740220px;}
.ls39{letter-spacing:0.909720px;}
.ls18{letter-spacing:1.450739px;}
.ls9{letter-spacing:2.171219px;}
.ls1b{letter-spacing:2.891639px;}
.ls16{letter-spacing:3.612059px;}
.ls14{letter-spacing:4.332478px;}
.ls8{letter-spacing:5.052898px;}
.ls24{letter-spacing:5.773378px;}
.ls5{letter-spacing:6.493797px;}
.ls11{letter-spacing:7.214217px;}
.ls15{letter-spacing:7.934637px;}
.ls34{letter-spacing:8.655057px;}
.ls1e{letter-spacing:9.375476px;}
.ls3a{letter-spacing:10.095956px;}
.ls2e{letter-spacing:11.536795px;}
.lsb{letter-spacing:12.257215px;}
.ls31{letter-spacing:13.698115px;}
.ls30{letter-spacing:14.418534px;}
.ls1a{letter-spacing:15.138954px;}
.ls19{letter-spacing:15.859374px;}
.ls29{letter-spacing:16.579793px;}
.lsf{letter-spacing:17.300213px;}
.ls13{letter-spacing:18.741113px;}
.ls12{letter-spacing:19.461532px;}
.ls33{letter-spacing:20.181952px;}
.ls2b{letter-spacing:20.902372px;}
.ls2c{letter-spacing:21.622791px;}
.ls2a{letter-spacing:23.063691px;}
.ls26{letter-spacing:23.784110px;}
.lse{letter-spacing:25.224950px;}
.ls22{letter-spacing:25.945430px;}
.ls1f{letter-spacing:26.665849px;}
.ls23{letter-spacing:27.386269px;}
.ls25{letter-spacing:33.870166px;}
.ls1{letter-spacing:111.676755px;}
.ls2{letter-spacing:1242.029503px;}
.ls1c{letter-spacing:1258.602044px;}
.ls0{letter-spacing:2494.841002px;}
.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:-17.818553px;}
.ws5{word-spacing:-16.579869px;}
.ws2{word-spacing:-16.569843px;}
.ws4{word-spacing:-16.559993px;}
.ws3{word-spacing:-16.075434px;}
.ws1{word-spacing:0.000000px;}
._13{margin-left:-7.540629px;}
._0{margin-left:-1.213440px;}
._2{width:1.062268px;}
._1{width:2.230677px;}
._b{width:3.524456px;}
._9{width:5.508146px;}
._e{width:7.064472px;}
._f{width:8.082843px;}
._c{width:9.207743px;}
._7{width:10.498784px;}
._8{width:11.535557px;}
._4{width:13.527163px;}
._6{width:15.382126px;}
._a{width:17.695969px;}
._3{width:19.351442px;}
._14{width:20.752697px;}
._1c{width:21.775215px;}
._11{width:22.824888px;}
._10{width:24.079394px;}
._12{width:25.116082px;}
._5{width:26.416050px;}
._19{width:27.846032px;}
._18{width:29.320267px;}
._17{width:30.495534px;}
._16{width:33.997537px;}
._1a{width:35.268586px;}
._d{width:111.676621px;}
._15{width:195.966987px;}
._1b{width:1029.502523px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,128,0);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.879984px;}
.fs2{font-size:41.759983px;}
.fs5{font-size:48.239981px;}
.fs4{font-size:59.759976px;}
.fs1{font-size:66.239974px;}
.fs0{font-size:71.999971px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.958923px;}
.y41{bottom:110.100256px;}
.y45{bottom:110.280256px;}
.y44{bottom:114.780254px;}
.y39{bottom:117.119953px;}
.y40{bottom:127.380249px;}
.y43{bottom:131.520247px;}
.y3f{bottom:132.600247px;}
.y38{bottom:136.199946px;}
.y3e{bottom:144.840242px;}
.y37{bottom:155.099938px;}
.y36{bottom:173.999930px;}
.y35{bottom:193.079923px;}
.y34{bottom:211.979915px;}
.y33{bottom:231.059908px;}
.y32{bottom:249.959900px;}
.y31{bottom:268.859892px;}
.y30{bottom:287.939885px;}
.y2f{bottom:306.839877px;}
.y2e{bottom:325.919870px;}
.y2d{bottom:344.819862px;}
.y2c{bottom:363.719855px;}
.y2b{bottom:382.799847px;}
.y2a{bottom:401.699839px;}
.y29{bottom:420.779832px;}
.y28{bottom:439.679824px;}
.y27{bottom:458.579817px;}
.y42{bottom:464.519814px;}
.y26{bottom:477.659809px;}
.y3d{bottom:496.559801px;}
.y25{bottom:515.639794px;}
.y24{bottom:534.539786px;}
.y23{bottom:553.619779px;}
.y22{bottom:572.519771px;}
.y21{bottom:591.419763px;}
.y20{bottom:610.499756px;}
.y1f{bottom:629.399748px;}
.y1e{bottom:648.479741px;}
.y1d{bottom:667.379733px;}
.y1c{bottom:686.279725px;}
.y1b{bottom:705.359718px;}
.y1a{bottom:724.259710px;}
.y19{bottom:743.339703px;}
.y18{bottom:762.239695px;}
.y17{bottom:781.139688px;}
.y16{bottom:800.219680px;}
.y15{bottom:819.119672px;}
.y14{bottom:838.199665px;}
.y13{bottom:857.099657px;}
.y12{bottom:875.999650px;}
.y11{bottom:895.079642px;}
.y10{bottom:913.979634px;}
.yf{bottom:933.059627px;}
.ye{bottom:951.959619px;}
.yd{bottom:970.859612px;}
.yc{bottom:989.939604px;}
.yb{bottom:1008.479597px;}
.y3c{bottom:1008.839596px;}
.ya{bottom:1027.559589px;}
.y3b{bottom:1027.919589px;}
.y9{bottom:1046.819581px;}
.y8{bottom:1065.899574px;}
.y7{bottom:1084.799566px;}
.y6{bottom:1103.699559px;}
.y5{bottom:1122.779551px;}
.y3a{bottom:1128.719549px;}
.y4{bottom:1141.679543px;}
.y2{bottom:1188.660600px;}
.y1{bottom:1192.799523px;}
.h2{height:21.060000px;}
.h8{height:33.706744px;}
.h6{height:38.158578px;}
.h5{height:40.985140px;}
.h1{height:50.308574px;}
.h7{height:58.651148px;}
.h3{height:65.010911px;}
.h4{height:66.757473px;}
.h0{height:1263.000000px;}
.w1{width:0.180000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:127.619949px;}
.xb{left:132.479947px;}
.xf{left:134.279946px;}
.x10{left:138.239945px;}
.xc{left:159.656457px;}
.x3{left:230.572408px;}
.x4{left:361.799934px;}
.x7{left:369.359938px;}
.x6{left:370.979943px;}
.x9{left:386.279845px;}
.xa{left:391.499843px;}
.x8{left:442.079971px;}
.x5{left:446.219892px;}
.x11{left:552.599779px;}
.xd{left:600.119760px;}
.xe{left:605.339758px;}
.x2{left:764.820000px;}
@media print{
.v1{vertical-align:-67.839973pt;}
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.008755pt;}
.ls7{letter-spacing:0.008800pt;}
.lsc{letter-spacing:0.017600pt;}
.ls27{letter-spacing:0.017628pt;}
.ls2d{letter-spacing:0.017667pt;}
.ls4{letter-spacing:0.062827pt;}
.ls3{letter-spacing:0.091573pt;}
.ls10{letter-spacing:0.112997pt;}
.ls37{letter-spacing:0.168267pt;}
.ls17{letter-spacing:0.170827pt;}
.ls20{letter-spacing:0.230720pt;}
.ls2f{letter-spacing:0.244252pt;}
.ls1d{letter-spacing:0.244853pt;}
.ls21{letter-spacing:0.320320pt;}
.ls35{letter-spacing:0.363573pt;}
.ls32{letter-spacing:0.525653pt;}
.ls36{letter-spacing:0.526133pt;}
.ls38{letter-spacing:0.596213pt;}
.ls6{letter-spacing:0.649173pt;}
.ls28{letter-spacing:0.657973pt;}
.ls39{letter-spacing:0.808640pt;}
.ls18{letter-spacing:1.289546pt;}
.ls9{letter-spacing:1.929973pt;}
.ls1b{letter-spacing:2.570346pt;}
.ls16{letter-spacing:3.210719pt;}
.ls14{letter-spacing:3.851092pt;}
.ls8{letter-spacing:4.491465pt;}
.ls24{letter-spacing:5.131891pt;}
.ls5{letter-spacing:5.772264pt;}
.ls11{letter-spacing:6.412637pt;}
.ls15{letter-spacing:7.053011pt;}
.ls34{letter-spacing:7.693384pt;}
.ls1e{letter-spacing:8.333757pt;}
.ls3a{letter-spacing:8.974183pt;}
.ls2e{letter-spacing:10.254929pt;}
.lsb{letter-spacing:10.895302pt;}
.ls31{letter-spacing:12.176102pt;}
.ls30{letter-spacing:12.816475pt;}
.ls1a{letter-spacing:13.456848pt;}
.ls19{letter-spacing:14.097221pt;}
.ls29{letter-spacing:14.737594pt;}
.lsf{letter-spacing:15.377967pt;}
.ls13{letter-spacing:16.658767pt;}
.ls12{letter-spacing:17.299140pt;}
.ls33{letter-spacing:17.939513pt;}
.ls2b{letter-spacing:18.579886pt;}
.ls2c{letter-spacing:19.220259pt;}
.ls2a{letter-spacing:20.501058pt;}
.ls26{letter-spacing:21.141432pt;}
.lse{letter-spacing:22.422178pt;}
.ls22{letter-spacing:23.062604pt;}
.ls1f{letter-spacing:23.702977pt;}
.ls23{letter-spacing:24.343350pt;}
.ls25{letter-spacing:30.106815pt;}
.ls1{letter-spacing:99.268227pt;}
.ls2{letter-spacing:1104.026225pt;}
.ls1c{letter-spacing:1118.757372pt;}
.ls0{letter-spacing:2217.636446pt;}
.ws0{word-spacing:-15.838714pt;}
.ws5{word-spacing:-14.737661pt;}
.ws2{word-spacing:-14.728749pt;}
.ws4{word-spacing:-14.719994pt;}
.ws3{word-spacing:-14.289274pt;}
.ws1{word-spacing:0.000000pt;}
._13{margin-left:-6.702781pt;}
._0{margin-left:-1.078613pt;}
._2{width:0.944239pt;}
._1{width:1.982824pt;}
._b{width:3.132850pt;}
._9{width:4.896130pt;}
._e{width:6.279531pt;}
._f{width:7.184749pt;}
._c{width:8.184660pt;}
._7{width:9.332252pt;}
._8{width:10.253829pt;}
._4{width:12.024145pt;}
._6{width:13.673001pt;}
._a{width:15.729750pt;}
._3{width:17.201282pt;}
._14{width:18.446842pt;}
._1c{width:19.355747pt;}
._11{width:20.288790pt;}
._10{width:21.403906pt;}
._12{width:22.325407pt;}
._5{width:23.480933pt;}
._19{width:24.752028pt;}
._18{width:26.062460pt;}
._17{width:27.107141pt;}
._16{width:30.220033pt;}
._1a{width:31.349854pt;}
._d{width:99.268107pt;}
._15{width:174.192878pt;}
._1b{width:915.113353pt;}
.fs3{font-size:34.559986pt;}
.fs2{font-size:37.119985pt;}
.fs5{font-size:42.879983pt;}
.fs4{font-size:53.119979pt;}
.fs1{font-size:58.879976pt;}
.fs0{font-size:63.999974pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.519043pt;}
.y41{bottom:97.866894pt;}
.y45{bottom:98.026894pt;}
.y44{bottom:102.026893pt;}
.y39{bottom:104.106625pt;}
.y40{bottom:113.226888pt;}
.y43{bottom:116.906887pt;}
.y3f{bottom:117.866886pt;}
.y38{bottom:121.066618pt;}
.y3e{bottom:128.746882pt;}
.y37{bottom:137.866612pt;}
.y36{bottom:154.666605pt;}
.y35{bottom:171.626598pt;}
.y34{bottom:188.426591pt;}
.y33{bottom:205.386585pt;}
.y32{bottom:222.186578pt;}
.y31{bottom:238.986571pt;}
.y30{bottom:255.946564pt;}
.y2f{bottom:272.746558pt;}
.y2e{bottom:289.706551pt;}
.y2d{bottom:306.506544pt;}
.y2c{bottom:323.306537pt;}
.y2b{bottom:340.266531pt;}
.y2a{bottom:357.066524pt;}
.y29{bottom:374.026517pt;}
.y28{bottom:390.826510pt;}
.y27{bottom:407.626504pt;}
.y42{bottom:412.906502pt;}
.y26{bottom:424.586497pt;}
.y3d{bottom:441.386490pt;}
.y25{bottom:458.346483pt;}
.y24{bottom:475.146477pt;}
.y23{bottom:492.106470pt;}
.y22{bottom:508.906463pt;}
.y21{bottom:525.706456pt;}
.y20{bottom:542.666450pt;}
.y1f{bottom:559.466443pt;}
.y1e{bottom:576.426436pt;}
.y1d{bottom:593.226429pt;}
.y1c{bottom:610.026423pt;}
.y1b{bottom:626.986416pt;}
.y1a{bottom:643.786409pt;}
.y19{bottom:660.746402pt;}
.y18{bottom:677.546396pt;}
.y17{bottom:694.346389pt;}
.y16{bottom:711.306382pt;}
.y15{bottom:728.106375pt;}
.y14{bottom:745.066369pt;}
.y13{bottom:761.866362pt;}
.y12{bottom:778.666355pt;}
.y11{bottom:795.626348pt;}
.y10{bottom:812.426342pt;}
.yf{bottom:829.386335pt;}
.ye{bottom:846.186328pt;}
.yd{bottom:862.986321pt;}
.yc{bottom:879.946315pt;}
.yb{bottom:896.426308pt;}
.y3c{bottom:896.746308pt;}
.ya{bottom:913.386301pt;}
.y3b{bottom:913.706301pt;}
.y9{bottom:930.506294pt;}
.y8{bottom:947.466288pt;}
.y7{bottom:964.266281pt;}
.y6{bottom:981.066274pt;}
.y5{bottom:998.026267pt;}
.y3a{bottom:1003.306265pt;}
.y4{bottom:1014.826261pt;}
.y2{bottom:1056.587200pt;}
.y1{bottom:1060.266243pt;}
.h2{height:18.720000pt;}
.h8{height:29.961551pt;}
.h6{height:33.918736pt;}
.h5{height:36.431235pt;}
.h1{height:44.718732pt;}
.h7{height:52.134354pt;}
.h3{height:57.787477pt;}
.h4{height:59.339976pt;}
.h0{height:1122.666667pt;}
.w1{width:0.160000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:113.439955pt;}
.xb{left:117.759953pt;}
.xf{left:119.359952pt;}
.x10{left:122.879951pt;}
.xc{left:141.916851pt;}
.x3{left:204.953251pt;}
.x4{left:321.599942pt;}
.x7{left:328.319945pt;}
.x6{left:329.759949pt;}
.x9{left:343.359863pt;}
.xa{left:347.999861pt;}
.x8{left:392.959974pt;}
.x5{left:396.639904pt;}
.x11{left:491.199804pt;}
.xd{left:533.439787pt;}
.xe{left:538.079785pt;}
.x2{left:679.840000pt;}
}




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