
    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_f821a11ed38b6ed17fae2177.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.174316;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_17918c1980de69172affacd6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.174316;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_30fc87064e6f800f3ab166c8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_10bfba6a25dc44c03fcae77f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.172852;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_01878e89950230d2d84a3b9d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_7be8b19b6956d9be3ab5f2c6.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.171875;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_7603e12628f2de7ed527a845.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.937012;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_2189f854f343dbe25bcc9cdc.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.714000;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_370b55f1c5e94024e1ca6721.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.172852;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_e0bb89a33712e8741a27287d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.962891;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;}
.v2{vertical-align:5.880000px;}
.v4{vertical-align:9.000000px;}
.v5{vertical-align:16.980000px;}
.v1{vertical-align:64.500000px;}
.v3{vertical-align:124.980000px;}
.ls1{letter-spacing:-5.028000px;}
.ls19{letter-spacing:-1.614000px;}
.ls1d{letter-spacing:-1.272000px;}
.ls8{letter-spacing:-0.696000px;}
.ls9{letter-spacing:-0.580200px;}
.ls10{letter-spacing:-0.444600px;}
.lse{letter-spacing:-0.264600px;}
.lsf{letter-spacing:-0.114600px;}
.ls2{letter-spacing:-0.075000px;}
.lsd{letter-spacing:-0.037500px;}
.ls0{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.021000px;}
.ls4{letter-spacing:0.075000px;}
.lsc{letter-spacing:0.132000px;}
.ls14{letter-spacing:0.141000px;}
.ls1a{letter-spacing:2.034000px;}
.ls15{letter-spacing:11.390100px;}
.ls17{letter-spacing:18.600000px;}
.ls12{letter-spacing:21.535950px;}
.ls18{letter-spacing:21.540000px;}
.ls11{letter-spacing:21.565950px;}
.ls1c{letter-spacing:25.041300px;}
.ls16{letter-spacing:27.393300px;}
.lsb{letter-spacing:90.138600px;}
.lsa{letter-spacing:90.213300px;}
.ls1b{letter-spacing:144.288600px;}
.ls3{letter-spacing:144.363300px;}
.ls7{letter-spacing:396.195000px;}
.ls6{letter-spacing:396.232500px;}
.ls5{letter-spacing:5053.844100px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3e{word-spacing:-324.450000px;}
.ws8{word-spacing:-144.150000px;}
.ws35{word-spacing:-108.150000px;}
.ws39{word-spacing:-85.005300px;}
.ws32{word-spacing:-84.925800px;}
.ws36{word-spacing:-84.865800px;}
.ws38{word-spacing:-83.284200px;}
.ws33{word-spacing:-82.875300px;}
.ws34{word-spacing:-81.747150px;}
.ws30{word-spacing:-66.487500px;}
.ws5{word-spacing:-66.450000px;}
.ws6{word-spacing:-65.754000px;}
.ws29{word-spacing:-64.873500px;}
.ws2{word-spacing:-36.075000px;}
.ws9{word-spacing:-36.037500px;}
.ws21{word-spacing:-35.592900px;}
.wsa{word-spacing:-30.412500px;}
.ws2b{word-spacing:-24.441900px;}
.ws28{word-spacing:-21.684150px;}
.ws31{word-spacing:-21.390900px;}
.ws24{word-spacing:-18.744150px;}
.wsb{word-spacing:-18.037500px;}
.ws1c{word-spacing:-17.922900px;}
.ws3c{word-spacing:-2.398500px;}
.ws11{word-spacing:-2.214900px;}
.ws17{word-spacing:-1.699650px;}
.ws13{word-spacing:-1.605300px;}
.ws14{word-spacing:-1.533450px;}
.ws12{word-spacing:-1.425300px;}
.ws20{word-spacing:-1.059900px;}
.ws1d{word-spacing:-0.779100px;}
.ws15{word-spacing:-0.768300px;}
.ws7{word-spacing:-0.667200px;}
.ws1f{word-spacing:-0.648300px;}
.ws10{word-spacing:-0.617550px;}
.wse{word-spacing:-0.522600px;}
.ws1e{word-spacing:-0.410100px;}
.ws26{word-spacing:-0.144150px;}
.ws1b{word-spacing:-0.022950px;}
.ws4{word-spacing:0.000000px;}
.ws37{word-spacing:0.051750px;}
.wsd{word-spacing:0.143250px;}
.ws3b{word-spacing:0.165450px;}
.ws16{word-spacing:0.208800px;}
.wsf{word-spacing:0.311550px;}
.ws0{word-spacing:0.533700px;}
.ws19{word-spacing:0.770100px;}
.ws3a{word-spacing:1.066350px;}
.ws3{word-spacing:1.252500px;}
.ws18{word-spacing:1.292100px;}
.ws1a{word-spacing:1.568550px;}
.wsc{word-spacing:2.532000px;}
.ws1{word-spacing:12.019800px;}
.ws23{word-spacing:20.613450px;}
.ws25{word-spacing:24.217200px;}
.ws27{word-spacing:25.226250px;}
.ws22{word-spacing:26.091150px;}
.ws2f{word-spacing:1381.413900px;}
.ws2e{word-spacing:1535.793900px;}
.ws2d{word-spacing:1592.248200px;}
.ws3d{word-spacing:1615.662750px;}
.ws2a{word-spacing:1679.958900px;}
.ws2c{word-spacing:1943.789550px;}
._18{margin-left:-28.509150px;}
._1c{margin-left:-22.910250px;}
._11{margin-left:-19.221300px;}
._b{margin-left:-14.564400px;}
._1d{margin-left:-12.539400px;}
._4{margin-left:-11.402700px;}
._1a{margin-left:-9.805800px;}
._7{margin-left:-7.640100px;}
._5{margin-left:-6.338850px;}
._9{margin-left:-4.687800px;}
._2{margin-left:-3.607500px;}
._0{margin-left:-1.731600px;}
._1{width:1.875900px;}
._3{width:3.463200px;}
._e{width:4.617600px;}
._1b{width:6.900300px;}
._14{width:13.808700px;}
._c{width:15.577950px;}
._f{width:17.836800px;}
._d{width:19.190850px;}
._10{width:20.274450px;}
._16{width:22.631550px;}
._17{width:24.903450px;}
._1e{width:26.370450px;}
._1f{width:27.627000px;}
._13{width:33.298650px;}
._15{width:34.464600px;}
._21{width:37.236000px;}
._20{width:38.754000px;}
._12{width:39.899700px;}
._19{width:46.595100px;}
._6{width:396.232500px;}
._8{width:5057.503650px;}
._a{width:5072.077950px;}
.fc5{color:rgb(255,0,0);}
.fc4{color:rgb(175,171,171);}
.fc3{color:rgb(118,113,113);}
.fc6{color:rgb(255,255,255);}
.fc2{color:rgb(137,137,137);}
.fc1{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:58.500000px;}
.fs8{font-size:67.650000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:72.150000px;}
.fsb{font-size:94.650000px;}
.fs2{font-size:108.150000px;}
.fs7{font-size:121.650000px;}
.fs1{font-size:144.150000px;}
.fs0{font-size:144.300000px;}
.fs6{font-size:216.300000px;}
.fs9{font-size:238.800000px;}
.fs3{font-size:265.800000px;}
.fsa{font-size:265.950000px;}
.fsd{font-size:324.450000px;}
.y0{bottom:0.000000px;}
.y6{bottom:14.400000px;}
.y47{bottom:59.325000px;}
.y32{bottom:69.225000px;}
.y30{bottom:69.300000px;}
.y2e{bottom:69.375000px;}
.y2c{bottom:69.450000px;}
.y29{bottom:69.570000px;}
.y26{bottom:69.630000px;}
.y1b{bottom:69.675000px;}
.y23{bottom:69.720000px;}
.y31{bottom:69.750000px;}
.y21{bottom:69.795000px;}
.y1e{bottom:69.870000px;}
.y34{bottom:71.700000px;}
.y4b{bottom:93.375000px;}
.y4e{bottom:93.412500px;}
.y40{bottom:94.500000px;}
.y11{bottom:102.600000px;}
.y10{bottom:103.462500px;}
.y2f{bottom:114.750000px;}
.y19{bottom:115.650000px;}
.y46{bottom:115.687500px;}
.y4c{bottom:123.187500px;}
.y4a{bottom:126.037500px;}
.y33{bottom:138.975000px;}
.yf{bottom:141.750000px;}
.y4d{bottom:158.745000px;}
.y2d{bottom:159.750000px;}
.ye{bottom:181.200000px;}
.y3f{bottom:196.095000px;}
.y2b{bottom:204.750000px;}
.y3{bottom:243.570000px;}
.y28{bottom:249.750000px;}
.y50{bottom:256.380000px;}
.yd{bottom:258.945000px;}
.y16{bottom:271.620000px;}
.y43{bottom:273.075000px;}
.y2{bottom:278.475000px;}
.y25{bottom:294.750000px;}
.yc{bottom:298.350000px;}
.y3e{bottom:300.780000px;}
.y42{bottom:305.730000px;}
.y51{bottom:310.350000px;}
.y2a{bottom:319.320000px;}
.y36{bottom:332.775000px;}
.y15{bottom:336.945000px;}
.y22{bottom:339.750000px;}
.y45{bottom:348.450000px;}
.y27{bottom:364.380000px;}
.y1{bottom:365.250000px;}
.yb{bottom:376.095000px;}
.y20{bottom:384.750000px;}
.y3d{bottom:397.470000px;}
.y14{bottom:402.300000px;}
.y24{bottom:409.470000px;}
.ya{bottom:414.375000px;}
.y1d{bottom:429.750000px;}
.y9{bottom:453.825000px;}
.y13{bottom:466.500000px;}
.y1a{bottom:486.000000px;}
.y3c{bottom:489.255000px;}
.y8{bottom:492.120000px;}
.y18{bottom:493.875000px;}
.y1f{bottom:499.620000px;}
.y7{bottom:531.570000px;}
.y12{bottom:531.825000px;}
.y1c{bottom:555.675000px;}
.y44{bottom:584.550000px;}
.y3b{bottom:590.850000px;}
.y49{bottom:600.120000px;}
.y41{bottom:606.900000px;}
.y5{bottom:635.175000px;}
.y48{bottom:641.820000px;}
.y4f{bottom:645.195000px;}
.y38{bottom:665.625000px;}
.y3a{bottom:683.475000px;}
.y37{bottom:737.820000px;}
.y35{bottom:740.250000px;}
.y39{bottom:741.120000px;}
.y4{bottom:745.800000px;}
.y17{bottom:749.475000px;}
.h19{height:52.244385px;}
.h10{height:60.415942px;}
.hf{height:64.300781px;}
.hd{height:64.434741px;}
.h13{height:71.762476px;}
.h1a{height:78.947388px;}
.h18{height:94.141626px;}
.h3{height:96.585132px;}
.h2{height:105.226685px;}
.h14{height:107.569116px;}
.hb{height:108.641528px;}
.h15{height:113.449116px;}
.h7{height:128.735522px;}
.h1{height:128.869482px;}
.h17{height:133.549116px;}
.h6{height:136.113281px;}
.h5{height:143.375757px;}
.h8{height:143.524951px;}
.hc{height:151.875000px;}
.he{height:153.000000px;}
.h9{height:193.170264px;}
.h11{height:213.264258px;}
.h16{height:232.549116px;}
.h4{height:237.377051px;}
.h12{height:237.511011px;}
.ha{height:253.125000px;}
.h1b{height:254.585522px;}
.h0{height:810.000000px;}
.w2{width:400.500000px;}
.w3{width:925.875000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.xa{left:1.725000px;}
.x4{left:10.799979px;}
.x9{left:11.970000px;}
.x15{left:31.349979px;}
.x7{left:57.375000px;}
.x10{left:60.337479px;}
.x5{left:68.812479px;}
.x17{left:70.649979px;}
.x6{left:93.862479px;}
.x18{left:101.662479px;}
.x1{left:112.874979px;}
.x16{left:122.849979px;}
.x14{left:268.499979px;}
.x1b{left:377.774979px;}
.x3{left:435.569979px;}
.x19{left:453.149979px;}
.x8{left:456.750000px;}
.x1c{left:484.694979px;}
.x13{left:485.999979px;}
.xb{left:500.669979px;}
.xc{left:502.394979px;}
.xe{left:519.869979px;}
.xd{left:521.324979px;}
.xf{left:532.769979px;}
.x2{left:538.319979px;}
.x1a{left:654.149979px;}
.x11{left:842.849979px;}
.x12{left:1005.194979px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:5.226667pt;}
.v4{vertical-align:8.000000pt;}
.v5{vertical-align:15.093333pt;}
.v1{vertical-align:57.333333pt;}
.v3{vertical-align:111.093333pt;}
.ls1{letter-spacing:-4.469333pt;}
.ls19{letter-spacing:-1.434667pt;}
.ls1d{letter-spacing:-1.130667pt;}
.ls8{letter-spacing:-0.618667pt;}
.ls9{letter-spacing:-0.515733pt;}
.ls10{letter-spacing:-0.395200pt;}
.lse{letter-spacing:-0.235200pt;}
.lsf{letter-spacing:-0.101867pt;}
.ls2{letter-spacing:-0.066667pt;}
.lsd{letter-spacing:-0.033333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.018667pt;}
.ls4{letter-spacing:0.066667pt;}
.lsc{letter-spacing:0.117333pt;}
.ls14{letter-spacing:0.125333pt;}
.ls1a{letter-spacing:1.808000pt;}
.ls15{letter-spacing:10.124533pt;}
.ls17{letter-spacing:16.533333pt;}
.ls12{letter-spacing:19.143067pt;}
.ls18{letter-spacing:19.146667pt;}
.ls11{letter-spacing:19.169733pt;}
.ls1c{letter-spacing:22.258933pt;}
.ls16{letter-spacing:24.349600pt;}
.lsb{letter-spacing:80.123200pt;}
.lsa{letter-spacing:80.189600pt;}
.ls1b{letter-spacing:128.256533pt;}
.ls3{letter-spacing:128.322933pt;}
.ls7{letter-spacing:352.173333pt;}
.ls6{letter-spacing:352.206667pt;}
.ls5{letter-spacing:4492.305867pt;}
.ws3e{word-spacing:-288.400000pt;}
.ws8{word-spacing:-128.133333pt;}
.ws35{word-spacing:-96.133333pt;}
.ws39{word-spacing:-75.560267pt;}
.ws32{word-spacing:-75.489600pt;}
.ws36{word-spacing:-75.436267pt;}
.ws38{word-spacing:-74.030400pt;}
.ws33{word-spacing:-73.666933pt;}
.ws34{word-spacing:-72.664133pt;}
.ws30{word-spacing:-59.100000pt;}
.ws5{word-spacing:-59.066667pt;}
.ws6{word-spacing:-58.448000pt;}
.ws29{word-spacing:-57.665333pt;}
.ws2{word-spacing:-32.066667pt;}
.ws9{word-spacing:-32.033333pt;}
.ws21{word-spacing:-31.638133pt;}
.wsa{word-spacing:-27.033333pt;}
.ws2b{word-spacing:-21.726133pt;}
.ws28{word-spacing:-19.274800pt;}
.ws31{word-spacing:-19.014133pt;}
.ws24{word-spacing:-16.661467pt;}
.wsb{word-spacing:-16.033333pt;}
.ws1c{word-spacing:-15.931467pt;}
.ws3c{word-spacing:-2.132000pt;}
.ws11{word-spacing:-1.968800pt;}
.ws17{word-spacing:-1.510800pt;}
.ws13{word-spacing:-1.426933pt;}
.ws14{word-spacing:-1.363067pt;}
.ws12{word-spacing:-1.266933pt;}
.ws20{word-spacing:-0.942133pt;}
.ws1d{word-spacing:-0.692533pt;}
.ws15{word-spacing:-0.682933pt;}
.ws7{word-spacing:-0.593067pt;}
.ws1f{word-spacing:-0.576267pt;}
.ws10{word-spacing:-0.548933pt;}
.wse{word-spacing:-0.464533pt;}
.ws1e{word-spacing:-0.364533pt;}
.ws26{word-spacing:-0.128133pt;}
.ws1b{word-spacing:-0.020400pt;}
.ws4{word-spacing:0.000000pt;}
.ws37{word-spacing:0.046000pt;}
.wsd{word-spacing:0.127333pt;}
.ws3b{word-spacing:0.147067pt;}
.ws16{word-spacing:0.185600pt;}
.wsf{word-spacing:0.276933pt;}
.ws0{word-spacing:0.474400pt;}
.ws19{word-spacing:0.684533pt;}
.ws3a{word-spacing:0.947867pt;}
.ws3{word-spacing:1.113333pt;}
.ws18{word-spacing:1.148533pt;}
.ws1a{word-spacing:1.394267pt;}
.wsc{word-spacing:2.250667pt;}
.ws1{word-spacing:10.684267pt;}
.ws23{word-spacing:18.323067pt;}
.ws25{word-spacing:21.526400pt;}
.ws27{word-spacing:22.423333pt;}
.ws22{word-spacing:23.192133pt;}
.ws2f{word-spacing:1227.923467pt;}
.ws2e{word-spacing:1365.150133pt;}
.ws2d{word-spacing:1415.331733pt;}
.ws3d{word-spacing:1436.144667pt;}
.ws2a{word-spacing:1493.296800pt;}
.ws2c{word-spacing:1727.812933pt;}
._18{margin-left:-25.341467pt;}
._1c{margin-left:-20.364667pt;}
._11{margin-left:-17.085600pt;}
._b{margin-left:-12.946133pt;}
._1d{margin-left:-11.146133pt;}
._4{margin-left:-10.135733pt;}
._1a{margin-left:-8.716267pt;}
._7{margin-left:-6.791200pt;}
._5{margin-left:-5.634533pt;}
._9{margin-left:-4.166933pt;}
._2{margin-left:-3.206667pt;}
._0{margin-left:-1.539200pt;}
._1{width:1.667467pt;}
._3{width:3.078400pt;}
._e{width:4.104533pt;}
._1b{width:6.133600pt;}
._14{width:12.274400pt;}
._c{width:13.847067pt;}
._f{width:15.854933pt;}
._d{width:17.058533pt;}
._10{width:18.021733pt;}
._16{width:20.116933pt;}
._17{width:22.136400pt;}
._1e{width:23.440400pt;}
._1f{width:24.557333pt;}
._13{width:29.598800pt;}
._15{width:30.635200pt;}
._21{width:33.098667pt;}
._20{width:34.448000pt;}
._12{width:35.466400pt;}
._19{width:41.417867pt;}
._6{width:352.206667pt;}
._8{width:4495.558800pt;}
._a{width:4508.513733pt;}
.fsc{font-size:52.000000pt;}
.fs8{font-size:60.133333pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:64.133333pt;}
.fsb{font-size:84.133333pt;}
.fs2{font-size:96.133333pt;}
.fs7{font-size:108.133333pt;}
.fs1{font-size:128.133333pt;}
.fs0{font-size:128.266667pt;}
.fs6{font-size:192.266667pt;}
.fs9{font-size:212.266667pt;}
.fs3{font-size:236.266667pt;}
.fsa{font-size:236.400000pt;}
.fsd{font-size:288.400000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:12.800000pt;}
.y47{bottom:52.733333pt;}
.y32{bottom:61.533333pt;}
.y30{bottom:61.600000pt;}
.y2e{bottom:61.666667pt;}
.y2c{bottom:61.733333pt;}
.y29{bottom:61.840000pt;}
.y26{bottom:61.893333pt;}
.y1b{bottom:61.933333pt;}
.y23{bottom:61.973333pt;}
.y31{bottom:62.000000pt;}
.y21{bottom:62.040000pt;}
.y1e{bottom:62.106667pt;}
.y34{bottom:63.733333pt;}
.y4b{bottom:83.000000pt;}
.y4e{bottom:83.033333pt;}
.y40{bottom:84.000000pt;}
.y11{bottom:91.200000pt;}
.y10{bottom:91.966667pt;}
.y2f{bottom:102.000000pt;}
.y19{bottom:102.800000pt;}
.y46{bottom:102.833333pt;}
.y4c{bottom:109.500000pt;}
.y4a{bottom:112.033333pt;}
.y33{bottom:123.533333pt;}
.yf{bottom:126.000000pt;}
.y4d{bottom:141.106667pt;}
.y2d{bottom:142.000000pt;}
.ye{bottom:161.066667pt;}
.y3f{bottom:174.306667pt;}
.y2b{bottom:182.000000pt;}
.y3{bottom:216.506667pt;}
.y28{bottom:222.000000pt;}
.y50{bottom:227.893333pt;}
.yd{bottom:230.173333pt;}
.y16{bottom:241.440000pt;}
.y43{bottom:242.733333pt;}
.y2{bottom:247.533333pt;}
.y25{bottom:262.000000pt;}
.yc{bottom:265.200000pt;}
.y3e{bottom:267.360000pt;}
.y42{bottom:271.760000pt;}
.y51{bottom:275.866667pt;}
.y2a{bottom:283.840000pt;}
.y36{bottom:295.800000pt;}
.y15{bottom:299.506667pt;}
.y22{bottom:302.000000pt;}
.y45{bottom:309.733333pt;}
.y27{bottom:323.893333pt;}
.y1{bottom:324.666667pt;}
.yb{bottom:334.306667pt;}
.y20{bottom:342.000000pt;}
.y3d{bottom:353.306667pt;}
.y14{bottom:357.600000pt;}
.y24{bottom:363.973333pt;}
.ya{bottom:368.333333pt;}
.y1d{bottom:382.000000pt;}
.y9{bottom:403.400000pt;}
.y13{bottom:414.666667pt;}
.y1a{bottom:432.000000pt;}
.y3c{bottom:434.893333pt;}
.y8{bottom:437.440000pt;}
.y18{bottom:439.000000pt;}
.y1f{bottom:444.106667pt;}
.y7{bottom:472.506667pt;}
.y12{bottom:472.733333pt;}
.y1c{bottom:493.933333pt;}
.y44{bottom:519.600000pt;}
.y3b{bottom:525.200000pt;}
.y49{bottom:533.440000pt;}
.y41{bottom:539.466667pt;}
.y5{bottom:564.600000pt;}
.y48{bottom:570.506667pt;}
.y4f{bottom:573.506667pt;}
.y38{bottom:591.666667pt;}
.y3a{bottom:607.533333pt;}
.y37{bottom:655.840000pt;}
.y35{bottom:658.000000pt;}
.y39{bottom:658.773333pt;}
.y4{bottom:662.933333pt;}
.y17{bottom:666.200000pt;}
.h19{height:46.439453pt;}
.h10{height:53.703060pt;}
.hf{height:57.156250pt;}
.hd{height:57.275326pt;}
.h13{height:63.788867pt;}
.h1a{height:70.175456pt;}
.h18{height:83.681445pt;}
.h3{height:85.853451pt;}
.h2{height:93.534831pt;}
.h14{height:95.616992pt;}
.hb{height:96.570247pt;}
.h15{height:100.843659pt;}
.h7{height:114.431576pt;}
.h1{height:114.550651pt;}
.h17{height:118.710326pt;}
.h6{height:120.989583pt;}
.h5{height:127.445117pt;}
.h8{height:127.577734pt;}
.hc{height:135.000000pt;}
.he{height:136.000000pt;}
.h9{height:171.706901pt;}
.h11{height:189.568229pt;}
.h16{height:206.710326pt;}
.h4{height:211.001823pt;}
.h12{height:211.120898pt;}
.ha{height:225.000000pt;}
.h1b{height:226.298242pt;}
.h0{height:720.000000pt;}
.w2{width:356.000000pt;}
.w3{width:823.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.xa{left:1.533333pt;}
.x4{left:9.599981pt;}
.x9{left:10.640000pt;}
.x15{left:27.866648pt;}
.x7{left:51.000000pt;}
.x10{left:53.633314pt;}
.x5{left:61.166648pt;}
.x17{left:62.799981pt;}
.x6{left:83.433314pt;}
.x18{left:90.366648pt;}
.x1{left:100.333314pt;}
.x16{left:109.199981pt;}
.x14{left:238.666648pt;}
.x1b{left:335.799981pt;}
.x3{left:387.173314pt;}
.x19{left:402.799981pt;}
.x8{left:406.000000pt;}
.x1c{left:430.839981pt;}
.x13{left:431.999981pt;}
.xb{left:445.039981pt;}
.xc{left:446.573314pt;}
.xe{left:462.106648pt;}
.xd{left:463.399981pt;}
.xf{left:473.573314pt;}
.x2{left:478.506648pt;}
.x1a{left:581.466648pt;}
.x11{left:749.199981pt;}
.x12{left:893.506648pt;}
}




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