
    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_d20b670733642bf4581dda45.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.053223;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_11c279385fb30ccc59c9ec6a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_77169cb9fe45f7e74ac01057.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_f77d6bcefb10b412b9dfa136.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.981934;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_f6ec182e4fc576afdfd8176d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.981934;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_0866a13b95a5ec5e896a28c9.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.053223;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_f20146710ffe4b7a833561ab.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.053711;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_669e32dead28b5903db4c81a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.053711;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_3685992522874fb98e9016ab.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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_7e6031a99baf2c54681ffbc8.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;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_ee041bc4afd876e782e56b5c.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.106934;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;}
.lsf{letter-spacing:-4.188000px;}
.ls10{letter-spacing:-2.928000px;}
.ls12{letter-spacing:-2.862000px;}
.ls11{letter-spacing:-1.788000px;}
.lsc{letter-spacing:-0.864000px;}
.ls17{letter-spacing:-0.720000px;}
.ls18{letter-spacing:-0.648000px;}
.ls14{letter-spacing:-0.507000px;}
.ls16{letter-spacing:-0.466800px;}
.ls9{letter-spacing:-0.463800px;}
.lse{letter-spacing:-0.048960px;}
.ls2{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.017280px;}
.ls1{letter-spacing:0.054720px;}
.ls0{letter-spacing:0.109200px;}
.ls5{letter-spacing:0.132480px;}
.lsa{letter-spacing:0.132600px;}
.ls8{letter-spacing:0.152640px;}
.ls3{letter-spacing:0.442200px;}
.ls13{letter-spacing:0.466560px;}
.ls15{letter-spacing:0.466800px;}
.lsb{letter-spacing:0.587400px;}
.ls4{letter-spacing:0.731520px;}
.ls6{letter-spacing:0.869760px;}
.ls7{letter-spacing:1.572480px;}
.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:-32.067480px;}
.ws0{word-spacing:-31.734480px;}
.wsd{word-spacing:-16.813440px;}
.wsf{word-spacing:-16.346640px;}
.wse{word-spacing:-16.306440px;}
.ws7{word-spacing:-14.987520px;}
.ws5{word-spacing:-14.970240px;}
.ws8{word-spacing:-14.921280px;}
.ws4{word-spacing:-14.506440px;}
.ws10{word-spacing:-14.322240px;}
.ws6{word-spacing:-14.106240px;}
.wsb{word-spacing:-13.182240px;}
.ws3{word-spacing:-12.366720px;}
.wsc{word-spacing:-12.108240px;}
.wsa{word-spacing:-12.042240px;}
.ws9{word-spacing:-10.782240px;}
.ws2{word-spacing:0.000000px;}
._4{margin-left:-5.840640px;}
._d{margin-left:-4.034400px;}
._c{margin-left:-2.932560px;}
._1{margin-left:-1.926480px;}
._2{width:1.716240px;}
._3{width:3.444480px;}
._e{width:4.919040px;}
._6{width:6.110640px;}
._5{width:8.639280px;}
._7{width:11.430720px;}
._8{width:12.772320px;}
._a{width:70.203360px;}
._9{width:71.227680px;}
._b{width:73.037040px;}
._0{width:849.305760px;}
.fc7{color:rgb(0,0,255);}
.fc6{color:rgb(0,112,192);}
.fc5{color:transparent;}
.fc4{color:rgb(153,255,51);}
.fc2{color:rgb(146,208,80);}
.fc8{color:rgb(51,51,51);}
.fc3{color:rgb(13,13,13);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:41.760000px;}
.fs7{font-size:54.720000px;}
.fs6{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:69.120000px;}
.fs8{font-size:83.520000px;}
.fs5{font-size:113.760000px;}
.fs4{font-size:149.760000px;}
.fs2{font-size:210.240000px;}
.fs1{font-size:450.864000px;}
.y1f{bottom:-75.630000px;}
.y33{bottom:-45.405000px;}
.y0{bottom:0.000000px;}
.y22{bottom:2.160000px;}
.y32{bottom:7.560000px;}
.y25{bottom:14.400000px;}
.y29{bottom:17.670000px;}
.y2e{bottom:18.360000px;}
.y27{bottom:26.280000px;}
.y21{bottom:32.400000px;}
.y23{bottom:36.360000px;}
.y30{bottom:36.720000px;}
.y38{bottom:57.240000px;}
.y37{bottom:77.436000px;}
.y2d{bottom:82.434000px;}
.y2a{bottom:83.916000px;}
.y36{bottom:97.236000px;}
.y35{bottom:115.596000px;}
.y1d{bottom:124.236000px;}
.y34{bottom:133.956000px;}
.y2c{bottom:147.279000px;}
.ybd{bottom:161.310000px;}
.y1c{bottom:162.390000px;}
.y7d{bottom:178.950000px;}
.ya4{bottom:185.070000px;}
.y1b{bottom:200.595000px;}
.ybc{bottom:205.995000px;}
.y59{bottom:206.715000px;}
.ya3{bottom:208.515000px;}
.y2b{bottom:212.079000px;}
.y7c{bottom:217.155000px;}
.y58{bottom:230.115000px;}
.ya2{bottom:231.555000px;}
.y31{bottom:236.955000px;}
.y1a{bottom:238.755000px;}
.ybb{bottom:248.115000px;}
.y57{bottom:253.155000px;}
.ya1{bottom:254.955000px;}
.y7b{bottom:255.315000px;}
.y2f{bottom:262.875000px;}
.y19{bottom:276.915000px;}
.y7a{bottom:278.355000px;}
.yba{bottom:286.275000px;}
.y56{bottom:291.315000px;}
.ya0{bottom:293.115000px;}
.y79{bottom:301.755000px;}
.yb9{bottom:309.315000px;}
.y55{bottom:314.715000px;}
.y18{bottom:315.075000px;}
.y9f{bottom:316.155000px;}
.y78{bottom:324.825000px;}
.yb8{bottom:332.385000px;}
.y54{bottom:337.785000px;}
.y9e{bottom:339.225000px;}
.y17{bottom:353.265000px;}
.yd7{bottom:353.625000px;}
.yb7{bottom:355.785000px;}
.y9d{bottom:362.625000px;}
.y77{bottom:362.985000px;}
.y53{bottom:378.105000px;}
.yb6{bottom:378.825000px;}
.y1e{bottom:384.945000px;}
.y9c{bottom:385.665000px;}
.y76{bottom:386.025000px;}
.y16{bottom:391.425000px;}
.y9b{bottom:408.705000px;}
.y75{bottom:409.425000px;}
.yb5{bottom:416.985000px;}
.y52{bottom:420.225000px;}
.yd6{bottom:423.825000px;}
.y15{bottom:429.585000px;}
.y74{bottom:432.465000px;}
.yb4{bottom:440.025000px;}
.y9a{bottom:446.910000px;}
.y73{bottom:455.550000px;}
.y51{bottom:458.430000px;}
.yb3{bottom:463.470000px;}
.y14{bottom:467.790000px;}
.y99{bottom:470.310000px;}
.y50{bottom:481.830000px;}
.yd5{bottom:485.070000px;}
.yb2{bottom:486.510000px;}
.y98{bottom:493.350000px;}
.y72{bottom:496.230000px;}
.y4f{bottom:504.870000px;}
.y13{bottom:505.950000px;}
.yd4{bottom:508.470000px;}
.y97{bottom:516.390000px;}
.yb1{bottom:524.670000px;}
.y4e{bottom:527.910000px;}
.y71{bottom:538.350000px;}
.y96{bottom:539.790000px;}
.y12{bottom:544.110000px;}
.yd3{bottom:546.630000px;}
.yb0{bottom:547.710000px;}
.y4d{bottom:566.070000px;}
.yd2{bottom:569.670000px;}
.yaf{bottom:571.110000px;}
.y70{bottom:576.540000px;}
.y95{bottom:577.980000px;}
.y11{bottom:582.300000px;}
.y4c{bottom:589.500000px;}
.yd1{bottom:592.740000px;}
.y94{bottom:601.020000px;}
.yae{bottom:609.300000px;}
.y4b{bottom:612.540000px;}
.y6f{bottom:613.260000px;}
.yd0{bottom:616.140000px;}
.y10{bottom:620.460000px;}
.y93{bottom:624.060000px;}
.yad{bottom:632.340000px;}
.y6e{bottom:633.420000px;}
.y4a{bottom:635.580000px;}
.ycf{bottom:639.180000px;}
.y92{bottom:647.460000px;}
.y6d{bottom:653.220000px;}
.yac{bottom:655.380000px;}
.yf{bottom:658.620000px;}
.yce{bottom:662.220000px;}
.y91{bottom:670.500000px;}
.y6c{bottom:672.660000px;}
.y49{bottom:674.100000px;}
.yab{bottom:693.540000px;}
.ye{bottom:696.780000px;}
.y48{bottom:697.140000px;}
.ycd{bottom:700.410000px;}
.y90{bottom:708.690000px;}
.y6b{bottom:711.570000px;}
.yaa{bottom:716.970000px;}
.y47{bottom:720.210000px;}
.y8f{bottom:731.730000px;}
.yd{bottom:734.970000px;}
.ycc{bottom:738.570000px;}
.ya9{bottom:740.010000px;}
.y46{bottom:743.610000px;}
.y8e{bottom:755.130000px;}
.y6a{bottom:755.850000px;}
.ya8{bottom:763.050000px;}
.y45{bottom:766.650000px;}
.yc{bottom:773.130000px;}
.ycb{bottom:776.730000px;}
.y8d{bottom:778.170000px;}
.y69{bottom:796.530000px;}
.yca{bottom:800.130000px;}
.y8c{bottom:801.210000px;}
.y44{bottom:806.970000px;}
.yb{bottom:811.290000px;}
.y68{bottom:816.690000px;}
.yc9{bottom:823.170000px;}
.y8b{bottom:824.610000px;}
.y67{bottom:836.175000px;}
.y8a{bottom:847.695000px;}
.ya{bottom:849.495000px;}
.y43{bottom:851.655000px;}
.yc8{bottom:861.375000px;}
.y89{bottom:870.735000px;}
.y66{bottom:871.095000px;}
.y42{bottom:878.655000px;}
.yc7{bottom:884.415000px;}
.y9{bottom:887.655000px;}
.y65{bottom:891.255000px;}
.y88{bottom:894.135000px;}
.y41{bottom:902.055000px;}
.yc6{bottom:907.815000px;}
.y64{bottom:912.135000px;}
.y87{bottom:917.175000px;}
.y8{bottom:925.815000px;}
.yc5{bottom:930.855000px;}
.y63{bottom:934.095000px;}
.y40{bottom:940.215000px;}
.y28{bottom:940.935000px;}
.y86{bottom:955.365000px;}
.y3f{bottom:963.285000px;}
.ya7{bottom:963.645000px;}
.y7{bottom:964.005000px;}
.y26{bottom:967.245000px;}
.y62{bottom:968.685000px;}
.yc4{bottom:971.565000px;}
.y85{bottom:978.405000px;}
.ya6{bottom:986.685000px;}
.y61{bottom:988.485000px;}
.y3e{bottom:988.845000px;}
.yc3{bottom:998.565000px;}
.y84{bottom:1001.805000px;}
.y6{bottom:1002.165000px;}
.y60{bottom:1008.645000px;}
.ya5{bottom:1009.725000px;}
.y83{bottom:1024.845000px;}
.y5f{bottom:1028.445000px;}
.y3d{bottom:1030.965000px;}
.yc2{bottom:1035.285000px;}
.y24{bottom:1036.005000px;}
.y5{bottom:1040.325000px;}
.y82{bottom:1047.885000px;}
.y5e{bottom:1048.245000px;}
.y3c{bottom:1054.005000px;}
.yc1{bottom:1055.085000px;}
.y81{bottom:1071.285000px;}
.yc0{bottom:1074.885000px;}
.y3b{bottom:1077.405000px;}
.y4{bottom:1078.530000px;}
.y5d{bottom:1082.850000px;}
.y80{bottom:1094.370000px;}
.ybf{bottom:1096.170000px;}
.y3a{bottom:1102.650000px;}
.y5c{bottom:1103.370000px;}
.y3{bottom:1116.690000px;}
.y7f{bottom:1117.410000px;}
.y5b{bottom:1122.810000px;}
.ybe{bottom:1136.850000px;}
.y20{bottom:1137.930000px;}
.y7e{bottom:1140.810000px;}
.y5a{bottom:1142.610000px;}
.y39{bottom:1144.050000px;}
.y2{bottom:1154.850000px;}
.y1{bottom:1193.010000px;}
.h10{height:33.840000px;}
.ha{height:33.876000px;}
.h16{height:36.540000px;}
.h13{height:47.880000px;}
.h11{height:48.608438px;}
.h12{height:52.920000px;}
.h2{height:57.960000px;}
.h15{height:63.078750px;}
.h14{height:67.125937px;}
.hb{height:72.090000px;}
.he{height:74.916000px;}
.h8{height:75.240000px;}
.h4{height:89.316000px;}
.hf{height:118.648125px;}
.h6{height:119.916000px;}
.h5{height:120.996000px;}
.hd{height:156.195000px;}
.h9{height:219.273750px;}
.hc{height:246.675000px;}
.h7{height:470.237063px;}
.h3{height:541.950000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:299.670000px;}
.w8{width:310.110000px;}
.w6{width:311.550000px;}
.wb{width:311.910000px;}
.wa{width:312.270000px;}
.w4{width:314.430000px;}
.w5{width:318.030000px;}
.w9{width:530.850000px;}
.w3{width:665.535000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.xb{left:16.956000px;}
.x9{left:18.036000px;}
.x12{left:21.276000px;}
.x4{left:22.320000px;}
.x8{left:27.000000px;}
.x6{left:28.440000px;}
.x11{left:29.880000px;}
.xa{left:32.760000px;}
.x1{left:54.035987px;}
.xe{left:79.605000px;}
.xf{left:82.845000px;}
.x13{left:101.196000px;}
.x17{left:127.475987px;}
.xd{left:128.955000px;}
.x2{left:163.515000px;}
.x15{left:194.114987px;}
.x10{left:265.425000px;}
.x7{left:301.830000px;}
.x5{left:306.870000px;}
.xc{left:321.225000px;}
.x16{left:442.619987px;}
.x14{left:446.579987px;}
.x3{left:644.295000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-3.722667pt;}
.ls10{letter-spacing:-2.602667pt;}
.ls12{letter-spacing:-2.544000pt;}
.ls11{letter-spacing:-1.589333pt;}
.lsc{letter-spacing:-0.768000pt;}
.ls17{letter-spacing:-0.640000pt;}
.ls18{letter-spacing:-0.576000pt;}
.ls14{letter-spacing:-0.450667pt;}
.ls16{letter-spacing:-0.414933pt;}
.ls9{letter-spacing:-0.412267pt;}
.lse{letter-spacing:-0.043520pt;}
.ls2{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.015360pt;}
.ls1{letter-spacing:0.048640pt;}
.ls0{letter-spacing:0.097067pt;}
.ls5{letter-spacing:0.117760pt;}
.lsa{letter-spacing:0.117867pt;}
.ls8{letter-spacing:0.135680pt;}
.ls3{letter-spacing:0.393067pt;}
.ls13{letter-spacing:0.414720pt;}
.ls15{letter-spacing:0.414933pt;}
.lsb{letter-spacing:0.522133pt;}
.ls4{letter-spacing:0.650240pt;}
.ls6{letter-spacing:0.773120pt;}
.ls7{letter-spacing:1.397760pt;}
.ws1{word-spacing:-28.504427pt;}
.ws0{word-spacing:-28.208427pt;}
.wsd{word-spacing:-14.945280pt;}
.wsf{word-spacing:-14.530347pt;}
.wse{word-spacing:-14.494613pt;}
.ws7{word-spacing:-13.322240pt;}
.ws5{word-spacing:-13.306880pt;}
.ws8{word-spacing:-13.263360pt;}
.ws4{word-spacing:-12.894613pt;}
.ws10{word-spacing:-12.730880pt;}
.ws6{word-spacing:-12.538880pt;}
.wsb{word-spacing:-11.717547pt;}
.ws3{word-spacing:-10.992640pt;}
.wsc{word-spacing:-10.762880pt;}
.wsa{word-spacing:-10.704213pt;}
.ws9{word-spacing:-9.584213pt;}
.ws2{word-spacing:0.000000pt;}
._4{margin-left:-5.191680pt;}
._d{margin-left:-3.586133pt;}
._c{margin-left:-2.606720pt;}
._1{margin-left:-1.712427pt;}
._2{width:1.525547pt;}
._3{width:3.061760pt;}
._e{width:4.372480pt;}
._6{width:5.431680pt;}
._5{width:7.679360pt;}
._7{width:10.160640pt;}
._8{width:11.353173pt;}
._a{width:62.402987pt;}
._9{width:63.313493pt;}
._b{width:64.921813pt;}
._0{width:754.938453pt;}
.fs9{font-size:37.120000pt;}
.fs7{font-size:48.640000pt;}
.fs6{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:61.440000pt;}
.fs8{font-size:74.240000pt;}
.fs5{font-size:101.120000pt;}
.fs4{font-size:133.120000pt;}
.fs2{font-size:186.880000pt;}
.fs1{font-size:400.768000pt;}
.y1f{bottom:-67.226667pt;}
.y33{bottom:-40.360000pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:1.920000pt;}
.y32{bottom:6.720000pt;}
.y25{bottom:12.800000pt;}
.y29{bottom:15.706667pt;}
.y2e{bottom:16.320000pt;}
.y27{bottom:23.360000pt;}
.y21{bottom:28.800000pt;}
.y23{bottom:32.320000pt;}
.y30{bottom:32.640000pt;}
.y38{bottom:50.880000pt;}
.y37{bottom:68.832000pt;}
.y2d{bottom:73.274667pt;}
.y2a{bottom:74.592000pt;}
.y36{bottom:86.432000pt;}
.y35{bottom:102.752000pt;}
.y1d{bottom:110.432000pt;}
.y34{bottom:119.072000pt;}
.y2c{bottom:130.914667pt;}
.ybd{bottom:143.386667pt;}
.y1c{bottom:144.346667pt;}
.y7d{bottom:159.066667pt;}
.ya4{bottom:164.506667pt;}
.y1b{bottom:178.306667pt;}
.ybc{bottom:183.106667pt;}
.y59{bottom:183.746667pt;}
.ya3{bottom:185.346667pt;}
.y2b{bottom:188.514667pt;}
.y7c{bottom:193.026667pt;}
.y58{bottom:204.546667pt;}
.ya2{bottom:205.826667pt;}
.y31{bottom:210.626667pt;}
.y1a{bottom:212.226667pt;}
.ybb{bottom:220.546667pt;}
.y57{bottom:225.026667pt;}
.ya1{bottom:226.626667pt;}
.y7b{bottom:226.946667pt;}
.y2f{bottom:233.666667pt;}
.y19{bottom:246.146667pt;}
.y7a{bottom:247.426667pt;}
.yba{bottom:254.466667pt;}
.y56{bottom:258.946667pt;}
.ya0{bottom:260.546667pt;}
.y79{bottom:268.226667pt;}
.yb9{bottom:274.946667pt;}
.y55{bottom:279.746667pt;}
.y18{bottom:280.066667pt;}
.y9f{bottom:281.026667pt;}
.y78{bottom:288.733333pt;}
.yb8{bottom:295.453333pt;}
.y54{bottom:300.253333pt;}
.y9e{bottom:301.533333pt;}
.y17{bottom:314.013333pt;}
.yd7{bottom:314.333333pt;}
.yb7{bottom:316.253333pt;}
.y9d{bottom:322.333333pt;}
.y77{bottom:322.653333pt;}
.y53{bottom:336.093333pt;}
.yb6{bottom:336.733333pt;}
.y1e{bottom:342.173333pt;}
.y9c{bottom:342.813333pt;}
.y76{bottom:343.133333pt;}
.y16{bottom:347.933333pt;}
.y9b{bottom:363.293333pt;}
.y75{bottom:363.933333pt;}
.yb5{bottom:370.653333pt;}
.y52{bottom:373.533333pt;}
.yd6{bottom:376.733333pt;}
.y15{bottom:381.853333pt;}
.y74{bottom:384.413333pt;}
.yb4{bottom:391.133333pt;}
.y9a{bottom:397.253333pt;}
.y73{bottom:404.933333pt;}
.y51{bottom:407.493333pt;}
.yb3{bottom:411.973333pt;}
.y14{bottom:415.813333pt;}
.y99{bottom:418.053333pt;}
.y50{bottom:428.293333pt;}
.yd5{bottom:431.173333pt;}
.yb2{bottom:432.453333pt;}
.y98{bottom:438.533333pt;}
.y72{bottom:441.093333pt;}
.y4f{bottom:448.773333pt;}
.y13{bottom:449.733333pt;}
.yd4{bottom:451.973333pt;}
.y97{bottom:459.013333pt;}
.yb1{bottom:466.373333pt;}
.y4e{bottom:469.253333pt;}
.y71{bottom:478.533333pt;}
.y96{bottom:479.813333pt;}
.y12{bottom:483.653333pt;}
.yd3{bottom:485.893333pt;}
.yb0{bottom:486.853333pt;}
.y4d{bottom:503.173333pt;}
.yd2{bottom:506.373333pt;}
.yaf{bottom:507.653333pt;}
.y70{bottom:512.480000pt;}
.y95{bottom:513.760000pt;}
.y11{bottom:517.600000pt;}
.y4c{bottom:524.000000pt;}
.yd1{bottom:526.880000pt;}
.y94{bottom:534.240000pt;}
.yae{bottom:541.600000pt;}
.y4b{bottom:544.480000pt;}
.y6f{bottom:545.120000pt;}
.yd0{bottom:547.680000pt;}
.y10{bottom:551.520000pt;}
.y93{bottom:554.720000pt;}
.yad{bottom:562.080000pt;}
.y6e{bottom:563.040000pt;}
.y4a{bottom:564.960000pt;}
.ycf{bottom:568.160000pt;}
.y92{bottom:575.520000pt;}
.y6d{bottom:580.640000pt;}
.yac{bottom:582.560000pt;}
.yf{bottom:585.440000pt;}
.yce{bottom:588.640000pt;}
.y91{bottom:596.000000pt;}
.y6c{bottom:597.920000pt;}
.y49{bottom:599.200000pt;}
.yab{bottom:616.480000pt;}
.ye{bottom:619.360000pt;}
.y48{bottom:619.680000pt;}
.ycd{bottom:622.586667pt;}
.y90{bottom:629.946667pt;}
.y6b{bottom:632.506667pt;}
.yaa{bottom:637.306667pt;}
.y47{bottom:640.186667pt;}
.y8f{bottom:650.426667pt;}
.yd{bottom:653.306667pt;}
.ycc{bottom:656.506667pt;}
.ya9{bottom:657.786667pt;}
.y46{bottom:660.986667pt;}
.y8e{bottom:671.226667pt;}
.y6a{bottom:671.866667pt;}
.ya8{bottom:678.266667pt;}
.y45{bottom:681.466667pt;}
.yc{bottom:687.226667pt;}
.ycb{bottom:690.426667pt;}
.y8d{bottom:691.706667pt;}
.y69{bottom:708.026667pt;}
.yca{bottom:711.226667pt;}
.y8c{bottom:712.186667pt;}
.y44{bottom:717.306667pt;}
.yb{bottom:721.146667pt;}
.y68{bottom:725.946667pt;}
.yc9{bottom:731.706667pt;}
.y8b{bottom:732.986667pt;}
.y67{bottom:743.266667pt;}
.y8a{bottom:753.506667pt;}
.ya{bottom:755.106667pt;}
.y43{bottom:757.026667pt;}
.yc8{bottom:765.666667pt;}
.y89{bottom:773.986667pt;}
.y66{bottom:774.306667pt;}
.y42{bottom:781.026667pt;}
.yc7{bottom:786.146667pt;}
.y9{bottom:789.026667pt;}
.y65{bottom:792.226667pt;}
.y88{bottom:794.786667pt;}
.y41{bottom:801.826667pt;}
.yc6{bottom:806.946667pt;}
.y64{bottom:810.786667pt;}
.y87{bottom:815.266667pt;}
.y8{bottom:822.946667pt;}
.yc5{bottom:827.426667pt;}
.y63{bottom:830.306667pt;}
.y40{bottom:835.746667pt;}
.y28{bottom:836.386667pt;}
.y86{bottom:849.213333pt;}
.y3f{bottom:856.253333pt;}
.ya7{bottom:856.573333pt;}
.y7{bottom:856.893333pt;}
.y26{bottom:859.773333pt;}
.y62{bottom:861.053333pt;}
.yc4{bottom:863.613333pt;}
.y85{bottom:869.693333pt;}
.ya6{bottom:877.053333pt;}
.y61{bottom:878.653333pt;}
.y3e{bottom:878.973333pt;}
.yc3{bottom:887.613333pt;}
.y84{bottom:890.493333pt;}
.y6{bottom:890.813333pt;}
.y60{bottom:896.573333pt;}
.ya5{bottom:897.533333pt;}
.y83{bottom:910.973333pt;}
.y5f{bottom:914.173333pt;}
.y3d{bottom:916.413333pt;}
.yc2{bottom:920.253333pt;}
.y24{bottom:920.893333pt;}
.y5{bottom:924.733333pt;}
.y82{bottom:931.453333pt;}
.y5e{bottom:931.773333pt;}
.y3c{bottom:936.893333pt;}
.yc1{bottom:937.853333pt;}
.y81{bottom:952.253333pt;}
.yc0{bottom:955.453333pt;}
.y3b{bottom:957.693333pt;}
.y4{bottom:958.693333pt;}
.y5d{bottom:962.533333pt;}
.y80{bottom:972.773333pt;}
.ybf{bottom:974.373333pt;}
.y3a{bottom:980.133333pt;}
.y5c{bottom:980.773333pt;}
.y3{bottom:992.613333pt;}
.y7f{bottom:993.253333pt;}
.y5b{bottom:998.053333pt;}
.ybe{bottom:1010.533333pt;}
.y20{bottom:1011.493333pt;}
.y7e{bottom:1014.053333pt;}
.y5a{bottom:1015.653333pt;}
.y39{bottom:1016.933333pt;}
.y2{bottom:1026.533333pt;}
.y1{bottom:1060.453333pt;}
.h10{height:30.080000pt;}
.ha{height:30.112000pt;}
.h16{height:32.480000pt;}
.h13{height:42.560000pt;}
.h11{height:43.207500pt;}
.h12{height:47.040000pt;}
.h2{height:51.520000pt;}
.h15{height:56.070000pt;}
.h14{height:59.667500pt;}
.hb{height:64.080000pt;}
.he{height:66.592000pt;}
.h8{height:66.880000pt;}
.h4{height:79.392000pt;}
.hf{height:105.465000pt;}
.h6{height:106.592000pt;}
.h5{height:107.552000pt;}
.hd{height:138.840000pt;}
.h9{height:194.910000pt;}
.hc{height:219.266667pt;}
.h7{height:417.988500pt;}
.h3{height:481.733333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:266.373333pt;}
.w8{width:275.653333pt;}
.w6{width:276.933333pt;}
.wb{width:277.253333pt;}
.wa{width:277.573333pt;}
.w4{width:279.493333pt;}
.w5{width:282.693333pt;}
.w9{width:471.866667pt;}
.w3{width:591.586667pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.xb{left:15.072000pt;}
.x9{left:16.032000pt;}
.x12{left:18.912000pt;}
.x4{left:19.840000pt;}
.x8{left:24.000000pt;}
.x6{left:25.280000pt;}
.x11{left:26.560000pt;}
.xa{left:29.120000pt;}
.x1{left:48.031988pt;}
.xe{left:70.760000pt;}
.xf{left:73.640000pt;}
.x13{left:89.952000pt;}
.x17{left:113.311988pt;}
.xd{left:114.626667pt;}
.x2{left:145.346667pt;}
.x15{left:172.546655pt;}
.x10{left:235.933333pt;}
.x7{left:268.293333pt;}
.x5{left:272.773333pt;}
.xc{left:285.533333pt;}
.x16{left:393.439988pt;}
.x14{left:396.959988pt;}
.x3{left:572.706667pt;}
}




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