
    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_823e8e1c40a5415b2d78a2e3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_4b19a26a1a6c3220a4062d19.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;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_945d4d39b762b143e1bc21aa.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.854004;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_8408991ae7a9616e8691248f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.104004;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_a6bfd9a19379147057aa4a68.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.104004;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_e8ea01b5cf25ec83b85611a3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.946777;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_9a0134153a566a2695255170.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.854004;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_e95aa7898097bd6d249e51aa.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.854004;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:ffa;src:url('chunks/assets/font_1cb3207bc158eded77e201ec.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938477;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:ffb;src:url('chunks/assets/font_6a855e43e44fbb805673f57f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938477;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:ffc;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_23bf98babb6e22549dcf3b66.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.091309;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:ffe;src:url('chunks/assets/font_83d47834b0165dcca57a258d.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.091309;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:fff;src:url('chunks/assets/font_01f912a567c764bb2f5e1ddc.woff2')format("woff");}.fff{font-family:fff;line-height:1.090332;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:ff10;src:url('chunks/assets/font_461e90ce83f2e0d883057685.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.090332;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);}
.v0{vertical-align:0.000000px;}
.ls10{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.288000px;}
.lsc{letter-spacing:-0.250800px;}
.ls7{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.175800px;}
.ls3{letter-spacing:-0.144000px;}
.lsd{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.720000px;}
.ls0{letter-spacing:0.953280px;}
.ls1{letter-spacing:19.781280px;}
.lse{letter-spacing:20.880000px;}
.lsa{letter-spacing:21.221280px;}
.ls9{letter-spacing:33.984000px;}
.ls8{letter-spacing:64.026720px;}
.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;}
}
.ws9{word-spacing:-66.240000px;}
.ws6{word-spacing:-59.760000px;}
.ws1{word-spacing:-21.420000px;}
.ws2{word-spacing:-21.060000px;}
.ws5{word-spacing:-19.800000px;}
.ws0{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.784000px;}
.wsa{word-spacing:-17.712000px;}
.ws7{word-spacing:-11.813640px;}
.ws8{word-spacing:-11.738640px;}
.ws3{word-spacing:0.000000px;}
._8{margin-left:-12.485520px;}
._1b{margin-left:-10.164240px;}
._2{margin-left:-8.213760px;}
._7{margin-left:-6.798960px;}
._5{margin-left:-4.883760px;}
._13{margin-left:-3.792240px;}
._1{margin-left:-2.782080px;}
._0{margin-left:-1.324800px;}
._3{width:1.451520px;}
._b{width:2.788800px;}
._11{width:4.104000px;}
._12{width:5.227680px;}
._1d{width:6.912000px;}
._17{width:8.352000px;}
._18{width:9.420480px;}
._f{width:10.644480px;}
._e{width:11.808000px;}
._21{width:12.816000px;}
._22{width:13.896000px;}
._1c{width:15.492000px;}
._10{width:16.920000px;}
._15{width:19.440000px;}
._1f{width:21.312000px;}
._20{width:22.392000px;}
._25{width:23.616480px;}
._24{width:24.924000px;}
._19{width:26.280000px;}
._1a{width:27.468960px;}
._23{width:28.473120px;}
._28{width:29.990880px;}
._1e{width:31.608000px;}
._6{width:37.920960px;}
._26{width:39.052800px;}
._27{width:43.084800px;}
._16{width:44.928000px;}
._4{width:46.922400px;}
._c{width:61.941600px;}
._d{width:69.330240px;}
._2a{width:73.296000px;}
._2b{width:74.664000px;}
._a{width:129.584160px;}
._9{width:136.044000px;}
._14{width:177.048720px;}
._29{width:279.216000px;}
.fc2{color:rgb(70,120,134);}
.fc1{color:rgb(0,0,10);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yb1{bottom:4.680000px;}
.y91{bottom:5.760000px;}
.y8b{bottom:5.940000px;}
.y89{bottom:7.020000px;}
.y8c{bottom:7.200000px;}
.y4{bottom:57.780000px;}
.y3{bottom:76.896000px;}
.y2{bottom:95.796000px;}
.y1{bottom:115.056000px;}
.y84{bottom:139.536000px;}
.y2c{bottom:145.116000px;}
.y5f{bottom:147.636000px;}
.yaf{bottom:148.716000px;}
.y79{bottom:155.910000px;}
.yec{bottom:160.050000px;}
.y83{bottom:170.490000px;}
.y2b{bottom:176.070000px;}
.y5e{bottom:178.590000px;}
.yae{bottom:179.850000px;}
.y4a{bottom:180.210000px;}
.y9a{bottom:181.650000px;}
.y78{bottom:186.870000px;}
.y80{bottom:187.050000px;}
.yeb{bottom:198.750000px;}
.y82{bottom:201.630000px;}
.y2a{bottom:207.210000px;}
.y5d{bottom:209.730000px;}
.yad{bottom:210.810000px;}
.yca{bottom:210.990000px;}
.y49{bottom:211.350000px;}
.y99{bottom:214.950000px;}
.y77{bottom:218.010000px;}
.yea{bottom:219.450000px;}
.yc9{bottom:231.690000px;}
.y81{bottom:237.270000px;}
.y29{bottom:238.170000px;}
.ye9{bottom:240.150000px;}
.y5c{bottom:240.690000px;}
.y48{bottom:242.310000px;}
.yac{bottom:244.110000px;}
.y98{bottom:248.250000px;}
.y76{bottom:248.970000px;}
.y7f{bottom:249.150000px;}
.yc8{bottom:252.390000px;}
.y5b{bottom:261.390000px;}
.y47{bottom:273.450000px;}
.y28{bottom:273.810000px;}
.yab{bottom:275.250000px;}
.ye8{bottom:278.850000px;}
.y75{bottom:280.110000px;}
.y97{bottom:281.550000px;}
.yc7{bottom:291.090000px;}
.y5a{bottom:297.030000px;}
.ye7{bottom:299.550000px;}
.y46{bottom:304.410000px;}
.yaa{bottom:306.210000px;}
.y27{bottom:309.990000px;}
.y96{bottom:310.530000px;}
.y74{bottom:311.070000px;}
.y7e{bottom:311.250000px;}
.yc6{bottom:311.790000px;}
.ye6{bottom:320.250000px;}
.y59{bottom:333.210000px;}
.y45{bottom:335.550000px;}
.ya9{bottom:337.395000px;}
.y73{bottom:342.255000px;}
.y26{bottom:343.335000px;}
.yc5{bottom:347.475000px;}
.ye5{bottom:358.995000px;}
.y25{bottom:366.195000px;}
.y44{bottom:366.555000px;}
.ya8{bottom:368.355000px;}
.y72{bottom:373.215000px;}
.y7d{bottom:373.395000px;}
.ye4{bottom:379.695000px;}
.yc4{bottom:384.015000px;}
.y24{bottom:386.895000px;}
.y58{bottom:397.695000px;}
.ya7{bottom:399.495000px;}
.y43{bottom:399.855000px;}
.y71{bottom:404.355000px;}
.y23{bottom:409.935000px;}
.yc3{bottom:416.055000px;}
.ye3{bottom:418.395000px;}
.ya6{bottom:428.475000px;}
.y57{bottom:428.655000px;}
.y22{bottom:430.635000px;}
.y42{bottom:430.995000px;}
.y70{bottom:435.315000px;}
.y7c{bottom:435.495000px;}
.ye2{bottom:439.095000px;}
.yc2{bottom:447.195000px;}
.y21{bottom:451.335000px;}
.y56{bottom:459.795000px;}
.y41{bottom:461.955000px;}
.y6f{bottom:466.455000px;}
.y20{bottom:472.035000px;}
.ye1{bottom:477.615000px;}
.yc1{bottom:478.155000px;}
.y55{bottom:490.755000px;}
.y1f{bottom:492.735000px;}
.y40{bottom:493.095000px;}
.y6e{bottom:497.415000px;}
.y7b{bottom:497.595000px;}
.ye0{bottom:498.315000px;}
.yc0{bottom:509.295000px;}
.y1e{bottom:513.435000px;}
.ydf{bottom:519.015000px;}
.y54{bottom:521.895000px;}
.y3f{bottom:524.055000px;}
.y6d{bottom:528.555000px;}
.y1d{bottom:536.295000px;}
.ybf{bottom:540.255000px;}
.y3e{bottom:555.195000px;}
.yde{bottom:557.715000px;}
.y1c{bottom:559.335000px;}
.y6c{bottom:559.515000px;}
.y7a{bottom:559.695000px;}
.ybe{bottom:571.395000px;}
.ydd{bottom:578.415000px;}
.y1b{bottom:582.195000px;}
.y3d{bottom:586.155000px;}
.y6b{bottom:590.655000px;}
.ydc{bottom:599.115000px;}
.ybd{bottom:602.355000px;}
.y1a{bottom:602.895000px;}
.y3c{bottom:617.145000px;}
.y6a{bottom:621.645000px;}
.y19{bottom:625.965000px;}
.ybc{bottom:633.345000px;}
.ydb{bottom:637.845000px;}
.y18{bottom:646.665000px;}
.y3b{bottom:648.285000px;}
.y69{bottom:652.785000px;}
.yda{bottom:658.545000px;}
.ybb{bottom:664.485000px;}
.y17{bottom:667.365000px;}
.y53{bottom:679.245000px;}
.y3a{bottom:681.585000px;}
.y68{bottom:683.745000px;}
.y16{bottom:688.065000px;}
.yba{bottom:695.445000px;}
.yd9{bottom:697.245000px;}
.y15{bottom:708.765000px;}
.y52{bottom:710.385000px;}
.y39{bottom:712.545000px;}
.y67{bottom:714.885000px;}
.yd8{bottom:717.945000px;}
.y95{bottom:720.645000px;}
.y14{bottom:730.185000px;}
.yb9{bottom:731.085000px;}
.yd7{bottom:738.645000px;}
.y51{bottom:741.345000px;}
.y38{bottom:743.685000px;}
.y66{bottom:745.845000px;}
.y13{bottom:750.885000px;}
.y94{bottom:751.245000px;}
.y93{bottom:768.705000px;}
.yb8{bottom:769.605000px;}
.y12{bottom:771.585000px;}
.y50{bottom:772.485000px;}
.y37{bottom:774.645000px;}
.y65{bottom:776.985000px;}
.yd6{bottom:777.345000px;}
.y92{bottom:792.105000px;}
.y11{bottom:792.285000px;}
.yd5{bottom:798.045000px;}
.y4f{bottom:803.445000px;}
.y36{bottom:805.785000px;}
.y64{bottom:807.945000px;}
.y10{bottom:812.985000px;}
.y90{bottom:815.325000px;}
.ya5{bottom:831.885000px;}
.yf{bottom:835.845000px;}
.y35{bottom:836.745000px;}
.y8f{bottom:838.545000px;}
.y63{bottom:839.085000px;}
.yd4{bottom:857.445000px;}
.ye{bottom:858.885000px;}
.ya4{bottom:859.965000px;}
.y8e{bottom:861.765000px;}
.y34{bottom:867.885000px;}
.y62{bottom:870.045000px;}
.yd3{bottom:878.190000px;}
.yd{bottom:882.510000px;}
.y8d{bottom:885.030000px;}
.ya3{bottom:888.090000px;}
.y33{bottom:898.890000px;}
.yb7{bottom:899.790000px;}
.y61{bottom:901.230000px;}
.y8a{bottom:908.250000px;}
.yc{bottom:909.510000px;}
.ya2{bottom:916.350000px;}
.yd2{bottom:916.890000px;}
.yb6{bottom:923.010000px;}
.y32{bottom:930.030000px;}
.y88{bottom:931.650000px;}
.y60{bottom:932.190000px;}
.yb{bottom:937.230000px;}
.yd1{bottom:937.590000px;}
.ya1{bottom:944.430000px;}
.yb5{bottom:946.410000px;}
.y4e{bottom:960.990000px;}
.y31{bottom:963.330000px;}
.ya{bottom:964.770000px;}
.yb4{bottom:969.630000px;}
.y87{bottom:971.430000px;}
.ya0{bottom:972.510000px;}
.yd0{bottom:976.290000px;}
.y4d{bottom:992.130000px;}
.yb3{bottom:992.850000px;}
.y30{bottom:994.290000px;}
.y9{bottom:994.650000px;}
.ycf{bottom:996.990000px;}
.y9f{bottom:1000.590000px;}
.y86{bottom:1002.210000px;}
.yb2{bottom:1016.070000px;}
.yce{bottom:1017.690000px;}
.y4c{bottom:1023.090000px;}
.y8{bottom:1024.530000px;}
.y2f{bottom:1025.430000px;}
.y85{bottom:1028.130000px;}
.y9e{bottom:1031.190000px;}
.ycd{bottom:1038.390000px;}
.yb0{bottom:1039.290000px;}
.y7{bottom:1052.070000px;}
.y4b{bottom:1054.230000px;}
.y2e{bottom:1056.390000px;}
.y9d{bottom:1064.490000px;}
.ycc{bottom:1077.090000px;}
.y6{bottom:1079.610000px;}
.y2d{bottom:1087.530000px;}
.y9c{bottom:1095.450000px;}
.ycb{bottom:1097.790000px;}
.y5{bottom:1118.490000px;}
.y9b{bottom:1121.190000px;}
.ha{height:22.500000px;}
.hd{height:22.536000px;}
.h7{height:52.628906px;}
.h9{height:53.573906px;}
.h4{height:55.987031px;}
.hc{height:57.410156px;}
.hb{height:57.507187px;}
.h3{height:59.383125px;}
.h8{height:63.949219px;}
.h2{height:64.546875px;}
.h6{height:74.820586px;}
.h5{height:85.052461px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:71.100000px;}
.w4{width:71.136000px;}
.w8{width:83.160000px;}
.w7{width:83.376000px;}
.w3{width:197.310000px;}
.w6{width:197.670000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:36.360000px;}
.xf{left:39.960000px;}
.x14{left:44.820000px;}
.x1e{left:46.080000px;}
.x22{left:50.760000px;}
.x13{left:83.565000px;}
.x23{left:87.885000px;}
.x15{left:89.145000px;}
.x16{left:93.285000px;}
.x1{left:127.655987px;}
.x2{left:154.469987px;}
.x1a{left:158.789987px;}
.x3{left:161.129987px;}
.xa{left:166.889987px;}
.x6{left:170.129987px;}
.x7{left:180.749987px;}
.x17{left:199.109987px;}
.x1c{left:201.090000px;}
.xc{left:203.970000px;}
.x8{left:207.749987px;}
.x9{left:234.749987px;}
.x4{left:304.094987px;}
.xb{left:353.774987px;}
.x19{left:396.974987px;}
.x1d{left:399.135000px;}
.xe{left:402.015000px;}
.x5{left:467.924987px;}
.x10{left:474.045000px;}
.x1f{left:483.225000px;}
.x11{left:545.865000px;}
.x20{left:567.285000px;}
.x12{left:617.685000px;}
.x1b{left:627.584987px;}
.x18{left:631.184987px;}
.x21{left:651.165000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls10{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.256000pt;}
.lsc{letter-spacing:-0.222933pt;}
.ls7{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.156267pt;}
.ls3{letter-spacing:-0.128000pt;}
.lsd{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.640000pt;}
.ls0{letter-spacing:0.847360pt;}
.ls1{letter-spacing:17.583360pt;}
.lse{letter-spacing:18.560000pt;}
.lsa{letter-spacing:18.863360pt;}
.ls9{letter-spacing:30.208000pt;}
.ls8{letter-spacing:56.912640pt;}
.ws9{word-spacing:-58.880000pt;}
.ws6{word-spacing:-53.120000pt;}
.ws1{word-spacing:-19.040000pt;}
.ws2{word-spacing:-18.720000pt;}
.ws5{word-spacing:-17.600000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.808000pt;}
.wsa{word-spacing:-15.744000pt;}
.ws7{word-spacing:-10.501013pt;}
.ws8{word-spacing:-10.434347pt;}
.ws3{word-spacing:0.000000pt;}
._8{margin-left:-11.098240pt;}
._1b{margin-left:-9.034880pt;}
._2{margin-left:-7.301120pt;}
._7{margin-left:-6.043520pt;}
._5{margin-left:-4.341120pt;}
._13{margin-left:-3.370880pt;}
._1{margin-left:-2.472960pt;}
._0{margin-left:-1.177600pt;}
._3{width:1.290240pt;}
._b{width:2.478933pt;}
._11{width:3.648000pt;}
._12{width:4.646827pt;}
._1d{width:6.144000pt;}
._17{width:7.424000pt;}
._18{width:8.373760pt;}
._f{width:9.461760pt;}
._e{width:10.496000pt;}
._21{width:11.392000pt;}
._22{width:12.352000pt;}
._1c{width:13.770667pt;}
._10{width:15.040000pt;}
._15{width:17.280000pt;}
._1f{width:18.944000pt;}
._20{width:19.904000pt;}
._25{width:20.992427pt;}
._24{width:22.154667pt;}
._19{width:23.360000pt;}
._1a{width:24.416853pt;}
._23{width:25.309440pt;}
._28{width:26.658560pt;}
._1e{width:28.096000pt;}
._6{width:33.707520pt;}
._26{width:34.713600pt;}
._27{width:38.297600pt;}
._16{width:39.936000pt;}
._4{width:41.708800pt;}
._c{width:55.059200pt;}
._d{width:61.626880pt;}
._2a{width:65.152000pt;}
._2b{width:66.368000pt;}
._a{width:115.185920pt;}
._9{width:120.928000pt;}
._14{width:157.376640pt;}
._29{width:248.192000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yb1{bottom:4.160000pt;}
.y91{bottom:5.120000pt;}
.y8b{bottom:5.280000pt;}
.y89{bottom:6.240000pt;}
.y8c{bottom:6.400000pt;}
.y4{bottom:51.360000pt;}
.y3{bottom:68.352000pt;}
.y2{bottom:85.152000pt;}
.y1{bottom:102.272000pt;}
.y84{bottom:124.032000pt;}
.y2c{bottom:128.992000pt;}
.y5f{bottom:131.232000pt;}
.yaf{bottom:132.192000pt;}
.y79{bottom:138.586667pt;}
.yec{bottom:142.266667pt;}
.y83{bottom:151.546667pt;}
.y2b{bottom:156.506667pt;}
.y5e{bottom:158.746667pt;}
.yae{bottom:159.866667pt;}
.y4a{bottom:160.186667pt;}
.y9a{bottom:161.466667pt;}
.y78{bottom:166.106667pt;}
.y80{bottom:166.266667pt;}
.yeb{bottom:176.666667pt;}
.y82{bottom:179.226667pt;}
.y2a{bottom:184.186667pt;}
.y5d{bottom:186.426667pt;}
.yad{bottom:187.386667pt;}
.yca{bottom:187.546667pt;}
.y49{bottom:187.866667pt;}
.y99{bottom:191.066667pt;}
.y77{bottom:193.786667pt;}
.yea{bottom:195.066667pt;}
.yc9{bottom:205.946667pt;}
.y81{bottom:210.906667pt;}
.y29{bottom:211.706667pt;}
.ye9{bottom:213.466667pt;}
.y5c{bottom:213.946667pt;}
.y48{bottom:215.386667pt;}
.yac{bottom:216.986667pt;}
.y98{bottom:220.666667pt;}
.y76{bottom:221.306667pt;}
.y7f{bottom:221.466667pt;}
.yc8{bottom:224.346667pt;}
.y5b{bottom:232.346667pt;}
.y47{bottom:243.066667pt;}
.y28{bottom:243.386667pt;}
.yab{bottom:244.666667pt;}
.ye8{bottom:247.866667pt;}
.y75{bottom:248.986667pt;}
.y97{bottom:250.266667pt;}
.yc7{bottom:258.746667pt;}
.y5a{bottom:264.026667pt;}
.ye7{bottom:266.266667pt;}
.y46{bottom:270.586667pt;}
.yaa{bottom:272.186667pt;}
.y27{bottom:275.546667pt;}
.y96{bottom:276.026667pt;}
.y74{bottom:276.506667pt;}
.y7e{bottom:276.666667pt;}
.yc6{bottom:277.146667pt;}
.ye6{bottom:284.666667pt;}
.y59{bottom:296.186667pt;}
.y45{bottom:298.266667pt;}
.ya9{bottom:299.906667pt;}
.y73{bottom:304.226667pt;}
.y26{bottom:305.186667pt;}
.yc5{bottom:308.866667pt;}
.ye5{bottom:319.106667pt;}
.y25{bottom:325.506667pt;}
.y44{bottom:325.826667pt;}
.ya8{bottom:327.426667pt;}
.y72{bottom:331.746667pt;}
.y7d{bottom:331.906667pt;}
.ye4{bottom:337.506667pt;}
.yc4{bottom:341.346667pt;}
.y24{bottom:343.906667pt;}
.y58{bottom:353.506667pt;}
.ya7{bottom:355.106667pt;}
.y43{bottom:355.426667pt;}
.y71{bottom:359.426667pt;}
.y23{bottom:364.386667pt;}
.yc3{bottom:369.826667pt;}
.ye3{bottom:371.906667pt;}
.ya6{bottom:380.866667pt;}
.y57{bottom:381.026667pt;}
.y22{bottom:382.786667pt;}
.y42{bottom:383.106667pt;}
.y70{bottom:386.946667pt;}
.y7c{bottom:387.106667pt;}
.ye2{bottom:390.306667pt;}
.yc2{bottom:397.506667pt;}
.y21{bottom:401.186667pt;}
.y56{bottom:408.706667pt;}
.y41{bottom:410.626667pt;}
.y6f{bottom:414.626667pt;}
.y20{bottom:419.586667pt;}
.ye1{bottom:424.546667pt;}
.yc1{bottom:425.026667pt;}
.y55{bottom:436.226667pt;}
.y1f{bottom:437.986667pt;}
.y40{bottom:438.306667pt;}
.y6e{bottom:442.146667pt;}
.y7b{bottom:442.306667pt;}
.ye0{bottom:442.946667pt;}
.yc0{bottom:452.706667pt;}
.y1e{bottom:456.386667pt;}
.ydf{bottom:461.346667pt;}
.y54{bottom:463.906667pt;}
.y3f{bottom:465.826667pt;}
.y6d{bottom:469.826667pt;}
.y1d{bottom:476.706667pt;}
.ybf{bottom:480.226667pt;}
.y3e{bottom:493.506667pt;}
.yde{bottom:495.746667pt;}
.y1c{bottom:497.186667pt;}
.y6c{bottom:497.346667pt;}
.y7a{bottom:497.506667pt;}
.ybe{bottom:507.906667pt;}
.ydd{bottom:514.146667pt;}
.y1b{bottom:517.506667pt;}
.y3d{bottom:521.026667pt;}
.y6b{bottom:525.026667pt;}
.ydc{bottom:532.546667pt;}
.ybd{bottom:535.426667pt;}
.y1a{bottom:535.906667pt;}
.y3c{bottom:548.573333pt;}
.y6a{bottom:552.573333pt;}
.y19{bottom:556.413333pt;}
.ybc{bottom:562.973333pt;}
.ydb{bottom:566.973333pt;}
.y18{bottom:574.813333pt;}
.y3b{bottom:576.253333pt;}
.y69{bottom:580.253333pt;}
.yda{bottom:585.373333pt;}
.ybb{bottom:590.653333pt;}
.y17{bottom:593.213333pt;}
.y53{bottom:603.773333pt;}
.y3a{bottom:605.853333pt;}
.y68{bottom:607.773333pt;}
.y16{bottom:611.613333pt;}
.yba{bottom:618.173333pt;}
.yd9{bottom:619.773333pt;}
.y15{bottom:630.013333pt;}
.y52{bottom:631.453333pt;}
.y39{bottom:633.373333pt;}
.y67{bottom:635.453333pt;}
.yd8{bottom:638.173333pt;}
.y95{bottom:640.573333pt;}
.y14{bottom:649.053333pt;}
.yb9{bottom:649.853333pt;}
.yd7{bottom:656.573333pt;}
.y51{bottom:658.973333pt;}
.y38{bottom:661.053333pt;}
.y66{bottom:662.973333pt;}
.y13{bottom:667.453333pt;}
.y94{bottom:667.773333pt;}
.y93{bottom:683.293333pt;}
.yb8{bottom:684.093333pt;}
.y12{bottom:685.853333pt;}
.y50{bottom:686.653333pt;}
.y37{bottom:688.573333pt;}
.y65{bottom:690.653333pt;}
.yd6{bottom:690.973333pt;}
.y92{bottom:704.093333pt;}
.y11{bottom:704.253333pt;}
.yd5{bottom:709.373333pt;}
.y4f{bottom:714.173333pt;}
.y36{bottom:716.253333pt;}
.y64{bottom:718.173333pt;}
.y10{bottom:722.653333pt;}
.y90{bottom:724.733333pt;}
.ya5{bottom:739.453333pt;}
.yf{bottom:742.973333pt;}
.y35{bottom:743.773333pt;}
.y8f{bottom:745.373333pt;}
.y63{bottom:745.853333pt;}
.yd4{bottom:762.173333pt;}
.ye{bottom:763.453333pt;}
.ya4{bottom:764.413333pt;}
.y8e{bottom:766.013333pt;}
.y34{bottom:771.453333pt;}
.y62{bottom:773.373333pt;}
.yd3{bottom:780.613333pt;}
.yd{bottom:784.453333pt;}
.y8d{bottom:786.693333pt;}
.ya3{bottom:789.413333pt;}
.y33{bottom:799.013333pt;}
.yb7{bottom:799.813333pt;}
.y61{bottom:801.093333pt;}
.y8a{bottom:807.333333pt;}
.yc{bottom:808.453333pt;}
.ya2{bottom:814.533333pt;}
.yd2{bottom:815.013333pt;}
.yb6{bottom:820.453333pt;}
.y32{bottom:826.693333pt;}
.y88{bottom:828.133333pt;}
.y60{bottom:828.613333pt;}
.yb{bottom:833.093333pt;}
.yd1{bottom:833.413333pt;}
.ya1{bottom:839.493333pt;}
.yb5{bottom:841.253333pt;}
.y4e{bottom:854.213333pt;}
.y31{bottom:856.293333pt;}
.ya{bottom:857.573333pt;}
.yb4{bottom:861.893333pt;}
.y87{bottom:863.493333pt;}
.ya0{bottom:864.453333pt;}
.yd0{bottom:867.813333pt;}
.y4d{bottom:881.893333pt;}
.yb3{bottom:882.533333pt;}
.y30{bottom:883.813333pt;}
.y9{bottom:884.133333pt;}
.ycf{bottom:886.213333pt;}
.y9f{bottom:889.413333pt;}
.y86{bottom:890.853333pt;}
.yb2{bottom:903.173333pt;}
.yce{bottom:904.613333pt;}
.y4c{bottom:909.413333pt;}
.y8{bottom:910.693333pt;}
.y2f{bottom:911.493333pt;}
.y85{bottom:913.893333pt;}
.y9e{bottom:916.613333pt;}
.ycd{bottom:923.013333pt;}
.yb0{bottom:923.813333pt;}
.y7{bottom:935.173333pt;}
.y4b{bottom:937.093333pt;}
.y2e{bottom:939.013333pt;}
.y9d{bottom:946.213333pt;}
.ycc{bottom:957.413333pt;}
.y6{bottom:959.653333pt;}
.y2d{bottom:966.693333pt;}
.y9c{bottom:973.733333pt;}
.ycb{bottom:975.813333pt;}
.y5{bottom:994.213333pt;}
.y9b{bottom:996.613333pt;}
.ha{height:20.000000pt;}
.hd{height:20.032000pt;}
.h7{height:46.781250pt;}
.h9{height:47.621250pt;}
.h4{height:49.766250pt;}
.hc{height:51.031250pt;}
.hb{height:51.117500pt;}
.h3{height:52.785000pt;}
.h8{height:56.843750pt;}
.h2{height:57.375000pt;}
.h6{height:66.507188pt;}
.h5{height:75.602187pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:63.200000pt;}
.w4{width:63.232000pt;}
.w8{width:73.920000pt;}
.w7{width:74.112000pt;}
.w3{width:175.386667pt;}
.w6{width:175.706667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:32.320000pt;}
.xf{left:35.520000pt;}
.x14{left:39.840000pt;}
.x1e{left:40.960000pt;}
.x22{left:45.120000pt;}
.x13{left:74.280000pt;}
.x23{left:78.120000pt;}
.x15{left:79.240000pt;}
.x16{left:82.920000pt;}
.x1{left:113.471988pt;}
.x2{left:137.306655pt;}
.x1a{left:141.146655pt;}
.x3{left:143.226655pt;}
.xa{left:148.346655pt;}
.x6{left:151.226655pt;}
.x7{left:160.666655pt;}
.x17{left:176.986655pt;}
.x1c{left:178.746667pt;}
.xc{left:181.306667pt;}
.x8{left:184.666655pt;}
.x9{left:208.666655pt;}
.x4{left:270.306655pt;}
.xb{left:314.466655pt;}
.x19{left:352.866655pt;}
.x1d{left:354.786667pt;}
.xe{left:357.346667pt;}
.x5{left:415.933322pt;}
.x10{left:421.373333pt;}
.x1f{left:429.533333pt;}
.x11{left:485.213333pt;}
.x20{left:504.253333pt;}
.x12{left:549.053333pt;}
.x1b{left:557.853322pt;}
.x18{left:561.053322pt;}
.x21{left:578.813333pt;}
}




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