
    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_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_165c6e7bc3b3be37f0fe4683.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_0f058df294ea358e0e3d5c94.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b9e318d65e4ee8a8b70b22b0.woff2')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_29ad799bdba715fc274e9632.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942383;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_ccbb32a5461342ee76194105.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_3b6572cc7f7ef688f22dbcf5.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_40416b6b64552014aa8231e5.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_352ed6da16e6ded42fb4867b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.966309;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;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.lsa{letter-spacing:-1.008000px;}
.ls12{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.226200px;}
.ls11{letter-spacing:-0.108000px;}
.lsb{letter-spacing:-0.089400px;}
.ls10{letter-spacing:-0.072000px;}
.lse{letter-spacing:-0.053280px;}
.ls9{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.014400px;}
.ls7{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.120000px;}
.ls8{letter-spacing:0.149760px;}
.ls1{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.234000px;}
.lsf{letter-spacing:0.259800px;}
.ls0{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.720000px;}
.ls13{letter-spacing:10.260000px;}
.ls14{letter-spacing:46.026720px;}
.ls6{letter-spacing:64.026720px;}
.ls2{letter-spacing:126.300000px;}
.ls4{letter-spacing:155.700000px;}
.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;}
}
.ws8{word-spacing:-59.760000px;}
.ws0{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.wse{word-spacing:-15.199800px;}
.ws3{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.886720px;}
.ws7{word-spacing:-13.500000px;}
.wsb{word-spacing:-13.392000px;}
.wsc{word-spacing:-13.140000px;}
.ws4{word-spacing:-11.160000px;}
.ws6{word-spacing:-10.440000px;}
.ws5{word-spacing:-10.213800px;}
.ws2{word-spacing:-9.720000px;}
.wsa{word-spacing:-8.928000px;}
.wsd{word-spacing:0.000000px;}
._0{margin-left:-1.093680px;}
._1{width:1.072800px;}
._3{width:2.539200px;}
._6{width:4.590000px;}
._9{width:5.859360px;}
._2{width:7.614000px;}
._7{width:9.176880px;}
._5{width:10.558560px;}
._4{width:11.988000px;}
._a{width:13.412640px;}
._f{width:15.972960px;}
._e{width:17.016240px;}
._c{width:18.286560px;}
._10{width:20.033760px;}
._b{width:21.038400px;}
._8{width:24.300000px;}
._d{width:172.288080px;}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(0,176,240);}
.fc1{color:rgb(0,112,192);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:5.760000px;}
.fsa{font-size:30.240000px;}
.fs9{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs8{font-size:54.000000px;}
.fs3{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y4f{bottom:2.340000px;}
.y44{bottom:3.240000px;}
.y5{bottom:3.780000px;}
.y5d{bottom:5.010000px;}
.y89{bottom:9.360000px;}
.y85{bottom:9.540000px;}
.y90{bottom:9.570000px;}
.y2{bottom:9.900000px;}
.y4e{bottom:10.260000px;}
.y92{bottom:10.980000px;}
.y87{bottom:11.160000px;}
.y5b{bottom:20.340000px;}
.y43{bottom:20.520000px;}
.y4{bottom:22.710000px;}
.y5a{bottom:37.080000px;}
.y42{bottom:37.800000px;}
.y4d{bottom:39.960000px;}
.y3{bottom:47.910000px;}
.y4c{bottom:51.120000px;}
.y59{bottom:53.820000px;}
.y41{bottom:54.900000px;}
.y7{bottom:57.060000px;}
.y4b{bottom:63.000000px;}
.y58{bottom:71.640000px;}
.y40{bottom:72.180000px;}
.y4a{bottom:75.960000px;}
.y57{bottom:87.120000px;}
.y49{bottom:88.920000px;}
.y3f{bottom:89.460000px;}
.y45{bottom:90.540000px;}
.y96{bottom:91.260000px;}
.y56{bottom:100.080000px;}
.y55{bottom:106.560000px;}
.y3e{bottom:106.740000px;}
.y95{bottom:108.540000px;}
.y48{bottom:111.060000px;}
.y54{bottom:122.070000px;}
.y94{bottom:123.300000px;}
.y3d{bottom:124.020000px;}
.y53{bottom:137.730000px;}
.y3c{bottom:142.425000px;}
.y93{bottom:147.420000px;}
.y52{bottom:153.210000px;}
.y3b{bottom:159.525000px;}
.y51{bottom:168.690000px;}
.y91{bottom:171.540000px;}
.y47{bottom:173.010000px;}
.y3a{bottom:177.885000px;}
.y46{bottom:183.630000px;}
.y50{bottom:184.170000px;}
.y39{bottom:195.165000px;}
.y8f{bottom:197.280000px;}
.y38{bottom:213.525000px;}
.y8e{bottom:224.850000px;}
.y37{bottom:230.805000px;}
.y8d{bottom:241.950000px;}
.y36{bottom:248.985000px;}
.y8c{bottom:259.230000px;}
.y35{bottom:266.265000px;}
.y8b{bottom:276.510000px;}
.y34{bottom:283.545000px;}
.y8a{bottom:291.270000px;}
.y33{bottom:300.825000px;}
.y10{bottom:304.230000px;}
.y1e{bottom:313.785000px;}
.y88{bottom:315.570000px;}
.y32{bottom:318.105000px;}
.y31{bottom:335.385000px;}
.y1d{bottom:337.905000px;}
.y86{bottom:339.690000px;}
.y30{bottom:352.485000px;}
.y1c{bottom:362.025000px;}
.y84{bottom:365.610000px;}
.y2f{bottom:369.795000px;}
.yb6{bottom:376.770000px;}
.y1b{bottom:386.175000px;}
.y2e{bottom:387.075000px;}
.y83{bottom:393.150000px;}
.yb5{bottom:394.050000px;}
.y2d{bottom:404.355000px;}
.y1a{bottom:410.295000px;}
.y82{bottom:410.430000px;}
.yb4{bottom:411.150000px;}
.y2c{bottom:421.635000px;}
.y81{bottom:427.710000px;}
.yb3{bottom:428.430000px;}
.y19{bottom:434.415000px;}
.y2b{bottom:438.555000px;}
.y80{bottom:444.855000px;}
.yb2{bottom:445.755000px;}
.y2a{bottom:454.035000px;}
.y18{bottom:458.715000px;}
.y7f{bottom:462.135000px;}
.yb1{bottom:463.035000px;}
.y29{bottom:469.515000px;}
.y7e{bottom:476.895000px;}
.yb0{bottom:480.315000px;}
.y17{bottom:482.835000px;}
.y28{bottom:485.175000px;}
.yaf{bottom:497.595000px;}
.y27{bottom:500.655000px;}
.y16{bottom:506.955000px;}
.y7d{bottom:512.175000px;}
.yae{bottom:514.695000px;}
.y26{bottom:516.135000px;}
.y15{bottom:531.075000px;}
.y25{bottom:531.615000px;}
.yad{bottom:531.975000px;}
.y24{bottom:547.095000px;}
.y7c{bottom:547.455000px;}
.yac{bottom:549.255000px;}
.y14{bottom:555.195000px;}
.y23{bottom:562.755000px;}
.yab{bottom:566.535000px;}
.y22{bottom:578.235000px;}
.y13{bottom:579.315000px;}
.yaa{bottom:583.815000px;}
.y7b{bottom:585.975000px;}
.y21{bottom:593.715000px;}
.ya9{bottom:601.095000px;}
.y7a{bottom:603.255000px;}
.y12{bottom:603.615000px;}
.y20{bottom:609.240000px;}
.ya8{bottom:618.195000px;}
.y79{bottom:620.355000px;}
.y1f{bottom:624.900000px;}
.y11{bottom:627.780000px;}
.ya7{bottom:635.475000px;}
.y78{bottom:637.635000px;}
.ya6{bottom:652.755000px;}
.y77{bottom:654.915000px;}
.ya5{bottom:670.035000px;}
.y76{bottom:672.195000px;}
.ya4{bottom:687.345000px;}
.y75{bottom:689.505000px;}
.ya3{bottom:704.625000px;}
.y74{bottom:706.605000px;}
.ya2{bottom:721.725000px;}
.y73{bottom:723.885000px;}
.ya1{bottom:739.005000px;}
.y72{bottom:741.165000px;}
.ya0{bottom:756.285000px;}
.y71{bottom:758.445000px;}
.y9f{bottom:773.565000px;}
.y70{bottom:776.805000px;}
.y9e{bottom:790.845000px;}
.y6f{bottom:795.165000px;}
.y9d{bottom:807.945000px;}
.y6e{bottom:813.345000px;}
.y9c{bottom:825.225000px;}
.y6d{bottom:830.625000px;}
.y9b{bottom:842.505000px;}
.y6c{bottom:847.905000px;}
.y9a{bottom:860.865000px;}
.y6b{bottom:865.185000px;}
.y99{bottom:879.225000px;}
.y6a{bottom:882.465000px;}
.y98{bottom:897.585000px;}
.y69{bottom:899.565000px;}
.y97{bottom:915.810000px;}
.y68{bottom:916.890000px;}
.y67{bottom:934.170000px;}
.yf{bottom:944.250000px;}
.ye{bottom:948.930000px;}
.y66{bottom:951.450000px;}
.y65{bottom:968.730000px;}
.yd{bottom:971.430000px;}
.yc{bottom:983.310000px;}
.y64{bottom:986.010000px;}
.yb{bottom:1000.590000px;}
.y63{bottom:1003.110000px;}
.ya{bottom:1019.130000px;}
.y62{bottom:1020.390000px;}
.y61{bottom:1037.670000px;}
.y9{bottom:1043.250000px;}
.y60{bottom:1054.950000px;}
.y8{bottom:1071.870000px;}
.y5f{bottom:1072.230000px;}
.y5c{bottom:1075.140000px;}
.y5e{bottom:1089.510000px;}
.y6{bottom:1107.870000px;}
.y1{bottom:1123.530000px;}
.hc{height:4.021875px;}
.h18{height:4.747500px;}
.h16{height:21.114844px;}
.h1e{height:23.400000px;}
.h1f{height:23.436000px;}
.h1c{height:23.580000px;}
.h20{height:25.020000px;}
.h15{height:25.136719px;}
.h1d{height:25.200000px;}
.hb{height:27.147656px;}
.h19{height:27.720000px;}
.hf{height:29.158594px;}
.he{height:29.464453px;}
.h1b{height:34.560000px;}
.h17{height:38.100586px;}
.h10{height:38.997070px;}
.h7{height:40.132617px;}
.h6{height:41.726953px;}
.h12{height:42.164648px;}
.h13{height:43.506914px;}
.h11{height:44.507812px;}
.h5{height:46.251562px;}
.ha{height:48.027656px;}
.h9{height:48.312422px;}
.h21{height:49.255313px;}
.h8{height:59.436914px;}
.h1a{height:64.002656px;}
.h3{height:65.884219px;}
.h2{height:84.996000px;}
.h4{height:117.180000px;}
.h14{height:212.970000px;}
.hd{height:637.485000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wa{width:15.840000px;}
.wc{width:83.160000px;}
.wb{width:86.076000px;}
.w9{width:104.040000px;}
.w2{width:104.076000px;}
.w8{width:107.136000px;}
.wd{width:128.916000px;}
.w5{width:132.696000px;}
.w10{width:132.876000px;}
.w11{width:155.730000px;}
.w13{width:156.630000px;}
.w7{width:162.900000px;}
.wf{width:182.730000px;}
.w12{width:195.150000px;}
.we{width:205.770000px;}
.w6{width:596.490000px;}
.w3{width:622.410000px;}
.w4{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:7.056000px;}
.x18{left:8.100000px;}
.x4{left:12.780000px;}
.x6{left:18.720000px;}
.x16{left:20.556000px;}
.x15{left:29.556000px;}
.x1a{left:35.100000px;}
.xf{left:43.776000px;}
.x1c{left:47.736000px;}
.x10{left:50.796000px;}
.xe{left:54.936000px;}
.x1d{left:57.096000px;}
.x19{left:62.145000px;}
.x14{left:67.170000px;}
.x13{left:73.290000px;}
.x12{left:75.270000px;}
.x1{left:78.300000px;}
.x9{left:86.399987px;}
.x2{left:95.790000px;}
.x1e{left:102.810000px;}
.x1b{left:106.770000px;}
.x2c{left:113.435987px;}
.x11{left:124.590000px;}
.x5{left:141.345000px;}
.x20{left:173.730000px;}
.x3{left:182.370000px;}
.x26{left:185.250000px;}
.x29{left:192.270000px;}
.x17{left:219.090000px;}
.x21{left:281.775000px;}
.x2a{left:348.735000px;}
.x22{left:386.715000px;}
.x27{left:391.755000px;}
.x23{left:403.275000px;}
.xa{left:420.554987px;}
.xb{left:454.604987px;}
.x24{left:506.805000px;}
.xd{left:516.344987px;}
.xc{left:525.344987px;}
.x2b{left:544.605000px;}
.x28{left:575.205000px;}
.x25{left:590.685000px;}
.x8{left:766.049987px;}
.x7{left:784.409987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.lsa{letter-spacing:-0.896000pt;}
.ls12{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.201067pt;}
.ls11{letter-spacing:-0.096000pt;}
.lsb{letter-spacing:-0.079467pt;}
.ls10{letter-spacing:-0.064000pt;}
.lse{letter-spacing:-0.047360pt;}
.ls9{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.012800pt;}
.ls7{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.106667pt;}
.ls8{letter-spacing:0.133120pt;}
.ls1{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.208000pt;}
.lsf{letter-spacing:0.230933pt;}
.ls0{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.640000pt;}
.ls13{letter-spacing:9.120000pt;}
.ls14{letter-spacing:40.912640pt;}
.ls6{letter-spacing:56.912640pt;}
.ls2{letter-spacing:112.266667pt;}
.ls4{letter-spacing:138.400000pt;}
.ws8{word-spacing:-53.120000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.510933pt;}
.ws3{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.232640pt;}
.ws7{word-spacing:-12.000000pt;}
.wsb{word-spacing:-11.904000pt;}
.wsc{word-spacing:-11.680000pt;}
.ws4{word-spacing:-9.920000pt;}
.ws6{word-spacing:-9.280000pt;}
.ws5{word-spacing:-9.078933pt;}
.ws2{word-spacing:-8.640000pt;}
.wsa{word-spacing:-7.936000pt;}
.wsd{word-spacing:0.000000pt;}
._0{margin-left:-0.972160pt;}
._1{width:0.953600pt;}
._3{width:2.257067pt;}
._6{width:4.080000pt;}
._9{width:5.208320pt;}
._2{width:6.768000pt;}
._7{width:8.157227pt;}
._5{width:9.385387pt;}
._4{width:10.656000pt;}
._a{width:11.922347pt;}
._f{width:14.198187pt;}
._e{width:15.125547pt;}
._c{width:16.254720pt;}
._10{width:17.807787pt;}
._b{width:18.700800pt;}
._8{width:21.600000pt;}
._d{width:153.144960pt;}
.fs6{font-size:5.120000pt;}
.fsa{font-size:26.880000pt;}
.fs9{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs8{font-size:48.000000pt;}
.fs3{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y4f{bottom:2.080000pt;}
.y44{bottom:2.880000pt;}
.y5{bottom:3.360000pt;}
.y5d{bottom:4.453333pt;}
.y89{bottom:8.320000pt;}
.y85{bottom:8.480000pt;}
.y90{bottom:8.506667pt;}
.y2{bottom:8.800000pt;}
.y4e{bottom:9.120000pt;}
.y92{bottom:9.760000pt;}
.y87{bottom:9.920000pt;}
.y5b{bottom:18.080000pt;}
.y43{bottom:18.240000pt;}
.y4{bottom:20.186667pt;}
.y5a{bottom:32.960000pt;}
.y42{bottom:33.600000pt;}
.y4d{bottom:35.520000pt;}
.y3{bottom:42.586667pt;}
.y4c{bottom:45.440000pt;}
.y59{bottom:47.840000pt;}
.y41{bottom:48.800000pt;}
.y7{bottom:50.720000pt;}
.y4b{bottom:56.000000pt;}
.y58{bottom:63.680000pt;}
.y40{bottom:64.160000pt;}
.y4a{bottom:67.520000pt;}
.y57{bottom:77.440000pt;}
.y49{bottom:79.040000pt;}
.y3f{bottom:79.520000pt;}
.y45{bottom:80.480000pt;}
.y96{bottom:81.120000pt;}
.y56{bottom:88.960000pt;}
.y55{bottom:94.720000pt;}
.y3e{bottom:94.880000pt;}
.y95{bottom:96.480000pt;}
.y48{bottom:98.720000pt;}
.y54{bottom:108.506667pt;}
.y94{bottom:109.600000pt;}
.y3d{bottom:110.240000pt;}
.y53{bottom:122.426667pt;}
.y3c{bottom:126.600000pt;}
.y93{bottom:131.040000pt;}
.y52{bottom:136.186667pt;}
.y3b{bottom:141.800000pt;}
.y51{bottom:149.946667pt;}
.y91{bottom:152.480000pt;}
.y47{bottom:153.786667pt;}
.y3a{bottom:158.120000pt;}
.y46{bottom:163.226667pt;}
.y50{bottom:163.706667pt;}
.y39{bottom:173.480000pt;}
.y8f{bottom:175.360000pt;}
.y38{bottom:189.800000pt;}
.y8e{bottom:199.866667pt;}
.y37{bottom:205.160000pt;}
.y8d{bottom:215.066667pt;}
.y36{bottom:221.320000pt;}
.y8c{bottom:230.426667pt;}
.y35{bottom:236.680000pt;}
.y8b{bottom:245.786667pt;}
.y34{bottom:252.040000pt;}
.y8a{bottom:258.906667pt;}
.y33{bottom:267.400000pt;}
.y10{bottom:270.426667pt;}
.y1e{bottom:278.920000pt;}
.y88{bottom:280.506667pt;}
.y32{bottom:282.760000pt;}
.y31{bottom:298.120000pt;}
.y1d{bottom:300.360000pt;}
.y86{bottom:301.946667pt;}
.y30{bottom:313.320000pt;}
.y1c{bottom:321.800000pt;}
.y84{bottom:324.986667pt;}
.y2f{bottom:328.706667pt;}
.yb6{bottom:334.906667pt;}
.y1b{bottom:343.266667pt;}
.y2e{bottom:344.066667pt;}
.y83{bottom:349.466667pt;}
.yb5{bottom:350.266667pt;}
.y2d{bottom:359.426667pt;}
.y1a{bottom:364.706667pt;}
.y82{bottom:364.826667pt;}
.yb4{bottom:365.466667pt;}
.y2c{bottom:374.786667pt;}
.y81{bottom:380.186667pt;}
.yb3{bottom:380.826667pt;}
.y19{bottom:386.146667pt;}
.y2b{bottom:389.826667pt;}
.y80{bottom:395.426667pt;}
.yb2{bottom:396.226667pt;}
.y2a{bottom:403.586667pt;}
.y18{bottom:407.746667pt;}
.y7f{bottom:410.786667pt;}
.yb1{bottom:411.586667pt;}
.y29{bottom:417.346667pt;}
.y7e{bottom:423.906667pt;}
.yb0{bottom:426.946667pt;}
.y17{bottom:429.186667pt;}
.y28{bottom:431.266667pt;}
.yaf{bottom:442.306667pt;}
.y27{bottom:445.026667pt;}
.y16{bottom:450.626667pt;}
.y7d{bottom:455.266667pt;}
.yae{bottom:457.506667pt;}
.y26{bottom:458.786667pt;}
.y15{bottom:472.066667pt;}
.y25{bottom:472.546667pt;}
.yad{bottom:472.866667pt;}
.y24{bottom:486.306667pt;}
.y7c{bottom:486.626667pt;}
.yac{bottom:488.226667pt;}
.y14{bottom:493.506667pt;}
.y23{bottom:500.226667pt;}
.yab{bottom:503.586667pt;}
.y22{bottom:513.986667pt;}
.y13{bottom:514.946667pt;}
.yaa{bottom:518.946667pt;}
.y7b{bottom:520.866667pt;}
.y21{bottom:527.746667pt;}
.ya9{bottom:534.306667pt;}
.y7a{bottom:536.226667pt;}
.y12{bottom:536.546667pt;}
.y20{bottom:541.546667pt;}
.ya8{bottom:549.506667pt;}
.y79{bottom:551.426667pt;}
.y1f{bottom:555.466667pt;}
.y11{bottom:558.026667pt;}
.ya7{bottom:564.866667pt;}
.y78{bottom:566.786667pt;}
.ya6{bottom:580.226667pt;}
.y77{bottom:582.146667pt;}
.ya5{bottom:595.586667pt;}
.y76{bottom:597.506667pt;}
.ya4{bottom:610.973333pt;}
.y75{bottom:612.893333pt;}
.ya3{bottom:626.333333pt;}
.y74{bottom:628.093333pt;}
.ya2{bottom:641.533333pt;}
.y73{bottom:643.453333pt;}
.ya1{bottom:656.893333pt;}
.y72{bottom:658.813333pt;}
.ya0{bottom:672.253333pt;}
.y71{bottom:674.173333pt;}
.y9f{bottom:687.613333pt;}
.y70{bottom:690.493333pt;}
.y9e{bottom:702.973333pt;}
.y6f{bottom:706.813333pt;}
.y9d{bottom:718.173333pt;}
.y6e{bottom:722.973333pt;}
.y9c{bottom:733.533333pt;}
.y6d{bottom:738.333333pt;}
.y9b{bottom:748.893333pt;}
.y6c{bottom:753.693333pt;}
.y9a{bottom:765.213333pt;}
.y6b{bottom:769.053333pt;}
.y99{bottom:781.533333pt;}
.y6a{bottom:784.413333pt;}
.y98{bottom:797.853333pt;}
.y69{bottom:799.613333pt;}
.y97{bottom:814.053333pt;}
.y68{bottom:815.013333pt;}
.y67{bottom:830.373333pt;}
.yf{bottom:839.333333pt;}
.ye{bottom:843.493333pt;}
.y66{bottom:845.733333pt;}
.y65{bottom:861.093333pt;}
.yd{bottom:863.493333pt;}
.yc{bottom:874.053333pt;}
.y64{bottom:876.453333pt;}
.yb{bottom:889.413333pt;}
.y63{bottom:891.653333pt;}
.ya{bottom:905.893333pt;}
.y62{bottom:907.013333pt;}
.y61{bottom:922.373333pt;}
.y9{bottom:927.333333pt;}
.y60{bottom:937.733333pt;}
.y8{bottom:952.773333pt;}
.y5f{bottom:953.093333pt;}
.y5c{bottom:955.680000pt;}
.y5e{bottom:968.453333pt;}
.y6{bottom:984.773333pt;}
.y1{bottom:998.693333pt;}
.hc{height:3.575000pt;}
.h18{height:4.220000pt;}
.h16{height:18.768750pt;}
.h1e{height:20.800000pt;}
.h1f{height:20.832000pt;}
.h1c{height:20.960000pt;}
.h20{height:22.240000pt;}
.h15{height:22.343750pt;}
.h1d{height:22.400000pt;}
.hb{height:24.131250pt;}
.h19{height:24.640000pt;}
.hf{height:25.918750pt;}
.he{height:26.190625pt;}
.h1b{height:30.720000pt;}
.h17{height:33.867188pt;}
.h10{height:34.664062pt;}
.h7{height:35.673437pt;}
.h6{height:37.090625pt;}
.h12{height:37.479688pt;}
.h13{height:38.672812pt;}
.h11{height:39.562500pt;}
.h5{height:41.112500pt;}
.ha{height:42.691250pt;}
.h9{height:42.944375pt;}
.h21{height:43.782500pt;}
.h8{height:52.832812pt;}
.h1a{height:56.891250pt;}
.h3{height:58.563750pt;}
.h2{height:75.552000pt;}
.h4{height:104.160000pt;}
.h14{height:189.306667pt;}
.hd{height:566.653333pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wa{width:14.080000pt;}
.wc{width:73.920000pt;}
.wb{width:76.512000pt;}
.w9{width:92.480000pt;}
.w2{width:92.512000pt;}
.w8{width:95.232000pt;}
.wd{width:114.592000pt;}
.w5{width:117.952000pt;}
.w10{width:118.112000pt;}
.w11{width:138.426667pt;}
.w13{width:139.226667pt;}
.w7{width:144.800000pt;}
.wf{width:162.426667pt;}
.w12{width:173.466667pt;}
.we{width:182.906667pt;}
.w6{width:530.213333pt;}
.w3{width:553.253333pt;}
.w4{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:6.272000pt;}
.x18{left:7.200000pt;}
.x4{left:11.360000pt;}
.x6{left:16.640000pt;}
.x16{left:18.272000pt;}
.x15{left:26.272000pt;}
.x1a{left:31.200000pt;}
.xf{left:38.912000pt;}
.x1c{left:42.432000pt;}
.x10{left:45.152000pt;}
.xe{left:48.832000pt;}
.x1d{left:50.752000pt;}
.x19{left:55.240000pt;}
.x14{left:59.706667pt;}
.x13{left:65.146667pt;}
.x12{left:66.906667pt;}
.x1{left:69.600000pt;}
.x9{left:76.799988pt;}
.x2{left:85.146667pt;}
.x1e{left:91.386667pt;}
.x1b{left:94.906667pt;}
.x2c{left:100.831988pt;}
.x11{left:110.746667pt;}
.x5{left:125.640000pt;}
.x20{left:154.426667pt;}
.x3{left:162.106667pt;}
.x26{left:164.666667pt;}
.x29{left:170.906667pt;}
.x17{left:194.746667pt;}
.x21{left:250.466667pt;}
.x2a{left:309.986667pt;}
.x22{left:343.746667pt;}
.x27{left:348.226667pt;}
.x23{left:358.466667pt;}
.xa{left:373.826655pt;}
.xb{left:404.093322pt;}
.x24{left:450.493333pt;}
.xd{left:458.973322pt;}
.xc{left:466.973322pt;}
.x2b{left:484.093333pt;}
.x28{left:511.293333pt;}
.x25{left:525.053333pt;}
.x8{left:680.933322pt;}
.x7{left:697.253322pt;}
}




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