
    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_ea3c581a1d429d3a943b6877.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_374fa4e8a0353092ab0ee162.woff')format("woff");}.ff2{font-family:ff2;line-height:0.965332;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_d236361b4b60c629b915a282.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_626f8e11879d57bb336ffc4c.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_d3284ea4cd15ba4b868d0e37.woff')format("woff");}.ff5{font-family:ff5;line-height:0.678711;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_92e614a299c10ebc72358885.woff')format("woff");}.ff6{font-family:ff6;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;}
.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.200000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.982000px;}
.v2{vertical-align:26.640000px;}
.ls1f{letter-spacing:-2.592000px;}
.ls11{letter-spacing:-1.512000px;}
.ls12{letter-spacing:-1.152000px;}
.ls13{letter-spacing:-1.080000px;}
.ls14{letter-spacing:-0.936000px;}
.lsd{letter-spacing:-0.864000px;}
.ls24{letter-spacing:-0.792000px;}
.ls10{letter-spacing:-0.720000px;}
.ls23{letter-spacing:-0.648000px;}
.lse{letter-spacing:-0.576000px;}
.ls15{letter-spacing:-0.504000px;}
.ls1c{letter-spacing:-0.432000px;}
.ls17{letter-spacing:-0.360000px;}
.ls16{letter-spacing:-0.330000px;}
.ls1e{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.144000px;}
.ls1d{letter-spacing:-0.072000px;}
.ls9{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.072000px;}
.ls1b{letter-spacing:0.144000px;}
.ls22{letter-spacing:0.215400px;}
.ls19{letter-spacing:0.216000px;}
.ls20{letter-spacing:0.288000px;}
.lsb{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.432000px;}
.ls6{letter-spacing:0.504000px;}
.ls7{letter-spacing:0.648000px;}
.ls8{letter-spacing:0.720000px;}
.lsc{letter-spacing:0.792000px;}
.ls18{letter-spacing:0.864000px;}
.lsa{letter-spacing:0.936000px;}
.ls1a{letter-spacing:1.224000px;}
.ls0{letter-spacing:4.200000px;}
.ls2{letter-spacing:6.600000px;}
.ls4{letter-spacing:7.200000px;}
.ls3{letter-spacing:10.200000px;}
.ls1{letter-spacing:39.000000px;}
.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;}
}
.ws5{word-spacing:-20.952000px;}
.ws8{word-spacing:-20.232000px;}
.ws4{word-spacing:-18.144000px;}
.ws9{word-spacing:-17.928000px;}
.ws6{word-spacing:-17.784000px;}
.ws2{word-spacing:-17.640000px;}
.ws7{word-spacing:-17.424000px;}
.ws3{word-spacing:-17.064000px;}
.ws1{word-spacing:-16.860000px;}
.wsa{word-spacing:-12.139200px;}
.ws0{word-spacing:0.000000px;}
._e{margin-left:-19.656000px;}
._12{margin-left:-15.144000px;}
._c{margin-left:-14.142000px;}
._8{margin-left:-9.504000px;}
._0{margin-left:-7.350000px;}
._11{margin-left:-6.270667px;}
._7{margin-left:-4.950000px;}
._5{margin-left:-3.690000px;}
._1{margin-left:-2.520000px;}
._2{margin-left:-1.393333px;}
._3{width:1.680000px;}
._a{width:3.288000px;}
._4{width:4.758000px;}
._6{width:6.240000px;}
._9{width:7.242000px;}
._d{width:8.467333px;}
._b{width:10.224000px;}
._10{width:11.280000px;}
._f{width:13.464000px;}
._13{width:56.923200px;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.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;}
.fs4{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs3{font-size:78.000000px;}
.fs5{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y19{bottom:76.339050px;}
.y1{bottom:76.339350px;}
.y65{bottom:76.339800px;}
.yf1{bottom:140.313750px;}
.ycd{bottom:142.552650px;}
.y87{bottom:142.978800px;}
.y18{bottom:143.551350px;}
.y64{bottom:144.930000px;}
.y3f{bottom:145.308000px;}
.yab{bottom:145.865250px;}
.yf0{bottom:162.365250px;}
.ycc{bottom:163.558650px;}
.y86{bottom:164.722800px;}
.y17{bottom:165.601350px;}
.y3e{bottom:166.458000px;}
.y63{bottom:166.674000px;}
.yef{bottom:173.315250px;}
.ycb{bottom:184.564650px;}
.y85{bottom:186.466800px;}
.y3d{bottom:187.608000px;}
.y16{bottom:187.651350px;}
.yaa{bottom:187.914600px;}
.y62{bottom:188.418000px;}
.yee{bottom:195.365250px;}
.yca{bottom:205.570650px;}
.y84{bottom:208.210800px;}
.y3c{bottom:208.758000px;}
.ya9{bottom:209.064600px;}
.y15{bottom:209.701350px;}
.y61{bottom:210.162000px;}
.yc9{bottom:226.576650px;}
.y3b{bottom:229.908000px;}
.y83{bottom:229.954800px;}
.ya8{bottom:230.214600px;}
.y14{bottom:231.751350px;}
.y60{bottom:231.906000px;}
.yed{bottom:241.014600px;}
.yc8{bottom:247.582650px;}
.y3a{bottom:251.058000px;}
.ya7{bottom:251.364600px;}
.y82{bottom:251.698800px;}
.y5f{bottom:253.650000px;}
.y13{bottom:253.801350px;}
.yec{bottom:262.614600px;}
.yc7{bottom:268.588650px;}
.y39{bottom:272.208000px;}
.ya6{bottom:272.514600px;}
.y81{bottom:273.442800px;}
.y5e{bottom:275.394000px;}
.y12{bottom:275.851350px;}
.yeb{bottom:284.124600px;}
.yc6{bottom:289.594650px;}
.y38{bottom:293.358000px;}
.ya5{bottom:293.664600px;}
.y80{bottom:295.186800px;}
.y5d{bottom:297.138000px;}
.y11{bottom:297.901350px;}
.yea{bottom:305.580600px;}
.yc5{bottom:310.600650px;}
.y37{bottom:314.508000px;}
.ya4{bottom:314.814600px;}
.y7f{bottom:316.930800px;}
.y5c{bottom:318.882000px;}
.y10{bottom:319.951350px;}
.ye9{bottom:327.036600px;}
.yc4{bottom:331.606650px;}
.y36{bottom:335.658000px;}
.ya3{bottom:335.964600px;}
.y7e{bottom:338.674800px;}
.y5b{bottom:340.626000px;}
.yf{bottom:342.001350px;}
.ye8{bottom:348.492600px;}
.yc3{bottom:352.612650px;}
.y35{bottom:356.808000px;}
.ya2{bottom:357.114600px;}
.y7d{bottom:360.418800px;}
.y5a{bottom:362.370000px;}
.ye{bottom:364.051350px;}
.ye7{bottom:369.948600px;}
.yc2{bottom:373.618650px;}
.y34{bottom:377.958000px;}
.ya1{bottom:378.264600px;}
.y7c{bottom:382.162800px;}
.y59{bottom:384.114000px;}
.yd{bottom:386.101350px;}
.ye6{bottom:391.404600px;}
.yc1{bottom:394.624650px;}
.y33{bottom:399.108000px;}
.ya0{bottom:399.414600px;}
.y7b{bottom:403.906800px;}
.y58{bottom:405.858000px;}
.yc{bottom:408.151350px;}
.ye5{bottom:412.860600px;}
.yc0{bottom:415.630650px;}
.y32{bottom:420.258000px;}
.y9f{bottom:420.564600px;}
.y7a{bottom:425.650800px;}
.y57{bottom:427.602000px;}
.yb{bottom:430.201350px;}
.ye4{bottom:434.316600px;}
.ybf{bottom:436.636650px;}
.y31{bottom:441.408000px;}
.y9e{bottom:441.714600px;}
.y79{bottom:447.394800px;}
.y56{bottom:449.346000px;}
.ye3{bottom:455.772600px;}
.ybe{bottom:457.642650px;}
.ya{bottom:460.755300px;}
.y30{bottom:462.558000px;}
.y9d{bottom:462.864600px;}
.y78{bottom:469.138800px;}
.y55{bottom:471.090000px;}
.y40{bottom:475.019400px;}
.ye2{bottom:477.228600px;}
.ybd{bottom:478.648650px;}
.y2f{bottom:483.708000px;}
.y9c{bottom:484.014600px;}
.y77{bottom:490.882800px;}
.y54{bottom:492.834000px;}
.ye1{bottom:498.684600px;}
.ybc{bottom:499.654650px;}
.y2e{bottom:504.858000px;}
.y9b{bottom:505.164600px;}
.y76{bottom:512.626800px;}
.y53{bottom:514.578000px;}
.ye0{bottom:520.140600px;}
.ybb{bottom:520.660650px;}
.y2d{bottom:526.008000px;}
.y9a{bottom:526.314600px;}
.y75{bottom:534.370800px;}
.y52{bottom:536.322000px;}
.ydf{bottom:541.596600px;}
.y2c{bottom:547.158000px;}
.y99{bottom:547.464600px;}
.y9{bottom:548.955300px;}
.y102{bottom:550.014000px;}
.yba{bottom:550.164600px;}
.y74{bottom:556.114800px;}
.y51{bottom:558.066000px;}
.yde{bottom:563.052600px;}
.y2b{bottom:568.308000px;}
.y98{bottom:568.614600px;}
.y8{bottom:571.005300px;}
.y73{bottom:577.858800px;}
.y50{bottom:579.810000px;}
.y101{bottom:582.114000px;}
.ydd{bottom:584.508600px;}
.y2a{bottom:589.458000px;}
.y97{bottom:589.764600px;}
.y7{bottom:593.055300px;}
.y72{bottom:599.602800px;}
.y4f{bottom:601.554000px;}
.y100{bottom:603.714000px;}
.ydc{bottom:605.874600px;}
.y29{bottom:610.608000px;}
.y96{bottom:610.914600px;}
.y6{bottom:615.105300px;}
.y71{bottom:621.346800px;}
.y4e{bottom:623.298000px;}
.yff{bottom:625.314000px;}
.ydb{bottom:627.330600px;}
.y28{bottom:631.758000px;}
.y95{bottom:632.064600px;}
.yb9{bottom:634.080600px;}
.y70{bottom:643.090800px;}
.y4d{bottom:645.042000px;}
.yfe{bottom:646.914000px;}
.yda{bottom:648.786600px;}
.y27{bottom:652.908000px;}
.y94{bottom:653.214600px;}
.yb8{bottom:655.086600px;}
.y6f{bottom:664.834800px;}
.y4c{bottom:666.786000px;}
.yfd{bottom:668.514000px;}
.yd9{bottom:670.242600px;}
.y26{bottom:674.058000px;}
.y93{bottom:674.364600px;}
.yb7{bottom:676.092600px;}
.y5{bottom:680.652300px;}
.y6e{bottom:686.578800px;}
.y4b{bottom:688.530000px;}
.yfc{bottom:690.114000px;}
.yd8{bottom:691.698600px;}
.y25{bottom:695.208000px;}
.y92{bottom:695.514600px;}
.yb6{bottom:697.098600px;}
.y6d{bottom:708.322800px;}
.y4a{bottom:710.274000px;}
.y4{bottom:711.405300px;}
.yfb{bottom:711.714000px;}
.yd7{bottom:713.154600px;}
.y24{bottom:716.358000px;}
.y91{bottom:716.664600px;}
.yb5{bottom:718.104600px;}
.y6c{bottom:730.066800px;}
.y49{bottom:732.018000px;}
.yfa{bottom:733.314000px;}
.yd6{bottom:734.610600px;}
.y23{bottom:737.508000px;}
.y90{bottom:737.814600px;}
.yb4{bottom:739.110600px;}
.y6b{bottom:751.810800px;}
.y48{bottom:753.762000px;}
.yf9{bottom:754.914000px;}
.yd5{bottom:756.066600px;}
.y22{bottom:758.658000px;}
.y8f{bottom:758.964600px;}
.yb3{bottom:760.116600px;}
.y3{bottom:768.316800px;}
.y47{bottom:775.506000px;}
.yf8{bottom:776.514000px;}
.yd4{bottom:777.522600px;}
.y21{bottom:779.808000px;}
.y8e{bottom:780.114600px;}
.yb2{bottom:781.122600px;}
.y6a{bottom:782.064750px;}
.y46{bottom:797.250000px;}
.yf7{bottom:798.114000px;}
.yd3{bottom:798.978600px;}
.y20{bottom:800.958000px;}
.y8d{bottom:801.264600px;}
.yb1{bottom:802.128600px;}
.y45{bottom:818.994000px;}
.yf6{bottom:819.714000px;}
.yd2{bottom:820.434600px;}
.y1f{bottom:822.108000px;}
.y8c{bottom:822.414600px;}
.yb0{bottom:823.134600px;}
.y44{bottom:840.738000px;}
.yf5{bottom:841.314000px;}
.yd1{bottom:841.890600px;}
.y1e{bottom:843.258000px;}
.y8b{bottom:843.564600px;}
.yaf{bottom:844.140600px;}
.y43{bottom:862.482000px;}
.y69{bottom:862.482600px;}
.yf4{bottom:862.914000px;}
.yd0{bottom:863.346600px;}
.y1d{bottom:864.408000px;}
.y8a{bottom:864.714600px;}
.yae{bottom:865.146600px;}
.y42{bottom:884.226000px;}
.y68{bottom:884.226600px;}
.yf3{bottom:884.514000px;}
.ycf{bottom:884.802600px;}
.y1c{bottom:885.558000px;}
.y89{bottom:885.864600px;}
.yad{bottom:886.152600px;}
.y41{bottom:905.970000px;}
.y67{bottom:905.970600px;}
.yf2{bottom:906.114000px;}
.yce{bottom:906.258600px;}
.y1b{bottom:906.708000px;}
.y88{bottom:907.014600px;}
.yac{bottom:907.158600px;}
.y2{bottom:926.716800px;}
.y1a{bottom:927.714000px;}
.y66{bottom:927.714600px;}
.hb{height:30.568359px;}
.h8{height:38.645086px;}
.h2{height:40.757812px;}
.h5{height:43.989258px;}
.hd{height:48.399902px;}
.h3{height:50.947266px;}
.h9{height:56.041992px;}
.h7{height:61.136719px;}
.ha{height:63.322031px;}
.hc{height:63.682031px;}
.h4{height:66.231445px;}
.h6{height:86.610352px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x3{left:76.535400px;}
.x4{left:97.793400px;}
.x8{left:119.087700px;}
.x5{left:143.170350px;}
.x9{left:277.007250px;}
.x1{left:284.507250px;}
.x6{left:398.267700px;}
.x7{left:419.543700px;}
.xb{left:540.203550px;}
.xa{left:579.664350px;}
.x2{left:587.164350px;}
@media print{
.v3{vertical-align:-19.733333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.650667pt;}
.v2{vertical-align:23.680000pt;}
.ls1f{letter-spacing:-2.304000pt;}
.ls11{letter-spacing:-1.344000pt;}
.ls12{letter-spacing:-1.024000pt;}
.ls13{letter-spacing:-0.960000pt;}
.ls14{letter-spacing:-0.832000pt;}
.lsd{letter-spacing:-0.768000pt;}
.ls24{letter-spacing:-0.704000pt;}
.ls10{letter-spacing:-0.640000pt;}
.ls23{letter-spacing:-0.576000pt;}
.lse{letter-spacing:-0.512000pt;}
.ls15{letter-spacing:-0.448000pt;}
.ls1c{letter-spacing:-0.384000pt;}
.ls17{letter-spacing:-0.320000pt;}
.ls16{letter-spacing:-0.293333pt;}
.ls1e{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.128000pt;}
.ls1d{letter-spacing:-0.064000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.064000pt;}
.ls1b{letter-spacing:0.128000pt;}
.ls22{letter-spacing:0.191467pt;}
.ls19{letter-spacing:0.192000pt;}
.ls20{letter-spacing:0.256000pt;}
.lsb{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.384000pt;}
.ls6{letter-spacing:0.448000pt;}
.ls7{letter-spacing:0.576000pt;}
.ls8{letter-spacing:0.640000pt;}
.lsc{letter-spacing:0.704000pt;}
.ls18{letter-spacing:0.768000pt;}
.lsa{letter-spacing:0.832000pt;}
.ls1a{letter-spacing:1.088000pt;}
.ls0{letter-spacing:3.733333pt;}
.ls2{letter-spacing:5.866667pt;}
.ls4{letter-spacing:6.400000pt;}
.ls3{letter-spacing:9.066667pt;}
.ls1{letter-spacing:34.666667pt;}
.ws5{word-spacing:-18.624000pt;}
.ws8{word-spacing:-17.984000pt;}
.ws4{word-spacing:-16.128000pt;}
.ws9{word-spacing:-15.936000pt;}
.ws6{word-spacing:-15.808000pt;}
.ws2{word-spacing:-15.680000pt;}
.ws7{word-spacing:-15.488000pt;}
.ws3{word-spacing:-15.168000pt;}
.ws1{word-spacing:-14.986667pt;}
.wsa{word-spacing:-10.790400pt;}
.ws0{word-spacing:0.000000pt;}
._e{margin-left:-17.472000pt;}
._12{margin-left:-13.461333pt;}
._c{margin-left:-12.570667pt;}
._8{margin-left:-8.448000pt;}
._0{margin-left:-6.533333pt;}
._11{margin-left:-5.573926pt;}
._7{margin-left:-4.400000pt;}
._5{margin-left:-3.280000pt;}
._1{margin-left:-2.240000pt;}
._2{margin-left:-1.238519pt;}
._3{width:1.493333pt;}
._a{width:2.922667pt;}
._4{width:4.229333pt;}
._6{width:5.546667pt;}
._9{width:6.437333pt;}
._d{width:7.526519pt;}
._b{width:9.088000pt;}
._10{width:10.026667pt;}
._f{width:11.968000pt;}
._13{width:50.598400pt;}
.fs8{font-size:32.000000pt;}
.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;}
.fs4{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs3{font-size:69.333333pt;}
.fs5{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y19{bottom:67.856933pt;}
.y1{bottom:67.857200pt;}
.y65{bottom:67.857600pt;}
.yf1{bottom:124.723333pt;}
.ycd{bottom:126.713467pt;}
.y87{bottom:127.092267pt;}
.y18{bottom:127.601200pt;}
.y64{bottom:128.826667pt;}
.y3f{bottom:129.162667pt;}
.yab{bottom:129.658000pt;}
.yf0{bottom:144.324667pt;}
.ycc{bottom:145.385467pt;}
.y86{bottom:146.420267pt;}
.y17{bottom:147.201200pt;}
.y3e{bottom:147.962667pt;}
.y63{bottom:148.154667pt;}
.yef{bottom:154.058000pt;}
.ycb{bottom:164.057467pt;}
.y85{bottom:165.748267pt;}
.y3d{bottom:166.762667pt;}
.y16{bottom:166.801200pt;}
.yaa{bottom:167.035200pt;}
.y62{bottom:167.482667pt;}
.yee{bottom:173.658000pt;}
.yca{bottom:182.729467pt;}
.y84{bottom:185.076267pt;}
.y3c{bottom:185.562667pt;}
.ya9{bottom:185.835200pt;}
.y15{bottom:186.401200pt;}
.y61{bottom:186.810667pt;}
.yc9{bottom:201.401467pt;}
.y3b{bottom:204.362667pt;}
.y83{bottom:204.404267pt;}
.ya8{bottom:204.635200pt;}
.y14{bottom:206.001200pt;}
.y60{bottom:206.138667pt;}
.yed{bottom:214.235200pt;}
.yc8{bottom:220.073467pt;}
.y3a{bottom:223.162667pt;}
.ya7{bottom:223.435200pt;}
.y82{bottom:223.732267pt;}
.y5f{bottom:225.466667pt;}
.y13{bottom:225.601200pt;}
.yec{bottom:233.435200pt;}
.yc7{bottom:238.745467pt;}
.y39{bottom:241.962667pt;}
.ya6{bottom:242.235200pt;}
.y81{bottom:243.060267pt;}
.y5e{bottom:244.794667pt;}
.y12{bottom:245.201200pt;}
.yeb{bottom:252.555200pt;}
.yc6{bottom:257.417467pt;}
.y38{bottom:260.762667pt;}
.ya5{bottom:261.035200pt;}
.y80{bottom:262.388267pt;}
.y5d{bottom:264.122667pt;}
.y11{bottom:264.801200pt;}
.yea{bottom:271.627200pt;}
.yc5{bottom:276.089467pt;}
.y37{bottom:279.562667pt;}
.ya4{bottom:279.835200pt;}
.y7f{bottom:281.716267pt;}
.y5c{bottom:283.450667pt;}
.y10{bottom:284.401200pt;}
.ye9{bottom:290.699200pt;}
.yc4{bottom:294.761467pt;}
.y36{bottom:298.362667pt;}
.ya3{bottom:298.635200pt;}
.y7e{bottom:301.044267pt;}
.y5b{bottom:302.778667pt;}
.yf{bottom:304.001200pt;}
.ye8{bottom:309.771200pt;}
.yc3{bottom:313.433467pt;}
.y35{bottom:317.162667pt;}
.ya2{bottom:317.435200pt;}
.y7d{bottom:320.372267pt;}
.y5a{bottom:322.106667pt;}
.ye{bottom:323.601200pt;}
.ye7{bottom:328.843200pt;}
.yc2{bottom:332.105467pt;}
.y34{bottom:335.962667pt;}
.ya1{bottom:336.235200pt;}
.y7c{bottom:339.700267pt;}
.y59{bottom:341.434667pt;}
.yd{bottom:343.201200pt;}
.ye6{bottom:347.915200pt;}
.yc1{bottom:350.777467pt;}
.y33{bottom:354.762667pt;}
.ya0{bottom:355.035200pt;}
.y7b{bottom:359.028267pt;}
.y58{bottom:360.762667pt;}
.yc{bottom:362.801200pt;}
.ye5{bottom:366.987200pt;}
.yc0{bottom:369.449467pt;}
.y32{bottom:373.562667pt;}
.y9f{bottom:373.835200pt;}
.y7a{bottom:378.356267pt;}
.y57{bottom:380.090667pt;}
.yb{bottom:382.401200pt;}
.ye4{bottom:386.059200pt;}
.ybf{bottom:388.121467pt;}
.y31{bottom:392.362667pt;}
.y9e{bottom:392.635200pt;}
.y79{bottom:397.684267pt;}
.y56{bottom:399.418667pt;}
.ye3{bottom:405.131200pt;}
.ybe{bottom:406.793467pt;}
.ya{bottom:409.560267pt;}
.y30{bottom:411.162667pt;}
.y9d{bottom:411.435200pt;}
.y78{bottom:417.012267pt;}
.y55{bottom:418.746667pt;}
.y40{bottom:422.239467pt;}
.ye2{bottom:424.203200pt;}
.ybd{bottom:425.465467pt;}
.y2f{bottom:429.962667pt;}
.y9c{bottom:430.235200pt;}
.y77{bottom:436.340267pt;}
.y54{bottom:438.074667pt;}
.ye1{bottom:443.275200pt;}
.ybc{bottom:444.137467pt;}
.y2e{bottom:448.762667pt;}
.y9b{bottom:449.035200pt;}
.y76{bottom:455.668267pt;}
.y53{bottom:457.402667pt;}
.ye0{bottom:462.347200pt;}
.ybb{bottom:462.809467pt;}
.y2d{bottom:467.562667pt;}
.y9a{bottom:467.835200pt;}
.y75{bottom:474.996267pt;}
.y52{bottom:476.730667pt;}
.ydf{bottom:481.419200pt;}
.y2c{bottom:486.362667pt;}
.y99{bottom:486.635200pt;}
.y9{bottom:487.960267pt;}
.y102{bottom:488.901333pt;}
.yba{bottom:489.035200pt;}
.y74{bottom:494.324267pt;}
.y51{bottom:496.058667pt;}
.yde{bottom:500.491200pt;}
.y2b{bottom:505.162667pt;}
.y98{bottom:505.435200pt;}
.y8{bottom:507.560267pt;}
.y73{bottom:513.652267pt;}
.y50{bottom:515.386667pt;}
.y101{bottom:517.434667pt;}
.ydd{bottom:519.563200pt;}
.y2a{bottom:523.962667pt;}
.y97{bottom:524.235200pt;}
.y7{bottom:527.160267pt;}
.y72{bottom:532.980267pt;}
.y4f{bottom:534.714667pt;}
.y100{bottom:536.634667pt;}
.ydc{bottom:538.555200pt;}
.y29{bottom:542.762667pt;}
.y96{bottom:543.035200pt;}
.y6{bottom:546.760267pt;}
.y71{bottom:552.308267pt;}
.y4e{bottom:554.042667pt;}
.yff{bottom:555.834667pt;}
.ydb{bottom:557.627200pt;}
.y28{bottom:561.562667pt;}
.y95{bottom:561.835200pt;}
.yb9{bottom:563.627200pt;}
.y70{bottom:571.636267pt;}
.y4d{bottom:573.370667pt;}
.yfe{bottom:575.034667pt;}
.yda{bottom:576.699200pt;}
.y27{bottom:580.362667pt;}
.y94{bottom:580.635200pt;}
.yb8{bottom:582.299200pt;}
.y6f{bottom:590.964267pt;}
.y4c{bottom:592.698667pt;}
.yfd{bottom:594.234667pt;}
.yd9{bottom:595.771200pt;}
.y26{bottom:599.162667pt;}
.y93{bottom:599.435200pt;}
.yb7{bottom:600.971200pt;}
.y5{bottom:605.024267pt;}
.y6e{bottom:610.292267pt;}
.y4b{bottom:612.026667pt;}
.yfc{bottom:613.434667pt;}
.yd8{bottom:614.843200pt;}
.y25{bottom:617.962667pt;}
.y92{bottom:618.235200pt;}
.yb6{bottom:619.643200pt;}
.y6d{bottom:629.620267pt;}
.y4a{bottom:631.354667pt;}
.y4{bottom:632.360267pt;}
.yfb{bottom:632.634667pt;}
.yd7{bottom:633.915200pt;}
.y24{bottom:636.762667pt;}
.y91{bottom:637.035200pt;}
.yb5{bottom:638.315200pt;}
.y6c{bottom:648.948267pt;}
.y49{bottom:650.682667pt;}
.yfa{bottom:651.834667pt;}
.yd6{bottom:652.987200pt;}
.y23{bottom:655.562667pt;}
.y90{bottom:655.835200pt;}
.yb4{bottom:656.987200pt;}
.y6b{bottom:668.276267pt;}
.y48{bottom:670.010667pt;}
.yf9{bottom:671.034667pt;}
.yd5{bottom:672.059200pt;}
.y22{bottom:674.362667pt;}
.y8f{bottom:674.635200pt;}
.yb3{bottom:675.659200pt;}
.y3{bottom:682.948267pt;}
.y47{bottom:689.338667pt;}
.yf8{bottom:690.234667pt;}
.yd4{bottom:691.131200pt;}
.y21{bottom:693.162667pt;}
.y8e{bottom:693.435200pt;}
.yb2{bottom:694.331200pt;}
.y6a{bottom:695.168667pt;}
.y46{bottom:708.666667pt;}
.yf7{bottom:709.434667pt;}
.yd3{bottom:710.203200pt;}
.y20{bottom:711.962667pt;}
.y8d{bottom:712.235200pt;}
.yb1{bottom:713.003200pt;}
.y45{bottom:727.994667pt;}
.yf6{bottom:728.634667pt;}
.yd2{bottom:729.275200pt;}
.y1f{bottom:730.762667pt;}
.y8c{bottom:731.035200pt;}
.yb0{bottom:731.675200pt;}
.y44{bottom:747.322667pt;}
.yf5{bottom:747.834667pt;}
.yd1{bottom:748.347200pt;}
.y1e{bottom:749.562667pt;}
.y8b{bottom:749.835200pt;}
.yaf{bottom:750.347200pt;}
.y43{bottom:766.650667pt;}
.y69{bottom:766.651200pt;}
.yf4{bottom:767.034667pt;}
.yd0{bottom:767.419200pt;}
.y1d{bottom:768.362667pt;}
.y8a{bottom:768.635200pt;}
.yae{bottom:769.019200pt;}
.y42{bottom:785.978667pt;}
.y68{bottom:785.979200pt;}
.yf3{bottom:786.234667pt;}
.ycf{bottom:786.491200pt;}
.y1c{bottom:787.162667pt;}
.y89{bottom:787.435200pt;}
.yad{bottom:787.691200pt;}
.y41{bottom:805.306667pt;}
.y67{bottom:805.307200pt;}
.yf2{bottom:805.434667pt;}
.yce{bottom:805.563200pt;}
.y1b{bottom:805.962667pt;}
.y88{bottom:806.235200pt;}
.yac{bottom:806.363200pt;}
.y2{bottom:823.748267pt;}
.y1a{bottom:824.634667pt;}
.y66{bottom:824.635200pt;}
.hb{height:27.171875pt;}
.h8{height:34.351188pt;}
.h2{height:36.229167pt;}
.h5{height:39.101562pt;}
.hd{height:43.022135pt;}
.h3{height:45.286458pt;}
.h9{height:49.815104pt;}
.h7{height:54.343750pt;}
.ha{height:56.286250pt;}
.hc{height:56.606250pt;}
.h4{height:58.872396pt;}
.h6{height:76.986979pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x3{left:68.031467pt;}
.x4{left:86.927467pt;}
.x8{left:105.855733pt;}
.x5{left:127.262533pt;}
.x9{left:246.228667pt;}
.x1{left:252.895333pt;}
.x6{left:354.015733pt;}
.x7{left:372.927733pt;}
.xb{left:480.180933pt;}
.xa{left:515.257200pt;}
.x2{left:521.923867pt;}
}




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