
    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_53cc198915daf2e1966aeec0.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_2074dcbecd925c4910007733.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_e7b1144411d441bdacf9754c.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_2816627d20c987f0f00bdc45.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_ef41af7061b158c39df421e5.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_8156db73b9e75bf582880ae1.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_f91ad6483d6329b09eaf9228.woff')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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;}
.lse{letter-spacing:-0.186600px;}
.ls10{letter-spacing:-0.178800px;}
.ls8{letter-spacing:-0.135000px;}
.lsa{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.014760px;}
.ls13{letter-spacing:0.045360px;}
.lsc{letter-spacing:0.048960px;}
.ls4{letter-spacing:0.049200px;}
.lsb{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls15{letter-spacing:0.098400px;}
.ls11{letter-spacing:0.127200px;}
.ls6{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.173400px;}
.lsf{letter-spacing:0.181200px;}
.ls16{letter-spacing:0.199200px;}
.ls12{letter-spacing:0.206640px;}
.ls0{letter-spacing:0.360000px;}
.ls14{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;}
}
.ws4{word-spacing:-14.493600px;}
.wse{word-spacing:-14.372400px;}
.ws10{word-spacing:-13.425600px;}
.wsa{word-spacing:-13.407600px;}
.ws7{word-spacing:-13.399800px;}
.wsc{word-spacing:-13.353600px;}
.wsf{word-spacing:-13.324800px;}
.ws5{word-spacing:-13.275600px;}
.ws9{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.wsb{word-spacing:-13.047600px;}
.ws8{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.wsd{word-spacing:-0.060120px;}
.ws6{word-spacing:0.000000px;}
.ws3{word-spacing:4.304880px;}
._6{margin-left:-3.873243px;}
._3{margin-left:-2.115360px;}
._0{margin-left:-1.110000px;}
._2{width:1.569720px;}
._c{width:2.610905px;}
._4{width:4.027800px;}
._5{width:5.070965px;}
._8{width:6.120328px;}
._b{width:7.274520px;}
._7{width:8.837400px;}
._9{width:10.401000px;}
._d{width:11.603160px;}
._e{width:14.296800px;}
._f{width:15.654120px;}
._13{width:16.661277px;}
._10{width:17.703120px;}
._1a{width:20.741400px;}
._a{width:22.003800px;}
._12{width:29.016840px;}
._11{width:30.180240px;}
._1{width:31.595040px;}
._16{width:59.428440px;}
._17{width:60.841800px;}
._14{width:124.117560px;}
._15{width:125.482320px;}
._18{width:148.376160px;}
._19{width:149.543400px;}
.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;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.yf8{bottom:3.330000px;}
.yf7{bottom:20.880000px;}
.yf6{bottom:38.520000px;}
.yf5{bottom:56.070000px;}
.y2{bottom:73.380000px;}
.yf4{bottom:73.710000px;}
.y26{bottom:74.190000px;}
.yf3{bottom:91.260000px;}
.y1{bottom:101.640000px;}
.yeb{bottom:101.700000px;}
.yf2{bottom:108.810000px;}
.y7e{bottom:115.680000px;}
.yce{bottom:120.720000px;}
.y55{bottom:124.320000px;}
.yf1{bottom:126.450000px;}
.y7d{bottom:133.320000px;}
.y54{bottom:141.870000px;}
.yf0{bottom:144.000000px;}
.ye8{bottom:146.460000px;}
.y7c{bottom:150.870000px;}
.y24{bottom:152.940000px;}
.ycd{bottom:156.270000px;}
.y53{bottom:159.510000px;}
.yef{bottom:161.640000px;}
.ye7{bottom:164.010000px;}
.y7b{bottom:168.510000px;}
.y23{bottom:170.580000px;}
.ycc{bottom:173.910000px;}
.y9e{bottom:176.250000px;}
.y52{bottom:177.060000px;}
.yee{bottom:179.190000px;}
.y22{bottom:188.130000px;}
.ye6{bottom:190.650000px;}
.ycb{bottom:191.460000px;}
.y7a{bottom:195.060000px;}
.yed{bottom:196.740000px;}
.y21{bottom:205.680000px;}
.ye5{bottom:208.200000px;}
.yca{bottom:209.100000px;}
.y9d{bottom:211.800000px;}
.y51{bottom:212.610000px;}
.yec{bottom:214.380000px;}
.y20{bottom:223.320000px;}
.yc9{bottom:226.650000px;}
.y50{bottom:230.250000px;}
.y79{bottom:230.610000px;}
.ye4{bottom:234.750000px;}
.yc8{bottom:244.200000px;}
.y9c{bottom:247.440000px;}
.y4f{bottom:247.800000px;}
.y78{bottom:248.250000px;}
.ye3{bottom:252.390000px;}
.y1f{bottom:258.870000px;}
.y9b{bottom:264.990000px;}
.y4e{bottom:265.440000px;}
.y77{bottom:265.800000px;}
.ye2{bottom:269.940000px;}
.yc7{bottom:270.840000px;}
.y1e{bottom:276.510000px;}
.y9a{bottom:282.540000px;}
.y76{bottom:283.440000px;}
.y4d{bottom:291.990000px;}
.y1d{bottom:294.060000px;}
.ye1{bottom:296.580000px;}
.yc6{bottom:306.390000px;}
.y1c{bottom:311.610000px;}
.ye0{bottom:314.130000px;}
.y99{bottom:318.180000px;}
.y75{bottom:318.990000px;}
.yc5{bottom:323.940000px;}
.y4c{bottom:327.540000px;}
.y1b{bottom:329.250000px;}
.y98{bottom:335.730000px;}
.y74{bottom:336.540000px;}
.ydf{bottom:340.680000px;}
.yc4{bottom:341.580000px;}
.y4b{bottom:345.180000px;}
.y73{bottom:354.180000px;}
.y1a{bottom:355.800000px;}
.yde{bottom:358.320000px;}
.yc3{bottom:359.130000px;}
.y97{bottom:362.370000px;}
.y4a{bottom:362.730000px;}
.yc2{bottom:376.770000px;}
.y49{bottom:380.370000px;}
.y72{bottom:380.730000px;}
.ydd{bottom:385.230000px;}
.y19{bottom:391.710000px;}
.yc1{bottom:394.320000px;}
.y96{bottom:397.920000px;}
.yc0{bottom:411.870000px;}
.y95{bottom:415.470000px;}
.y48{bottom:415.920000px;}
.y71{bottom:416.370000px;}
.y94{bottom:433.110000px;}
.y47{bottom:433.470000px;}
.y70{bottom:433.920000px;}
.ybf{bottom:438.510000px;}
.y18{bottom:439.950000px;}
.y46{bottom:451.110000px;}
.y6f{bottom:451.470000px;}
.y17{bottom:457.590000px;}
.ydc{bottom:460.380000px;}
.y93{bottom:468.660000px;}
.y6e{bottom:469.110000px;}
.ybe{bottom:474.090000px;}
.y16{bottom:475.170000px;}
.y45{bottom:477.690000px;}
.y92{bottom:486.330000px;}
.ybd{bottom:491.730000px;}
.y15{bottom:492.810000px;}
.ydb{bottom:497.400000px;}
.y6d{bottom:504.690000px;}
.ybc{bottom:509.280000px;}
.y14{bottom:510.360000px;}
.y91{bottom:512.880000px;}
.y44{bottom:513.330000px;}
.y6c{bottom:522.330000px;}
.yda{bottom:524.310000px;}
.ybb{bottom:526.830000px;}
.y43{bottom:530.880000px;}
.y13{bottom:537.270000px;}
.y6b{bottom:539.880000px;}
.yba{bottom:544.470000px;}
.y42{bottom:548.430000px;}
.yd9{bottom:561.660000px;}
.yb9{bottom:562.020000px;}
.y41{bottom:566.070000px;}
.y6a{bottom:566.430000px;}
.y40{bottom:583.620000px;}
.y12{bottom:585.870000px;}
.yb8{bottom:588.660000px;}
.y3f{bottom:601.260000px;}
.y69{bottom:602.070000px;}
.yd8{bottom:609.990000px;}
.y90{bottom:618.810000px;}
.y68{bottom:619.620000px;}
.y11{bottom:622.860000px;}
.yb7{bottom:624.210000px;}
.yd7{bottom:627.540000px;}
.y8f{bottom:636.360000px;}
.y3e{bottom:636.810000px;}
.y67{bottom:637.260000px;}
.y10{bottom:640.500000px;}
.yb6{bottom:641.760000px;}
.yd6{bottom:645.090000px;}
.y8e{bottom:654.000000px;}
.y3d{bottom:654.360000px;}
.y66{bottom:654.810000px;}
.yf{bottom:658.050000px;}
.yb5{bottom:659.400000px;}
.y3c{bottom:672.000000px;}
.y65{bottom:672.360000px;}
.ye{bottom:675.600000px;}
.yb4{bottom:676.950000px;}
.y8d{bottom:680.550000px;}
.y64{bottom:690.000000px;}
.yd{bottom:693.240000px;}
.yb3{bottom:694.590000px;}
.y3b{bottom:698.550000px;}
.y63{bottom:707.550000px;}
.yc{bottom:710.790000px;}
.yb2{bottom:712.140000px;}
.y8c{bottom:716.190000px;}
.yf9{bottom:719.610000px;}
.yd5{bottom:720.330000px;}
.y62{bottom:725.190000px;}
.yb{bottom:728.430000px;}
.yb1{bottom:729.690000px;}
.y8b{bottom:733.740000px;}
.y3a{bottom:734.190000px;}
.yd4{bottom:737.880000px;}
.yea{bottom:743.640000px;}
.y8a{bottom:751.290000px;}
.y39{bottom:751.740000px;}
.ya{bottom:755.340000px;}
.yb0{bottom:756.330000px;}
.yd3{bottom:764.520000px;}
.y89{bottom:768.930000px;}
.y38{bottom:769.290000px;}
.y37{bottom:786.930000px;}
.y61{bottom:787.290000px;}
.yaf{bottom:791.880000px;}
.yd2{bottom:800.070000px;}
.y9{bottom:803.580000px;}
.y36{bottom:804.480000px;}
.y60{bottom:804.930000px;}
.yae{bottom:809.520000px;}
.yd1{bottom:817.620000px;}
.y88{bottom:822.030000px;}
.y5f{bottom:822.480000px;}
.yad{bottom:827.070000px;}
.y8{bottom:839.130000px;}
.y87{bottom:839.670000px;}
.y35{bottom:840.030000px;}
.yd0{bottom:844.260000px;}
.yac{bottom:844.620000px;}
.y34{bottom:857.670000px;}
.yab{bottom:862.260000px;}
.y86{bottom:866.220000px;}
.y7{bottom:874.950000px;}
.y33{bottom:875.220000px;}
.y5e{bottom:875.670000px;}
.yaa{bottom:879.810000px;}
.y32{bottom:892.860000px;}
.y5d{bottom:893.220000px;}
.ya9{bottom:897.450000px;}
.y85{bottom:901.860000px;}
.y5c{bottom:910.860000px;}
.y6{bottom:910.950000px;}
.y31{bottom:919.410000px;}
.ya8{bottom:924.000000px;}
.y84{bottom:936.960000px;}
.y5b{bottom:937.410000px;}
.y5{bottom:947.040000px;}
.y83{bottom:954.600000px;}
.y30{bottom:954.960000px;}
.ya7{bottom:959.550000px;}
.ycf{bottom:959.910000px;}
.y2f{bottom:972.600000px;}
.y5a{bottom:972.960000px;}
.ya6{bottom:977.190000px;}
.y4{bottom:985.380000px;}
.y2e{bottom:990.150000px;}
.y59{bottom:990.600000px;}
.ya5{bottom:994.740000px;}
.ye9{bottom:1003.650000px;}
.y2d{bottom:1007.790000px;}
.y58{bottom:1008.150000px;}
.y3{bottom:1010.070000px;}
.ya4{bottom:1012.320000px;}
.y2c{bottom:1025.370000px;}
.y57{bottom:1025.820000px;}
.ya3{bottom:1029.960000px;}
.y56{bottom:1043.370000px;}
.ya2{bottom:1047.510000px;}
.y82{bottom:1051.920000px;}
.y2b{bottom:1060.920000px;}
.ya1{bottom:1065.150000px;}
.y2a{bottom:1078.560000px;}
.y81{bottom:1087.560000px;}
.ya0{bottom:1091.700000px;}
.y29{bottom:1096.110000px;}
.y80{bottom:1105.110000px;}
.y28{bottom:1113.750000px;}
.y7f{bottom:1122.750000px;}
.y9f{bottom:1127.610000px;}
.y27{bottom:1140.300000px;}
.y25{bottom:1194.300000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.h6{height:50.902383px;}
.h5{height:55.779258px;}
.h7{height:60.960938px;}
.h9{height:61.793886px;}
.h8{height:62.585859px;}
.ha{height:68.582109px;}
.h4{height:71.019492px;}
.hb{height:246.600000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3{width:137.190000px;}
.w4{width:617.790000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:7.740000px;}
.x1{left:68.040000px;}
.x4{left:111.239987px;}
.x5{left:129.270000px;}
.x2{left:202.799987px;}
.x6{left:206.670000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lse{letter-spacing:-0.165867pt;}
.ls10{letter-spacing:-0.158933pt;}
.ls8{letter-spacing:-0.120000pt;}
.lsa{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.013120pt;}
.ls13{letter-spacing:0.040320pt;}
.lsc{letter-spacing:0.043520pt;}
.ls4{letter-spacing:0.043733pt;}
.lsb{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls15{letter-spacing:0.087467pt;}
.ls11{letter-spacing:0.113067pt;}
.ls6{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.154133pt;}
.lsf{letter-spacing:0.161067pt;}
.ls16{letter-spacing:0.177067pt;}
.ls12{letter-spacing:0.183680pt;}
.ls0{letter-spacing:0.320000pt;}
.ls14{letter-spacing:71.863680pt;}
.ws4{word-spacing:-12.883200pt;}
.wse{word-spacing:-12.775467pt;}
.ws10{word-spacing:-11.933867pt;}
.wsa{word-spacing:-11.917867pt;}
.ws7{word-spacing:-11.910933pt;}
.wsc{word-spacing:-11.869867pt;}
.wsf{word-spacing:-11.844267pt;}
.ws5{word-spacing:-11.800533pt;}
.ws9{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.wsb{word-spacing:-11.597867pt;}
.ws8{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.wsd{word-spacing:-0.053440pt;}
.ws6{word-spacing:0.000000pt;}
.ws3{word-spacing:3.826560pt;}
._6{margin-left:-3.442883pt;}
._3{margin-left:-1.880320pt;}
._0{margin-left:-0.986667pt;}
._2{width:1.395307pt;}
._c{width:2.320804pt;}
._4{width:3.580266pt;}
._5{width:4.507524pt;}
._8{width:5.440291pt;}
._b{width:6.466240pt;}
._7{width:7.855466pt;}
._9{width:9.245334pt;}
._d{width:10.313920pt;}
._e{width:12.708266pt;}
._f{width:13.914774pt;}
._13{width:14.810024pt;}
._10{width:15.736107pt;}
._1a{width:18.436800pt;}
._a{width:19.558933pt;}
._12{width:25.792746pt;}
._11{width:26.826880pt;}
._1{width:28.084480pt;}
._16{width:52.825280pt;}
._17{width:54.081600pt;}
._14{width:110.326720pt;}
._15{width:111.539840pt;}
._18{width:131.889920pt;}
._19{width:132.927467pt;}
.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;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.yf8{bottom:2.960000pt;}
.yf7{bottom:18.560000pt;}
.yf6{bottom:34.240000pt;}
.yf5{bottom:49.840000pt;}
.y2{bottom:65.226667pt;}
.yf4{bottom:65.520000pt;}
.y26{bottom:65.946667pt;}
.yf3{bottom:81.120000pt;}
.y1{bottom:90.346667pt;}
.yeb{bottom:90.400000pt;}
.yf2{bottom:96.720000pt;}
.y7e{bottom:102.826667pt;}
.yce{bottom:107.306667pt;}
.y55{bottom:110.506667pt;}
.yf1{bottom:112.400000pt;}
.y7d{bottom:118.506667pt;}
.y54{bottom:126.106667pt;}
.yf0{bottom:128.000000pt;}
.ye8{bottom:130.186667pt;}
.y7c{bottom:134.106667pt;}
.y24{bottom:135.946667pt;}
.ycd{bottom:138.906667pt;}
.y53{bottom:141.786667pt;}
.yef{bottom:143.680000pt;}
.ye7{bottom:145.786667pt;}
.y7b{bottom:149.786667pt;}
.y23{bottom:151.626667pt;}
.ycc{bottom:154.586667pt;}
.y9e{bottom:156.666667pt;}
.y52{bottom:157.386667pt;}
.yee{bottom:159.280000pt;}
.y22{bottom:167.226667pt;}
.ye6{bottom:169.466667pt;}
.ycb{bottom:170.186667pt;}
.y7a{bottom:173.386667pt;}
.yed{bottom:174.880000pt;}
.y21{bottom:182.826667pt;}
.ye5{bottom:185.066667pt;}
.yca{bottom:185.866667pt;}
.y9d{bottom:188.266667pt;}
.y51{bottom:188.986667pt;}
.yec{bottom:190.560000pt;}
.y20{bottom:198.506667pt;}
.yc9{bottom:201.466667pt;}
.y50{bottom:204.666667pt;}
.y79{bottom:204.986667pt;}
.ye4{bottom:208.666667pt;}
.yc8{bottom:217.066667pt;}
.y9c{bottom:219.946667pt;}
.y4f{bottom:220.266667pt;}
.y78{bottom:220.666667pt;}
.ye3{bottom:224.346667pt;}
.y1f{bottom:230.106667pt;}
.y9b{bottom:235.546667pt;}
.y4e{bottom:235.946667pt;}
.y77{bottom:236.266667pt;}
.ye2{bottom:239.946667pt;}
.yc7{bottom:240.746667pt;}
.y1e{bottom:245.786667pt;}
.y9a{bottom:251.146667pt;}
.y76{bottom:251.946667pt;}
.y4d{bottom:259.546667pt;}
.y1d{bottom:261.386667pt;}
.ye1{bottom:263.626667pt;}
.yc6{bottom:272.346667pt;}
.y1c{bottom:276.986667pt;}
.ye0{bottom:279.226667pt;}
.y99{bottom:282.826667pt;}
.y75{bottom:283.546667pt;}
.yc5{bottom:287.946667pt;}
.y4c{bottom:291.146667pt;}
.y1b{bottom:292.666667pt;}
.y98{bottom:298.426667pt;}
.y74{bottom:299.146667pt;}
.ydf{bottom:302.826667pt;}
.yc4{bottom:303.626667pt;}
.y4b{bottom:306.826667pt;}
.y73{bottom:314.826667pt;}
.y1a{bottom:316.266667pt;}
.yde{bottom:318.506667pt;}
.yc3{bottom:319.226667pt;}
.y97{bottom:322.106667pt;}
.y4a{bottom:322.426667pt;}
.yc2{bottom:334.906667pt;}
.y49{bottom:338.106667pt;}
.y72{bottom:338.426667pt;}
.ydd{bottom:342.426667pt;}
.y19{bottom:348.186667pt;}
.yc1{bottom:350.506667pt;}
.y96{bottom:353.706667pt;}
.yc0{bottom:366.106667pt;}
.y95{bottom:369.306667pt;}
.y48{bottom:369.706667pt;}
.y71{bottom:370.106667pt;}
.y94{bottom:384.986667pt;}
.y47{bottom:385.306667pt;}
.y70{bottom:385.706667pt;}
.ybf{bottom:389.786667pt;}
.y18{bottom:391.066667pt;}
.y46{bottom:400.986667pt;}
.y6f{bottom:401.306667pt;}
.y17{bottom:406.746667pt;}
.ydc{bottom:409.226667pt;}
.y93{bottom:416.586667pt;}
.y6e{bottom:416.986667pt;}
.ybe{bottom:421.413333pt;}
.y16{bottom:422.373333pt;}
.y45{bottom:424.613333pt;}
.y92{bottom:432.293333pt;}
.ybd{bottom:437.093333pt;}
.y15{bottom:438.053333pt;}
.ydb{bottom:442.133333pt;}
.y6d{bottom:448.613333pt;}
.ybc{bottom:452.693333pt;}
.y14{bottom:453.653333pt;}
.y91{bottom:455.893333pt;}
.y44{bottom:456.293333pt;}
.y6c{bottom:464.293333pt;}
.yda{bottom:466.053333pt;}
.ybb{bottom:468.293333pt;}
.y43{bottom:471.893333pt;}
.y13{bottom:477.573333pt;}
.y6b{bottom:479.893333pt;}
.yba{bottom:483.973333pt;}
.y42{bottom:487.493333pt;}
.yd9{bottom:499.253333pt;}
.yb9{bottom:499.573333pt;}
.y41{bottom:503.173333pt;}
.y6a{bottom:503.493333pt;}
.y40{bottom:518.773333pt;}
.y12{bottom:520.773333pt;}
.yb8{bottom:523.253333pt;}
.y3f{bottom:534.453333pt;}
.y69{bottom:535.173333pt;}
.yd8{bottom:542.213333pt;}
.y90{bottom:550.053333pt;}
.y68{bottom:550.773333pt;}
.y11{bottom:553.653333pt;}
.yb7{bottom:554.853333pt;}
.yd7{bottom:557.813333pt;}
.y8f{bottom:565.653333pt;}
.y3e{bottom:566.053333pt;}
.y67{bottom:566.453333pt;}
.y10{bottom:569.333333pt;}
.yb6{bottom:570.453333pt;}
.yd6{bottom:573.413333pt;}
.y8e{bottom:581.333333pt;}
.y3d{bottom:581.653333pt;}
.y66{bottom:582.053333pt;}
.yf{bottom:584.933333pt;}
.yb5{bottom:586.133333pt;}
.y3c{bottom:597.333333pt;}
.y65{bottom:597.653333pt;}
.ye{bottom:600.533333pt;}
.yb4{bottom:601.733333pt;}
.y8d{bottom:604.933333pt;}
.y64{bottom:613.333333pt;}
.yd{bottom:616.213333pt;}
.yb3{bottom:617.413333pt;}
.y3b{bottom:620.933333pt;}
.y63{bottom:628.933333pt;}
.yc{bottom:631.813333pt;}
.yb2{bottom:633.013333pt;}
.y8c{bottom:636.613333pt;}
.yf9{bottom:639.653333pt;}
.yd5{bottom:640.293333pt;}
.y62{bottom:644.613333pt;}
.yb{bottom:647.493333pt;}
.yb1{bottom:648.613333pt;}
.y8b{bottom:652.213333pt;}
.y3a{bottom:652.613333pt;}
.yd4{bottom:655.893333pt;}
.yea{bottom:661.013333pt;}
.y8a{bottom:667.813333pt;}
.y39{bottom:668.213333pt;}
.ya{bottom:671.413333pt;}
.yb0{bottom:672.293333pt;}
.yd3{bottom:679.573333pt;}
.y89{bottom:683.493333pt;}
.y38{bottom:683.813333pt;}
.y37{bottom:699.493333pt;}
.y61{bottom:699.813333pt;}
.yaf{bottom:703.893333pt;}
.yd2{bottom:711.173333pt;}
.y9{bottom:714.293333pt;}
.y36{bottom:715.093333pt;}
.y60{bottom:715.493333pt;}
.yae{bottom:719.573333pt;}
.yd1{bottom:726.773333pt;}
.y88{bottom:730.693333pt;}
.y5f{bottom:731.093333pt;}
.yad{bottom:735.173333pt;}
.y8{bottom:745.893333pt;}
.y87{bottom:746.373333pt;}
.y35{bottom:746.693333pt;}
.yd0{bottom:750.453333pt;}
.yac{bottom:750.773333pt;}
.y34{bottom:762.373333pt;}
.yab{bottom:766.453333pt;}
.y86{bottom:769.973333pt;}
.y7{bottom:777.733333pt;}
.y33{bottom:777.973333pt;}
.y5e{bottom:778.373333pt;}
.yaa{bottom:782.053333pt;}
.y32{bottom:793.653333pt;}
.y5d{bottom:793.973333pt;}
.ya9{bottom:797.733333pt;}
.y85{bottom:801.653333pt;}
.y5c{bottom:809.653333pt;}
.y6{bottom:809.733333pt;}
.y31{bottom:817.253333pt;}
.ya8{bottom:821.333333pt;}
.y84{bottom:832.853333pt;}
.y5b{bottom:833.253333pt;}
.y5{bottom:841.813333pt;}
.y83{bottom:848.533333pt;}
.y30{bottom:848.853333pt;}
.ya7{bottom:852.933333pt;}
.ycf{bottom:853.253333pt;}
.y2f{bottom:864.533333pt;}
.y5a{bottom:864.853333pt;}
.ya6{bottom:868.613333pt;}
.y4{bottom:875.893333pt;}
.y2e{bottom:880.133333pt;}
.y59{bottom:880.533333pt;}
.ya5{bottom:884.213333pt;}
.ye9{bottom:892.133333pt;}
.y2d{bottom:895.813333pt;}
.y58{bottom:896.133333pt;}
.y3{bottom:897.840000pt;}
.ya4{bottom:899.840000pt;}
.y2c{bottom:911.440000pt;}
.y57{bottom:911.840000pt;}
.ya3{bottom:915.520000pt;}
.y56{bottom:927.440000pt;}
.ya2{bottom:931.120000pt;}
.y82{bottom:935.040000pt;}
.y2b{bottom:943.040000pt;}
.ya1{bottom:946.800000pt;}
.y2a{bottom:958.720000pt;}
.y81{bottom:966.720000pt;}
.ya0{bottom:970.400000pt;}
.y29{bottom:974.320000pt;}
.y80{bottom:982.320000pt;}
.y28{bottom:990.000000pt;}
.y7f{bottom:998.000000pt;}
.y9f{bottom:1002.320000pt;}
.y27{bottom:1013.600000pt;}
.y25{bottom:1061.600000pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.h6{height:45.246562pt;}
.h5{height:49.581562pt;}
.h7{height:54.187500pt;}
.h9{height:54.927899pt;}
.h8{height:55.631875pt;}
.ha{height:60.961875pt;}
.h4{height:63.128437pt;}
.hb{height:219.200000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3{width:121.946667pt;}
.w4{width:549.146667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:6.880000pt;}
.x1{left:60.480000pt;}
.x4{left:98.879988pt;}
.x5{left:114.906667pt;}
.x2{left:180.266655pt;}
.x6{left:183.706667pt;}
.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; }
  