
    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_9c9c5ff68a3a13bf8665a915.woff2')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_382f7d09468a922bcb3fe5ca.woff2')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_47c60013994f9fe3aa68d706.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_a430901b1ab504727d09b0de.woff2')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_736fedf20c4993f6a0134030.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_537a3a60c549a82db96b803b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_3f42065d2e0002c2fb571458.woff2')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_de0750b74f0e19c512b305b9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.708008;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_bb3a89eff364ac15440f610b.woff2')format("woff");}.ff9{font-family:ff9;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);}
.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;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls1a{letter-spacing:-0.274800px;}
.ls21{letter-spacing:-0.225000px;}
.lsd{letter-spacing:-0.186600px;}
.ls8{letter-spacing:-0.135000px;}
.ls22{letter-spacing:-0.125400px;}
.lsf{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.090000px;}
.lsc{letter-spacing:-0.084600px;}
.ls1d{letter-spacing:-0.063600px;}
.ls10{letter-spacing:-0.049800px;}
.ls18{letter-spacing:-0.049680px;}
.ls9{letter-spacing:-0.029400px;}
.lsb{letter-spacing:-0.008400px;}
.ls6{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.020160px;}
.ls12{letter-spacing:0.045360px;}
.ls13{letter-spacing:0.048960px;}
.ls3{letter-spacing:0.065520px;}
.ls11{letter-spacing:0.074160px;}
.ls16{letter-spacing:0.084960px;}
.ls19{letter-spacing:0.085200px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.lse{letter-spacing:0.116400px;}
.ls20{letter-spacing:0.160560px;}
.ls14{letter-spacing:0.173400px;}
.lsa{letter-spacing:0.174600px;}
.ls4{letter-spacing:0.180000px;}
.ls17{letter-spacing:0.204960px;}
.ls5{letter-spacing:0.266400px;}
.ls1e{letter-spacing:0.275400px;}
.ls0{letter-spacing:0.360000px;}
.ls1b{letter-spacing:10.530000px;}
.ls1f{letter-spacing:47.726640px;}
.ls1c{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;}
}
.ws2{word-spacing:-18.424200px;}
.ws7{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.372400px;}
.ws9{word-spacing:-13.399800px;}
.ws5{word-spacing:-13.342800px;}
.wsb{word-spacing:-13.275360px;}
.wsc{word-spacing:-13.246560px;}
.ws3{word-spacing:-13.226400px;}
.wsd{word-spacing:-13.176720px;}
.wse{word-spacing:-13.162800px;}
.wsf{word-spacing:-13.101000px;}
.ws4{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws8{word-spacing:0.000000px;}
.ws6{word-spacing:4.304880px;}
._15{margin-left:-11.105640px;}
._13{margin-left:-4.407594px;}
._d{margin-left:-3.279000px;}
._b{margin-left:-2.164200px;}
._0{margin-left:-1.110000px;}
._1{width:1.282080px;}
._5{width:3.106920px;}
._6{width:4.267676px;}
._7{width:5.331731px;}
._12{width:6.356494px;}
._8{width:7.395000px;}
._9{width:8.536800px;}
._a{width:9.859800px;}
._c{width:11.001599px;}
._11{width:12.092160px;}
._2{width:15.197760px;}
._3{width:16.453920px;}
._4{width:17.937603px;}
._10{width:20.118357px;}
._e{width:24.408720px;}
._f{width:25.491720px;}
._17{width:37.812240px;}
._18{width:48.817440px;}
._14{width:150.181440px;}
._16{width:166.686000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs7{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y40{bottom:7.830000px;}
.y42{bottom:7.920000px;}
.y46{bottom:13.140000px;}
.y2{bottom:55.380000px;}
.y3e{bottom:62.550000px;}
.y2b{bottom:74.190000px;}
.y1{bottom:83.640000px;}
.y2a{bottom:91.830000px;}
.yb9{bottom:117.390000px;}
.y5c{bottom:128.190000px;}
.y28{bottom:133.410000px;}
.yb8{bottom:134.940000px;}
.yf2{bottom:135.390000px;}
.y8b{bottom:139.530000px;}
.yd2{bottom:143.040000px;}
.y5b{bottom:145.740000px;}
.y27{bottom:150.960000px;}
.y8a{bottom:157.170000px;}
.yd1{bottom:160.590000px;}
.yf1{bottom:161.940000px;}
.y5a{bottom:163.380000px;}
.y26{bottom:168.600000px;}
.yb7{bottom:170.580000px;}
.y89{bottom:174.720000px;}
.yd0{bottom:178.140000px;}
.y59{bottom:180.930000px;}
.yb6{bottom:188.130000px;}
.yf0{bottom:188.490000px;}
.y88{bottom:192.270000px;}
.ycf{bottom:195.780000px;}
.y58{bottom:198.570000px;}
.y25{bottom:204.150000px;}
.yb5{bottom:205.680000px;}
.y87{bottom:209.910000px;}
.yce{bottom:213.330000px;}
.yef{bottom:215.130000px;}
.y57{bottom:216.120000px;}
.y24{bottom:221.790000px;}
.yb4{bottom:223.320000px;}
.y86{bottom:227.460000px;}
.yee{bottom:232.680000px;}
.y56{bottom:233.670000px;}
.y23{bottom:239.340000px;}
.y85{bottom:245.100000px;}
.ycd{bottom:248.970000px;}
.y55{bottom:251.310000px;}
.y22{bottom:256.890000px;}
.yb3{bottom:258.870000px;}
.yed{bottom:259.320000px;}
.ycc{bottom:266.520000px;}
.y54{bottom:268.860000px;}
.y21{bottom:274.530000px;}
.yb2{bottom:276.510000px;}
.yec{bottom:276.870000px;}
.y84{bottom:280.650000px;}
.ycb{bottom:284.070000px;}
.y53{bottom:286.500000px;}
.yb1{bottom:294.060000px;}
.y83{bottom:298.200000px;}
.yca{bottom:301.710000px;}
.yeb{bottom:303.420000px;}
.y20{bottom:310.080000px;}
.yb0{bottom:311.610000px;}
.y52{bottom:313.050000px;}
.y82{bottom:315.840000px;}
.yc9{bottom:319.260000px;}
.y1f{bottom:327.630000px;}
.yea{bottom:330.330000px;}
.y81{bottom:333.390000px;}
.yc8{bottom:336.900000px;}
.y1e{bottom:345.270000px;}
.yaf{bottom:347.250000px;}
.y51{bottom:348.960000px;}
.y80{bottom:350.940000px;}
.y1d{bottom:362.820000px;}
.yae{bottom:364.800000px;}
.y7f{bottom:368.580000px;}
.yc7{bottom:372.450000px;}
.ye9{bottom:378.660000px;}
.y1c{bottom:380.460000px;}
.yad{bottom:382.440000px;}
.y7e{bottom:386.130000px;}
.y50{bottom:397.200000px;}
.y1b{bottom:398.010000px;}
.yc6{bottom:398.190000px;}
.yac{bottom:399.990000px;}
.y7d{bottom:403.770000px;}
.ye8{bottom:405.570000px;}
.yc5{bottom:412.140000px;}
.y4f{bottom:414.840000px;}
.y1a{bottom:415.560000px;}
.yab{bottom:417.540000px;}
.yc4{bottom:423.570000px;}
.y110{bottom:424.110000px;}
.y4e{bottom:432.390000px;}
.y19{bottom:433.200000px;}
.yaa{bottom:435.180000px;}
.y7c{bottom:439.320000px;}
.ye7{bottom:442.560000px;}
.y4d{bottom:450.030000px;}
.y10f{bottom:450.660000px;}
.ya9{bottom:452.730000px;}
.y7b{bottom:456.870000px;}
.y18{bottom:460.110000px;}
.y4c{bottom:467.580000px;}
.y10e{bottom:468.300000px;}
.ya8{bottom:470.400000px;}
.y7a{bottom:474.540000px;}
.ye6{bottom:477.780000px;}
.y4b{bottom:485.160000px;}
.ya7{bottom:487.950000px;}
.y79{bottom:492.090000px;}
.y10d{bottom:494.880000px;}
.ye5{bottom:495.330000px;}
.ya6{bottom:505.500000px;}
.y17{bottom:508.740000px;}
.y78{bottom:509.730000px;}
.y10c{bottom:512.430000px;}
.y4a{bottom:520.080000px;}
.ye4{bottom:522.240000px;}
.ya5{bottom:523.140000px;}
.y77{bottom:527.280000px;}
.y10b{bottom:530.070000px;}
.y49{bottom:532.230000px;}
.ya4{bottom:540.690000px;}
.y76{bottom:544.830000px;}
.y16{bottom:545.730000px;}
.y10a{bottom:556.620000px;}
.ya3{bottom:558.330000px;}
.y48{bottom:559.590000px;}
.y75{bottom:562.470000px;}
.y15{bottom:563.370000px;}
.y109{bottom:574.260000px;}
.ya2{bottom:575.880000px;}
.y14{bottom:580.920000px;}
.y47{bottom:586.860000px;}
.y74{bottom:598.020000px;}
.y13{bottom:598.470000px;}
.y108{bottom:600.810000px;}
.ye3{bottom:607.830000px;}
.ya1{bottom:611.430000px;}
.y45{bottom:614.220000px;}
.y73{bottom:615.660000px;}
.y12{bottom:616.110000px;}
.y107{bottom:618.360000px;}
.ye2{bottom:625.470000px;}
.ya0{bottom:629.070000px;}
.y72{bottom:633.210000px;}
.y11{bottom:633.660000px;}
.ye1{bottom:643.020000px;}
.y106{bottom:645.000000px;}
.y9f{bottom:646.620000px;}
.y44{bottom:646.890000px;}
.y71{bottom:650.760000px;}
.y10{bottom:651.210000px;}
.ye0{bottom:660.660000px;}
.y105{bottom:662.550000px;}
.yc3{bottom:663.180000px;}
.y70{bottom:668.400000px;}
.yf{bottom:668.850000px;}
.y43{bottom:674.160000px;}
.ydf{bottom:678.210000px;}
.yc2{bottom:680.730000px;}
.y9e{bottom:682.260000px;}
.y6f{bottom:685.950000px;}
.ye{bottom:686.400000px;}
.y104{bottom:689.190000px;}
.yde{bottom:695.760000px;}
.yc1{bottom:698.370000px;}
.y9d{bottom:699.810000px;}
.y3d{bottom:701.520000px;}
.y6e{bottom:703.590000px;}
.yd{bottom:704.040000px;}
.y103{bottom:706.740000px;}
.ydd{bottom:713.400000px;}
.yc0{bottom:715.920000px;}
.y9c{bottom:717.360000px;}
.y6d{bottom:721.140000px;}
.y41{bottom:728.880000px;}
.yc{bottom:730.950000px;}
.y102{bottom:733.290000px;}
.ybf{bottom:733.560000px;}
.y9b{bottom:735.000000px;}
.ydc{bottom:748.590000px;}
.y101{bottom:750.930000px;}
.ybe{bottom:751.110000px;}
.y9a{bottom:752.550000px;}
.y3f{bottom:756.240000px;}
.y6c{bottom:756.690000px;}
.ydb{bottom:766.140000px;}
.ybd{bottom:768.660000px;}
.y99{bottom:770.190000px;}
.y6b{bottom:774.330000px;}
.y100{bottom:777.480000px;}
.yb{bottom:777.660000px;}
.yda{bottom:783.690000px;}
.y98{bottom:787.740000px;}
.y6a{bottom:791.880000px;}
.yff{bottom:795.030000px;}
.yd9{bottom:801.330000px;}
.ybc{bottom:804.300000px;}
.y3c{bottom:804.930000px;}
.y69{bottom:809.520000px;}
.yfe{bottom:812.670000px;}
.ya{bottom:813.480000px;}
.yd8{bottom:818.880000px;}
.y97{bottom:823.290000px;}
.y68{bottom:827.070000px;}
.ybb{bottom:830.130000px;}
.yd7{bottom:836.520000px;}
.yfd{bottom:839.220000px;}
.y3b{bottom:840.480000px;}
.y96{bottom:840.930000px;}
.yba{bottom:841.560000px;}
.y9{bottom:849.480000px;}
.y67{bottom:853.980000px;}
.yd6{bottom:854.070000px;}
.yfc{bottom:856.860000px;}
.y3a{bottom:858.030000px;}
.y95{bottom:858.480000px;}
.y39{bottom:875.670000px;}
.y94{bottom:876.030000px;}
.yd5{bottom:880.980000px;}
.yfb{bottom:883.410000px;}
.y8{bottom:885.300000px;}
.y93{bottom:893.670000px;}
.y66{bottom:902.220000px;}
.y7{bottom:906.630000px;}
.yfa{bottom:909.960000px;}
.y38{bottom:911.220000px;}
.y65{bottom:919.860000px;}
.y6{bottom:924.270000px;}
.y37{bottom:928.860000px;}
.yd4{bottom:929.220000px;}
.yf9{bottom:936.600000px;}
.y64{bottom:937.410000px;}
.y5{bottom:941.820000px;}
.y36{bottom:946.410000px;}
.yd3{bottom:946.860000px;}
.y63{bottom:954.960000px;}
.yf8{bottom:963.150000px;}
.y35{bottom:963.960000px;}
.y92{bottom:964.410000px;}
.y62{bottom:972.600000px;}
.y4{bottom:973.950000px;}
.y34{bottom:981.600000px;}
.y91{bottom:981.960000px;}
.yf7{bottom:989.790000px;}
.y61{bottom:990.150000px;}
.y33{bottom:999.150000px;}
.y90{bottom:999.600000px;}
.y60{bottom:1007.790000px;}
.y3{bottom:1012.230000px;}
.yf6{bottom:1016.370000px;}
.y32{bottom:1016.820000px;}
.y8f{bottom:1017.180000px;}
.y5f{bottom:1025.370000px;}
.y31{bottom:1034.370000px;}
.y8e{bottom:1034.820000px;}
.yf5{bottom:1042.920000px;}
.y30{bottom:1051.920000px;}
.y8d{bottom:1052.370000px;}
.yf4{bottom:1060.560000px;}
.y2f{bottom:1069.560000px;}
.y8c{bottom:1069.920000px;}
.y2e{bottom:1087.110000px;}
.y5e{bottom:1087.560000px;}
.y5d{bottom:1105.110000px;}
.yf3{bottom:1113.750000px;}
.y2d{bottom:1122.750000px;}
.y2c{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.hc{height:26.550000px;}
.hd{height:26.640000px;}
.h2{height:30.022383px;}
.he{height:31.860000px;}
.h6{height:35.782383px;}
.h3{height:39.155273px;}
.hf{height:41.661211px;}
.h13{height:41.743477px;}
.h14{height:49.213095px;}
.h7{height:50.902383px;}
.h8{height:52.311445px;}
.h9{height:55.779258px;}
.h5{height:57.323320px;}
.h12{height:61.793886px;}
.h11{height:62.585859px;}
.h10{height:68.582109px;}
.ha{height:71.019492px;}
.h4{height:72.985430px;}
.hb{height:81.270000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3{width:48.690000px;}
.w7{width:68.400000px;}
.w6{width:125.760000px;}
.w5{width:150.300000px;}
.w4{width:345.990000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:7.740000px;}
.x1{left:68.040000px;}
.x10{left:111.239987px;}
.x2{left:202.799987px;}
.x4{left:248.880000px;}
.x9{left:265.979987px;}
.xf{left:268.769987px;}
.xd{left:284.609987px;}
.x6{left:298.380000px;}
.xc{left:302.879987px;}
.xb{left:305.039987px;}
.xe{left:446.609987px;}
.x7{left:449.400000px;}
.x8{left:575.970000px;}
.xa{left:644.639987px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls1a{letter-spacing:-0.244267pt;}
.ls21{letter-spacing:-0.200000pt;}
.lsd{letter-spacing:-0.165867pt;}
.ls8{letter-spacing:-0.120000pt;}
.ls22{letter-spacing:-0.111467pt;}
.lsf{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.080000pt;}
.lsc{letter-spacing:-0.075200pt;}
.ls1d{letter-spacing:-0.056533pt;}
.ls10{letter-spacing:-0.044267pt;}
.ls18{letter-spacing:-0.044160pt;}
.ls9{letter-spacing:-0.026133pt;}
.lsb{letter-spacing:-0.007467pt;}
.ls6{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.017920pt;}
.ls12{letter-spacing:0.040320pt;}
.ls13{letter-spacing:0.043520pt;}
.ls3{letter-spacing:0.058240pt;}
.ls11{letter-spacing:0.065920pt;}
.ls16{letter-spacing:0.075520pt;}
.ls19{letter-spacing:0.075733pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.lse{letter-spacing:0.103467pt;}
.ls20{letter-spacing:0.142720pt;}
.ls14{letter-spacing:0.154133pt;}
.lsa{letter-spacing:0.155200pt;}
.ls4{letter-spacing:0.160000pt;}
.ls17{letter-spacing:0.182187pt;}
.ls5{letter-spacing:0.236800pt;}
.ls1e{letter-spacing:0.244800pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1b{letter-spacing:9.360000pt;}
.ls1f{letter-spacing:42.423680pt;}
.ls1c{letter-spacing:71.863680pt;}
.ws2{word-spacing:-16.377067pt;}
.ws7{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.ws9{word-spacing:-11.910933pt;}
.ws5{word-spacing:-11.860267pt;}
.wsb{word-spacing:-11.800320pt;}
.wsc{word-spacing:-11.774720pt;}
.ws3{word-spacing:-11.756800pt;}
.wsd{word-spacing:-11.712640pt;}
.wse{word-spacing:-11.700267pt;}
.wsf{word-spacing:-11.645333pt;}
.ws4{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws8{word-spacing:0.000000pt;}
.ws6{word-spacing:3.826560pt;}
._15{margin-left:-9.871680pt;}
._13{margin-left:-3.917861pt;}
._d{margin-left:-2.914667pt;}
._b{margin-left:-1.923733pt;}
._0{margin-left:-0.986667pt;}
._1{width:1.139627pt;}
._5{width:2.761707pt;}
._6{width:3.793490pt;}
._7{width:4.739316pt;}
._12{width:5.650217pt;}
._8{width:6.573334pt;}
._9{width:7.588266pt;}
._a{width:8.764267pt;}
._c{width:9.779199pt;}
._11{width:10.748586pt;}
._2{width:13.509120pt;}
._3{width:14.625706pt;}
._4{width:15.944536pt;}
._10{width:17.882984pt;}
._e{width:21.696640pt;}
._f{width:22.659307pt;}
._17{width:33.610880pt;}
._18{width:43.393280pt;}
._14{width:133.494613pt;}
._16{width:148.165333pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs7{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y40{bottom:6.960000pt;}
.y42{bottom:7.040000pt;}
.y46{bottom:11.680000pt;}
.y2{bottom:49.226667pt;}
.y3e{bottom:55.600000pt;}
.y2b{bottom:65.946667pt;}
.y1{bottom:74.346667pt;}
.y2a{bottom:81.626667pt;}
.yb9{bottom:104.346667pt;}
.y5c{bottom:113.946667pt;}
.y28{bottom:118.586667pt;}
.yb8{bottom:119.946667pt;}
.yf2{bottom:120.346667pt;}
.y8b{bottom:124.026667pt;}
.yd2{bottom:127.146667pt;}
.y5b{bottom:129.546667pt;}
.y27{bottom:134.186667pt;}
.y8a{bottom:139.706667pt;}
.yd1{bottom:142.746667pt;}
.yf1{bottom:143.946667pt;}
.y5a{bottom:145.226667pt;}
.y26{bottom:149.866667pt;}
.yb7{bottom:151.626667pt;}
.y89{bottom:155.306667pt;}
.yd0{bottom:158.346667pt;}
.y59{bottom:160.826667pt;}
.yb6{bottom:167.226667pt;}
.yf0{bottom:167.546667pt;}
.y88{bottom:170.906667pt;}
.ycf{bottom:174.026667pt;}
.y58{bottom:176.506667pt;}
.y25{bottom:181.466667pt;}
.yb5{bottom:182.826667pt;}
.y87{bottom:186.586667pt;}
.yce{bottom:189.626667pt;}
.yef{bottom:191.226667pt;}
.y57{bottom:192.106667pt;}
.y24{bottom:197.146667pt;}
.yb4{bottom:198.506667pt;}
.y86{bottom:202.186667pt;}
.yee{bottom:206.826667pt;}
.y56{bottom:207.706667pt;}
.y23{bottom:212.746667pt;}
.y85{bottom:217.866667pt;}
.ycd{bottom:221.306667pt;}
.y55{bottom:223.386667pt;}
.y22{bottom:228.346667pt;}
.yb3{bottom:230.106667pt;}
.yed{bottom:230.506667pt;}
.ycc{bottom:236.906667pt;}
.y54{bottom:238.986667pt;}
.y21{bottom:244.026667pt;}
.yb2{bottom:245.786667pt;}
.yec{bottom:246.106667pt;}
.y84{bottom:249.466667pt;}
.ycb{bottom:252.506667pt;}
.y53{bottom:254.666667pt;}
.yb1{bottom:261.386667pt;}
.y83{bottom:265.066667pt;}
.yca{bottom:268.186667pt;}
.yeb{bottom:269.706667pt;}
.y20{bottom:275.626667pt;}
.yb0{bottom:276.986667pt;}
.y52{bottom:278.266667pt;}
.y82{bottom:280.746667pt;}
.yc9{bottom:283.786667pt;}
.y1f{bottom:291.226667pt;}
.yea{bottom:293.626667pt;}
.y81{bottom:296.346667pt;}
.yc8{bottom:299.466667pt;}
.y1e{bottom:306.906667pt;}
.yaf{bottom:308.666667pt;}
.y51{bottom:310.186667pt;}
.y80{bottom:311.946667pt;}
.y1d{bottom:322.506667pt;}
.yae{bottom:324.266667pt;}
.y7f{bottom:327.626667pt;}
.yc7{bottom:331.066667pt;}
.ye9{bottom:336.586667pt;}
.y1c{bottom:338.186667pt;}
.yad{bottom:339.946667pt;}
.y7e{bottom:343.226667pt;}
.y50{bottom:353.066667pt;}
.y1b{bottom:353.786667pt;}
.yc6{bottom:353.946667pt;}
.yac{bottom:355.546667pt;}
.y7d{bottom:358.906667pt;}
.ye8{bottom:360.506667pt;}
.yc5{bottom:366.346667pt;}
.y4f{bottom:368.746667pt;}
.y1a{bottom:369.386667pt;}
.yab{bottom:371.146667pt;}
.yc4{bottom:376.506667pt;}
.y110{bottom:376.986667pt;}
.y4e{bottom:384.346667pt;}
.y19{bottom:385.066667pt;}
.yaa{bottom:386.826667pt;}
.y7c{bottom:390.506667pt;}
.ye7{bottom:393.386667pt;}
.y4d{bottom:400.026667pt;}
.y10f{bottom:400.586667pt;}
.ya9{bottom:402.426667pt;}
.y7b{bottom:406.106667pt;}
.y18{bottom:408.986667pt;}
.y4c{bottom:415.626667pt;}
.y10e{bottom:416.266667pt;}
.ya8{bottom:418.133333pt;}
.y7a{bottom:421.813333pt;}
.ye6{bottom:424.693333pt;}
.y4b{bottom:431.253333pt;}
.ya7{bottom:433.733333pt;}
.y79{bottom:437.413333pt;}
.y10d{bottom:439.893333pt;}
.ye5{bottom:440.293333pt;}
.ya6{bottom:449.333333pt;}
.y17{bottom:452.213333pt;}
.y78{bottom:453.093333pt;}
.y10c{bottom:455.493333pt;}
.y4a{bottom:462.293333pt;}
.ye4{bottom:464.213333pt;}
.ya5{bottom:465.013333pt;}
.y77{bottom:468.693333pt;}
.y10b{bottom:471.173333pt;}
.y49{bottom:473.093333pt;}
.ya4{bottom:480.613333pt;}
.y76{bottom:484.293333pt;}
.y16{bottom:485.093333pt;}
.y10a{bottom:494.773333pt;}
.ya3{bottom:496.293333pt;}
.y48{bottom:497.413333pt;}
.y75{bottom:499.973333pt;}
.y15{bottom:500.773333pt;}
.y109{bottom:510.453333pt;}
.ya2{bottom:511.893333pt;}
.y14{bottom:516.373333pt;}
.y47{bottom:521.653333pt;}
.y74{bottom:531.573333pt;}
.y13{bottom:531.973333pt;}
.y108{bottom:534.053333pt;}
.ye3{bottom:540.293333pt;}
.ya1{bottom:543.493333pt;}
.y45{bottom:545.973333pt;}
.y73{bottom:547.253333pt;}
.y12{bottom:547.653333pt;}
.y107{bottom:549.653333pt;}
.ye2{bottom:555.973333pt;}
.ya0{bottom:559.173333pt;}
.y72{bottom:562.853333pt;}
.y11{bottom:563.253333pt;}
.ye1{bottom:571.573333pt;}
.y106{bottom:573.333333pt;}
.y9f{bottom:574.773333pt;}
.y44{bottom:575.013333pt;}
.y71{bottom:578.453333pt;}
.y10{bottom:578.853333pt;}
.ye0{bottom:587.253333pt;}
.y105{bottom:588.933333pt;}
.yc3{bottom:589.493333pt;}
.y70{bottom:594.133333pt;}
.yf{bottom:594.533333pt;}
.y43{bottom:599.253333pt;}
.ydf{bottom:602.853333pt;}
.yc2{bottom:605.093333pt;}
.y9e{bottom:606.453333pt;}
.y6f{bottom:609.733333pt;}
.ye{bottom:610.133333pt;}
.y104{bottom:612.613333pt;}
.yde{bottom:618.453333pt;}
.yc1{bottom:620.773333pt;}
.y9d{bottom:622.053333pt;}
.y3d{bottom:623.573333pt;}
.y6e{bottom:625.413333pt;}
.yd{bottom:625.813333pt;}
.y103{bottom:628.213333pt;}
.ydd{bottom:634.133333pt;}
.yc0{bottom:636.373333pt;}
.y9c{bottom:637.653333pt;}
.y6d{bottom:641.013333pt;}
.y41{bottom:647.893333pt;}
.yc{bottom:649.733333pt;}
.y102{bottom:651.813333pt;}
.ybf{bottom:652.053333pt;}
.y9b{bottom:653.333333pt;}
.ydc{bottom:665.413333pt;}
.y101{bottom:667.493333pt;}
.ybe{bottom:667.653333pt;}
.y9a{bottom:668.933333pt;}
.y3f{bottom:672.213333pt;}
.y6c{bottom:672.613333pt;}
.ydb{bottom:681.013333pt;}
.ybd{bottom:683.253333pt;}
.y99{bottom:684.613333pt;}
.y6b{bottom:688.293333pt;}
.y100{bottom:691.093333pt;}
.yb{bottom:691.253333pt;}
.yda{bottom:696.613333pt;}
.y98{bottom:700.213333pt;}
.y6a{bottom:703.893333pt;}
.yff{bottom:706.693333pt;}
.yd9{bottom:712.293333pt;}
.ybc{bottom:714.933333pt;}
.y3c{bottom:715.493333pt;}
.y69{bottom:719.573333pt;}
.yfe{bottom:722.373333pt;}
.ya{bottom:723.093333pt;}
.yd8{bottom:727.893333pt;}
.y97{bottom:731.813333pt;}
.y68{bottom:735.173333pt;}
.ybb{bottom:737.893333pt;}
.yd7{bottom:743.573333pt;}
.yfd{bottom:745.973333pt;}
.y3b{bottom:747.093333pt;}
.y96{bottom:747.493333pt;}
.yba{bottom:748.053333pt;}
.y9{bottom:755.093333pt;}
.y67{bottom:759.093333pt;}
.yd6{bottom:759.173333pt;}
.yfc{bottom:761.653333pt;}
.y3a{bottom:762.693333pt;}
.y95{bottom:763.093333pt;}
.y39{bottom:778.373333pt;}
.y94{bottom:778.693333pt;}
.yd5{bottom:783.093333pt;}
.yfb{bottom:785.253333pt;}
.y8{bottom:786.933333pt;}
.y93{bottom:794.373333pt;}
.y66{bottom:801.973333pt;}
.y7{bottom:805.893333pt;}
.yfa{bottom:808.853333pt;}
.y38{bottom:809.973333pt;}
.y65{bottom:817.653333pt;}
.y6{bottom:821.573333pt;}
.y37{bottom:825.653333pt;}
.yd4{bottom:825.973333pt;}
.yf9{bottom:832.533333pt;}
.y64{bottom:833.253333pt;}
.y5{bottom:837.173333pt;}
.y36{bottom:841.253333pt;}
.yd3{bottom:841.653333pt;}
.y63{bottom:848.853333pt;}
.yf8{bottom:856.133333pt;}
.y35{bottom:856.853333pt;}
.y92{bottom:857.253333pt;}
.y62{bottom:864.533333pt;}
.y4{bottom:865.733333pt;}
.y34{bottom:872.533333pt;}
.y91{bottom:872.853333pt;}
.yf7{bottom:879.813333pt;}
.y61{bottom:880.133333pt;}
.y33{bottom:888.133333pt;}
.y90{bottom:888.533333pt;}
.y60{bottom:895.813333pt;}
.y3{bottom:899.760000pt;}
.yf6{bottom:903.440000pt;}
.y32{bottom:903.840000pt;}
.y8f{bottom:904.160000pt;}
.y5f{bottom:911.440000pt;}
.y31{bottom:919.440000pt;}
.y8e{bottom:919.840000pt;}
.yf5{bottom:927.040000pt;}
.y30{bottom:935.040000pt;}
.y8d{bottom:935.440000pt;}
.yf4{bottom:942.720000pt;}
.y2f{bottom:950.720000pt;}
.y8c{bottom:951.040000pt;}
.y2e{bottom:966.320000pt;}
.y5e{bottom:966.720000pt;}
.y5d{bottom:982.320000pt;}
.yf3{bottom:990.000000pt;}
.y2d{bottom:998.000000pt;}
.y2c{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.hc{height:23.600000pt;}
.hd{height:23.680000pt;}
.h2{height:26.686562pt;}
.he{height:28.320000pt;}
.h6{height:31.806562pt;}
.h3{height:34.804688pt;}
.hf{height:37.032187pt;}
.h13{height:37.105312pt;}
.h14{height:43.744973pt;}
.h7{height:45.246562pt;}
.h8{height:46.499062pt;}
.h9{height:49.581562pt;}
.h5{height:50.954062pt;}
.h12{height:54.927899pt;}
.h11{height:55.631875pt;}
.h10{height:60.961875pt;}
.ha{height:63.128437pt;}
.h4{height:64.875937pt;}
.hb{height:72.240000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3{width:43.280000pt;}
.w7{width:60.800000pt;}
.w6{width:111.786667pt;}
.w5{width:133.600000pt;}
.w4{width:307.546667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:6.880000pt;}
.x1{left:60.480000pt;}
.x10{left:98.879988pt;}
.x2{left:180.266655pt;}
.x4{left:221.226667pt;}
.x9{left:236.426655pt;}
.xf{left:238.906655pt;}
.xd{left:252.986655pt;}
.x6{left:265.226667pt;}
.xc{left:269.226655pt;}
.xb{left:271.146655pt;}
.xe{left:396.986655pt;}
.x7{left:399.466667pt;}
.x8{left:511.973333pt;}
.xa{left:573.013322pt;}
.x3{left:704.053322pt;}
}




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