
    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_8b5c301689e080f9c1618976.woff')format("woff");}.ff1{font-family:ff1;line-height:1.197754;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_aa723617c058972dc5a76190.woff')format("woff");}.ff2{font-family:ff2;line-height:1.090332;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_acd9202df410e320d2faf7cc.woff')format("woff");}.ff3{font-family:ff3;line-height:1.084961;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.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.v3{vertical-align:-22.199400px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:3.000000px;}
.v1{vertical-align:24.420000px;}
.v2{vertical-align:26.640000px;}
.ls7{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.000600px;}
.ls3{letter-spacing:0.003000px;}
.ls4{letter-spacing:0.003600px;}
.ls13{letter-spacing:0.012600px;}
.lsc{letter-spacing:0.018000px;}
.ls10{letter-spacing:0.031800px;}
.ls11{letter-spacing:0.032400px;}
.ls12{letter-spacing:0.216000px;}
.lsf{letter-spacing:3.014400px;}
.lsa{letter-spacing:3.264600px;}
.ls8{letter-spacing:4.197333px;}
.ls0{letter-spacing:4.200000px;}
.ls14{letter-spacing:6.000000px;}
.lsb{letter-spacing:6.085800px;}
.ls9{letter-spacing:6.357600px;}
.ls1{letter-spacing:6.600000px;}
.ls6{letter-spacing:6.929400px;}
.ls15{letter-spacing:7.200000px;}
.lse{letter-spacing:8.734800px;}
.lsd{letter-spacing:9.028800px;}
.ls2{letter-spacing:10.200000px;}
.ls16{letter-spacing:19.800000px;}
.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;}
}
.wsb{word-spacing:-36.102000px;}
.ws1{word-spacing:-35.394000px;}
.wsa{word-spacing:-24.984000px;}
.ws8{word-spacing:-22.860000px;}
.ws3{word-spacing:-20.232000px;}
.wsc{word-spacing:-18.546000px;}
.ws7{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.784000px;}
.ws6{word-spacing:-16.860000px;}
.ws9{word-spacing:-16.302000px;}
.ws0{word-spacing:-11.856000px;}
.ws4{word-spacing:-11.127600px;}
.ws5{word-spacing:0.000000px;}
._16{margin-left:-20.307467px;}
._10{margin-left:-14.573333px;}
._17{margin-left:-13.155867px;}
._18{margin-left:-10.836267px;}
._12{margin-left:-9.412667px;}
._0{margin-left:-7.350000px;}
._c{margin-left:-6.149200px;}
._2{margin-left:-4.197333px;}
._1{margin-left:-3.150000px;}
._3{margin-left:-1.512667px;}
._b{width:1.008000px;}
._5{width:2.040000px;}
._7{width:3.688800px;}
._6{width:5.328000px;}
._8{width:6.457333px;}
._d{width:7.992000px;}
._e{width:9.198667px;}
._4{width:10.313333px;}
._9{width:11.808000px;}
._a{width:12.859333px;}
._13{width:14.028600px;}
._15{width:15.264000px;}
._f{width:16.848000px;}
._14{width:18.124800px;}
._11{width:56.923800px;}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:36.000000px;}
.fs6{font-size:39.600000px;}
.fs0{font-size:42.000000px;}
.fs7{font-size:43.200000px;}
.fs1{font-size:48.000000px;}
.fs9{font-size:57.000000px;}
.fs2{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:107.839050px;}
.y20{bottom:172.996950px;}
.y6a{bottom:175.764000px;}
.y45{bottom:181.613850px;}
.y7a{bottom:183.598200px;}
.y1f{bottom:195.046800px;}
.y69{bottom:197.363850px;}
.y44{bottom:203.214000px;}
.y79{bottom:203.398200px;}
.y68{bottom:218.964000px;}
.y78{bottom:223.198200px;}
.y43{bottom:224.813850px;}
.y67{bottom:240.114000px;}
.y1e{bottom:240.132450px;}
.y77{bottom:242.998200px;}
.y42{bottom:246.413850px;}
.y66{bottom:261.264000px;}
.y1d{bottom:261.732450px;}
.y76{bottom:262.798200px;}
.y41{bottom:268.014000px;}
.y65{bottom:282.413850px;}
.y75{bottom:282.598200px;}
.y1c{bottom:283.332300px;}
.y40{bottom:289.614000px;}
.y74{bottom:302.398200px;}
.y64{bottom:303.563850px;}
.y1b{bottom:304.932450px;}
.y3f{bottom:311.214000px;}
.y73{bottom:322.198200px;}
.y63{bottom:324.714000px;}
.y1a{bottom:326.532450px;}
.y3e{bottom:332.813850px;}
.y72{bottom:341.998200px;}
.y62{bottom:345.864000px;}
.y19{bottom:348.132450px;}
.y3d{bottom:354.413850px;}
.y61{bottom:367.014000px;}
.y18{bottom:369.732450px;}
.y3c{bottom:376.014000px;}
.y71{bottom:381.598200px;}
.y60{bottom:388.163850px;}
.y17{bottom:391.332300px;}
.y3b{bottom:397.614000px;}
.y5f{bottom:409.313850px;}
.y70{bottom:411.702150px;}
.y16{bottom:412.932450px;}
.y3a{bottom:419.214000px;}
.y5e{bottom:430.464000px;}
.y15{bottom:434.532450px;}
.y39{bottom:440.813850px;}
.y5d{bottom:451.614000px;}
.y14{bottom:456.132450px;}
.y38{bottom:462.413850px;}
.y5c{bottom:472.764000px;}
.y13{bottom:477.732450px;}
.y6f{bottom:480.754050px;}
.y37{bottom:484.014000px;}
.y5b{bottom:493.913850px;}
.y12{bottom:499.332300px;}
.y36{bottom:505.614000px;}
.y6e{bottom:514.954050px;}
.y5a{bottom:515.063850px;}
.y11{bottom:520.932450px;}
.y35{bottom:527.214000px;}
.y6d{bottom:534.754050px;}
.y59{bottom:536.214000px;}
.y10{bottom:542.532450px;}
.y34{bottom:548.813850px;}
.y6c{bottom:554.554050px;}
.y58{bottom:557.364000px;}
.yf{bottom:564.132450px;}
.y33{bottom:570.413850px;}
.y57{bottom:578.514000px;}
.y6b{bottom:582.858000px;}
.ye{bottom:585.732450px;}
.y32{bottom:592.014000px;}
.y56{bottom:599.663850px;}
.yd{bottom:607.332300px;}
.y31{bottom:613.614000px;}
.y55{bottom:620.813850px;}
.yc{bottom:628.932450px;}
.y30{bottom:635.214000px;}
.y54{bottom:641.964000px;}
.yb{bottom:650.532300px;}
.y2f{bottom:656.813850px;}
.y53{bottom:663.114000px;}
.ya{bottom:672.132450px;}
.y2e{bottom:678.413850px;}
.y52{bottom:684.264000px;}
.y9{bottom:693.732450px;}
.y2d{bottom:700.014000px;}
.y86{bottom:704.611500px;}
.y51{bottom:705.413850px;}
.y8{bottom:715.332300px;}
.y2c{bottom:721.614000px;}
.y85{bottom:722.611500px;}
.y50{bottom:726.563850px;}
.y7{bottom:736.932450px;}
.y84{bottom:740.611500px;}
.y2b{bottom:743.214000px;}
.y4f{bottom:747.714000px;}
.y6{bottom:758.532300px;}
.y2a{bottom:764.813850px;}
.y4e{bottom:768.863850px;}
.y5{bottom:780.132450px;}
.y29{bottom:786.413850px;}
.y4d{bottom:790.014000px;}
.y83{bottom:801.811500px;}
.y28{bottom:808.014000px;}
.y4c{bottom:811.163850px;}
.y82{bottom:821.611500px;}
.y27{bottom:829.613850px;}
.y4b{bottom:832.314000px;}
.y81{bottom:841.411500px;}
.y26{bottom:851.214000px;}
.y4a{bottom:853.464000px;}
.y80{bottom:861.211500px;}
.y25{bottom:872.814000px;}
.y49{bottom:874.613850px;}
.y7f{bottom:881.011500px;}
.y4{bottom:888.132450px;}
.y24{bottom:894.413850px;}
.y48{bottom:895.764000px;}
.y7e{bottom:900.811500px;}
.y23{bottom:916.014000px;}
.y47{bottom:916.913850px;}
.y7d{bottom:920.611500px;}
.y22{bottom:937.613850px;}
.y46{bottom:938.064000px;}
.y7c{bottom:940.411500px;}
.y3{bottom:943.393800px;}
.y21{bottom:959.214000px;}
.y7b{bottom:960.211500px;}
.y2{bottom:961.393800px;}
.h7{height:34.734375px;}
.ha{height:40.523438px;}
.h9{height:43.523438px;}
.h2{height:46.312500px;}
.h8{height:54.996094px;}
.h4{height:56.041992px;}
.h3{height:57.890625px;}
.hb{height:63.679688px;}
.h6{height:69.468750px;}
.h5{height:98.414062px;}
.h0{height:1083.472500px;}
.h1{height:1083.750000px;}
.w0{width:785.835000px;}
.w1{width:786.000000px;}
.x0{left:0.000000px;}
.x3{left:108.128400px;}
.x4{left:129.388200px;}
.x7{left:150.555150px;}
.x8{left:171.815100px;}
.x5{left:174.670350px;}
.x6{left:294.577950px;}
.x1{left:435.964650px;}
.x9{left:574.709400px;}
.x2{left:611.164350px;}
@media print{
.v3{vertical-align:-19.732800pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.666667pt;}
.v1{vertical-align:21.706667pt;}
.v2{vertical-align:23.680000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.000533pt;}
.ls3{letter-spacing:0.002667pt;}
.ls4{letter-spacing:0.003200pt;}
.ls13{letter-spacing:0.011200pt;}
.lsc{letter-spacing:0.016000pt;}
.ls10{letter-spacing:0.028267pt;}
.ls11{letter-spacing:0.028800pt;}
.ls12{letter-spacing:0.192000pt;}
.lsf{letter-spacing:2.679467pt;}
.lsa{letter-spacing:2.901867pt;}
.ls8{letter-spacing:3.730963pt;}
.ls0{letter-spacing:3.733333pt;}
.ls14{letter-spacing:5.333333pt;}
.lsb{letter-spacing:5.409600pt;}
.ls9{letter-spacing:5.651200pt;}
.ls1{letter-spacing:5.866667pt;}
.ls6{letter-spacing:6.159467pt;}
.ls15{letter-spacing:6.400000pt;}
.lse{letter-spacing:7.764267pt;}
.lsd{letter-spacing:8.025600pt;}
.ls2{letter-spacing:9.066667pt;}
.ls16{letter-spacing:17.600000pt;}
.wsb{word-spacing:-32.090667pt;}
.ws1{word-spacing:-31.461333pt;}
.wsa{word-spacing:-22.208000pt;}
.ws8{word-spacing:-20.320000pt;}
.ws3{word-spacing:-17.984000pt;}
.wsc{word-spacing:-16.485333pt;}
.ws7{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.808000pt;}
.ws6{word-spacing:-14.986667pt;}
.ws9{word-spacing:-14.490667pt;}
.ws0{word-spacing:-10.538667pt;}
.ws4{word-spacing:-9.891200pt;}
.ws5{word-spacing:0.000000pt;}
._16{margin-left:-18.051081pt;}
._10{margin-left:-12.954074pt;}
._17{margin-left:-11.694104pt;}
._18{margin-left:-9.632237pt;}
._12{margin-left:-8.366815pt;}
._0{margin-left:-6.533333pt;}
._c{margin-left:-5.465956pt;}
._2{margin-left:-3.730963pt;}
._1{margin-left:-2.800000pt;}
._3{margin-left:-1.344593pt;}
._b{width:0.896000pt;}
._5{width:1.813333pt;}
._7{width:3.278933pt;}
._6{width:4.736000pt;}
._8{width:5.739852pt;}
._d{width:7.104000pt;}
._e{width:8.176593pt;}
._4{width:9.167407pt;}
._9{width:10.496000pt;}
._a{width:11.430519pt;}
._13{width:12.469867pt;}
._15{width:13.568000pt;}
._f{width:14.976000pt;}
._14{width:16.110933pt;}
._11{width:50.598933pt;}
.fs8{font-size:32.000000pt;}
.fs6{font-size:35.200000pt;}
.fs0{font-size:37.333333pt;}
.fs7{font-size:38.400000pt;}
.fs1{font-size:42.666667pt;}
.fs9{font-size:50.666667pt;}
.fs2{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:95.856933pt;}
.y20{bottom:153.775067pt;}
.y6a{bottom:156.234667pt;}
.y45{bottom:161.434533pt;}
.y7a{bottom:163.198400pt;}
.y1f{bottom:173.374933pt;}
.y69{bottom:175.434533pt;}
.y44{bottom:180.634667pt;}
.y79{bottom:180.798400pt;}
.y68{bottom:194.634667pt;}
.y78{bottom:198.398400pt;}
.y43{bottom:199.834533pt;}
.y67{bottom:213.434667pt;}
.y1e{bottom:213.451067pt;}
.y77{bottom:215.998400pt;}
.y42{bottom:219.034533pt;}
.y66{bottom:232.234667pt;}
.y1d{bottom:232.651067pt;}
.y76{bottom:233.598400pt;}
.y41{bottom:238.234667pt;}
.y65{bottom:251.034533pt;}
.y75{bottom:251.198400pt;}
.y1c{bottom:251.850933pt;}
.y40{bottom:257.434667pt;}
.y74{bottom:268.798400pt;}
.y64{bottom:269.834533pt;}
.y1b{bottom:271.051067pt;}
.y3f{bottom:276.634667pt;}
.y73{bottom:286.398400pt;}
.y63{bottom:288.634667pt;}
.y1a{bottom:290.251067pt;}
.y3e{bottom:295.834533pt;}
.y72{bottom:303.998400pt;}
.y62{bottom:307.434667pt;}
.y19{bottom:309.451067pt;}
.y3d{bottom:315.034533pt;}
.y61{bottom:326.234667pt;}
.y18{bottom:328.651067pt;}
.y3c{bottom:334.234667pt;}
.y71{bottom:339.198400pt;}
.y60{bottom:345.034533pt;}
.y17{bottom:347.850933pt;}
.y3b{bottom:353.434667pt;}
.y5f{bottom:363.834533pt;}
.y70{bottom:365.957467pt;}
.y16{bottom:367.051067pt;}
.y3a{bottom:372.634667pt;}
.y5e{bottom:382.634667pt;}
.y15{bottom:386.251067pt;}
.y39{bottom:391.834533pt;}
.y5d{bottom:401.434667pt;}
.y14{bottom:405.451067pt;}
.y38{bottom:411.034533pt;}
.y5c{bottom:420.234667pt;}
.y13{bottom:424.651067pt;}
.y6f{bottom:427.336933pt;}
.y37{bottom:430.234667pt;}
.y5b{bottom:439.034533pt;}
.y12{bottom:443.850933pt;}
.y36{bottom:449.434667pt;}
.y6e{bottom:457.736933pt;}
.y5a{bottom:457.834533pt;}
.y11{bottom:463.051067pt;}
.y35{bottom:468.634667pt;}
.y6d{bottom:475.336933pt;}
.y59{bottom:476.634667pt;}
.y10{bottom:482.251067pt;}
.y34{bottom:487.834533pt;}
.y6c{bottom:492.936933pt;}
.y58{bottom:495.434667pt;}
.yf{bottom:501.451067pt;}
.y33{bottom:507.034533pt;}
.y57{bottom:514.234667pt;}
.y6b{bottom:518.096000pt;}
.ye{bottom:520.651067pt;}
.y32{bottom:526.234667pt;}
.y56{bottom:533.034533pt;}
.yd{bottom:539.850933pt;}
.y31{bottom:545.434667pt;}
.y55{bottom:551.834533pt;}
.yc{bottom:559.051067pt;}
.y30{bottom:564.634667pt;}
.y54{bottom:570.634667pt;}
.yb{bottom:578.250933pt;}
.y2f{bottom:583.834533pt;}
.y53{bottom:589.434667pt;}
.ya{bottom:597.451067pt;}
.y2e{bottom:603.034533pt;}
.y52{bottom:608.234667pt;}
.y9{bottom:616.651067pt;}
.y2d{bottom:622.234667pt;}
.y86{bottom:626.321333pt;}
.y51{bottom:627.034533pt;}
.y8{bottom:635.850933pt;}
.y2c{bottom:641.434667pt;}
.y85{bottom:642.321333pt;}
.y50{bottom:645.834533pt;}
.y7{bottom:655.051067pt;}
.y84{bottom:658.321333pt;}
.y2b{bottom:660.634667pt;}
.y4f{bottom:664.634667pt;}
.y6{bottom:674.250933pt;}
.y2a{bottom:679.834533pt;}
.y4e{bottom:683.434533pt;}
.y5{bottom:693.451067pt;}
.y29{bottom:699.034533pt;}
.y4d{bottom:702.234667pt;}
.y83{bottom:712.721333pt;}
.y28{bottom:718.234667pt;}
.y4c{bottom:721.034533pt;}
.y82{bottom:730.321333pt;}
.y27{bottom:737.434533pt;}
.y4b{bottom:739.834667pt;}
.y81{bottom:747.921333pt;}
.y26{bottom:756.634667pt;}
.y4a{bottom:758.634667pt;}
.y80{bottom:765.521333pt;}
.y25{bottom:775.834667pt;}
.y49{bottom:777.434533pt;}
.y7f{bottom:783.121333pt;}
.y4{bottom:789.451067pt;}
.y24{bottom:795.034533pt;}
.y48{bottom:796.234667pt;}
.y7e{bottom:800.721333pt;}
.y23{bottom:814.234667pt;}
.y47{bottom:815.034533pt;}
.y7d{bottom:818.321333pt;}
.y22{bottom:833.434533pt;}
.y46{bottom:833.834667pt;}
.y7c{bottom:835.921333pt;}
.y3{bottom:838.572267pt;}
.y21{bottom:852.634667pt;}
.y7b{bottom:853.521333pt;}
.y2{bottom:854.572267pt;}
.h7{height:30.875000pt;}
.ha{height:36.020833pt;}
.h9{height:38.687500pt;}
.h2{height:41.166667pt;}
.h8{height:48.885417pt;}
.h4{height:49.815104pt;}
.h3{height:51.458333pt;}
.hb{height:56.604167pt;}
.h6{height:61.750000pt;}
.h5{height:87.479167pt;}
.h0{height:963.086667pt;}
.h1{height:963.333333pt;}
.w0{width:698.520000pt;}
.w1{width:698.666667pt;}
.x0{left:0.000000pt;}
.x3{left:96.114133pt;}
.x4{left:115.011733pt;}
.x7{left:133.826800pt;}
.x8{left:152.724533pt;}
.x5{left:155.262533pt;}
.x6{left:261.847067pt;}
.x1{left:387.524133pt;}
.x9{left:510.852800pt;}
.x2{left:543.257200pt;}
}




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