
    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_2c0ec371accfd0d81cb94808.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.088379;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_a6a052a39fabe808a4dc222c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.087891;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_183146c19d93b9be26e0c74a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_8f5aeaf6255976d95fc65987.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.435059;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_8fc60f11f47f01be2066564a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_fafcec2a01ed4b4ee6d3a99b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.691406;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_b3f71ca49568e58fd2ce0efa.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.088379;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);}
.v0{vertical-align:0.000000px;}
.ls24{letter-spacing:-0.984000px;}
.ls16{letter-spacing:-0.960000px;}
.ls22{letter-spacing:-0.930000px;}
.ls9{letter-spacing:-0.918000px;}
.ls1d{letter-spacing:-0.822000px;}
.ls14{letter-spacing:-0.696000px;}
.ls12{letter-spacing:-0.672000px;}
.lsc{letter-spacing:-0.648000px;}
.ls11{letter-spacing:-0.618000px;}
.ls1c{letter-spacing:-0.612000px;}
.ls1a{letter-spacing:-0.411600px;}
.ls21{letter-spacing:-0.400200px;}
.lsb{letter-spacing:-0.334200px;}
.ls20{letter-spacing:-0.265200px;}
.ls1f{letter-spacing:-0.233400px;}
.ls1b{letter-spacing:-0.222000px;}
.ls1e{letter-spacing:-0.207600px;}
.ls26{letter-spacing:-0.201600px;}
.ls15{letter-spacing:-0.103800px;}
.ls13{letter-spacing:-0.063600px;}
.ls2c{letter-spacing:-0.010800px;}
.ls8{letter-spacing:0.000000px;}
.ls27{letter-spacing:0.012960px;}
.lsa{letter-spacing:0.023040px;}
.ls7{letter-spacing:0.048960px;}
.ls2{letter-spacing:0.072000px;}
.lse{letter-spacing:0.075000px;}
.ls4{letter-spacing:0.100800px;}
.lsd{letter-spacing:0.106800px;}
.ls3{letter-spacing:0.146880px;}
.ls19{letter-spacing:0.150000px;}
.ls0{letter-spacing:0.172800px;}
.ls1{letter-spacing:0.264960px;}
.ls10{letter-spacing:0.305400px;}
.ls18{letter-spacing:0.308400px;}
.ls17{letter-spacing:0.316800px;}
.ls28{letter-spacing:0.319680px;}
.ls2b{letter-spacing:0.357000px;}
.ls2a{letter-spacing:0.357120px;}
.ls5{letter-spacing:0.360000px;}
.ls29{letter-spacing:0.547200px;}
.ls2d{letter-spacing:0.708000px;}
.ls2e{letter-spacing:0.709200px;}
.lsf{letter-spacing:3.427200px;}
.ls23{letter-spacing:15.667200px;}
.ls6{letter-spacing:34.865280px;}
.ls25{letter-spacing:165.388800px;}
.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:-18.532800px;}
.wsb{word-spacing:-14.932800px;}
.wsd{word-spacing:-14.889600px;}
.wse{word-spacing:-14.881200px;}
.ws7{word-spacing:-14.878200px;}
.wsf{word-spacing:-14.647800px;}
.ws9{word-spacing:-14.621760px;}
.ws3{word-spacing:-14.595840px;}
.ws2{word-spacing:-14.572800px;}
.ws8{word-spacing:-14.509200px;}
.ws15{word-spacing:-14.469000px;}
.ws16{word-spacing:-14.371200px;}
.ws13{word-spacing:-14.339400px;}
.ws4{word-spacing:-14.238600px;}
.ws14{word-spacing:-14.172600px;}
.ws10{word-spacing:-14.161200px;}
.ws12{word-spacing:-13.960800px;}
.ws5{word-spacing:-13.924800px;}
.wsa{word-spacing:-13.876800px;}
.wsc{word-spacing:-13.612800px;}
.ws17{word-spacing:-13.504200px;}
.ws18{word-spacing:-13.160160px;}
.ws11{word-spacing:-13.147200px;}
.ws1{word-spacing:-11.880000px;}
.ws6{word-spacing:0.000000px;}
._4{margin-left:-4.040640px;}
._5{margin-left:-2.980800px;}
._0{margin-left:-1.131120px;}
._1{width:1.051680px;}
._7{width:2.456640px;}
._6{width:3.609840px;}
._b{width:4.968480px;}
._a{width:6.027840px;}
._f{width:7.219680px;}
._9{width:8.346240px;}
._e{width:9.459120px;}
._8{width:10.480320px;}
._3{width:11.842560px;}
._2{width:13.115520px;}
._13{width:16.074480px;}
._d{width:17.708160px;}
._c{width:18.878400px;}
._1a{width:20.251920px;}
._14{width:21.846720px;}
._15{width:23.000640px;}
._1d{width:24.360960px;}
._11{width:25.369920px;}
._12{width:26.526480px;}
._1c{width:27.548640px;}
._1b{width:28.655040px;}
._21{width:30.470400px;}
._20{width:31.601520px;}
._16{width:33.588720px;}
._22{width:34.959360px;}
._17{width:36.034560px;}
._18{width:37.109520px;}
._19{width:38.306400px;}
._1f{width:39.545280px;}
._1e{width:40.742640px;}
._23{width:163.963200px;}
._10{width:197.803200px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs2{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y6e{bottom:109.476000px;}
.y66{bottom:113.256000px;}
.y94{bottom:113.436000px;}
.y24{bottom:117.756000px;}
.y91{bottom:118.296000px;}
.ye5{bottom:126.396000px;}
.y6d{bottom:127.116000px;}
.yc4{bottom:127.476000px;}
.y45{bottom:130.176000px;}
.y6c{bottom:130.896000px;}
.y65{bottom:142.236000px;}
.y6b{bottom:146.016000px;}
.y23{bottom:146.736000px;}
.y90{bottom:147.276000px;}
.ye4{bottom:155.370000px;}
.yc3{bottom:156.450000px;}
.y44{bottom:159.330000px;}
.y64{bottom:171.210000px;}
.y102{bottom:173.190000px;}
.y22{bottom:175.710000px;}
.y8f{bottom:176.250000px;}
.ye3{bottom:184.350000px;}
.y43{bottom:188.310000px;}
.y6a{bottom:188.490000px;}
.y101{bottom:192.090000px;}
.yc2{bottom:197.670000px;}
.y63{bottom:200.370000px;}
.y92{bottom:200.550000px;}
.y21{bottom:204.690000px;}
.y8e{bottom:205.230000px;}
.ye2{bottom:213.510000px;}
.y42{bottom:217.290000px;}
.y100{bottom:223.230000px;}
.yc1{bottom:226.470000px;}
.y62{bottom:229.350000px;}
.y5a{bottom:229.530000px;}
.y20{bottom:233.670000px;}
.y8d{bottom:234.390000px;}
.ye1{bottom:242.490000px;}
.y41{bottom:246.270000px;}
.yff{bottom:254.190000px;}
.yc0{bottom:255.450000px;}
.y59{bottom:258.330000px;}
.y1f{bottom:262.830000px;}
.y8c{bottom:263.370000px;}
.ye0{bottom:271.470000px;}
.yfe{bottom:273.090000px;}
.y40{bottom:275.250000px;}
.ybf{bottom:284.430000px;}
.y58{bottom:287.310000px;}
.y5e{bottom:287.490000px;}
.y1e{bottom:291.810000px;}
.y8b{bottom:292.350000px;}
.ya3{bottom:299.550000px;}
.ydf{bottom:300.450000px;}
.yfd{bottom:304.050000px;}
.y3f{bottom:304.410000px;}
.ybe{bottom:313.590000px;}
.y57{bottom:316.290000px;}
.y1d{bottom:320.790000px;}
.y8a{bottom:321.330000px;}
.yfc{bottom:323.130000px;}
.ya2{bottom:328.350000px;}
.y3e{bottom:333.390000px;}
.yde{bottom:341.715000px;}
.ybd{bottom:342.615000px;}
.y56{bottom:345.495000px;}
.y1c{bottom:349.815000px;}
.y89{bottom:350.355000px;}
.yfb{bottom:354.135000px;}
.ya1{bottom:357.375000px;}
.y3d{bottom:362.415000px;}
.ydd{bottom:370.515000px;}
.ybc{bottom:371.595000px;}
.y55{bottom:374.475000px;}
.y1b{bottom:378.795000px;}
.y88{bottom:379.515000px;}
.yfa{bottom:385.095000px;}
.ya0{bottom:386.355000px;}
.y3c{bottom:391.395000px;}
.ydc{bottom:399.495000px;}
.ybb{bottom:400.575000px;}
.y54{bottom:403.455000px;}
.yf9{bottom:403.995000px;}
.y1a{bottom:407.955000px;}
.y87{bottom:408.495000px;}
.y9f{bottom:415.515000px;}
.y3b{bottom:420.375000px;}
.ydb{bottom:428.655000px;}
.yba{bottom:429.555000px;}
.y53{bottom:432.435000px;}
.yc6{bottom:432.615000px;}
.yf8{bottom:434.955000px;}
.y19{bottom:436.935000px;}
.y86{bottom:437.475000px;}
.y9e{bottom:444.495000px;}
.y3a{bottom:449.535000px;}
.yda{bottom:457.635000px;}
.yb9{bottom:458.715000px;}
.y52{bottom:461.415000px;}
.y18{bottom:465.915000px;}
.y9d{bottom:473.475000px;}
.y39{bottom:478.515000px;}
.y85{bottom:478.695000px;}
.yd9{bottom:486.615000px;}
.yb8{bottom:487.695000px;}
.y51{bottom:490.575000px;}
.y17{bottom:494.895000px;}
.yf7{bottom:497.055000px;}
.y9c{bottom:502.455000px;}
.y84{bottom:507.495000px;}
.yd8{bottom:515.595000px;}
.yf6{bottom:515.955000px;}
.yb7{bottom:516.675000px;}
.y50{bottom:519.555000px;}
.y38{bottom:519.735000px;}
.y16{bottom:523.875000px;}
.y9b{bottom:531.435000px;}
.y83{bottom:536.475000px;}
.yd7{bottom:544.575000px;}
.yf5{bottom:546.915000px;}
.y37{bottom:548.535000px;}
.yb6{bottom:557.895000px;}
.y9a{bottom:560.595000px;}
.y15{bottom:565.095000px;}
.y82{bottom:565.455000px;}
.yd6{bottom:573.735000px;}
.y36{bottom:577.515000px;}
.yf4{bottom:577.875000px;}
.yb5{bottom:586.695000px;}
.y99{bottom:589.575000px;}
.y14{bottom:594.075000px;}
.y81{bottom:594.615000px;}
.yf3{bottom:596.955000px;}
.yd5{bottom:602.715000px;}
.y35{bottom:606.525000px;}
.yb4{bottom:615.705000px;}
.y98{bottom:618.585000px;}
.y13{bottom:623.085000px;}
.y80{bottom:623.625000px;}
.yf2{bottom:627.945000px;}
.yd4{bottom:631.725000px;}
.y34{bottom:635.685000px;}
.yb3{bottom:644.685000px;}
.yf1{bottom:646.845000px;}
.y97{bottom:647.565000px;}
.y12{bottom:652.065000px;}
.y7f{bottom:652.605000px;}
.yd3{bottom:660.705000px;}
.y33{bottom:664.665000px;}
.yb2{bottom:673.845000px;}
.y96{bottom:676.545000px;}
.yc5{bottom:676.725000px;}
.yf0{bottom:677.805000px;}
.y11{bottom:681.045000px;}
.y7e{bottom:681.585000px;}
.yd2{bottom:689.685000px;}
.y32{bottom:693.645000px;}
.yef{bottom:696.885000px;}
.yb1{bottom:702.825000px;}
.y95{bottom:705.705000px;}
.y61{bottom:705.885000px;}
.y10{bottom:710.025000px;}
.y7d{bottom:710.565000px;}
.yd1{bottom:718.845000px;}
.y31{bottom:722.625000px;}
.yee{bottom:727.845000px;}
.yb0{bottom:731.805000px;}
.y60{bottom:734.685000px;}
.y93{bottom:734.865000px;}
.yf{bottom:739.185000px;}
.y7c{bottom:739.725000px;}
.yed{bottom:746.745000px;}
.yd0{bottom:747.825000px;}
.y30{bottom:751.605000px;}
.yaf{bottom:760.785000px;}
.y111{bottom:761.685000px;}
.y5f{bottom:763.665000px;}
.y5d{bottom:763.845000px;}
.ye{bottom:768.165000px;}
.y7b{bottom:768.705000px;}
.ycf{bottom:776.805000px;}
.yec{bottom:777.705000px;}
.y2f{bottom:780.765000px;}
.yae{bottom:789.765000px;}
.y5c{bottom:792.645000px;}
.y7a{bottom:797.685000px;}
.yce{bottom:805.785000px;}
.yeb{bottom:808.665000px;}
.yd{bottom:809.385000px;}
.y2e{bottom:809.745000px;}
.y110{bottom:811.545000px;}
.yad{bottom:818.925000px;}
.y5b{bottom:821.625000px;}
.y4f{bottom:821.805000px;}
.y79{bottom:826.665000px;}
.yea{bottom:827.745000px;}
.y10f{bottom:830.625000px;}
.ycd{bottom:834.765000px;}
.y2d{bottom:838.725000px;}
.yc{bottom:842.145000px;}
.yac{bottom:847.905000px;}
.y4e{bottom:850.785000px;}
.y78{bottom:855.645000px;}
.ye9{bottom:859.245000px;}
.y10e{bottom:861.585000px;}
.yb{bottom:863.025000px;}
.ycc{bottom:863.925000px;}
.y2c{bottom:867.705000px;}
.yab{bottom:876.930000px;}
.y4d{bottom:879.810000px;}
.ya{bottom:883.050000px;}
.y77{bottom:884.850000px;}
.ye8{bottom:892.230000px;}
.y10d{bottom:892.590000px;}
.ycb{bottom:892.950000px;}
.y2b{bottom:896.730000px;}
.y9{bottom:900.150000px;}
.y69{bottom:900.510000px;}
.yaa{bottom:905.910000px;}
.y4c{bottom:908.790000px;}
.y10c{bottom:911.490000px;}
.y76{bottom:913.830000px;}
.yca{bottom:921.930000px;}
.y2a{bottom:925.890000px;}
.ye7{bottom:926.070000px;}
.y8{bottom:930.210000px;}
.ya9{bottom:934.890000px;}
.y4b{bottom:937.770000px;}
.y10b{bottom:942.450000px;}
.y75{bottom:942.810000px;}
.yc9{bottom:950.910000px;}
.y29{bottom:954.870000px;}
.y10a{bottom:961.530000px;}
.y7{bottom:962.970000px;}
.y4a{bottom:966.750000px;}
.ye6{bottom:966.930000px;}
.ya8{bottom:967.470000px;}
.y74{bottom:971.790000px;}
.y109{bottom:980.430000px;}
.y6{bottom:983.850000px;}
.yc8{bottom:984.030000px;}
.ya7{bottom:986.370000px;}
.y49{bottom:995.910000px;}
.y73{bottom:1000.770000px;}
.ya6{bottom:1005.270000px;}
.y108{bottom:1011.390000px;}
.y28{bottom:1012.830000px;}
.y5{bottom:1013.910000px;}
.ya5{bottom:1024.350000px;}
.y48{bottom:1024.890000px;}
.yc7{bottom:1025.070000px;}
.y72{bottom:1029.930000px;}
.y27{bottom:1041.810000px;}
.y107{bottom:1042.530000px;}
.ya4{bottom:1043.250000px;}
.y4{bottom:1044.330000px;}
.y47{bottom:1053.870000px;}
.y106{bottom:1061.430000px;}
.y68{bottom:1070.970000px;}
.y71{bottom:1071.150000px;}
.y3{bottom:1074.570000px;}
.y46{bottom:1082.850000px;}
.y26{bottom:1083.030000px;}
.y105{bottom:1092.390000px;}
.y70{bottom:1099.950000px;}
.y2{bottom:1106.430000px;}
.y25{bottom:1111.830000px;}
.y67{bottom:1112.010000px;}
.y104{bottom:1123.350000px;}
.y1{bottom:1141.020000px;}
.y6f{bottom:1141.200000px;}
.y103{bottom:1142.460000px;}
.ha{height:33.830156px;}
.h8{height:36.336094px;}
.hc{height:40.764023px;}
.h9{height:45.184219px;}
.h5{height:46.986328px;}
.hb{height:51.998203px;}
.h2{height:57.636562px;}
.h4{height:58.154062px;}
.h6{height:68.956875px;}
.h3{height:73.956797px;}
.h7{height:1262.864910px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.957500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:128.196000px;}
.xf{left:133.056000px;}
.x10{left:136.116000px;}
.xa{left:154.650000px;}
.x2{left:166.350000px;}
.xb{left:180.750000px;}
.x7{left:218.910000px;}
.xe{left:343.695000px;}
.x5{left:349.635000px;}
.x4{left:366.375000px;}
.x3{left:381.315000px;}
.x1{left:446.505000px;}
.xc{left:480.682500px;}
.xd{left:486.465000px;}
.x8{left:497.085000px;}
.x9{left:736.020000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls24{letter-spacing:-0.874667pt;}
.ls16{letter-spacing:-0.853333pt;}
.ls22{letter-spacing:-0.826667pt;}
.ls9{letter-spacing:-0.816000pt;}
.ls1d{letter-spacing:-0.730667pt;}
.ls14{letter-spacing:-0.618667pt;}
.ls12{letter-spacing:-0.597333pt;}
.lsc{letter-spacing:-0.576000pt;}
.ls11{letter-spacing:-0.549333pt;}
.ls1c{letter-spacing:-0.544000pt;}
.ls1a{letter-spacing:-0.365867pt;}
.ls21{letter-spacing:-0.355733pt;}
.lsb{letter-spacing:-0.297067pt;}
.ls20{letter-spacing:-0.235733pt;}
.ls1f{letter-spacing:-0.207467pt;}
.ls1b{letter-spacing:-0.197333pt;}
.ls1e{letter-spacing:-0.184533pt;}
.ls26{letter-spacing:-0.179200pt;}
.ls15{letter-spacing:-0.092267pt;}
.ls13{letter-spacing:-0.056533pt;}
.ls2c{letter-spacing:-0.009600pt;}
.ls8{letter-spacing:0.000000pt;}
.ls27{letter-spacing:0.011520pt;}
.lsa{letter-spacing:0.020480pt;}
.ls7{letter-spacing:0.043520pt;}
.ls2{letter-spacing:0.064000pt;}
.lse{letter-spacing:0.066667pt;}
.ls4{letter-spacing:0.089600pt;}
.lsd{letter-spacing:0.094933pt;}
.ls3{letter-spacing:0.130560pt;}
.ls19{letter-spacing:0.133333pt;}
.ls0{letter-spacing:0.153600pt;}
.ls1{letter-spacing:0.235520pt;}
.ls10{letter-spacing:0.271467pt;}
.ls18{letter-spacing:0.274133pt;}
.ls17{letter-spacing:0.281600pt;}
.ls28{letter-spacing:0.284160pt;}
.ls2b{letter-spacing:0.317333pt;}
.ls2a{letter-spacing:0.317440pt;}
.ls5{letter-spacing:0.320000pt;}
.ls29{letter-spacing:0.486400pt;}
.ls2d{letter-spacing:0.629333pt;}
.ls2e{letter-spacing:0.630400pt;}
.lsf{letter-spacing:3.046400pt;}
.ls23{letter-spacing:13.926400pt;}
.ls6{letter-spacing:30.991360pt;}
.ls25{letter-spacing:147.012267pt;}
.ws0{word-spacing:-16.473600pt;}
.wsb{word-spacing:-13.273600pt;}
.wsd{word-spacing:-13.235200pt;}
.wse{word-spacing:-13.227733pt;}
.ws7{word-spacing:-13.225067pt;}
.wsf{word-spacing:-13.020267pt;}
.ws9{word-spacing:-12.997120pt;}
.ws3{word-spacing:-12.974080pt;}
.ws2{word-spacing:-12.953600pt;}
.ws8{word-spacing:-12.897067pt;}
.ws15{word-spacing:-12.861333pt;}
.ws16{word-spacing:-12.774400pt;}
.ws13{word-spacing:-12.746133pt;}
.ws4{word-spacing:-12.656533pt;}
.ws14{word-spacing:-12.597867pt;}
.ws10{word-spacing:-12.587733pt;}
.ws12{word-spacing:-12.409600pt;}
.ws5{word-spacing:-12.377600pt;}
.wsa{word-spacing:-12.334933pt;}
.wsc{word-spacing:-12.100267pt;}
.ws17{word-spacing:-12.003733pt;}
.ws18{word-spacing:-11.697920pt;}
.ws11{word-spacing:-11.686400pt;}
.ws1{word-spacing:-10.560000pt;}
.ws6{word-spacing:0.000000pt;}
._4{margin-left:-3.591680pt;}
._5{margin-left:-2.649600pt;}
._0{margin-left:-1.005440pt;}
._1{width:0.934827pt;}
._7{width:2.183680pt;}
._6{width:3.208747pt;}
._b{width:4.416427pt;}
._a{width:5.358080pt;}
._f{width:6.417493pt;}
._9{width:7.418880pt;}
._e{width:8.408107pt;}
._8{width:9.315840pt;}
._3{width:10.526720pt;}
._2{width:11.658240pt;}
._13{width:14.288427pt;}
._d{width:15.740587pt;}
._c{width:16.780800pt;}
._1a{width:18.001707pt;}
._14{width:19.419307pt;}
._15{width:20.445013pt;}
._1d{width:21.654187pt;}
._11{width:22.551040pt;}
._12{width:23.579093pt;}
._1c{width:24.487680pt;}
._1b{width:25.471147pt;}
._21{width:27.084800pt;}
._20{width:28.090240pt;}
._16{width:29.856640pt;}
._22{width:31.074987pt;}
._17{width:32.030720pt;}
._18{width:32.986240pt;}
._19{width:34.050133pt;}
._1f{width:35.151360pt;}
._1e{width:36.215680pt;}
._23{width:145.745067pt;}
._10{width:175.825067pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs2{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y6e{bottom:97.312000pt;}
.y66{bottom:100.672000pt;}
.y94{bottom:100.832000pt;}
.y24{bottom:104.672000pt;}
.y91{bottom:105.152000pt;}
.ye5{bottom:112.352000pt;}
.y6d{bottom:112.992000pt;}
.yc4{bottom:113.312000pt;}
.y45{bottom:115.712000pt;}
.y6c{bottom:116.352000pt;}
.y65{bottom:126.432000pt;}
.y6b{bottom:129.792000pt;}
.y23{bottom:130.432000pt;}
.y90{bottom:130.912000pt;}
.ye4{bottom:138.106667pt;}
.yc3{bottom:139.066667pt;}
.y44{bottom:141.626667pt;}
.y64{bottom:152.186667pt;}
.y102{bottom:153.946667pt;}
.y22{bottom:156.186667pt;}
.y8f{bottom:156.666667pt;}
.ye3{bottom:163.866667pt;}
.y43{bottom:167.386667pt;}
.y6a{bottom:167.546667pt;}
.y101{bottom:170.746667pt;}
.yc2{bottom:175.706667pt;}
.y63{bottom:178.106667pt;}
.y92{bottom:178.266667pt;}
.y21{bottom:181.946667pt;}
.y8e{bottom:182.426667pt;}
.ye2{bottom:189.786667pt;}
.y42{bottom:193.146667pt;}
.y100{bottom:198.426667pt;}
.yc1{bottom:201.306667pt;}
.y62{bottom:203.866667pt;}
.y5a{bottom:204.026667pt;}
.y20{bottom:207.706667pt;}
.y8d{bottom:208.346667pt;}
.ye1{bottom:215.546667pt;}
.y41{bottom:218.906667pt;}
.yff{bottom:225.946667pt;}
.yc0{bottom:227.066667pt;}
.y59{bottom:229.626667pt;}
.y1f{bottom:233.626667pt;}
.y8c{bottom:234.106667pt;}
.ye0{bottom:241.306667pt;}
.yfe{bottom:242.746667pt;}
.y40{bottom:244.666667pt;}
.ybf{bottom:252.826667pt;}
.y58{bottom:255.386667pt;}
.y5e{bottom:255.546667pt;}
.y1e{bottom:259.386667pt;}
.y8b{bottom:259.866667pt;}
.ya3{bottom:266.266667pt;}
.ydf{bottom:267.066667pt;}
.yfd{bottom:270.266667pt;}
.y3f{bottom:270.586667pt;}
.ybe{bottom:278.746667pt;}
.y57{bottom:281.146667pt;}
.y1d{bottom:285.146667pt;}
.y8a{bottom:285.626667pt;}
.yfc{bottom:287.226667pt;}
.ya2{bottom:291.866667pt;}
.y3e{bottom:296.346667pt;}
.yde{bottom:303.746667pt;}
.ybd{bottom:304.546667pt;}
.y56{bottom:307.106667pt;}
.y1c{bottom:310.946667pt;}
.y89{bottom:311.426667pt;}
.yfb{bottom:314.786667pt;}
.ya1{bottom:317.666667pt;}
.y3d{bottom:322.146667pt;}
.ydd{bottom:329.346667pt;}
.ybc{bottom:330.306667pt;}
.y55{bottom:332.866667pt;}
.y1b{bottom:336.706667pt;}
.y88{bottom:337.346667pt;}
.yfa{bottom:342.306667pt;}
.ya0{bottom:343.426667pt;}
.y3c{bottom:347.906667pt;}
.ydc{bottom:355.106667pt;}
.ybb{bottom:356.066667pt;}
.y54{bottom:358.626667pt;}
.yf9{bottom:359.106667pt;}
.y1a{bottom:362.626667pt;}
.y87{bottom:363.106667pt;}
.y9f{bottom:369.346667pt;}
.y3b{bottom:373.666667pt;}
.ydb{bottom:381.026667pt;}
.yba{bottom:381.826667pt;}
.y53{bottom:384.386667pt;}
.yc6{bottom:384.546667pt;}
.yf8{bottom:386.626667pt;}
.y19{bottom:388.386667pt;}
.y86{bottom:388.866667pt;}
.y9e{bottom:395.106667pt;}
.y3a{bottom:399.586667pt;}
.yda{bottom:406.786667pt;}
.yb9{bottom:407.746667pt;}
.y52{bottom:410.146667pt;}
.y18{bottom:414.146667pt;}
.y9d{bottom:420.866667pt;}
.y39{bottom:425.346667pt;}
.y85{bottom:425.506667pt;}
.yd9{bottom:432.546667pt;}
.yb8{bottom:433.506667pt;}
.y51{bottom:436.066667pt;}
.y17{bottom:439.906667pt;}
.yf7{bottom:441.826667pt;}
.y9c{bottom:446.626667pt;}
.y84{bottom:451.106667pt;}
.yd8{bottom:458.306667pt;}
.yf6{bottom:458.626667pt;}
.yb7{bottom:459.266667pt;}
.y50{bottom:461.826667pt;}
.y38{bottom:461.986667pt;}
.y16{bottom:465.666667pt;}
.y9b{bottom:472.386667pt;}
.y83{bottom:476.866667pt;}
.yd7{bottom:484.066667pt;}
.yf5{bottom:486.146667pt;}
.y37{bottom:487.586667pt;}
.yb6{bottom:495.906667pt;}
.y9a{bottom:498.306667pt;}
.y15{bottom:502.306667pt;}
.y82{bottom:502.626667pt;}
.yd6{bottom:509.986667pt;}
.y36{bottom:513.346667pt;}
.yf4{bottom:513.666667pt;}
.yb5{bottom:521.506667pt;}
.y99{bottom:524.066667pt;}
.y14{bottom:528.066667pt;}
.y81{bottom:528.546667pt;}
.yf3{bottom:530.626667pt;}
.yd5{bottom:535.746667pt;}
.y35{bottom:539.133333pt;}
.yb4{bottom:547.293333pt;}
.y98{bottom:549.853333pt;}
.y13{bottom:553.853333pt;}
.y80{bottom:554.333333pt;}
.yf2{bottom:558.173333pt;}
.yd4{bottom:561.533333pt;}
.y34{bottom:565.053333pt;}
.yb3{bottom:573.053333pt;}
.yf1{bottom:574.973333pt;}
.y97{bottom:575.613333pt;}
.y12{bottom:579.613333pt;}
.y7f{bottom:580.093333pt;}
.yd3{bottom:587.293333pt;}
.y33{bottom:590.813333pt;}
.yb2{bottom:598.973333pt;}
.y96{bottom:601.373333pt;}
.yc5{bottom:601.533333pt;}
.yf0{bottom:602.493333pt;}
.y11{bottom:605.373333pt;}
.y7e{bottom:605.853333pt;}
.yd2{bottom:613.053333pt;}
.y32{bottom:616.573333pt;}
.yef{bottom:619.453333pt;}
.yb1{bottom:624.733333pt;}
.y95{bottom:627.293333pt;}
.y61{bottom:627.453333pt;}
.y10{bottom:631.133333pt;}
.y7d{bottom:631.613333pt;}
.yd1{bottom:638.973333pt;}
.y31{bottom:642.333333pt;}
.yee{bottom:646.973333pt;}
.yb0{bottom:650.493333pt;}
.y60{bottom:653.053333pt;}
.y93{bottom:653.213333pt;}
.yf{bottom:657.053333pt;}
.y7c{bottom:657.533333pt;}
.yed{bottom:663.773333pt;}
.yd0{bottom:664.733333pt;}
.y30{bottom:668.093333pt;}
.yaf{bottom:676.253333pt;}
.y111{bottom:677.053333pt;}
.y5f{bottom:678.813333pt;}
.y5d{bottom:678.973333pt;}
.ye{bottom:682.813333pt;}
.y7b{bottom:683.293333pt;}
.ycf{bottom:690.493333pt;}
.yec{bottom:691.293333pt;}
.y2f{bottom:694.013333pt;}
.yae{bottom:702.013333pt;}
.y5c{bottom:704.573333pt;}
.y7a{bottom:709.053333pt;}
.yce{bottom:716.253333pt;}
.yeb{bottom:718.813333pt;}
.yd{bottom:719.453333pt;}
.y2e{bottom:719.773333pt;}
.y110{bottom:721.373333pt;}
.yad{bottom:727.933333pt;}
.y5b{bottom:730.333333pt;}
.y4f{bottom:730.493333pt;}
.y79{bottom:734.813333pt;}
.yea{bottom:735.773333pt;}
.y10f{bottom:738.333333pt;}
.ycd{bottom:742.013333pt;}
.y2d{bottom:745.533333pt;}
.yc{bottom:748.573333pt;}
.yac{bottom:753.693333pt;}
.y4e{bottom:756.253333pt;}
.y78{bottom:760.573333pt;}
.ye9{bottom:763.773333pt;}
.y10e{bottom:765.853333pt;}
.yb{bottom:767.133333pt;}
.ycc{bottom:767.933333pt;}
.y2c{bottom:771.293333pt;}
.yab{bottom:779.493333pt;}
.y4d{bottom:782.053333pt;}
.ya{bottom:784.933333pt;}
.y77{bottom:786.533333pt;}
.ye8{bottom:793.093333pt;}
.y10d{bottom:793.413333pt;}
.ycb{bottom:793.733333pt;}
.y2b{bottom:797.093333pt;}
.y9{bottom:800.133333pt;}
.y69{bottom:800.453333pt;}
.yaa{bottom:805.253333pt;}
.y4c{bottom:807.813333pt;}
.y10c{bottom:810.213333pt;}
.y76{bottom:812.293333pt;}
.yca{bottom:819.493333pt;}
.y2a{bottom:823.013333pt;}
.ye7{bottom:823.173333pt;}
.y8{bottom:826.853333pt;}
.ya9{bottom:831.013333pt;}
.y4b{bottom:833.573333pt;}
.y10b{bottom:837.733333pt;}
.y75{bottom:838.053333pt;}
.yc9{bottom:845.253333pt;}
.y29{bottom:848.773333pt;}
.y10a{bottom:854.693333pt;}
.y7{bottom:855.973333pt;}
.y4a{bottom:859.333333pt;}
.ye6{bottom:859.493333pt;}
.ya8{bottom:859.973333pt;}
.y74{bottom:863.813333pt;}
.y109{bottom:871.493333pt;}
.y6{bottom:874.533333pt;}
.yc8{bottom:874.693333pt;}
.ya7{bottom:876.773333pt;}
.y49{bottom:885.253333pt;}
.y73{bottom:889.573333pt;}
.ya6{bottom:893.573333pt;}
.y108{bottom:899.013333pt;}
.y28{bottom:900.293333pt;}
.y5{bottom:901.253333pt;}
.ya5{bottom:910.533333pt;}
.y48{bottom:911.013333pt;}
.yc7{bottom:911.173333pt;}
.y72{bottom:915.493333pt;}
.y27{bottom:926.053333pt;}
.y107{bottom:926.693333pt;}
.ya4{bottom:927.333333pt;}
.y4{bottom:928.293333pt;}
.y47{bottom:936.773333pt;}
.y106{bottom:943.493333pt;}
.y68{bottom:951.973333pt;}
.y71{bottom:952.133333pt;}
.y3{bottom:955.173333pt;}
.y46{bottom:962.533333pt;}
.y26{bottom:962.693333pt;}
.y105{bottom:971.013333pt;}
.y70{bottom:977.733333pt;}
.y2{bottom:983.493333pt;}
.y25{bottom:988.293333pt;}
.y67{bottom:988.453333pt;}
.y104{bottom:998.533333pt;}
.y1{bottom:1014.240000pt;}
.y6f{bottom:1014.400000pt;}
.y103{bottom:1015.520000pt;}
.ha{height:30.071250pt;}
.h8{height:32.298750pt;}
.hc{height:36.234687pt;}
.h9{height:40.163750pt;}
.h5{height:41.765625pt;}
.hb{height:46.220625pt;}
.h2{height:51.232500pt;}
.h4{height:51.692500pt;}
.h6{height:61.295000pt;}
.h3{height:65.739375pt;}
.h7{height:1122.546587pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.740000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:113.952000pt;}
.xf{left:118.272000pt;}
.x10{left:120.992000pt;}
.xa{left:137.466667pt;}
.x2{left:147.866667pt;}
.xb{left:160.666667pt;}
.x7{left:194.586667pt;}
.xe{left:305.506667pt;}
.x5{left:310.786667pt;}
.x4{left:325.666667pt;}
.x3{left:338.946667pt;}
.x1{left:396.893333pt;}
.xc{left:427.273333pt;}
.xd{left:432.413333pt;}
.x8{left:441.853333pt;}
.x9{left:654.240000pt;}
}




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