
    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_25860d4a442bdbf968e9f83d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_8dd719ebfb65fbc21b30d21a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_8d6d393f0a69c6888c691524.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.921387;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_79768597e25cce71365bd968.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.003906;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_87399d2cd6e3933ff9e57f59.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.920410;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_f9a8749b7c42583cdcc01614.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.920410;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_7cf1bacd868abf43abccde43.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;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_d6b75e53b710e29a7ce4a2b6.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.739746;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);}
.m1{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;}
.lsc{letter-spacing:-0.360000px;}
.ls4{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.053280px;}
.ls2{letter-spacing:0.119520px;}
.ls1{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.259800px;}
.lsb{letter-spacing:0.259920px;}
.ls8{letter-spacing:0.306600px;}
.ls0{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.513600px;}
.lsf{letter-spacing:11.466720px;}
.lse{letter-spacing:41.682720px;}
.lsa{letter-spacing:46.002720px;}
.ls6{letter-spacing:64.002720px;}
.ls3{letter-spacing:687.240000px;}
.lsd{letter-spacing:687.960000px;}
.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;}
}
.ws6{word-spacing:-59.760000px;}
.ws3{word-spacing:-16.560000px;}
.ws7{word-spacing:-15.453600px;}
.ws1{word-spacing:-15.300000px;}
.ws5{word-spacing:-15.246600px;}
.ws8{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.580000px;}
.ws2{word-spacing:-13.500000px;}
.ws4{word-spacing:0.000000px;}
._8{margin-left:-9.642720px;}
._0{margin-left:-7.888320px;}
._5{margin-left:-6.742080px;}
._9{margin-left:-5.112000px;}
._a{margin-left:-3.960000px;}
._b{margin-left:-2.816160px;}
._2{margin-left:-1.321920px;}
._1{width:1.290720px;}
._3{width:2.923680px;}
._7{width:4.500000px;}
._10{width:5.509920px;}
._f{width:7.350480px;}
._e{width:8.904240px;}
._11{width:10.183200px;}
._14{width:11.234400px;}
._d{width:12.274800px;}
._c{width:13.505760px;}
._12{width:16.027920px;}
._13{width:18.255120px;}
._19{width:19.943760px;}
._16{width:20.991840px;}
._15{width:22.209840px;}
._18{width:23.390160px;}
._17{width:24.621120px;}
._1a{width:25.744800px;}
._6{width:85.722000px;}
._4{width:748.236000px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,112,192);}
.fc4{color:rgb(149,79,114);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yb{bottom:36.720000px;}
.ya{bottom:55.260000px;}
.y9{bottom:70.776000px;}
.y9d{bottom:113.076000px;}
.yc8{bottom:114.156000px;}
.y76{bottom:119.556000px;}
.y3f{bottom:123.696000px;}
.y9c{bottom:130.356000px;}
.yc7{bottom:131.436000px;}
.y75{bottom:136.836000px;}
.y3e{bottom:140.976000px;}
.ye1{bottom:143.316000px;}
.y9b{bottom:147.636000px;}
.yc6{bottom:148.716000px;}
.y74{bottom:154.110000px;}
.y3d{bottom:158.250000px;}
.ye0{bottom:160.410000px;}
.y9a{bottom:164.910000px;}
.yc5{bottom:165.990000px;}
.y73{bottom:171.390000px;}
.y3c{bottom:175.350000px;}
.ydf{bottom:177.690000px;}
.y99{bottom:182.190000px;}
.yc4{bottom:183.090000px;}
.y72{bottom:188.490000px;}
.y3b{bottom:192.630000px;}
.yde{bottom:194.970000px;}
.y98{bottom:200.370000px;}
.y71{bottom:205.770000px;}
.y3a{bottom:209.910000px;}
.ydd{bottom:212.250000px;}
.y97{bottom:217.650000px;}
.y70{bottom:223.050000px;}
.y39{bottom:227.190000px;}
.ydc{bottom:229.530000px;}
.y96{bottom:234.930000px;}
.y6f{bottom:240.330000px;}
.y38{bottom:244.470000px;}
.ydb{bottom:246.810000px;}
.y95{bottom:252.210000px;}
.yc3{bottom:253.290000px;}
.y6e{bottom:257.610000px;}
.y37{bottom:261.750000px;}
.yda{bottom:263.910000px;}
.y94{bottom:269.490000px;}
.yc2{bottom:270.570000px;}
.y6d{bottom:274.890000px;}
.y36{bottom:278.850000px;}
.yd9{bottom:281.190000px;}
.y93{bottom:286.590000px;}
.yc1{bottom:287.670000px;}
.y6c{bottom:291.990000px;}
.y35{bottom:296.130000px;}
.yd8{bottom:298.470000px;}
.y92{bottom:303.870000px;}
.yc0{bottom:304.950000px;}
.y6b{bottom:309.270000px;}
.y34{bottom:313.410000px;}
.yd7{bottom:315.750000px;}
.y91{bottom:321.150000px;}
.ybf{bottom:322.230000px;}
.y6a{bottom:326.550000px;}
.y33{bottom:330.690000px;}
.yd6{bottom:333.030000px;}
.y90{bottom:338.475000px;}
.ybe{bottom:340.635000px;}
.y69{bottom:343.875000px;}
.y32{bottom:348.375000px;}
.yd5{bottom:350.175000px;}
.y8f{bottom:356.835000px;}
.ybd{bottom:357.915000px;}
.y68{bottom:361.155000px;}
.yd4{bottom:367.455000px;}
.y31{bottom:369.075000px;}
.y8e{bottom:374.115000px;}
.ybc{bottom:375.195000px;}
.y67{bottom:378.255000px;}
.yd3{bottom:384.735000px;}
.y30{bottom:386.355000px;}
.y8d{bottom:391.215000px;}
.ybb{bottom:392.295000px;}
.y66{bottom:395.535000px;}
.yd2{bottom:402.015000px;}
.y2f{bottom:403.635000px;}
.y8c{bottom:408.495000px;}
.yba{bottom:409.575000px;}
.y65{bottom:412.815000px;}
.yd1{bottom:419.295000px;}
.y2e{bottom:420.915000px;}
.y8b{bottom:425.775000px;}
.yb9{bottom:427.935000px;}
.y64{bottom:430.095000px;}
.yd0{bottom:436.575000px;}
.y2d{bottom:438.195000px;}
.y8a{bottom:444.135000px;}
.yb8{bottom:445.215000px;}
.y63{bottom:447.375000px;}
.ycf{bottom:453.675000px;}
.y2c{bottom:455.475000px;}
.y89{bottom:461.415000px;}
.yb7{bottom:462.495000px;}
.y62{bottom:464.655000px;}
.yce{bottom:470.955000px;}
.y2b{bottom:472.755000px;}
.y88{bottom:478.515000px;}
.yb6{bottom:479.595000px;}
.y61{bottom:481.755000px;}
.ycd{bottom:488.235000px;}
.y2a{bottom:489.855000px;}
.y87{bottom:495.795000px;}
.yb5{bottom:496.875000px;}
.y60{bottom:499.035000px;}
.ycc{bottom:505.515000px;}
.y29{bottom:507.135000px;}
.y86{bottom:513.075000px;}
.yb4{bottom:514.155000px;}
.y5f{bottom:516.315000px;}
.ycb{bottom:522.795000px;}
.y28{bottom:524.415000px;}
.y85{bottom:530.355000px;}
.yb3{bottom:531.435000px;}
.y5e{bottom:533.595000px;}
.yca{bottom:540.075000px;}
.y27{bottom:541.695000px;}
.y84{bottom:548.715000px;}
.y5d{bottom:550.875000px;}
.yc9{bottom:557.175000px;}
.y26{bottom:558.975000px;}
.y83{bottom:565.995000px;}
.y5c{bottom:568.155000px;}
.y25{bottom:576.255000px;}
.y82{bottom:583.095000px;}
.y5b{bottom:585.255000px;}
.y24{bottom:593.355000px;}
.y81{bottom:600.375000px;}
.y5a{bottom:602.535000px;}
.y23{bottom:610.665000px;}
.y80{bottom:617.685000px;}
.y59{bottom:619.845000px;}
.y22{bottom:627.945000px;}
.y7f{bottom:634.965000px;}
.y58{bottom:637.125000px;}
.y21{bottom:645.225000px;}
.y7e{bottom:652.245000px;}
.y57{bottom:654.405000px;}
.y20{bottom:662.505000px;}
.y7d{bottom:669.525000px;}
.y56{bottom:671.685000px;}
.y1f{bottom:679.785000px;}
.y7c{bottom:686.625000px;}
.y55{bottom:688.785000px;}
.y1e{bottom:696.885000px;}
.yb2{bottom:703.905000px;}
.y7b{bottom:704.985000px;}
.y54{bottom:706.065000px;}
.y1d{bottom:714.885000px;}
.yb1{bottom:721.185000px;}
.y7a{bottom:722.265000px;}
.y53{bottom:723.345000px;}
.y1c{bottom:737.385000px;}
.yb0{bottom:738.465000px;}
.y79{bottom:739.545000px;}
.y52{bottom:740.625000px;}
.yaf{bottom:755.745000px;}
.y1b{bottom:756.465000px;}
.y78{bottom:756.825000px;}
.y51{bottom:757.905000px;}
.yae{bottom:772.845000px;}
.y77{bottom:773.925000px;}
.y50{bottom:775.005000px;}
.y1a{bottom:775.545000px;}
.yad{bottom:790.125000px;}
.y4f{bottom:792.285000px;}
.y19{bottom:794.445000px;}
.yac{bottom:807.405000px;}
.y4e{bottom:809.565000px;}
.y18{bottom:813.525000px;}
.yab{bottom:824.685000px;}
.y4d{bottom:826.845000px;}
.y17{bottom:832.425000px;}
.yaa{bottom:841.965000px;}
.y4c{bottom:844.125000px;}
.y16{bottom:851.325000px;}
.ya9{bottom:859.245000px;}
.y4b{bottom:861.405000px;}
.y15{bottom:870.405000px;}
.ya8{bottom:876.390000px;}
.y4a{bottom:878.550000px;}
.y14{bottom:889.350000px;}
.ya7{bottom:893.670000px;}
.y49{bottom:895.830000px;}
.y13{bottom:908.430000px;}
.ya6{bottom:910.950000px;}
.y48{bottom:913.110000px;}
.y12{bottom:927.330000px;}
.ya5{bottom:928.230000px;}
.y47{bottom:930.390000px;}
.ya4{bottom:945.510000px;}
.y11{bottom:946.410000px;}
.y46{bottom:947.670000px;}
.ya3{bottom:962.790000px;}
.y45{bottom:964.950000px;}
.y10{bottom:965.670000px;}
.ya2{bottom:979.890000px;}
.y44{bottom:982.050000px;}
.yf{bottom:986.370000px;}
.ya1{bottom:998.250000px;}
.y43{bottom:999.330000px;}
.ye{bottom:1007.070000px;}
.ya0{bottom:1015.530000px;}
.y42{bottom:1016.610000px;}
.yd{bottom:1027.770000px;}
.y9f{bottom:1032.810000px;}
.y41{bottom:1033.890000px;}
.yc{bottom:1048.290000px;}
.y9e{bottom:1050.090000px;}
.y40{bottom:1051.170000px;}
.y8{bottom:1069.530000px;}
.y7{bottom:1088.250000px;}
.y6{bottom:1104.090000px;}
.y5{bottom:1121.910000px;}
.y4{bottom:1138.680000px;}
.y3{bottom:1180.620000px;}
.y2{bottom:1199.160000px;}
.y1{bottom:1216.440000px;}
.h6{height:39.049805px;}
.h9{height:41.843672px;}
.h5{height:42.164648px;}
.h2{height:43.215117px;}
.hb{height:43.506914px;}
.h8{height:46.736719px;}
.h3{height:47.901094px;}
.ha{height:49.255313px;}
.h4{height:50.800781px;}
.h7{height:65.884219px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:108.035987px;}
.x9{left:119.195987px;}
.x2{left:123.155987px;}
.x1d{left:135.035987px;}
.xa{left:139.895987px;}
.x1c{left:143.135987px;}
.x7{left:144.575987px;}
.x4{left:158.429987px;}
.x1e{left:162.029987px;}
.x1b{left:175.169987px;}
.xd{left:179.849987px;}
.x20{left:183.989987px;}
.xe{left:198.569987px;}
.x12{left:209.909987px;}
.x21{left:218.909987px;}
.x1a{left:223.589987px;}
.x1f{left:237.809987px;}
.x24{left:242.129987px;}
.x8{left:252.929987px;}
.xc{left:317.594987px;}
.x13{left:320.294987px;}
.x15{left:331.274987px;}
.x18{left:334.154987px;}
.xb{left:339.014987px;}
.x17{left:342.074987px;}
.x19{left:351.434987px;}
.x16{left:359.174987px;}
.x28{left:366.734987px;}
.xf{left:367.994987px;}
.x11{left:372.314987px;}
.x23{left:374.294987px;}
.x22{left:384.374987px;}
.x14{left:386.534987px;}
.x26{left:388.154987px;}
.x29{left:393.554987px;}
.x6{left:396.434987px;}
.x27{left:400.754987px;}
.x25{left:406.154987px;}
.x5{left:412.274987px;}
.x10{left:446.474987px;}
.x3{left:518.504987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.047360pt;}
.ls2{letter-spacing:0.106240pt;}
.ls1{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.230933pt;}
.lsb{letter-spacing:0.231040pt;}
.ls8{letter-spacing:0.272533pt;}
.ls0{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.456533pt;}
.lsf{letter-spacing:10.192640pt;}
.lse{letter-spacing:37.051307pt;}
.lsa{letter-spacing:40.891307pt;}
.ls6{letter-spacing:56.891307pt;}
.ls3{letter-spacing:610.880000pt;}
.lsd{letter-spacing:611.520000pt;}
.ws6{word-spacing:-53.120000pt;}
.ws3{word-spacing:-14.720000pt;}
.ws7{word-spacing:-13.736533pt;}
.ws1{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.552533pt;}
.ws8{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.ws9{word-spacing:-12.960000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws4{word-spacing:0.000000pt;}
._8{margin-left:-8.571307pt;}
._0{margin-left:-7.011840pt;}
._5{margin-left:-5.992960pt;}
._9{margin-left:-4.544000pt;}
._a{margin-left:-3.520000pt;}
._b{margin-left:-2.503253pt;}
._2{margin-left:-1.175040pt;}
._1{width:1.147307pt;}
._3{width:2.598827pt;}
._7{width:4.000000pt;}
._10{width:4.897707pt;}
._f{width:6.533760pt;}
._e{width:7.914880pt;}
._11{width:9.051733pt;}
._14{width:9.986133pt;}
._d{width:10.910933pt;}
._c{width:12.005120pt;}
._12{width:14.247040pt;}
._13{width:16.226773pt;}
._19{width:17.727787pt;}
._16{width:18.659413pt;}
._15{width:19.742080pt;}
._18{width:20.791253pt;}
._17{width:21.885440pt;}
._1a{width:22.884267pt;}
._6{width:76.197333pt;}
._4{width:665.098667pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:32.640000pt;}
.ya{bottom:49.120000pt;}
.y9{bottom:62.912000pt;}
.y9d{bottom:100.512000pt;}
.yc8{bottom:101.472000pt;}
.y76{bottom:106.272000pt;}
.y3f{bottom:109.952000pt;}
.y9c{bottom:115.872000pt;}
.yc7{bottom:116.832000pt;}
.y75{bottom:121.632000pt;}
.y3e{bottom:125.312000pt;}
.ye1{bottom:127.392000pt;}
.y9b{bottom:131.232000pt;}
.yc6{bottom:132.192000pt;}
.y74{bottom:136.986667pt;}
.y3d{bottom:140.666667pt;}
.ye0{bottom:142.586667pt;}
.y9a{bottom:146.586667pt;}
.yc5{bottom:147.546667pt;}
.y73{bottom:152.346667pt;}
.y3c{bottom:155.866667pt;}
.ydf{bottom:157.946667pt;}
.y99{bottom:161.946667pt;}
.yc4{bottom:162.746667pt;}
.y72{bottom:167.546667pt;}
.y3b{bottom:171.226667pt;}
.yde{bottom:173.306667pt;}
.y98{bottom:178.106667pt;}
.y71{bottom:182.906667pt;}
.y3a{bottom:186.586667pt;}
.ydd{bottom:188.666667pt;}
.y97{bottom:193.466667pt;}
.y70{bottom:198.266667pt;}
.y39{bottom:201.946667pt;}
.ydc{bottom:204.026667pt;}
.y96{bottom:208.826667pt;}
.y6f{bottom:213.626667pt;}
.y38{bottom:217.306667pt;}
.ydb{bottom:219.386667pt;}
.y95{bottom:224.186667pt;}
.yc3{bottom:225.146667pt;}
.y6e{bottom:228.986667pt;}
.y37{bottom:232.666667pt;}
.yda{bottom:234.586667pt;}
.y94{bottom:239.546667pt;}
.yc2{bottom:240.506667pt;}
.y6d{bottom:244.346667pt;}
.y36{bottom:247.866667pt;}
.yd9{bottom:249.946667pt;}
.y93{bottom:254.746667pt;}
.yc1{bottom:255.706667pt;}
.y6c{bottom:259.546667pt;}
.y35{bottom:263.226667pt;}
.yd8{bottom:265.306667pt;}
.y92{bottom:270.106667pt;}
.yc0{bottom:271.066667pt;}
.y6b{bottom:274.906667pt;}
.y34{bottom:278.586667pt;}
.yd7{bottom:280.666667pt;}
.y91{bottom:285.466667pt;}
.ybf{bottom:286.426667pt;}
.y6a{bottom:290.266667pt;}
.y33{bottom:293.946667pt;}
.yd6{bottom:296.026667pt;}
.y90{bottom:300.866667pt;}
.ybe{bottom:302.786667pt;}
.y69{bottom:305.666667pt;}
.y32{bottom:309.666667pt;}
.yd5{bottom:311.266667pt;}
.y8f{bottom:317.186667pt;}
.ybd{bottom:318.146667pt;}
.y68{bottom:321.026667pt;}
.yd4{bottom:326.626667pt;}
.y31{bottom:328.066667pt;}
.y8e{bottom:332.546667pt;}
.ybc{bottom:333.506667pt;}
.y67{bottom:336.226667pt;}
.yd3{bottom:341.986667pt;}
.y30{bottom:343.426667pt;}
.y8d{bottom:347.746667pt;}
.ybb{bottom:348.706667pt;}
.y66{bottom:351.586667pt;}
.yd2{bottom:357.346667pt;}
.y2f{bottom:358.786667pt;}
.y8c{bottom:363.106667pt;}
.yba{bottom:364.066667pt;}
.y65{bottom:366.946667pt;}
.yd1{bottom:372.706667pt;}
.y2e{bottom:374.146667pt;}
.y8b{bottom:378.466667pt;}
.yb9{bottom:380.386667pt;}
.y64{bottom:382.306667pt;}
.yd0{bottom:388.066667pt;}
.y2d{bottom:389.506667pt;}
.y8a{bottom:394.786667pt;}
.yb8{bottom:395.746667pt;}
.y63{bottom:397.666667pt;}
.ycf{bottom:403.266667pt;}
.y2c{bottom:404.866667pt;}
.y89{bottom:410.146667pt;}
.yb7{bottom:411.106667pt;}
.y62{bottom:413.026667pt;}
.yce{bottom:418.626667pt;}
.y2b{bottom:420.226667pt;}
.y88{bottom:425.346667pt;}
.yb6{bottom:426.306667pt;}
.y61{bottom:428.226667pt;}
.ycd{bottom:433.986667pt;}
.y2a{bottom:435.426667pt;}
.y87{bottom:440.706667pt;}
.yb5{bottom:441.666667pt;}
.y60{bottom:443.586667pt;}
.ycc{bottom:449.346667pt;}
.y29{bottom:450.786667pt;}
.y86{bottom:456.066667pt;}
.yb4{bottom:457.026667pt;}
.y5f{bottom:458.946667pt;}
.ycb{bottom:464.706667pt;}
.y28{bottom:466.146667pt;}
.y85{bottom:471.426667pt;}
.yb3{bottom:472.386667pt;}
.y5e{bottom:474.306667pt;}
.yca{bottom:480.066667pt;}
.y27{bottom:481.506667pt;}
.y84{bottom:487.746667pt;}
.y5d{bottom:489.666667pt;}
.yc9{bottom:495.266667pt;}
.y26{bottom:496.866667pt;}
.y83{bottom:503.106667pt;}
.y5c{bottom:505.026667pt;}
.y25{bottom:512.226667pt;}
.y82{bottom:518.306667pt;}
.y5b{bottom:520.226667pt;}
.y24{bottom:527.426667pt;}
.y81{bottom:533.666667pt;}
.y5a{bottom:535.586667pt;}
.y23{bottom:542.813333pt;}
.y80{bottom:549.053333pt;}
.y59{bottom:550.973333pt;}
.y22{bottom:558.173333pt;}
.y7f{bottom:564.413333pt;}
.y58{bottom:566.333333pt;}
.y21{bottom:573.533333pt;}
.y7e{bottom:579.773333pt;}
.y57{bottom:581.693333pt;}
.y20{bottom:588.893333pt;}
.y7d{bottom:595.133333pt;}
.y56{bottom:597.053333pt;}
.y1f{bottom:604.253333pt;}
.y7c{bottom:610.333333pt;}
.y55{bottom:612.253333pt;}
.y1e{bottom:619.453333pt;}
.yb2{bottom:625.693333pt;}
.y7b{bottom:626.653333pt;}
.y54{bottom:627.613333pt;}
.y1d{bottom:635.453333pt;}
.yb1{bottom:641.053333pt;}
.y7a{bottom:642.013333pt;}
.y53{bottom:642.973333pt;}
.y1c{bottom:655.453333pt;}
.yb0{bottom:656.413333pt;}
.y79{bottom:657.373333pt;}
.y52{bottom:658.333333pt;}
.yaf{bottom:671.773333pt;}
.y1b{bottom:672.413333pt;}
.y78{bottom:672.733333pt;}
.y51{bottom:673.693333pt;}
.yae{bottom:686.973333pt;}
.y77{bottom:687.933333pt;}
.y50{bottom:688.893333pt;}
.y1a{bottom:689.373333pt;}
.yad{bottom:702.333333pt;}
.y4f{bottom:704.253333pt;}
.y19{bottom:706.173333pt;}
.yac{bottom:717.693333pt;}
.y4e{bottom:719.613333pt;}
.y18{bottom:723.133333pt;}
.yab{bottom:733.053333pt;}
.y4d{bottom:734.973333pt;}
.y17{bottom:739.933333pt;}
.yaa{bottom:748.413333pt;}
.y4c{bottom:750.333333pt;}
.y16{bottom:756.733333pt;}
.ya9{bottom:763.773333pt;}
.y4b{bottom:765.693333pt;}
.y15{bottom:773.693333pt;}
.ya8{bottom:779.013333pt;}
.y4a{bottom:780.933333pt;}
.y14{bottom:790.533333pt;}
.ya7{bottom:794.373333pt;}
.y49{bottom:796.293333pt;}
.y13{bottom:807.493333pt;}
.ya6{bottom:809.733333pt;}
.y48{bottom:811.653333pt;}
.y12{bottom:824.293333pt;}
.ya5{bottom:825.093333pt;}
.y47{bottom:827.013333pt;}
.ya4{bottom:840.453333pt;}
.y11{bottom:841.253333pt;}
.y46{bottom:842.373333pt;}
.ya3{bottom:855.813333pt;}
.y45{bottom:857.733333pt;}
.y10{bottom:858.373333pt;}
.ya2{bottom:871.013333pt;}
.y44{bottom:872.933333pt;}
.yf{bottom:876.773333pt;}
.ya1{bottom:887.333333pt;}
.y43{bottom:888.293333pt;}
.ye{bottom:895.173333pt;}
.ya0{bottom:902.693333pt;}
.y42{bottom:903.653333pt;}
.yd{bottom:913.573333pt;}
.y9f{bottom:918.053333pt;}
.y41{bottom:919.013333pt;}
.yc{bottom:931.813333pt;}
.y9e{bottom:933.413333pt;}
.y40{bottom:934.373333pt;}
.y8{bottom:950.693333pt;}
.y7{bottom:967.333333pt;}
.y6{bottom:981.413333pt;}
.y5{bottom:997.253333pt;}
.y4{bottom:1012.160000pt;}
.y3{bottom:1049.440000pt;}
.y2{bottom:1065.920000pt;}
.y1{bottom:1081.280000pt;}
.h6{height:34.710938pt;}
.h9{height:37.194375pt;}
.h5{height:37.479688pt;}
.h2{height:38.413438pt;}
.hb{height:38.672812pt;}
.h8{height:41.543750pt;}
.h3{height:42.578750pt;}
.ha{height:43.782500pt;}
.h4{height:45.156250pt;}
.h7{height:58.563750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.031988pt;}
.x9{left:105.951988pt;}
.x2{left:109.471988pt;}
.x1d{left:120.031988pt;}
.xa{left:124.351988pt;}
.x1c{left:127.231988pt;}
.x7{left:128.511988pt;}
.x4{left:140.826655pt;}
.x1e{left:144.026655pt;}
.x1b{left:155.706655pt;}
.xd{left:159.866655pt;}
.x20{left:163.546655pt;}
.xe{left:176.506655pt;}
.x12{left:186.586655pt;}
.x21{left:194.586655pt;}
.x1a{left:198.746655pt;}
.x1f{left:211.386655pt;}
.x24{left:215.226655pt;}
.x8{left:224.826655pt;}
.xc{left:282.306655pt;}
.x13{left:284.706655pt;}
.x15{left:294.466655pt;}
.x18{left:297.026655pt;}
.xb{left:301.346655pt;}
.x17{left:304.066655pt;}
.x19{left:312.386655pt;}
.x16{left:319.266655pt;}
.x28{left:325.986655pt;}
.xf{left:327.106655pt;}
.x11{left:330.946655pt;}
.x23{left:332.706655pt;}
.x22{left:341.666655pt;}
.x14{left:343.586655pt;}
.x26{left:345.026655pt;}
.x29{left:349.826655pt;}
.x6{left:352.386655pt;}
.x27{left:356.226655pt;}
.x25{left:361.026655pt;}
.x5{left:366.466655pt;}
.x10{left:396.866655pt;}
.x3{left:460.893322pt;}
}




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