
    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_bc33dbb8ffd27026ae5c2dd0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.986816;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_09fa9e28e0fd1900b8bc05d1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.984863;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_91f7d8ea3e6c9e4ea44e6667.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.934000;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_0dceac6f2d064897498c1079.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.934000;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_a8b1a04be33bc0735edc4b3a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.984863;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_518917d064c44b4d69e1a950.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.682617;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;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.072000px;}
.ls4{letter-spacing:0.216000px;}
.ls5{letter-spacing:0.360000px;}
.ls0{letter-spacing:2.400000px;}
.ls2{letter-spacing:9.600000px;}
.ls3{letter-spacing:1529.673600px;}
.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;}
}
.ws6{word-spacing:-41.400000px;}
.ws7f{word-spacing:-23.184000px;}
.ws6d{word-spacing:-20.088000px;}
.ws6b{word-spacing:-19.944000px;}
.ws80{word-spacing:-19.872000px;}
.ws6c{word-spacing:-19.800000px;}
.ws7{word-spacing:-19.728000px;}
.ws6a{word-spacing:-14.256000px;}
.ws4f{word-spacing:-7.056000px;}
.ws6f{word-spacing:-6.480000px;}
.ws1d{word-spacing:-5.976000px;}
.ws29{word-spacing:-5.472000px;}
.ws27{word-spacing:-5.328000px;}
.ws18{word-spacing:-5.256000px;}
.ws30{word-spacing:-5.112000px;}
.ws4c{word-spacing:-4.824000px;}
.ws5e{word-spacing:-3.888000px;}
.ws70{word-spacing:-3.600000px;}
.ws81{word-spacing:-2.880000px;}
.ws21{word-spacing:-2.016000px;}
.ws5b{word-spacing:-1.872000px;}
.ws68{word-spacing:-1.728000px;}
.ws65{word-spacing:-1.368000px;}
.ws24{word-spacing:-1.224000px;}
.ws28{word-spacing:-1.080000px;}
.ws2e{word-spacing:-1.008000px;}
.ws55{word-spacing:-0.864000px;}
.ws63{word-spacing:-0.792000px;}
.ws1c{word-spacing:-0.648000px;}
.ws53{word-spacing:-0.360000px;}
.ws67{word-spacing:-0.288000px;}
.ws6e{word-spacing:-0.216000px;}
.ws0{word-spacing:0.000000px;}
.ws64{word-spacing:0.072000px;}
.wsd{word-spacing:0.432000px;}
.ws50{word-spacing:0.504000px;}
.ws1b{word-spacing:1.080000px;}
.ws9{word-spacing:1.296000px;}
.ws20{word-spacing:1.368000px;}
.ws60{word-spacing:1.800000px;}
.ws61{word-spacing:2.448000px;}
.ws38{word-spacing:2.808000px;}
.ws58{word-spacing:3.312000px;}
.ws2{word-spacing:3.384000px;}
.ws23{word-spacing:3.600000px;}
.ws74{word-spacing:3.672000px;}
.ws1e{word-spacing:3.744000px;}
.wsa{word-spacing:3.816000px;}
.ws26{word-spacing:3.960000px;}
.ws1f{word-spacing:4.104000px;}
.ws82{word-spacing:4.248000px;}
.ws77{word-spacing:4.680000px;}
.ws40{word-spacing:4.752000px;}
.ws1a{word-spacing:4.968000px;}
.ws22{word-spacing:5.112000px;}
.ws17{word-spacing:5.328000px;}
.ws3f{word-spacing:5.688000px;}
.ws69{word-spacing:6.336000px;}
.ws2f{word-spacing:6.408000px;}
.ws33{word-spacing:6.768000px;}
.ws7e{word-spacing:7.200000px;}
.ws12{word-spacing:7.344000px;}
.wsf{word-spacing:7.488000px;}
.ws11{word-spacing:7.920000px;}
.ws5a{word-spacing:7.992000px;}
.ws16{word-spacing:8.424000px;}
.ws19{word-spacing:8.640000px;}
.ws42{word-spacing:9.072000px;}
.ws5c{word-spacing:9.360000px;}
.ws62{word-spacing:9.576000px;}
.ws5{word-spacing:9.936000px;}
.ws3{word-spacing:10.008000px;}
.ws4{word-spacing:10.368000px;}
.ws32{word-spacing:10.584000px;}
.ws7a{word-spacing:10.872000px;}
.ws79{word-spacing:10.944000px;}
.ws37{word-spacing:11.088000px;}
.ws3e{word-spacing:11.664000px;}
.ws39{word-spacing:12.024000px;}
.ws34{word-spacing:12.312000px;}
.ws1{word-spacing:12.600000px;}
.ws7c{word-spacing:12.672000px;}
.ws7b{word-spacing:12.744000px;}
.ws2a{word-spacing:12.960000px;}
.ws46{word-spacing:13.104000px;}
.ws49{word-spacing:13.536000px;}
.ws25{word-spacing:13.824000px;}
.ws52{word-spacing:14.112000px;}
.ws4a{word-spacing:14.328000px;}
.ws59{word-spacing:14.616000px;}
.ws5f{word-spacing:15.336000px;}
.ws15{word-spacing:15.480000px;}
.ws5d{word-spacing:16.200000px;}
.ws45{word-spacing:16.272000px;}
.ws7d{word-spacing:17.424000px;}
.wsc{word-spacing:17.496000px;}
.wse{word-spacing:18.576000px;}
.ws8{word-spacing:18.864000px;}
.ws2c{word-spacing:18.936000px;}
.ws2b{word-spacing:19.080000px;}
.ws73{word-spacing:19.368000px;}
.ws14{word-spacing:19.512000px;}
.ws48{word-spacing:20.952000px;}
.ws4e{word-spacing:21.528000px;}
.ws47{word-spacing:22.896000px;}
.ws3c{word-spacing:24.048000px;}
.ws78{word-spacing:24.840000px;}
.ws4b{word-spacing:24.912000px;}
.ws35{word-spacing:26.352000px;}
.ws2d{word-spacing:28.368000px;}
.ws36{word-spacing:29.376000px;}
.ws3a{word-spacing:33.912000px;}
.ws10{word-spacing:33.984000px;}
.ws76{word-spacing:34.344000px;}
.wsb{word-spacing:35.856000px;}
.ws3b{word-spacing:36.000000px;}
.ws57{word-spacing:36.144000px;}
.ws66{word-spacing:37.368000px;}
.ws44{word-spacing:37.440000px;}
.ws72{word-spacing:42.552000px;}
.ws71{word-spacing:42.840000px;}
.ws31{word-spacing:44.208000px;}
.ws3d{word-spacing:44.856000px;}
.ws51{word-spacing:46.656000px;}
.ws13{word-spacing:47.808000px;}
.ws54{word-spacing:50.328000px;}
.ws75{word-spacing:50.688000px;}
.ws56{word-spacing:52.992000px;}
.ws43{word-spacing:54.720000px;}
.ws41{word-spacing:61.056000px;}
.ws4d{word-spacing:65.016000px;}
._12{margin-left:-2101.421400px;}
._2{margin-left:-10.324800px;}
._4{margin-left:-9.014400px;}
._7{margin-left:-7.104000px;}
._a{margin-left:-6.021600px;}
._5{margin-left:-4.586400px;}
._9{margin-left:-3.542400px;}
._0{margin-left:-2.160000px;}
._6{margin-left:-1.137600px;}
._3{width:2.030400px;}
._1{width:3.441600px;}
._b{width:4.845600px;}
._11{width:7.088400px;}
._e{width:9.129600px;}
._8{width:10.324800px;}
._c{width:11.577600px;}
._d{width:12.614400px;}
._10{width:24.199200px;}
._f{width:25.449600px;}
.fc2{color:rgb(2,80,126);}
.fc1{color:rgb(111,198,41);}
.fc3{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs1{font-size:72.000000px;}
.fs3{font-size:84.000000px;}
.fs2{font-size:96.000000px;}
.fs5{font-size:102.000000px;}
.fs0{font-size:144.000000px;}
.fs4{font-size:150.000000px;}
.y0{bottom:0.000000px;}
.yc{bottom:35.393850px;}
.y6a{bottom:63.955350px;}
.yb5{bottom:70.497600px;}
.y69{bottom:85.555350px;}
.yb4{bottom:92.097600px;}
.y68{bottom:107.155350px;}
.yb3{bottom:113.697600px;}
.y67{bottom:128.755350px;}
.y66{bottom:150.355500px;}
.yb2{bottom:152.305500px;}
.y7b{bottom:158.080500px;}
.y65{bottom:171.955500px;}
.y7a{bottom:179.679000px;}
.y4d{bottom:191.968500px;}
.y64{bottom:193.555500px;}
.yb{bottom:199.311000px;}
.y2c{bottom:199.345500px;}
.y79{bottom:201.279000px;}
.y4c{bottom:213.568500px;}
.y63{bottom:215.155500px;}
.y2b{bottom:220.945500px;}
.y78{bottom:222.880500px;}
.y90{bottom:233.580000px;}
.y4b{bottom:235.168500px;}
.y62{bottom:236.755500px;}
.yb1{bottom:246.351000px;}
.y8f{bottom:255.180000px;}
.y2a{bottom:255.301500px;}
.y61{bottom:258.355500px;}
.yba{bottom:262.933500px;}
.yb0{bottom:267.951000px;}
.y4a{bottom:269.524500px;}
.y8e{bottom:276.780000px;}
.y29{bottom:276.901500px;}
.y60{bottom:279.955500px;}
.ya{bottom:279.972000px;}
.yb9{bottom:284.533500px;}
.yaf{bottom:289.551000px;}
.y49{bottom:291.124500px;}
.y8d{bottom:298.380000px;}
.y5f{bottom:301.555500px;}
.y28{bottom:311.257500px;}
.y5e{bottom:323.155500px;}
.yae{bottom:323.907000px;}
.y48{bottom:325.479000px;}
.y9{bottom:328.201500px;}
.y8c{bottom:332.736000px;}
.y27{bottom:332.857500px;}
.yad{bottom:345.507000px;}
.y47{bottom:347.080500px;}
.y8{bottom:349.801500px;}
.y8b{bottom:354.336000px;}
.yac{bottom:367.107000px;}
.y26{bottom:367.213500px;}
.y6c{bottom:368.514000px;}
.y7{bottom:371.401500px;}
.y46{bottom:381.435000px;}
.y25{bottom:388.813500px;}
.y6{bottom:393.001500px;}
.yab{bottom:401.463000px;}
.y45{bottom:403.035000px;}
.y5{bottom:414.601500px;}
.yaa{bottom:423.063000px;}
.y24{bottom:423.169500px;}
.yb8{bottom:429.820500px;}
.y4{bottom:436.201500px;}
.y44{bottom:437.391000px;}
.ya9{bottom:444.663000px;}
.y23{bottom:444.768000px;}
.y8a{bottom:446.329500px;}
.yb7{bottom:455.671500px;}
.y43{bottom:458.991000px;}
.y22{bottom:466.368000px;}
.ya8{bottom:479.019000px;}
.y3{bottom:484.690500px;}
.y21{bottom:487.968000px;}
.y42{bottom:493.347000px;}
.yb6{bottom:494.280000px;}
.ya7{bottom:500.617500px;}
.y5d{bottom:502.290000px;}
.y20{bottom:509.568000px;}
.y41{bottom:514.947000px;}
.y89{bottom:518.137500px;}
.ya6{bottom:522.219000px;}
.y5c{bottom:523.890000px;}
.y2{bottom:527.890500px;}
.y40{bottom:536.547000px;}
.y88{bottom:539.737500px;}
.ya5{bottom:543.817500px;}
.y5b{bottom:545.491500px;}
.y3f{bottom:558.147000px;}
.y2d{bottom:559.470000px;}
.y5a{bottom:567.090000px;}
.y1{bottom:571.090500px;}
.ya4{bottom:578.173500px;}
.y59{bottom:588.690000px;}
.y3e{bottom:592.503000px;}
.ya3{bottom:599.773500px;}
.y58{bottom:610.290000px;}
.y3d{bottom:614.103000px;}
.ya2{bottom:621.375000px;}
.y87{bottom:623.599500px;}
.y57{bottom:631.890000px;}
.y3c{bottom:635.703000px;}
.y56{bottom:653.490000px;}
.ya1{bottom:655.729500px;}
.y3b{bottom:670.059000px;}
.y1f{bottom:673.461000px;}
.y55{bottom:675.090000px;}
.ya0{bottom:677.329500px;}
.y3a{bottom:691.659000px;}
.y1e{bottom:695.061000px;}
.y54{bottom:696.690000px;}
.y86{bottom:710.629500px;}
.y9f{bottom:711.685500px;}
.y1d{bottom:716.661000px;}
.y53{bottom:718.291500px;}
.y39{bottom:732.384000px;}
.y9e{bottom:733.285500px;}
.y1c{bottom:738.261000px;}
.y52{bottom:739.890000px;}
.y9d{bottom:754.885500px;}
.y1b{bottom:759.861000px;}
.y51{bottom:761.490000px;}
.y1a{bottom:781.461000px;}
.y85{bottom:782.437500px;}
.y50{bottom:783.090000px;}
.y9c{bottom:789.241500px;}
.y19{bottom:803.061000px;}
.y84{bottom:804.037500px;}
.y4f{bottom:804.690000px;}
.y9b{bottom:810.841500px;}
.y18{bottom:824.661000px;}
.y9a{bottom:832.441500px;}
.y38{bottom:833.164500px;}
.y77{bottom:834.936000px;}
.y6b{bottom:846.123000px;}
.y17{bottom:846.261000px;}
.y37{bottom:854.764500px;}
.y76{bottom:856.536000px;}
.y7d{bottom:864.151500px;}
.y99{bottom:866.797500px;}
.y16{bottom:867.861000px;}
.y36{bottom:876.364500px;}
.y75{bottom:878.136000px;}
.y7c{bottom:885.751500px;}
.y98{bottom:888.397500px;}
.y15{bottom:889.461000px;}
.y35{bottom:897.964500px;}
.y74{bottom:899.736000px;}
.y14{bottom:911.061000px;}
.y34{bottom:919.564500px;}
.y73{bottom:921.336000px;}
.y97{bottom:922.753500px;}
.y13{bottom:932.661000px;}
.y96{bottom:944.353500px;}
.y33{bottom:953.920500px;}
.y12{bottom:954.261000px;}
.y72{bottom:955.692000px;}
.y83{bottom:956.046000px;}
.y95{bottom:965.953500px;}
.y32{bottom:975.520500px;}
.y11{bottom:975.861000px;}
.y71{bottom:977.292000px;}
.y82{bottom:977.646000px;}
.y31{bottom:997.120500px;}
.y10{bottom:997.461000px;}
.y70{bottom:998.892000px;}
.y81{bottom:999.246000px;}
.y94{bottom:1000.309500px;}
.y30{bottom:1018.720500px;}
.yf{bottom:1019.061000px;}
.y6f{bottom:1020.492000px;}
.y80{bottom:1020.846000px;}
.y93{bottom:1021.909500px;}
.y2f{bottom:1040.320500px;}
.y6e{bottom:1042.092000px;}
.y7f{bottom:1042.446000px;}
.y92{bottom:1043.509500px;}
.y2e{bottom:1081.399500px;}
.y4e{bottom:1082.463000px;}
.ye{bottom:1083.525000px;}
.y6d{bottom:1084.234500px;}
.y7e{bottom:1084.588500px;}
.y91{bottom:1097.344500px;}
.yd{bottom:1191.709500px;}
.h3{height:53.964844px;}
.h7{height:54.140625px;}
.h5{height:61.236000px;}
.ha{height:63.164062px;}
.h4{height:69.984000px;}
.hb{height:76.699219px;}
.h2{height:108.281250px;}
.h6{height:112.792969px;}
.h8{height:112.810969px;}
.h9{height:112.816969px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:59.527650px;}
.x4{left:63.779550px;}
.xb{left:77.328600px;}
.xe{left:90.779550px;}
.x9{left:97.795350px;}
.x10{left:106.299150px;}
.x1{left:111.883500px;}
.x2{left:113.122650px;}
.xd{left:182.835000px;}
.x11{left:186.378000px;}
.x5{left:268.728000px;}
.x3{left:309.585000px;}
.xa{left:469.134000px;}
.xf{left:518.740500px;}
.x8{left:565.608000px;}
.x6{left:623.287500px;}
.x7{left:788.851500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.064000pt;}
.ls4{letter-spacing:0.192000pt;}
.ls5{letter-spacing:0.320000pt;}
.ls0{letter-spacing:2.133333pt;}
.ls2{letter-spacing:8.533333pt;}
.ls3{letter-spacing:1359.709867pt;}
.ws6{word-spacing:-36.800000pt;}
.ws7f{word-spacing:-20.608000pt;}
.ws6d{word-spacing:-17.856000pt;}
.ws6b{word-spacing:-17.728000pt;}
.ws80{word-spacing:-17.664000pt;}
.ws6c{word-spacing:-17.600000pt;}
.ws7{word-spacing:-17.536000pt;}
.ws6a{word-spacing:-12.672000pt;}
.ws4f{word-spacing:-6.272000pt;}
.ws6f{word-spacing:-5.760000pt;}
.ws1d{word-spacing:-5.312000pt;}
.ws29{word-spacing:-4.864000pt;}
.ws27{word-spacing:-4.736000pt;}
.ws18{word-spacing:-4.672000pt;}
.ws30{word-spacing:-4.544000pt;}
.ws4c{word-spacing:-4.288000pt;}
.ws5e{word-spacing:-3.456000pt;}
.ws70{word-spacing:-3.200000pt;}
.ws81{word-spacing:-2.560000pt;}
.ws21{word-spacing:-1.792000pt;}
.ws5b{word-spacing:-1.664000pt;}
.ws68{word-spacing:-1.536000pt;}
.ws65{word-spacing:-1.216000pt;}
.ws24{word-spacing:-1.088000pt;}
.ws28{word-spacing:-0.960000pt;}
.ws2e{word-spacing:-0.896000pt;}
.ws55{word-spacing:-0.768000pt;}
.ws63{word-spacing:-0.704000pt;}
.ws1c{word-spacing:-0.576000pt;}
.ws53{word-spacing:-0.320000pt;}
.ws67{word-spacing:-0.256000pt;}
.ws6e{word-spacing:-0.192000pt;}
.ws0{word-spacing:0.000000pt;}
.ws64{word-spacing:0.064000pt;}
.wsd{word-spacing:0.384000pt;}
.ws50{word-spacing:0.448000pt;}
.ws1b{word-spacing:0.960000pt;}
.ws9{word-spacing:1.152000pt;}
.ws20{word-spacing:1.216000pt;}
.ws60{word-spacing:1.600000pt;}
.ws61{word-spacing:2.176000pt;}
.ws38{word-spacing:2.496000pt;}
.ws58{word-spacing:2.944000pt;}
.ws2{word-spacing:3.008000pt;}
.ws23{word-spacing:3.200000pt;}
.ws74{word-spacing:3.264000pt;}
.ws1e{word-spacing:3.328000pt;}
.wsa{word-spacing:3.392000pt;}
.ws26{word-spacing:3.520000pt;}
.ws1f{word-spacing:3.648000pt;}
.ws82{word-spacing:3.776000pt;}
.ws77{word-spacing:4.160000pt;}
.ws40{word-spacing:4.224000pt;}
.ws1a{word-spacing:4.416000pt;}
.ws22{word-spacing:4.544000pt;}
.ws17{word-spacing:4.736000pt;}
.ws3f{word-spacing:5.056000pt;}
.ws69{word-spacing:5.632000pt;}
.ws2f{word-spacing:5.696000pt;}
.ws33{word-spacing:6.016000pt;}
.ws7e{word-spacing:6.400000pt;}
.ws12{word-spacing:6.528000pt;}
.wsf{word-spacing:6.656000pt;}
.ws11{word-spacing:7.040000pt;}
.ws5a{word-spacing:7.104000pt;}
.ws16{word-spacing:7.488000pt;}
.ws19{word-spacing:7.680000pt;}
.ws42{word-spacing:8.064000pt;}
.ws5c{word-spacing:8.320000pt;}
.ws62{word-spacing:8.512000pt;}
.ws5{word-spacing:8.832000pt;}
.ws3{word-spacing:8.896000pt;}
.ws4{word-spacing:9.216000pt;}
.ws32{word-spacing:9.408000pt;}
.ws7a{word-spacing:9.664000pt;}
.ws79{word-spacing:9.728000pt;}
.ws37{word-spacing:9.856000pt;}
.ws3e{word-spacing:10.368000pt;}
.ws39{word-spacing:10.688000pt;}
.ws34{word-spacing:10.944000pt;}
.ws1{word-spacing:11.200000pt;}
.ws7c{word-spacing:11.264000pt;}
.ws7b{word-spacing:11.328000pt;}
.ws2a{word-spacing:11.520000pt;}
.ws46{word-spacing:11.648000pt;}
.ws49{word-spacing:12.032000pt;}
.ws25{word-spacing:12.288000pt;}
.ws52{word-spacing:12.544000pt;}
.ws4a{word-spacing:12.736000pt;}
.ws59{word-spacing:12.992000pt;}
.ws5f{word-spacing:13.632000pt;}
.ws15{word-spacing:13.760000pt;}
.ws5d{word-spacing:14.400000pt;}
.ws45{word-spacing:14.464000pt;}
.ws7d{word-spacing:15.488000pt;}
.wsc{word-spacing:15.552000pt;}
.wse{word-spacing:16.512000pt;}
.ws8{word-spacing:16.768000pt;}
.ws2c{word-spacing:16.832000pt;}
.ws2b{word-spacing:16.960000pt;}
.ws73{word-spacing:17.216000pt;}
.ws14{word-spacing:17.344000pt;}
.ws48{word-spacing:18.624000pt;}
.ws4e{word-spacing:19.136000pt;}
.ws47{word-spacing:20.352000pt;}
.ws3c{word-spacing:21.376000pt;}
.ws78{word-spacing:22.080000pt;}
.ws4b{word-spacing:22.144000pt;}
.ws35{word-spacing:23.424000pt;}
.ws2d{word-spacing:25.216000pt;}
.ws36{word-spacing:26.112000pt;}
.ws3a{word-spacing:30.144000pt;}
.ws10{word-spacing:30.208000pt;}
.ws76{word-spacing:30.528000pt;}
.wsb{word-spacing:31.872000pt;}
.ws3b{word-spacing:32.000000pt;}
.ws57{word-spacing:32.128000pt;}
.ws66{word-spacing:33.216000pt;}
.ws44{word-spacing:33.280000pt;}
.ws72{word-spacing:37.824000pt;}
.ws71{word-spacing:38.080000pt;}
.ws31{word-spacing:39.296000pt;}
.ws3d{word-spacing:39.872000pt;}
.ws51{word-spacing:41.472000pt;}
.ws13{word-spacing:42.496000pt;}
.ws54{word-spacing:44.736000pt;}
.ws75{word-spacing:45.056000pt;}
.ws56{word-spacing:47.104000pt;}
.ws43{word-spacing:48.640000pt;}
.ws41{word-spacing:54.272000pt;}
.ws4d{word-spacing:57.792000pt;}
._12{margin-left:-1867.930133pt;}
._2{margin-left:-9.177600pt;}
._4{margin-left:-8.012800pt;}
._7{margin-left:-6.314667pt;}
._a{margin-left:-5.352533pt;}
._5{margin-left:-4.076800pt;}
._9{margin-left:-3.148800pt;}
._0{margin-left:-1.920000pt;}
._6{margin-left:-1.011200pt;}
._3{width:1.804800pt;}
._1{width:3.059200pt;}
._b{width:4.307200pt;}
._11{width:6.300800pt;}
._e{width:8.115200pt;}
._8{width:9.177600pt;}
._c{width:10.291200pt;}
._d{width:11.212800pt;}
._10{width:21.510400pt;}
._f{width:22.621867pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:74.666667pt;}
.fs2{font-size:85.333333pt;}
.fs5{font-size:90.666667pt;}
.fs0{font-size:128.000000pt;}
.fs4{font-size:133.333333pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:31.461200pt;}
.y6a{bottom:56.849200pt;}
.yb5{bottom:62.664533pt;}
.y69{bottom:76.049200pt;}
.yb4{bottom:81.864533pt;}
.y68{bottom:95.249200pt;}
.yb3{bottom:101.064533pt;}
.y67{bottom:114.449200pt;}
.y66{bottom:133.649333pt;}
.yb2{bottom:135.382667pt;}
.y7b{bottom:140.516000pt;}
.y65{bottom:152.849333pt;}
.y7a{bottom:159.714667pt;}
.y4d{bottom:170.638667pt;}
.y64{bottom:172.049333pt;}
.yb{bottom:177.165333pt;}
.y2c{bottom:177.196000pt;}
.y79{bottom:178.914667pt;}
.y4c{bottom:189.838667pt;}
.y63{bottom:191.249333pt;}
.y2b{bottom:196.396000pt;}
.y78{bottom:198.116000pt;}
.y90{bottom:207.626667pt;}
.y4b{bottom:209.038667pt;}
.y62{bottom:210.449333pt;}
.yb1{bottom:218.978667pt;}
.y8f{bottom:226.826667pt;}
.y2a{bottom:226.934667pt;}
.y61{bottom:229.649333pt;}
.yba{bottom:233.718667pt;}
.yb0{bottom:238.178667pt;}
.y4a{bottom:239.577333pt;}
.y8e{bottom:246.026667pt;}
.y29{bottom:246.134667pt;}
.y60{bottom:248.849333pt;}
.ya{bottom:248.864000pt;}
.yb9{bottom:252.918667pt;}
.yaf{bottom:257.378667pt;}
.y49{bottom:258.777333pt;}
.y8d{bottom:265.226667pt;}
.y5f{bottom:268.049333pt;}
.y28{bottom:276.673333pt;}
.y5e{bottom:287.249333pt;}
.yae{bottom:287.917333pt;}
.y48{bottom:289.314667pt;}
.y9{bottom:291.734667pt;}
.y8c{bottom:295.765333pt;}
.y27{bottom:295.873333pt;}
.yad{bottom:307.117333pt;}
.y47{bottom:308.516000pt;}
.y8{bottom:310.934667pt;}
.y8b{bottom:314.965333pt;}
.yac{bottom:326.317333pt;}
.y26{bottom:326.412000pt;}
.y6c{bottom:327.568000pt;}
.y7{bottom:330.134667pt;}
.y46{bottom:339.053333pt;}
.y25{bottom:345.612000pt;}
.y6{bottom:349.334667pt;}
.yab{bottom:356.856000pt;}
.y45{bottom:358.253333pt;}
.y5{bottom:368.534667pt;}
.yaa{bottom:376.056000pt;}
.y24{bottom:376.150667pt;}
.yb8{bottom:382.062667pt;}
.y4{bottom:387.734667pt;}
.y44{bottom:388.792000pt;}
.ya9{bottom:395.256000pt;}
.y23{bottom:395.349333pt;}
.y8a{bottom:396.737333pt;}
.yb7{bottom:405.041333pt;}
.y43{bottom:407.992000pt;}
.y22{bottom:414.549333pt;}
.ya8{bottom:425.794667pt;}
.y3{bottom:430.836000pt;}
.y21{bottom:433.749333pt;}
.y42{bottom:438.530667pt;}
.yb6{bottom:439.360000pt;}
.ya7{bottom:444.993333pt;}
.y5d{bottom:446.480000pt;}
.y20{bottom:452.949333pt;}
.y41{bottom:457.730667pt;}
.y89{bottom:460.566667pt;}
.ya6{bottom:464.194667pt;}
.y5c{bottom:465.680000pt;}
.y2{bottom:469.236000pt;}
.y40{bottom:476.930667pt;}
.y88{bottom:479.766667pt;}
.ya5{bottom:483.393333pt;}
.y5b{bottom:484.881333pt;}
.y3f{bottom:496.130667pt;}
.y2d{bottom:497.306667pt;}
.y5a{bottom:504.080000pt;}
.y1{bottom:507.636000pt;}
.ya4{bottom:513.932000pt;}
.y59{bottom:523.280000pt;}
.y3e{bottom:526.669333pt;}
.ya3{bottom:533.132000pt;}
.y58{bottom:542.480000pt;}
.y3d{bottom:545.869333pt;}
.ya2{bottom:552.333333pt;}
.y87{bottom:554.310667pt;}
.y57{bottom:561.680000pt;}
.y3c{bottom:565.069333pt;}
.y56{bottom:580.880000pt;}
.ya1{bottom:582.870667pt;}
.y3b{bottom:595.608000pt;}
.y1f{bottom:598.632000pt;}
.y55{bottom:600.080000pt;}
.ya0{bottom:602.070667pt;}
.y3a{bottom:614.808000pt;}
.y1e{bottom:617.832000pt;}
.y54{bottom:619.280000pt;}
.y86{bottom:631.670667pt;}
.y9f{bottom:632.609333pt;}
.y1d{bottom:637.032000pt;}
.y53{bottom:638.481333pt;}
.y39{bottom:651.008000pt;}
.y9e{bottom:651.809333pt;}
.y1c{bottom:656.232000pt;}
.y52{bottom:657.680000pt;}
.y9d{bottom:671.009333pt;}
.y1b{bottom:675.432000pt;}
.y51{bottom:676.880000pt;}
.y1a{bottom:694.632000pt;}
.y85{bottom:695.500000pt;}
.y50{bottom:696.080000pt;}
.y9c{bottom:701.548000pt;}
.y19{bottom:713.832000pt;}
.y84{bottom:714.700000pt;}
.y4f{bottom:715.280000pt;}
.y9b{bottom:720.748000pt;}
.y18{bottom:733.032000pt;}
.y9a{bottom:739.948000pt;}
.y38{bottom:740.590667pt;}
.y77{bottom:742.165333pt;}
.y6b{bottom:752.109333pt;}
.y17{bottom:752.232000pt;}
.y37{bottom:759.790667pt;}
.y76{bottom:761.365333pt;}
.y7d{bottom:768.134667pt;}
.y99{bottom:770.486667pt;}
.y16{bottom:771.432000pt;}
.y36{bottom:778.990667pt;}
.y75{bottom:780.565333pt;}
.y7c{bottom:787.334667pt;}
.y98{bottom:789.686667pt;}
.y15{bottom:790.632000pt;}
.y35{bottom:798.190667pt;}
.y74{bottom:799.765333pt;}
.y14{bottom:809.832000pt;}
.y34{bottom:817.390667pt;}
.y73{bottom:818.965333pt;}
.y97{bottom:820.225333pt;}
.y13{bottom:829.032000pt;}
.y96{bottom:839.425333pt;}
.y33{bottom:847.929333pt;}
.y12{bottom:848.232000pt;}
.y72{bottom:849.504000pt;}
.y83{bottom:849.818667pt;}
.y95{bottom:858.625333pt;}
.y32{bottom:867.129333pt;}
.y11{bottom:867.432000pt;}
.y71{bottom:868.704000pt;}
.y82{bottom:869.018667pt;}
.y31{bottom:886.329333pt;}
.y10{bottom:886.632000pt;}
.y70{bottom:887.904000pt;}
.y81{bottom:888.218667pt;}
.y94{bottom:889.164000pt;}
.y30{bottom:905.529333pt;}
.yf{bottom:905.832000pt;}
.y6f{bottom:907.104000pt;}
.y80{bottom:907.418667pt;}
.y93{bottom:908.364000pt;}
.y2f{bottom:924.729333pt;}
.y6e{bottom:926.304000pt;}
.y7f{bottom:926.618667pt;}
.y92{bottom:927.564000pt;}
.y2e{bottom:961.244000pt;}
.y4e{bottom:962.189333pt;}
.ye{bottom:963.133333pt;}
.y6d{bottom:963.764000pt;}
.y7e{bottom:964.078667pt;}
.y91{bottom:975.417333pt;}
.yd{bottom:1059.297333pt;}
.h3{height:47.968750pt;}
.h7{height:48.125000pt;}
.h5{height:54.432000pt;}
.ha{height:56.145833pt;}
.h4{height:62.208000pt;}
.hb{height:68.177083pt;}
.h2{height:96.250000pt;}
.h6{height:100.260417pt;}
.h8{height:100.276417pt;}
.h9{height:100.281750pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:52.913467pt;}
.x4{left:56.692933pt;}
.xb{left:68.736533pt;}
.xe{left:80.692933pt;}
.x9{left:86.929200pt;}
.x10{left:94.488133pt;}
.x1{left:99.452000pt;}
.x2{left:100.553467pt;}
.xd{left:162.520000pt;}
.x11{left:165.669333pt;}
.x5{left:238.869333pt;}
.x3{left:275.186667pt;}
.xa{left:417.008000pt;}
.xf{left:461.102667pt;}
.x8{left:502.762667pt;}
.x6{left:554.033333pt;}
.x7{left:701.201333pt;}
}




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