
    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_7db78b3fd400cad488e484af.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.958008;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_a5443ab40df65ce53bb1cd10.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.090332;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_affbaa816b740d3477e273f9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.091797;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_1d92a2c5311ab3cb18369a43.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.958008;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_a59b4b9968f5aa9742a1360a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.091797;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_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.758789;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_68674e1356024ef0367ad158.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.030273;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_1eed662cd4e00d9bfbe42a39.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.020508;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_ff4d36a15331451448cc1f87.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.090332;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_549391511998e3389ff521b5.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_eb6a4122bef05d88a0aea868.woff2')format("woff");}.ffb{font-family:ffb;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;}
.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;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.181200px;}
.ls3{letter-spacing:0.261000px;}
.ls5{letter-spacing:0.331200px;}
.ls7{letter-spacing:3.246000px;}
.ls9{letter-spacing:12.711300px;}
.lsa{letter-spacing:12.780000px;}
.lsb{letter-spacing:12.831300px;}
.lsc{letter-spacing:12.891300px;}
.lsd{letter-spacing:12.960000px;}
.ls4{letter-spacing:54.288300px;}
.ls2{letter-spacing:54.357000px;}
.ls8{letter-spacing:93.711300px;}
.ls1{letter-spacing:93.831300px;}
.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;}
}
.ws0{word-spacing:-66.147600px;}
.wsc{word-spacing:-24.694950px;}
.wsf{word-spacing:-24.609000px;}
.wse{word-spacing:-21.954450px;}
.ws3{word-spacing:-21.040950px;}
.ws1{word-spacing:-19.213950px;}
.wsb{word-spacing:-19.183500px;}
.ws4{word-spacing:-18.300450px;}
.ws5{word-spacing:-18.270000px;}
.ws6{word-spacing:-17.386950px;}
.ws8{word-spacing:-15.151950px;}
.ws9{word-spacing:-12.237150px;}
.ws7{word-spacing:-12.136500px;}
.wsa{word-spacing:-12.087150px;}
.wsd{word-spacing:-0.121650px;}
.ws2{word-spacing:0.000000px;}
._6{margin-left:-822.104100px;}
._10{margin-left:-755.681700px;}
._e{margin-left:-11.578050px;}
._c{margin-left:-10.336800px;}
._a{margin-left:-8.599050px;}
._d{margin-left:-7.313700px;}
._b{margin-left:-5.864250px;}
._4{margin-left:-4.848900px;}
._1{margin-left:-3.345300px;}
._3{margin-left:-1.433700px;}
._2{width:1.433700px;}
._0{width:3.106350px;}
._11{width:4.145550px;}
._5{width:5.160750px;}
._12{width:9.430500px;}
._8{width:102.636900px;}
._9{width:253.695600px;}
._7{width:291.471750px;}
._13{width:1587.716250px;}
._f{width:1653.465600px;}
.fc5{color:rgb(160,149,197);}
.fc3{color:rgb(52,47,46);}
.fc2{color:rgb(239,85,63);}
.fc6{color:rgb(104,76,150);}
.fc1{color:rgb(78,42,131);}
.fc4{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:54.000000px;}
.fsf{font-size:58.500000px;}
.fs10{font-size:58.650000px;}
.fs13{font-size:72.150000px;}
.fsa{font-size:85.650000px;}
.fsc{font-size:90.000000px;}
.fsb{font-size:90.150000px;}
.fs4{font-size:94.500000px;}
.fs3{font-size:94.650000px;}
.fs8{font-size:103.500000px;}
.fs7{font-size:103.650000px;}
.fs12{font-size:108.150000px;}
.fs14{font-size:112.650000px;}
.fs2{font-size:121.650000px;}
.fs15{font-size:121.800000px;}
.fsd{font-size:175.650000px;}
.fse{font-size:175.800000px;}
.fs9{font-size:184.650000px;}
.fs6{font-size:184.800000px;}
.fs11{font-size:193.800000px;}
.fs1{font-size:238.800000px;}
.fs0{font-size:238.950000px;}
.y0{bottom:0.000000px;}
.y2c{bottom:2.250000px;}
.ya{bottom:8.400000px;}
.y9{bottom:10.650000px;}
.y10{bottom:10.762500px;}
.y4d{bottom:42.862500px;}
.y66{bottom:44.775000px;}
.yf{bottom:60.000000px;}
.y4c{bottom:60.900000px;}
.y65{bottom:62.812500px;}
.y70{bottom:64.125000px;}
.y4b{bottom:78.900000px;}
.y50{bottom:92.925000px;}
.y58{bottom:93.105000px;}
.ye{bottom:94.950000px;}
.y33{bottom:96.750000px;}
.y4a{bottom:96.937500px;}
.y3a{bottom:100.725000px;}
.y63{bottom:101.100000px;}
.y22{bottom:101.250000px;}
.y2b{bottom:101.550000px;}
.y49{bottom:114.975000px;}
.y23{bottom:121.500000px;}
.y62{bottom:128.137500px;}
.y48{bottom:132.975000px;}
.y47{bottom:151.005000px;}
.y39{bottom:153.000000px;}
.y61{bottom:155.175000px;}
.y8{bottom:160.245000px;}
.yc{bottom:161.100000px;}
.y46{bottom:169.050000px;}
.y8e{bottom:178.905000px;}
.y5f{bottom:179.970000px;}
.y60{bottom:182.220000px;}
.y45{bottom:187.050000px;}
.y97{bottom:199.200000px;}
.y8d{bottom:202.575000px;}
.y7{bottom:207.570000px;}
.y41{bottom:214.425000px;}
.y5e{bottom:220.080000px;}
.y83{bottom:223.995000px;}
.y94{bottom:227.370000px;}
.y3d{bottom:227.925000px;}
.y8c{bottom:231.855000px;}
.y6{bottom:233.475000px;}
.y1f{bottom:233.625000px;}
.y9b{bottom:240.225000px;}
.y40{bottom:241.425000px;}
.y5d{bottom:247.125000px;}
.y18{bottom:247.770000px;}
.y82{bottom:248.775000px;}
.y37{bottom:250.125000px;}
.y6f{bottom:251.955000px;}
.y93{bottom:252.150000px;}
.y3c{bottom:254.970000px;}
.y8b{bottom:256.650000px;}
.y5{bottom:259.395000px;}
.y57{bottom:259.875000px;}
.y1e{bottom:261.780000px;}
.y3f{bottom:268.470000px;}
.y2a{bottom:271.125000px;}
.y81{bottom:273.570000px;}
.y5c{bottom:274.170000px;}
.y17{bottom:275.925000px;}
.y92{bottom:276.945000px;}
.y8a{bottom:281.445000px;}
.y3b{bottom:282.000000px;}
.y9a{bottom:287.550000px;}
.y6e{bottom:288.045000px;}
.y1d{bottom:289.950000px;}
.y3e{bottom:295.500000px;}
.y80{bottom:298.320000px;}
.y5b{bottom:301.200000px;}
.y96{bottom:301.725000px;}
.y16{bottom:304.095000px;}
.y34{bottom:304.200000px;}
.y91{bottom:306.225000px;}
.y4{bottom:307.830000px;}
.y89{bottom:310.725000px;}
.y99{bottom:313.470000px;}
.y1c{bottom:318.120000px;}
.y7f{bottom:323.100000px;}
.y6d{bottom:324.075000px;}
.y95{bottom:326.475000px;}
.y5a{bottom:328.245000px;}
.y90{bottom:331.005000px;}
.y31{bottom:331.125000px;}
.y15{bottom:332.250000px;}
.y32{bottom:333.375000px;}
.y88{bottom:335.520000px;}
.y1b{bottom:346.275000px;}
.y38{bottom:346.875000px;}
.y7e{bottom:351.255000px;}
.y59{bottom:355.275000px;}
.y8f{bottom:355.800000px;}
.y27{bottom:357.870000px;}
.y30{bottom:358.170000px;}
.y87{bottom:360.300000px;}
.y14{bottom:360.420000px;}
.y98{bottom:362.520000px;}
.y3{bottom:362.745000px;}
.y36{bottom:373.920000px;}
.y6c{bottom:374.775000px;}
.y7d{bottom:380.550000px;}
.y1a{bottom:384.600000px;}
.y86{bottom:385.095000px;}
.y2f{bottom:387.450000px;}
.y21{bottom:390.375000px;}
.y56{bottom:393.105000px;}
.y13{bottom:398.745000px;}
.y35{bottom:400.950000px;}
.y7c{bottom:405.345000px;}
.y85{bottom:409.875000px;}
.y6b{bottom:410.820000px;}
.y24{bottom:411.945000px;}
.y2d{bottom:412.245000px;}
.y19{bottom:412.770000px;}
.y2e{bottom:414.495000px;}
.y55{bottom:420.150000px;}
.yb{bottom:423.600000px;}
.y2{bottom:428.070000px;}
.y7b{bottom:430.125000px;}
.y4f{bottom:433.125000px;}
.y84{bottom:434.625000px;}
.y54{bottom:447.195000px;}
.y28{bottom:452.325000px;}
.y7a{bottom:459.405000px;}
.y6a{bottom:460.380000px;}
.y53{bottom:474.225000px;}
.y29{bottom:479.370000px;}
.y79{bottom:484.200000px;}
.y1{bottom:492.300000px;}
.y69{bottom:496.425000px;}
.y52{bottom:501.255000px;}
.y26{bottom:506.400000px;}
.y51{bottom:528.300000px;}
.y25{bottom:533.445000px;}
.y78{bottom:538.950000px;}
.y71{bottom:541.725000px;}
.y77{bottom:563.700000px;}
.y4e{bottom:569.880000px;}
.y20{bottom:576.675000px;}
.y76{bottom:606.600000px;}
.y12{bottom:641.025000px;}
.y75{bottom:642.630000px;}
.y68{bottom:643.620000px;}
.y43{bottom:665.880000px;}
.y74{bottom:678.720000px;}
.y67{bottom:690.450000px;}
.y11{bottom:691.725000px;}
.y44{bottom:703.650000px;}
.y64{bottom:712.320000px;}
.yd{bottom:712.845000px;}
.y42{bottom:713.175000px;}
.y73{bottom:714.750000px;}
.y72{bottom:750.780000px;}
.h6{height:40.500000px;}
.hb{height:46.880859px;}
.h1c{height:50.701904px;}
.h1d{height:50.831909px;}
.h28{height:54.817090px;}
.h16{height:66.665039px;}
.h11{height:66.776147px;}
.he{height:74.358252px;}
.h17{height:78.002930px;}
.h12{height:78.132935px;}
.h2c{height:78.134766px;}
.h20{height:78.264990px;}
.h25{height:79.872803px;}
.h5{height:81.903076px;}
.h4{height:82.033081px;}
.h1e{height:82.041504px;}
.h7{height:82.171729px;}
.h29{height:85.587598px;}
.hd{height:89.833374px;}
.ha{height:89.854980px;}
.h9{height:89.985205px;}
.h2a{height:92.425488px;}
.h2b{height:92.539453px;}
.h27{height:93.733521px;}
.h3{height:105.433960px;}
.h26{height:105.612158px;}
.h1a{height:131.737500px;}
.h1b{height:131.850000px;}
.hc{height:138.487500px;}
.h8{height:138.600000px;}
.h24{height:145.350000px;}
.h2{height:179.100000px;}
.h1{height:179.212500px;}
.h1f{height:202.500000px;}
.h21{height:203.625000px;}
.hf{height:219.375000px;}
.h13{height:220.500000px;}
.h22{height:376.875000px;}
.h23{height:527.625000px;}
.h18{height:546.750000px;}
.h15{height:568.125000px;}
.h19{height:641.250000px;}
.h10{height:688.500000px;}
.h14{height:757.125000px;}
.h0{height:810.000000px;}
.w5{width:175.500000px;}
.w2{width:194.625000px;}
.w3{width:578.250000px;}
.w7{width:601.875000px;}
.w6{width:606.375000px;}
.w4{width:612.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x17{left:11.025000px;}
.x1b{left:12.225000px;}
.x7{left:28.499979px;}
.x1f{left:31.087479px;}
.x21{left:34.875000px;}
.x6{left:52.649979px;}
.x26{left:54.824979px;}
.x5{left:59.699979px;}
.x2e{left:69.074979px;}
.x2f{left:82.574979px;}
.x1{left:87.449979px;}
.x2{left:89.587479px;}
.x2c{left:110.587479px;}
.x2d{left:115.237479px;}
.x29{left:125.587479px;}
.x1e{left:166.679979px;}
.x22{left:209.250000px;}
.x18{left:222.750000px;}
.x23{left:254.204979px;}
.x19{left:268.199979px;}
.x1d{left:307.994979px;}
.x32{left:326.594979px;}
.x33{left:340.124979px;}
.x31{left:364.694979px;}
.x30{left:384.224979px;}
.x20{left:402.029979px;}
.x16{left:415.274979px;}
.x13{left:432.599979px;}
.x14{left:440.999979px;}
.x12{left:443.924979px;}
.x11{left:452.819979px;}
.x10{left:469.004979px;}
.xf{left:470.969979px;}
.x15{left:491.879979px;}
.x36{left:584.129979px;}
.x34{left:598.199979px;}
.x35{left:623.774979px;}
.x28{left:690.854979px;}
.x27{left:697.049979px;}
.xe{left:765.329979px;}
.xd{left:768.254979px;}
.xa{left:785.369979px;}
.xb{left:795.194979px;}
.xc{left:797.774979px;}
.x1a{left:799.875000px;}
.x24{left:814.500000px;}
.x9{left:832.424979px;}
.x38{left:841.649979px;}
.x1c{left:845.879979px;}
.x39{left:855.194979px;}
.x25{left:860.669979px;}
.x37{left:873.674979px;}
.x4{left:894.749979px;}
.x3{left:1126.049979px;}
.x2a{left:1142.924979px;}
.x2b{left:1153.124979px;}
.x8{left:1382.024979px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.161067pt;}
.ls3{letter-spacing:0.232000pt;}
.ls5{letter-spacing:0.294400pt;}
.ls7{letter-spacing:2.885333pt;}
.ls9{letter-spacing:11.298933pt;}
.lsa{letter-spacing:11.360000pt;}
.lsb{letter-spacing:11.405600pt;}
.lsc{letter-spacing:11.458933pt;}
.lsd{letter-spacing:11.520000pt;}
.ls4{letter-spacing:48.256267pt;}
.ls2{letter-spacing:48.317333pt;}
.ls8{letter-spacing:83.298933pt;}
.ls1{letter-spacing:83.405600pt;}
.ws0{word-spacing:-58.797867pt;}
.wsc{word-spacing:-21.951067pt;}
.wsf{word-spacing:-21.874667pt;}
.wse{word-spacing:-19.515067pt;}
.ws3{word-spacing:-18.703067pt;}
.ws1{word-spacing:-17.079067pt;}
.wsb{word-spacing:-17.052000pt;}
.ws4{word-spacing:-16.267067pt;}
.ws5{word-spacing:-16.240000pt;}
.ws6{word-spacing:-15.455067pt;}
.ws8{word-spacing:-13.468400pt;}
.ws9{word-spacing:-10.877467pt;}
.ws7{word-spacing:-10.788000pt;}
.wsa{word-spacing:-10.744133pt;}
.wsd{word-spacing:-0.108133pt;}
.ws2{word-spacing:0.000000pt;}
._6{margin-left:-730.759200pt;}
._10{margin-left:-671.717067pt;}
._e{margin-left:-10.291600pt;}
._c{margin-left:-9.188267pt;}
._a{margin-left:-7.643600pt;}
._d{margin-left:-6.501067pt;}
._b{margin-left:-5.212667pt;}
._4{margin-left:-4.310133pt;}
._1{margin-left:-2.973600pt;}
._3{margin-left:-1.274400pt;}
._2{width:1.274400pt;}
._0{width:2.761200pt;}
._11{width:3.684933pt;}
._5{width:4.587333pt;}
._12{width:8.382667pt;}
._8{width:91.232800pt;}
._9{width:225.507200pt;}
._7{width:259.086000pt;}
._13{width:1411.303333pt;}
._f{width:1469.747200pt;}
.fs5{font-size:48.000000pt;}
.fsf{font-size:52.000000pt;}
.fs10{font-size:52.133333pt;}
.fs13{font-size:64.133333pt;}
.fsa{font-size:76.133333pt;}
.fsc{font-size:80.000000pt;}
.fsb{font-size:80.133333pt;}
.fs4{font-size:84.000000pt;}
.fs3{font-size:84.133333pt;}
.fs8{font-size:92.000000pt;}
.fs7{font-size:92.133333pt;}
.fs12{font-size:96.133333pt;}
.fs14{font-size:100.133333pt;}
.fs2{font-size:108.133333pt;}
.fs15{font-size:108.266667pt;}
.fsd{font-size:156.133333pt;}
.fse{font-size:156.266667pt;}
.fs9{font-size:164.133333pt;}
.fs6{font-size:164.266667pt;}
.fs11{font-size:172.266667pt;}
.fs1{font-size:212.266667pt;}
.fs0{font-size:212.400000pt;}
.y0{bottom:0.000000pt;}
.y2c{bottom:2.000000pt;}
.ya{bottom:7.466667pt;}
.y9{bottom:9.466667pt;}
.y10{bottom:9.566667pt;}
.y4d{bottom:38.100000pt;}
.y66{bottom:39.800000pt;}
.yf{bottom:53.333333pt;}
.y4c{bottom:54.133333pt;}
.y65{bottom:55.833333pt;}
.y70{bottom:57.000000pt;}
.y4b{bottom:70.133333pt;}
.y50{bottom:82.600000pt;}
.y58{bottom:82.760000pt;}
.ye{bottom:84.400000pt;}
.y33{bottom:86.000000pt;}
.y4a{bottom:86.166667pt;}
.y3a{bottom:89.533333pt;}
.y63{bottom:89.866667pt;}
.y22{bottom:90.000000pt;}
.y2b{bottom:90.266667pt;}
.y49{bottom:102.200000pt;}
.y23{bottom:108.000000pt;}
.y62{bottom:113.900000pt;}
.y48{bottom:118.200000pt;}
.y47{bottom:134.226667pt;}
.y39{bottom:136.000000pt;}
.y61{bottom:137.933333pt;}
.y8{bottom:142.440000pt;}
.yc{bottom:143.200000pt;}
.y46{bottom:150.266667pt;}
.y8e{bottom:159.026667pt;}
.y5f{bottom:159.973333pt;}
.y60{bottom:161.973333pt;}
.y45{bottom:166.266667pt;}
.y97{bottom:177.066667pt;}
.y8d{bottom:180.066667pt;}
.y7{bottom:184.506667pt;}
.y41{bottom:190.600000pt;}
.y5e{bottom:195.626667pt;}
.y83{bottom:199.106667pt;}
.y94{bottom:202.106667pt;}
.y3d{bottom:202.600000pt;}
.y8c{bottom:206.093333pt;}
.y6{bottom:207.533333pt;}
.y1f{bottom:207.666667pt;}
.y9b{bottom:213.533333pt;}
.y40{bottom:214.600000pt;}
.y5d{bottom:219.666667pt;}
.y18{bottom:220.240000pt;}
.y82{bottom:221.133333pt;}
.y37{bottom:222.333333pt;}
.y6f{bottom:223.960000pt;}
.y93{bottom:224.133333pt;}
.y3c{bottom:226.640000pt;}
.y8b{bottom:228.133333pt;}
.y5{bottom:230.573333pt;}
.y57{bottom:231.000000pt;}
.y1e{bottom:232.693333pt;}
.y3f{bottom:238.640000pt;}
.y2a{bottom:241.000000pt;}
.y81{bottom:243.173333pt;}
.y5c{bottom:243.706667pt;}
.y17{bottom:245.266667pt;}
.y92{bottom:246.173333pt;}
.y8a{bottom:250.173333pt;}
.y3b{bottom:250.666667pt;}
.y9a{bottom:255.600000pt;}
.y6e{bottom:256.040000pt;}
.y1d{bottom:257.733333pt;}
.y3e{bottom:262.666667pt;}
.y80{bottom:265.173333pt;}
.y5b{bottom:267.733333pt;}
.y96{bottom:268.200000pt;}
.y16{bottom:270.306667pt;}
.y34{bottom:270.400000pt;}
.y91{bottom:272.200000pt;}
.y4{bottom:273.626667pt;}
.y89{bottom:276.200000pt;}
.y99{bottom:278.640000pt;}
.y1c{bottom:282.773333pt;}
.y7f{bottom:287.200000pt;}
.y6d{bottom:288.066667pt;}
.y95{bottom:290.200000pt;}
.y5a{bottom:291.773333pt;}
.y90{bottom:294.226667pt;}
.y31{bottom:294.333333pt;}
.y15{bottom:295.333333pt;}
.y32{bottom:296.333333pt;}
.y88{bottom:298.240000pt;}
.y1b{bottom:307.800000pt;}
.y38{bottom:308.333333pt;}
.y7e{bottom:312.226667pt;}
.y59{bottom:315.800000pt;}
.y8f{bottom:316.266667pt;}
.y27{bottom:318.106667pt;}
.y30{bottom:318.373333pt;}
.y87{bottom:320.266667pt;}
.y14{bottom:320.373333pt;}
.y98{bottom:322.240000pt;}
.y3{bottom:322.440000pt;}
.y36{bottom:332.373333pt;}
.y6c{bottom:333.133333pt;}
.y7d{bottom:338.266667pt;}
.y1a{bottom:341.866667pt;}
.y86{bottom:342.306667pt;}
.y2f{bottom:344.400000pt;}
.y21{bottom:347.000000pt;}
.y56{bottom:349.426667pt;}
.y13{bottom:354.440000pt;}
.y35{bottom:356.400000pt;}
.y7c{bottom:360.306667pt;}
.y85{bottom:364.333333pt;}
.y6b{bottom:365.173333pt;}
.y24{bottom:366.173333pt;}
.y2d{bottom:366.440000pt;}
.y19{bottom:366.906667pt;}
.y2e{bottom:368.440000pt;}
.y55{bottom:373.466667pt;}
.yb{bottom:376.533333pt;}
.y2{bottom:380.506667pt;}
.y7b{bottom:382.333333pt;}
.y4f{bottom:385.000000pt;}
.y84{bottom:386.333333pt;}
.y54{bottom:397.506667pt;}
.y28{bottom:402.066667pt;}
.y7a{bottom:408.360000pt;}
.y6a{bottom:409.226667pt;}
.y53{bottom:421.533333pt;}
.y29{bottom:426.106667pt;}
.y79{bottom:430.400000pt;}
.y1{bottom:437.600000pt;}
.y69{bottom:441.266667pt;}
.y52{bottom:445.560000pt;}
.y26{bottom:450.133333pt;}
.y51{bottom:469.600000pt;}
.y25{bottom:474.173333pt;}
.y78{bottom:479.066667pt;}
.y71{bottom:481.533333pt;}
.y77{bottom:501.066667pt;}
.y4e{bottom:506.560000pt;}
.y20{bottom:512.600000pt;}
.y76{bottom:539.200000pt;}
.y12{bottom:569.800000pt;}
.y75{bottom:571.226667pt;}
.y68{bottom:572.106667pt;}
.y43{bottom:591.893333pt;}
.y74{bottom:603.306667pt;}
.y67{bottom:613.733333pt;}
.y11{bottom:614.866667pt;}
.y44{bottom:625.466667pt;}
.y64{bottom:633.173333pt;}
.yd{bottom:633.640000pt;}
.y42{bottom:633.933333pt;}
.y73{bottom:635.333333pt;}
.y72{bottom:667.360000pt;}
.h6{height:36.000000pt;}
.hb{height:41.671875pt;}
.h1c{height:45.068359pt;}
.h1d{height:45.183919pt;}
.h28{height:48.726302pt;}
.h16{height:59.257812pt;}
.h11{height:59.356576pt;}
.he{height:66.096224pt;}
.h17{height:69.335938pt;}
.h12{height:69.451497pt;}
.h2c{height:69.453125pt;}
.h20{height:69.568880pt;}
.h25{height:70.998047pt;}
.h5{height:72.802734pt;}
.h4{height:72.918294pt;}
.h1e{height:72.925781pt;}
.h7{height:73.041536pt;}
.h29{height:76.077865pt;}
.hd{height:79.851888pt;}
.ha{height:79.871094pt;}
.h9{height:79.986849pt;}
.h2a{height:82.155990pt;}
.h2b{height:82.257292pt;}
.h27{height:83.318685pt;}
.h3{height:93.719076pt;}
.h26{height:93.877474pt;}
.h1a{height:117.100000pt;}
.h1b{height:117.200000pt;}
.hc{height:123.100000pt;}
.h8{height:123.200000pt;}
.h24{height:129.200000pt;}
.h2{height:159.200000pt;}
.h1{height:159.300000pt;}
.h1f{height:180.000000pt;}
.h21{height:181.000000pt;}
.hf{height:195.000000pt;}
.h13{height:196.000000pt;}
.h22{height:335.000000pt;}
.h23{height:469.000000pt;}
.h18{height:486.000000pt;}
.h15{height:505.000000pt;}
.h19{height:570.000000pt;}
.h10{height:612.000000pt;}
.h14{height:673.000000pt;}
.h0{height:720.000000pt;}
.w5{width:156.000000pt;}
.w2{width:173.000000pt;}
.w3{width:514.000000pt;}
.w7{width:535.000000pt;}
.w6{width:539.000000pt;}
.w4{width:544.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x17{left:9.800000pt;}
.x1b{left:10.866667pt;}
.x7{left:25.333314pt;}
.x1f{left:27.633314pt;}
.x21{left:31.000000pt;}
.x6{left:46.799981pt;}
.x26{left:48.733314pt;}
.x5{left:53.066648pt;}
.x2e{left:61.399981pt;}
.x2f{left:73.399981pt;}
.x1{left:77.733314pt;}
.x2{left:79.633314pt;}
.x2c{left:98.299981pt;}
.x2d{left:102.433314pt;}
.x29{left:111.633314pt;}
.x1e{left:148.159981pt;}
.x22{left:186.000000pt;}
.x18{left:198.000000pt;}
.x23{left:225.959981pt;}
.x19{left:238.399981pt;}
.x1d{left:273.773314pt;}
.x32{left:290.306648pt;}
.x33{left:302.333314pt;}
.x31{left:324.173314pt;}
.x30{left:341.533314pt;}
.x20{left:357.359981pt;}
.x16{left:369.133314pt;}
.x13{left:384.533314pt;}
.x14{left:391.999981pt;}
.x12{left:394.599981pt;}
.x11{left:402.506648pt;}
.x10{left:416.893314pt;}
.xf{left:418.639981pt;}
.x15{left:437.226648pt;}
.x36{left:519.226648pt;}
.x34{left:531.733314pt;}
.x35{left:554.466648pt;}
.x28{left:614.093314pt;}
.x27{left:619.599981pt;}
.xe{left:680.293314pt;}
.xd{left:682.893314pt;}
.xa{left:698.106648pt;}
.xb{left:706.839981pt;}
.xc{left:709.133314pt;}
.x1a{left:711.000000pt;}
.x24{left:724.000000pt;}
.x9{left:739.933314pt;}
.x38{left:748.133314pt;}
.x1c{left:751.893314pt;}
.x39{left:760.173314pt;}
.x25{left:765.039981pt;}
.x37{left:776.599981pt;}
.x4{left:795.333314pt;}
.x3{left:1000.933314pt;}
.x2a{left:1015.933314pt;}
.x2b{left:1024.999981pt;}
.x8{left:1228.466648pt;}
}




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