
    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_2a13fa3fb6109504b04be6e0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.869629;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_80494c7dccd0e01124f1bd73.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.002930;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_87fb9563a82d61fd5fd63cc1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.691406;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_3a67477787915936f3605f34.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.873535;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_623d4d4a2b206416f6578c8e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_4f7befdbf98a9c25dbbe40e2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.727539;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_54447342df140f8e79d30b88.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.002930;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.v2{vertical-align:-11.220000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:10.080000px;}
.v3{vertical-align:11.220000px;}
.v1{vertical-align:14.700000px;}
.ls3{letter-spacing:-0.397800px;}
.lsc{letter-spacing:-0.288000px;}
.lsf{letter-spacing:-0.265800px;}
.lsb{letter-spacing:-0.094200px;}
.ls2{letter-spacing:-0.036000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.072000px;}
.ls9{letter-spacing:0.147600px;}
.ls7{letter-spacing:0.151200px;}
.lsa{letter-spacing:0.165600px;}
.ls4{letter-spacing:0.191400px;}
.lse{letter-spacing:0.214560px;}
.ls8{letter-spacing:0.220200px;}
.ls5{letter-spacing:0.227400px;}
.lsd{letter-spacing:0.590400px;}
.ls6{letter-spacing:65.916000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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(57,112,80),0 0.015em rgb(57,112,80),0.015em 0 rgb(57,112,80),0 -0.015em  rgb(57,112,80);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc2{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(57,112,80);text-shadow:none;}
}
.wsd{word-spacing:-187.155120px;}
.wsb{word-spacing:-108.534240px;}
.ws2{word-spacing:-54.218304px;}
.ws4{word-spacing:-54.185760px;}
.ws9{word-spacing:-48.816000px;}
.wse{word-spacing:-39.410784px;}
.wsf{word-spacing:-39.378240px;}
.ws5{word-spacing:-32.544000px;}
.ws7{word-spacing:-28.476000px;}
.wsc{word-spacing:-27.174240px;}
.ws8{word-spacing:-24.440544px;}
.ws3{word-spacing:-24.408000px;}
.ws0{word-spacing:-24.372000px;}
.ws10{word-spacing:-21.641760px;}
.ws6{word-spacing:-0.108000px;}
.ws1{word-spacing:0.000000px;}
.wsa{word-spacing:1.032000px;}
._f{margin-left:-24.768000px;}
._2{margin-left:-9.723888px;}
._11{margin-left:-7.451136px;}
._3{margin-left:-6.122448px;}
._7{margin-left:-5.024880px;}
._4{margin-left:-3.601440px;}
._0{margin-left:-2.521008px;}
._1{margin-left:-1.080432px;}
._5{width:1.825152px;}
._14{width:2.943024px;}
._12{width:22.876512px;}
._13{width:25.488000px;}
._10{width:52.237680px;}
._6{width:365.856288px;}
._a{width:652.573968px;}
._c{width:697.033968px;}
._8{width:698.113968px;}
._e{width:701.953968px;}
._d{width:706.753968px;}
._b{width:756.733968px;}
._9{width:1791.733968px;}
.fc4{color:transparent;}
.fc2{color:rgb(5,99,193);}
.fc6{color:rgb(245,245,245);}
.fc5{color:rgb(237,125,49);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(57,112,80);}
.fs13{font-size:66.240000px;}
.fs14{font-size:84.240000px;}
.fs1d{font-size:95.760000px;}
.fs20{font-size:95.904000px;}
.fs4{font-size:108.000000px;}
.fsd{font-size:108.144000px;}
.fs3{font-size:113.760000px;}
.fs16{font-size:120.240000px;}
.fs1c{font-size:120.384000px;}
.fsc{font-size:126.000000px;}
.fs8{font-size:144.000000px;}
.fs9{font-size:144.144000px;}
.fs7{font-size:167.760000px;}
.fs1a{font-size:174.240000px;}
.fs1b{font-size:174.384000px;}
.fs18{font-size:192.240000px;}
.fs2{font-size:198.144000px;}
.fsf{font-size:216.000000px;}
.fs11{font-size:228.240000px;}
.fs10{font-size:228.384000px;}
.fs5{font-size:239.760000px;}
.fs6{font-size:239.904000px;}
.fs17{font-size:288.000000px;}
.fs15{font-size:288.144000px;}
.fs1{font-size:360.000000px;}
.fs0{font-size:360.144000px;}
.fs19{font-size:390.240000px;}
.fsa{font-size:480.240000px;}
.fs1e{font-size:480.384000px;}
.fse{font-size:576.144000px;}
.fs12{font-size:689.880000px;}
.fs1f{font-size:828.120000px;}
.fsb{font-size:995.880000px;}
.y0{bottom:0.000000px;}
.y8b{bottom:11.160000px;}
.y89{bottom:16.272000px;}
.y55{bottom:32.076000px;}
.ya8{bottom:38.376000px;}
.y54{bottom:54.756000px;}
.y88{bottom:63.468000px;}
.y5e{bottom:65.952000px;}
.ya6{bottom:83.268000px;}
.y53{bottom:87.156000px;}
.y58{bottom:88.884000px;}
.y5d{bottom:98.352000px;}
.yc3{bottom:99.072000px;}
.ya5{bottom:115.668000px;}
.y35{bottom:117.072000px;}
.y52{bottom:119.556000px;}
.y57{bottom:121.284000px;}
.y50{bottom:123.156000px;}
.y49{bottom:126.828000px;}
.y87{bottom:127.296000px;}
.yc2{bottom:130.572000px;}
.y5c{bottom:130.752000px;}
.y1c{bottom:142.632000px;}
.ya4{bottom:148.068000px;}
.y5f{bottom:151.665000px;}
.y51{bottom:151.995000px;}
.y56{bottom:153.690000px;}
.y4f{bottom:155.550000px;}
.y48{bottom:156.525000px;}
.yc1{bottom:159.405000px;}
.y5b{bottom:163.155000px;}
.y1b{bottom:172.875000px;}
.ya3{bottom:180.465000px;}
.yc0{bottom:188.205000px;}
.y8{bottom:191.490000px;}
.y4e{bottom:191.730000px;}
.ya9{bottom:192.630000px;}
.y86{bottom:193.530000px;}
.y34{bottom:199.185000px;}
.y1a{bottom:203.115000px;}
.y4a{bottom:209.265000px;}
.y8a{bottom:209.850000px;}
.ya2{bottom:212.910000px;}
.ybf{bottom:217.005000px;}
.y59{bottom:230.910000px;}
.y5a{bottom:233.205000px;}
.y19{bottom:233.355000px;}
.y47{bottom:238.965000px;}
.ybe{bottom:245.805000px;}
.y7{bottom:249.090000px;}
.y97{bottom:251.820000px;}
.y4{bottom:255.600000px;}
.y18{bottom:263.625000px;}
.y90{bottom:268.305000px;}
.y46{bottom:268.710000px;}
.ybd{bottom:274.605000px;}
.ya1{bottom:276.840000px;}
.y96{bottom:284.760000px;}
.y71{bottom:289.695000px;}
.y3d{bottom:293.370000px;}
.y17{bottom:293.865000px;}
.y45{bottom:298.410000px;}
.ybc{bottom:303.405000px;}
.y91{bottom:303.510000px;}
.yd{bottom:306.330000px;}
.y9a{bottom:317.670000px;}
.y95{bottom:317.700000px;}
.y6c{bottom:317.850000px;}
.y65{bottom:318.705000px;}
.y9f{bottom:319.110000px;}
.y70{bottom:322.125000px;}
.y3c{bottom:323.070000px;}
.y44{bottom:327.930000px;}
.y1d{bottom:330.630000px;}
.y33{bottom:330.945000px;}
.ybb{bottom:332.250000px;}
.y9c{bottom:334.110000px;}
.yc{bottom:335.490000px;}
.yf{bottom:341.895000px;}
.y74{bottom:343.005000px;}
.y7a{bottom:346.890000px;}
.y3{bottom:347.970000px;}
.y6b{bottom:350.250000px;}
.y99{bottom:350.610000px;}
.y94{bottom:350.670000px;}
.y64{bottom:351.105000px;}
.y3b{bottom:352.770000px;}
.y6f{bottom:354.525000px;}
.y68{bottom:354.705000px;}
.y11{bottom:357.045000px;}
.y43{bottom:357.630000px;}
.y85{bottom:358.530000px;}
.yba{bottom:361.050000px;}
.y3e{bottom:364.290000px;}
.yb{bottom:364.650000px;}
.y9b{bottom:367.275000px;}
.y36{bottom:369.900000px;}
.ye{bottom:374.295000px;}
.y73{bottom:375.405000px;}
.y81{bottom:376.410000px;}
.yad{bottom:377.355000px;}
.y16{bottom:379.545000px;}
.y75{bottom:381.885000px;}
.ya0{bottom:382.170000px;}
.y6a{bottom:382.650000px;}
.y63{bottom:383.550000px;}
.y93{bottom:383.610000px;}
.y98{bottom:383.730000px;}
.y9e{bottom:383.910000px;}
.y6e{bottom:386.925000px;}
.y67{bottom:387.105000px;}
.y79{bottom:387.210000px;}
.y42{bottom:387.330000px;}
.y32{bottom:389.310000px;}
.yaa{bottom:390.780000px;}
.yb9{bottom:392.865000px;}
.y3a{bottom:393.990000px;}
.y80{bottom:394.590000px;}
.yb6{bottom:406.230000px;}
.y72{bottom:407.805000px;}
.y10{bottom:410.970000px;}
.ya{bottom:411.300000px;}
.y8f{bottom:412.350000px;}
.y78{bottom:412.410000px;}
.y69{bottom:415.050000px;}
.y62{bottom:415.950000px;}
.y92{bottom:416.550000px;}
.y41{bottom:417.030000px;}
.y6d{bottom:419.325000px;}
.y66{bottom:419.505000px;}
.yb2{bottom:419.790000px;}
.y39{bottom:423.690000px;}
.y2{bottom:424.515000px;}
.y84{bottom:424.770000px;}
.y15{bottom:429.990000px;}
.yb8{bottom:440.565000px;}
.y9{bottom:446.505000px;}
.y40{bottom:446.760000px;}
.y9d{bottom:448.710000px;}
.y7f{bottom:449.670000px;}
.y77{bottom:452.550000px;}
.yb5{bottom:454.110000px;}
.y23{bottom:457.845000px;}
.y28{bottom:459.105000px;}
.y38{bottom:464.940000px;}
.yb1{bottom:467.490000px;}
.y61{bottom:468.645000px;}
.y31{bottom:471.390000px;}
.y3f{bottom:476.460000px;}
.y76{bottom:477.795000px;}
.y14{bottom:480.390000px;}
.yac{bottom:485.385000px;}
.y60{bottom:487.155000px;}
.y22{bottom:487.545000px;}
.y27{bottom:488.805000px;}
.y2e{bottom:500.475000px;}
.yb4{bottom:501.840000px;}
.y37{bottom:505.980000px;}
.y7e{bottom:514.515000px;}
.yb0{bottom:515.370000px;}
.y1{bottom:521.745000px;}
.y13{bottom:530.790000px;}
.y2b{bottom:533.880000px;}
.y21{bottom:534.885000px;}
.yb7{bottom:535.425000px;}
.y26{bottom:536.145000px;}
.y30{bottom:537.090000px;}
.yaf{bottom:563.070000px;}
.y8d{bottom:569.235000px;}
.y2a{bottom:573.510000px;}
.y20{bottom:574.530000px;}
.y2d{bottom:575.100000px;}
.y25{bottom:575.745000px;}
.y2f{bottom:576.690000px;}
.y1e{bottom:576.900000px;}
.y12{bottom:581.190000px;}
.y29{bottom:582.375000px;}
.y2c{bottom:583.950000px;}
.y1f{bottom:587.160000px;}
.y24{bottom:588.240000px;}
.y83{bottom:589.755000px;}
.yab{bottom:593.385000px;}
.yb3{bottom:596.670000px;}
.y8c{bottom:610.095000px;}
.y7b{bottom:646.770000px;}
.y4b{bottom:654.660000px;}
.y82{bottom:655.995000px;}
.yae{bottom:657.930000px;}
.y4d{bottom:679.785000px;}
.y8e{bottom:681.585000px;}
.y4c{bottom:744.585000px;}
.y6{bottom:747.510000px;}
.y7d{bottom:751.650000px;}
.ya7{bottom:779.400000px;}
.y5{bottom:779.910000px;}
.y7c{bottom:784.050000px;}
.h1b{height:54.628594px;}
.h1c{height:69.473320px;}
.h5{height:75.093750px;}
.h27{height:78.973945px;}
.h2e{height:79.092703px;}
.h1d{height:79.553320px;}
.ha{height:89.068359px;}
.h15{height:89.187117px;}
.h4{height:93.818672px;}
.h1f{height:99.162773px;}
.h26{height:99.281531px;}
.hf{height:99.562500px;}
.h10{height:99.662063px;}
.h28{height:100.125000px;}
.h9{height:100.225125px;}
.h12{height:103.913086px;}
.h11{height:112.640625px;}
.h8{height:116.645625px;}
.h14{height:118.757812px;}
.h13{height:118.876570px;}
.h23{height:121.151250px;}
.h21{height:133.666875px;}
.h24{height:143.696953px;}
.h25{height:143.815711px;}
.h17{height:149.343750px;}
.h2b{height:150.187500px;}
.h3{height:163.410750px;}
.hd{height:165.771562px;}
.he{height:165.871125px;}
.h6{height:166.708125px;}
.h7{height:166.808250px;}
.h19{height:188.231133px;}
.h18{height:188.349891px;}
.h20{height:199.125000px;}
.h1e{height:200.350125px;}
.h2{height:248.906250px;}
.h1{height:249.005812px;}
.h22{height:271.338750px;}
.h2d{height:296.894531px;}
.h2c{height:297.013289px;}
.hb{height:396.057305px;}
.h29{height:396.176063px;}
.h16{height:400.600125px;}
.h1a{height:479.682187px;}
.h2a{height:575.802188px;}
.h0{height:810.000000px;}
.hc{height:821.309238px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x4f{left:11.231979px;}
.x50{left:28.115979px;}
.x28{left:55.223979px;}
.x4e{left:57.455979px;}
.x42{left:62.027979px;}
.x1d{left:69.155979px;}
.x51{left:71.387979px;}
.x35{left:75.419979px;}
.x11{left:79.739979px;}
.x44{left:94.679979px;}
.x43{left:99.071979px;}
.x13{left:100.583979px;}
.x10{left:104.795979px;}
.x1e{left:107.351979px;}
.x31{left:113.867979px;}
.x29{left:115.775979px;}
.x7{left:127.475979px;}
.x1f{left:133.127979px;}
.x47{left:152.489979px;}
.x30{left:158.324979px;}
.x2d{left:167.939979px;}
.x45{left:180.389979px;}
.x46{left:182.549979px;}
.x3{left:210.344979px;}
.x48{left:217.154979px;}
.x2f{left:297.509979px;}
.x1{left:298.544979px;}
.x14{left:300.029979px;}
.x15{left:308.879979px;}
.xf{left:338.219979px;}
.x32{left:343.259979px;}
.x2{left:365.504979px;}
.x3e{left:390.089979px;}
.x5{left:392.609979px;}
.x27{left:394.844979px;}
.x3d{left:401.429979px;}
.x20{left:427.829979px;}
.x21{left:453.599979px;}
.x52{left:460.049979px;}
.xd{left:462.959979px;}
.x3f{left:470.009979px;}
.x38{left:473.009979px;}
.x8{left:488.129979px;}
.xe{left:515.879979px;}
.x16{left:518.729979px;}
.x6{left:528.374979px;}
.x12{left:536.579979px;}
.x4a{left:552.629979px;}
.x49{left:562.529979px;}
.x39{left:575.489979px;}
.x4b{left:600.329979px;}
.x2a{left:607.214979px;}
.x3b{left:621.329979px;}
.x33{left:624.419979px;}
.x3a{left:632.669979px;}
.x2c{left:672.089979px;}
.x17{left:740.549979px;}
.x18{left:744.404979px;}
.x22{left:748.334979px;}
.x26{left:749.804979px;}
.x41{left:769.214979px;}
.xb{left:772.409979px;}
.x23{left:774.074979px;}
.xa{left:787.709979px;}
.x53{left:848.699979px;}
.x3c{left:852.554979px;}
.x2b{left:857.009979px;}
.x9{left:863.714979px;}
.x4{left:868.349979px;}
.xc{left:872.174979px;}
.x36{left:917.744979px;}
.x4c{left:935.279979px;}
.x37{left:944.744979px;}
.x19{left:955.229979px;}
.x1a{left:959.069979px;}
.x4d{left:1037.729979px;}
.x24{left:1106.924979px;}
.x2e{left:1109.909979px;}
.x40{left:1123.664979px;}
.x25{left:1132.709979px;}
.x34{left:1137.419979px;}
.x1b{left:1168.559979px;}
.x1c{left:1172.369979px;}
@media print{
.v2{vertical-align:-9.973333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:8.960000pt;}
.v3{vertical-align:9.973333pt;}
.v1{vertical-align:13.066667pt;}
.ls3{letter-spacing:-0.353600pt;}
.lsc{letter-spacing:-0.256000pt;}
.lsf{letter-spacing:-0.236267pt;}
.lsb{letter-spacing:-0.083733pt;}
.ls2{letter-spacing:-0.032000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.064000pt;}
.ls9{letter-spacing:0.131200pt;}
.ls7{letter-spacing:0.134400pt;}
.lsa{letter-spacing:0.147200pt;}
.ls4{letter-spacing:0.170133pt;}
.lse{letter-spacing:0.190720pt;}
.ls8{letter-spacing:0.195733pt;}
.ls5{letter-spacing:0.202133pt;}
.lsd{letter-spacing:0.524800pt;}
.ls6{letter-spacing:58.592000pt;}
.wsd{word-spacing:-166.360107pt;}
.wsb{word-spacing:-96.474880pt;}
.ws2{word-spacing:-48.194048pt;}
.ws4{word-spacing:-48.165120pt;}
.ws9{word-spacing:-43.392000pt;}
.wse{word-spacing:-35.031808pt;}
.wsf{word-spacing:-35.002880pt;}
.ws5{word-spacing:-28.928000pt;}
.ws7{word-spacing:-25.312000pt;}
.wsc{word-spacing:-24.154880pt;}
.ws8{word-spacing:-21.724928pt;}
.ws3{word-spacing:-21.696000pt;}
.ws0{word-spacing:-21.664000pt;}
.ws10{word-spacing:-19.237120pt;}
.ws6{word-spacing:-0.096000pt;}
.ws1{word-spacing:0.000000pt;}
.wsa{word-spacing:0.917333pt;}
._f{margin-left:-22.016000pt;}
._2{margin-left:-8.643456pt;}
._11{margin-left:-6.623232pt;}
._3{margin-left:-5.442176pt;}
._7{margin-left:-4.466560pt;}
._4{margin-left:-3.201280pt;}
._0{margin-left:-2.240896pt;}
._1{margin-left:-0.960384pt;}
._5{width:1.622357pt;}
._14{width:2.616021pt;}
._12{width:20.334677pt;}
._13{width:22.656000pt;}
._10{width:46.433493pt;}
._6{width:325.205589pt;}
._a{width:580.065749pt;}
._c{width:619.585749pt;}
._8{width:620.545749pt;}
._e{width:623.959083pt;}
._d{width:628.225749pt;}
._b{width:672.652416pt;}
._9{width:1592.652416pt;}
.fs13{font-size:58.880000pt;}
.fs14{font-size:74.880000pt;}
.fs1d{font-size:85.120000pt;}
.fs20{font-size:85.248000pt;}
.fs4{font-size:96.000000pt;}
.fsd{font-size:96.128000pt;}
.fs3{font-size:101.120000pt;}
.fs16{font-size:106.880000pt;}
.fs1c{font-size:107.008000pt;}
.fsc{font-size:112.000000pt;}
.fs8{font-size:128.000000pt;}
.fs9{font-size:128.128000pt;}
.fs7{font-size:149.120000pt;}
.fs1a{font-size:154.880000pt;}
.fs1b{font-size:155.008000pt;}
.fs18{font-size:170.880000pt;}
.fs2{font-size:176.128000pt;}
.fsf{font-size:192.000000pt;}
.fs11{font-size:202.880000pt;}
.fs10{font-size:203.008000pt;}
.fs5{font-size:213.120000pt;}
.fs6{font-size:213.248000pt;}
.fs17{font-size:256.000000pt;}
.fs15{font-size:256.128000pt;}
.fs1{font-size:320.000000pt;}
.fs0{font-size:320.128000pt;}
.fs19{font-size:346.880000pt;}
.fsa{font-size:426.880000pt;}
.fs1e{font-size:427.008000pt;}
.fse{font-size:512.128000pt;}
.fs12{font-size:613.226667pt;}
.fs1f{font-size:736.106667pt;}
.fsb{font-size:885.226667pt;}
.y0{bottom:0.000000pt;}
.y8b{bottom:9.920000pt;}
.y89{bottom:14.464000pt;}
.y55{bottom:28.512000pt;}
.ya8{bottom:34.112000pt;}
.y54{bottom:48.672000pt;}
.y88{bottom:56.416000pt;}
.y5e{bottom:58.624000pt;}
.ya6{bottom:74.016000pt;}
.y53{bottom:77.472000pt;}
.y58{bottom:79.008000pt;}
.y5d{bottom:87.424000pt;}
.yc3{bottom:88.064000pt;}
.ya5{bottom:102.816000pt;}
.y35{bottom:104.064000pt;}
.y52{bottom:106.272000pt;}
.y57{bottom:107.808000pt;}
.y50{bottom:109.472000pt;}
.y49{bottom:112.736000pt;}
.y87{bottom:113.152000pt;}
.yc2{bottom:116.064000pt;}
.y5c{bottom:116.224000pt;}
.y1c{bottom:126.784000pt;}
.ya4{bottom:131.616000pt;}
.y5f{bottom:134.813333pt;}
.y51{bottom:135.106667pt;}
.y56{bottom:136.613333pt;}
.y4f{bottom:138.266667pt;}
.y48{bottom:139.133333pt;}
.yc1{bottom:141.693333pt;}
.y5b{bottom:145.026667pt;}
.y1b{bottom:153.666667pt;}
.ya3{bottom:160.413333pt;}
.yc0{bottom:167.293333pt;}
.y8{bottom:170.213333pt;}
.y4e{bottom:170.426667pt;}
.ya9{bottom:171.226667pt;}
.y86{bottom:172.026667pt;}
.y34{bottom:177.053333pt;}
.y1a{bottom:180.546667pt;}
.y4a{bottom:186.013333pt;}
.y8a{bottom:186.533333pt;}
.ya2{bottom:189.253333pt;}
.ybf{bottom:192.893333pt;}
.y59{bottom:205.253333pt;}
.y5a{bottom:207.293333pt;}
.y19{bottom:207.426667pt;}
.y47{bottom:212.413333pt;}
.ybe{bottom:218.493333pt;}
.y7{bottom:221.413333pt;}
.y97{bottom:223.840000pt;}
.y4{bottom:227.200000pt;}
.y18{bottom:234.333333pt;}
.y90{bottom:238.493333pt;}
.y46{bottom:238.853333pt;}
.ybd{bottom:244.093333pt;}
.ya1{bottom:246.080000pt;}
.y96{bottom:253.120000pt;}
.y71{bottom:257.506667pt;}
.y3d{bottom:260.773333pt;}
.y17{bottom:261.213333pt;}
.y45{bottom:265.253333pt;}
.ybc{bottom:269.693333pt;}
.y91{bottom:269.786667pt;}
.yd{bottom:272.293333pt;}
.y9a{bottom:282.373333pt;}
.y95{bottom:282.400000pt;}
.y6c{bottom:282.533333pt;}
.y65{bottom:283.293333pt;}
.y9f{bottom:283.653333pt;}
.y70{bottom:286.333333pt;}
.y3c{bottom:287.173333pt;}
.y44{bottom:291.493333pt;}
.y1d{bottom:293.893333pt;}
.y33{bottom:294.173333pt;}
.ybb{bottom:295.333333pt;}
.y9c{bottom:296.986667pt;}
.yc{bottom:298.213333pt;}
.yf{bottom:303.906667pt;}
.y74{bottom:304.893333pt;}
.y7a{bottom:308.346667pt;}
.y3{bottom:309.306667pt;}
.y6b{bottom:311.333333pt;}
.y99{bottom:311.653333pt;}
.y94{bottom:311.706667pt;}
.y64{bottom:312.093333pt;}
.y3b{bottom:313.573333pt;}
.y6f{bottom:315.133333pt;}
.y68{bottom:315.293333pt;}
.y11{bottom:317.373333pt;}
.y43{bottom:317.893333pt;}
.y85{bottom:318.693333pt;}
.yba{bottom:320.933333pt;}
.y3e{bottom:323.813333pt;}
.yb{bottom:324.133333pt;}
.y9b{bottom:326.466667pt;}
.y36{bottom:328.800000pt;}
.ye{bottom:332.706667pt;}
.y73{bottom:333.693333pt;}
.y81{bottom:334.586667pt;}
.yad{bottom:335.426667pt;}
.y16{bottom:337.373333pt;}
.y75{bottom:339.453333pt;}
.ya0{bottom:339.706667pt;}
.y6a{bottom:340.133333pt;}
.y63{bottom:340.933333pt;}
.y93{bottom:340.986667pt;}
.y98{bottom:341.093333pt;}
.y9e{bottom:341.253333pt;}
.y6e{bottom:343.933333pt;}
.y67{bottom:344.093333pt;}
.y79{bottom:344.186667pt;}
.y42{bottom:344.293333pt;}
.y32{bottom:346.053333pt;}
.yaa{bottom:347.360000pt;}
.yb9{bottom:349.213333pt;}
.y3a{bottom:350.213333pt;}
.y80{bottom:350.746667pt;}
.yb6{bottom:361.093333pt;}
.y72{bottom:362.493333pt;}
.y10{bottom:365.306667pt;}
.ya{bottom:365.600000pt;}
.y8f{bottom:366.533333pt;}
.y78{bottom:366.586667pt;}
.y69{bottom:368.933333pt;}
.y62{bottom:369.733333pt;}
.y92{bottom:370.266667pt;}
.y41{bottom:370.693333pt;}
.y6d{bottom:372.733333pt;}
.y66{bottom:372.893333pt;}
.yb2{bottom:373.146667pt;}
.y39{bottom:376.613333pt;}
.y2{bottom:377.346667pt;}
.y84{bottom:377.573333pt;}
.y15{bottom:382.213333pt;}
.yb8{bottom:391.613333pt;}
.y9{bottom:396.893333pt;}
.y40{bottom:397.120000pt;}
.y9d{bottom:398.853333pt;}
.y7f{bottom:399.706667pt;}
.y77{bottom:402.266667pt;}
.yb5{bottom:403.653333pt;}
.y23{bottom:406.973333pt;}
.y28{bottom:408.093333pt;}
.y38{bottom:413.280000pt;}
.yb1{bottom:415.546667pt;}
.y61{bottom:416.573333pt;}
.y31{bottom:419.013333pt;}
.y3f{bottom:423.520000pt;}
.y76{bottom:424.706667pt;}
.y14{bottom:427.013333pt;}
.yac{bottom:431.453333pt;}
.y60{bottom:433.026667pt;}
.y22{bottom:433.373333pt;}
.y27{bottom:434.493333pt;}
.y2e{bottom:444.866667pt;}
.yb4{bottom:446.080000pt;}
.y37{bottom:449.760000pt;}
.y7e{bottom:457.346667pt;}
.yb0{bottom:458.106667pt;}
.y1{bottom:463.773333pt;}
.y13{bottom:471.813333pt;}
.y2b{bottom:474.560000pt;}
.y21{bottom:475.453333pt;}
.yb7{bottom:475.933333pt;}
.y26{bottom:476.573333pt;}
.y30{bottom:477.413333pt;}
.yaf{bottom:500.506667pt;}
.y8d{bottom:505.986667pt;}
.y2a{bottom:509.786667pt;}
.y20{bottom:510.693333pt;}
.y2d{bottom:511.200000pt;}
.y25{bottom:511.773333pt;}
.y2f{bottom:512.613333pt;}
.y1e{bottom:512.800000pt;}
.y12{bottom:516.613333pt;}
.y29{bottom:517.666667pt;}
.y2c{bottom:519.066667pt;}
.y1f{bottom:521.920000pt;}
.y24{bottom:522.880000pt;}
.y83{bottom:524.226667pt;}
.yab{bottom:527.453333pt;}
.yb3{bottom:530.373333pt;}
.y8c{bottom:542.306667pt;}
.y7b{bottom:574.906667pt;}
.y4b{bottom:581.920000pt;}
.y82{bottom:583.106667pt;}
.yae{bottom:584.826667pt;}
.y4d{bottom:604.253333pt;}
.y8e{bottom:605.853333pt;}
.y4c{bottom:661.853333pt;}
.y6{bottom:664.453333pt;}
.y7d{bottom:668.133333pt;}
.ya7{bottom:692.800000pt;}
.y5{bottom:693.253333pt;}
.y7c{bottom:696.933333pt;}
.h1b{height:48.558750pt;}
.h1c{height:61.754062pt;}
.h5{height:66.750000pt;}
.h27{height:70.199062pt;}
.h2e{height:70.304625pt;}
.h1d{height:70.714062pt;}
.ha{height:79.171875pt;}
.h15{height:79.277438pt;}
.h4{height:83.394375pt;}
.h1f{height:88.144687pt;}
.h26{height:88.250250pt;}
.hf{height:88.500000pt;}
.h10{height:88.588500pt;}
.h28{height:89.000000pt;}
.h9{height:89.089000pt;}
.h12{height:92.367188pt;}
.h11{height:100.125000pt;}
.h8{height:103.685000pt;}
.h14{height:105.562500pt;}
.h13{height:105.668063pt;}
.h23{height:107.690000pt;}
.h21{height:118.815000pt;}
.h24{height:127.730625pt;}
.h25{height:127.836187pt;}
.h17{height:132.750000pt;}
.h2b{height:133.500000pt;}
.h3{height:145.254000pt;}
.hd{height:147.352500pt;}
.he{height:147.441000pt;}
.h6{height:148.185000pt;}
.h7{height:148.274000pt;}
.h19{height:167.316563pt;}
.h18{height:167.422125pt;}
.h20{height:177.000000pt;}
.h1e{height:178.089000pt;}
.h2{height:221.250000pt;}
.h1{height:221.338500pt;}
.h22{height:241.190000pt;}
.h2d{height:263.906250pt;}
.h2c{height:264.011813pt;}
.hb{height:352.050937pt;}
.h29{height:352.156500pt;}
.h16{height:356.089000pt;}
.h1a{height:426.384167pt;}
.h2a{height:511.824167pt;}
.h0{height:720.000000pt;}
.hc{height:730.052656pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x4f{left:9.983981pt;}
.x50{left:24.991981pt;}
.x28{left:49.087981pt;}
.x4e{left:51.071981pt;}
.x42{left:55.135981pt;}
.x1d{left:61.471981pt;}
.x51{left:63.455981pt;}
.x35{left:67.039981pt;}
.x11{left:70.879981pt;}
.x44{left:84.159981pt;}
.x43{left:88.063981pt;}
.x13{left:89.407981pt;}
.x10{left:93.151981pt;}
.x1e{left:95.423981pt;}
.x31{left:101.215981pt;}
.x29{left:102.911981pt;}
.x7{left:113.311981pt;}
.x1f{left:118.335981pt;}
.x47{left:135.546648pt;}
.x30{left:140.733314pt;}
.x2d{left:149.279981pt;}
.x45{left:160.346648pt;}
.x46{left:162.266648pt;}
.x3{left:186.973314pt;}
.x48{left:193.026648pt;}
.x2f{left:264.453314pt;}
.x1{left:265.373314pt;}
.x14{left:266.693314pt;}
.x15{left:274.559981pt;}
.xf{left:300.639981pt;}
.x32{left:305.119981pt;}
.x2{left:324.893314pt;}
.x3e{left:346.746648pt;}
.x5{left:348.986648pt;}
.x27{left:350.973314pt;}
.x3d{left:356.826648pt;}
.x20{left:380.293314pt;}
.x21{left:403.199981pt;}
.x52{left:408.933314pt;}
.xd{left:411.519981pt;}
.x3f{left:417.786648pt;}
.x38{left:420.453314pt;}
.x8{left:433.893314pt;}
.xe{left:458.559981pt;}
.x16{left:461.093314pt;}
.x6{left:469.666648pt;}
.x12{left:476.959981pt;}
.x4a{left:491.226648pt;}
.x49{left:500.026648pt;}
.x39{left:511.546648pt;}
.x4b{left:533.626648pt;}
.x2a{left:539.746648pt;}
.x3b{left:552.293314pt;}
.x33{left:555.039981pt;}
.x3a{left:562.373314pt;}
.x2c{left:597.413314pt;}
.x17{left:658.266648pt;}
.x18{left:661.693314pt;}
.x22{left:665.186648pt;}
.x26{left:666.493314pt;}
.x41{left:683.746648pt;}
.xb{left:686.586648pt;}
.x23{left:688.066648pt;}
.xa{left:700.186648pt;}
.x53{left:754.399981pt;}
.x3c{left:757.826648pt;}
.x2b{left:761.786648pt;}
.x9{left:767.746648pt;}
.x4{left:771.866648pt;}
.xc{left:775.266648pt;}
.x36{left:815.773314pt;}
.x4c{left:831.359981pt;}
.x37{left:839.773314pt;}
.x19{left:849.093314pt;}
.x1a{left:852.506648pt;}
.x4d{left:922.426648pt;}
.x24{left:983.933314pt;}
.x2e{left:986.586648pt;}
.x40{left:998.813314pt;}
.x25{left:1006.853314pt;}
.x34{left:1011.039981pt;}
.x1b{left:1038.719981pt;}
.x1c{left:1042.106648pt;}
}




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