
    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_d8f9539bb1fecc4d81cebf67.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.080566;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_54194222c33788e1cbfd8c82.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_bfc5146304aa928b346f2b15.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.916992;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_95363d014811f1c57885c07c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_eb0e4c7cc1ec12395d34ca53.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_6761127fff8119249280d32c.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_9c1d787cbfd3395b4f79c735.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_e6a1c5edfe3a0eaa92c5fc83.woff2')format("woff");}.ff8{font-family:ff8;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;}
.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;}
.v1{vertical-align:27.540000px;}
.ls13{letter-spacing:-3.600000px;}
.ls9{letter-spacing:-1.392000px;}
.ls2{letter-spacing:-1.200000px;}
.lsa{letter-spacing:-0.816000px;}
.lsc{letter-spacing:-0.408000px;}
.ls15{letter-spacing:-0.384000px;}
.ls8{letter-spacing:-0.192000px;}
.ls6{letter-spacing:-0.024000px;}
.ls1{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.060000px;}
.ls10{letter-spacing:0.132000px;}
.lse{letter-spacing:0.324000px;}
.ls5{letter-spacing:0.384000px;}
.ls14{letter-spacing:0.432000px;}
.lsd{letter-spacing:0.444000px;}
.ls0{letter-spacing:0.600000px;}
.ls7{letter-spacing:22.800000px;}
.ls11{letter-spacing:33.660000px;}
.ls12{letter-spacing:37.140000px;}
.ls3{letter-spacing:50.400000px;}
.lsf{letter-spacing:54.354000px;}
.ls4{letter-spacing:194.400000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-21.000000px;}
.ws9{word-spacing:-18.432000px;}
.ws2{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.976000px;}
.ws8{word-spacing:-17.616000px;}
.ws5{word-spacing:-17.592000px;}
.ws0{word-spacing:-15.000000px;}
.ws7{word-spacing:-14.400000px;}
.ws3{word-spacing:-12.000000px;}
.ws4{word-spacing:0.000000px;}
._6{margin-left:-9.726000px;}
._5{margin-left:-8.160000px;}
._4{margin-left:-6.300000px;}
._3{margin-left:-4.728000px;}
._7{margin-left:-3.714000px;}
._2{margin-left:-2.640000px;}
._1{margin-left:-1.200000px;}
._0{width:1.380000px;}
._b{width:3.066000px;}
._c{width:4.380000px;}
._d{width:5.856000px;}
._11{width:6.876000px;}
._12{width:8.376000px;}
._f{width:10.056000px;}
._1a{width:11.232000px;}
._23{width:12.246000px;}
._a{width:13.356000px;}
._10{width:14.616000px;}
._e{width:16.044000px;}
._9{width:19.182000px;}
._8{width:20.430000px;}
._1b{width:21.528000px;}
._25{width:23.148000px;}
._26{width:24.660000px;}
._21{width:26.256000px;}
._19{width:27.888000px;}
._27{width:28.962000px;}
._28{width:30.630000px;}
._24{width:32.028000px;}
._22{width:33.996000px;}
._1d{width:35.484000px;}
._1c{width:36.588000px;}
._34{width:38.460000px;}
._18{width:39.744000px;}
._2b{width:40.752000px;}
._20{width:42.480000px;}
._1f{width:43.632000px;}
._1e{width:44.640000px;}
._2e{width:46.440000px;}
._14{width:47.766000px;}
._13{width:48.816000px;}
._16{width:49.980000px;}
._15{width:52.380000px;}
._32{width:54.240000px;}
._31{width:56.208000px;}
._3d{width:58.068000px;}
._43{width:60.336000px;}
._33{width:63.144000px;}
._4a{width:65.580000px;}
._39{width:68.196000px;}
._38{width:69.252000px;}
._42{width:71.238000px;}
._41{width:72.924000px;}
._17{width:75.168000px;}
._3b{width:76.380000px;}
._53{width:78.438000px;}
._50{width:80.196000px;}
._3c{width:81.348000px;}
._49{width:82.356000px;}
._4b{width:88.236000px;}
._45{width:93.168000px;}
._44{width:94.176000px;}
._46{width:96.756000px;}
._47{width:98.280000px;}
._2c{width:106.548000px;}
._54{width:113.604000px;}
._4d{width:120.462000px;}
._4e{width:121.590000px;}
._3a{width:122.778000px;}
._2d{width:124.128000px;}
._3f{width:126.300000px;}
._40{width:131.694000px;}
._51{width:134.256000px;}
._30{width:135.900000px;}
._2f{width:137.118000px;}
._3e{width:141.084000px;}
._4c{width:144.276000px;}
._37{width:150.048000px;}
._36{width:151.500000px;}
._55{width:176.616000px;}
._56{width:186.840000px;}
._29{width:194.400000px;}
._2a{width:195.780000px;}
._4f{width:196.890000px;}
._57{width:212.760000px;}
._52{width:222.900000px;}
._48{width:307.332000px;}
._35{width:342.204000px;}
.fc1{color:rgb(0,112,192);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs3{font-size:48.000000px;}
.fs0{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y5c{bottom:6.885000px;}
.y49{bottom:6.900000px;}
.y5a{bottom:6.915000px;}
.y64{bottom:6.930000px;}
.y3e{bottom:7.200000px;}
.y60{bottom:7.215000px;}
.y47{bottom:7.230000px;}
.y52{bottom:7.245000px;}
.y4f{bottom:8.745000px;}
.y40{bottom:18.900000px;}
.ya0{bottom:30.600000px;}
.y9a{bottom:30.630000px;}
.yb7{bottom:30.645000px;}
.y3d{bottom:30.900000px;}
.ybc{bottom:30.930000px;}
.yad{bottom:30.945000px;}
.y4e{bottom:32.445000px;}
.y45{bottom:33.900000px;}
.y58{bottom:34.800000px;}
.y93{bottom:42.600000px;}
.y3f{bottom:42.900000px;}
.y3c{bottom:54.585000px;}
.yc6{bottom:54.592500px;}
.y95{bottom:54.600000px;}
.ya3{bottom:54.615000px;}
.y97{bottom:54.630000px;}
.yaa{bottom:54.645000px;}
.yc9{bottom:54.900000px;}
.y4d{bottom:56.145000px;}
.y44{bottom:57.600000px;}
.y57{bottom:58.500000px;}
.y9c{bottom:66.300000px;}
.ybf{bottom:66.600000px;}
.ya5{bottom:67.200000px;}
.y6{bottom:69.337500px;}
.yaf{bottom:78.285000px;}
.y9f{bottom:78.300000px;}
.y99{bottom:78.330000px;}
.y94{bottom:78.337500px;}
.yb6{bottom:78.345000px;}
.ya2{bottom:78.615000px;}
.yba{bottom:78.630000px;}
.yac{bottom:78.645000px;}
.ya8{bottom:80.130000px;}
.y43{bottom:81.300000px;}
.y62{bottom:81.600000px;}
.y56{bottom:82.215000px;}
.yc2{bottom:90.330000px;}
.y92{bottom:93.037500px;}
.y31{bottom:97.537500px;}
.yb8{bottom:100.837500px;}
.y9e{bottom:102.000000px;}
.ycb{bottom:102.030000px;}
.yb1{bottom:102.045000px;}
.yc0{bottom:102.300000px;}
.y98{bottom:102.330000px;}
.yc7{bottom:102.337500px;}
.yab{bottom:102.345000px;}
.yc5{bottom:103.837500px;}
.ya7{bottom:103.845000px;}
.y42{bottom:105.330000px;}
.y55{bottom:106.215000px;}
.y6c{bottom:120.337500px;}
.y30{bottom:121.237500px;}
.y9d{bottom:126.000000px;}
.ybb{bottom:126.030000px;}
.yb5{bottom:126.045000px;}
.ya6{bottom:127.530000px;}
.y54{bottom:129.915000px;}
.y6b{bottom:144.337500px;}
.y2f{bottom:145.237500px;}
.yb4{bottom:149.745000px;}
.yb0{bottom:150.030000px;}
.ycc{bottom:150.045000px;}
.y6a{bottom:168.030000px;}
.y2e{bottom:168.975000px;}
.yb3{bottom:173.445000px;}
.yc3{bottom:173.745000px;}
.y91{bottom:189.675000px;}
.y69{bottom:191.775000px;}
.y2d{bottom:192.675000px;}
.yb2{bottom:197.475000px;}
.y68{bottom:215.775000px;}
.y2c{bottom:216.675000px;}
.y90{bottom:222.075000px;}
.yc4{bottom:224.475000px;}
.y61{bottom:233.175000px;}
.y2b{bottom:240.375000px;}
.y8f{bottom:245.775000px;}
.y67{bottom:257.775000px;}
.y2a{bottom:264.375000px;}
.y8e{bottom:269.775000px;}
.y66{bottom:282.375000px;}
.y29{bottom:288.075000px;}
.y8d{bottom:293.475000px;}
.y65{bottom:306.975000px;}
.y28{bottom:311.775000px;}
.y8c{bottom:317.175000px;}
.yc1{bottom:321.075000px;}
.y63{bottom:331.575000px;}
.y27{bottom:335.775000px;}
.y8b{bottom:341.220000px;}
.y53{bottom:355.905000px;}
.y26{bottom:359.505000px;}
.y8a{bottom:364.905000px;}
.yae{bottom:365.820000px;}
.y5f{bottom:380.505000px;}
.y25{bottom:383.205000px;}
.y89{bottom:388.620000px;}
.y5e{bottom:405.105000px;}
.y24{bottom:407.205000px;}
.y88{bottom:412.620000px;}
.ycf{bottom:421.905000px;}
.y5d{bottom:429.705000px;}
.y23{bottom:430.920000px;}
.y87{bottom:436.320000px;}
.yce{bottom:440.205000px;}
.y5b{bottom:454.320000px;}
.y22{bottom:454.620000px;}
.y86{bottom:460.005000px;}
.y21{bottom:478.620000px;}
.y59{bottom:478.905000px;}
.y85{bottom:484.005000px;}
.ya9{bottom:486.105000px;}
.y20{bottom:502.305000px;}
.y4c{bottom:503.205000px;}
.y84{bottom:507.750000px;}
.ybe{bottom:513.150000px;}
.y1f{bottom:526.050000px;}
.y51{bottom:527.850000px;}
.y83{bottom:531.750000px;}
.y1e{bottom:550.050000px;}
.y50{bottom:552.450000px;}
.y82{bottom:555.450000px;}
.y1d{bottom:573.750000px;}
.y41{bottom:577.050000px;}
.y81{bottom:579.150000px;}
.y1c{bottom:597.450000px;}
.y4b{bottom:601.650000px;}
.y80{bottom:603.150000px;}
.ya4{bottom:606.750000px;}
.ycd{bottom:608.250000px;}
.y1b{bottom:621.450000px;}
.y4a{bottom:626.250000px;}
.y7f{bottom:626.850000px;}
.y1a{bottom:645.150000px;}
.y7e{bottom:650.550000px;}
.y48{bottom:650.850000px;}
.ybd{bottom:657.450000px;}
.y19{bottom:668.850000px;}
.y7d{bottom:674.550000px;}
.y46{bottom:675.150000px;}
.y18{bottom:692.880000px;}
.y7c{bottom:698.280000px;}
.y3b{bottom:699.795000px;}
.y17{bottom:716.580000px;}
.y7b{bottom:721.995000px;}
.y16{bottom:740.280000px;}
.y7a{bottom:745.980000px;}
.ya1{bottom:752.580000px;}
.y15{bottom:764.280000px;}
.y3a{bottom:778.980000px;}
.y79{bottom:780.195000px;}
.y14{bottom:787.995000px;}
.y39{bottom:802.695000px;}
.y78{bottom:803.880000px;}
.y13{bottom:811.695000px;}
.yb9{bottom:825.495000px;}
.y38{bottom:826.695000px;}
.y77{bottom:827.880000px;}
.y12{bottom:835.695000px;}
.y9b{bottom:849.525000px;}
.y37{bottom:850.425000px;}
.y76{bottom:853.125000px;}
.y11{bottom:859.425000px;}
.y36{bottom:874.125000px;}
.y75{bottom:877.125000px;}
.y10{bottom:883.125000px;}
.y35{bottom:898.125000px;}
.y74{bottom:900.825000px;}
.yf{bottom:907.125000px;}
.yca{bottom:920.925000px;}
.y34{bottom:921.825000px;}
.y73{bottom:926.325000px;}
.ye{bottom:930.825000px;}
.y33{bottom:945.525000px;}
.y72{bottom:950.025000px;}
.yd{bottom:954.525000px;}
.y32{bottom:969.525000px;}
.y71{bottom:973.725000px;}
.yc{bottom:978.525000px;}
.y96{bottom:993.825000px;}
.y70{bottom:999.225000px;}
.yb{bottom:1002.225000px;}
.y6f{bottom:1022.955000px;}
.ya{bottom:1025.955000px;}
.yc8{bottom:1041.255000px;}
.y6e{bottom:1048.455000px;}
.y9{bottom:1049.955000px;}
.y6d{bottom:1072.155000px;}
.y8{bottom:1073.655000px;}
.y7{bottom:1097.655000px;}
.y5{bottom:1130.355000px;}
.y4{bottom:1162.155000px;}
.y3{bottom:1191.600000px;}
.y2{bottom:1220.700000px;}
.y1{bottom:1238.100000px;}
.h12{height:23.700000px;}
.h16{height:23.737500px;}
.h14{height:24.000000px;}
.h11{height:24.037500px;}
.h1f{height:47.700000px;}
.h9{height:50.484375px;}
.h2{height:51.884766px;}
.hd{height:59.343750px;}
.ha{height:61.196250px;}
.he{height:61.256250px;}
.hb{height:61.316250px;}
.h6{height:62.261719px;}
.h3{height:62.460938px;}
.hc{height:70.664062px;}
.hf{height:71.400000px;}
.h24{height:71.700000px;}
.h8{height:71.824219px;}
.h13{height:72.937500px;}
.h1c{height:74.004654px;}
.h7{height:74.953125px;}
.h5{height:82.441406px;}
.h4{height:87.445312px;}
.h23{height:95.100000px;}
.h17{height:95.137500px;}
.h1a{height:95.437500px;}
.h1d{height:118.800000px;}
.h25{height:118.837500px;}
.h18{height:119.137500px;}
.h10{height:122.137500px;}
.h19{height:142.800000px;}
.h26{height:142.837500px;}
.h1b{height:144.337500px;}
.h15{height:146.700000px;}
.h21{height:166.530000px;}
.h20{height:166.830000px;}
.h22{height:190.575000px;}
.h1e{height:214.275000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w8{width:37.500000px;}
.w7{width:84.337500px;}
.w5{width:94.837500px;}
.w4{width:116.137500px;}
.w6{width:122.437500px;}
.w3{width:292.875000px;}
.w9{width:341.820000px;}
.wa{width:360.120000px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1b{left:7.800000px;}
.x27{left:9.900000px;}
.x31{left:14.100000px;}
.x22{left:15.600000px;}
.x1e{left:18.600000px;}
.x28{left:22.800000px;}
.x21{left:27.300000px;}
.x24{left:29.400000px;}
.x1d{left:31.500000px;}
.x2a{left:32.700000px;}
.x2b{left:37.230000px;}
.x25{left:40.785000px;}
.x29{left:45.600000px;}
.x1f{left:47.730000px;}
.x3{left:84.937487px;}
.x2c{left:86.437500px;}
.xc{left:90.637487px;}
.x16{left:96.337487px;}
.x2e{left:103.237500px;}
.xa{left:108.937487px;}
.x7{left:115.837487px;}
.x17{left:119.137487px;}
.x30{left:124.230000px;}
.x2d{left:125.437500px;}
.xe{left:126.637487px;}
.x11{left:132.037487px;}
.x6{left:137.437487px;}
.x12{left:159.344987px;}
.x15{left:168.029987px;}
.x19{left:176.774987px;}
.x14{left:201.974987px;}
.xb{left:235.874987px;}
.x1a{left:283.874987px;}
.x8{left:288.974987px;}
.x10{left:295.619987px;}
.x13{left:301.019987px;}
.x4{left:350.819987px;}
.x1c{left:383.220000px;}
.x18{left:386.819987px;}
.xf{left:403.619987px;}
.xd{left:421.049987px;}
.x5{left:425.549987px;}
.x9{left:446.249987px;}
.x2{left:457.049987px;}
.x2f{left:468.750000px;}
.x20{left:500.250000px;}
.x1{left:510.449987px;}
.x23{left:595.995000px;}
.x26{left:719.325000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.480000pt;}
.ls13{letter-spacing:-3.200000pt;}
.ls9{letter-spacing:-1.237333pt;}
.ls2{letter-spacing:-1.066667pt;}
.lsa{letter-spacing:-0.725333pt;}
.lsc{letter-spacing:-0.362667pt;}
.ls15{letter-spacing:-0.341333pt;}
.ls8{letter-spacing:-0.170667pt;}
.ls6{letter-spacing:-0.021333pt;}
.ls1{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.053333pt;}
.ls10{letter-spacing:0.117333pt;}
.lse{letter-spacing:0.288000pt;}
.ls5{letter-spacing:0.341333pt;}
.ls14{letter-spacing:0.384000pt;}
.lsd{letter-spacing:0.394667pt;}
.ls0{letter-spacing:0.533333pt;}
.ls7{letter-spacing:20.266667pt;}
.ls11{letter-spacing:29.920000pt;}
.ls12{letter-spacing:33.013333pt;}
.ls3{letter-spacing:44.800000pt;}
.lsf{letter-spacing:48.314667pt;}
.ls4{letter-spacing:172.800000pt;}
.ws1{word-spacing:-18.666667pt;}
.ws9{word-spacing:-16.384000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.978667pt;}
.ws8{word-spacing:-15.658667pt;}
.ws5{word-spacing:-15.637333pt;}
.ws0{word-spacing:-13.333333pt;}
.ws7{word-spacing:-12.800000pt;}
.ws3{word-spacing:-10.666667pt;}
.ws4{word-spacing:0.000000pt;}
._6{margin-left:-8.645333pt;}
._5{margin-left:-7.253333pt;}
._4{margin-left:-5.600000pt;}
._3{margin-left:-4.202667pt;}
._7{margin-left:-3.301333pt;}
._2{margin-left:-2.346667pt;}
._1{margin-left:-1.066667pt;}
._0{width:1.226667pt;}
._b{width:2.725333pt;}
._c{width:3.893333pt;}
._d{width:5.205333pt;}
._11{width:6.112000pt;}
._12{width:7.445333pt;}
._f{width:8.938667pt;}
._1a{width:9.984000pt;}
._23{width:10.885333pt;}
._a{width:11.872000pt;}
._10{width:12.992000pt;}
._e{width:14.261333pt;}
._9{width:17.050667pt;}
._8{width:18.160000pt;}
._1b{width:19.136000pt;}
._25{width:20.576000pt;}
._26{width:21.920000pt;}
._21{width:23.338667pt;}
._19{width:24.789333pt;}
._27{width:25.744000pt;}
._28{width:27.226667pt;}
._24{width:28.469333pt;}
._22{width:30.218667pt;}
._1d{width:31.541333pt;}
._1c{width:32.522667pt;}
._34{width:34.186667pt;}
._18{width:35.328000pt;}
._2b{width:36.224000pt;}
._20{width:37.760000pt;}
._1f{width:38.784000pt;}
._1e{width:39.680000pt;}
._2e{width:41.280000pt;}
._14{width:42.458667pt;}
._13{width:43.392000pt;}
._16{width:44.426667pt;}
._15{width:46.560000pt;}
._32{width:48.213333pt;}
._31{width:49.962667pt;}
._3d{width:51.616000pt;}
._43{width:53.632000pt;}
._33{width:56.128000pt;}
._4a{width:58.293333pt;}
._39{width:60.618667pt;}
._38{width:61.557333pt;}
._42{width:63.322667pt;}
._41{width:64.821333pt;}
._17{width:66.816000pt;}
._3b{width:67.893333pt;}
._53{width:69.722667pt;}
._50{width:71.285333pt;}
._3c{width:72.309333pt;}
._49{width:73.205333pt;}
._4b{width:78.432000pt;}
._45{width:82.816000pt;}
._44{width:83.712000pt;}
._46{width:86.005333pt;}
._47{width:87.360000pt;}
._2c{width:94.709333pt;}
._54{width:100.981333pt;}
._4d{width:107.077333pt;}
._4e{width:108.080000pt;}
._3a{width:109.136000pt;}
._2d{width:110.336000pt;}
._3f{width:112.266667pt;}
._40{width:117.061333pt;}
._51{width:119.338667pt;}
._30{width:120.800000pt;}
._2f{width:121.882667pt;}
._3e{width:125.408000pt;}
._4c{width:128.245333pt;}
._37{width:133.376000pt;}
._36{width:134.666667pt;}
._55{width:156.992000pt;}
._56{width:166.080000pt;}
._29{width:172.800000pt;}
._2a{width:174.026667pt;}
._4f{width:175.013333pt;}
._57{width:189.120000pt;}
._52{width:198.133333pt;}
._48{width:273.184000pt;}
._35{width:304.181333pt;}
.fs3{font-size:42.666667pt;}
.fs0{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y5c{bottom:6.120000pt;}
.y49{bottom:6.133333pt;}
.y5a{bottom:6.146667pt;}
.y64{bottom:6.160000pt;}
.y3e{bottom:6.400000pt;}
.y60{bottom:6.413333pt;}
.y47{bottom:6.426667pt;}
.y52{bottom:6.440000pt;}
.y4f{bottom:7.773333pt;}
.y40{bottom:16.800000pt;}
.ya0{bottom:27.200000pt;}
.y9a{bottom:27.226667pt;}
.yb7{bottom:27.240000pt;}
.y3d{bottom:27.466667pt;}
.ybc{bottom:27.493333pt;}
.yad{bottom:27.506667pt;}
.y4e{bottom:28.840000pt;}
.y45{bottom:30.133333pt;}
.y58{bottom:30.933333pt;}
.y93{bottom:37.866667pt;}
.y3f{bottom:38.133333pt;}
.y3c{bottom:48.520000pt;}
.yc6{bottom:48.526667pt;}
.y95{bottom:48.533333pt;}
.ya3{bottom:48.546667pt;}
.y97{bottom:48.560000pt;}
.yaa{bottom:48.573333pt;}
.yc9{bottom:48.800000pt;}
.y4d{bottom:49.906667pt;}
.y44{bottom:51.200000pt;}
.y57{bottom:52.000000pt;}
.y9c{bottom:58.933333pt;}
.ybf{bottom:59.200000pt;}
.ya5{bottom:59.733333pt;}
.y6{bottom:61.633333pt;}
.yaf{bottom:69.586667pt;}
.y9f{bottom:69.600000pt;}
.y99{bottom:69.626667pt;}
.y94{bottom:69.633333pt;}
.yb6{bottom:69.640000pt;}
.ya2{bottom:69.880000pt;}
.yba{bottom:69.893333pt;}
.yac{bottom:69.906667pt;}
.ya8{bottom:71.226667pt;}
.y43{bottom:72.266667pt;}
.y62{bottom:72.533333pt;}
.y56{bottom:73.080000pt;}
.yc2{bottom:80.293333pt;}
.y92{bottom:82.700000pt;}
.y31{bottom:86.700000pt;}
.yb8{bottom:89.633333pt;}
.y9e{bottom:90.666667pt;}
.ycb{bottom:90.693333pt;}
.yb1{bottom:90.706667pt;}
.yc0{bottom:90.933333pt;}
.y98{bottom:90.960000pt;}
.yc7{bottom:90.966667pt;}
.yab{bottom:90.973333pt;}
.yc5{bottom:92.300000pt;}
.ya7{bottom:92.306667pt;}
.y42{bottom:93.626667pt;}
.y55{bottom:94.413333pt;}
.y6c{bottom:106.966667pt;}
.y30{bottom:107.766667pt;}
.y9d{bottom:112.000000pt;}
.ybb{bottom:112.026667pt;}
.yb5{bottom:112.040000pt;}
.ya6{bottom:113.360000pt;}
.y54{bottom:115.480000pt;}
.y6b{bottom:128.300000pt;}
.y2f{bottom:129.100000pt;}
.yb4{bottom:133.106667pt;}
.yb0{bottom:133.360000pt;}
.ycc{bottom:133.373333pt;}
.y6a{bottom:149.360000pt;}
.y2e{bottom:150.200000pt;}
.yb3{bottom:154.173333pt;}
.yc3{bottom:154.440000pt;}
.y91{bottom:168.600000pt;}
.y69{bottom:170.466667pt;}
.y2d{bottom:171.266667pt;}
.yb2{bottom:175.533333pt;}
.y68{bottom:191.800000pt;}
.y2c{bottom:192.600000pt;}
.y90{bottom:197.400000pt;}
.yc4{bottom:199.533333pt;}
.y61{bottom:207.266667pt;}
.y2b{bottom:213.666667pt;}
.y8f{bottom:218.466667pt;}
.y67{bottom:229.133333pt;}
.y2a{bottom:235.000000pt;}
.y8e{bottom:239.800000pt;}
.y66{bottom:251.000000pt;}
.y29{bottom:256.066667pt;}
.y8d{bottom:260.866667pt;}
.y65{bottom:272.866667pt;}
.y28{bottom:277.133333pt;}
.y8c{bottom:281.933333pt;}
.yc1{bottom:285.400000pt;}
.y63{bottom:294.733333pt;}
.y27{bottom:298.466667pt;}
.y8b{bottom:303.306667pt;}
.y53{bottom:316.360000pt;}
.y26{bottom:319.560000pt;}
.y8a{bottom:324.360000pt;}
.yae{bottom:325.173333pt;}
.y5f{bottom:338.226667pt;}
.y25{bottom:340.626667pt;}
.y89{bottom:345.440000pt;}
.y5e{bottom:360.093333pt;}
.y24{bottom:361.960000pt;}
.y88{bottom:366.773333pt;}
.ycf{bottom:375.026667pt;}
.y5d{bottom:381.960000pt;}
.y23{bottom:383.040000pt;}
.y87{bottom:387.840000pt;}
.yce{bottom:391.293333pt;}
.y5b{bottom:403.840000pt;}
.y22{bottom:404.106667pt;}
.y86{bottom:408.893333pt;}
.y21{bottom:425.440000pt;}
.y59{bottom:425.693333pt;}
.y85{bottom:430.226667pt;}
.ya9{bottom:432.093333pt;}
.y20{bottom:446.493333pt;}
.y4c{bottom:447.293333pt;}
.y84{bottom:451.333333pt;}
.ybe{bottom:456.133333pt;}
.y1f{bottom:467.600000pt;}
.y51{bottom:469.200000pt;}
.y83{bottom:472.666667pt;}
.y1e{bottom:488.933333pt;}
.y50{bottom:491.066667pt;}
.y82{bottom:493.733333pt;}
.y1d{bottom:510.000000pt;}
.y41{bottom:512.933333pt;}
.y81{bottom:514.800000pt;}
.y1c{bottom:531.066667pt;}
.y4b{bottom:534.800000pt;}
.y80{bottom:536.133333pt;}
.ya4{bottom:539.333333pt;}
.ycd{bottom:540.666667pt;}
.y1b{bottom:552.400000pt;}
.y4a{bottom:556.666667pt;}
.y7f{bottom:557.200000pt;}
.y1a{bottom:573.466667pt;}
.y7e{bottom:578.266667pt;}
.y48{bottom:578.533333pt;}
.ybd{bottom:584.400000pt;}
.y19{bottom:594.533333pt;}
.y7d{bottom:599.600000pt;}
.y46{bottom:600.133333pt;}
.y18{bottom:615.893333pt;}
.y7c{bottom:620.693333pt;}
.y3b{bottom:622.040000pt;}
.y17{bottom:636.960000pt;}
.y7b{bottom:641.773333pt;}
.y16{bottom:658.026667pt;}
.y7a{bottom:663.093333pt;}
.ya1{bottom:668.960000pt;}
.y15{bottom:679.360000pt;}
.y3a{bottom:692.426667pt;}
.y79{bottom:693.506667pt;}
.y14{bottom:700.440000pt;}
.y39{bottom:713.506667pt;}
.y78{bottom:714.560000pt;}
.y13{bottom:721.506667pt;}
.yb9{bottom:733.773333pt;}
.y38{bottom:734.840000pt;}
.y77{bottom:735.893333pt;}
.y12{bottom:742.840000pt;}
.y9b{bottom:755.133333pt;}
.y37{bottom:755.933333pt;}
.y76{bottom:758.333333pt;}
.y11{bottom:763.933333pt;}
.y36{bottom:777.000000pt;}
.y75{bottom:779.666667pt;}
.y10{bottom:785.000000pt;}
.y35{bottom:798.333333pt;}
.y74{bottom:800.733333pt;}
.yf{bottom:806.333333pt;}
.yca{bottom:818.600000pt;}
.y34{bottom:819.400000pt;}
.y73{bottom:823.400000pt;}
.ye{bottom:827.400000pt;}
.y33{bottom:840.466667pt;}
.y72{bottom:844.466667pt;}
.yd{bottom:848.466667pt;}
.y32{bottom:861.800000pt;}
.y71{bottom:865.533333pt;}
.yc{bottom:869.800000pt;}
.y96{bottom:883.400000pt;}
.y70{bottom:888.200000pt;}
.yb{bottom:890.866667pt;}
.y6f{bottom:909.293333pt;}
.ya{bottom:911.960000pt;}
.yc8{bottom:925.560000pt;}
.y6e{bottom:931.960000pt;}
.y9{bottom:933.293333pt;}
.y6d{bottom:953.026667pt;}
.y8{bottom:954.360000pt;}
.y7{bottom:975.693333pt;}
.y5{bottom:1004.760000pt;}
.y4{bottom:1033.026667pt;}
.y3{bottom:1059.200000pt;}
.y2{bottom:1085.066667pt;}
.y1{bottom:1100.533333pt;}
.h12{height:21.066667pt;}
.h16{height:21.100000pt;}
.h14{height:21.333333pt;}
.h11{height:21.366667pt;}
.h1f{height:42.400000pt;}
.h9{height:44.875000pt;}
.h2{height:46.119792pt;}
.hd{height:52.750000pt;}
.ha{height:54.396667pt;}
.he{height:54.450000pt;}
.hb{height:54.503333pt;}
.h6{height:55.343750pt;}
.h3{height:55.520833pt;}
.hc{height:62.812500pt;}
.hf{height:63.466667pt;}
.h24{height:63.733333pt;}
.h8{height:63.843750pt;}
.h13{height:64.833333pt;}
.h1c{height:65.781915pt;}
.h7{height:66.625000pt;}
.h5{height:73.281250pt;}
.h4{height:77.729167pt;}
.h23{height:84.533333pt;}
.h17{height:84.566667pt;}
.h1a{height:84.833333pt;}
.h1d{height:105.600000pt;}
.h25{height:105.633333pt;}
.h18{height:105.900000pt;}
.h10{height:108.566667pt;}
.h19{height:126.933333pt;}
.h26{height:126.966667pt;}
.h1b{height:128.300000pt;}
.h15{height:130.400000pt;}
.h21{height:148.026667pt;}
.h20{height:148.293333pt;}
.h22{height:169.400000pt;}
.h1e{height:190.466667pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w8{width:33.333333pt;}
.w7{width:74.966667pt;}
.w5{width:84.300000pt;}
.w4{width:103.233333pt;}
.w6{width:108.833333pt;}
.w3{width:260.333333pt;}
.w9{width:303.840000pt;}
.wa{width:320.106667pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:6.933333pt;}
.x27{left:8.800000pt;}
.x31{left:12.533333pt;}
.x22{left:13.866667pt;}
.x1e{left:16.533333pt;}
.x28{left:20.266667pt;}
.x21{left:24.266667pt;}
.x24{left:26.133333pt;}
.x1d{left:28.000000pt;}
.x2a{left:29.066667pt;}
.x2b{left:33.093333pt;}
.x25{left:36.253333pt;}
.x29{left:40.533333pt;}
.x1f{left:42.426667pt;}
.x3{left:75.499988pt;}
.x2c{left:76.833333pt;}
.xc{left:80.566655pt;}
.x16{left:85.633322pt;}
.x2e{left:91.766667pt;}
.xa{left:96.833322pt;}
.x7{left:102.966655pt;}
.x17{left:105.899988pt;}
.x30{left:110.426667pt;}
.x2d{left:111.500000pt;}
.xe{left:112.566655pt;}
.x11{left:117.366655pt;}
.x6{left:122.166655pt;}
.x12{left:141.639988pt;}
.x15{left:149.359988pt;}
.x19{left:157.133322pt;}
.x14{left:179.533322pt;}
.xb{left:209.666655pt;}
.x1a{left:252.333322pt;}
.x8{left:256.866655pt;}
.x10{left:262.773322pt;}
.x13{left:267.573322pt;}
.x4{left:311.839988pt;}
.x1c{left:340.640000pt;}
.x18{left:343.839988pt;}
.xf{left:358.773322pt;}
.xd{left:374.266655pt;}
.x5{left:378.266655pt;}
.x9{left:396.666655pt;}
.x2{left:406.266655pt;}
.x2f{left:416.666667pt;}
.x20{left:444.666667pt;}
.x1{left:453.733322pt;}
.x23{left:529.773333pt;}
.x26{left:639.400000pt;}
}




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