
    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_5848f8038dea2f77d8df4b0b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.158203;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_62fcfaef9678c04a6a60ec0c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.008301;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_c07b0b3c2c19a259590d668d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.884277;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_c3bf268354212b71a7dd76e6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.811808;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_fbb922beb73978572d79c98e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.008301;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_26f5a6b68f2a6e359b45c098.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.008301;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_05df21f521983be0410d2696.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.158203;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.450000px;}
.v2{vertical-align:27.000000px;}
.v3{vertical-align:57.300000px;}
.ls8{letter-spacing:-4.632000px;}
.lse{letter-spacing:-4.494000px;}
.ls7{letter-spacing:-1.260000px;}
.lsa{letter-spacing:-1.200000px;}
.ls18{letter-spacing:-0.810000px;}
.ls10{letter-spacing:-0.756000px;}
.ls6{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.612000px;}
.lsf{letter-spacing:-0.570000px;}
.ls1d{letter-spacing:-0.504000px;}
.ls0{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.783900px;}
.ls11{letter-spacing:1.158000px;}
.lsd{letter-spacing:1.671450px;}
.ls19{letter-spacing:2.004000px;}
.ls3{letter-spacing:20.863500px;}
.ls5{letter-spacing:20.879250px;}
.ls2{letter-spacing:20.999250px;}
.ls1b{letter-spacing:21.059250px;}
.lsc{letter-spacing:22.131000px;}
.ls1{letter-spacing:30.261750px;}
.ls1a{letter-spacing:30.276000px;}
.ls4{letter-spacing:30.381750px;}
.ls1c{letter-spacing:30.411750px;}
.lsb{letter-spacing:30.441750px;}
.ls13{letter-spacing:37.289250px;}
.ls12{letter-spacing:42.343500px;}
.ls14{letter-spacing:42.479250px;}
.ls16{letter-spacing:42.629250px;}
.ls15{letter-spacing:50.774250px;}
.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;}
}
.ws16{word-spacing:-75.487500px;}
.ws18{word-spacing:-58.612500px;}
.ws1{word-spacing:-54.075000px;}
.ws2{word-spacing:-41.700000px;}
.ws17{word-spacing:-36.037500px;}
.ws10{word-spacing:-33.446400px;}
.ws3{word-spacing:-32.700000px;}
.wsc{word-spacing:-32.662500px;}
.ws7{word-spacing:-30.450000px;}
.ws4{word-spacing:-30.412500px;}
.wsb{word-spacing:-27.037500px;}
.wsd{word-spacing:-23.662500px;}
.wse{word-spacing:-23.625000px;}
.wsa{word-spacing:-19.158000px;}
.ws9{word-spacing:-18.037500px;}
.ws5{word-spacing:-18.000000px;}
.ws14{word-spacing:-17.754000px;}
.ws8{word-spacing:-16.837500px;}
.ws6{word-spacing:-16.740000px;}
.wsf{word-spacing:-15.787500px;}
.ws12{word-spacing:-15.750000px;}
.ws13{word-spacing:-14.940000px;}
.ws0{word-spacing:0.000000px;}
.ws11{word-spacing:1756.326000px;}
.ws15{word-spacing:3026.439000px;}
._11{margin-left:-15.179250px;}
._d{margin-left:-13.547550px;}
._b{margin-left:-11.344800px;}
._a{margin-left:-10.188900px;}
._c{margin-left:-8.698050px;}
._8{margin-left:-7.652550px;}
._9{margin-left:-5.686200px;}
._1{margin-left:-3.964950px;}
._2{margin-left:-2.883600px;}
._4{margin-left:-1.162800px;}
._5{width:1.057950px;}
._0{width:2.162700px;}
._6{width:3.840450px;}
._7{width:5.388150px;}
._14{width:6.422400px;}
._16{width:7.539150px;}
._e{width:8.770500px;}
._10{width:16.575900px;}
._13{width:25.814100px;}
._3{width:43.728000px;}
._f{width:619.211400px;}
._12{width:3253.617000px;}
._15{width:3697.071000px;}
.fcf{color:rgb(108,195,176);}
.fc10{color:rgb(240,178,22);}
.fce{color:rgb(127,127,127);}
.fcd{color:rgb(217,101,61);}
.fc0{color:rgb(242,242,242);}
.fc1{color:rgb(255,255,255);}
.fc4{color:rgb(38,38,38);}
.fc8{color:rgb(217,217,217);}
.fcc{color:rgb(0,0,0);}
.fc3{color:rgb(137,137,137);}
.fc2{color:rgb(108,197,176);}
.fc5{color:rgb(63,86,166);}
.fc7{color:rgb(232,93,38);}
.fc9{color:rgb(73,101,197);}
.fc6{color:rgb(231,93,37);}
.fca{color:rgb(63,85,166);}
.fcb{color:transparent;}
.fs18{font-size:63.000000px;}
.fs19{font-size:63.150000px;}
.fs7{font-size:72.000000px;}
.fs11{font-size:72.150000px;}
.fs17{font-size:94.500000px;}
.fs4{font-size:94.650000px;}
.fs16{font-size:99.150000px;}
.fs3{font-size:108.150000px;}
.fs15{font-size:112.650000px;}
.fsa{font-size:117.150000px;}
.fsd{font-size:117.300000px;}
.fsc{font-size:121.650000px;}
.fs10{font-size:121.800000px;}
.fs8{font-size:130.650000px;}
.fsb{font-size:130.800000px;}
.fs13{font-size:139.800000px;}
.fs2{font-size:144.150000px;}
.fs9{font-size:144.300000px;}
.fs14{font-size:157.800000px;}
.fs5{font-size:166.800000px;}
.fsf{font-size:180.300000px;}
.fs1{font-size:193.800000px;}
.fs12{font-size:198.300000px;}
.fs6{font-size:216.300000px;}
.fs1b{font-size:234.450000px;}
.fse{font-size:301.950000px;}
.fs0{font-size:360.450000px;}
.fs1a{font-size:482.100000px;}
.y0{bottom:0.000000px;}
.yad{bottom:16.200000px;}
.yab{bottom:23.775000px;}
.y82{bottom:24.300000px;}
.y29{bottom:24.337500px;}
.y6e{bottom:24.412500px;}
.y38{bottom:24.450000px;}
.y58{bottom:24.750000px;}
.y9{bottom:30.525000px;}
.yac{bottom:31.987500px;}
.y81{bottom:38.925000px;}
.yaa{bottom:39.562500px;}
.y57{bottom:41.662500px;}
.y37{bottom:42.487500px;}
.ya2{bottom:46.125000px;}
.y80{bottom:54.712500px;}
.y6d{bottom:70.125000px;}
.y25{bottom:74.625000px;}
.y6{bottom:81.450000px;}
.y92{bottom:100.125000px;}
.y6c{bottom:100.537500px;}
.y24{bottom:103.912500px;}
.ya8{bottom:106.612500px;}
.y7f{bottom:114.150000px;}
.y5d{bottom:115.237500px;}
.y8f{bottom:115.320000px;}
.y9d{bottom:115.425000px;}
.y87{bottom:115.530000px;}
.y93{bottom:115.695000px;}
.ya1{bottom:115.800000px;}
.y89{bottom:115.905000px;}
.y95{bottom:116.445000px;}
.y8a{bottom:118.125000px;}
.y36{bottom:118.875000px;}
.y6b{bottom:130.950000px;}
.ya0{bottom:136.125000px;}
.ya7{bottom:139.275000px;}
.y23{bottom:142.237500px;}
.y7e{bottom:146.812500px;}
.y8e{bottom:147.375000px;}
.y6a{bottom:161.370000px;}
.ya6{bottom:171.930000px;}
.y22{bottom:172.650000px;}
.y5b{bottom:174.900000px;}
.y91{bottom:179.775000px;}
.y15{bottom:181.650000px;}
.ya9{bottom:182.100000px;}
.y9c{bottom:183.375000px;}
.yba{bottom:187.380000px;}
.y35{bottom:191.805000px;}
.y7d{bottom:194.130000px;}
.y5a{bottom:206.445000px;}
.y21{bottom:210.945000px;}
.y14{bottom:214.320000px;}
.y90{bottom:215.820000px;}
.y9f{bottom:215.880000px;}
.y98{bottom:219.375000px;}
.y34{bottom:221.100000px;}
.y9a{bottom:223.620000px;}
.y8c{bottom:223.875000px;}
.yb9{bottom:225.675000px;}
.y7c{bottom:226.800000px;}
.y56{bottom:227.925000px;}
.y5{bottom:235.875000px;}
.y59{bottom:239.100000px;}
.y20{bottom:240.225000px;}
.y13{bottom:247.005000px;}
.y33{bottom:250.380000px;}
.y69{bottom:251.505000px;}
.y9e{bottom:251.925000px;}
.y7b{bottom:259.500000px;}
.y99{bottom:259.695000px;}
.y8b{bottom:259.905000px;}
.y4{bottom:261.780000px;}
.y88{bottom:262.125000px;}
.y55{bottom:269.520000px;}
.y1f{bottom:278.550000px;}
.ybd{bottom:279.420000px;}
.yb8{bottom:279.750000px;}
.y49{bottom:281.325000px;}
.y68{bottom:281.925000px;}
.y12{bottom:289.800000px;}
.y52{bottom:292.605000px;}
.y3{bottom:293.325000px;}
.y54{bottom:302.220000px;}
.y5c{bottom:304.845000px;}
.y7a{bottom:306.780000px;}
.y1e{bottom:307.830000px;}
.y72{bottom:308.370000px;}
.y86{bottom:309.375000px;}
.y41{bottom:312.000000px;}
.y67{bottom:312.345000px;}
.y11{bottom:322.470000px;}
.yb7{bottom:322.575000px;}
.y48{bottom:327.000000px;}
.y51{bottom:328.200000px;}
.y53{bottom:333.750000px;}
.ybc{bottom:336.900000px;}
.y79{bottom:339.480000px;}
.y8d{bottom:342.000000px;}
.y66{bottom:342.750000px;}
.yb1{bottom:346.125000px;}
.y1d{bottom:347.250000px;}
.y27{bottom:348.150000px;}
.y42{bottom:349.275000px;}
.y32{bottom:351.750000px;}
.ya5{bottom:352.950000px;}
.y10{bottom:355.170000px;}
.y47{bottom:359.655000px;}
.y50{bottom:359.730000px;}
.y40{bottom:366.405000px;}
.yb6{bottom:366.525000px;}
.y2{bottom:371.820000px;}
.y65{bottom:372.045000px;}
.y1c{bottom:376.530000px;}
.y31{bottom:379.905000px;}
.y71{bottom:384.450000px;}
.y78{bottom:386.775000px;}
.y46{bottom:391.200000px;}
.y4f{bottom:392.400000px;}
.yb0{bottom:396.825000px;}
.ya4{bottom:396.870000px;}
.yb2{bottom:397.695000px;}
.yf{bottom:397.950000px;}
.y3f{bottom:399.075000px;}
.y64{bottom:403.575000px;}
.y97{bottom:409.200000px;}
.y30{bottom:409.245000px;}
.y94{bottom:409.500000px;}
.y1b{bottom:414.870000px;}
.y70{bottom:415.995000px;}
.y26{bottom:418.320000px;}
.y77{bottom:419.445000px;}
.y45{bottom:423.870000px;}
.y4e{bottom:425.100000px;}
.ybb{bottom:429.780000px;}
.ye{bottom:430.620000px;}
.y3e{bottom:431.745000px;}
.ya3{bottom:432.945000px;}
.y1{bottom:437.130000px;}
.y2f{bottom:437.400000px;}
.y9b{bottom:442.995000px;}
.y1a{bottom:444.150000px;}
.y63{bottom:445.275000px;}
.yaf{bottom:447.525000px;}
.y6f{bottom:448.650000px;}
.y44{bottom:456.525000px;}
.y4d{bottom:457.755000px;}
.yb5{bottom:462.255000px;}
.yd{bottom:463.320000px;}
.y3d{bottom:464.445000px;}
.y76{bottom:466.755000px;}
.y62{bottom:475.695000px;}
.y96{bottom:479.070000px;}
.y2e{bottom:481.320000px;}
.y19{bottom:482.445000px;}
.y43{bottom:489.195000px;}
.y4c{bottom:490.425000px;}
.y85{bottom:493.800000px;}
.y3c{bottom:495.975000px;}
.yae{bottom:498.225000px;}
.yc{bottom:499.350000px;}
.y75{bottom:499.425000px;}
.y61{bottom:506.100000px;}
.yb4{bottom:506.220000px;}
.y2d{bottom:510.600000px;}
.y18{bottom:512.850000px;}
.y4b{bottom:521.970000px;}
.y3b{bottom:528.630000px;}
.y60{bottom:536.505000px;}
.y2c{bottom:539.880000px;}
.y84{bottom:541.125000px;}
.y74{bottom:546.750000px;}
.yb{bottom:550.050000px;}
.yb3{bottom:550.125000px;}
.y17{bottom:557.925000px;}
.y3a{bottom:561.300000px;}
.y5f{bottom:566.925000px;}
.y2b{bottom:568.050000px;}
.y4a{bottom:586.200000px;}
.ya{bottom:588.330000px;}
.y83{bottom:588.450000px;}
.y16{bottom:592.845000px;}
.y39{bottom:593.970000px;}
.y73{bottom:594.075000px;}
.y2a{bottom:597.330000px;}
.y5e{bottom:598.500000px;}
.y7{bottom:646.245000px;}
.y8{bottom:710.970000px;}
.y28{bottom:711.150000px;}
.h8{height:54.597656px;}
.h19{height:57.216797px;}
.h18{height:57.353027px;}
.hf{height:65.390625px;}
.h12{height:65.526855px;}
.h16{height:83.066382px;}
.h5{height:85.961426px;}
.h17{height:89.840625px;}
.h1a{height:90.290625px;}
.h23{height:92.390625px;}
.hc{height:93.435278px;}
.h4{height:98.222168px;}
.h15{height:102.309082px;}
.h10{height:110.482910px;}
.h11{height:110.619141px;}
.ha{height:118.656738px;}
.hb{height:118.792969px;}
.h24{height:122.690625px;}
.h3{height:130.917480px;}
.h9{height:131.053711px;}
.h14{height:143.314453px;}
.h2{height:148.851270px;}
.h6{height:151.488281px;}
.he{height:163.749023px;}
.h13{height:180.096680px;}
.h7{height:196.444336px;}
.h26{height:212.928223px;}
.h1b{height:253.125000px;}
.hd{height:274.231934px;}
.h1{height:327.361816px;}
.h25{height:437.844727px;}
.h1d{height:461.250000px;}
.h1c{height:505.125000px;}
.h20{height:529.875000px;}
.h21{height:605.250000px;}
.h22{height:703.125000px;}
.h1e{height:713.250000px;}
.h1f{height:763.875000px;}
.h0{height:810.000000px;}
.w3{width:621.000000px;}
.w2{width:622.125000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x25{left:12.000000px;}
.x2{left:68.174979px;}
.x24{left:97.875000px;}
.x28{left:100.125000px;}
.x7{left:109.199979px;}
.x11{left:111.112479px;}
.x19{left:113.699979px;}
.x2c{left:127.049979px;}
.x9{left:146.324979px;}
.xa{left:151.724979px;}
.x1{left:160.244979px;}
.xb{left:183.479979px;}
.x2a{left:201.374979px;}
.x2f{left:241.499979px;}
.x1e{left:255.719979px;}
.x22{left:263.399979px;}
.x16{left:321.824979px;}
.x4{left:330.869979px;}
.x15{left:340.049979px;}
.x10{left:352.199979px;}
.x1f{left:363.299979px;}
.x5{left:370.169979px;}
.x20{left:374.954979px;}
.x1d{left:378.299979px;}
.x13{left:407.174979px;}
.x17{left:408.719979px;}
.x23{left:426.269979px;}
.x6{left:461.819979px;}
.x21{left:475.004979px;}
.x30{left:487.124979px;}
.x31{left:498.974979px;}
.x2d{left:511.874979px;}
.x3{left:577.499979px;}
.x1b{left:582.749979px;}
.xc{left:621.794979px;}
.xd{left:658.949979px;}
.xe{left:664.349979px;}
.xf{left:696.074979px;}
.x26{left:718.875000px;}
.x29{left:720.000000px;}
.x1a{left:973.244979px;}
.x14{left:1020.629979px;}
.x1c{left:1080.899979px;}
.x27{left:1312.919979px;}
.x2b{left:1314.299979px;}
.x18{left:1382.924979px;}
.x2e{left:1385.549979px;}
.x12{left:1393.424979px;}
.x8{left:1394.744979px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.733333pt;}
.v2{vertical-align:24.000000pt;}
.v3{vertical-align:50.933333pt;}
.ls8{letter-spacing:-4.117333pt;}
.lse{letter-spacing:-3.994667pt;}
.ls7{letter-spacing:-1.120000pt;}
.lsa{letter-spacing:-1.066667pt;}
.ls18{letter-spacing:-0.720000pt;}
.ls10{letter-spacing:-0.672000pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.544000pt;}
.lsf{letter-spacing:-0.506667pt;}
.ls1d{letter-spacing:-0.448000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.696800pt;}
.ls11{letter-spacing:1.029333pt;}
.lsd{letter-spacing:1.485733pt;}
.ls19{letter-spacing:1.781333pt;}
.ls3{letter-spacing:18.545333pt;}
.ls5{letter-spacing:18.559333pt;}
.ls2{letter-spacing:18.666000pt;}
.ls1b{letter-spacing:18.719333pt;}
.lsc{letter-spacing:19.672000pt;}
.ls1{letter-spacing:26.899333pt;}
.ls1a{letter-spacing:26.912000pt;}
.ls4{letter-spacing:27.006000pt;}
.ls1c{letter-spacing:27.032667pt;}
.lsb{letter-spacing:27.059333pt;}
.ls13{letter-spacing:33.146000pt;}
.ls12{letter-spacing:37.638667pt;}
.ls14{letter-spacing:37.759333pt;}
.ls16{letter-spacing:37.892667pt;}
.ls15{letter-spacing:45.132667pt;}
.ws16{word-spacing:-67.100000pt;}
.ws18{word-spacing:-52.100000pt;}
.ws1{word-spacing:-48.066667pt;}
.ws2{word-spacing:-37.066667pt;}
.ws17{word-spacing:-32.033333pt;}
.ws10{word-spacing:-29.730133pt;}
.ws3{word-spacing:-29.066667pt;}
.wsc{word-spacing:-29.033333pt;}
.ws7{word-spacing:-27.066667pt;}
.ws4{word-spacing:-27.033333pt;}
.wsb{word-spacing:-24.033333pt;}
.wsd{word-spacing:-21.033333pt;}
.wse{word-spacing:-21.000000pt;}
.wsa{word-spacing:-17.029333pt;}
.ws9{word-spacing:-16.033333pt;}
.ws5{word-spacing:-16.000000pt;}
.ws14{word-spacing:-15.781333pt;}
.ws8{word-spacing:-14.966667pt;}
.ws6{word-spacing:-14.880000pt;}
.wsf{word-spacing:-14.033333pt;}
.ws12{word-spacing:-14.000000pt;}
.ws13{word-spacing:-13.280000pt;}
.ws0{word-spacing:0.000000pt;}
.ws11{word-spacing:1561.178667pt;}
.ws15{word-spacing:2690.168000pt;}
._11{margin-left:-13.492667pt;}
._d{margin-left:-12.042267pt;}
._b{margin-left:-10.084267pt;}
._a{margin-left:-9.056800pt;}
._c{margin-left:-7.731600pt;}
._8{margin-left:-6.802267pt;}
._9{margin-left:-5.054400pt;}
._1{margin-left:-3.524400pt;}
._2{margin-left:-2.563200pt;}
._4{margin-left:-1.033600pt;}
._5{width:0.940400pt;}
._0{width:1.922400pt;}
._6{width:3.413733pt;}
._7{width:4.789467pt;}
._14{width:5.708800pt;}
._16{width:6.701467pt;}
._e{width:7.796000pt;}
._10{width:14.734133pt;}
._13{width:22.945867pt;}
._3{width:38.869333pt;}
._f{width:550.410133pt;}
._12{width:2892.104000pt;}
._15{width:3286.285333pt;}
.fs18{font-size:56.000000pt;}
.fs19{font-size:56.133333pt;}
.fs7{font-size:64.000000pt;}
.fs11{font-size:64.133333pt;}
.fs17{font-size:84.000000pt;}
.fs4{font-size:84.133333pt;}
.fs16{font-size:88.133333pt;}
.fs3{font-size:96.133333pt;}
.fs15{font-size:100.133333pt;}
.fsa{font-size:104.133333pt;}
.fsd{font-size:104.266667pt;}
.fsc{font-size:108.133333pt;}
.fs10{font-size:108.266667pt;}
.fs8{font-size:116.133333pt;}
.fsb{font-size:116.266667pt;}
.fs13{font-size:124.266667pt;}
.fs2{font-size:128.133333pt;}
.fs9{font-size:128.266667pt;}
.fs14{font-size:140.266667pt;}
.fs5{font-size:148.266667pt;}
.fsf{font-size:160.266667pt;}
.fs1{font-size:172.266667pt;}
.fs12{font-size:176.266667pt;}
.fs6{font-size:192.266667pt;}
.fs1b{font-size:208.400000pt;}
.fse{font-size:268.400000pt;}
.fs0{font-size:320.400000pt;}
.fs1a{font-size:428.533333pt;}
.y0{bottom:0.000000pt;}
.yad{bottom:14.400000pt;}
.yab{bottom:21.133333pt;}
.y82{bottom:21.600000pt;}
.y29{bottom:21.633333pt;}
.y6e{bottom:21.700000pt;}
.y38{bottom:21.733333pt;}
.y58{bottom:22.000000pt;}
.y9{bottom:27.133333pt;}
.yac{bottom:28.433333pt;}
.y81{bottom:34.600000pt;}
.yaa{bottom:35.166667pt;}
.y57{bottom:37.033333pt;}
.y37{bottom:37.766667pt;}
.ya2{bottom:41.000000pt;}
.y80{bottom:48.633333pt;}
.y6d{bottom:62.333333pt;}
.y25{bottom:66.333333pt;}
.y6{bottom:72.400000pt;}
.y92{bottom:89.000000pt;}
.y6c{bottom:89.366667pt;}
.y24{bottom:92.366667pt;}
.ya8{bottom:94.766667pt;}
.y7f{bottom:101.466667pt;}
.y5d{bottom:102.433333pt;}
.y8f{bottom:102.506667pt;}
.y9d{bottom:102.600000pt;}
.y87{bottom:102.693333pt;}
.y93{bottom:102.840000pt;}
.ya1{bottom:102.933333pt;}
.y89{bottom:103.026667pt;}
.y95{bottom:103.506667pt;}
.y8a{bottom:105.000000pt;}
.y36{bottom:105.666667pt;}
.y6b{bottom:116.400000pt;}
.ya0{bottom:121.000000pt;}
.ya7{bottom:123.800000pt;}
.y23{bottom:126.433333pt;}
.y7e{bottom:130.500000pt;}
.y8e{bottom:131.000000pt;}
.y6a{bottom:143.440000pt;}
.ya6{bottom:152.826667pt;}
.y22{bottom:153.466667pt;}
.y5b{bottom:155.466667pt;}
.y91{bottom:159.800000pt;}
.y15{bottom:161.466667pt;}
.ya9{bottom:161.866667pt;}
.y9c{bottom:163.000000pt;}
.yba{bottom:166.560000pt;}
.y35{bottom:170.493333pt;}
.y7d{bottom:172.560000pt;}
.y5a{bottom:183.506667pt;}
.y21{bottom:187.506667pt;}
.y14{bottom:190.506667pt;}
.y90{bottom:191.840000pt;}
.y9f{bottom:191.893333pt;}
.y98{bottom:195.000000pt;}
.y34{bottom:196.533333pt;}
.y9a{bottom:198.773333pt;}
.y8c{bottom:199.000000pt;}
.yb9{bottom:200.600000pt;}
.y7c{bottom:201.600000pt;}
.y56{bottom:202.600000pt;}
.y5{bottom:209.666667pt;}
.y59{bottom:212.533333pt;}
.y20{bottom:213.533333pt;}
.y13{bottom:219.560000pt;}
.y33{bottom:222.560000pt;}
.y69{bottom:223.560000pt;}
.y9e{bottom:223.933333pt;}
.y7b{bottom:230.666667pt;}
.y99{bottom:230.840000pt;}
.y8b{bottom:231.026667pt;}
.y4{bottom:232.693333pt;}
.y88{bottom:233.000000pt;}
.y55{bottom:239.573333pt;}
.y1f{bottom:247.600000pt;}
.ybd{bottom:248.373333pt;}
.yb8{bottom:248.666667pt;}
.y49{bottom:250.066667pt;}
.y68{bottom:250.600000pt;}
.y12{bottom:257.600000pt;}
.y52{bottom:260.093333pt;}
.y3{bottom:260.733333pt;}
.y54{bottom:268.640000pt;}
.y5c{bottom:270.973333pt;}
.y7a{bottom:272.693333pt;}
.y1e{bottom:273.626667pt;}
.y72{bottom:274.106667pt;}
.y86{bottom:275.000000pt;}
.y41{bottom:277.333333pt;}
.y67{bottom:277.640000pt;}
.y11{bottom:286.640000pt;}
.yb7{bottom:286.733333pt;}
.y48{bottom:290.666667pt;}
.y51{bottom:291.733333pt;}
.y53{bottom:296.666667pt;}
.ybc{bottom:299.466667pt;}
.y79{bottom:301.760000pt;}
.y8d{bottom:304.000000pt;}
.y66{bottom:304.666667pt;}
.yb1{bottom:307.666667pt;}
.y1d{bottom:308.666667pt;}
.y27{bottom:309.466667pt;}
.y42{bottom:310.466667pt;}
.y32{bottom:312.666667pt;}
.ya5{bottom:313.733333pt;}
.y10{bottom:315.706667pt;}
.y47{bottom:319.693333pt;}
.y50{bottom:319.760000pt;}
.y40{bottom:325.693333pt;}
.yb6{bottom:325.800000pt;}
.y2{bottom:330.506667pt;}
.y65{bottom:330.706667pt;}
.y1c{bottom:334.693333pt;}
.y31{bottom:337.693333pt;}
.y71{bottom:341.733333pt;}
.y78{bottom:343.800000pt;}
.y46{bottom:347.733333pt;}
.y4f{bottom:348.800000pt;}
.yb0{bottom:352.733333pt;}
.ya4{bottom:352.773333pt;}
.yb2{bottom:353.506667pt;}
.yf{bottom:353.733333pt;}
.y3f{bottom:354.733333pt;}
.y64{bottom:358.733333pt;}
.y97{bottom:363.733333pt;}
.y30{bottom:363.773333pt;}
.y94{bottom:364.000000pt;}
.y1b{bottom:368.773333pt;}
.y70{bottom:369.773333pt;}
.y26{bottom:371.840000pt;}
.y77{bottom:372.840000pt;}
.y45{bottom:376.773333pt;}
.y4e{bottom:377.866667pt;}
.ybb{bottom:382.026667pt;}
.ye{bottom:382.773333pt;}
.y3e{bottom:383.773333pt;}
.ya3{bottom:384.840000pt;}
.y1{bottom:388.560000pt;}
.y2f{bottom:388.800000pt;}
.y9b{bottom:393.773333pt;}
.y1a{bottom:394.800000pt;}
.y63{bottom:395.800000pt;}
.yaf{bottom:397.800000pt;}
.y6f{bottom:398.800000pt;}
.y44{bottom:405.800000pt;}
.y4d{bottom:406.893333pt;}
.yb5{bottom:410.893333pt;}
.yd{bottom:411.840000pt;}
.y3d{bottom:412.840000pt;}
.y76{bottom:414.893333pt;}
.y62{bottom:422.840000pt;}
.y96{bottom:425.840000pt;}
.y2e{bottom:427.840000pt;}
.y19{bottom:428.840000pt;}
.y43{bottom:434.840000pt;}
.y4c{bottom:435.933333pt;}
.y85{bottom:438.933333pt;}
.y3c{bottom:440.866667pt;}
.yae{bottom:442.866667pt;}
.yc{bottom:443.866667pt;}
.y75{bottom:443.933333pt;}
.y61{bottom:449.866667pt;}
.yb4{bottom:449.973333pt;}
.y2d{bottom:453.866667pt;}
.y18{bottom:455.866667pt;}
.y4b{bottom:463.973333pt;}
.y3b{bottom:469.893333pt;}
.y60{bottom:476.893333pt;}
.y2c{bottom:479.893333pt;}
.y84{bottom:481.000000pt;}
.y74{bottom:486.000000pt;}
.yb{bottom:488.933333pt;}
.yb3{bottom:489.000000pt;}
.y17{bottom:495.933333pt;}
.y3a{bottom:498.933333pt;}
.y5f{bottom:503.933333pt;}
.y2b{bottom:504.933333pt;}
.y4a{bottom:521.066667pt;}
.ya{bottom:522.960000pt;}
.y83{bottom:523.066667pt;}
.y16{bottom:526.973333pt;}
.y39{bottom:527.973333pt;}
.y73{bottom:528.066667pt;}
.y2a{bottom:530.960000pt;}
.y5e{bottom:532.000000pt;}
.y7{bottom:574.440000pt;}
.y8{bottom:631.973333pt;}
.y28{bottom:632.133333pt;}
.h8{height:48.531250pt;}
.h19{height:50.859375pt;}
.h18{height:50.980469pt;}
.hf{height:58.125000pt;}
.h12{height:58.246094pt;}
.h16{height:73.836784pt;}
.h5{height:76.410156pt;}
.h17{height:79.858333pt;}
.h1a{height:80.258333pt;}
.h23{height:82.125000pt;}
.hc{height:83.053581pt;}
.h4{height:87.308594pt;}
.h15{height:90.941406pt;}
.h10{height:98.207031pt;}
.h11{height:98.328125pt;}
.ha{height:105.472656pt;}
.hb{height:105.593750pt;}
.h24{height:109.058333pt;}
.h3{height:116.371094pt;}
.h9{height:116.492188pt;}
.h14{height:127.390625pt;}
.h2{height:132.312240pt;}
.h6{height:134.656250pt;}
.he{height:145.554688pt;}
.h13{height:160.085937pt;}
.h7{height:174.617187pt;}
.h26{height:189.269531pt;}
.h1b{height:225.000000pt;}
.hd{height:243.761719pt;}
.h1{height:290.988281pt;}
.h25{height:389.195312pt;}
.h1d{height:410.000000pt;}
.h1c{height:449.000000pt;}
.h20{height:471.000000pt;}
.h21{height:538.000000pt;}
.h22{height:625.000000pt;}
.h1e{height:634.000000pt;}
.h1f{height:679.000000pt;}
.h0{height:720.000000pt;}
.w3{width:552.000000pt;}
.w2{width:553.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x25{left:10.666667pt;}
.x2{left:60.599981pt;}
.x24{left:87.000000pt;}
.x28{left:89.000000pt;}
.x7{left:97.066648pt;}
.x11{left:98.766648pt;}
.x19{left:101.066648pt;}
.x2c{left:112.933314pt;}
.x9{left:130.066648pt;}
.xa{left:134.866648pt;}
.x1{left:142.439981pt;}
.xb{left:163.093314pt;}
.x2a{left:178.999981pt;}
.x2f{left:214.666648pt;}
.x1e{left:227.306648pt;}
.x22{left:234.133314pt;}
.x16{left:286.066648pt;}
.x4{left:294.106648pt;}
.x15{left:302.266648pt;}
.x10{left:313.066648pt;}
.x1f{left:322.933314pt;}
.x5{left:329.039981pt;}
.x20{left:333.293314pt;}
.x1d{left:336.266648pt;}
.x13{left:361.933314pt;}
.x17{left:363.306648pt;}
.x23{left:378.906648pt;}
.x6{left:410.506648pt;}
.x21{left:422.226648pt;}
.x30{left:432.999981pt;}
.x31{left:443.533314pt;}
.x2d{left:454.999981pt;}
.x3{left:513.333314pt;}
.x1b{left:517.999981pt;}
.xc{left:552.706648pt;}
.xd{left:585.733314pt;}
.xe{left:590.533314pt;}
.xf{left:618.733314pt;}
.x26{left:639.000000pt;}
.x29{left:640.000000pt;}
.x1a{left:865.106648pt;}
.x14{left:907.226648pt;}
.x1c{left:960.799981pt;}
.x27{left:1167.039981pt;}
.x2b{left:1168.266648pt;}
.x18{left:1229.266648pt;}
.x2e{left:1231.599981pt;}
.x12{left:1238.599981pt;}
.x8{left:1239.773314pt;}
}




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