
    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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_dcca74c4de71b7a5cfd2f04a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.810547;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_3269890caeda797d080acc71.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_68e46969f49d8f30ca2ccdae.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_af59584081f852be40503eb8.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_abe8bf432724e51dc486a482.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_35d15a0905b277e34e37110a.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_1779d6acbc6f04408a090817.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.738770;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_324beb57657635d2f99457d6.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_97ad7bdffdc250902192fea0.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_cc8b40bf08d16af85e325245.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_dfc6c9b331326bd15c194b3d.woff2')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;}
@font-face{font-family:ffd;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffd{font-family:ffd;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;}
.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;}
.lsb{letter-spacing:-1.080000px;}
.ls6{letter-spacing:-0.774000px;}
.lse{letter-spacing:-0.612000px;}
.lsd{letter-spacing:-0.540000px;}
.ls9{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.206400px;}
.ls4{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.106800px;}
.ls3{letter-spacing:0.256200px;}
.ls8{letter-spacing:0.259920px;}
.ls11{letter-spacing:0.298800px;}
.ls12{letter-spacing:0.336000px;}
.ls0{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.540000px;}
.ls1{letter-spacing:5.220000px;}
.lsc{letter-spacing:8.100000px;}
.ls10{letter-spacing:16.506720px;}
.lsf{letter-spacing:46.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;}
}
.ws2{word-spacing:-16.560000px;}
.ws3{word-spacing:-15.300000px;}
.ws0{word-spacing:-15.226440px;}
.ws1{word-spacing:-14.970240px;}
.ws5{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.733600px;}
.ws7{word-spacing:-14.580000px;}
.ws4{word-spacing:-13.500000px;}
.ws6{word-spacing:0.000000px;}
._1{margin-left:-3.179520px;}
._7{margin-left:-2.146320px;}
._2{margin-left:-1.059840px;}
._0{width:1.185840px;}
._3{width:2.450400px;}
._6{width:4.181760px;}
._5{width:6.037200px;}
._10{width:7.240320px;}
._11{width:8.278560px;}
._13{width:9.602640px;}
._a{width:10.766160px;}
._12{width:12.333600px;}
._8{width:13.792080px;}
._f{width:16.079760px;}
._e{width:17.206560px;}
._d{width:19.123200px;}
._9{width:20.865600px;}
._b{width:32.459040px;}
._c{width:33.506640px;}
._4{width:48.648000px;}
.fc4{color:transparent;}
.fc3{color:rgb(68,114,196);}
.fc2{color:rgb(70,120,134);}
.fc1{color:rgb(79,129,189);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:2.880000px;}
.fs5{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs3{font-size:95.760000px;}
.fs1{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:1.440000px;}
.y14{bottom:5.760000px;}
.y7{bottom:14.760000px;}
.y27{bottom:25.560000px;}
.y6{bottom:43.920000px;}
.y26{bottom:45.360000px;}
.yd{bottom:58.140000px;}
.y5{bottom:64.080000px;}
.y25{bottom:65.160000px;}
.yb{bottom:73.800000px;}
.ya{bottom:78.300000px;}
.y24{bottom:85.140000px;}
.y92{bottom:85.500000px;}
.y4{bottom:86.400000px;}
.yaa{bottom:96.300000px;}
.y3c{bottom:101.700000px;}
.y23{bottom:104.940000px;}
.y91{bottom:105.300000px;}
.y9{bottom:107.490000px;}
.y72{bottom:114.300000px;}
.ya9{bottom:116.280000px;}
.y3b{bottom:121.680000px;}
.y3{bottom:122.610000px;}
.y22{bottom:124.740000px;}
.y90{bottom:125.280000px;}
.y71{bottom:134.280000px;}
.ya8{bottom:136.080000px;}
.y8{bottom:136.650000px;}
.y3a{bottom:141.480000px;}
.y21{bottom:144.570000px;}
.y8f{bottom:145.080000px;}
.y70{bottom:154.110000px;}
.ya7{bottom:155.910000px;}
.y39{bottom:161.310000px;}
.y20{bottom:164.370000px;}
.y8e{bottom:164.910000px;}
.y6f{bottom:173.910000px;}
.ya6{bottom:175.710000px;}
.y38{bottom:181.110000px;}
.y1f{bottom:184.350000px;}
.y8d{bottom:184.710000px;}
.y6e{bottom:193.710000px;}
.ya5{bottom:195.510000px;}
.y37{bottom:200.910000px;}
.y1e{bottom:204.150000px;}
.y8c{bottom:204.510000px;}
.y6d{bottom:213.510000px;}
.ya4{bottom:215.490000px;}
.y36{bottom:220.890000px;}
.y1d{bottom:223.950000px;}
.y8b{bottom:224.490000px;}
.y6c{bottom:233.490000px;}
.ya3{bottom:235.290000px;}
.y35{bottom:240.690000px;}
.y1c{bottom:243.750000px;}
.y8a{bottom:244.290000px;}
.y6b{bottom:253.290000px;}
.ya2{bottom:255.090000px;}
.y34{bottom:260.490000px;}
.y1b{bottom:263.550000px;}
.y89{bottom:264.090000px;}
.y6a{bottom:273.090000px;}
.y33{bottom:280.290000px;}
.y1a{bottom:283.530000px;}
.y88{bottom:283.890000px;}
.y69{bottom:292.890000px;}
.y32{bottom:300.090000px;}
.y19{bottom:303.330000px;}
.y87{bottom:303.690000px;}
.y68{bottom:312.690000px;}
.y31{bottom:320.070000px;}
.y18{bottom:323.130000px;}
.y86{bottom:323.670000px;}
.y67{bottom:332.670000px;}
.y30{bottom:339.870000px;}
.y17{bottom:342.930000px;}
.y85{bottom:343.470000px;}
.y66{bottom:352.470000px;}
.y2f{bottom:359.670000px;}
.y16{bottom:362.730000px;}
.y84{bottom:363.270000px;}
.y65{bottom:372.270000px;}
.y2e{bottom:379.470000px;}
.y83{bottom:383.070000px;}
.y64{bottom:392.070000px;}
.y2d{bottom:399.270000px;}
.y82{bottom:402.915000px;}
.y63{bottom:411.915000px;}
.y2c{bottom:419.295000px;}
.y81{bottom:422.895000px;}
.y62{bottom:431.895000px;}
.y2b{bottom:439.095000px;}
.y80{bottom:442.695000px;}
.y61{bottom:451.695000px;}
.y2a{bottom:458.895000px;}
.y7f{bottom:462.495000px;}
.y60{bottom:471.495000px;}
.y29{bottom:478.695000px;}
.y7e{bottom:482.295000px;}
.y5f{bottom:491.295000px;}
.y28{bottom:498.495000px;}
.y7d{bottom:502.095000px;}
.y5e{bottom:511.095000px;}
.y15{bottom:513.435000px;}
.y7c{bottom:522.075000px;}
.y5d{bottom:531.075000px;}
.y7b{bottom:541.875000px;}
.y5c{bottom:550.875000px;}
.y7a{bottom:561.675000px;}
.y5b{bottom:570.675000px;}
.y79{bottom:581.475000px;}
.y5a{bottom:590.475000px;}
.y78{bottom:601.275000px;}
.y59{bottom:610.275000px;}
.y77{bottom:621.255000px;}
.y58{bottom:630.255000px;}
.y76{bottom:641.055000px;}
.y57{bottom:650.085000px;}
.y75{bottom:660.885000px;}
.y56{bottom:669.885000px;}
.y74{bottom:680.685000px;}
.y55{bottom:689.685000px;}
.y73{bottom:700.485000px;}
.y54{bottom:709.485000px;}
.ya1{bottom:720.465000px;}
.y53{bottom:729.465000px;}
.ya0{bottom:740.265000px;}
.y52{bottom:749.265000px;}
.y9f{bottom:760.065000px;}
.y51{bottom:769.065000px;}
.y9e{bottom:779.865000px;}
.y50{bottom:788.865000px;}
.y9d{bottom:799.665000px;}
.y4f{bottom:808.665000px;}
.y9c{bottom:819.645000px;}
.y4e{bottom:828.645000px;}
.y9b{bottom:839.445000px;}
.y4d{bottom:848.445000px;}
.y9a{bottom:859.245000px;}
.y4c{bottom:868.245000px;}
.y99{bottom:879.045000px;}
.y4b{bottom:888.045000px;}
.y13{bottom:891.105000px;}
.y98{bottom:898.890000px;}
.y4a{bottom:907.890000px;}
.y12{bottom:916.710000px;}
.y97{bottom:918.870000px;}
.y49{bottom:927.870000px;}
.y11{bottom:936.510000px;}
.y96{bottom:938.670000px;}
.y48{bottom:947.670000px;}
.y10{bottom:956.850000px;}
.y95{bottom:958.470000px;}
.y47{bottom:967.470000px;}
.y94{bottom:978.270000px;}
.yf{bottom:978.810000px;}
.y46{bottom:987.270000px;}
.y93{bottom:998.070000px;}
.ye{bottom:1003.650000px;}
.y45{bottom:1007.070000px;}
.y44{bottom:1027.050000px;}
.yc{bottom:1030.470000px;}
.y1{bottom:1046.850000px;}
.y43{bottom:1066.650000px;}
.y42{bottom:1086.450000px;}
.y41{bottom:1106.250000px;}
.y40{bottom:1126.230000px;}
.y3f{bottom:1146.030000px;}
.y3e{bottom:1165.860000px;}
.y3d{bottom:1194.840000px;}
.h3{height:2.864531px;}
.hb{height:19.836000px;}
.ha{height:41.726953px;}
.hc{height:42.164648px;}
.hf{height:43.506914px;}
.h7{height:46.251562px;}
.h9{height:46.736719px;}
.he{height:49.255313px;}
.h6{height:65.884219px;}
.h8{height:67.565039px;}
.h5{height:67.824844px;}
.h4{height:105.060586px;}
.h2{height:161.310000px;}
.hd{height:376.770000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:153.750000px;}
.w4{width:156.990000px;}
.w7{width:291.135000px;}
.w3{width:472.785000px;}
.w8{width:499.065000px;}
.w6{width:790.200000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:8.100000px;}
.xa{left:51.480000px;}
.x1{left:54.720000px;}
.x4{left:56.160000px;}
.xe{left:80.999987px;}
.xc{left:108.035987px;}
.x7{left:109.845000px;}
.x5{left:119.385000px;}
.x2{left:136.290000px;}
.x3{left:208.470000px;}
.x6{left:236.385000px;}
.xd{left:292.214987px;}
.xb{left:342.615000px;}
.x8{left:681.270000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-0.960000pt;}
.ls6{letter-spacing:-0.688000pt;}
.lse{letter-spacing:-0.544000pt;}
.lsd{letter-spacing:-0.480000pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.183467pt;}
.ls4{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.094933pt;}
.ls3{letter-spacing:0.227733pt;}
.ls8{letter-spacing:0.231040pt;}
.ls11{letter-spacing:0.265600pt;}
.ls12{letter-spacing:0.298667pt;}
.ls0{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.480000pt;}
.ls1{letter-spacing:4.640000pt;}
.lsc{letter-spacing:7.200000pt;}
.ls10{letter-spacing:14.672640pt;}
.lsf{letter-spacing:40.912640pt;}
.ws2{word-spacing:-14.720000pt;}
.ws3{word-spacing:-13.600000pt;}
.ws0{word-spacing:-13.534613pt;}
.ws1{word-spacing:-13.306880pt;}
.ws5{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.096533pt;}
.ws7{word-spacing:-12.960000pt;}
.ws4{word-spacing:-12.000000pt;}
.ws6{word-spacing:0.000000pt;}
._1{margin-left:-2.826240pt;}
._7{margin-left:-1.907840pt;}
._2{margin-left:-0.942080pt;}
._0{width:1.054080pt;}
._3{width:2.178133pt;}
._6{width:3.717120pt;}
._5{width:5.366400pt;}
._10{width:6.435840pt;}
._11{width:7.358720pt;}
._13{width:8.535680pt;}
._a{width:9.569920pt;}
._12{width:10.963200pt;}
._8{width:12.259627pt;}
._f{width:14.293120pt;}
._e{width:15.294720pt;}
._d{width:16.998400pt;}
._9{width:18.547200pt;}
._b{width:28.852480pt;}
._c{width:29.783680pt;}
._4{width:43.242667pt;}
.fs0{font-size:2.560000pt;}
.fs5{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs3{font-size:85.120000pt;}
.fs1{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:1.280000pt;}
.y14{bottom:5.120000pt;}
.y7{bottom:13.120000pt;}
.y27{bottom:22.720000pt;}
.y6{bottom:39.040000pt;}
.y26{bottom:40.320000pt;}
.yd{bottom:51.680000pt;}
.y5{bottom:56.960000pt;}
.y25{bottom:57.920000pt;}
.yb{bottom:65.600000pt;}
.ya{bottom:69.600000pt;}
.y24{bottom:75.680000pt;}
.y92{bottom:76.000000pt;}
.y4{bottom:76.800000pt;}
.yaa{bottom:85.600000pt;}
.y3c{bottom:90.400000pt;}
.y23{bottom:93.280000pt;}
.y91{bottom:93.600000pt;}
.y9{bottom:95.546667pt;}
.y72{bottom:101.600000pt;}
.ya9{bottom:103.360000pt;}
.y3b{bottom:108.160000pt;}
.y3{bottom:108.986667pt;}
.y22{bottom:110.880000pt;}
.y90{bottom:111.360000pt;}
.y71{bottom:119.360000pt;}
.ya8{bottom:120.960000pt;}
.y8{bottom:121.466667pt;}
.y3a{bottom:125.760000pt;}
.y21{bottom:128.506667pt;}
.y8f{bottom:128.960000pt;}
.y70{bottom:136.986667pt;}
.ya7{bottom:138.586667pt;}
.y39{bottom:143.386667pt;}
.y20{bottom:146.106667pt;}
.y8e{bottom:146.586667pt;}
.y6f{bottom:154.586667pt;}
.ya6{bottom:156.186667pt;}
.y38{bottom:160.986667pt;}
.y1f{bottom:163.866667pt;}
.y8d{bottom:164.186667pt;}
.y6e{bottom:172.186667pt;}
.ya5{bottom:173.786667pt;}
.y37{bottom:178.586667pt;}
.y1e{bottom:181.466667pt;}
.y8c{bottom:181.786667pt;}
.y6d{bottom:189.786667pt;}
.ya4{bottom:191.546667pt;}
.y36{bottom:196.346667pt;}
.y1d{bottom:199.066667pt;}
.y8b{bottom:199.546667pt;}
.y6c{bottom:207.546667pt;}
.ya3{bottom:209.146667pt;}
.y35{bottom:213.946667pt;}
.y1c{bottom:216.666667pt;}
.y8a{bottom:217.146667pt;}
.y6b{bottom:225.146667pt;}
.ya2{bottom:226.746667pt;}
.y34{bottom:231.546667pt;}
.y1b{bottom:234.266667pt;}
.y89{bottom:234.746667pt;}
.y6a{bottom:242.746667pt;}
.y33{bottom:249.146667pt;}
.y1a{bottom:252.026667pt;}
.y88{bottom:252.346667pt;}
.y69{bottom:260.346667pt;}
.y32{bottom:266.746667pt;}
.y19{bottom:269.626667pt;}
.y87{bottom:269.946667pt;}
.y68{bottom:277.946667pt;}
.y31{bottom:284.506667pt;}
.y18{bottom:287.226667pt;}
.y86{bottom:287.706667pt;}
.y67{bottom:295.706667pt;}
.y30{bottom:302.106667pt;}
.y17{bottom:304.826667pt;}
.y85{bottom:305.306667pt;}
.y66{bottom:313.306667pt;}
.y2f{bottom:319.706667pt;}
.y16{bottom:322.426667pt;}
.y84{bottom:322.906667pt;}
.y65{bottom:330.906667pt;}
.y2e{bottom:337.306667pt;}
.y83{bottom:340.506667pt;}
.y64{bottom:348.506667pt;}
.y2d{bottom:354.906667pt;}
.y82{bottom:358.146667pt;}
.y63{bottom:366.146667pt;}
.y2c{bottom:372.706667pt;}
.y81{bottom:375.906667pt;}
.y62{bottom:383.906667pt;}
.y2b{bottom:390.306667pt;}
.y80{bottom:393.506667pt;}
.y61{bottom:401.506667pt;}
.y2a{bottom:407.906667pt;}
.y7f{bottom:411.106667pt;}
.y60{bottom:419.106667pt;}
.y29{bottom:425.506667pt;}
.y7e{bottom:428.706667pt;}
.y5f{bottom:436.706667pt;}
.y28{bottom:443.106667pt;}
.y7d{bottom:446.306667pt;}
.y5e{bottom:454.306667pt;}
.y15{bottom:456.386667pt;}
.y7c{bottom:464.066667pt;}
.y5d{bottom:472.066667pt;}
.y7b{bottom:481.666667pt;}
.y5c{bottom:489.666667pt;}
.y7a{bottom:499.266667pt;}
.y5b{bottom:507.266667pt;}
.y79{bottom:516.866667pt;}
.y5a{bottom:524.866667pt;}
.y78{bottom:534.466667pt;}
.y59{bottom:542.466667pt;}
.y77{bottom:552.226667pt;}
.y58{bottom:560.226667pt;}
.y76{bottom:569.826667pt;}
.y57{bottom:577.853333pt;}
.y75{bottom:587.453333pt;}
.y56{bottom:595.453333pt;}
.y74{bottom:605.053333pt;}
.y55{bottom:613.053333pt;}
.y73{bottom:622.653333pt;}
.y54{bottom:630.653333pt;}
.ya1{bottom:640.413333pt;}
.y53{bottom:648.413333pt;}
.ya0{bottom:658.013333pt;}
.y52{bottom:666.013333pt;}
.y9f{bottom:675.613333pt;}
.y51{bottom:683.613333pt;}
.y9e{bottom:693.213333pt;}
.y50{bottom:701.213333pt;}
.y9d{bottom:710.813333pt;}
.y4f{bottom:718.813333pt;}
.y9c{bottom:728.573333pt;}
.y4e{bottom:736.573333pt;}
.y9b{bottom:746.173333pt;}
.y4d{bottom:754.173333pt;}
.y9a{bottom:763.773333pt;}
.y4c{bottom:771.773333pt;}
.y99{bottom:781.373333pt;}
.y4b{bottom:789.373333pt;}
.y13{bottom:792.093333pt;}
.y98{bottom:799.013333pt;}
.y4a{bottom:807.013333pt;}
.y12{bottom:814.853333pt;}
.y97{bottom:816.773333pt;}
.y49{bottom:824.773333pt;}
.y11{bottom:832.453333pt;}
.y96{bottom:834.373333pt;}
.y48{bottom:842.373333pt;}
.y10{bottom:850.533333pt;}
.y95{bottom:851.973333pt;}
.y47{bottom:859.973333pt;}
.y94{bottom:869.573333pt;}
.yf{bottom:870.053333pt;}
.y46{bottom:877.573333pt;}
.y93{bottom:887.173333pt;}
.ye{bottom:892.133333pt;}
.y45{bottom:895.173333pt;}
.y44{bottom:912.933333pt;}
.yc{bottom:915.973333pt;}
.y1{bottom:930.533333pt;}
.y43{bottom:948.133333pt;}
.y42{bottom:965.733333pt;}
.y41{bottom:983.333333pt;}
.y40{bottom:1001.093333pt;}
.y3f{bottom:1018.693333pt;}
.y3e{bottom:1036.320000pt;}
.y3d{bottom:1062.080000pt;}
.h3{height:2.546250pt;}
.hb{height:17.632000pt;}
.ha{height:37.090625pt;}
.hc{height:37.479688pt;}
.hf{height:38.672812pt;}
.h7{height:41.112500pt;}
.h9{height:41.543750pt;}
.he{height:43.782500pt;}
.h6{height:58.563750pt;}
.h8{height:60.057813pt;}
.h5{height:60.288750pt;}
.h4{height:93.387187pt;}
.h2{height:143.386667pt;}
.hd{height:334.906667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:136.666667pt;}
.w4{width:139.546667pt;}
.w7{width:258.786667pt;}
.w3{width:420.253333pt;}
.w8{width:443.613333pt;}
.w6{width:702.400000pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:7.200000pt;}
.xa{left:45.760000pt;}
.x1{left:48.640000pt;}
.x4{left:49.920000pt;}
.xe{left:71.999988pt;}
.xc{left:96.031988pt;}
.x7{left:97.640000pt;}
.x5{left:106.120000pt;}
.x2{left:121.146667pt;}
.x3{left:185.306667pt;}
.x6{left:210.120000pt;}
.xd{left:259.746655pt;}
.xb{left:304.546667pt;}
.x8{left:605.573333pt;}
}




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