
    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_ef4b69f24e8e14f2abd13393.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.692383;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_d5d2e5b51f1f9cdc725516a1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.074219;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_d55d3895e08ece03342e08fb.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.919922;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_10e4eb5270a690956a703301.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.011719;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_d5732366b10e16a998ace38b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.927246;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_6edf816cd3e2d2288a2229f2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.820312;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_be81076bf16467f49b3b9b9b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.074219;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_a8cee4e28250e4066431ac18.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.982000px;}
.ls4{letter-spacing:-3.630000px;}
.ls7{letter-spacing:-0.660000px;}
.ls3{letter-spacing:-0.600000px;}
.ls5{letter-spacing:-0.540000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.004608px;}
.ls6{letter-spacing:0.005208px;}
.ls1{letter-spacing:2.400000px;}
.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:-52.500000px;}
.wsc{word-spacing:-19.500000px;}
.ws9{word-spacing:-16.500000px;}
.ws7{word-spacing:-15.000000px;}
.wsd{word-spacing:-13.650000px;}
.ws32{word-spacing:-13.500000px;}
.wsb{word-spacing:-12.960000px;}
.ws8{word-spacing:-10.500000px;}
.wsa{word-spacing:-8.751996px;}
.ws6a{word-spacing:-5.280000px;}
.ws4{word-spacing:-3.630000px;}
.ws1b{word-spacing:-2.904000px;}
.ws3b{word-spacing:-2.640000px;}
.ws52{word-spacing:-2.574000px;}
.ws43{word-spacing:-2.244000px;}
.ws4f{word-spacing:-1.848000px;}
.ws27{word-spacing:-1.716000px;}
.ws15{word-spacing:-1.680000px;}
.ws21{word-spacing:-1.674000px;}
.ws61{word-spacing:-1.650000px;}
.ws6{word-spacing:-1.584000px;}
.wse{word-spacing:-1.560000px;}
.ws5b{word-spacing:-1.518000px;}
.ws57{word-spacing:-1.386000px;}
.ws66{word-spacing:-1.380000px;}
.ws4b{word-spacing:-1.320000px;}
.ws18{word-spacing:-1.254000px;}
.ws3{word-spacing:-1.188000px;}
.ws20{word-spacing:-1.134000px;}
.ws16{word-spacing:-1.080000px;}
.ws40{word-spacing:-1.056000px;}
.ws60{word-spacing:-0.726000px;}
.ws63{word-spacing:-0.660000px;}
.ws54{word-spacing:-0.594000px;}
.ws1e{word-spacing:-0.540000px;}
.ws65{word-spacing:-0.396000px;}
.wsf{word-spacing:-0.300000px;}
.ws22{word-spacing:-0.270000px;}
.ws38{word-spacing:-0.264000px;}
.ws49{word-spacing:-0.198000px;}
.ws34{word-spacing:-0.132000px;}
.ws46{word-spacing:-0.108000px;}
.ws1{word-spacing:0.000000px;}
.ws42{word-spacing:0.066000px;}
.ws62{word-spacing:0.132000px;}
.ws41{word-spacing:0.330000px;}
.ws17{word-spacing:0.528000px;}
.ws1f{word-spacing:0.540000px;}
.ws35{word-spacing:0.660000px;}
.ws12{word-spacing:0.840000px;}
.ws26{word-spacing:0.924000px;}
.ws2c{word-spacing:0.990000px;}
.ws14{word-spacing:1.020000px;}
.ws19{word-spacing:1.056000px;}
.ws56{word-spacing:1.122000px;}
.ws1d{word-spacing:1.188000px;}
.ws2a{word-spacing:1.254000px;}
.ws3f{word-spacing:1.320000px;}
.ws58{word-spacing:1.404000px;}
.ws59{word-spacing:1.674000px;}
.ws3c{word-spacing:2.178000px;}
.ws28{word-spacing:2.310000px;}
.ws44{word-spacing:2.322000px;}
.ws45{word-spacing:2.376000px;}
.ws1a{word-spacing:2.442000px;}
.ws47{word-spacing:2.484000px;}
.ws4c{word-spacing:2.574000px;}
.ws13{word-spacing:2.700000px;}
.ws5f{word-spacing:2.706000px;}
.ws4a{word-spacing:2.838000px;}
.ws50{word-spacing:2.970000px;}
.ws10{word-spacing:3.060000px;}
.ws55{word-spacing:3.102000px;}
.ws5d{word-spacing:3.432000px;}
.ws33{word-spacing:3.696000px;}
.ws2e{word-spacing:3.894000px;}
.ws53{word-spacing:3.960000px;}
.ws1c{word-spacing:4.026000px;}
.ws67{word-spacing:4.104000px;}
.ws4d{word-spacing:4.290000px;}
.ws29{word-spacing:4.488000px;}
.ws5a{word-spacing:4.536000px;}
.ws37{word-spacing:4.554000px;}
.ws5e{word-spacing:4.620000px;}
.ws48{word-spacing:4.752000px;}
.ws64{word-spacing:4.884000px;}
.ws25{word-spacing:5.016000px;}
.ws30{word-spacing:5.214000px;}
.ws2b{word-spacing:5.610000px;}
.ws69{word-spacing:5.670000px;}
.ws2f{word-spacing:5.676000px;}
.ws2d{word-spacing:6.006000px;}
.ws4e{word-spacing:6.138000px;}
.ws23{word-spacing:6.336000px;}
.ws11{word-spacing:6.600000px;}
.ws5c{word-spacing:6.666000px;}
.ws39{word-spacing:7.194000px;}
.ws31{word-spacing:7.344000px;}
.ws2{word-spacing:7.392000px;}
.ws3e{word-spacing:7.524000px;}
.ws68{word-spacing:7.830000px;}
.ws51{word-spacing:8.052000px;}
.ws36{word-spacing:8.118000px;}
.ws3d{word-spacing:8.250000px;}
.ws3a{word-spacing:9.768000px;}
.ws24{word-spacing:10.758000px;}
.ws5{word-spacing:40.854000px;}
._7{margin-left:-14.897400px;}
._a{margin-left:-13.284000px;}
._1{margin-left:-8.494200px;}
._0{margin-left:-7.326000px;}
._8{margin-left:-6.072000px;}
._6{margin-left:-5.029200px;}
._2{margin-left:-3.953400px;}
._4{margin-left:-2.785200px;}
._5{margin-left:-1.660800px;}
._10{width:1.207800px;}
._d{width:2.457000px;}
._3{width:3.597000px;}
._e{width:4.666200px;}
._c{width:5.946600px;}
._b{width:7.906800px;}
._f{width:9.292800px;}
._12{width:35.964000px;}
._11{width:38.178000px;}
._9{width:40.730208px;}
.fc4{color:rgb(79,76,77);}
.fc3{color:rgb(57,53,54);}
.fc2{color:rgb(35,31,32);}
.fc1{color:rgb(78,96,104);}
.fc0{color:rgb(5,15,34);}
.fs7{font-size:31.482000px;}
.fs6{font-size:42.000000px;}
.fs8{font-size:54.000000px;}
.fsa{font-size:54.600000px;}
.fs5{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs9{font-size:78.000000px;}
.fs0{font-size:90.000000px;}
.fs1{font-size:120.000000px;}
.fs2{font-size:210.000000px;}
.fs3{font-size:240.000000px;}
.y0{bottom:0.000000px;}
.y19{bottom:53.858250px;}
.y1{bottom:54.000000px;}
.y50{bottom:55.232850px;}
.y35{bottom:70.200000px;}
.y18{bottom:73.358250px;}
.ya4{bottom:74.695500px;}
.y4f{bottom:74.732850px;}
.y34{bottom:86.400000px;}
.y17{bottom:92.858250px;}
.y4e{bottom:94.232850px;}
.ya3{bottom:94.903950px;}
.y7b{bottom:102.600000px;}
.y33{bottom:107.095500px;}
.ya2{bottom:111.103950px;}
.y4d{bottom:113.732850px;}
.y7a{bottom:123.295500px;}
.ya1{bottom:131.799450px;}
.y16{bottom:131.858250px;}
.y4c{bottom:133.232850px;}
.y79{bottom:143.503950px;}
.y15{bottom:151.358250px;}
.y4b{bottom:152.732850px;}
.y78{bottom:159.703950px;}
.y14{bottom:170.858250px;}
.y4a{bottom:172.232850px;}
.y77{bottom:175.903950px;}
.y32{bottom:180.214800px;}
.yab{bottom:188.201250px;}
.y13{bottom:190.358250px;}
.y49{bottom:191.732850px;}
.y76{bottom:196.599450px;}
.y31{bottom:199.714800px;}
.ya0{bottom:200.732700px;}
.yaa{bottom:208.953300px;}
.y48{bottom:211.232850px;}
.y30{bottom:219.214800px;}
.y9f{bottom:220.232700px;}
.ya9{bottom:225.453300px;}
.y12{bottom:229.358250px;}
.y47{bottom:230.732850px;}
.y2f{bottom:238.714800px;}
.y9e{bottom:239.732700px;}
.ya8{bottom:246.205200px;}
.y11{bottom:248.858250px;}
.y46{bottom:250.232850px;}
.y2e{bottom:258.214800px;}
.y75{bottom:259.216650px;}
.y9d{bottom:259.232700px;}
.ya7{bottom:262.705200px;}
.y10{bottom:268.358250px;}
.y45{bottom:269.732850px;}
.y2d{bottom:277.714800px;}
.y74{bottom:278.716650px;}
.y9c{bottom:278.732700px;}
.ya6{bottom:279.205200px;}
.yf{bottom:287.858250px;}
.y44{bottom:289.232850px;}
.y2c{bottom:297.214800px;}
.y73{bottom:298.216650px;}
.y9b{bottom:298.232700px;}
.ye{bottom:307.358250px;}
.y43{bottom:308.732850px;}
.ya5{bottom:312.713100px;}
.y2b{bottom:316.714800px;}
.y72{bottom:317.716650px;}
.y9a{bottom:317.732700px;}
.yd{bottom:326.858250px;}
.y42{bottom:328.232850px;}
.y71{bottom:337.216650px;}
.y99{bottom:337.232700px;}
.yc{bottom:346.358250px;}
.y41{bottom:347.732850px;}
.y2a{bottom:348.970800px;}
.y70{bottom:356.716650px;}
.y98{bottom:356.732700px;}
.y3{bottom:359.716500px;}
.y40{bottom:367.232850px;}
.y29{bottom:368.470800px;}
.y6f{bottom:376.216650px;}
.y97{bottom:376.232700px;}
.yb{bottom:385.358250px;}
.y3f{bottom:386.732850px;}
.y28{bottom:387.970800px;}
.y6e{bottom:395.716650px;}
.y96{bottom:395.732700px;}
.ya{bottom:404.858250px;}
.y3e{bottom:406.232850px;}
.y27{bottom:407.470800px;}
.y6d{bottom:415.216650px;}
.y95{bottom:415.232700px;}
.y9{bottom:424.358250px;}
.y26{bottom:426.970800px;}
.y6c{bottom:434.716650px;}
.y94{bottom:434.732700px;}
.y2{bottom:434.976300px;}
.y52{bottom:440.217750px;}
.y8{bottom:443.858250px;}
.y25{bottom:446.470800px;}
.y6b{bottom:454.216650px;}
.y93{bottom:454.232700px;}
.y51{bottom:459.717750px;}
.y7{bottom:463.358250px;}
.y24{bottom:465.970800px;}
.y6a{bottom:473.716650px;}
.y92{bottom:473.732700px;}
.y6{bottom:482.858250px;}
.y23{bottom:485.470800px;}
.y69{bottom:493.216650px;}
.y91{bottom:493.232700px;}
.y22{bottom:504.970800px;}
.y68{bottom:512.716650px;}
.y90{bottom:512.732700px;}
.y5{bottom:521.858250px;}
.ybd{bottom:529.466700px;}
.y67{bottom:532.216650px;}
.y8f{bottom:532.232700px;}
.y21{bottom:537.226650px;}
.y4{bottom:541.358250px;}
.ybc{bottom:545.966700px;}
.y66{bottom:551.716650px;}
.y8e{bottom:551.732700px;}
.y20{bottom:556.726650px;}
.ybb{bottom:566.718600px;}
.y65{bottom:571.216650px;}
.y8d{bottom:571.232700px;}
.y1f{bottom:576.226650px;}
.yba{bottom:583.218600px;}
.y64{bottom:590.716650px;}
.y8c{bottom:590.732700px;}
.y1e{bottom:595.726650px;}
.yb9{bottom:603.970650px;}
.y63{bottom:610.216650px;}
.y8b{bottom:610.232700px;}
.y1d{bottom:615.226650px;}
.yb8{bottom:620.470650px;}
.y62{bottom:629.716650px;}
.y8a{bottom:629.732700px;}
.y1c{bottom:634.726650px;}
.yb7{bottom:641.222700px;}
.y61{bottom:649.216650px;}
.y89{bottom:649.232700px;}
.y1b{bottom:654.226650px;}
.yb6{bottom:657.722700px;}
.y60{bottom:668.716650px;}
.y88{bottom:668.732700px;}
.y1a{bottom:673.726650px;}
.yb5{bottom:678.474600px;}
.y5f{bottom:688.216650px;}
.y87{bottom:688.232700px;}
.yb4{bottom:694.974600px;}
.y5e{bottom:707.716650px;}
.y86{bottom:707.732700px;}
.yb3{bottom:715.726650px;}
.y5d{bottom:727.216650px;}
.y85{bottom:727.232700px;}
.yb2{bottom:732.226500px;}
.y3b{bottom:744.312600px;}
.y5c{bottom:746.716650px;}
.y84{bottom:746.732700px;}
.yb1{bottom:752.978550px;}
.y3a{bottom:760.512600px;}
.y5b{bottom:766.216650px;}
.y83{bottom:766.232700px;}
.yb0{bottom:769.478550px;}
.y39{bottom:776.712450px;}
.y5a{bottom:785.716650px;}
.y82{bottom:785.732700px;}
.yaf{bottom:802.986450px;}
.y59{bottom:805.216650px;}
.y81{bottom:805.232700px;}
.y58{bottom:824.716650px;}
.y80{bottom:824.732700px;}
.y38{bottom:842.632200px;}
.y57{bottom:844.216650px;}
.y7f{bottom:844.232700px;}
.y56{bottom:863.716650px;}
.y7e{bottom:863.732700px;}
.yae{bottom:870.758100px;}
.y37{bottom:878.632200px;}
.y55{bottom:883.216650px;}
.y7d{bottom:883.232700px;}
.yad{bottom:887.258100px;}
.y54{bottom:902.716650px;}
.y7c{bottom:902.732700px;}
.yac{bottom:903.758100px;}
.y36{bottom:914.632200px;}
.y3d{bottom:954.158550px;}
.y3c{bottom:970.658550px;}
.y53{bottom:971.117700px;}
.ha{height:28.371516px;}
.he{height:39.313477px;}
.hd{height:39.339844px;}
.h8{height:42.246094px;}
.hb{height:46.353516px;}
.h5{height:46.470703px;}
.h9{height:51.474609px;}
.h7{height:51.503906px;}
.hc{height:51.987305px;}
.h6{height:56.654297px;}
.hf{height:56.786133px;}
.h10{height:56.824219px;}
.h2{height:60.952148px;}
.h3{height:103.007812px;}
.h4{height:206.015625px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x12{left:85.039350px;}
.x5{left:106.511850px;}
.x15{left:127.559100px;}
.x4{left:144.567000px;}
.xb{left:150.226200px;}
.xa{left:183.990750px;}
.x3{left:201.632100px;}
.xf{left:227.302950px;}
.xd{left:240.141750px;}
.xc{left:254.369250px;}
.x2{left:265.027050px;}
.xe{left:303.830400px;}
.x1{left:320.806350px;}
.x6{left:332.489850px;}
.x8{left:365.584350px;}
.x7{left:398.908500px;}
.x9{left:405.696450px;}
.x13{left:439.015800px;}
.x10{left:475.451250px;}
.x11{left:536.972550px;}
.x14{left:630.818700px;}
@media print{
.v2{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.984000pt;}
.ls4{letter-spacing:-3.226667pt;}
.ls7{letter-spacing:-0.586667pt;}
.ls3{letter-spacing:-0.533333pt;}
.ls5{letter-spacing:-0.480000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.004096pt;}
.ls6{letter-spacing:0.004629pt;}
.ls1{letter-spacing:2.133333pt;}
.ws0{word-spacing:-46.666667pt;}
.wsc{word-spacing:-17.333333pt;}
.ws9{word-spacing:-14.666667pt;}
.ws7{word-spacing:-13.333333pt;}
.wsd{word-spacing:-12.133333pt;}
.ws32{word-spacing:-12.000000pt;}
.wsb{word-spacing:-11.520000pt;}
.ws8{word-spacing:-9.333333pt;}
.wsa{word-spacing:-7.779552pt;}
.ws6a{word-spacing:-4.693333pt;}
.ws4{word-spacing:-3.226667pt;}
.ws1b{word-spacing:-2.581333pt;}
.ws3b{word-spacing:-2.346667pt;}
.ws52{word-spacing:-2.288000pt;}
.ws43{word-spacing:-1.994667pt;}
.ws4f{word-spacing:-1.642667pt;}
.ws27{word-spacing:-1.525333pt;}
.ws15{word-spacing:-1.493333pt;}
.ws21{word-spacing:-1.488000pt;}
.ws61{word-spacing:-1.466667pt;}
.ws6{word-spacing:-1.408000pt;}
.wse{word-spacing:-1.386667pt;}
.ws5b{word-spacing:-1.349333pt;}
.ws57{word-spacing:-1.232000pt;}
.ws66{word-spacing:-1.226667pt;}
.ws4b{word-spacing:-1.173333pt;}
.ws18{word-spacing:-1.114667pt;}
.ws3{word-spacing:-1.056000pt;}
.ws20{word-spacing:-1.008000pt;}
.ws16{word-spacing:-0.960000pt;}
.ws40{word-spacing:-0.938667pt;}
.ws60{word-spacing:-0.645333pt;}
.ws63{word-spacing:-0.586667pt;}
.ws54{word-spacing:-0.528000pt;}
.ws1e{word-spacing:-0.480000pt;}
.ws65{word-spacing:-0.352000pt;}
.wsf{word-spacing:-0.266667pt;}
.ws22{word-spacing:-0.240000pt;}
.ws38{word-spacing:-0.234667pt;}
.ws49{word-spacing:-0.176000pt;}
.ws34{word-spacing:-0.117333pt;}
.ws46{word-spacing:-0.096000pt;}
.ws1{word-spacing:0.000000pt;}
.ws42{word-spacing:0.058667pt;}
.ws62{word-spacing:0.117333pt;}
.ws41{word-spacing:0.293333pt;}
.ws17{word-spacing:0.469333pt;}
.ws1f{word-spacing:0.480000pt;}
.ws35{word-spacing:0.586667pt;}
.ws12{word-spacing:0.746667pt;}
.ws26{word-spacing:0.821333pt;}
.ws2c{word-spacing:0.880000pt;}
.ws14{word-spacing:0.906667pt;}
.ws19{word-spacing:0.938667pt;}
.ws56{word-spacing:0.997333pt;}
.ws1d{word-spacing:1.056000pt;}
.ws2a{word-spacing:1.114667pt;}
.ws3f{word-spacing:1.173333pt;}
.ws58{word-spacing:1.248000pt;}
.ws59{word-spacing:1.488000pt;}
.ws3c{word-spacing:1.936000pt;}
.ws28{word-spacing:2.053333pt;}
.ws44{word-spacing:2.064000pt;}
.ws45{word-spacing:2.112000pt;}
.ws1a{word-spacing:2.170667pt;}
.ws47{word-spacing:2.208000pt;}
.ws4c{word-spacing:2.288000pt;}
.ws13{word-spacing:2.400000pt;}
.ws5f{word-spacing:2.405333pt;}
.ws4a{word-spacing:2.522667pt;}
.ws50{word-spacing:2.640000pt;}
.ws10{word-spacing:2.720000pt;}
.ws55{word-spacing:2.757333pt;}
.ws5d{word-spacing:3.050667pt;}
.ws33{word-spacing:3.285333pt;}
.ws2e{word-spacing:3.461333pt;}
.ws53{word-spacing:3.520000pt;}
.ws1c{word-spacing:3.578667pt;}
.ws67{word-spacing:3.648000pt;}
.ws4d{word-spacing:3.813333pt;}
.ws29{word-spacing:3.989333pt;}
.ws5a{word-spacing:4.032000pt;}
.ws37{word-spacing:4.048000pt;}
.ws5e{word-spacing:4.106667pt;}
.ws48{word-spacing:4.224000pt;}
.ws64{word-spacing:4.341333pt;}
.ws25{word-spacing:4.458667pt;}
.ws30{word-spacing:4.634667pt;}
.ws2b{word-spacing:4.986667pt;}
.ws69{word-spacing:5.040000pt;}
.ws2f{word-spacing:5.045333pt;}
.ws2d{word-spacing:5.338667pt;}
.ws4e{word-spacing:5.456000pt;}
.ws23{word-spacing:5.632000pt;}
.ws11{word-spacing:5.866667pt;}
.ws5c{word-spacing:5.925333pt;}
.ws39{word-spacing:6.394667pt;}
.ws31{word-spacing:6.528000pt;}
.ws2{word-spacing:6.570667pt;}
.ws3e{word-spacing:6.688000pt;}
.ws68{word-spacing:6.960000pt;}
.ws51{word-spacing:7.157333pt;}
.ws36{word-spacing:7.216000pt;}
.ws3d{word-spacing:7.333333pt;}
.ws3a{word-spacing:8.682667pt;}
.ws24{word-spacing:9.562667pt;}
.ws5{word-spacing:36.314667pt;}
._7{margin-left:-13.242133pt;}
._a{margin-left:-11.808000pt;}
._1{margin-left:-7.550400pt;}
._0{margin-left:-6.512000pt;}
._8{margin-left:-5.397333pt;}
._6{margin-left:-4.470400pt;}
._2{margin-left:-3.514133pt;}
._4{margin-left:-2.475733pt;}
._5{margin-left:-1.476267pt;}
._10{width:1.073600pt;}
._d{width:2.184000pt;}
._3{width:3.197333pt;}
._e{width:4.147733pt;}
._c{width:5.285867pt;}
._b{width:7.028267pt;}
._f{width:8.260267pt;}
._12{width:31.968000pt;}
._11{width:33.936000pt;}
._9{width:36.204629pt;}
.fs7{font-size:27.984000pt;}
.fs6{font-size:37.333333pt;}
.fs8{font-size:48.000000pt;}
.fsa{font-size:48.533333pt;}
.fs5{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs9{font-size:69.333333pt;}
.fs0{font-size:80.000000pt;}
.fs1{font-size:106.666667pt;}
.fs2{font-size:186.666667pt;}
.fs3{font-size:213.333333pt;}
.y0{bottom:0.000000pt;}
.y19{bottom:47.874000pt;}
.y1{bottom:48.000000pt;}
.y50{bottom:49.095867pt;}
.y35{bottom:62.400000pt;}
.y18{bottom:65.207333pt;}
.ya4{bottom:66.396000pt;}
.y4f{bottom:66.429200pt;}
.y34{bottom:76.800000pt;}
.y17{bottom:82.540667pt;}
.y4e{bottom:83.762533pt;}
.ya3{bottom:84.359067pt;}
.y7b{bottom:91.200000pt;}
.y33{bottom:95.196000pt;}
.ya2{bottom:98.759067pt;}
.y4d{bottom:101.095867pt;}
.y7a{bottom:109.596000pt;}
.ya1{bottom:117.155067pt;}
.y16{bottom:117.207333pt;}
.y4c{bottom:118.429200pt;}
.y79{bottom:127.559067pt;}
.y15{bottom:134.540667pt;}
.y4b{bottom:135.762533pt;}
.y78{bottom:141.959067pt;}
.y14{bottom:151.874000pt;}
.y4a{bottom:153.095867pt;}
.y77{bottom:156.359067pt;}
.y32{bottom:160.190933pt;}
.yab{bottom:167.290000pt;}
.y13{bottom:169.207333pt;}
.y49{bottom:170.429200pt;}
.y76{bottom:174.755067pt;}
.y31{bottom:177.524267pt;}
.ya0{bottom:178.429067pt;}
.yaa{bottom:185.736267pt;}
.y48{bottom:187.762533pt;}
.y30{bottom:194.857600pt;}
.y9f{bottom:195.762400pt;}
.ya9{bottom:200.402933pt;}
.y12{bottom:203.874000pt;}
.y47{bottom:205.095867pt;}
.y2f{bottom:212.190933pt;}
.y9e{bottom:213.095733pt;}
.ya8{bottom:218.849067pt;}
.y11{bottom:221.207333pt;}
.y46{bottom:222.429200pt;}
.y2e{bottom:229.524267pt;}
.y75{bottom:230.414800pt;}
.y9d{bottom:230.429067pt;}
.ya7{bottom:233.515733pt;}
.y10{bottom:238.540667pt;}
.y45{bottom:239.762533pt;}
.y2d{bottom:246.857600pt;}
.y74{bottom:247.748133pt;}
.y9c{bottom:247.762400pt;}
.ya6{bottom:248.182400pt;}
.yf{bottom:255.874000pt;}
.y44{bottom:257.095867pt;}
.y2c{bottom:264.190933pt;}
.y73{bottom:265.081467pt;}
.y9b{bottom:265.095733pt;}
.ye{bottom:273.207333pt;}
.y43{bottom:274.429200pt;}
.ya5{bottom:277.967200pt;}
.y2b{bottom:281.524267pt;}
.y72{bottom:282.414800pt;}
.y9a{bottom:282.429067pt;}
.yd{bottom:290.540667pt;}
.y42{bottom:291.762533pt;}
.y71{bottom:299.748133pt;}
.y99{bottom:299.762400pt;}
.yc{bottom:307.874000pt;}
.y41{bottom:309.095867pt;}
.y2a{bottom:310.196267pt;}
.y70{bottom:317.081467pt;}
.y98{bottom:317.095733pt;}
.y3{bottom:319.748000pt;}
.y40{bottom:326.429200pt;}
.y29{bottom:327.529600pt;}
.y6f{bottom:334.414800pt;}
.y97{bottom:334.429067pt;}
.yb{bottom:342.540667pt;}
.y3f{bottom:343.762533pt;}
.y28{bottom:344.862933pt;}
.y6e{bottom:351.748133pt;}
.y96{bottom:351.762400pt;}
.ya{bottom:359.874000pt;}
.y3e{bottom:361.095867pt;}
.y27{bottom:362.196267pt;}
.y6d{bottom:369.081467pt;}
.y95{bottom:369.095733pt;}
.y9{bottom:377.207333pt;}
.y26{bottom:379.529600pt;}
.y6c{bottom:386.414800pt;}
.y94{bottom:386.429067pt;}
.y2{bottom:386.645600pt;}
.y52{bottom:391.304667pt;}
.y8{bottom:394.540667pt;}
.y25{bottom:396.862933pt;}
.y6b{bottom:403.748133pt;}
.y93{bottom:403.762400pt;}
.y51{bottom:408.638000pt;}
.y7{bottom:411.874000pt;}
.y24{bottom:414.196267pt;}
.y6a{bottom:421.081467pt;}
.y92{bottom:421.095733pt;}
.y6{bottom:429.207333pt;}
.y23{bottom:431.529600pt;}
.y69{bottom:438.414800pt;}
.y91{bottom:438.429067pt;}
.y22{bottom:448.862933pt;}
.y68{bottom:455.748133pt;}
.y90{bottom:455.762400pt;}
.y5{bottom:463.874000pt;}
.ybd{bottom:470.637067pt;}
.y67{bottom:473.081467pt;}
.y8f{bottom:473.095733pt;}
.y21{bottom:477.534800pt;}
.y4{bottom:481.207333pt;}
.ybc{bottom:485.303733pt;}
.y66{bottom:490.414800pt;}
.y8e{bottom:490.429067pt;}
.y20{bottom:494.868133pt;}
.ybb{bottom:503.749867pt;}
.y65{bottom:507.748133pt;}
.y8d{bottom:507.762400pt;}
.y1f{bottom:512.201467pt;}
.yba{bottom:518.416533pt;}
.y64{bottom:525.081467pt;}
.y8c{bottom:525.095733pt;}
.y1e{bottom:529.534800pt;}
.yb9{bottom:536.862800pt;}
.y63{bottom:542.414800pt;}
.y8b{bottom:542.429067pt;}
.y1d{bottom:546.868133pt;}
.yb8{bottom:551.529467pt;}
.y62{bottom:559.748133pt;}
.y8a{bottom:559.762400pt;}
.y1c{bottom:564.201467pt;}
.yb7{bottom:569.975733pt;}
.y61{bottom:577.081467pt;}
.y89{bottom:577.095733pt;}
.y1b{bottom:581.534800pt;}
.yb6{bottom:584.642400pt;}
.y60{bottom:594.414800pt;}
.y88{bottom:594.429067pt;}
.y1a{bottom:598.868133pt;}
.yb5{bottom:603.088533pt;}
.y5f{bottom:611.748133pt;}
.y87{bottom:611.762400pt;}
.yb4{bottom:617.755200pt;}
.y5e{bottom:629.081467pt;}
.y86{bottom:629.095733pt;}
.yb3{bottom:636.201467pt;}
.y5d{bottom:646.414800pt;}
.y85{bottom:646.429067pt;}
.yb2{bottom:650.868000pt;}
.y3b{bottom:661.611200pt;}
.y5c{bottom:663.748133pt;}
.y84{bottom:663.762400pt;}
.yb1{bottom:669.314267pt;}
.y3a{bottom:676.011200pt;}
.y5b{bottom:681.081467pt;}
.y83{bottom:681.095733pt;}
.yb0{bottom:683.980933pt;}
.y39{bottom:690.411067pt;}
.y5a{bottom:698.414800pt;}
.y82{bottom:698.429067pt;}
.yaf{bottom:713.765733pt;}
.y59{bottom:715.748133pt;}
.y81{bottom:715.762400pt;}
.y58{bottom:733.081467pt;}
.y80{bottom:733.095733pt;}
.y38{bottom:749.006400pt;}
.y57{bottom:750.414800pt;}
.y7f{bottom:750.429067pt;}
.y56{bottom:767.748133pt;}
.y7e{bottom:767.762400pt;}
.yae{bottom:774.007200pt;}
.y37{bottom:781.006400pt;}
.y55{bottom:785.081467pt;}
.y7d{bottom:785.095733pt;}
.yad{bottom:788.673867pt;}
.y54{bottom:802.414800pt;}
.y7c{bottom:802.429067pt;}
.yac{bottom:803.340533pt;}
.y36{bottom:813.006400pt;}
.y3d{bottom:848.140933pt;}
.y3c{bottom:862.807600pt;}
.y53{bottom:863.215733pt;}
.ha{height:25.219125pt;}
.he{height:34.945312pt;}
.hd{height:34.968750pt;}
.h8{height:37.552083pt;}
.hb{height:41.203125pt;}
.h5{height:41.307292pt;}
.h9{height:45.755208pt;}
.h7{height:45.781250pt;}
.hc{height:46.210938pt;}
.h6{height:50.359375pt;}
.hf{height:50.476562pt;}
.h10{height:50.510417pt;}
.h2{height:54.179688pt;}
.h3{height:91.562500pt;}
.h4{height:183.125000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x12{left:75.590533pt;}
.x5{left:94.677200pt;}
.x15{left:113.385867pt;}
.x4{left:128.504000pt;}
.xb{left:133.534400pt;}
.xa{left:163.547333pt;}
.x3{left:179.228533pt;}
.xf{left:202.047067pt;}
.xd{left:213.459333pt;}
.xc{left:226.106000pt;}
.x2{left:235.579600pt;}
.xe{left:270.071467pt;}
.x1{left:285.161200pt;}
.x6{left:295.546533pt;}
.x8{left:324.963867pt;}
.x7{left:354.585333pt;}
.x9{left:360.619067pt;}
.x13{left:390.236267pt;}
.x10{left:422.623333pt;}
.x11{left:477.308933pt;}
.x14{left:560.727733pt;}
}




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