
    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_739ee8254cd5d47709a75776.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.018066;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_636aa33e0e5640510c78cfbc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.133789;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_cf6c70d8058c13d5dfd263e9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.762207;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_affc1bef6be48aa1711205c3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.096191;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_2060bbdc10e37fb93d045ac5.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.402354;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_4cd12c60b8407b47cc4add83.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_7701d56ea72a610d4ea611cf.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.372070;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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:ff9;src:url('chunks/assets/font_d2c248673594ce30e20cb549.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.850586;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:ffa;src:url('chunks/assets/font_c698e18f16b2fc55f71287cb.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.133789;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:ffb;src:url('chunks/assets/font_2a634499debaf2c7049d0a15.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.854004;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:ffc;src:url('chunks/assets/font_191e7b2a8eb5b2aac645b1e5.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.096191;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-1.746000px;}
.lsa{letter-spacing:-1.560000px;}
.ls13{letter-spacing:-1.554000px;}
.lsf{letter-spacing:-1.506000px;}
.ls16{letter-spacing:-1.500000px;}
.lsb{letter-spacing:-1.380000px;}
.ls17{letter-spacing:-1.326000px;}
.ls12{letter-spacing:-1.134000px;}
.ls6{letter-spacing:-1.122000px;}
.ls15{letter-spacing:-1.020000px;}
.ls7{letter-spacing:-0.978000px;}
.ls9{letter-spacing:-0.918000px;}
.ls8{letter-spacing:-0.696000px;}
.ls14{letter-spacing:-0.630000px;}
.ls10{letter-spacing:-0.363000px;}
.lsd{letter-spacing:-0.300000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.041760px;}
.ls3{letter-spacing:0.057600px;}
.ls1{letter-spacing:0.251280px;}
.ls4{letter-spacing:0.282000px;}
.lsc{letter-spacing:0.420000px;}
.lse{letter-spacing:3.905280px;}
.ls11{letter-spacing:41.706720px;}
.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;}
}
.ws3{word-spacing:-84.240000px;}
.wse{word-spacing:-59.760000px;}
.ws11{word-spacing:-29.880000px;}
.wsc{word-spacing:-18.414720px;}
.ws6{word-spacing:-13.746480px;}
.ws5{word-spacing:-13.326480px;}
.ws4{word-spacing:-13.147200px;}
.ws7{word-spacing:-13.026480px;}
.wsb{word-spacing:-12.963480px;}
.wsd{word-spacing:-12.848400px;}
.ws10{word-spacing:-12.696480px;}
.ws12{word-spacing:-12.306480px;}
.wsa{word-spacing:-12.042000px;}
.ws9{word-spacing:-11.820480px;}
.wsf{word-spacing:-11.772480px;}
.ws13{word-spacing:-11.522400px;}
.ws2{word-spacing:-10.296000px;}
.ws1{word-spacing:-9.354240px;}
.ws0{word-spacing:-9.312480px;}
.ws8{word-spacing:0.000000px;}
._f{margin-left:-4.907520px;}
._a{margin-left:-3.581280px;}
._6{margin-left:-2.494080px;}
._5{margin-left:-1.175040px;}
._0{width:1.670400px;}
._b{width:3.112560px;}
._c{width:4.246560px;}
._7{width:5.728320px;}
._8{width:6.823440px;}
._d{width:8.139120px;}
._e{width:9.501120px;}
._9{width:11.074560px;}
._10{width:14.085360px;}
._2{width:335.812800px;}
._1{width:831.606240px;}
._4{width:1291.458000px;}
._3{width:1341.714000px;}
.fc2{color:rgb(211,25,50);}
.fc1{color:rgb(37,43,70);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:2.880000px;}
.fs8{font-size:33.120000px;}
.fs6{font-size:36.000000px;}
.fs0{font-size:41.760000px;}
.fs1{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs3{font-size:63.360000px;}
.fs7{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.yd1{bottom:7.200000px;}
.ya6{bottom:7.380000px;}
.ycb{bottom:7.560000px;}
.y5{bottom:10.800000px;}
.y9c{bottom:11.700000px;}
.y9f{bottom:11.880000px;}
.yca{bottom:12.060000px;}
.ya5{bottom:30.780000px;}
.y4{bottom:33.660000px;}
.y9e{bottom:35.280000px;}
.ya1{bottom:35.310000px;}
.y3{bottom:49.140000px;}
.ya3{bottom:49.860000px;}
.yd0{bottom:54.180000px;}
.ya4{bottom:54.360000px;}
.ycf{bottom:77.760000px;}
.y44{bottom:91.656000px;}
.y43{bottom:96.156000px;}
.yce{bottom:101.160000px;}
.y6a{bottom:106.236000px;}
.yb3{bottom:110.556000px;}
.y42{bottom:112.896000px;}
.y91{bottom:122.256000px;}
.ycd{bottom:124.740000px;}
.y69{bottom:129.636000px;}
.y41{bottom:133.956000px;}
.y40{bottom:138.456000px;}
.y2b{bottom:144.036000px;}
.y90{bottom:145.656000px;}
.y3f{bottom:152.850000px;}
.y68{bottom:153.210000px;}
.yb2{bottom:157.530000px;}
.y2a{bottom:167.430000px;}
.y8f{bottom:169.230000px;}
.y67{bottom:176.610000px;}
.yb1{bottom:185.430000px;}
.y29{bottom:191.010000px;}
.y8e{bottom:192.630000px;}
.ycc{bottom:199.830000px;}
.y66{bottom:200.190000px;}
.y3e{bottom:205.050000px;}
.y28{bottom:214.590000px;}
.y8d{bottom:216.210000px;}
.yb0{bottom:218.010000px;}
.y65{bottom:223.590000px;}
.y3d{bottom:228.450000px;}
.y27{bottom:237.990000px;}
.y8c{bottom:239.610000px;}
.yaf{bottom:241.410000px;}
.y64{bottom:251.670000px;}
.y3c{bottom:252.030000px;}
.y8b{bottom:263.190000px;}
.yae{bottom:264.990000px;}
.y26{bottom:266.070000px;}
.y3b{bottom:275.430000px;}
.y63{bottom:284.070000px;}
.y8a{bottom:286.590000px;}
.y25{bottom:289.470000px;}
.yad{bottom:292.890000px;}
.y3a{bottom:303.510000px;}
.y62{bottom:307.650000px;}
.y89{bottom:310.170000px;}
.y24{bottom:313.050000px;}
.yac{bottom:325.470000px;}
.y61{bottom:331.050000px;}
.yf4{bottom:332.490000px;}
.y88{bottom:333.570000px;}
.y23{bottom:336.450000px;}
.y39{bottom:340.815000px;}
.yab{bottom:348.915000px;}
.y60{bottom:354.675000px;}
.yf3{bottom:355.935000px;}
.y87{bottom:357.195000px;}
.y22{bottom:360.075000px;}
.yaa{bottom:372.495000px;}
.y5f{bottom:378.075000px;}
.yf2{bottom:379.515000px;}
.y86{bottom:380.595000px;}
.y21{bottom:383.475000px;}
.ya9{bottom:400.395000px;}
.y5e{bottom:401.655000px;}
.yf1{bottom:402.915000px;}
.y85{bottom:404.175000px;}
.y20{bottom:407.055000px;}
.y5d{bottom:425.055000px;}
.yf0{bottom:426.495000px;}
.y84{bottom:427.575000px;}
.y1f{bottom:430.455000px;}
.ya8{bottom:432.975000px;}
.y5c{bottom:448.635000px;}
.yef{bottom:449.895000px;}
.y83{bottom:451.155000px;}
.y1e{bottom:454.035000px;}
.ya7{bottom:454.395000px;}
.y5b{bottom:472.035000px;}
.yee{bottom:473.475000px;}
.y82{bottom:474.555000px;}
.y1d{bottom:483.375000px;}
.yc9{bottom:484.455000px;}
.yed{bottom:496.875000px;}
.y81{bottom:498.135000px;}
.y5a{bottom:500.115000px;}
.yc8{bottom:507.855000px;}
.ya2{bottom:511.095000px;}
.yec{bottom:520.455000px;}
.y80{bottom:521.535000px;}
.y59{bottom:523.515000px;}
.yc7{bottom:531.435000px;}
.y1c{bottom:533.055000px;}
.yeb{bottom:543.855000px;}
.y7f{bottom:545.115000px;}
.y58{bottom:547.095000px;}
.yc6{bottom:554.835000px;}
.yea{bottom:567.435000px;}
.y7e{bottom:568.515000px;}
.y57{bottom:575.175000px;}
.yc5{bottom:578.415000px;}
.ya0{bottom:582.375000px;}
.y1b{bottom:587.955000px;}
.ye9{bottom:590.835000px;}
.y7d{bottom:592.095000px;}
.yc4{bottom:601.815000px;}
.y56{bottom:607.605000px;}
.y1a{bottom:611.565000px;}
.ye8{bottom:614.445000px;}
.y7c{bottom:615.705000px;}
.yc3{bottom:625.425000px;}
.y19{bottom:634.965000px;}
.ye7{bottom:637.845000px;}
.y7b{bottom:639.105000px;}
.y55{bottom:649.185000px;}
.yc2{bottom:653.325000px;}
.y18{bottom:658.545000px;}
.ye6{bottom:661.425000px;}
.y7a{bottom:662.685000px;}
.y9d{bottom:672.405000px;}
.y54{bottom:672.585000px;}
.yc1{bottom:676.905000px;}
.y17{bottom:681.945000px;}
.ye5{bottom:684.825000px;}
.y79{bottom:686.085000px;}
.y53{bottom:696.165000px;}
.yc0{bottom:700.305000px;}
.ye4{bottom:708.405000px;}
.y78{bottom:714.165000px;}
.y52{bottom:719.565000px;}
.y16{bottom:723.525000px;}
.ybf{bottom:723.885000px;}
.y9b{bottom:729.105000px;}
.ye3{bottom:731.805000px;}
.y77{bottom:737.565000px;}
.y51{bottom:743.145000px;}
.y15{bottom:746.925000px;}
.ybe{bottom:747.285000px;}
.ye2{bottom:755.385000px;}
.y76{bottom:761.145000px;}
.y50{bottom:766.545000px;}
.y14{bottom:770.505000px;}
.y9a{bottom:775.725000px;}
.ybd{bottom:776.805000px;}
.ye1{bottom:778.785000px;}
.y75{bottom:789.045000px;}
.y4f{bottom:790.125000px;}
.y13{bottom:793.905000px;}
.ye0{bottom:802.365000px;}
.y99{bottom:808.125000px;}
.y4e{bottom:813.525000px;}
.y12{bottom:817.485000px;}
.y74{bottom:821.625000px;}
.ydf{bottom:825.765000px;}
.ybc{bottom:830.625000px;}
.y98{bottom:831.525000px;}
.y4d{bottom:837.105000px;}
.y11{bottom:840.885000px;}
.y73{bottom:845.025000px;}
.yde{bottom:849.345000px;}
.ybb{bottom:854.025000px;}
.y97{bottom:859.605000px;}
.y38{bottom:860.505000px;}
.y10{bottom:864.465000px;}
.y72{bottom:868.605000px;}
.ydd{bottom:872.790000px;}
.yba{bottom:877.650000px;}
.y96{bottom:883.050000px;}
.y4c{bottom:884.130000px;}
.yf{bottom:887.910000px;}
.y71{bottom:892.050000px;}
.y36{bottom:892.950000px;}
.ydc{bottom:896.370000px;}
.y37{bottom:898.170000px;}
.yb9{bottom:901.050000px;}
.y95{bottom:906.630000px;}
.y4b{bottom:907.530000px;}
.y70{bottom:915.630000px;}
.y35{bottom:916.350000px;}
.ydb{bottom:919.950000px;}
.yb8{bottom:924.630000px;}
.ye{bottom:929.490000px;}
.y94{bottom:930.030000px;}
.y4a{bottom:931.110000px;}
.y6f{bottom:939.030000px;}
.y34{bottom:939.930000px;}
.yda{bottom:943.350000px;}
.yb7{bottom:948.030000px;}
.yd{bottom:952.890000px;}
.y93{bottom:953.610000px;}
.y49{bottom:959.010000px;}
.y6e{bottom:962.610000px;}
.yd9{bottom:966.930000px;}
.y33{bottom:969.270000px;}
.yb6{bottom:971.610000px;}
.yc{bottom:976.470000px;}
.y92{bottom:977.010000px;}
.y6d{bottom:986.010000px;}
.yd8{bottom:990.330000px;}
.yb5{bottom:995.010000px;}
.yb{bottom:999.870000px;}
.y48{bottom:1000.590000px;}
.y6c{bottom:1009.590000px;}
.yd7{bottom:1013.910000px;}
.yb4{bottom:1018.590000px;}
.y32{bottom:1023.090000px;}
.ya{bottom:1023.450000px;}
.y47{bottom:1023.990000px;}
.yd6{bottom:1037.310000px;}
.y6b{bottom:1037.490000px;}
.y31{bottom:1046.490000px;}
.y9{bottom:1046.850000px;}
.y46{bottom:1047.570000px;}
.yd5{bottom:1060.890000px;}
.y30{bottom:1070.070000px;}
.y8{bottom:1070.430000px;}
.y45{bottom:1075.470000px;}
.yd4{bottom:1084.290000px;}
.y2f{bottom:1093.470000px;}
.yd3{bottom:1107.870000px;}
.y7{bottom:1111.830000px;}
.y2e{bottom:1117.050000px;}
.y6{bottom:1134.150000px;}
.yd2{bottom:1137.210000px;}
.y2c{bottom:1140.480000px;}
.y2d{bottom:1145.700000px;}
.y2{bottom:1183.680000px;}
.y1{bottom:1197.900000px;}
.h17{height:2.573438px;}
.hc{height:29.594531px;}
.h9{height:32.167969px;}
.h11{height:32.400000px;}
.h13{height:32.580000px;}
.h2{height:37.314844px;}
.hb{height:46.483242px;}
.h3{height:48.251953px;}
.h7{height:51.122813px;}
.h6{height:53.398828px;}
.h10{height:55.825312px;}
.h12{height:55.980000px;}
.h8{height:56.003906px;}
.h14{height:56.016000px;}
.hf{height:61.423863px;}
.h5{height:65.524570px;}
.he{height:66.078281px;}
.ha{height:68.084282px;}
.hd{height:68.956875px;}
.h15{height:70.560000px;}
.h4{height:131.076000px;}
.h16{height:131.760000px;}
.h18{height:140.976000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:39.960000px;}
.w5{width:190.290000px;}
.w8{width:197.130000px;}
.w7{width:204.330000px;}
.w6{width:488.415000px;}
.w4{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:7.740000px;}
.x2{left:15.840000px;}
.x3{left:20.880000px;}
.x1{left:106.415987px;}
.xc{left:110.555987px;}
.x5{left:119.195987px;}
.x13{left:127.800000px;}
.xd{left:140.435987px;}
.x14{left:148.895987px;}
.x4{left:241.409987px;}
.xf{left:298.155000px;}
.x12{left:310.755000px;}
.xb{left:322.454987px;}
.x10{left:502.484973px;}
.x11{left:506.984987px;}
.x6{left:564.944973px;}
.x7{left:569.444987px;}
.x8{left:759.569973px;}
.x9{left:764.069987px;}
.xa{left:781.529987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-1.552000pt;}
.lsa{letter-spacing:-1.386667pt;}
.ls13{letter-spacing:-1.381333pt;}
.lsf{letter-spacing:-1.338667pt;}
.ls16{letter-spacing:-1.333333pt;}
.lsb{letter-spacing:-1.226667pt;}
.ls17{letter-spacing:-1.178667pt;}
.ls12{letter-spacing:-1.008000pt;}
.ls6{letter-spacing:-0.997333pt;}
.ls15{letter-spacing:-0.906667pt;}
.ls7{letter-spacing:-0.869333pt;}
.ls9{letter-spacing:-0.816000pt;}
.ls8{letter-spacing:-0.618667pt;}
.ls14{letter-spacing:-0.560000pt;}
.ls10{letter-spacing:-0.322667pt;}
.lsd{letter-spacing:-0.266667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.037120pt;}
.ls3{letter-spacing:0.051200pt;}
.ls1{letter-spacing:0.223360pt;}
.ls4{letter-spacing:0.250667pt;}
.lsc{letter-spacing:0.373333pt;}
.lse{letter-spacing:3.471360pt;}
.ls11{letter-spacing:37.072640pt;}
.ws3{word-spacing:-74.880000pt;}
.wse{word-spacing:-53.120000pt;}
.ws11{word-spacing:-26.560000pt;}
.wsc{word-spacing:-16.368640pt;}
.ws6{word-spacing:-12.219093pt;}
.ws5{word-spacing:-11.845760pt;}
.ws4{word-spacing:-11.686400pt;}
.ws7{word-spacing:-11.579093pt;}
.wsb{word-spacing:-11.523093pt;}
.wsd{word-spacing:-11.420800pt;}
.ws10{word-spacing:-11.285760pt;}
.ws12{word-spacing:-10.939093pt;}
.wsa{word-spacing:-10.704000pt;}
.ws9{word-spacing:-10.507093pt;}
.wsf{word-spacing:-10.464427pt;}
.ws13{word-spacing:-10.242133pt;}
.ws2{word-spacing:-9.152000pt;}
.ws1{word-spacing:-8.314880pt;}
.ws0{word-spacing:-8.277760pt;}
.ws8{word-spacing:0.000000pt;}
._f{margin-left:-4.362240pt;}
._a{margin-left:-3.183360pt;}
._6{margin-left:-2.216960pt;}
._5{margin-left:-1.044480pt;}
._0{width:1.484800pt;}
._b{width:2.766720pt;}
._c{width:3.774720pt;}
._7{width:5.091840pt;}
._8{width:6.065280pt;}
._d{width:7.234773pt;}
._e{width:8.445440pt;}
._9{width:9.844053pt;}
._10{width:12.520320pt;}
._2{width:298.500267pt;}
._1{width:739.205547pt;}
._4{width:1147.962667pt;}
._3{width:1192.634667pt;}
.fs9{font-size:2.560000pt;}
.fs8{font-size:29.440000pt;}
.fs6{font-size:32.000000pt;}
.fs0{font-size:37.120000pt;}
.fs1{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs3{font-size:56.320000pt;}
.fs7{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.yd1{bottom:6.400000pt;}
.ya6{bottom:6.560000pt;}
.ycb{bottom:6.720000pt;}
.y5{bottom:9.600000pt;}
.y9c{bottom:10.400000pt;}
.y9f{bottom:10.560000pt;}
.yca{bottom:10.720000pt;}
.ya5{bottom:27.360000pt;}
.y4{bottom:29.920000pt;}
.y9e{bottom:31.360000pt;}
.ya1{bottom:31.386667pt;}
.y3{bottom:43.680000pt;}
.ya3{bottom:44.320000pt;}
.yd0{bottom:48.160000pt;}
.ya4{bottom:48.320000pt;}
.ycf{bottom:69.120000pt;}
.y44{bottom:81.472000pt;}
.y43{bottom:85.472000pt;}
.yce{bottom:89.920000pt;}
.y6a{bottom:94.432000pt;}
.yb3{bottom:98.272000pt;}
.y42{bottom:100.352000pt;}
.y91{bottom:108.672000pt;}
.ycd{bottom:110.880000pt;}
.y69{bottom:115.232000pt;}
.y41{bottom:119.072000pt;}
.y40{bottom:123.072000pt;}
.y2b{bottom:128.032000pt;}
.y90{bottom:129.472000pt;}
.y3f{bottom:135.866667pt;}
.y68{bottom:136.186667pt;}
.yb2{bottom:140.026667pt;}
.y2a{bottom:148.826667pt;}
.y8f{bottom:150.426667pt;}
.y67{bottom:156.986667pt;}
.yb1{bottom:164.826667pt;}
.y29{bottom:169.786667pt;}
.y8e{bottom:171.226667pt;}
.ycc{bottom:177.626667pt;}
.y66{bottom:177.946667pt;}
.y3e{bottom:182.266667pt;}
.y28{bottom:190.746667pt;}
.y8d{bottom:192.186667pt;}
.yb0{bottom:193.786667pt;}
.y65{bottom:198.746667pt;}
.y3d{bottom:203.066667pt;}
.y27{bottom:211.546667pt;}
.y8c{bottom:212.986667pt;}
.yaf{bottom:214.586667pt;}
.y64{bottom:223.706667pt;}
.y3c{bottom:224.026667pt;}
.y8b{bottom:233.946667pt;}
.yae{bottom:235.546667pt;}
.y26{bottom:236.506667pt;}
.y3b{bottom:244.826667pt;}
.y63{bottom:252.506667pt;}
.y8a{bottom:254.746667pt;}
.y25{bottom:257.306667pt;}
.yad{bottom:260.346667pt;}
.y3a{bottom:269.786667pt;}
.y62{bottom:273.466667pt;}
.y89{bottom:275.706667pt;}
.y24{bottom:278.266667pt;}
.yac{bottom:289.306667pt;}
.y61{bottom:294.266667pt;}
.yf4{bottom:295.546667pt;}
.y88{bottom:296.506667pt;}
.y23{bottom:299.066667pt;}
.y39{bottom:302.946667pt;}
.yab{bottom:310.146667pt;}
.y60{bottom:315.266667pt;}
.yf3{bottom:316.386667pt;}
.y87{bottom:317.506667pt;}
.y22{bottom:320.066667pt;}
.yaa{bottom:331.106667pt;}
.y5f{bottom:336.066667pt;}
.yf2{bottom:337.346667pt;}
.y86{bottom:338.306667pt;}
.y21{bottom:340.866667pt;}
.ya9{bottom:355.906667pt;}
.y5e{bottom:357.026667pt;}
.yf1{bottom:358.146667pt;}
.y85{bottom:359.266667pt;}
.y20{bottom:361.826667pt;}
.y5d{bottom:377.826667pt;}
.yf0{bottom:379.106667pt;}
.y84{bottom:380.066667pt;}
.y1f{bottom:382.626667pt;}
.ya8{bottom:384.866667pt;}
.y5c{bottom:398.786667pt;}
.yef{bottom:399.906667pt;}
.y83{bottom:401.026667pt;}
.y1e{bottom:403.586667pt;}
.ya7{bottom:403.906667pt;}
.y5b{bottom:419.586667pt;}
.yee{bottom:420.866667pt;}
.y82{bottom:421.826667pt;}
.y1d{bottom:429.666667pt;}
.yc9{bottom:430.626667pt;}
.yed{bottom:441.666667pt;}
.y81{bottom:442.786667pt;}
.y5a{bottom:444.546667pt;}
.yc8{bottom:451.426667pt;}
.ya2{bottom:454.306667pt;}
.yec{bottom:462.626667pt;}
.y80{bottom:463.586667pt;}
.y59{bottom:465.346667pt;}
.yc7{bottom:472.386667pt;}
.y1c{bottom:473.826667pt;}
.yeb{bottom:483.426667pt;}
.y7f{bottom:484.546667pt;}
.y58{bottom:486.306667pt;}
.yc6{bottom:493.186667pt;}
.yea{bottom:504.386667pt;}
.y7e{bottom:505.346667pt;}
.y57{bottom:511.266667pt;}
.yc5{bottom:514.146667pt;}
.ya0{bottom:517.666667pt;}
.y1b{bottom:522.626667pt;}
.ye9{bottom:525.186667pt;}
.y7d{bottom:526.306667pt;}
.yc4{bottom:534.946667pt;}
.y56{bottom:540.093333pt;}
.y1a{bottom:543.613333pt;}
.ye8{bottom:546.173333pt;}
.y7c{bottom:547.293333pt;}
.yc3{bottom:555.933333pt;}
.y19{bottom:564.413333pt;}
.ye7{bottom:566.973333pt;}
.y7b{bottom:568.093333pt;}
.y55{bottom:577.053333pt;}
.yc2{bottom:580.733333pt;}
.y18{bottom:585.373333pt;}
.ye6{bottom:587.933333pt;}
.y7a{bottom:589.053333pt;}
.y9d{bottom:597.693333pt;}
.y54{bottom:597.853333pt;}
.yc1{bottom:601.693333pt;}
.y17{bottom:606.173333pt;}
.ye5{bottom:608.733333pt;}
.y79{bottom:609.853333pt;}
.y53{bottom:618.813333pt;}
.yc0{bottom:622.493333pt;}
.ye4{bottom:629.693333pt;}
.y78{bottom:634.813333pt;}
.y52{bottom:639.613333pt;}
.y16{bottom:643.133333pt;}
.ybf{bottom:643.453333pt;}
.y9b{bottom:648.093333pt;}
.ye3{bottom:650.493333pt;}
.y77{bottom:655.613333pt;}
.y51{bottom:660.573333pt;}
.y15{bottom:663.933333pt;}
.ybe{bottom:664.253333pt;}
.ye2{bottom:671.453333pt;}
.y76{bottom:676.573333pt;}
.y50{bottom:681.373333pt;}
.y14{bottom:684.893333pt;}
.y9a{bottom:689.533333pt;}
.ybd{bottom:690.493333pt;}
.ye1{bottom:692.253333pt;}
.y75{bottom:701.373333pt;}
.y4f{bottom:702.333333pt;}
.y13{bottom:705.693333pt;}
.ye0{bottom:713.213333pt;}
.y99{bottom:718.333333pt;}
.y4e{bottom:723.133333pt;}
.y12{bottom:726.653333pt;}
.y74{bottom:730.333333pt;}
.ydf{bottom:734.013333pt;}
.ybc{bottom:738.333333pt;}
.y98{bottom:739.133333pt;}
.y4d{bottom:744.093333pt;}
.y11{bottom:747.453333pt;}
.y73{bottom:751.133333pt;}
.yde{bottom:754.973333pt;}
.ybb{bottom:759.133333pt;}
.y97{bottom:764.093333pt;}
.y38{bottom:764.893333pt;}
.y10{bottom:768.413333pt;}
.y72{bottom:772.093333pt;}
.ydd{bottom:775.813333pt;}
.yba{bottom:780.133333pt;}
.y96{bottom:784.933333pt;}
.y4c{bottom:785.893333pt;}
.yf{bottom:789.253333pt;}
.y71{bottom:792.933333pt;}
.y36{bottom:793.733333pt;}
.ydc{bottom:796.773333pt;}
.y37{bottom:798.373333pt;}
.yb9{bottom:800.933333pt;}
.y95{bottom:805.893333pt;}
.y4b{bottom:806.693333pt;}
.y70{bottom:813.893333pt;}
.y35{bottom:814.533333pt;}
.ydb{bottom:817.733333pt;}
.yb8{bottom:821.893333pt;}
.ye{bottom:826.213333pt;}
.y94{bottom:826.693333pt;}
.y4a{bottom:827.653333pt;}
.y6f{bottom:834.693333pt;}
.y34{bottom:835.493333pt;}
.yda{bottom:838.533333pt;}
.yb7{bottom:842.693333pt;}
.yd{bottom:847.013333pt;}
.y93{bottom:847.653333pt;}
.y49{bottom:852.453333pt;}
.y6e{bottom:855.653333pt;}
.yd9{bottom:859.493333pt;}
.y33{bottom:861.573333pt;}
.yb6{bottom:863.653333pt;}
.yc{bottom:867.973333pt;}
.y92{bottom:868.453333pt;}
.y6d{bottom:876.453333pt;}
.yd8{bottom:880.293333pt;}
.yb5{bottom:884.453333pt;}
.yb{bottom:888.773333pt;}
.y48{bottom:889.413333pt;}
.y6c{bottom:897.413333pt;}
.yd7{bottom:901.253333pt;}
.yb4{bottom:905.413333pt;}
.y32{bottom:909.413333pt;}
.ya{bottom:909.733333pt;}
.y47{bottom:910.213333pt;}
.yd6{bottom:922.053333pt;}
.y6b{bottom:922.213333pt;}
.y31{bottom:930.213333pt;}
.y9{bottom:930.533333pt;}
.y46{bottom:931.173333pt;}
.yd5{bottom:943.013333pt;}
.y30{bottom:951.173333pt;}
.y8{bottom:951.493333pt;}
.y45{bottom:955.973333pt;}
.yd4{bottom:963.813333pt;}
.y2f{bottom:971.973333pt;}
.yd3{bottom:984.773333pt;}
.y7{bottom:988.293333pt;}
.y2e{bottom:992.933333pt;}
.y6{bottom:1008.133333pt;}
.yd2{bottom:1010.853333pt;}
.y2c{bottom:1013.760000pt;}
.y2d{bottom:1018.400000pt;}
.y2{bottom:1052.160000pt;}
.y1{bottom:1064.800000pt;}
.h17{height:2.287500pt;}
.hc{height:26.306250pt;}
.h9{height:28.593750pt;}
.h11{height:28.800000pt;}
.h13{height:28.960000pt;}
.h2{height:33.168750pt;}
.hb{height:41.318438pt;}
.h3{height:42.890625pt;}
.h7{height:45.442500pt;}
.h6{height:47.465625pt;}
.h10{height:49.622500pt;}
.h12{height:49.760000pt;}
.h8{height:49.781250pt;}
.h14{height:49.792000pt;}
.hf{height:54.598989pt;}
.h5{height:58.244063pt;}
.he{height:58.736250pt;}
.ha{height:60.519362pt;}
.hd{height:61.295000pt;}
.h15{height:62.720000pt;}
.h4{height:116.512000pt;}
.h16{height:117.120000pt;}
.h18{height:125.312000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:35.520000pt;}
.w5{width:169.146667pt;}
.w8{width:175.226667pt;}
.w7{width:181.626667pt;}
.w6{width:434.146667pt;}
.w4{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:6.880000pt;}
.x2{left:14.080000pt;}
.x3{left:18.560000pt;}
.x1{left:94.591988pt;}
.xc{left:98.271988pt;}
.x5{left:105.951988pt;}
.x13{left:113.600000pt;}
.xd{left:124.831988pt;}
.x14{left:132.351988pt;}
.x4{left:214.586655pt;}
.xf{left:265.026667pt;}
.x12{left:276.226667pt;}
.xb{left:286.626655pt;}
.x10{left:446.653310pt;}
.x11{left:450.653322pt;}
.x6{left:502.173310pt;}
.x7{left:506.173322pt;}
.x8{left:675.173310pt;}
.x9{left:679.173322pt;}
.xa{left:694.693322pt;}
}




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