
    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_b8c327195112a0643c21cae7.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_9ad9da8d3fd8adec773f0e75.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_35d7b2cf9b71ded4d4f715c0.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_9bf3166e70b684a2168c776a.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_0e300b44f06ad3152d9c83c6.woff')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_1542b48771ec9f4c01a1acec.woff')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_d48a911df40dd2e0381adc66.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_52af3968da0b3fa0a5ce8287.woff')format("woff");}.ff8{font-family:ff8;line-height:1.064941;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);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:11.880000px;}
.v2{vertical-align:15.120000px;}
.lsf{letter-spacing:-0.513600px;}
.ls1c{letter-spacing:-0.444600px;}
.ls16{letter-spacing:-0.291600px;}
.ls14{letter-spacing:-0.186600px;}
.ls17{letter-spacing:-0.178800px;}
.lsc{letter-spacing:-0.160800px;}
.ls8{letter-spacing:-0.135000px;}
.lsb{letter-spacing:-0.125400px;}
.ls10{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.ls9{letter-spacing:-0.084000px;}
.ls1a{letter-spacing:-0.018000px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.014760px;}
.ls13{letter-spacing:0.041760px;}
.ls11{letter-spacing:0.045360px;}
.ls12{letter-spacing:0.048960px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls1b{letter-spacing:0.098400px;}
.lse{letter-spacing:0.116400px;}
.ls6{letter-spacing:0.144000px;}
.ls15{letter-spacing:0.173400px;}
.ls4{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.199200px;}
.ls1d{letter-spacing:0.275400px;}
.ls0{letter-spacing:0.360000px;}
.ls19{letter-spacing:47.726640px;}
.ls18{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws9{word-spacing:-14.493600px;}
.wsd{word-spacing:-14.372400px;}
.ws5{word-spacing:-13.425600px;}
.wsc{word-spacing:-13.399800px;}
.ws6{word-spacing:-13.342800px;}
.ws12{word-spacing:-13.324800px;}
.wse{word-spacing:-13.275360px;}
.wsf{word-spacing:-13.268160px;}
.ws2{word-spacing:-13.226400px;}
.ws3{word-spacing:-13.101000px;}
.ws4{word-spacing:-13.065600px;}
.wsb{word-spacing:-13.039800px;}
.ws10{word-spacing:-12.934800px;}
.ws7{word-spacing:-12.712800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws11{word-spacing:-6.555600px;}
.wsa{word-spacing:0.000000px;}
.ws8{word-spacing:4.304880px;}
._13{margin-left:-3.490212px;}
._a{margin-left:-2.172000px;}
._0{margin-left:-1.110000px;}
._1{width:1.100772px;}
._9{width:2.104200px;}
._8{width:3.167628px;}
._4{width:4.569000px;}
._5{width:6.072601px;}
._b{width:7.094400px;}
._c{width:8.656562px;}
._7{width:9.896520px;}
._2{width:11.069760px;}
._e{width:12.076921px;}
._d{width:14.368680px;}
._6{width:16.099800px;}
._11{width:17.915760px;}
._12{width:18.937800px;}
._f{width:20.200320px;}
._10{width:21.339348px;}
._17{width:22.605120px;}
._3{width:23.988000px;}
._15{width:51.522840px;}
._16{width:174.107520px;}
._14{width:249.244920px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:29.880000px;}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs8{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.ya3{bottom:7.830000px;}
.yaa{bottom:7.920000px;}
.ya2{bottom:25.470000px;}
.ya5{bottom:29.970000px;}
.ya7{bottom:30.000000px;}
.ya1{bottom:43.020000px;}
.ya9{bottom:47.520000px;}
.yb7{bottom:47.610000px;}
.yb5{bottom:52.020000px;}
.yb3{bottom:69.570000px;}
.y2{bottom:73.380000px;}
.y26{bottom:74.190000px;}
.yb0{bottom:78.210000px;}
.yb2{bottom:87.210000px;}
.yaf{bottom:100.260000px;}
.y1{bottom:101.640000px;}
.yb1{bottom:109.260000px;}
.ydf{bottom:119.550000px;}
.yae{bottom:122.400000px;}
.y10c{bottom:124.320000px;}
.y58{bottom:126.570000px;}
.y89{bottom:126.840000px;}
.yad{bottom:126.900000px;}
.yde{bottom:137.100000px;}
.y10b{bottom:141.870000px;}
.y24{bottom:143.490000px;}
.y57{bottom:144.120000px;}
.y88{bottom:144.390000px;}
.yac{bottom:144.450000px;}
.yb4{bottom:144.660000px;}
.y116{bottom:159.510000px;}
.y23{bottom:161.040000px;}
.y56{bottom:161.670000px;}
.y87{bottom:161.940000px;}
.ydd{bottom:163.740000px;}
.y10a{bottom:168.510000px;}
.y86{bottom:179.580000px;}
.ydc{bottom:181.290000px;}
.y109{bottom:186.060000px;}
.y55{bottom:188.310000px;}
.y22{bottom:196.680000px;}
.y85{bottom:197.130000px;}
.y115{bottom:203.610000px;}
.ydb{bottom:207.930000px;}
.y108{bottom:212.610000px;}
.y21{bottom:214.230000px;}
.y84{bottom:214.680000px;}
.yab{bottom:216.210000px;}
.y54{bottom:223.860000px;}
.yda{bottom:225.480000px;}
.y107{bottom:230.250000px;}
.y83{bottom:232.320000px;}
.y20{bottom:241.140000px;}
.y53{bottom:241.500000px;}
.y106{bottom:247.800000px;}
.y82{bottom:249.870000px;}
.yd9{bottom:252.030000px;}
.y52{bottom:259.050000px;}
.y81{bottom:267.510000px;}
.yd8{bottom:269.670000px;}
.y105{bottom:274.440000px;}
.y51{bottom:276.600000px;}
.y80{bottom:285.060000px;}
.y1f{bottom:289.380000px;}
.y104{bottom:291.990000px;}
.y50{bottom:294.240000px;}
.yd7{bottom:296.220000px;}
.y7f{bottom:302.610000px;}
.y1e{bottom:307.020000px;}
.y4f{bottom:311.790000px;}
.yd6{bottom:313.860000px;}
.y103{bottom:318.540000px;}
.y7e{bottom:320.250000px;}
.y4e{bottom:329.430000px;}
.y102{bottom:336.180000px;}
.y7d{bottom:337.800000px;}
.yd5{bottom:340.410000px;}
.y1d{bottom:342.570000px;}
.y4d{bottom:346.980000px;}
.y7c{bottom:355.440000px;}
.yd4{bottom:357.960000px;}
.y1c{bottom:360.210000px;}
.y101{bottom:362.730000px;}
.y4c{bottom:364.530000px;}
.y7b{bottom:372.990000px;}
.y1b{bottom:377.760000px;}
.ya8{bottom:380.100000px;}
.y100{bottom:380.370000px;}
.y4b{bottom:382.170000px;}
.yd3{bottom:384.600000px;}
.y1a{bottom:395.310000px;}
.y7a{bottom:399.540000px;}
.y4a{bottom:399.720000px;}
.yd2{bottom:402.150000px;}
.yff{bottom:406.920000px;}
.y49{bottom:417.360000px;}
.yfe{bottom:424.470000px;}
.yd1{bottom:428.700000px;}
.y19{bottom:430.950000px;}
.y48{bottom:434.910000px;}
.y79{bottom:435.180000px;}
.ya6{bottom:447.150000px;}
.y18{bottom:448.500000px;}
.yfd{bottom:451.110000px;}
.y47{bottom:452.460000px;}
.y78{bottom:452.730000px;}
.yd0{bottom:455.340000px;}
.y17{bottom:466.140000px;}
.yfc{bottom:468.660000px;}
.y77{bottom:470.400000px;}
.ycf{bottom:472.920000px;}
.y46{bottom:479.130000px;}
.y16{bottom:483.720000px;}
.y76{bottom:487.950000px;}
.yfb{bottom:495.330000px;}
.ya4{bottom:496.590000px;}
.yce{bottom:499.560000px;}
.y75{bottom:505.500000px;}
.y15{bottom:510.630000px;}
.yfa{bottom:512.880000px;}
.y45{bottom:514.680000px;}
.ycd{bottom:517.110000px;}
.y74{bottom:523.140000px;}
.y44{bottom:532.230000px;}
.yf9{bottom:539.430000px;}
.y73{bottom:540.690000px;}
.ycc{bottom:543.660000px;}
.ya0{bottom:546.000000px;}
.y43{bottom:549.870000px;}
.yf8{bottom:557.070000px;}
.y72{bottom:558.330000px;}
.y14{bottom:559.230000px;}
.ycb{bottom:561.300000px;}
.y42{bottom:567.420000px;}
.y71{bottom:575.880000px;}
.yf7{bottom:583.620000px;}
.y41{bottom:585.060000px;}
.yca{bottom:587.850000px;}
.y70{bottom:593.430000px;}
.y13{bottom:596.220000px;}
.yf6{bottom:601.260000px;}
.y40{bottom:602.610000px;}
.yc9{bottom:605.490000px;}
.y114{bottom:610.260000px;}
.y6f{bottom:611.070000px;}
.y12{bottom:613.860000px;}
.y3f{bottom:620.160000px;}
.yf5{bottom:627.810000px;}
.y6e{bottom:628.620000px;}
.y9f{bottom:629.880000px;}
.y11{bottom:631.410000px;}
.yc8{bottom:632.400000px;}
.yf4{bottom:645.360000px;}
.y6d{bottom:646.260000px;}
.y3e{bottom:646.800000px;}
.y10{bottom:648.960000px;}
.y113{bottom:654.360000px;}
.y6c{bottom:663.810000px;}
.y9e{bottom:665.430000px;}
.yf{bottom:666.600000px;}
.yf3{bottom:672.000000px;}
.yc7{bottom:680.640000px;}
.y6b{bottom:681.360000px;}
.y3d{bottom:682.710000px;}
.y9d{bottom:683.070000px;}
.ye{bottom:684.150000px;}
.yf2{bottom:689.550000px;}
.y112{bottom:698.550000px;}
.y6a{bottom:699.000000px;}
.y9c{bottom:700.620000px;}
.yd{bottom:701.790000px;}
.yc6{bottom:707.550000px;}
.yf1{bottom:716.190000px;}
.y69{bottom:716.550000px;}
.y9b{bottom:718.260000px;}
.yc{bottom:719.340000px;}
.y3c{bottom:730.950000px;}
.y9a{bottom:735.810000px;}
.yb{bottom:736.890000px;}
.yf0{bottom:742.740000px;}
.y68{bottom:743.190000px;}
.yc5{bottom:744.900000px;}
.y3b{bottom:748.590000px;}
.y99{bottom:753.360000px;}
.ya{bottom:754.530000px;}
.yef{bottom:760.290000px;}
.y3a{bottom:766.140000px;}
.y98{bottom:771.000000px;}
.y67{bottom:778.740000px;}
.y9{bottom:781.440000px;}
.y39{bottom:783.690000px;}
.yee{bottom:786.930000px;}
.y97{bottom:788.550000px;}
.yc4{bottom:793.140000px;}
.y66{bottom:796.290000px;}
.y38{bottom:801.330000px;}
.yed{bottom:804.480000px;}
.y96{bottom:806.190000px;}
.yc3{bottom:810.780000px;}
.y65{bottom:813.930000px;}
.y37{bottom:818.880000px;}
.y95{bottom:823.740000px;}
.y8{bottom:828.240000px;}
.yc2{bottom:828.330000px;}
.yec{bottom:831.030000px;}
.y64{bottom:831.480000px;}
.y36{bottom:836.520000px;}
.y94{bottom:841.290000px;}
.yc1{bottom:845.880000px;}
.yeb{bottom:848.670000px;}
.y63{bottom:849.030000px;}
.y35{bottom:854.070000px;}
.y93{bottom:858.930000px;}
.yc0{bottom:863.520000px;}
.y7{bottom:863.790000px;}
.y34{bottom:871.620000px;}
.yea{bottom:875.220000px;}
.y92{bottom:876.480000px;}
.ybf{bottom:881.070000px;}
.y62{bottom:884.670000px;}
.y33{bottom:889.260000px;}
.ye9{bottom:892.860000px;}
.y91{bottom:894.030000px;}
.ybe{bottom:898.710000px;}
.y6{bottom:899.610000px;}
.y111{bottom:901.860000px;}
.y61{bottom:902.220000px;}
.y32{bottom:906.810000px;}
.y90{bottom:911.670000px;}
.ybd{bottom:916.260000px;}
.ye8{bottom:919.410000px;}
.y60{bottom:919.860000px;}
.y31{bottom:924.450000px;}
.y8f{bottom:929.220000px;}
.ybc{bottom:933.810000px;}
.y5{bottom:935.610000px;}
.ye7{bottom:936.960000px;}
.y5f{bottom:937.410000px;}
.y30{bottom:942.000000px;}
.y110{bottom:945.960000px;}
.y8e{bottom:946.860000px;}
.ybb{bottom:951.450000px;}
.y5e{bottom:954.960000px;}
.y2f{bottom:959.550000px;}
.ye6{bottom:963.600000px;}
.y8d{bottom:964.410000px;}
.y4{bottom:971.700000px;}
.y5d{bottom:972.600000px;}
.y2e{bottom:977.190000px;}
.yba{bottom:978.360000px;}
.ye5{bottom:981.150000px;}
.y8c{bottom:981.960000px;}
.y10f{bottom:990.150000px;}
.y2d{bottom:994.740000px;}
.y5c{bottom:999.150000px;}
.y8b{bottom:999.600000px;}
.ye4{bottom:1007.790000px;}
.y3{bottom:1009.980000px;}
.y2c{bottom:1012.320000px;}
.y8a{bottom:1017.180000px;}
.ye3{bottom:1025.370000px;}
.yb9{bottom:1025.910000px;}
.y10e{bottom:1034.370000px;}
.y5b{bottom:1034.820000px;}
.yb8{bottom:1038.060000px;}
.y2b{bottom:1039.230000px;}
.ye2{bottom:1051.920000px;}
.y5a{bottom:1052.370000px;}
.ye1{bottom:1069.560000px;}
.y59{bottom:1069.920000px;}
.y10d{bottom:1078.560000px;}
.yb6{bottom:1087.470000px;}
.y2a{bottom:1087.560000px;}
.ye0{bottom:1096.110000px;}
.y29{bottom:1105.110000px;}
.y28{bottom:1122.750000px;}
.y27{bottom:1140.300000px;}
.y25{bottom:1194.300000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.h11{height:40.539023px;}
.hb{height:48.690000px;}
.hc{height:48.720000px;}
.h6{height:50.902383px;}
.h5{height:55.779258px;}
.h7{height:60.960938px;}
.ha{height:61.740000px;}
.h12{height:61.793886px;}
.h9{height:62.585859px;}
.hd{height:66.240000px;}
.h10{height:66.330000px;}
.h8{height:68.582109px;}
.hf{height:70.740000px;}
.h4{height:71.019492px;}
.he{height:163.170000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3{width:98.850000px;}
.w4{width:174.780000px;}
.w5{width:478.650000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:7.740000px;}
.x1{left:68.040000px;}
.x4{left:69.660000px;}
.x9{left:111.239987px;}
.x6{left:169.320000px;}
.x2{left:192.719987px;}
.x8{left:342.299987px;}
.x7{left:344.910000px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:10.560000pt;}
.v2{vertical-align:13.440000pt;}
.lsf{letter-spacing:-0.456533pt;}
.ls1c{letter-spacing:-0.395200pt;}
.ls16{letter-spacing:-0.259200pt;}
.ls14{letter-spacing:-0.165867pt;}
.ls17{letter-spacing:-0.158933pt;}
.lsc{letter-spacing:-0.142933pt;}
.ls8{letter-spacing:-0.120000pt;}
.lsb{letter-spacing:-0.111467pt;}
.ls10{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls9{letter-spacing:-0.074667pt;}
.ls1a{letter-spacing:-0.016000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.013120pt;}
.ls13{letter-spacing:0.037120pt;}
.ls11{letter-spacing:0.040320pt;}
.ls12{letter-spacing:0.043520pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls1b{letter-spacing:0.087467pt;}
.lse{letter-spacing:0.103467pt;}
.ls6{letter-spacing:0.128000pt;}
.ls15{letter-spacing:0.154133pt;}
.ls4{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.177067pt;}
.ls1d{letter-spacing:0.244800pt;}
.ls0{letter-spacing:0.320000pt;}
.ls19{letter-spacing:42.423680pt;}
.ls18{letter-spacing:71.863680pt;}
.ws9{word-spacing:-12.883200pt;}
.wsd{word-spacing:-12.775467pt;}
.ws5{word-spacing:-11.933867pt;}
.wsc{word-spacing:-11.910933pt;}
.ws6{word-spacing:-11.860267pt;}
.ws12{word-spacing:-11.844267pt;}
.wse{word-spacing:-11.800320pt;}
.wsf{word-spacing:-11.793920pt;}
.ws2{word-spacing:-11.756800pt;}
.ws3{word-spacing:-11.645333pt;}
.ws4{word-spacing:-11.613867pt;}
.wsb{word-spacing:-11.590933pt;}
.ws10{word-spacing:-11.497600pt;}
.ws7{word-spacing:-11.300267pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws11{word-spacing:-5.827200pt;}
.wsa{word-spacing:0.000000pt;}
.ws8{word-spacing:3.826560pt;}
._13{margin-left:-3.102410pt;}
._a{margin-left:-1.930667pt;}
._0{margin-left:-0.986667pt;}
._1{width:0.978464pt;}
._9{width:1.870400pt;}
._8{width:2.815669pt;}
._4{width:4.061333pt;}
._5{width:5.397868pt;}
._b{width:6.306134pt;}
._c{width:7.694722pt;}
._7{width:8.796906pt;}
._2{width:9.839787pt;}
._e{width:10.735041pt;}
._d{width:12.772160pt;}
._6{width:14.310934pt;}
._11{width:15.925120pt;}
._12{width:16.833600pt;}
._f{width:17.955840pt;}
._10{width:18.968310pt;}
._17{width:20.093440pt;}
._3{width:21.322667pt;}
._15{width:45.798080pt;}
._16{width:154.762240pt;}
._14{width:221.551040pt;}
.fs9{font-size:26.560000pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs8{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.ya3{bottom:6.960000pt;}
.yaa{bottom:7.040000pt;}
.ya2{bottom:22.640000pt;}
.ya5{bottom:26.640000pt;}
.ya7{bottom:26.666667pt;}
.ya1{bottom:38.240000pt;}
.ya9{bottom:42.240000pt;}
.yb7{bottom:42.320000pt;}
.yb5{bottom:46.240000pt;}
.yb3{bottom:61.840000pt;}
.y2{bottom:65.226667pt;}
.y26{bottom:65.946667pt;}
.yb0{bottom:69.520000pt;}
.yb2{bottom:77.520000pt;}
.yaf{bottom:89.120000pt;}
.y1{bottom:90.346667pt;}
.yb1{bottom:97.120000pt;}
.ydf{bottom:106.266667pt;}
.yae{bottom:108.800000pt;}
.y10c{bottom:110.506667pt;}
.y58{bottom:112.506667pt;}
.y89{bottom:112.746667pt;}
.yad{bottom:112.800000pt;}
.yde{bottom:121.866667pt;}
.y10b{bottom:126.106667pt;}
.y24{bottom:127.546667pt;}
.y57{bottom:128.106667pt;}
.y88{bottom:128.346667pt;}
.yac{bottom:128.400000pt;}
.yb4{bottom:128.586667pt;}
.y116{bottom:141.786667pt;}
.y23{bottom:143.146667pt;}
.y56{bottom:143.706667pt;}
.y87{bottom:143.946667pt;}
.ydd{bottom:145.546667pt;}
.y10a{bottom:149.786667pt;}
.y86{bottom:159.626667pt;}
.ydc{bottom:161.146667pt;}
.y109{bottom:165.386667pt;}
.y55{bottom:167.386667pt;}
.y22{bottom:174.826667pt;}
.y85{bottom:175.226667pt;}
.y115{bottom:180.986667pt;}
.ydb{bottom:184.826667pt;}
.y108{bottom:188.986667pt;}
.y21{bottom:190.426667pt;}
.y84{bottom:190.826667pt;}
.yab{bottom:192.186667pt;}
.y54{bottom:198.986667pt;}
.yda{bottom:200.426667pt;}
.y107{bottom:204.666667pt;}
.y83{bottom:206.506667pt;}
.y20{bottom:214.346667pt;}
.y53{bottom:214.666667pt;}
.y106{bottom:220.266667pt;}
.y82{bottom:222.106667pt;}
.yd9{bottom:224.026667pt;}
.y52{bottom:230.266667pt;}
.y81{bottom:237.786667pt;}
.yd8{bottom:239.706667pt;}
.y105{bottom:243.946667pt;}
.y51{bottom:245.866667pt;}
.y80{bottom:253.386667pt;}
.y1f{bottom:257.226667pt;}
.y104{bottom:259.546667pt;}
.y50{bottom:261.546667pt;}
.yd7{bottom:263.306667pt;}
.y7f{bottom:268.986667pt;}
.y1e{bottom:272.906667pt;}
.y4f{bottom:277.146667pt;}
.yd6{bottom:278.986667pt;}
.y103{bottom:283.146667pt;}
.y7e{bottom:284.666667pt;}
.y4e{bottom:292.826667pt;}
.y102{bottom:298.826667pt;}
.y7d{bottom:300.266667pt;}
.yd5{bottom:302.586667pt;}
.y1d{bottom:304.506667pt;}
.y4d{bottom:308.426667pt;}
.y7c{bottom:315.946667pt;}
.yd4{bottom:318.186667pt;}
.y1c{bottom:320.186667pt;}
.y101{bottom:322.426667pt;}
.y4c{bottom:324.026667pt;}
.y7b{bottom:331.546667pt;}
.y1b{bottom:335.786667pt;}
.ya8{bottom:337.866667pt;}
.y100{bottom:338.106667pt;}
.y4b{bottom:339.706667pt;}
.yd3{bottom:341.866667pt;}
.y1a{bottom:351.386667pt;}
.y7a{bottom:355.146667pt;}
.y4a{bottom:355.306667pt;}
.yd2{bottom:357.466667pt;}
.yff{bottom:361.706667pt;}
.y49{bottom:370.986667pt;}
.yfe{bottom:377.306667pt;}
.yd1{bottom:381.066667pt;}
.y19{bottom:383.066667pt;}
.y48{bottom:386.586667pt;}
.y79{bottom:386.826667pt;}
.ya6{bottom:397.466667pt;}
.y18{bottom:398.666667pt;}
.yfd{bottom:400.986667pt;}
.y47{bottom:402.186667pt;}
.y78{bottom:402.426667pt;}
.yd0{bottom:404.746667pt;}
.y17{bottom:414.346667pt;}
.yfc{bottom:416.586667pt;}
.y77{bottom:418.133333pt;}
.ycf{bottom:420.373333pt;}
.y46{bottom:425.893333pt;}
.y16{bottom:429.973333pt;}
.y76{bottom:433.733333pt;}
.yfb{bottom:440.293333pt;}
.ya4{bottom:441.413333pt;}
.yce{bottom:444.053333pt;}
.y75{bottom:449.333333pt;}
.y15{bottom:453.893333pt;}
.yfa{bottom:455.893333pt;}
.y45{bottom:457.493333pt;}
.ycd{bottom:459.653333pt;}
.y74{bottom:465.013333pt;}
.y44{bottom:473.093333pt;}
.yf9{bottom:479.493333pt;}
.y73{bottom:480.613333pt;}
.ycc{bottom:483.253333pt;}
.ya0{bottom:485.333333pt;}
.y43{bottom:488.773333pt;}
.yf8{bottom:495.173333pt;}
.y72{bottom:496.293333pt;}
.y14{bottom:497.093333pt;}
.ycb{bottom:498.933333pt;}
.y42{bottom:504.373333pt;}
.y71{bottom:511.893333pt;}
.yf7{bottom:518.773333pt;}
.y41{bottom:520.053333pt;}
.yca{bottom:522.533333pt;}
.y70{bottom:527.493333pt;}
.y13{bottom:529.973333pt;}
.yf6{bottom:534.453333pt;}
.y40{bottom:535.653333pt;}
.yc9{bottom:538.213333pt;}
.y114{bottom:542.453333pt;}
.y6f{bottom:543.173333pt;}
.y12{bottom:545.653333pt;}
.y3f{bottom:551.253333pt;}
.yf5{bottom:558.053333pt;}
.y6e{bottom:558.773333pt;}
.y9f{bottom:559.893333pt;}
.y11{bottom:561.253333pt;}
.yc8{bottom:562.133333pt;}
.yf4{bottom:573.653333pt;}
.y6d{bottom:574.453333pt;}
.y3e{bottom:574.933333pt;}
.y10{bottom:576.853333pt;}
.y113{bottom:581.653333pt;}
.y6c{bottom:590.053333pt;}
.y9e{bottom:591.493333pt;}
.yf{bottom:592.533333pt;}
.yf3{bottom:597.333333pt;}
.yc7{bottom:605.013333pt;}
.y6b{bottom:605.653333pt;}
.y3d{bottom:606.853333pt;}
.y9d{bottom:607.173333pt;}
.ye{bottom:608.133333pt;}
.yf2{bottom:612.933333pt;}
.y112{bottom:620.933333pt;}
.y6a{bottom:621.333333pt;}
.y9c{bottom:622.773333pt;}
.yd{bottom:623.813333pt;}
.yc6{bottom:628.933333pt;}
.yf1{bottom:636.613333pt;}
.y69{bottom:636.933333pt;}
.y9b{bottom:638.453333pt;}
.yc{bottom:639.413333pt;}
.y3c{bottom:649.733333pt;}
.y9a{bottom:654.053333pt;}
.yb{bottom:655.013333pt;}
.yf0{bottom:660.213333pt;}
.y68{bottom:660.613333pt;}
.yc5{bottom:662.133333pt;}
.y3b{bottom:665.413333pt;}
.y99{bottom:669.653333pt;}
.ya{bottom:670.693333pt;}
.yef{bottom:675.813333pt;}
.y3a{bottom:681.013333pt;}
.y98{bottom:685.333333pt;}
.y67{bottom:692.213333pt;}
.y9{bottom:694.613333pt;}
.y39{bottom:696.613333pt;}
.yee{bottom:699.493333pt;}
.y97{bottom:700.933333pt;}
.yc4{bottom:705.013333pt;}
.y66{bottom:707.813333pt;}
.y38{bottom:712.293333pt;}
.yed{bottom:715.093333pt;}
.y96{bottom:716.613333pt;}
.yc3{bottom:720.693333pt;}
.y65{bottom:723.493333pt;}
.y37{bottom:727.893333pt;}
.y95{bottom:732.213333pt;}
.y8{bottom:736.213333pt;}
.yc2{bottom:736.293333pt;}
.yec{bottom:738.693333pt;}
.y64{bottom:739.093333pt;}
.y36{bottom:743.573333pt;}
.y94{bottom:747.813333pt;}
.yc1{bottom:751.893333pt;}
.yeb{bottom:754.373333pt;}
.y63{bottom:754.693333pt;}
.y35{bottom:759.173333pt;}
.y93{bottom:763.493333pt;}
.yc0{bottom:767.573333pt;}
.y7{bottom:767.813333pt;}
.y34{bottom:774.773333pt;}
.yea{bottom:777.973333pt;}
.y92{bottom:779.093333pt;}
.ybf{bottom:783.173333pt;}
.y62{bottom:786.373333pt;}
.y33{bottom:790.453333pt;}
.ye9{bottom:793.653333pt;}
.y91{bottom:794.693333pt;}
.ybe{bottom:798.853333pt;}
.y6{bottom:799.653333pt;}
.y111{bottom:801.653333pt;}
.y61{bottom:801.973333pt;}
.y32{bottom:806.053333pt;}
.y90{bottom:810.373333pt;}
.ybd{bottom:814.453333pt;}
.ye8{bottom:817.253333pt;}
.y60{bottom:817.653333pt;}
.y31{bottom:821.733333pt;}
.y8f{bottom:825.973333pt;}
.ybc{bottom:830.053333pt;}
.y5{bottom:831.653333pt;}
.ye7{bottom:832.853333pt;}
.y5f{bottom:833.253333pt;}
.y30{bottom:837.333333pt;}
.y110{bottom:840.853333pt;}
.y8e{bottom:841.653333pt;}
.ybb{bottom:845.733333pt;}
.y5e{bottom:848.853333pt;}
.y2f{bottom:852.933333pt;}
.ye6{bottom:856.533333pt;}
.y8d{bottom:857.253333pt;}
.y4{bottom:863.733333pt;}
.y5d{bottom:864.533333pt;}
.y2e{bottom:868.613333pt;}
.yba{bottom:869.653333pt;}
.ye5{bottom:872.133333pt;}
.y8c{bottom:872.853333pt;}
.y10f{bottom:880.133333pt;}
.y2d{bottom:884.213333pt;}
.y5c{bottom:888.133333pt;}
.y8b{bottom:888.533333pt;}
.ye4{bottom:895.813333pt;}
.y3{bottom:897.760000pt;}
.y2c{bottom:899.840000pt;}
.y8a{bottom:904.160000pt;}
.ye3{bottom:911.440000pt;}
.yb9{bottom:911.920000pt;}
.y10e{bottom:919.440000pt;}
.y5b{bottom:919.840000pt;}
.yb8{bottom:922.720000pt;}
.y2b{bottom:923.760000pt;}
.ye2{bottom:935.040000pt;}
.y5a{bottom:935.440000pt;}
.ye1{bottom:950.720000pt;}
.y59{bottom:951.040000pt;}
.y10d{bottom:958.720000pt;}
.yb6{bottom:966.640000pt;}
.y2a{bottom:966.720000pt;}
.ye0{bottom:974.320000pt;}
.y29{bottom:982.320000pt;}
.y28{bottom:998.000000pt;}
.y27{bottom:1013.600000pt;}
.y25{bottom:1061.600000pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.h11{height:36.034687pt;}
.hb{height:43.280000pt;}
.hc{height:43.306667pt;}
.h6{height:45.246562pt;}
.h5{height:49.581562pt;}
.h7{height:54.187500pt;}
.ha{height:54.880000pt;}
.h12{height:54.927899pt;}
.h9{height:55.631875pt;}
.hd{height:58.880000pt;}
.h10{height:58.960000pt;}
.h8{height:60.961875pt;}
.hf{height:62.880000pt;}
.h4{height:63.128437pt;}
.he{height:145.040000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3{width:87.866667pt;}
.w4{width:155.360000pt;}
.w5{width:425.466667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:6.880000pt;}
.x1{left:60.480000pt;}
.x4{left:61.920000pt;}
.x9{left:98.879988pt;}
.x6{left:150.506667pt;}
.x2{left:171.306655pt;}
.x8{left:304.266655pt;}
.x7{left:306.586667pt;}
.x3{left:711.413322pt;}
}




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