
    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_8c406a47533faac7c5ad924d.woff')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_9f5b968ecef8dcc4d5a8100d.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_2c6ab91338e6368747bf192d.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_765e04b2ae4328c27762a5b8.woff')format("woff");}.ff4{font-family:ff4;line-height:1.070312;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_9a96c889a413cfa8da21ac5b.woff')format("woff");}.ff5{font-family:ff5;line-height:0.851000;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_f373ed8faf4c74a15bec192e.woff')format("woff");}.ff6{font-family:ff6;line-height:0.706000;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_e2d96ea2353dbf534b735c74.woff')format("woff");}.ff7{font-family:ff7;line-height:0.899414;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_c352978d89abe62ebdd8bc33.woff')format("woff");}.ff8{font-family:ff8;line-height:0.922852;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);}
.v3{vertical-align:-16.830000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:24.551400px;}
.v1{vertical-align:184.800000px;}
.ls1c{letter-spacing:-2.808000px;}
.ls34{letter-spacing:-2.520000px;}
.ls25{letter-spacing:-2.160000px;}
.ls29{letter-spacing:-1.368000px;}
.lsf{letter-spacing:-1.200000px;}
.ls33{letter-spacing:-1.080000px;}
.ls28{letter-spacing:-0.720000px;}
.ls10{letter-spacing:-0.648000px;}
.lsa{letter-spacing:-0.600000px;}
.ls11{letter-spacing:-0.576000px;}
.ls14{letter-spacing:-0.504000px;}
.ls15{letter-spacing:-0.432000px;}
.ls1e{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.300000px;}
.ls13{letter-spacing:-0.288000px;}
.ls1b{letter-spacing:-0.216000px;}
.ls12{letter-spacing:-0.144000px;}
.ls26{letter-spacing:-0.072000px;}
.lsc{letter-spacing:0.000000px;}
.ls22{letter-spacing:0.072000px;}
.ls1d{letter-spacing:0.144000px;}
.ls8{letter-spacing:0.216000px;}
.ls1f{letter-spacing:0.288000px;}
.ls1a{letter-spacing:0.360000px;}
.ls19{letter-spacing:0.432000px;}
.ls16{letter-spacing:0.504000px;}
.ls7{letter-spacing:0.576000px;}
.ls23{letter-spacing:0.648000px;}
.ls27{letter-spacing:0.720000px;}
.ls2e{letter-spacing:0.792000px;}
.ls20{letter-spacing:0.864000px;}
.ls2d{letter-spacing:0.936000px;}
.ls3a{letter-spacing:1.008000px;}
.ls21{letter-spacing:1.080000px;}
.ls3b{letter-spacing:1.152000px;}
.ls3d{letter-spacing:1.224000px;}
.ls2c{letter-spacing:1.368000px;}
.ls37{letter-spacing:1.440000px;}
.ls38{letter-spacing:1.512000px;}
.ls36{letter-spacing:1.584000px;}
.ls1{letter-spacing:3.060000px;}
.ls3{letter-spacing:3.120000px;}
.ls2{letter-spacing:3.180000px;}
.ls2b{letter-spacing:3.528000px;}
.ls31{letter-spacing:4.032000px;}
.ls30{letter-spacing:4.104000px;}
.ls2f{letter-spacing:4.176000px;}
.ls9{letter-spacing:6.120000px;}
.ls18{letter-spacing:6.192000px;}
.ls35{letter-spacing:6.264000px;}
.ls17{letter-spacing:6.408000px;}
.ls24{letter-spacing:6.768000px;}
.ls6{letter-spacing:6.840000px;}
.ls0{letter-spacing:8.460000px;}
.ls32{letter-spacing:9.432000px;}
.ls39{letter-spacing:9.720000px;}
.ls3c{letter-spacing:9.936000px;}
.ls2a{letter-spacing:10.584000px;}
.ls4{letter-spacing:10.740000px;}
.ls5{letter-spacing:10.811837px;}
.lsb{letter-spacing:23.040000px;}
.lse{letter-spacing:73.140000px;}
.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;}
}
.wsa{word-spacing:-73.140000px;}
.ws37{word-spacing:-49.608000px;}
.ws36{word-spacing:-49.464000px;}
.ws23{word-spacing:-49.104000px;}
.ws31{word-spacing:-49.032000px;}
.ws19{word-spacing:-48.888000px;}
.ws4{word-spacing:-48.528000px;}
.ws32{word-spacing:-48.456000px;}
.ws24{word-spacing:-48.168000px;}
.ws1{word-spacing:-39.840000px;}
.ws6{word-spacing:-23.040000px;}
.ws18{word-spacing:-20.736000px;}
.ws16{word-spacing:-20.448000px;}
.ws17{word-spacing:-20.232000px;}
.ws2d{word-spacing:-20.160000px;}
.ws2{word-spacing:-16.860000px;}
.ws2e{word-spacing:-14.162400px;}
.ws15{word-spacing:-8.520000px;}
.ws3{word-spacing:-4.440000px;}
.ws39{word-spacing:-1.224000px;}
.ws25{word-spacing:-1.080000px;}
.ws38{word-spacing:-1.008000px;}
.ws30{word-spacing:-0.936000px;}
.ws22{word-spacing:-0.864000px;}
.ws2f{word-spacing:-0.792000px;}
.ws29{word-spacing:-0.720000px;}
.ws26{word-spacing:-0.648000px;}
.ws8{word-spacing:-0.600000px;}
.wsf{word-spacing:-0.576000px;}
.ws1d{word-spacing:-0.504000px;}
.ws20{word-spacing:-0.432000px;}
.ws21{word-spacing:-0.360000px;}
.ws1f{word-spacing:-0.288000px;}
.ws10{word-spacing:-0.216000px;}
.ws1c{word-spacing:-0.144000px;}
.ws2c{word-spacing:-0.072000px;}
.ws7{word-spacing:0.000000px;}
.ws28{word-spacing:0.072000px;}
.ws11{word-spacing:0.144000px;}
.ws1a{word-spacing:0.216000px;}
.ws12{word-spacing:0.288000px;}
.ws9{word-spacing:0.300000px;}
.ws1e{word-spacing:0.360000px;}
.ws14{word-spacing:0.432000px;}
.ws13{word-spacing:0.504000px;}
.wse{word-spacing:0.576000px;}
.ws5{word-spacing:0.600000px;}
.wsd{word-spacing:0.648000px;}
.ws2a{word-spacing:0.720000px;}
.ws33{word-spacing:1.080000px;}
.wsb{word-spacing:1.200000px;}
.ws2b{word-spacing:1.368000px;}
.wsc{word-spacing:1.800000px;}
.ws27{word-spacing:2.160000px;}
.ws34{word-spacing:2.520000px;}
.ws1b{word-spacing:2.808000px;}
.ws35{word-spacing:8.640000px;}
.ws3a{word-spacing:10.152000px;}
.ws0{word-spacing:146.100000px;}
._13{margin-left:-948.900000px;}
._14{margin-left:-15.696000px;}
._11{margin-left:-14.028000px;}
._d{margin-left:-11.580000px;}
._16{margin-left:-9.240000px;}
._17{margin-left:-7.920000px;}
._b{margin-left:-6.840000px;}
._4{margin-left:-5.700000px;}
._12{margin-left:-4.680000px;}
._3{margin-left:-3.420000px;}
._a{margin-left:-1.440000px;}
._5{width:1.560000px;}
._0{width:3.540000px;}
._c{width:4.800000px;}
._e{width:6.696000px;}
._f{width:8.496000px;}
._10{width:10.440000px;}
._15{width:11.556000px;}
._18{width:15.318300px;}
._1{width:22.980000px;}
._9{width:33.300000px;}
._2{width:67.260000px;}
._8{width:71.040000px;}
._6{width:73.140000px;}
._7{width:75.240000px;}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:35.700000px;}
.fs6{font-size:48.000000px;}
.fs4{font-size:50.400000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.fs3{font-size:432.730200px;}
.y0{bottom:0.000000px;}
.y3{bottom:60.257850px;}
.y2{bottom:76.757850px;}
.y1{bottom:93.257850px;}
.y8f{bottom:138.257700px;}
.y45{bottom:138.257850px;}
.y6b{bottom:138.335850px;}
.y21{bottom:138.766500px;}
.yb3{bottom:139.367850px;}
.y8e{bottom:157.465200px;}
.y6a{bottom:160.241850px;}
.y44{bottom:160.757850px;}
.y20{bottom:161.860500px;}
.yb2{bottom:162.461850px;}
.y69{bottom:182.147850px;}
.y43{bottom:183.257850px;}
.y1f{bottom:184.954500px;}
.yb1{bottom:185.555850px;}
.y8d{bottom:195.359850px;}
.y68{bottom:204.053850px;}
.y42{bottom:205.757850px;}
.y1e{bottom:208.048500px;}
.yb0{bottom:208.649850px;}
.y8c{bottom:218.165850px;}
.y67{bottom:225.959850px;}
.y41{bottom:228.257850px;}
.y1d{bottom:231.142500px;}
.yaf{bottom:231.743850px;}
.y8b{bottom:240.971850px;}
.y66{bottom:247.865850px;}
.y40{bottom:250.757850px;}
.y1c{bottom:254.236500px;}
.yae{bottom:254.837850px;}
.y8a{bottom:263.777850px;}
.y65{bottom:269.771850px;}
.y3f{bottom:273.257850px;}
.y1b{bottom:277.330500px;}
.yad{bottom:277.931850px;}
.y89{bottom:286.583850px;}
.y64{bottom:291.677850px;}
.y3e{bottom:295.757850px;}
.y1a{bottom:300.424500px;}
.yac{bottom:301.025850px;}
.y88{bottom:309.389850px;}
.y63{bottom:313.583850px;}
.y3d{bottom:318.257850px;}
.y19{bottom:323.518500px;}
.yab{bottom:324.119850px;}
.y87{bottom:332.195850px;}
.y62{bottom:335.489850px;}
.y3c{bottom:340.757850px;}
.y18{bottom:346.612500px;}
.yaa{bottom:347.213850px;}
.y86{bottom:355.001850px;}
.y61{bottom:357.395850px;}
.y3b{bottom:363.257850px;}
.y17{bottom:369.706500px;}
.ya9{bottom:370.307850px;}
.y85{bottom:377.807850px;}
.y60{bottom:379.301850px;}
.y3a{bottom:385.757850px;}
.y16{bottom:392.800500px;}
.ya8{bottom:393.401850px;}
.y84{bottom:400.613850px;}
.y5f{bottom:401.207850px;}
.y39{bottom:408.257850px;}
.y15{bottom:415.894500px;}
.ya7{bottom:416.495850px;}
.y5e{bottom:423.113850px;}
.y83{bottom:423.419850px;}
.y38{bottom:430.757850px;}
.y14{bottom:438.988500px;}
.ya6{bottom:439.589850px;}
.y5d{bottom:445.019850px;}
.y82{bottom:446.225850px;}
.y37{bottom:453.257850px;}
.y13{bottom:462.082500px;}
.ya5{bottom:462.683850px;}
.y5c{bottom:466.925850px;}
.y81{bottom:469.031850px;}
.y36{bottom:475.757850px;}
.y12{bottom:485.176500px;}
.ya4{bottom:485.777850px;}
.y5b{bottom:488.831850px;}
.y80{bottom:491.837850px;}
.y35{bottom:498.257850px;}
.y11{bottom:508.270500px;}
.ya3{bottom:508.871850px;}
.y5a{bottom:510.737850px;}
.y7f{bottom:514.643850px;}
.y34{bottom:520.757850px;}
.y10{bottom:531.364500px;}
.ya2{bottom:531.965850px;}
.y59{bottom:532.643850px;}
.y7e{bottom:537.449850px;}
.y33{bottom:543.257850px;}
.yf{bottom:554.458500px;}
.y58{bottom:554.549850px;}
.ya1{bottom:555.059850px;}
.y7d{bottom:560.255850px;}
.y32{bottom:565.757850px;}
.y57{bottom:576.455850px;}
.yc{bottom:577.540500px;}
.ye{bottom:577.552500px;}
.ya0{bottom:578.153850px;}
.y7c{bottom:583.061850px;}
.y31{bottom:588.257850px;}
.y56{bottom:598.361850px;}
.yd{bottom:600.646500px;}
.y9f{bottom:601.247850px;}
.y7b{bottom:605.867850px;}
.ybd{bottom:607.007850px;}
.y30{bottom:610.757850px;}
.y55{bottom:620.267850px;}
.y9e{bottom:624.341850px;}
.ybc{bottom:625.757850px;}
.y7a{bottom:628.673850px;}
.y2f{bottom:633.257850px;}
.y54{bottom:642.173850px;}
.ybb{bottom:644.507850px;}
.y9d{bottom:647.435850px;}
.y79{bottom:651.479850px;}
.y2e{bottom:655.757850px;}
.yba{bottom:663.257850px;}
.y53{bottom:664.079850px;}
.y9c{bottom:670.529850px;}
.y78{bottom:674.285850px;}
.y2d{bottom:678.257850px;}
.yb9{bottom:682.007850px;}
.y52{bottom:685.985850px;}
.yb{bottom:692.726400px;}
.y9b{bottom:693.623850px;}
.y77{bottom:697.091850px;}
.y2c{bottom:700.757850px;}
.y51{bottom:707.891850px;}
.yb8{bottom:712.007850px;}
.ya{bottom:715.226400px;}
.y9a{bottom:716.717850px;}
.y76{bottom:719.897850px;}
.y2b{bottom:723.257850px;}
.y50{bottom:729.797850px;}
.yb7{bottom:730.757850px;}
.y99{bottom:739.811850px;}
.y75{bottom:742.703850px;}
.y2a{bottom:745.757850px;}
.yb6{bottom:749.507850px;}
.y4f{bottom:751.703850px;}
.y9{bottom:761.112150px;}
.y98{bottom:762.905850px;}
.y74{bottom:765.509850px;}
.y29{bottom:768.257850px;}
.y4e{bottom:773.609850px;}
.y8{bottom:783.612150px;}
.y97{bottom:785.999850px;}
.yb5{bottom:787.007850px;}
.y73{bottom:788.315850px;}
.y28{bottom:790.757850px;}
.y4d{bottom:795.515850px;}
.y96{bottom:809.093850px;}
.y72{bottom:811.121850px;}
.y27{bottom:813.257850px;}
.yb4{bottom:817.007850px;}
.y4c{bottom:817.421850px;}
.y95{bottom:832.187850px;}
.y71{bottom:833.927850px;}
.y26{bottom:835.757850px;}
.y4b{bottom:839.327850px;}
.y7{bottom:850.757850px;}
.y94{bottom:855.281850px;}
.y70{bottom:856.733850px;}
.y25{bottom:858.257850px;}
.y4a{bottom:861.233850px;}
.y93{bottom:878.375850px;}
.y6f{bottom:879.539850px;}
.y6{bottom:880.757850px;}
.y49{bottom:883.139850px;}
.y92{bottom:901.469850px;}
.y6e{bottom:902.345850px;}
.y24{bottom:903.257850px;}
.y48{bottom:905.045850px;}
.y5{bottom:910.757850px;}
.y91{bottom:924.563850px;}
.y6d{bottom:925.151850px;}
.y23{bottom:925.757850px;}
.y47{bottom:926.951850px;}
.y4{bottom:940.757850px;}
.y90{bottom:947.657850px;}
.y6c{bottom:947.957850px;}
.y22{bottom:948.257850px;}
.y46{bottom:948.857850px;}
.h8{height:24.630908px;}
.h9{height:40.757812px;}
.h4{height:50.580000px;}
.h2{height:50.947266px;}
.h5{height:61.136719px;}
.h7{height:61.928119px;}
.h3{height:101.894531px;}
.h6{height:302.911140px;}
.h0{height:1059.519000px;}
.h1{height:1059.750000px;}
.w1{width:741.000000px;}
.w0{width:741.259500px;}
.x0{left:0.000000px;}
.x1{left:88.759800px;}
.x8{left:99.559800px;}
.x4{left:103.634700px;}
.x7{left:112.513950px;}
.x9{left:123.300000px;}
.x6{left:127.381950px;}
.x3{left:136.448700px;}
.x2{left:156.244800px;}
.x5{left:625.781250px;}
@media print{
.v3{vertical-align:-14.960000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.823467pt;}
.v1{vertical-align:164.266667pt;}
.ls1c{letter-spacing:-2.496000pt;}
.ls34{letter-spacing:-2.240000pt;}
.ls25{letter-spacing:-1.920000pt;}
.ls29{letter-spacing:-1.216000pt;}
.lsf{letter-spacing:-1.066667pt;}
.ls33{letter-spacing:-0.960000pt;}
.ls28{letter-spacing:-0.640000pt;}
.ls10{letter-spacing:-0.576000pt;}
.lsa{letter-spacing:-0.533333pt;}
.ls11{letter-spacing:-0.512000pt;}
.ls14{letter-spacing:-0.448000pt;}
.ls15{letter-spacing:-0.384000pt;}
.ls1e{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.266667pt;}
.ls13{letter-spacing:-0.256000pt;}
.ls1b{letter-spacing:-0.192000pt;}
.ls12{letter-spacing:-0.128000pt;}
.ls26{letter-spacing:-0.064000pt;}
.lsc{letter-spacing:0.000000pt;}
.ls22{letter-spacing:0.064000pt;}
.ls1d{letter-spacing:0.128000pt;}
.ls8{letter-spacing:0.192000pt;}
.ls1f{letter-spacing:0.256000pt;}
.ls1a{letter-spacing:0.320000pt;}
.ls19{letter-spacing:0.384000pt;}
.ls16{letter-spacing:0.448000pt;}
.ls7{letter-spacing:0.512000pt;}
.ls23{letter-spacing:0.576000pt;}
.ls27{letter-spacing:0.640000pt;}
.ls2e{letter-spacing:0.704000pt;}
.ls20{letter-spacing:0.768000pt;}
.ls2d{letter-spacing:0.832000pt;}
.ls3a{letter-spacing:0.896000pt;}
.ls21{letter-spacing:0.960000pt;}
.ls3b{letter-spacing:1.024000pt;}
.ls3d{letter-spacing:1.088000pt;}
.ls2c{letter-spacing:1.216000pt;}
.ls37{letter-spacing:1.280000pt;}
.ls38{letter-spacing:1.344000pt;}
.ls36{letter-spacing:1.408000pt;}
.ls1{letter-spacing:2.720000pt;}
.ls3{letter-spacing:2.773333pt;}
.ls2{letter-spacing:2.826667pt;}
.ls2b{letter-spacing:3.136000pt;}
.ls31{letter-spacing:3.584000pt;}
.ls30{letter-spacing:3.648000pt;}
.ls2f{letter-spacing:3.712000pt;}
.ls9{letter-spacing:5.440000pt;}
.ls18{letter-spacing:5.504000pt;}
.ls35{letter-spacing:5.568000pt;}
.ls17{letter-spacing:5.696000pt;}
.ls24{letter-spacing:6.016000pt;}
.ls6{letter-spacing:6.080000pt;}
.ls0{letter-spacing:7.520000pt;}
.ls32{letter-spacing:8.384000pt;}
.ls39{letter-spacing:8.640000pt;}
.ls3c{letter-spacing:8.832000pt;}
.ls2a{letter-spacing:9.408000pt;}
.ls4{letter-spacing:9.546667pt;}
.ls5{letter-spacing:9.610522pt;}
.lsb{letter-spacing:20.480000pt;}
.lse{letter-spacing:65.013333pt;}
.wsa{word-spacing:-65.013333pt;}
.ws37{word-spacing:-44.096000pt;}
.ws36{word-spacing:-43.968000pt;}
.ws23{word-spacing:-43.648000pt;}
.ws31{word-spacing:-43.584000pt;}
.ws19{word-spacing:-43.456000pt;}
.ws4{word-spacing:-43.136000pt;}
.ws32{word-spacing:-43.072000pt;}
.ws24{word-spacing:-42.816000pt;}
.ws1{word-spacing:-35.413333pt;}
.ws6{word-spacing:-20.480000pt;}
.ws18{word-spacing:-18.432000pt;}
.ws16{word-spacing:-18.176000pt;}
.ws17{word-spacing:-17.984000pt;}
.ws2d{word-spacing:-17.920000pt;}
.ws2{word-spacing:-14.986667pt;}
.ws2e{word-spacing:-12.588800pt;}
.ws15{word-spacing:-7.573333pt;}
.ws3{word-spacing:-3.946667pt;}
.ws39{word-spacing:-1.088000pt;}
.ws25{word-spacing:-0.960000pt;}
.ws38{word-spacing:-0.896000pt;}
.ws30{word-spacing:-0.832000pt;}
.ws22{word-spacing:-0.768000pt;}
.ws2f{word-spacing:-0.704000pt;}
.ws29{word-spacing:-0.640000pt;}
.ws26{word-spacing:-0.576000pt;}
.ws8{word-spacing:-0.533333pt;}
.wsf{word-spacing:-0.512000pt;}
.ws1d{word-spacing:-0.448000pt;}
.ws20{word-spacing:-0.384000pt;}
.ws21{word-spacing:-0.320000pt;}
.ws1f{word-spacing:-0.256000pt;}
.ws10{word-spacing:-0.192000pt;}
.ws1c{word-spacing:-0.128000pt;}
.ws2c{word-spacing:-0.064000pt;}
.ws7{word-spacing:0.000000pt;}
.ws28{word-spacing:0.064000pt;}
.ws11{word-spacing:0.128000pt;}
.ws1a{word-spacing:0.192000pt;}
.ws12{word-spacing:0.256000pt;}
.ws9{word-spacing:0.266667pt;}
.ws1e{word-spacing:0.320000pt;}
.ws14{word-spacing:0.384000pt;}
.ws13{word-spacing:0.448000pt;}
.wse{word-spacing:0.512000pt;}
.ws5{word-spacing:0.533333pt;}
.wsd{word-spacing:0.576000pt;}
.ws2a{word-spacing:0.640000pt;}
.ws33{word-spacing:0.960000pt;}
.wsb{word-spacing:1.066667pt;}
.ws2b{word-spacing:1.216000pt;}
.wsc{word-spacing:1.600000pt;}
.ws27{word-spacing:1.920000pt;}
.ws34{word-spacing:2.240000pt;}
.ws1b{word-spacing:2.496000pt;}
.ws35{word-spacing:7.680000pt;}
.ws3a{word-spacing:9.024000pt;}
.ws0{word-spacing:129.866667pt;}
._13{margin-left:-843.466667pt;}
._14{margin-left:-13.952000pt;}
._11{margin-left:-12.469333pt;}
._d{margin-left:-10.293333pt;}
._16{margin-left:-8.213333pt;}
._17{margin-left:-7.040000pt;}
._b{margin-left:-6.080000pt;}
._4{margin-left:-5.066667pt;}
._12{margin-left:-4.160000pt;}
._3{margin-left:-3.040000pt;}
._a{margin-left:-1.280000pt;}
._5{width:1.386667pt;}
._0{width:3.146667pt;}
._c{width:4.266667pt;}
._e{width:5.952000pt;}
._f{width:7.552000pt;}
._10{width:9.280000pt;}
._15{width:10.272000pt;}
._18{width:13.616267pt;}
._1{width:20.426667pt;}
._9{width:29.600000pt;}
._2{width:59.786667pt;}
._8{width:63.146667pt;}
._6{width:65.013333pt;}
._7{width:66.880000pt;}
.fs5{font-size:31.733333pt;}
.fs6{font-size:42.666667pt;}
.fs4{font-size:44.800000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.fs3{font-size:384.649067pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:53.562533pt;}
.y2{bottom:68.229200pt;}
.y1{bottom:82.895867pt;}
.y8f{bottom:122.895733pt;}
.y45{bottom:122.895867pt;}
.y6b{bottom:122.965200pt;}
.y21{bottom:123.348000pt;}
.yb3{bottom:123.882533pt;}
.y8e{bottom:139.969067pt;}
.y6a{bottom:142.437200pt;}
.y44{bottom:142.895867pt;}
.y20{bottom:143.876000pt;}
.yb2{bottom:144.410533pt;}
.y69{bottom:161.909200pt;}
.y43{bottom:162.895867pt;}
.y1f{bottom:164.404000pt;}
.yb1{bottom:164.938533pt;}
.y8d{bottom:173.653200pt;}
.y68{bottom:181.381200pt;}
.y42{bottom:182.895867pt;}
.y1e{bottom:184.932000pt;}
.yb0{bottom:185.466533pt;}
.y8c{bottom:193.925200pt;}
.y67{bottom:200.853200pt;}
.y41{bottom:202.895867pt;}
.y1d{bottom:205.460000pt;}
.yaf{bottom:205.994533pt;}
.y8b{bottom:214.197200pt;}
.y66{bottom:220.325200pt;}
.y40{bottom:222.895867pt;}
.y1c{bottom:225.988000pt;}
.yae{bottom:226.522533pt;}
.y8a{bottom:234.469200pt;}
.y65{bottom:239.797200pt;}
.y3f{bottom:242.895867pt;}
.y1b{bottom:246.516000pt;}
.yad{bottom:247.050533pt;}
.y89{bottom:254.741200pt;}
.y64{bottom:259.269200pt;}
.y3e{bottom:262.895867pt;}
.y1a{bottom:267.044000pt;}
.yac{bottom:267.578533pt;}
.y88{bottom:275.013200pt;}
.y63{bottom:278.741200pt;}
.y3d{bottom:282.895867pt;}
.y19{bottom:287.572000pt;}
.yab{bottom:288.106533pt;}
.y87{bottom:295.285200pt;}
.y62{bottom:298.213200pt;}
.y3c{bottom:302.895867pt;}
.y18{bottom:308.100000pt;}
.yaa{bottom:308.634533pt;}
.y86{bottom:315.557200pt;}
.y61{bottom:317.685200pt;}
.y3b{bottom:322.895867pt;}
.y17{bottom:328.628000pt;}
.ya9{bottom:329.162533pt;}
.y85{bottom:335.829200pt;}
.y60{bottom:337.157200pt;}
.y3a{bottom:342.895867pt;}
.y16{bottom:349.156000pt;}
.ya8{bottom:349.690533pt;}
.y84{bottom:356.101200pt;}
.y5f{bottom:356.629200pt;}
.y39{bottom:362.895867pt;}
.y15{bottom:369.684000pt;}
.ya7{bottom:370.218533pt;}
.y5e{bottom:376.101200pt;}
.y83{bottom:376.373200pt;}
.y38{bottom:382.895867pt;}
.y14{bottom:390.212000pt;}
.ya6{bottom:390.746533pt;}
.y5d{bottom:395.573200pt;}
.y82{bottom:396.645200pt;}
.y37{bottom:402.895867pt;}
.y13{bottom:410.740000pt;}
.ya5{bottom:411.274533pt;}
.y5c{bottom:415.045200pt;}
.y81{bottom:416.917200pt;}
.y36{bottom:422.895867pt;}
.y12{bottom:431.268000pt;}
.ya4{bottom:431.802533pt;}
.y5b{bottom:434.517200pt;}
.y80{bottom:437.189200pt;}
.y35{bottom:442.895867pt;}
.y11{bottom:451.796000pt;}
.ya3{bottom:452.330533pt;}
.y5a{bottom:453.989200pt;}
.y7f{bottom:457.461200pt;}
.y34{bottom:462.895867pt;}
.y10{bottom:472.324000pt;}
.ya2{bottom:472.858533pt;}
.y59{bottom:473.461200pt;}
.y7e{bottom:477.733200pt;}
.y33{bottom:482.895867pt;}
.yf{bottom:492.852000pt;}
.y58{bottom:492.933200pt;}
.ya1{bottom:493.386533pt;}
.y7d{bottom:498.005200pt;}
.y32{bottom:502.895867pt;}
.y57{bottom:512.405200pt;}
.yc{bottom:513.369333pt;}
.ye{bottom:513.380000pt;}
.ya0{bottom:513.914533pt;}
.y7c{bottom:518.277200pt;}
.y31{bottom:522.895867pt;}
.y56{bottom:531.877200pt;}
.yd{bottom:533.908000pt;}
.y9f{bottom:534.442533pt;}
.y7b{bottom:538.549200pt;}
.ybd{bottom:539.562533pt;}
.y30{bottom:542.895867pt;}
.y55{bottom:551.349200pt;}
.y9e{bottom:554.970533pt;}
.ybc{bottom:556.229200pt;}
.y7a{bottom:558.821200pt;}
.y2f{bottom:562.895867pt;}
.y54{bottom:570.821200pt;}
.ybb{bottom:572.895867pt;}
.y9d{bottom:575.498533pt;}
.y79{bottom:579.093200pt;}
.y2e{bottom:582.895867pt;}
.yba{bottom:589.562533pt;}
.y53{bottom:590.293200pt;}
.y9c{bottom:596.026533pt;}
.y78{bottom:599.365200pt;}
.y2d{bottom:602.895867pt;}
.yb9{bottom:606.229200pt;}
.y52{bottom:609.765200pt;}
.yb{bottom:615.756800pt;}
.y9b{bottom:616.554533pt;}
.y77{bottom:619.637200pt;}
.y2c{bottom:622.895867pt;}
.y51{bottom:629.237200pt;}
.yb8{bottom:632.895867pt;}
.ya{bottom:635.756800pt;}
.y9a{bottom:637.082533pt;}
.y76{bottom:639.909200pt;}
.y2b{bottom:642.895867pt;}
.y50{bottom:648.709200pt;}
.yb7{bottom:649.562533pt;}
.y99{bottom:657.610533pt;}
.y75{bottom:660.181200pt;}
.y2a{bottom:662.895867pt;}
.yb6{bottom:666.229200pt;}
.y4f{bottom:668.181200pt;}
.y9{bottom:676.544133pt;}
.y98{bottom:678.138533pt;}
.y74{bottom:680.453200pt;}
.y29{bottom:682.895867pt;}
.y4e{bottom:687.653200pt;}
.y8{bottom:696.544133pt;}
.y97{bottom:698.666533pt;}
.yb5{bottom:699.562533pt;}
.y73{bottom:700.725200pt;}
.y28{bottom:702.895867pt;}
.y4d{bottom:707.125200pt;}
.y96{bottom:719.194533pt;}
.y72{bottom:720.997200pt;}
.y27{bottom:722.895867pt;}
.yb4{bottom:726.229200pt;}
.y4c{bottom:726.597200pt;}
.y95{bottom:739.722533pt;}
.y71{bottom:741.269200pt;}
.y26{bottom:742.895867pt;}
.y4b{bottom:746.069200pt;}
.y7{bottom:756.229200pt;}
.y94{bottom:760.250533pt;}
.y70{bottom:761.541200pt;}
.y25{bottom:762.895867pt;}
.y4a{bottom:765.541200pt;}
.y93{bottom:780.778533pt;}
.y6f{bottom:781.813200pt;}
.y6{bottom:782.895867pt;}
.y49{bottom:785.013200pt;}
.y92{bottom:801.306533pt;}
.y6e{bottom:802.085200pt;}
.y24{bottom:802.895867pt;}
.y48{bottom:804.485200pt;}
.y5{bottom:809.562533pt;}
.y91{bottom:821.834533pt;}
.y6d{bottom:822.357200pt;}
.y23{bottom:822.895867pt;}
.y47{bottom:823.957200pt;}
.y4{bottom:836.229200pt;}
.y90{bottom:842.362533pt;}
.y6c{bottom:842.629200pt;}
.y22{bottom:842.895867pt;}
.y46{bottom:843.429200pt;}
.h8{height:21.894141pt;}
.h9{height:36.229167pt;}
.h4{height:44.960000pt;}
.h2{height:45.286458pt;}
.h5{height:54.343750pt;}
.h7{height:55.047217pt;}
.h3{height:90.572917pt;}
.h6{height:269.254347pt;}
.h0{height:941.794667pt;}
.h1{height:942.000000pt;}
.w1{width:658.666667pt;}
.w0{width:658.897333pt;}
.x0{left:0.000000pt;}
.x1{left:78.897600pt;}
.x8{left:88.497600pt;}
.x4{left:92.119733pt;}
.x7{left:100.012400pt;}
.x9{left:109.600000pt;}
.x6{left:113.228400pt;}
.x3{left:121.287733pt;}
.x2{left:138.884267pt;}
.x5{left:556.250000pt;}
}




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