
    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_81255816750a2a2597f54a54.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.981934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_dcd08c3578f4b53f9cfed68f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.982910;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_a3d2eb62197df5e594e184d3.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_0b36d481c49eda27b94bedc6.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_9b4197ff4c9f43e86d331282.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.093262;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_494a36b724677e475f536ebc.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.402354;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);}
.v4{vertical-align:-76.320000px;}
.v8{vertical-align:-74.880000px;}
.v7{vertical-align:-72.000000px;}
.v3{vertical-align:-70.560000px;}
.v5{vertical-align:-69.120000px;}
.v2{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:21.600000px;}
.v1{vertical-align:30.240000px;}
.lsd{letter-spacing:-2.880000px;}
.ls14{letter-spacing:-1.908000px;}
.ls18{letter-spacing:-1.458000px;}
.ls8{letter-spacing:-1.440000px;}
.ls10{letter-spacing:-1.422000px;}
.ls9{letter-spacing:-0.972000px;}
.ls17{letter-spacing:-0.954000px;}
.ls13{letter-spacing:-0.936000px;}
.ls15{letter-spacing:-0.720000px;}
.ls1a{letter-spacing:-0.507000px;}
.lsc{letter-spacing:-0.486600px;}
.ls11{letter-spacing:-0.466800px;}
.ls5{letter-spacing:-0.463800px;}
.ls7{letter-spacing:-0.423600px;}
.ls6{letter-spacing:-0.193200px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.020160px;}
.ls4{letter-spacing:0.363000px;}
.ls12{letter-spacing:0.423360px;}
.lsb{letter-spacing:0.466800px;}
.lsa{letter-spacing:0.507000px;}
.ls0{letter-spacing:0.720000px;}
.lse{letter-spacing:1.440000px;}
.lsf{letter-spacing:2.160000px;}
.ls19{letter-spacing:16.306560px;}
.ls16{letter-spacing:46.558560px;}
.ls1{letter-spacing:92.880000px;}
.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;}
}
.wsa{word-spacing:-16.560000px;}
.ws9{word-spacing:-15.627000px;}
.wsb{word-spacing:-15.586800px;}
.ws0{word-spacing:-15.333240px;}
.wsc{word-spacing:-15.140160px;}
.ws8{word-spacing:-15.120000px;}
.ws2{word-spacing:-14.970240px;}
.ws12{word-spacing:-14.653200px;}
.wsd{word-spacing:-14.633400px;}
.ws17{word-spacing:-14.613000px;}
.ws1{word-spacing:-14.506440px;}
.ws13{word-spacing:-14.184000px;}
.ws15{word-spacing:-14.166000px;}
.ws7{word-spacing:-14.148000px;}
.ws11{word-spacing:-13.698000px;}
.ws6{word-spacing:-13.680000px;}
.ws16{word-spacing:-13.662000px;}
.ws3{word-spacing:-13.475280px;}
.ws4{word-spacing:-13.244880px;}
.ws14{word-spacing:-13.212000px;}
.ws10{word-spacing:-12.240000px;}
.ws5{word-spacing:-10.440000px;}
.wsf{word-spacing:-9.720000px;}
.wse{word-spacing:0.000000px;}
._11{margin-left:-5.054400px;}
._1{margin-left:-4.017120px;}
._3{margin-left:-2.782320px;}
._2{margin-left:-1.705200px;}
._0{width:1.192320px;}
._4{width:2.354880px;}
._a{width:4.334880px;}
._b{width:5.642880px;}
._7{width:7.614960px;}
._8{width:8.796720px;}
._5{width:9.801360px;}
._6{width:11.436720px;}
._9{width:12.857040px;}
._c{width:14.023920px;}
._12{width:16.411440px;}
._d{width:17.490480px;}
._e{width:18.636720px;}
._f{width:20.399280px;}
._10{width:21.497040px;}
._14{width:26.870640px;}
._13{width:27.907680px;}
._15{width:28.952640px;}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(0,175,239);}
.fc2{color:rgb(0,174,238);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(125,125,125);}
.fs5{font-size:30.240000px;}
.fs4{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs1{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y5{bottom:4.320000px;}
.y86{bottom:4.350000px;}
.y9f{bottom:4.680000px;}
.y3{bottom:6.120000px;}
.y2{bottom:27.000000px;}
.y4{bottom:71.676000px;}
.y7{bottom:73.476000px;}
.y51{bottom:90.396000px;}
.y2b{bottom:105.516000px;}
.y50{bottom:116.316000px;}
.yaf{bottom:124.992000px;}
.ye8{bottom:130.392000px;}
.y4f{bottom:142.272000px;}
.y2a{bottom:148.752000px;}
.yae{bottom:150.915000px;}
.y73{bottom:151.995000px;}
.ye7{bottom:156.315000px;}
.yc8{bottom:161.715000px;}
.y4e{bottom:168.195000px;}
.y72{bottom:169.995000px;}
.yad{bottom:176.475000px;}
.y93{bottom:179.715000px;}
.ye6{bottom:182.235000px;}
.y29{bottom:183.315000px;}
.yc7{bottom:187.275000px;}
.ycd{bottom:187.635000px;}
.y71{bottom:187.995000px;}
.y4d{bottom:193.755000px;}
.yac{bottom:202.395000px;}
.y92{bottom:205.275000px;}
.y70{bottom:205.995000px;}
.ye5{bottom:208.155000px;}
.y28{bottom:208.875000px;}
.yc6{bottom:213.195000px;}
.y4c{bottom:219.675000px;}
.yab{bottom:228.315000px;}
.y91{bottom:230.835000px;}
.ye4{bottom:234.075000px;}
.y27{bottom:234.795000px;}
.y6f{bottom:236.595000px;}
.yc5{bottom:239.115000px;}
.y4b{bottom:245.595000px;}
.yaa{bottom:254.265000px;}
.y90{bottom:257.145000px;}
.ye3{bottom:260.025000px;}
.y26{bottom:260.745000px;}
.yc4{bottom:265.065000px;}
.y4a{bottom:271.545000px;}
.y6e{bottom:279.825000px;}
.ya9{bottom:280.185000px;}
.y8f{bottom:283.065000px;}
.ye2{bottom:285.945000px;}
.y25{bottom:286.665000px;}
.yc3{bottom:290.985000px;}
.y49{bottom:297.465000px;}
.ya8{bottom:306.105000px;}
.y8e{bottom:308.985000px;}
.ye1{bottom:311.505000px;}
.y24{bottom:312.585000px;}
.y6d{bottom:314.385000px;}
.yc2{bottom:316.905000px;}
.y48{bottom:323.385000px;}
.ya7{bottom:332.025000px;}
.y8d{bottom:334.905000px;}
.ye0{bottom:337.425000px;}
.y23{bottom:338.505000px;}
.y6c{bottom:340.305000px;}
.yc1{bottom:342.825000px;}
.y47{bottom:349.305000px;}
.y8c{bottom:360.465000px;}
.ydf{bottom:363.345000px;}
.y22{bottom:364.425000px;}
.y6b{bottom:366.225000px;}
.yc0{bottom:368.385000px;}
.ycc{bottom:368.745000px;}
.y46{bottom:375.225000px;}
.yde{bottom:389.310000px;}
.y6a{bottom:391.830000px;}
.ybf{bottom:394.350000px;}
.ycb{bottom:394.710000px;}
.y45{bottom:400.830000px;}
.y8b{bottom:403.710000px;}
.y21{bottom:409.830000px;}
.ya6{bottom:410.190000px;}
.ydd{bottom:415.230000px;}
.y69{bottom:417.750000px;}
.ybe{bottom:420.270000px;}
.y8a{bottom:426.390000px;}
.y44{bottom:426.750000px;}
.y20{bottom:427.470000px;}
.ya5{bottom:435.750000px;}
.ydc{bottom:441.150000px;}
.y68{bottom:444.030000px;}
.y89{bottom:444.390000px;}
.y1f{bottom:444.750000px;}
.ybd{bottom:446.190000px;}
.ya4{bottom:461.670000px;}
.y88{bottom:462.390000px;}
.ydb{bottom:467.070000px;}
.y67{bottom:469.590000px;}
.y43{bottom:469.950000px;}
.y1e{bottom:470.670000px;}
.ybc{bottom:472.110000px;}
.y87{bottom:480.390000px;}
.ya3{bottom:487.590000px;}
.yda{bottom:492.990000px;}
.y66{bottom:495.510000px;}
.y1d{bottom:496.590000px;}
.ybb{bottom:498.030000px;}
.y85{bottom:498.390000px;}
.y42{bottom:504.540000px;}
.ya2{bottom:513.540000px;}
.yd9{bottom:518.580000px;}
.y65{bottom:521.460000px;}
.y1c{bottom:522.540000px;}
.yba{bottom:523.980000px;}
.y84{bottom:529.020000px;}
.y41{bottom:530.460000px;}
.ya1{bottom:539.460000px;}
.yd8{bottom:544.500000px;}
.y64{bottom:547.380000px;}
.y1b{bottom:548.100000px;}
.yb9{bottom:549.900000px;}
.y40{bottom:556.020000px;}
.y83{bottom:572.220000px;}
.y63{bottom:573.300000px;}
.y1a{bottom:574.020000px;}
.yb8{bottom:575.460000px;}
.yca{bottom:575.820000px;}
.y3f{bottom:581.940000px;}
.ya0{bottom:584.820000px;}
.yd7{bottom:589.860000px;}
.y82{bottom:594.900000px;}
.y62{bottom:599.220000px;}
.y19{bottom:599.940000px;}
.yb7{bottom:601.380000px;}
.yee{bottom:601.740000px;}
.y9e{bottom:607.500000px;}
.y3e{bottom:607.860000px;}
.y81{bottom:612.900000px;}
.y61{bottom:625.140000px;}
.y18{bottom:625.860000px;}
.yb6{bottom:627.330000px;}
.yed{bottom:627.690000px;}
.y80{bottom:630.930000px;}
.y3d{bottom:633.810000px;}
.y9d{bottom:643.890000px;}
.y7f{bottom:648.930000px;}
.y60{bottom:651.090000px;}
.y17{bottom:651.810000px;}
.yb5{bottom:653.250000px;}
.yec{bottom:653.610000px;}
.y3c{bottom:659.730000px;}
.y9c{bottom:661.890000px;}
.yc9{bottom:670.890000px;}
.y5f{bottom:676.650000px;}
.yd6{bottom:677.010000px;}
.yb4{bottom:679.170000px;}
.y7e{bottom:679.530000px;}
.y9b{bottom:679.890000px;}
.y3b{bottom:685.650000px;}
.y16{bottom:694.290000px;}
.y5e{bottom:702.570000px;}
.yb3{bottom:705.090000px;}
.y9a{bottom:710.130000px;}
.y3a{bottom:711.570000px;}
.y7d{bottom:722.730000px;}
.y15{bottom:724.530000px;}
.yd5{bottom:728.490000px;}
.yb2{bottom:731.010000px;}
.y39{bottom:737.490000px;}
.y5d{bottom:747.930000px;}
.y14{bottom:750.090000px;}
.y99{bottom:753.375000px;}
.yd4{bottom:754.455000px;}
.yb1{bottom:756.615000px;}
.y7c{bottom:756.975000px;}
.y38{bottom:763.095000px;}
.y13{bottom:776.055000px;}
.yd3{bottom:780.375000px;}
.y5c{bottom:782.895000px;}
.y37{bottom:789.015000px;}
.y98{bottom:794.055000px;}
.y12{bottom:801.975000px;}
.yd2{bottom:806.295000px;}
.y7b{bottom:808.455000px;}
.y5b{bottom:808.815000px;}
.y97{bottom:812.055000px;}
.y36{bottom:814.935000px;}
.y11{bottom:827.535000px;}
.y96{bottom:830.055000px;}
.yd1{bottom:832.215000px;}
.y7a{bottom:834.375000px;}
.y5a{bottom:834.735000px;}
.y35{bottom:840.855000px;}
.yb0{bottom:852.015000px;}
.y10{bottom:853.455000px;}
.yd0{bottom:858.135000px;}
.y79{bottom:860.295000px;}
.y59{bottom:860.655000px;}
.y34{bottom:866.775000px;}
.yf{bottom:879.405000px;}
.ycf{bottom:884.085000px;}
.y78{bottom:885.885000px;}
.y58{bottom:886.245000px;}
.yeb{bottom:886.605000px;}
.y33{bottom:892.725000px;}
.ye{bottom:898.845000px;}
.y95{bottom:903.885000px;}
.y77{bottom:911.805000px;}
.y57{bottom:912.165000px;}
.yea{bottom:912.525000px;}
.yd{bottom:914.685000px;}
.y32{bottom:918.645000px;}
.yce{bottom:929.085000px;}
.y76{bottom:937.725000px;}
.y56{bottom:938.085000px;}
.y94{bottom:938.445000px;}
.yc{bottom:940.965000px;}
.y31{bottom:944.205000px;}
.yb{bottom:961.845000px;}
.y75{bottom:963.645000px;}
.y55{bottom:964.005000px;}
.ye9{bottom:964.365000px;}
.y30{bottom:970.125000px;}
.y74{bottom:989.565000px;}
.ya{bottom:989.925000px;}
.y2f{bottom:996.045000px;}
.y54{bottom:1015.890000px;}
.y2e{bottom:1022.010000px;}
.y9{bottom:1029.570000px;}
.y53{bottom:1041.810000px;}
.y2d{bottom:1047.930000px;}
.y8{bottom:1063.050000px;}
.y52{bottom:1067.730000px;}
.y2c{bottom:1073.850000px;}
.y1{bottom:1096.530000px;}
.y6{bottom:1136.160000px;}
.hd{height:17.280000px;}
.he{height:17.316000px;}
.hf{height:17.640000px;}
.h3{height:18.000000px;}
.h9{height:29.678906px;}
.h8{height:38.158594px;}
.h1{height:41.796000px;}
.h4{height:48.667500px;}
.hc{height:53.067656px;}
.h2{height:53.237812px;}
.h5{height:59.357813px;}
.hb{height:59.758594px;}
.ha{height:60.952500px;}
.h10{height:62.163910px;}
.h7{height:72.326250px;}
.h6{height:78.367500px;}
.h0{height:1188.000000px;}
.w5{width:74.196000px;}
.w11{width:75.636000px;}
.w15{width:82.836000px;}
.we{width:83.196000px;}
.w12{width:90.396000px;}
.w9{width:94.716000px;}
.w10{width:99.756000px;}
.w14{width:104.796000px;}
.wd{width:109.476000px;}
.wf{width:110.196000px;}
.w8{width:128.556000px;}
.wa{width:132.192000px;}
.w13{width:137.592000px;}
.wb{width:142.956000px;}
.wc{width:150.195000px;}
.w6{width:158.475000px;}
.w4{width:197.715000px;}
.w7{width:254.595000px;}
.w1{width:339.270000px;}
.w2{width:423.540000px;}
.w3{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2{left:1.440000px;}
.x6{left:7.920000px;}
.x3{left:81.035986px;}
.x1{left:108.036000px;}
.x16{left:135.035986px;}
.x4{left:156.674986px;}
.x17{left:162.074986px;}
.xa{left:237.675000px;}
.xe{left:259.305000px;}
.x5{left:293.504986px;}
.x7{left:306.825000px;}
.x13{left:329.145000px;}
.xb{left:333.105000px;}
.xf{left:369.510000px;}
.x8{left:381.750000px;}
.xc{left:428.550000px;}
.x10{left:453.420000px;}
.x14{left:467.460000px;}
.x9{left:541.290000px;}
.xd{left:561.450000px;}
.x11{left:564.330000px;}
.x15{left:572.970000px;}
.x12{left:664.815000px;}
@media print{
.v4{vertical-align:-67.840000pt;}
.v8{vertical-align:-66.560000pt;}
.v7{vertical-align:-64.000000pt;}
.v3{vertical-align:-62.720000pt;}
.v5{vertical-align:-61.440000pt;}
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:19.200000pt;}
.v1{vertical-align:26.880000pt;}
.lsd{letter-spacing:-2.560000pt;}
.ls14{letter-spacing:-1.696000pt;}
.ls18{letter-spacing:-1.296000pt;}
.ls8{letter-spacing:-1.280000pt;}
.ls10{letter-spacing:-1.264000pt;}
.ls9{letter-spacing:-0.864000pt;}
.ls17{letter-spacing:-0.848000pt;}
.ls13{letter-spacing:-0.832000pt;}
.ls15{letter-spacing:-0.640000pt;}
.ls1a{letter-spacing:-0.450667pt;}
.lsc{letter-spacing:-0.432533pt;}
.ls11{letter-spacing:-0.414933pt;}
.ls5{letter-spacing:-0.412267pt;}
.ls7{letter-spacing:-0.376533pt;}
.ls6{letter-spacing:-0.171733pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.017920pt;}
.ls4{letter-spacing:0.322667pt;}
.ls12{letter-spacing:0.376320pt;}
.lsb{letter-spacing:0.414933pt;}
.lsa{letter-spacing:0.450667pt;}
.ls0{letter-spacing:0.640000pt;}
.lse{letter-spacing:1.280000pt;}
.lsf{letter-spacing:1.920000pt;}
.ls19{letter-spacing:14.494720pt;}
.ls16{letter-spacing:41.385387pt;}
.ls1{letter-spacing:82.560000pt;}
.wsa{word-spacing:-14.720000pt;}
.ws9{word-spacing:-13.890667pt;}
.wsb{word-spacing:-13.854933pt;}
.ws0{word-spacing:-13.629547pt;}
.wsc{word-spacing:-13.457920pt;}
.ws8{word-spacing:-13.440000pt;}
.ws2{word-spacing:-13.306880pt;}
.ws12{word-spacing:-13.025067pt;}
.wsd{word-spacing:-13.007467pt;}
.ws17{word-spacing:-12.989333pt;}
.ws1{word-spacing:-12.894613pt;}
.ws13{word-spacing:-12.608000pt;}
.ws15{word-spacing:-12.592000pt;}
.ws7{word-spacing:-12.576000pt;}
.ws11{word-spacing:-12.176000pt;}
.ws6{word-spacing:-12.160000pt;}
.ws16{word-spacing:-12.144000pt;}
.ws3{word-spacing:-11.978027pt;}
.ws4{word-spacing:-11.773227pt;}
.ws14{word-spacing:-11.744000pt;}
.ws10{word-spacing:-10.880000pt;}
.ws5{word-spacing:-9.280000pt;}
.wsf{word-spacing:-8.640000pt;}
.wse{word-spacing:0.000000pt;}
._11{margin-left:-4.492800pt;}
._1{margin-left:-3.570773pt;}
._3{margin-left:-2.473173pt;}
._2{margin-left:-1.515733pt;}
._0{width:1.059840pt;}
._4{width:2.093227pt;}
._a{width:3.853227pt;}
._b{width:5.015893pt;}
._7{width:6.768853pt;}
._8{width:7.819307pt;}
._5{width:8.712320pt;}
._6{width:10.165973pt;}
._9{width:11.428480pt;}
._c{width:12.465707pt;}
._12{width:14.587947pt;}
._d{width:15.547093pt;}
._e{width:16.565973pt;}
._f{width:18.132693pt;}
._10{width:19.108480pt;}
._14{width:23.885013pt;}
._13{width:24.806827pt;}
._15{width:25.735680pt;}
.fs5{font-size:26.880000pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs1{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:3.840000pt;}
.y86{bottom:3.866667pt;}
.y9f{bottom:4.160000pt;}
.y3{bottom:5.440000pt;}
.y2{bottom:24.000000pt;}
.y4{bottom:63.712000pt;}
.y7{bottom:65.312000pt;}
.y51{bottom:80.352000pt;}
.y2b{bottom:93.792000pt;}
.y50{bottom:103.392000pt;}
.yaf{bottom:111.104000pt;}
.ye8{bottom:115.904000pt;}
.y4f{bottom:126.464000pt;}
.y2a{bottom:132.224000pt;}
.yae{bottom:134.146667pt;}
.y73{bottom:135.106667pt;}
.ye7{bottom:138.946667pt;}
.yc8{bottom:143.746667pt;}
.y4e{bottom:149.506667pt;}
.y72{bottom:151.106667pt;}
.yad{bottom:156.866667pt;}
.y93{bottom:159.746667pt;}
.ye6{bottom:161.986667pt;}
.y29{bottom:162.946667pt;}
.yc7{bottom:166.466667pt;}
.ycd{bottom:166.786667pt;}
.y71{bottom:167.106667pt;}
.y4d{bottom:172.226667pt;}
.yac{bottom:179.906667pt;}
.y92{bottom:182.466667pt;}
.y70{bottom:183.106667pt;}
.ye5{bottom:185.026667pt;}
.y28{bottom:185.666667pt;}
.yc6{bottom:189.506667pt;}
.y4c{bottom:195.266667pt;}
.yab{bottom:202.946667pt;}
.y91{bottom:205.186667pt;}
.ye4{bottom:208.066667pt;}
.y27{bottom:208.706667pt;}
.y6f{bottom:210.306667pt;}
.yc5{bottom:212.546667pt;}
.y4b{bottom:218.306667pt;}
.yaa{bottom:226.013333pt;}
.y90{bottom:228.573333pt;}
.ye3{bottom:231.133333pt;}
.y26{bottom:231.773333pt;}
.yc4{bottom:235.613333pt;}
.y4a{bottom:241.373333pt;}
.y6e{bottom:248.733333pt;}
.ya9{bottom:249.053333pt;}
.y8f{bottom:251.613333pt;}
.ye2{bottom:254.173333pt;}
.y25{bottom:254.813333pt;}
.yc3{bottom:258.653333pt;}
.y49{bottom:264.413333pt;}
.ya8{bottom:272.093333pt;}
.y8e{bottom:274.653333pt;}
.ye1{bottom:276.893333pt;}
.y24{bottom:277.853333pt;}
.y6d{bottom:279.453333pt;}
.yc2{bottom:281.693333pt;}
.y48{bottom:287.453333pt;}
.ya7{bottom:295.133333pt;}
.y8d{bottom:297.693333pt;}
.ye0{bottom:299.933333pt;}
.y23{bottom:300.893333pt;}
.y6c{bottom:302.493333pt;}
.yc1{bottom:304.733333pt;}
.y47{bottom:310.493333pt;}
.y8c{bottom:320.413333pt;}
.ydf{bottom:322.973333pt;}
.y22{bottom:323.933333pt;}
.y6b{bottom:325.533333pt;}
.yc0{bottom:327.453333pt;}
.ycc{bottom:327.773333pt;}
.y46{bottom:333.533333pt;}
.yde{bottom:346.053333pt;}
.y6a{bottom:348.293333pt;}
.ybf{bottom:350.533333pt;}
.ycb{bottom:350.853333pt;}
.y45{bottom:356.293333pt;}
.y8b{bottom:358.853333pt;}
.y21{bottom:364.293333pt;}
.ya6{bottom:364.613333pt;}
.ydd{bottom:369.093333pt;}
.y69{bottom:371.333333pt;}
.ybe{bottom:373.573333pt;}
.y8a{bottom:379.013333pt;}
.y44{bottom:379.333333pt;}
.y20{bottom:379.973333pt;}
.ya5{bottom:387.333333pt;}
.ydc{bottom:392.133333pt;}
.y68{bottom:394.693333pt;}
.y89{bottom:395.013333pt;}
.y1f{bottom:395.333333pt;}
.ybd{bottom:396.613333pt;}
.ya4{bottom:410.373333pt;}
.y88{bottom:411.013333pt;}
.ydb{bottom:415.173333pt;}
.y67{bottom:417.413333pt;}
.y43{bottom:417.733333pt;}
.y1e{bottom:418.373333pt;}
.ybc{bottom:419.653333pt;}
.y87{bottom:427.013333pt;}
.ya3{bottom:433.413333pt;}
.yda{bottom:438.213333pt;}
.y66{bottom:440.453333pt;}
.y1d{bottom:441.413333pt;}
.ybb{bottom:442.693333pt;}
.y85{bottom:443.013333pt;}
.y42{bottom:448.480000pt;}
.ya2{bottom:456.480000pt;}
.yd9{bottom:460.960000pt;}
.y65{bottom:463.520000pt;}
.y1c{bottom:464.480000pt;}
.yba{bottom:465.760000pt;}
.y84{bottom:470.240000pt;}
.y41{bottom:471.520000pt;}
.ya1{bottom:479.520000pt;}
.yd8{bottom:484.000000pt;}
.y64{bottom:486.560000pt;}
.y1b{bottom:487.200000pt;}
.yb9{bottom:488.800000pt;}
.y40{bottom:494.240000pt;}
.y83{bottom:508.640000pt;}
.y63{bottom:509.600000pt;}
.y1a{bottom:510.240000pt;}
.yb8{bottom:511.520000pt;}
.yca{bottom:511.840000pt;}
.y3f{bottom:517.280000pt;}
.ya0{bottom:519.840000pt;}
.yd7{bottom:524.320000pt;}
.y82{bottom:528.800000pt;}
.y62{bottom:532.640000pt;}
.y19{bottom:533.280000pt;}
.yb7{bottom:534.560000pt;}
.yee{bottom:534.880000pt;}
.y9e{bottom:540.000000pt;}
.y3e{bottom:540.320000pt;}
.y81{bottom:544.800000pt;}
.y61{bottom:555.680000pt;}
.y18{bottom:556.320000pt;}
.yb6{bottom:557.626667pt;}
.yed{bottom:557.946667pt;}
.y80{bottom:560.826667pt;}
.y3d{bottom:563.386667pt;}
.y9d{bottom:572.346667pt;}
.y7f{bottom:576.826667pt;}
.y60{bottom:578.746667pt;}
.y17{bottom:579.386667pt;}
.yb5{bottom:580.666667pt;}
.yec{bottom:580.986667pt;}
.y3c{bottom:586.426667pt;}
.y9c{bottom:588.346667pt;}
.yc9{bottom:596.346667pt;}
.y5f{bottom:601.466667pt;}
.yd6{bottom:601.786667pt;}
.yb4{bottom:603.706667pt;}
.y7e{bottom:604.026667pt;}
.y9b{bottom:604.346667pt;}
.y3b{bottom:609.466667pt;}
.y16{bottom:617.146667pt;}
.y5e{bottom:624.506667pt;}
.yb3{bottom:626.746667pt;}
.y9a{bottom:631.226667pt;}
.y3a{bottom:632.506667pt;}
.y7d{bottom:642.426667pt;}
.y15{bottom:644.026667pt;}
.yd5{bottom:647.546667pt;}
.yb2{bottom:649.786667pt;}
.y39{bottom:655.546667pt;}
.y5d{bottom:664.826667pt;}
.y14{bottom:666.746667pt;}
.y99{bottom:669.666667pt;}
.yd4{bottom:670.626667pt;}
.yb1{bottom:672.546667pt;}
.y7c{bottom:672.866667pt;}
.y38{bottom:678.306667pt;}
.y13{bottom:689.826667pt;}
.yd3{bottom:693.666667pt;}
.y5c{bottom:695.906667pt;}
.y37{bottom:701.346667pt;}
.y98{bottom:705.826667pt;}
.y12{bottom:712.866667pt;}
.yd2{bottom:716.706667pt;}
.y7b{bottom:718.626667pt;}
.y5b{bottom:718.946667pt;}
.y97{bottom:721.826667pt;}
.y36{bottom:724.386667pt;}
.y11{bottom:735.586667pt;}
.y96{bottom:737.826667pt;}
.yd1{bottom:739.746667pt;}
.y7a{bottom:741.666667pt;}
.y5a{bottom:741.986667pt;}
.y35{bottom:747.426667pt;}
.yb0{bottom:757.346667pt;}
.y10{bottom:758.626667pt;}
.yd0{bottom:762.786667pt;}
.y79{bottom:764.706667pt;}
.y59{bottom:765.026667pt;}
.y34{bottom:770.466667pt;}
.yf{bottom:781.693333pt;}
.ycf{bottom:785.853333pt;}
.y78{bottom:787.453333pt;}
.y58{bottom:787.773333pt;}
.yeb{bottom:788.093333pt;}
.y33{bottom:793.533333pt;}
.ye{bottom:798.973333pt;}
.y95{bottom:803.453333pt;}
.y77{bottom:810.493333pt;}
.y57{bottom:810.813333pt;}
.yea{bottom:811.133333pt;}
.yd{bottom:813.053333pt;}
.y32{bottom:816.573333pt;}
.yce{bottom:825.853333pt;}
.y76{bottom:833.533333pt;}
.y56{bottom:833.853333pt;}
.y94{bottom:834.173333pt;}
.yc{bottom:836.413333pt;}
.y31{bottom:839.293333pt;}
.yb{bottom:854.973333pt;}
.y75{bottom:856.573333pt;}
.y55{bottom:856.893333pt;}
.ye9{bottom:857.213333pt;}
.y30{bottom:862.333333pt;}
.y74{bottom:879.613333pt;}
.ya{bottom:879.933333pt;}
.y2f{bottom:885.373333pt;}
.y54{bottom:903.013333pt;}
.y2e{bottom:908.453333pt;}
.y9{bottom:915.173333pt;}
.y53{bottom:926.053333pt;}
.y2d{bottom:931.493333pt;}
.y8{bottom:944.933333pt;}
.y52{bottom:949.093333pt;}
.y2c{bottom:954.533333pt;}
.y1{bottom:974.693333pt;}
.y6{bottom:1009.920000pt;}
.hd{height:15.360000pt;}
.he{height:15.392000pt;}
.hf{height:15.680000pt;}
.h3{height:16.000000pt;}
.h9{height:26.381250pt;}
.h8{height:33.918750pt;}
.h1{height:37.152000pt;}
.h4{height:43.260000pt;}
.hc{height:47.171250pt;}
.h2{height:47.322500pt;}
.h5{height:52.762500pt;}
.hb{height:53.118750pt;}
.ha{height:54.180000pt;}
.h10{height:55.256809pt;}
.h7{height:64.290000pt;}
.h6{height:69.660000pt;}
.h0{height:1056.000000pt;}
.w5{width:65.952000pt;}
.w11{width:67.232000pt;}
.w15{width:73.632000pt;}
.we{width:73.952000pt;}
.w12{width:80.352000pt;}
.w9{width:84.192000pt;}
.w10{width:88.672000pt;}
.w14{width:93.152000pt;}
.wd{width:97.312000pt;}
.wf{width:97.952000pt;}
.w8{width:114.272000pt;}
.wa{width:117.504000pt;}
.w13{width:122.304000pt;}
.wb{width:127.072000pt;}
.wc{width:133.506667pt;}
.w6{width:140.866667pt;}
.w4{width:175.746667pt;}
.w7{width:226.306667pt;}
.w1{width:301.573333pt;}
.w2{width:376.480000pt;}
.w3{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2{left:1.280000pt;}
.x6{left:7.040000pt;}
.x3{left:72.031988pt;}
.x1{left:96.032000pt;}
.x16{left:120.031988pt;}
.x4{left:139.266655pt;}
.x17{left:144.066655pt;}
.xa{left:211.266667pt;}
.xe{left:230.493333pt;}
.x5{left:260.893321pt;}
.x7{left:272.733333pt;}
.x13{left:292.573333pt;}
.xb{left:296.093333pt;}
.xf{left:328.453333pt;}
.x8{left:339.333333pt;}
.xc{left:380.933333pt;}
.x10{left:403.040000pt;}
.x14{left:415.520000pt;}
.x9{left:481.146667pt;}
.xd{left:499.066667pt;}
.x11{left:501.626667pt;}
.x15{left:509.306667pt;}
.x12{left:590.946667pt;}
}




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