
    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_44ab2ef4ff2bc355e74aa6bc.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_b07b6ca2eb4e5df78a82cea3.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_330ba8c3be73d9c3af9745b3.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_2800be804617aa52d6abdfd7.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_ed25edec56b7e94c0b55a40e.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_f744c1fdae47f0549a88d251.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_76f618ec0080e4808838e2fd.woff')format("woff");}.ff7{font-family:ff7;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_be03f497c3c0527b922a3f9e.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_3b4c4461728ca18bf994d5bc.woff')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;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls1c{letter-spacing:-0.246600px;}
.lsb{letter-spacing:-0.186600px;}
.ls8{letter-spacing:-0.135000px;}
.ls18{letter-spacing:-0.125400px;}
.lsc{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.ls1b{letter-spacing:-0.066000px;}
.ls14{letter-spacing:-0.064800px;}
.ls12{letter-spacing:-0.063600px;}
.ls17{letter-spacing:-0.014760px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.014760px;}
.lse{letter-spacing:0.045360px;}
.lsf{letter-spacing:0.048960px;}
.ls1d{letter-spacing:0.060600px;}
.ls15{letter-spacing:0.064800px;}
.ls4{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.lsd{letter-spacing:0.120000px;}
.ls6{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.173400px;}
.ls11{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.199200px;}
.ls10{letter-spacing:0.300000px;}
.ls0{letter-spacing:0.360000px;}
.ls1a{letter-spacing:47.726640px;}
.ls16{letter-spacing:63.566640px;}
.ls19{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;}
}
.wsd{word-spacing:-60.120000px;}
.ws6{word-spacing:-14.493600px;}
.ws8{word-spacing:-14.372400px;}
.wsb{word-spacing:-13.425600px;}
.ws3{word-spacing:-13.399800px;}
.ws12{word-spacing:-13.287000px;}
.ws9{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.wse{word-spacing:-13.211640px;}
.wsa{word-spacing:-13.162800px;}
.wsc{word-spacing:-13.161600px;}
.ws10{word-spacing:-13.160400px;}
.wsf{word-spacing:-13.101000px;}
.ws4{word-spacing:-13.039800px;}
.ws11{word-spacing:-12.979800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws7{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
._c{margin-left:-3.461760px;}
._a{margin-left:-2.358000px;}
._0{margin-left:-1.110000px;}
._2{width:1.006812px;}
._7{width:2.062792px;}
._9{width:3.343428px;}
._d{width:4.752491px;}
._b{width:5.831400px;}
._f{width:6.912232px;}
._8{width:8.509200px;}
._5{width:9.586800px;}
._6{width:10.782242px;}
._e{width:12.007678px;}
._3{width:14.609400px;}
._13{width:15.631200px;}
._10{width:17.675280px;}
._4{width:19.659000px;}
._14{width:20.982120px;}
._12{width:26.031960px;}
._11{width:28.617120px;}
._1{width:31.706388px;}
.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;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y102{bottom:115.680000px;}
.y56{bottom:119.460000px;}
.ydd{bottom:122.250000px;}
.y81{bottom:123.510000px;}
.ybd{bottom:124.770000px;}
.y101{bottom:133.320000px;}
.ydc{bottom:139.890000px;}
.y80{bottom:141.060000px;}
.y27{bottom:142.050000px;}
.ybc{bottom:142.320000px;}
.y55{bottom:155.100000px;}
.y7f{bottom:158.610000px;}
.y26{bottom:159.600000px;}
.y100{bottom:159.870000px;}
.ybb{bottom:159.960000px;}
.ydb{bottom:166.440000px;}
.y9c{bottom:171.840000px;}
.y54{bottom:172.650000px;}
.y7e{bottom:176.250000px;}
.y25{bottom:177.240000px;}
.yba{bottom:177.510000px;}
.yda{bottom:184.080000px;}
.yff{bottom:186.510000px;}
.y9b{bottom:189.390000px;}
.y53{bottom:190.200000px;}
.yb9{bottom:195.060000px;}
.y7d{bottom:202.800000px;}
.yfe{bottom:204.060000px;}
.y9a{bottom:206.940000px;}
.y52{bottom:207.840000px;}
.yd9{bottom:210.630000px;}
.yb8{bottom:212.700000px;}
.y24{bottom:212.790000px;}
.yd8{bottom:228.180000px;}
.yb7{bottom:230.250000px;}
.y23{bottom:230.340000px;}
.yfd{bottom:230.610000px;}
.y99{bottom:233.580000px;}
.y7c{bottom:238.440000px;}
.y51{bottom:243.390000px;}
.yd7{bottom:245.820000px;}
.y22{bottom:247.980000px;}
.yfc{bottom:248.250000px;}
.y7b{bottom:255.990000px;}
.yb6{bottom:257.160000px;}
.y50{bottom:260.940000px;}
.y21{bottom:265.530000px;}
.yfb{bottom:265.800000px;}
.y98{bottom:269.130000px;}
.yd6{bottom:272.370000px;}
.y4f{bottom:278.580000px;}
.y20{bottom:283.170000px;}
.y97{bottom:286.770000px;}
.yd5{bottom:290.010000px;}
.y7a{bottom:291.540000px;}
.yfa{bottom:292.440000px;}
.y1f{bottom:300.720000px;}
.y4e{bottom:305.130000px;}
.yb5{bottom:305.400000px;}
.y79{bottom:309.180000px;}
.yf9{bottom:309.990000px;}
.yd4{bottom:316.560000px;}
.y1e{bottom:318.270000px;}
.y96{bottom:322.320000px;}
.yb4{bottom:323.040000px;}
.y78{bottom:326.730000px;}
.yf8{bottom:327.540000px;}
.y95{bottom:339.870000px;}
.y4d{bottom:340.770000px;}
.yd3{bottom:343.110000px;}
.y77{bottom:344.370000px;}
.y1d{bottom:353.910000px;}
.yf7{bottom:354.180000px;}
.y94{bottom:357.510000px;}
.y4c{bottom:358.320000px;}
.yb3{bottom:358.590000px;}
.yd2{bottom:369.750000px;}
.y76{bottom:370.920000px;}
.y1c{bottom:371.460000px;}
.yf6{bottom:371.730000px;}
.y93{bottom:375.060000px;}
.y4b{bottom:375.870000px;}
.yb2{bottom:376.230000px;}
.yd1{bottom:387.300000px;}
.y1b{bottom:389.100000px;}
.y4a{bottom:393.510000px;}
.yf5{bottom:398.370000px;}
.y92{bottom:401.700000px;}
.y75{bottom:406.470000px;}
.y1a{bottom:406.650000px;}
.y49{bottom:411.060000px;}
.yb1{bottom:411.690000px;}
.yd0{bottom:413.940000px;}
.yf4{bottom:415.920000px;}
.y74{bottom:424.110000px;}
.y19{bottom:424.200000px;}
.yb0{bottom:430.140000px;}
.ycf{bottom:431.490000px;}
.y91{bottom:437.250000px;}
.y18{bottom:441.840000px;}
.yf3{bottom:442.470000px;}
.y48{bottom:446.700000px;}
.yaf{bottom:448.590000px;}
.y90{bottom:454.800000px;}
.yce{bottom:458.040000px;}
.y17{bottom:459.390000px;}
.y73{bottom:459.660000px;}
.yf2{bottom:460.110000px;}
.y47{bottom:464.250000px;}
.yae{bottom:466.950000px;}
.y8f{bottom:472.470000px;}
.ycd{bottom:475.710000px;}
.y72{bottom:477.330000px;}
.y46{bottom:481.830000px;}
.y16{bottom:486.330000px;}
.yf1{bottom:486.690000px;}
.ycc{bottom:493.260000px;}
.y71{bottom:494.880000px;}
.y45{bottom:499.470000px;}
.yad{bottom:503.430000px;}
.yf0{bottom:504.330000px;}
.y8e{bottom:508.020000px;}
.y70{bottom:512.430000px;}
.ycb{bottom:519.900000px;}
.yac{bottom:521.070000px;}
.y8d{bottom:525.660000px;}
.y44{bottom:526.020000px;}
.yef{bottom:530.880000px;}
.y15{bottom:534.930000px;}
.y6f{bottom:539.070000px;}
.y8c{bottom:543.210000px;}
.yca{bottom:546.450000px;}
.yab{bottom:547.620000px;}
.yee{bottom:548.430000px;}
.y43{bottom:561.660000px;}
.yc9{bottom:564.000000px;}
.yed{bottom:566.070000px;}
.y8b{bottom:569.760000px;}
.y14{bottom:571.920000px;}
.y6e{bottom:574.620000px;}
.y42{bottom:579.210000px;}
.yaa{bottom:583.260000px;}
.y13{bottom:589.560000px;}
.yc8{bottom:590.640000px;}
.y6d{bottom:592.260000px;}
.yec{bottom:592.620000px;}
.y41{bottom:596.760000px;}
.ya9{bottom:600.810000px;}
.y8a{bottom:605.670000px;}
.y12{bottom:607.110000px;}
.yc7{bottom:608.190000px;}
.y6c{bottom:609.810000px;}
.yeb{bottom:610.260000px;}
.ya8{bottom:618.360000px;}
.y11{bottom:624.750000px;}
.y6b{bottom:627.360000px;}
.y40{bottom:632.400000px;}
.yc6{bottom:634.830000px;}
.ya7{bottom:636.000000px;}
.yea{bottom:636.810000px;}
.y10{bottom:642.300000px;}
.y6a{bottom:645.000000px;}
.y3f{bottom:649.950000px;}
.yc5{bottom:652.380000px;}
.y89{bottom:654.000000px;}
.ye9{bottom:654.360000px;}
.yf{bottom:659.850000px;}
.y3e{bottom:667.590000px;}
.y69{bottom:671.550000px;}
.ye{bottom:677.490000px;}
.yc4{bottom:678.930000px;}
.ye8{bottom:681.000000px;}
.y3d{bottom:685.140000px;}
.y88{bottom:689.190000px;}
.yd{bottom:695.040000px;}
.ye7{bottom:698.550000px;}
.y3c{bottom:702.690000px;}
.yc3{bottom:705.570000px;}
.ya6{bottom:706.740000px;}
.y68{bottom:707.190000px;}
.yc{bottom:712.680000px;}
.yc2{bottom:723.120000px;}
.y67{bottom:724.740000px;}
.ye6{bottom:725.190000px;}
.y3b{bottom:729.330000px;}
.yb{bottom:730.230000px;}
.ya5{bottom:733.290000px;}
.y66{bottom:742.290000px;}
.ye5{bottom:742.740000px;}
.yc1{bottom:750.030000px;}
.ya{bottom:757.140000px;}
.y87{bottom:759.930000px;}
.y3a{bottom:764.880000px;}
.ya4{bottom:768.930000px;}
.ye4{bottom:769.290000px;}
.y86{bottom:777.480000px;}
.y65{bottom:777.930000px;}
.y39{bottom:782.520000px;}
.ya3{bottom:786.480000px;}
.ye3{bottom:786.930000px;}
.y64{bottom:795.480000px;}
.yc0{bottom:798.270000px;}
.y38{bottom:800.070000px;}
.y9{bottom:805.380000px;}
.y63{bottom:813.030000px;}
.ye2{bottom:813.480000px;}
.ya2{bottom:822.030000px;}
.ybf{bottom:825.180000px;}
.y37{bottom:826.620000px;}
.y85{bottom:830.670000px;}
.ye1{bottom:831.030000px;}
.y62{bottom:839.670000px;}
.y8{bottom:841.200000px;}
.y84{bottom:848.220000px;}
.ya1{bottom:857.220000px;}
.ye0{bottom:857.670000px;}
.y36{bottom:862.530000px;}
.y83{bottom:874.860000px;}
.y61{bottom:875.220000px;}
.y7{bottom:877.200000px;}
.y60{bottom:892.860000px;}
.y5f{bottom:910.410000px;}
.y35{bottom:910.860000px;}
.y6{bottom:913.200000px;}
.ydf{bottom:919.410000px;}
.y5e{bottom:927.960000px;}
.y34{bottom:928.410000px;}
.yde{bottom:936.960000px;}
.y33{bottom:945.960000px;}
.y5{bottom:949.290000px;}
.ya0{bottom:954.600000px;}
.y32{bottom:963.600000px;}
.y5d{bottom:981.150000px;}
.ybe{bottom:981.600000px;}
.y4{bottom:987.630000px;}
.y9f{bottom:990.150000px;}
.y5c{bottom:998.790000px;}
.y31{bottom:999.150000px;}
.y9e{bottom:1007.790000px;}
.y3{bottom:1012.320000px;}
.y30{bottom:1016.820000px;}
.y5b{bottom:1025.370000px;}
.y2f{bottom:1034.370000px;}
.y9d{bottom:1042.920000px;}
.y2e{bottom:1051.920000px;}
.y5a{bottom:1060.920000px;}
.y2d{bottom:1069.560000px;}
.y59{bottom:1078.560000px;}
.y82{bottom:1087.560000px;}
.y58{bottom:1096.110000px;}
.y2c{bottom:1105.110000px;}
.y57{bottom:1113.750000px;}
.y2b{bottom:1122.750000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.h7{height:50.902383px;}
.h6{height:52.311445px;}
.h5{height:55.779258px;}
.hc{height:57.323320px;}
.ha{height:59.973223px;}
.hb{height:61.793886px;}
.h9{height:62.585859px;}
.h8{height:68.582109px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:68.040000px;}
.x4{left:95.039987px;}
.x5{left:111.239987px;}
.x2{left:201.539987px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls1c{letter-spacing:-0.219200pt;}
.lsb{letter-spacing:-0.165867pt;}
.ls8{letter-spacing:-0.120000pt;}
.ls18{letter-spacing:-0.111467pt;}
.lsc{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls1b{letter-spacing:-0.058667pt;}
.ls14{letter-spacing:-0.057600pt;}
.ls12{letter-spacing:-0.056533pt;}
.ls17{letter-spacing:-0.013120pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.013120pt;}
.lse{letter-spacing:0.040320pt;}
.lsf{letter-spacing:0.043520pt;}
.ls1d{letter-spacing:0.053867pt;}
.ls15{letter-spacing:0.057600pt;}
.ls4{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.lsd{letter-spacing:0.106667pt;}
.ls6{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.154133pt;}
.ls11{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.177067pt;}
.ls10{letter-spacing:0.266667pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:42.423680pt;}
.ls16{letter-spacing:56.503680pt;}
.ls19{letter-spacing:71.863680pt;}
.wsd{word-spacing:-53.440000pt;}
.ws6{word-spacing:-12.883200pt;}
.ws8{word-spacing:-12.775467pt;}
.wsb{word-spacing:-11.933867pt;}
.ws3{word-spacing:-11.910933pt;}
.ws12{word-spacing:-11.810667pt;}
.ws9{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.wse{word-spacing:-11.743680pt;}
.wsa{word-spacing:-11.700267pt;}
.wsc{word-spacing:-11.699200pt;}
.ws10{word-spacing:-11.698133pt;}
.wsf{word-spacing:-11.645333pt;}
.ws4{word-spacing:-11.590933pt;}
.ws11{word-spacing:-11.537600pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws7{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
._c{margin-left:-3.077120pt;}
._a{margin-left:-2.096000pt;}
._0{margin-left:-0.986667pt;}
._2{width:0.894944pt;}
._7{width:1.833593pt;}
._9{width:2.971936pt;}
._d{width:4.224437pt;}
._b{width:5.183466pt;}
._f{width:6.144206pt;}
._8{width:7.563733pt;}
._5{width:8.521600pt;}
._6{width:9.584215pt;}
._e{width:10.673491pt;}
._3{width:12.986134pt;}
._13{width:13.894400pt;}
._10{width:15.711360pt;}
._4{width:17.474666pt;}
._14{width:18.650774pt;}
._12{width:23.139520pt;}
._11{width:25.437440pt;}
._1{width:28.183456pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y102{bottom:102.826667pt;}
.y56{bottom:106.186667pt;}
.ydd{bottom:108.666667pt;}
.y81{bottom:109.786667pt;}
.ybd{bottom:110.906667pt;}
.y101{bottom:118.506667pt;}
.ydc{bottom:124.346667pt;}
.y80{bottom:125.386667pt;}
.y27{bottom:126.266667pt;}
.ybc{bottom:126.506667pt;}
.y55{bottom:137.866667pt;}
.y7f{bottom:140.986667pt;}
.y26{bottom:141.866667pt;}
.y100{bottom:142.106667pt;}
.ybb{bottom:142.186667pt;}
.ydb{bottom:147.946667pt;}
.y9c{bottom:152.746667pt;}
.y54{bottom:153.466667pt;}
.y7e{bottom:156.666667pt;}
.y25{bottom:157.546667pt;}
.yba{bottom:157.786667pt;}
.yda{bottom:163.626667pt;}
.yff{bottom:165.786667pt;}
.y9b{bottom:168.346667pt;}
.y53{bottom:169.066667pt;}
.yb9{bottom:173.386667pt;}
.y7d{bottom:180.266667pt;}
.yfe{bottom:181.386667pt;}
.y9a{bottom:183.946667pt;}
.y52{bottom:184.746667pt;}
.yd9{bottom:187.226667pt;}
.yb8{bottom:189.066667pt;}
.y24{bottom:189.146667pt;}
.yd8{bottom:202.826667pt;}
.yb7{bottom:204.666667pt;}
.y23{bottom:204.746667pt;}
.yfd{bottom:204.986667pt;}
.y99{bottom:207.626667pt;}
.y7c{bottom:211.946667pt;}
.y51{bottom:216.346667pt;}
.yd7{bottom:218.506667pt;}
.y22{bottom:220.426667pt;}
.yfc{bottom:220.666667pt;}
.y7b{bottom:227.546667pt;}
.yb6{bottom:228.586667pt;}
.y50{bottom:231.946667pt;}
.y21{bottom:236.026667pt;}
.yfb{bottom:236.266667pt;}
.y98{bottom:239.226667pt;}
.yd6{bottom:242.106667pt;}
.y4f{bottom:247.626667pt;}
.y20{bottom:251.706667pt;}
.y97{bottom:254.906667pt;}
.yd5{bottom:257.786667pt;}
.y7a{bottom:259.146667pt;}
.yfa{bottom:259.946667pt;}
.y1f{bottom:267.306667pt;}
.y4e{bottom:271.226667pt;}
.yb5{bottom:271.466667pt;}
.y79{bottom:274.826667pt;}
.yf9{bottom:275.546667pt;}
.yd4{bottom:281.386667pt;}
.y1e{bottom:282.906667pt;}
.y96{bottom:286.506667pt;}
.yb4{bottom:287.146667pt;}
.y78{bottom:290.426667pt;}
.yf8{bottom:291.146667pt;}
.y95{bottom:302.106667pt;}
.y4d{bottom:302.906667pt;}
.yd3{bottom:304.986667pt;}
.y77{bottom:306.106667pt;}
.y1d{bottom:314.586667pt;}
.yf7{bottom:314.826667pt;}
.y94{bottom:317.786667pt;}
.y4c{bottom:318.506667pt;}
.yb3{bottom:318.746667pt;}
.yd2{bottom:328.666667pt;}
.y76{bottom:329.706667pt;}
.y1c{bottom:330.186667pt;}
.yf6{bottom:330.426667pt;}
.y93{bottom:333.386667pt;}
.y4b{bottom:334.106667pt;}
.yb2{bottom:334.426667pt;}
.yd1{bottom:344.266667pt;}
.y1b{bottom:345.866667pt;}
.y4a{bottom:349.786667pt;}
.yf5{bottom:354.106667pt;}
.y92{bottom:357.066667pt;}
.y75{bottom:361.306667pt;}
.y1a{bottom:361.466667pt;}
.y49{bottom:365.386667pt;}
.yb1{bottom:365.946667pt;}
.yd0{bottom:367.946667pt;}
.yf4{bottom:369.706667pt;}
.y74{bottom:376.986667pt;}
.y19{bottom:377.066667pt;}
.yb0{bottom:382.346667pt;}
.ycf{bottom:383.546667pt;}
.y91{bottom:388.666667pt;}
.y18{bottom:392.746667pt;}
.yf3{bottom:393.306667pt;}
.y48{bottom:397.066667pt;}
.yaf{bottom:398.746667pt;}
.y90{bottom:404.266667pt;}
.yce{bottom:407.146667pt;}
.y17{bottom:408.346667pt;}
.y73{bottom:408.586667pt;}
.yf2{bottom:408.986667pt;}
.y47{bottom:412.666667pt;}
.yae{bottom:415.066667pt;}
.y8f{bottom:419.973333pt;}
.ycd{bottom:422.853333pt;}
.y72{bottom:424.293333pt;}
.y46{bottom:428.293333pt;}
.y16{bottom:432.293333pt;}
.yf1{bottom:432.613333pt;}
.ycc{bottom:438.453333pt;}
.y71{bottom:439.893333pt;}
.y45{bottom:443.973333pt;}
.yad{bottom:447.493333pt;}
.yf0{bottom:448.293333pt;}
.y8e{bottom:451.573333pt;}
.y70{bottom:455.493333pt;}
.ycb{bottom:462.133333pt;}
.yac{bottom:463.173333pt;}
.y8d{bottom:467.253333pt;}
.y44{bottom:467.573333pt;}
.yef{bottom:471.893333pt;}
.y15{bottom:475.493333pt;}
.y6f{bottom:479.173333pt;}
.y8c{bottom:482.853333pt;}
.yca{bottom:485.733333pt;}
.yab{bottom:486.773333pt;}
.yee{bottom:487.493333pt;}
.y43{bottom:499.253333pt;}
.yc9{bottom:501.333333pt;}
.yed{bottom:503.173333pt;}
.y8b{bottom:506.453333pt;}
.y14{bottom:508.373333pt;}
.y6e{bottom:510.773333pt;}
.y42{bottom:514.853333pt;}
.yaa{bottom:518.453333pt;}
.y13{bottom:524.053333pt;}
.yc8{bottom:525.013333pt;}
.y6d{bottom:526.453333pt;}
.yec{bottom:526.773333pt;}
.y41{bottom:530.453333pt;}
.ya9{bottom:534.053333pt;}
.y8a{bottom:538.373333pt;}
.y12{bottom:539.653333pt;}
.yc7{bottom:540.613333pt;}
.y6c{bottom:542.053333pt;}
.yeb{bottom:542.453333pt;}
.ya8{bottom:549.653333pt;}
.y11{bottom:555.333333pt;}
.y6b{bottom:557.653333pt;}
.y40{bottom:562.133333pt;}
.yc6{bottom:564.293333pt;}
.ya7{bottom:565.333333pt;}
.yea{bottom:566.053333pt;}
.y10{bottom:570.933333pt;}
.y6a{bottom:573.333333pt;}
.y3f{bottom:577.733333pt;}
.yc5{bottom:579.893333pt;}
.y89{bottom:581.333333pt;}
.ye9{bottom:581.653333pt;}
.yf{bottom:586.533333pt;}
.y3e{bottom:593.413333pt;}
.y69{bottom:596.933333pt;}
.ye{bottom:602.213333pt;}
.yc4{bottom:603.493333pt;}
.ye8{bottom:605.333333pt;}
.y3d{bottom:609.013333pt;}
.y88{bottom:612.613333pt;}
.yd{bottom:617.813333pt;}
.ye7{bottom:620.933333pt;}
.y3c{bottom:624.613333pt;}
.yc3{bottom:627.173333pt;}
.ya6{bottom:628.213333pt;}
.y68{bottom:628.613333pt;}
.yc{bottom:633.493333pt;}
.yc2{bottom:642.773333pt;}
.y67{bottom:644.213333pt;}
.ye6{bottom:644.613333pt;}
.y3b{bottom:648.293333pt;}
.yb{bottom:649.093333pt;}
.ya5{bottom:651.813333pt;}
.y66{bottom:659.813333pt;}
.ye5{bottom:660.213333pt;}
.yc1{bottom:666.693333pt;}
.ya{bottom:673.013333pt;}
.y87{bottom:675.493333pt;}
.y3a{bottom:679.893333pt;}
.ya4{bottom:683.493333pt;}
.ye4{bottom:683.813333pt;}
.y86{bottom:691.093333pt;}
.y65{bottom:691.493333pt;}
.y39{bottom:695.573333pt;}
.ya3{bottom:699.093333pt;}
.ye3{bottom:699.493333pt;}
.y64{bottom:707.093333pt;}
.yc0{bottom:709.573333pt;}
.y38{bottom:711.173333pt;}
.y9{bottom:715.893333pt;}
.y63{bottom:722.693333pt;}
.ye2{bottom:723.093333pt;}
.ya2{bottom:730.693333pt;}
.ybf{bottom:733.493333pt;}
.y37{bottom:734.773333pt;}
.y85{bottom:738.373333pt;}
.ye1{bottom:738.693333pt;}
.y62{bottom:746.373333pt;}
.y8{bottom:747.733333pt;}
.y84{bottom:753.973333pt;}
.ya1{bottom:761.973333pt;}
.ye0{bottom:762.373333pt;}
.y36{bottom:766.693333pt;}
.y83{bottom:777.653333pt;}
.y61{bottom:777.973333pt;}
.y7{bottom:779.733333pt;}
.y60{bottom:793.653333pt;}
.y5f{bottom:809.253333pt;}
.y35{bottom:809.653333pt;}
.y6{bottom:811.733333pt;}
.ydf{bottom:817.253333pt;}
.y5e{bottom:824.853333pt;}
.y34{bottom:825.253333pt;}
.yde{bottom:832.853333pt;}
.y33{bottom:840.853333pt;}
.y5{bottom:843.813333pt;}
.ya0{bottom:848.533333pt;}
.y32{bottom:856.533333pt;}
.y5d{bottom:872.133333pt;}
.ybe{bottom:872.533333pt;}
.y4{bottom:877.893333pt;}
.y9f{bottom:880.133333pt;}
.y5c{bottom:887.813333pt;}
.y31{bottom:888.133333pt;}
.y9e{bottom:895.813333pt;}
.y3{bottom:899.840000pt;}
.y30{bottom:903.840000pt;}
.y5b{bottom:911.440000pt;}
.y2f{bottom:919.440000pt;}
.y9d{bottom:927.040000pt;}
.y2e{bottom:935.040000pt;}
.y5a{bottom:943.040000pt;}
.y2d{bottom:950.720000pt;}
.y59{bottom:958.720000pt;}
.y82{bottom:966.720000pt;}
.y58{bottom:974.320000pt;}
.y2c{bottom:982.320000pt;}
.y57{bottom:990.000000pt;}
.y2b{bottom:998.000000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.h7{height:45.246562pt;}
.h6{height:46.499062pt;}
.h5{height:49.581562pt;}
.hc{height:50.954062pt;}
.ha{height:53.309531pt;}
.hb{height:54.927899pt;}
.h9{height:55.631875pt;}
.h8{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.480000pt;}
.x4{left:84.479988pt;}
.x5{left:98.879988pt;}
.x2{left:179.146655pt;}
.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; }
  