
    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_66cf782f954b47614081c042.woff')format("woff");}.ff1{font-family:ff1;line-height:1.107422;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_b42c509b5e1b0b24ce56a5d9.woff')format("woff");}.ff2{font-family:ff2;line-height:0.962402;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_bced58211d877b1243fd48a4.woff')format("woff");}.ff3{font-family:ff3;line-height:1.107422;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_3b39d7a3b16dbb51cbf7b7dc.woff')format("woff");}.ff4{font-family:ff4;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff5{font-family:ff5;line-height:1.003906;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_2c2e00bfdde57115a076ecbc.woff')format("woff");}.ff6{font-family:ff6;line-height:0.948242;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_a467f23b4bbddafa9edcf0b1.woff')format("woff");}.ff7{font-family:ff7;line-height:0.853027;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;}
.m1{transform:matrix(0.248372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248372,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249669,0.000000,0.000000,0.250000,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);}
.m3{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);}
.v4{vertical-align:-24.000000px;}
.v2{vertical-align:-21.000000px;}
.v5{vertical-align:-9.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.000000px;}
.v3{vertical-align:23.970000px;}
.lse{letter-spacing:-2.016000px;}
.lsc{letter-spacing:-1.032000px;}
.lsf{letter-spacing:-0.984000px;}
.ls8{letter-spacing:-0.036000px;}
.ls9{letter-spacing:-0.024000px;}
.lsa{letter-spacing:-0.012000px;}
.ls7{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.012000px;}
.ls5{letter-spacing:0.024000px;}
.ls14{letter-spacing:0.096000px;}
.ls1{letter-spacing:0.312000px;}
.ls15{letter-spacing:0.492000px;}
.ls11{letter-spacing:0.528000px;}
.ls6{letter-spacing:0.984000px;}
.lsd{letter-spacing:1.164000px;}
.ls2{letter-spacing:1.320000px;}
.ls10{letter-spacing:1.968000px;}
.ls12{letter-spacing:2.304000px;}
.ls4{letter-spacing:3.012000px;}
.ls13{letter-spacing:3.984000px;}
.ls0{letter-spacing:166.806000px;}
.ls3{letter-spacing:488.016000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-29.988000px;}
.wsf{word-spacing:-21.984000px;}
.wsa{word-spacing:-21.000000px;}
.wsd{word-spacing:-20.544000px;}
.wsc{word-spacing:-20.040000px;}
.ws5{word-spacing:-20.016000px;}
.ws6{word-spacing:-19.992000px;}
.wsb{word-spacing:-19.032000px;}
.ws7{word-spacing:-18.984000px;}
.wse{word-spacing:-18.348000px;}
.ws4{word-spacing:-16.680000px;}
.ws2{word-spacing:-14.328000px;}
.ws0{word-spacing:-13.656000px;}
.ws1{word-spacing:-13.344000px;}
.ws8{word-spacing:-11.676000px;}
.ws9{word-spacing:0.000000px;}
._b{margin-left:-5.934000px;}
._5{margin-left:-4.446000px;}
._2{margin-left:-2.454000px;}
._1{margin-left:-1.008000px;}
._0{width:1.584000px;}
._3{width:3.222000px;}
._7{width:4.980000px;}
._8{width:6.540000px;}
._9{width:7.764000px;}
._f{width:8.838000px;}
._e{width:10.620000px;}
._d{width:12.504000px;}
._15{width:13.740000px;}
._a{width:15.912000px;}
._c{width:18.864000px;}
._13{width:24.114000px;}
._14{width:25.188000px;}
._12{width:26.274000px;}
._11{width:27.462000px;}
._10{width:29.424000px;}
._16{width:33.192000px;}
._17{width:34.758000px;}
._18{width:42.912000px;}
._4{width:508.986000px;}
._6{width:1171.932000px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:30.000000px;}
.fs4{font-size:34.059259px;}
.fs9{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs6{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fs3{font-size:66.754693px;}
.fs2{font-size:72.000000px;}
.fs7{font-size:84.000000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y5d{bottom:3.750000px;}
.y5{bottom:28.413862px;}
.y6{bottom:36.114559px;}
.y3{bottom:66.037500px;}
.y28{bottom:89.325000px;}
.y6e{bottom:90.075000px;}
.y5b{bottom:97.575000px;}
.y27{bottom:108.825000px;}
.y6d{bottom:110.325000px;}
.y9f{bottom:112.575000px;}
.y5a{bottom:118.575000px;}
.yc7{bottom:126.075000px;}
.y26{bottom:127.575000px;}
.y6c{bottom:131.325000px;}
.y9e{bottom:133.575000px;}
.y59{bottom:139.612500px;}
.y25{bottom:146.362500px;}
.y6b{bottom:152.355000px;}
.y9d{bottom:153.870000px;}
.y58{bottom:159.870000px;}
.y24{bottom:165.855000px;}
.y6a{bottom:172.605000px;}
.y9c{bottom:174.870000px;}
.y23{bottom:180.870000px;}
.yc6{bottom:185.370000px;}
.y69{bottom:193.620000px;}
.y9b{bottom:195.855000px;}
.y57{bottom:201.120000px;}
.yc5{bottom:206.400000px;}
.y68{bottom:213.900000px;}
.y9a{bottom:216.900000px;}
.y56{bottom:222.150000px;}
.yc4{bottom:228.900000px;}
.y67{bottom:234.900000px;}
.y99{bottom:237.150000px;}
.y55{bottom:243.150000px;}
.yc3{bottom:249.900000px;}
.y66{bottom:255.900000px;}
.y98{bottom:258.150000px;}
.y54{bottom:263.400000px;}
.yc2{bottom:270.195000px;}
.y65{bottom:276.195000px;}
.y97{bottom:278.445000px;}
.y53{bottom:284.445000px;}
.y81{bottom:287.445000px;}
.yc1{bottom:291.195000px;}
.y64{bottom:297.195000px;}
.y96{bottom:299.445000px;}
.y52{bottom:304.695000px;}
.y80{bottom:308.445000px;}
.yc0{bottom:311.445000px;}
.y63{bottom:318.195000px;}
.y95{bottom:320.445000px;}
.y51{bottom:325.695000px;}
.y7f{bottom:329.445000px;}
.ybf{bottom:332.475000px;}
.y94{bottom:340.725000px;}
.y62{bottom:342.975000px;}
.y50{bottom:345.975000px;}
.y7e{bottom:349.725000px;}
.ybe{bottom:353.475000px;}
.y93{bottom:361.725000px;}
.y61{bottom:363.225000px;}
.y4f{bottom:367.725000px;}
.y7d{bottom:370.725000px;}
.ybd{bottom:373.725000px;}
.y92{bottom:381.975000px;}
.y60{bottom:384.225000px;}
.y4e{bottom:390.975000px;}
.ybc{bottom:394.725000px;}
.y91{bottom:403.005000px;}
.y5f{bottom:406.005000px;}
.y4d{bottom:412.005000px;}
.ybb{bottom:415.005000px;}
.y90{bottom:424.005000px;}
.y5e{bottom:427.005000px;}
.y4c{bottom:432.255000px;}
.y7c{bottom:433.005000px;}
.yba{bottom:436.005000px;}
.y8f{bottom:444.255000px;}
.y5c{bottom:448.755000px;}
.y4b{bottom:453.255000px;}
.yb9{bottom:457.005000px;}
.y8e{bottom:465.300000px;}
.y4a{bottom:474.300000px;}
.yb8{bottom:477.300000px;}
.y8d{bottom:485.550000px;}
.y49{bottom:494.550000px;}
.yb7{bottom:498.300000px;}
.y8c{bottom:506.550000px;}
.y48{bottom:515.550000px;}
.yb6{bottom:518.550000px;}
.y8b{bottom:527.595000px;}
.y22{bottom:529.095000px;}
.y47{bottom:535.845000px;}
.y7b{bottom:536.580000px;}
.yb5{bottom:539.580000px;}
.y8a{bottom:547.845000px;}
.y21{bottom:550.080000px;}
.y7a{bottom:555.345000px;}
.y46{bottom:556.830000px;}
.yb4{bottom:560.595000px;}
.y89{bottom:569.595000px;}
.y20{bottom:570.330000px;}
.y79{bottom:574.845000px;}
.y45{bottom:577.845000px;}
.yb3{bottom:580.845000px;}
.y1f{bottom:591.375000px;}
.y88{bottom:592.875000px;}
.y78{bottom:593.625000px;}
.y44{bottom:598.125000px;}
.yb2{bottom:601.875000px;}
.y77{bottom:608.625000px;}
.y1e{bottom:612.375000px;}
.y87{bottom:613.875000px;}
.y43{bottom:619.125000px;}
.yb1{bottom:622.125000px;}
.y1d{bottom:632.625000px;}
.y86{bottom:634.125000px;}
.y42{bottom:639.375000px;}
.yb0{bottom:643.125000px;}
.y1c{bottom:653.625000px;}
.y41{bottom:660.405000px;}
.yaf{bottom:664.155000px;}
.y85{bottom:672.405000px;}
.y1b{bottom:673.905000px;}
.y40{bottom:681.405000px;}
.yae{bottom:684.405000px;}
.y84{bottom:691.155000px;}
.y1a{bottom:694.905000px;}
.y3f{bottom:701.655000px;}
.yad{bottom:705.420000px;}
.y83{bottom:710.670000px;}
.y19{bottom:715.905000px;}
.y3e{bottom:722.700000px;}
.y82{bottom:725.700000px;}
.y18{bottom:736.200000px;}
.y3d{bottom:742.950000px;}
.yac{bottom:746.700000px;}
.y17{bottom:757.200000px;}
.y3c{bottom:763.950000px;}
.yab{bottom:767.700000px;}
.y16{bottom:777.450000px;}
.y3b{bottom:784.995000px;}
.yaa{bottom:787.995000px;}
.y15{bottom:799.230000px;}
.y3a{bottom:805.245000px;}
.ya9{bottom:808.995000px;}
.y14{bottom:822.495000px;}
.y39{bottom:826.230000px;}
.ya8{bottom:829.245000px;}
.y13{bottom:843.480000px;}
.y38{bottom:846.495000px;}
.ya7{bottom:850.275000px;}
.y12{bottom:863.025000px;}
.y37{bottom:867.525000px;}
.ya6{bottom:871.275000px;}
.y11{bottom:881.025000px;}
.y36{bottom:888.525000px;}
.ya5{bottom:891.525000px;}
.y10{bottom:902.025000px;}
.y35{bottom:908.775000px;}
.ya4{bottom:912.570000px;}
.yf{bottom:923.070000px;}
.y34{bottom:929.820000px;}
.ya3{bottom:932.820000px;}
.ye{bottom:943.320000px;}
.y33{bottom:950.070000px;}
.ya2{bottom:953.820000px;}
.yd{bottom:965.820000px;}
.y32{bottom:971.070000px;}
.ya1{bottom:974.820000px;}
.y31{bottom:992.100000px;}
.ya0{bottom:995.100000px;}
.yc{bottom:997.350000px;}
.y30{bottom:1012.350000px;}
.y76{bottom:1016.100000px;}
.yb{bottom:1028.100000px;}
.y2f{bottom:1033.350000px;}
.y75{bottom:1036.350000px;}
.y2e{bottom:1053.630000px;}
.y74{bottom:1057.380000px;}
.ya{bottom:1058.880000px;}
.y2d{bottom:1074.630000px;}
.y73{bottom:1078.380000px;}
.y9{bottom:1090.380000px;}
.y2c{bottom:1095.630000px;}
.y72{bottom:1098.630000px;}
.y2b{bottom:1115.925000px;}
.y71{bottom:1119.675000px;}
.y8{bottom:1121.175000px;}
.y2a{bottom:1136.925000px;}
.y70{bottom:1139.925000px;}
.y7{bottom:1152.675000px;}
.y29{bottom:1158.675000px;}
.y6f{bottom:1160.925000px;}
.y2{bottom:1189.455000px;}
.y4{bottom:1192.050000px;}
.y1{bottom:1208.955000px;}
.h12{height:20.250000px;}
.h11{height:21.000000px;}
.h10{height:21.037500px;}
.h6{height:33.876323px;}
.h1{height:43.054688px;}
.h3{height:44.070184px;}
.h5{height:44.098032px;}
.h2{height:49.992188px;}
.h13{height:53.121094px;}
.hb{height:53.818359px;}
.h9{height:54.140625px;}
.hd{height:59.200195px;}
.he{height:61.642852px;}
.hf{height:61.672852px;}
.hc{height:63.164062px;}
.ha{height:64.582031px;}
.h4{height:66.396148px;}
.h8{height:81.210938px;}
.h7{height:96.873047px;}
.h0{height:1263.000000px;}
.w2{width:53.450377px;}
.w3{width:53.557224px;}
.w5{width:87.825000px;}
.w6{width:103.575000px;}
.w7{width:104.362500px;}
.w4{width:159.120000px;}
.w8{width:201.150000px;}
.w1{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:7.500000px;}
.x2{left:73.491283px;}
.x1{left:84.824987px;}
.x9{left:93.074987px;}
.x6{left:103.574987px;}
.x1d{left:114.862487px;}
.x13{left:117.112500px;}
.x5{left:144.862487px;}
.x1e{left:180.899987px;}
.x8{left:189.899987px;}
.xc{left:226.694987px;}
.x11{left:243.944987px;}
.x12{left:254.474987px;}
.x15{left:276.975000px;}
.xb{left:288.224987px;}
.x7{left:312.269987px;}
.xa{left:325.769987px;}
.x10{left:336.254987px;}
.x16{left:365.550000px;}
.xf{left:385.049987px;}
.x1c{left:389.594987px;}
.x19{left:397.094987px;}
.xd{left:403.844987px;}
.x3{left:407.594987px;}
.x4{left:446.624987px;}
.x17{left:469.875000px;}
.x18{left:574.995000px;}
.xe{left:762.629987px;}
.x1b{left:778.379987px;}
.x1a{left:806.924987px;}
@media print{
.v4{vertical-align:-21.333333pt;}
.v2{vertical-align:-18.666667pt;}
.v5{vertical-align:-8.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.666667pt;}
.v3{vertical-align:21.306667pt;}
.lse{letter-spacing:-1.792000pt;}
.lsc{letter-spacing:-0.917333pt;}
.lsf{letter-spacing:-0.874667pt;}
.ls8{letter-spacing:-0.032000pt;}
.ls9{letter-spacing:-0.021333pt;}
.lsa{letter-spacing:-0.010667pt;}
.ls7{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.010667pt;}
.ls5{letter-spacing:0.021333pt;}
.ls14{letter-spacing:0.085333pt;}
.ls1{letter-spacing:0.277333pt;}
.ls15{letter-spacing:0.437333pt;}
.ls11{letter-spacing:0.469333pt;}
.ls6{letter-spacing:0.874667pt;}
.lsd{letter-spacing:1.034667pt;}
.ls2{letter-spacing:1.173333pt;}
.ls10{letter-spacing:1.749333pt;}
.ls12{letter-spacing:2.048000pt;}
.ls4{letter-spacing:2.677333pt;}
.ls13{letter-spacing:3.541333pt;}
.ls0{letter-spacing:148.272000pt;}
.ls3{letter-spacing:433.792000pt;}
.ws3{word-spacing:-26.656000pt;}
.wsf{word-spacing:-19.541333pt;}
.wsa{word-spacing:-18.666667pt;}
.wsd{word-spacing:-18.261333pt;}
.wsc{word-spacing:-17.813333pt;}
.ws5{word-spacing:-17.792000pt;}
.ws6{word-spacing:-17.770667pt;}
.wsb{word-spacing:-16.917333pt;}
.ws7{word-spacing:-16.874667pt;}
.wse{word-spacing:-16.309333pt;}
.ws4{word-spacing:-14.826667pt;}
.ws2{word-spacing:-12.736000pt;}
.ws0{word-spacing:-12.138667pt;}
.ws1{word-spacing:-11.861333pt;}
.ws8{word-spacing:-10.378667pt;}
.ws9{word-spacing:0.000000pt;}
._b{margin-left:-5.274667pt;}
._5{margin-left:-3.952000pt;}
._2{margin-left:-2.181333pt;}
._1{margin-left:-0.896000pt;}
._0{width:1.408000pt;}
._3{width:2.864000pt;}
._7{width:4.426667pt;}
._8{width:5.813333pt;}
._9{width:6.901333pt;}
._f{width:7.856000pt;}
._e{width:9.440000pt;}
._d{width:11.114667pt;}
._15{width:12.213333pt;}
._a{width:14.144000pt;}
._c{width:16.768000pt;}
._13{width:21.434667pt;}
._14{width:22.389333pt;}
._12{width:23.354667pt;}
._11{width:24.410667pt;}
._10{width:26.154667pt;}
._16{width:29.504000pt;}
._17{width:30.896000pt;}
._18{width:38.144000pt;}
._4{width:452.432000pt;}
._6{width:1041.717333pt;}
.fs1{font-size:26.666667pt;}
.fs4{font-size:30.274897pt;}
.fs9{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fs3{font-size:59.337505pt;}
.fs2{font-size:64.000000pt;}
.fs7{font-size:74.666667pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y5d{bottom:3.333333pt;}
.y5{bottom:25.256766pt;}
.y6{bottom:32.101830pt;}
.y3{bottom:58.700000pt;}
.y28{bottom:79.400000pt;}
.y6e{bottom:80.066667pt;}
.y5b{bottom:86.733333pt;}
.y27{bottom:96.733333pt;}
.y6d{bottom:98.066667pt;}
.y9f{bottom:100.066667pt;}
.y5a{bottom:105.400000pt;}
.yc7{bottom:112.066667pt;}
.y26{bottom:113.400000pt;}
.y6c{bottom:116.733333pt;}
.y9e{bottom:118.733333pt;}
.y59{bottom:124.100000pt;}
.y25{bottom:130.100000pt;}
.y6b{bottom:135.426667pt;}
.y9d{bottom:136.773333pt;}
.y58{bottom:142.106667pt;}
.y24{bottom:147.426667pt;}
.y6a{bottom:153.426667pt;}
.y9c{bottom:155.440000pt;}
.y23{bottom:160.773333pt;}
.yc6{bottom:164.773333pt;}
.y69{bottom:172.106667pt;}
.y9b{bottom:174.093333pt;}
.y57{bottom:178.773333pt;}
.yc5{bottom:183.466667pt;}
.y68{bottom:190.133333pt;}
.y9a{bottom:192.800000pt;}
.y56{bottom:197.466667pt;}
.yc4{bottom:203.466667pt;}
.y67{bottom:208.800000pt;}
.y99{bottom:210.800000pt;}
.y55{bottom:216.133333pt;}
.yc3{bottom:222.133333pt;}
.y66{bottom:227.466667pt;}
.y98{bottom:229.466667pt;}
.y54{bottom:234.133333pt;}
.yc2{bottom:240.173333pt;}
.y65{bottom:245.506667pt;}
.y97{bottom:247.506667pt;}
.y53{bottom:252.840000pt;}
.y81{bottom:255.506667pt;}
.yc1{bottom:258.840000pt;}
.y64{bottom:264.173333pt;}
.y96{bottom:266.173333pt;}
.y52{bottom:270.840000pt;}
.y80{bottom:274.173333pt;}
.yc0{bottom:276.840000pt;}
.y63{bottom:282.840000pt;}
.y95{bottom:284.840000pt;}
.y51{bottom:289.506667pt;}
.y7f{bottom:292.840000pt;}
.ybf{bottom:295.533333pt;}
.y94{bottom:302.866667pt;}
.y62{bottom:304.866667pt;}
.y50{bottom:307.533333pt;}
.y7e{bottom:310.866667pt;}
.ybe{bottom:314.200000pt;}
.y93{bottom:321.533333pt;}
.y61{bottom:322.866667pt;}
.y4f{bottom:326.866667pt;}
.y7d{bottom:329.533333pt;}
.ybd{bottom:332.200000pt;}
.y92{bottom:339.533333pt;}
.y60{bottom:341.533333pt;}
.y4e{bottom:347.533333pt;}
.ybc{bottom:350.866667pt;}
.y91{bottom:358.226667pt;}
.y5f{bottom:360.893333pt;}
.y4d{bottom:366.226667pt;}
.ybb{bottom:368.893333pt;}
.y90{bottom:376.893333pt;}
.y5e{bottom:379.560000pt;}
.y4c{bottom:384.226667pt;}
.y7c{bottom:384.893333pt;}
.yba{bottom:387.560000pt;}
.y8f{bottom:394.893333pt;}
.y5c{bottom:398.893333pt;}
.y4b{bottom:402.893333pt;}
.yb9{bottom:406.226667pt;}
.y8e{bottom:413.600000pt;}
.y4a{bottom:421.600000pt;}
.yb8{bottom:424.266667pt;}
.y8d{bottom:431.600000pt;}
.y49{bottom:439.600000pt;}
.yb7{bottom:442.933333pt;}
.y8c{bottom:450.266667pt;}
.y48{bottom:458.266667pt;}
.yb6{bottom:460.933333pt;}
.y8b{bottom:468.973333pt;}
.y22{bottom:470.306667pt;}
.y47{bottom:476.306667pt;}
.y7b{bottom:476.960000pt;}
.yb5{bottom:479.626667pt;}
.y8a{bottom:486.973333pt;}
.y21{bottom:488.960000pt;}
.y7a{bottom:493.640000pt;}
.y46{bottom:494.960000pt;}
.yb4{bottom:498.306667pt;}
.y89{bottom:506.306667pt;}
.y20{bottom:506.960000pt;}
.y79{bottom:510.973333pt;}
.y45{bottom:513.640000pt;}
.yb3{bottom:516.306667pt;}
.y1f{bottom:525.666667pt;}
.y88{bottom:527.000000pt;}
.y78{bottom:527.666667pt;}
.y44{bottom:531.666667pt;}
.yb2{bottom:535.000000pt;}
.y77{bottom:541.000000pt;}
.y1e{bottom:544.333333pt;}
.y87{bottom:545.666667pt;}
.y43{bottom:550.333333pt;}
.yb1{bottom:553.000000pt;}
.y1d{bottom:562.333333pt;}
.y86{bottom:563.666667pt;}
.y42{bottom:568.333333pt;}
.yb0{bottom:571.666667pt;}
.y1c{bottom:581.000000pt;}
.y41{bottom:587.026667pt;}
.yaf{bottom:590.360000pt;}
.y85{bottom:597.693333pt;}
.y1b{bottom:599.026667pt;}
.y40{bottom:605.693333pt;}
.yae{bottom:608.360000pt;}
.y84{bottom:614.360000pt;}
.y1a{bottom:617.693333pt;}
.y3f{bottom:623.693333pt;}
.yad{bottom:627.040000pt;}
.y83{bottom:631.706667pt;}
.y19{bottom:636.360000pt;}
.y3e{bottom:642.400000pt;}
.y82{bottom:645.066667pt;}
.y18{bottom:654.400000pt;}
.y3d{bottom:660.400000pt;}
.yac{bottom:663.733333pt;}
.y17{bottom:673.066667pt;}
.y3c{bottom:679.066667pt;}
.yab{bottom:682.400000pt;}
.y16{bottom:691.066667pt;}
.y3b{bottom:697.773333pt;}
.yaa{bottom:700.440000pt;}
.y15{bottom:710.426667pt;}
.y3a{bottom:715.773333pt;}
.ya9{bottom:719.106667pt;}
.y14{bottom:731.106667pt;}
.y39{bottom:734.426667pt;}
.ya8{bottom:737.106667pt;}
.y13{bottom:749.760000pt;}
.y38{bottom:752.440000pt;}
.ya7{bottom:755.800000pt;}
.y12{bottom:767.133333pt;}
.y37{bottom:771.133333pt;}
.ya6{bottom:774.466667pt;}
.y11{bottom:783.133333pt;}
.y36{bottom:789.800000pt;}
.ya5{bottom:792.466667pt;}
.y10{bottom:801.800000pt;}
.y35{bottom:807.800000pt;}
.ya4{bottom:811.173333pt;}
.yf{bottom:820.506667pt;}
.y34{bottom:826.506667pt;}
.ya3{bottom:829.173333pt;}
.ye{bottom:838.506667pt;}
.y33{bottom:844.506667pt;}
.ya2{bottom:847.840000pt;}
.yd{bottom:858.506667pt;}
.y32{bottom:863.173333pt;}
.ya1{bottom:866.506667pt;}
.y31{bottom:881.866667pt;}
.ya0{bottom:884.533333pt;}
.yc{bottom:886.533333pt;}
.y30{bottom:899.866667pt;}
.y76{bottom:903.200000pt;}
.yb{bottom:913.866667pt;}
.y2f{bottom:918.533333pt;}
.y75{bottom:921.200000pt;}
.y2e{bottom:936.560000pt;}
.y74{bottom:939.893333pt;}
.ya{bottom:941.226667pt;}
.y2d{bottom:955.226667pt;}
.y73{bottom:958.560000pt;}
.y9{bottom:969.226667pt;}
.y2c{bottom:973.893333pt;}
.y72{bottom:976.560000pt;}
.y2b{bottom:991.933333pt;}
.y71{bottom:995.266667pt;}
.y8{bottom:996.600000pt;}
.y2a{bottom:1010.600000pt;}
.y70{bottom:1013.266667pt;}
.y7{bottom:1024.600000pt;}
.y29{bottom:1029.933333pt;}
.y6f{bottom:1031.933333pt;}
.y2{bottom:1057.293333pt;}
.y4{bottom:1059.600000pt;}
.y1{bottom:1074.626667pt;}
.h12{height:18.000000pt;}
.h11{height:18.666667pt;}
.h10{height:18.700000pt;}
.h6{height:30.112287pt;}
.h1{height:38.270833pt;}
.h3{height:39.173497pt;}
.h5{height:39.198251pt;}
.h2{height:44.437500pt;}
.h13{height:47.218750pt;}
.hb{height:47.838542pt;}
.h9{height:48.125000pt;}
.hd{height:52.622396pt;}
.he{height:54.793646pt;}
.hf{height:54.820312pt;}
.hc{height:56.145833pt;}
.ha{height:57.406250pt;}
.h4{height:59.018798pt;}
.h8{height:72.187500pt;}
.h7{height:86.109375pt;}
.h0{height:1122.666667pt;}
.w2{width:47.511447pt;}
.w3{width:47.606421pt;}
.w5{width:78.066667pt;}
.w6{width:92.066667pt;}
.w7{width:92.766667pt;}
.w4{width:141.440000pt;}
.w8{width:178.800000pt;}
.w1{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:6.666667pt;}
.x2{left:65.325585pt;}
.x1{left:75.399988pt;}
.x9{left:82.733322pt;}
.x6{left:92.066655pt;}
.x1d{left:102.099988pt;}
.x13{left:104.100000pt;}
.x5{left:128.766655pt;}
.x1e{left:160.799988pt;}
.x8{left:168.799988pt;}
.xc{left:201.506655pt;}
.x11{left:216.839988pt;}
.x12{left:226.199988pt;}
.x15{left:246.200000pt;}
.xb{left:256.199988pt;}
.x7{left:277.573322pt;}
.xa{left:289.573322pt;}
.x10{left:298.893322pt;}
.x16{left:324.933333pt;}
.xf{left:342.266655pt;}
.x1c{left:346.306655pt;}
.x19{left:352.973322pt;}
.xd{left:358.973322pt;}
.x3{left:362.306655pt;}
.x4{left:396.999988pt;}
.x17{left:417.666667pt;}
.x18{left:511.106667pt;}
.xe{left:677.893322pt;}
.x1b{left:691.893322pt;}
.x1a{left:717.266655pt;}
}




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