
    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_2882c3c4f59617230183e69e.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_1876d5027a14ff99bb5b46ac.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_93a41f7a7184fd7b23ef7184.woff')format("woff");}.ff3{font-family:ff3;line-height:0.813477;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_defca4745d71b77212ec84c0.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_45a72e4c1467a03f41d7ce31.woff')format("woff");}.ff5{font-family:ff5;line-height:0.914062;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_8c2f8c04145ff542819e1a76.woff')format("woff");}.ff6{font-family:ff6;line-height:0.921387;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_d18861fe735072766e52e0f0.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_27926a7b02134cb2c275b5fd.woff')format("woff");}.ff8{font-family:ff8;line-height:0.914062;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_d17e3a39f73b12e59c3fb3ad.woff')format("woff");}.ff9{font-family:ff9;line-height:1.040039;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_73936a70cb6f0650c4981858.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_d317eee36f5b2ed979ef5d9c.woff')format("woff");}.ffc{font-family:ffc;line-height:0.921387;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);}
.v2{vertical-align:-20.880000px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls8{letter-spacing:-0.924000px;}
.ls7{letter-spacing:-0.612000px;}
.ls13{letter-spacing:-0.540000px;}
.ls12{letter-spacing:-0.360000px;}
.ls16{letter-spacing:-0.008640px;}
.ls4{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.053280px;}
.ls14{letter-spacing:0.135600px;}
.ls9{letter-spacing:0.149760px;}
.ls0{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.259920px;}
.ls10{letter-spacing:0.298800px;}
.ls6{letter-spacing:0.360000px;}
.ls17{letter-spacing:0.513600px;}
.ls18{letter-spacing:0.540000px;}
.ls15{letter-spacing:0.720000px;}
.ls11{letter-spacing:16.506720px;}
.ls2{letter-spacing:27.509760px;}
.ls1{letter-spacing:46.026720px;}
.lsf{letter-spacing:109.386720px;}
.lsc{letter-spacing:109.530720px;}
.lse{letter-spacing:125.946720px;}
.lsb{letter-spacing:126.090720px;}
.lsa{letter-spacing:142.650720px;}
.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;}
}
.ws1{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.488000px;}
.ws4{word-spacing:-15.300000px;}
.ws9{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.580000px;}
.ws2{word-spacing:-10.440000px;}
.ws3{word-spacing:-9.720000px;}
.ws8{word-spacing:-9.711360px;}
.ws6{word-spacing:0.000000px;}
._d{margin-left:-3.648240px;}
._c{margin-left:-2.352240px;}
._2{margin-left:-1.126080px;}
._0{width:1.317600px;}
._4{width:2.757840px;}
._7{width:4.225680px;}
._9{width:5.679360px;}
._8{width:6.872400px;}
._6{width:8.067600px;}
._5{width:9.262800px;}
._17{width:10.270080px;}
._b{width:11.272320px;}
._a{width:12.273120px;}
._3{width:13.406400px;}
._e{width:15.955920px;}
._19{width:17.088480px;}
._15{width:18.167040px;}
._14{width:19.422000px;}
._10{width:26.650080px;}
._f{width:28.326720px;}
._12{width:59.637600px;}
._11{width:61.134480px;}
._13{width:164.695680px;}
._16{width:201.204000px;}
._18{width:464.326560px;}
._1{width:1100.028000px;}
.fc4{color:rgb(0,112,192);}
.fc3{color:rgb(0,176,240);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(91,155,213);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs4{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:95.760000px;}
.fs1{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:1.260000px;}
.y4c{bottom:5.760000px;}
.y3c{bottom:5.940000px;}
.y7{bottom:8.100000px;}
.y3a{bottom:10.980000px;}
.y4b{bottom:25.560000px;}
.y39{bottom:30.960000px;}
.y6{bottom:36.000000px;}
.yb6{bottom:45.405000px;}
.y4a{bottom:45.540000px;}
.y38{bottom:50.760000px;}
.yb{bottom:56.700000px;}
.y5{bottom:57.960000px;}
.y49{bottom:65.340000px;}
.y37{bottom:70.560000px;}
.y28{bottom:80.280000px;}
.y4{bottom:81.720000px;}
.y48{bottom:85.140000px;}
.y36{bottom:90.360000px;}
.yaf{bottom:97.380000px;}
.y27{bottom:100.260000px;}
.y47{bottom:104.940000px;}
.y82{bottom:108.180000px;}
.y9{bottom:108.570000px;}
.y35{bottom:110.160000px;}
.ydc{bottom:112.320000px;}
.yae{bottom:117.180000px;}
.y3{bottom:118.110000px;}
.y26{bottom:120.060000px;}
.y46{bottom:124.770000px;}
.y81{bottom:127.980000px;}
.y34{bottom:130.170000px;}
.y8{bottom:130.530000px;}
.ydb{bottom:132.120000px;}
.yad{bottom:136.980000px;}
.y25{bottom:139.860000px;}
.y45{bottom:144.750000px;}
.y80{bottom:147.780000px;}
.y33{bottom:149.970000px;}
.yda{bottom:152.130000px;}
.yac{bottom:156.810000px;}
.y24{bottom:159.690000px;}
.y44{bottom:164.550000px;}
.y32{bottom:169.770000px;}
.yd9{bottom:171.930000px;}
.y7f{bottom:176.790000px;}
.y23{bottom:179.490000px;}
.y43{bottom:184.350000px;}
.y31{bottom:189.570000px;}
.yd8{bottom:191.730000px;}
.y7e{bottom:196.590000px;}
.y22{bottom:199.470000px;}
.y42{bottom:204.150000px;}
.y30{bottom:209.370000px;}
.yd7{bottom:211.530000px;}
.y7d{bottom:216.390000px;}
.y21{bottom:219.270000px;}
.y41{bottom:223.950000px;}
.y2f{bottom:229.350000px;}
.yd6{bottom:231.330000px;}
.yec{bottom:234.390000px;}
.y7c{bottom:236.190000px;}
.y20{bottom:239.070000px;}
.y40{bottom:243.930000px;}
.y2e{bottom:249.150000px;}
.yd5{bottom:251.310000px;}
.yeb{bottom:254.190000px;}
.y7b{bottom:255.990000px;}
.y1f{bottom:258.870000px;}
.y3f{bottom:263.730000px;}
.y2d{bottom:268.950000px;}
.yd4{bottom:271.110000px;}
.yea{bottom:273.990000px;}
.y7a{bottom:275.970000px;}
.y1e{bottom:278.670000px;}
.y3e{bottom:283.530000px;}
.y2c{bottom:288.750000px;}
.yd3{bottom:290.910000px;}
.ye9{bottom:293.970000px;}
.y79{bottom:295.770000px;}
.y1d{bottom:298.650000px;}
.y3d{bottom:303.330000px;}
.y2b{bottom:308.550000px;}
.yd2{bottom:310.710000px;}
.ye8{bottom:313.770000px;}
.yab{bottom:315.570000px;}
.y1c{bottom:318.450000px;}
.y78{bottom:324.570000px;}
.y2a{bottom:328.530000px;}
.yd1{bottom:330.510000px;}
.ye7{bottom:333.570000px;}
.yaa{bottom:335.370000px;}
.y1b{bottom:338.250000px;}
.y77{bottom:344.370000px;}
.yd0{bottom:350.490000px;}
.ye6{bottom:353.370000px;}
.ya9{bottom:355.170000px;}
.y1a{bottom:358.050000px;}
.y76{bottom:364.170000px;}
.ycf{bottom:370.290000px;}
.ye5{bottom:373.170000px;}
.ya8{bottom:375.150000px;}
.y19{bottom:377.850000px;}
.y75{bottom:384.150000px;}
.yce{bottom:390.090000px;}
.ye4{bottom:393.150000px;}
.ya7{bottom:394.950000px;}
.y18{bottom:397.830000px;}
.y74{bottom:403.995000px;}
.ycd{bottom:409.935000px;}
.ye3{bottom:412.995000px;}
.ya6{bottom:414.795000px;}
.y17{bottom:417.675000px;}
.y73{bottom:423.795000px;}
.ycc{bottom:429.735000px;}
.ye2{bottom:432.795000px;}
.ya5{bottom:434.595000px;}
.y16{bottom:437.475000px;}
.y72{bottom:443.595000px;}
.ycb{bottom:449.715000px;}
.ye1{bottom:452.595000px;}
.ya4{bottom:454.395000px;}
.y15{bottom:457.275000px;}
.y71{bottom:463.395000px;}
.yca{bottom:469.515000px;}
.ye0{bottom:472.395000px;}
.ya3{bottom:474.375000px;}
.y14{bottom:477.075000px;}
.y70{bottom:483.375000px;}
.yc9{bottom:489.315000px;}
.ydf{bottom:492.375000px;}
.ya2{bottom:494.175000px;}
.y13{bottom:497.055000px;}
.y6f{bottom:503.175000px;}
.yc8{bottom:509.115000px;}
.yde{bottom:512.175000px;}
.ya1{bottom:513.975000px;}
.y12{bottom:516.855000px;}
.y6e{bottom:522.975000px;}
.yc7{bottom:528.915000px;}
.ydd{bottom:531.975000px;}
.ya0{bottom:533.775000px;}
.y29{bottom:536.115000px;}
.yc6{bottom:548.895000px;}
.y6d{bottom:551.775000px;}
.y9f{bottom:553.575000px;}
.yc5{bottom:568.695000px;}
.y6c{bottom:571.575000px;}
.y9e{bottom:573.555000px;}
.yc4{bottom:588.495000px;}
.y6b{bottom:591.555000px;}
.y9d{bottom:593.355000px;}
.yc3{bottom:608.295000px;}
.y6a{bottom:611.355000px;}
.y9c{bottom:613.155000px;}
.yc2{bottom:628.095000px;}
.y69{bottom:631.155000px;}
.y9b{bottom:632.955000px;}
.yc1{bottom:648.075000px;}
.y68{bottom:650.985000px;}
.y9a{bottom:652.785000px;}
.yc0{bottom:667.905000px;}
.y67{bottom:670.785000px;}
.y99{bottom:672.765000px;}
.ybf{bottom:687.705000px;}
.y66{bottom:690.765000px;}
.y98{bottom:692.565000px;}
.ybe{bottom:707.505000px;}
.y65{bottom:710.565000px;}
.y97{bottom:712.365000px;}
.ybd{bottom:727.305000px;}
.y64{bottom:730.365000px;}
.y96{bottom:732.165000px;}
.ybc{bottom:747.285000px;}
.y63{bottom:750.165000px;}
.y95{bottom:751.965000px;}
.ybb{bottom:767.085000px;}
.y62{bottom:769.965000px;}
.y94{bottom:771.945000px;}
.yba{bottom:786.885000px;}
.y61{bottom:789.945000px;}
.y93{bottom:791.745000px;}
.yb9{bottom:806.685000px;}
.y60{bottom:809.745000px;}
.y92{bottom:811.545000px;}
.yb8{bottom:826.485000px;}
.y5f{bottom:829.545000px;}
.y91{bottom:831.345000px;}
.yb7{bottom:846.465000px;}
.y5e{bottom:849.345000px;}
.y90{bottom:851.145000px;}
.y3b{bottom:858.705000px;}
.yb5{bottom:861.225000px;}
.y5d{bottom:869.145000px;}
.y8f{bottom:871.125000px;}
.y5c{bottom:889.125000px;}
.y8e{bottom:890.925000px;}
.y11{bottom:892.185000px;}
.y5b{bottom:908.970000px;}
.y8d{bottom:910.770000px;}
.y10{bottom:917.250000px;}
.yb4{bottom:921.390000px;}
.y5a{bottom:928.770000px;}
.y8c{bottom:930.570000px;}
.yf{bottom:932.550000px;}
.yb3{bottom:941.370000px;}
.y59{bottom:948.570000px;}
.y8b{bottom:950.370000px;}
.ye{bottom:953.790000px;}
.yb2{bottom:961.170000px;}
.y58{bottom:968.370000px;}
.y8a{bottom:970.350000px;}
.yd{bottom:977.190000px;}
.yb1{bottom:980.970000px;}
.y57{bottom:988.350000px;}
.y89{bottom:990.150000px;}
.yb0{bottom:1001.490000px;}
.y56{bottom:1008.150000px;}
.yc{bottom:1009.050000px;}
.y88{bottom:1018.950000px;}
.y55{bottom:1027.950000px;}
.ya{bottom:1035.870000px;}
.y87{bottom:1038.750000px;}
.y54{bottom:1047.750000px;}
.y1{bottom:1052.250000px;}
.y86{bottom:1058.550000px;}
.y53{bottom:1067.550000px;}
.y85{bottom:1078.530000px;}
.y52{bottom:1087.530000px;}
.y84{bottom:1098.330000px;}
.y51{bottom:1107.330000px;}
.y83{bottom:1118.130000px;}
.y50{bottom:1127.130000px;}
.y4f{bottom:1146.960000px;}
.y4e{bottom:1166.760000px;}
.y4d{bottom:1195.740000px;}
.h11{height:19.800000px;}
.hf{height:19.980000px;}
.ha{height:27.147656px;}
.hc{height:41.726953px;}
.h8{height:42.164648px;}
.hb{height:43.506914px;}
.hd{height:49.255313px;}
.h6{height:50.273438px;}
.h9{height:53.224453px;}
.h12{height:59.436000px;}
.h5{height:65.884219px;}
.h7{height:67.565039px;}
.h3{height:73.722656px;}
.h4{height:105.060586px;}
.h2{height:156.630000px;}
.h10{height:317.370000px;}
.he{height:342.570000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:127.656000px;}
.w8{width:143.640000px;}
.w9{width:143.676000px;}
.w4{width:157.170000px;}
.w6{width:285.555000px;}
.w7{width:494.745000px;}
.w3{width:499.785000px;}
.wa{width:718.305000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:8.100000px;}
.x4{left:34.020000px;}
.x1{left:54.000000px;}
.xc{left:60.839987px;}
.xf{left:67.499987px;}
.x11{left:80.999987px;}
.x12{left:87.336000px;}
.xa{left:108.035987px;}
.x7{left:110.385000px;}
.xd{left:114.875987px;}
.x2{left:115.950000px;}
.x10{left:121.535987px;}
.x5{left:131.805000px;}
.x8{left:133.785000px;}
.xe{left:135.035987px;}
.x3{left:181.650000px;}
.x13{left:230.970000px;}
.xb{left:342.795000px;}
.x14{left:374.655000px;}
.x15{left:518.325000px;}
.x16{left:662.010000px;}
.x9{left:681.450000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls8{letter-spacing:-0.821333pt;}
.ls7{letter-spacing:-0.544000pt;}
.ls13{letter-spacing:-0.480000pt;}
.ls12{letter-spacing:-0.320000pt;}
.ls16{letter-spacing:-0.007680pt;}
.ls4{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.047360pt;}
.ls14{letter-spacing:0.120533pt;}
.ls9{letter-spacing:0.133120pt;}
.ls0{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.231040pt;}
.ls10{letter-spacing:0.265600pt;}
.ls6{letter-spacing:0.320000pt;}
.ls17{letter-spacing:0.456533pt;}
.ls18{letter-spacing:0.480000pt;}
.ls15{letter-spacing:0.640000pt;}
.ls11{letter-spacing:14.672640pt;}
.ls2{letter-spacing:24.453120pt;}
.ls1{letter-spacing:40.912640pt;}
.lsf{letter-spacing:97.232640pt;}
.lsc{letter-spacing:97.360640pt;}
.lse{letter-spacing:111.952640pt;}
.lsb{letter-spacing:112.080640pt;}
.lsa{letter-spacing:126.800640pt;}
.ws1{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.656000pt;}
.ws4{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.ws7{word-spacing:-12.960000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws8{word-spacing:-8.632320pt;}
.ws6{word-spacing:0.000000pt;}
._d{margin-left:-3.242880pt;}
._c{margin-left:-2.090880pt;}
._2{margin-left:-1.000960pt;}
._0{width:1.171200pt;}
._4{width:2.451413pt;}
._7{width:3.756160pt;}
._9{width:5.048320pt;}
._8{width:6.108800pt;}
._6{width:7.171200pt;}
._5{width:8.233600pt;}
._17{width:9.128960pt;}
._b{width:10.019840pt;}
._a{width:10.909440pt;}
._3{width:11.916800pt;}
._e{width:14.183040pt;}
._19{width:15.189760pt;}
._15{width:16.148480pt;}
._14{width:17.264000pt;}
._10{width:23.688960pt;}
._f{width:25.179307pt;}
._12{width:53.011200pt;}
._11{width:54.341760pt;}
._13{width:146.396160pt;}
._16{width:178.848000pt;}
._18{width:412.734720pt;}
._1{width:977.802667pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:85.120000pt;}
.fs1{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:1.120000pt;}
.y4c{bottom:5.120000pt;}
.y3c{bottom:5.280000pt;}
.y7{bottom:7.200000pt;}
.y3a{bottom:9.760000pt;}
.y4b{bottom:22.720000pt;}
.y39{bottom:27.520000pt;}
.y6{bottom:32.000000pt;}
.yb6{bottom:40.360000pt;}
.y4a{bottom:40.480000pt;}
.y38{bottom:45.120000pt;}
.yb{bottom:50.400000pt;}
.y5{bottom:51.520000pt;}
.y49{bottom:58.080000pt;}
.y37{bottom:62.720000pt;}
.y28{bottom:71.360000pt;}
.y4{bottom:72.640000pt;}
.y48{bottom:75.680000pt;}
.y36{bottom:80.320000pt;}
.yaf{bottom:86.560000pt;}
.y27{bottom:89.120000pt;}
.y47{bottom:93.280000pt;}
.y82{bottom:96.160000pt;}
.y9{bottom:96.506667pt;}
.y35{bottom:97.920000pt;}
.ydc{bottom:99.840000pt;}
.yae{bottom:104.160000pt;}
.y3{bottom:104.986667pt;}
.y26{bottom:106.720000pt;}
.y46{bottom:110.906667pt;}
.y81{bottom:113.760000pt;}
.y34{bottom:115.706667pt;}
.y8{bottom:116.026667pt;}
.ydb{bottom:117.440000pt;}
.yad{bottom:121.760000pt;}
.y25{bottom:124.320000pt;}
.y45{bottom:128.666667pt;}
.y80{bottom:131.360000pt;}
.y33{bottom:133.306667pt;}
.yda{bottom:135.226667pt;}
.yac{bottom:139.386667pt;}
.y24{bottom:141.946667pt;}
.y44{bottom:146.266667pt;}
.y32{bottom:150.906667pt;}
.yd9{bottom:152.826667pt;}
.y7f{bottom:157.146667pt;}
.y23{bottom:159.546667pt;}
.y43{bottom:163.866667pt;}
.y31{bottom:168.506667pt;}
.yd8{bottom:170.426667pt;}
.y7e{bottom:174.746667pt;}
.y22{bottom:177.306667pt;}
.y42{bottom:181.466667pt;}
.y30{bottom:186.106667pt;}
.yd7{bottom:188.026667pt;}
.y7d{bottom:192.346667pt;}
.y21{bottom:194.906667pt;}
.y41{bottom:199.066667pt;}
.y2f{bottom:203.866667pt;}
.yd6{bottom:205.626667pt;}
.yec{bottom:208.346667pt;}
.y7c{bottom:209.946667pt;}
.y20{bottom:212.506667pt;}
.y40{bottom:216.826667pt;}
.y2e{bottom:221.466667pt;}
.yd5{bottom:223.386667pt;}
.yeb{bottom:225.946667pt;}
.y7b{bottom:227.546667pt;}
.y1f{bottom:230.106667pt;}
.y3f{bottom:234.426667pt;}
.y2d{bottom:239.066667pt;}
.yd4{bottom:240.986667pt;}
.yea{bottom:243.546667pt;}
.y7a{bottom:245.306667pt;}
.y1e{bottom:247.706667pt;}
.y3e{bottom:252.026667pt;}
.y2c{bottom:256.666667pt;}
.yd3{bottom:258.586667pt;}
.ye9{bottom:261.306667pt;}
.y79{bottom:262.906667pt;}
.y1d{bottom:265.466667pt;}
.y3d{bottom:269.626667pt;}
.y2b{bottom:274.266667pt;}
.yd2{bottom:276.186667pt;}
.ye8{bottom:278.906667pt;}
.yab{bottom:280.506667pt;}
.y1c{bottom:283.066667pt;}
.y78{bottom:288.506667pt;}
.y2a{bottom:292.026667pt;}
.yd1{bottom:293.786667pt;}
.ye7{bottom:296.506667pt;}
.yaa{bottom:298.106667pt;}
.y1b{bottom:300.666667pt;}
.y77{bottom:306.106667pt;}
.yd0{bottom:311.546667pt;}
.ye6{bottom:314.106667pt;}
.ya9{bottom:315.706667pt;}
.y1a{bottom:318.266667pt;}
.y76{bottom:323.706667pt;}
.ycf{bottom:329.146667pt;}
.ye5{bottom:331.706667pt;}
.ya8{bottom:333.466667pt;}
.y19{bottom:335.866667pt;}
.y75{bottom:341.466667pt;}
.yce{bottom:346.746667pt;}
.ye4{bottom:349.466667pt;}
.ya7{bottom:351.066667pt;}
.y18{bottom:353.626667pt;}
.y74{bottom:359.106667pt;}
.ycd{bottom:364.386667pt;}
.ye3{bottom:367.106667pt;}
.ya6{bottom:368.706667pt;}
.y17{bottom:371.266667pt;}
.y73{bottom:376.706667pt;}
.ycc{bottom:381.986667pt;}
.ye2{bottom:384.706667pt;}
.ya5{bottom:386.306667pt;}
.y16{bottom:388.866667pt;}
.y72{bottom:394.306667pt;}
.ycb{bottom:399.746667pt;}
.ye1{bottom:402.306667pt;}
.ya4{bottom:403.906667pt;}
.y15{bottom:406.466667pt;}
.y71{bottom:411.906667pt;}
.yca{bottom:417.346667pt;}
.ye0{bottom:419.906667pt;}
.ya3{bottom:421.666667pt;}
.y14{bottom:424.066667pt;}
.y70{bottom:429.666667pt;}
.yc9{bottom:434.946667pt;}
.ydf{bottom:437.666667pt;}
.ya2{bottom:439.266667pt;}
.y13{bottom:441.826667pt;}
.y6f{bottom:447.266667pt;}
.yc8{bottom:452.546667pt;}
.yde{bottom:455.266667pt;}
.ya1{bottom:456.866667pt;}
.y12{bottom:459.426667pt;}
.y6e{bottom:464.866667pt;}
.yc7{bottom:470.146667pt;}
.ydd{bottom:472.866667pt;}
.ya0{bottom:474.466667pt;}
.y29{bottom:476.546667pt;}
.yc6{bottom:487.906667pt;}
.y6d{bottom:490.466667pt;}
.y9f{bottom:492.066667pt;}
.yc5{bottom:505.506667pt;}
.y6c{bottom:508.066667pt;}
.y9e{bottom:509.826667pt;}
.yc4{bottom:523.106667pt;}
.y6b{bottom:525.826667pt;}
.y9d{bottom:527.426667pt;}
.yc3{bottom:540.706667pt;}
.y6a{bottom:543.426667pt;}
.y9c{bottom:545.026667pt;}
.yc2{bottom:558.306667pt;}
.y69{bottom:561.026667pt;}
.y9b{bottom:562.626667pt;}
.yc1{bottom:576.066667pt;}
.y68{bottom:578.653333pt;}
.y9a{bottom:580.253333pt;}
.yc0{bottom:593.693333pt;}
.y67{bottom:596.253333pt;}
.y99{bottom:598.013333pt;}
.ybf{bottom:611.293333pt;}
.y66{bottom:614.013333pt;}
.y98{bottom:615.613333pt;}
.ybe{bottom:628.893333pt;}
.y65{bottom:631.613333pt;}
.y97{bottom:633.213333pt;}
.ybd{bottom:646.493333pt;}
.y64{bottom:649.213333pt;}
.y96{bottom:650.813333pt;}
.ybc{bottom:664.253333pt;}
.y63{bottom:666.813333pt;}
.y95{bottom:668.413333pt;}
.ybb{bottom:681.853333pt;}
.y62{bottom:684.413333pt;}
.y94{bottom:686.173333pt;}
.yba{bottom:699.453333pt;}
.y61{bottom:702.173333pt;}
.y93{bottom:703.773333pt;}
.yb9{bottom:717.053333pt;}
.y60{bottom:719.773333pt;}
.y92{bottom:721.373333pt;}
.yb8{bottom:734.653333pt;}
.y5f{bottom:737.373333pt;}
.y91{bottom:738.973333pt;}
.yb7{bottom:752.413333pt;}
.y5e{bottom:754.973333pt;}
.y90{bottom:756.573333pt;}
.y3b{bottom:763.293333pt;}
.yb5{bottom:765.533333pt;}
.y5d{bottom:772.573333pt;}
.y8f{bottom:774.333333pt;}
.y5c{bottom:790.333333pt;}
.y8e{bottom:791.933333pt;}
.y11{bottom:793.053333pt;}
.y5b{bottom:807.973333pt;}
.y8d{bottom:809.573333pt;}
.y10{bottom:815.333333pt;}
.yb4{bottom:819.013333pt;}
.y5a{bottom:825.573333pt;}
.y8c{bottom:827.173333pt;}
.yf{bottom:828.933333pt;}
.yb3{bottom:836.773333pt;}
.y59{bottom:843.173333pt;}
.y8b{bottom:844.773333pt;}
.ye{bottom:847.813333pt;}
.yb2{bottom:854.373333pt;}
.y58{bottom:860.773333pt;}
.y8a{bottom:862.533333pt;}
.yd{bottom:868.613333pt;}
.yb1{bottom:871.973333pt;}
.y57{bottom:878.533333pt;}
.y89{bottom:880.133333pt;}
.yb0{bottom:890.213333pt;}
.y56{bottom:896.133333pt;}
.yc{bottom:896.933333pt;}
.y88{bottom:905.733333pt;}
.y55{bottom:913.733333pt;}
.ya{bottom:920.773333pt;}
.y87{bottom:923.333333pt;}
.y54{bottom:931.333333pt;}
.y1{bottom:935.333333pt;}
.y86{bottom:940.933333pt;}
.y53{bottom:948.933333pt;}
.y85{bottom:958.693333pt;}
.y52{bottom:966.693333pt;}
.y84{bottom:976.293333pt;}
.y51{bottom:984.293333pt;}
.y83{bottom:993.893333pt;}
.y50{bottom:1001.893333pt;}
.y4f{bottom:1019.520000pt;}
.y4e{bottom:1037.120000pt;}
.y4d{bottom:1062.880000pt;}
.h11{height:17.600000pt;}
.hf{height:17.760000pt;}
.ha{height:24.131250pt;}
.hc{height:37.090625pt;}
.h8{height:37.479688pt;}
.hb{height:38.672812pt;}
.hd{height:43.782500pt;}
.h6{height:44.687500pt;}
.h9{height:47.310625pt;}
.h12{height:52.832000pt;}
.h5{height:58.563750pt;}
.h7{height:60.057813pt;}
.h3{height:65.531250pt;}
.h4{height:93.387187pt;}
.h2{height:139.226667pt;}
.h10{height:282.106667pt;}
.he{height:304.506667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:113.472000pt;}
.w8{width:127.680000pt;}
.w9{width:127.712000pt;}
.w4{width:139.706667pt;}
.w6{width:253.826667pt;}
.w7{width:439.773333pt;}
.w3{width:444.253333pt;}
.wa{width:638.493333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:7.200000pt;}
.x4{left:30.240000pt;}
.x1{left:48.000000pt;}
.xc{left:54.079988pt;}
.xf{left:59.999988pt;}
.x11{left:71.999988pt;}
.x12{left:77.632000pt;}
.xa{left:96.031988pt;}
.x7{left:98.120000pt;}
.xd{left:102.111988pt;}
.x2{left:103.066667pt;}
.x10{left:108.031988pt;}
.x5{left:117.160000pt;}
.x8{left:118.920000pt;}
.xe{left:120.031988pt;}
.x3{left:161.466667pt;}
.x13{left:205.306667pt;}
.xb{left:304.706667pt;}
.x14{left:333.026667pt;}
.x15{left:460.733333pt;}
.x16{left:588.453333pt;}
.x9{left:605.733333pt;}
}




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