
    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_d8674590410ec069ca3a6483.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.913086;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_5796ba2542c21f0e07d32237.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.088379;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_f500f4d0e13da1999c5e76bd.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_deded32027316566b7c76755.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.088379;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_3bd5ce742dab52629b6e3c8a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_afedd01c199fc9d91fc4f5dd.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.096680;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_b8eff38c2794c018dec04242.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_a1451aa722888cf8e350638d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.922363;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_57856731f8033d08fac82b30.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.096191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_d2661bc1a3706d5f78ead37d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.913086;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_32220610b891a3328ceff02e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.913086;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:ffc;src:url('chunks/assets/font_deded32027316566b7c76755.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.088379;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:ffd;src:url('chunks/assets/font_3bd5ce742dab52629b6e3c8a.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.088379;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);}
.v4{vertical-align:-19.980000px;}
.v2{vertical-align:-15.984000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:19.979400px;}
.v1{vertical-align:31.968000px;}
.ls2{letter-spacing:-1.320000px;}
.ls4{letter-spacing:-1.200000px;}
.ls3{letter-spacing:-1.020000px;}
.ls7{letter-spacing:-0.720000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:1.860000px;}
.ls6{letter-spacing:663.170400px;}
.ls1{letter-spacing:691.699800px;}
.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;}
}
.wse{word-spacing:-13.200000px;}
.ws1a{word-spacing:-12.480000px;}
.ws12{word-spacing:-12.180000px;}
.ws13{word-spacing:-12.000000px;}
.ws0{word-spacing:-11.880000px;}
.ws16{word-spacing:-10.560000px;}
.wsf{word-spacing:-7.695600px;}
.ws10{word-spacing:-6.156480px;}
.ws1f{word-spacing:-2.940000px;}
.ws21{word-spacing:-2.820000px;}
.ws26{word-spacing:-2.340000px;}
.ws18{word-spacing:-2.160000px;}
.ws1d{word-spacing:-1.920000px;}
.ws14{word-spacing:-1.860000px;}
.ws19{word-spacing:-1.740000px;}
.ws27{word-spacing:-1.080000px;}
.wsd{word-spacing:-0.912000px;}
.wsa{word-spacing:-0.864000px;}
.wsb{word-spacing:-0.486000px;}
.ws8{word-spacing:-0.216000px;}
.ws11{word-spacing:-0.060000px;}
.ws17{word-spacing:-0.034980px;}
.ws1{word-spacing:-0.027984px;}
.ws2{word-spacing:0.000000px;}
.ws5{word-spacing:0.540000px;}
.ws7{word-spacing:0.972000px;}
.wsc{word-spacing:1.350000px;}
.ws25{word-spacing:2.760000px;}
.ws4{word-spacing:2.808000px;}
.ws9{word-spacing:3.186000px;}
.ws23{word-spacing:3.780000px;}
.ws1e{word-spacing:3.900000px;}
.ws1c{word-spacing:4.140000px;}
.ws1b{word-spacing:4.980000px;}
.ws15{word-spacing:5.640000px;}
.ws20{word-spacing:5.700000px;}
.ws22{word-spacing:6.120000px;}
.ws24{word-spacing:6.480000px;}
.ws6{word-spacing:6.534000px;}
.ws3{word-spacing:691.686000px;}
._1{margin-left:-3362.457600px;}
._10{margin-left:-13.530000px;}
._11{margin-left:-12.256800px;}
._15{margin-left:-7.191000px;}
._8{margin-left:-5.983200px;}
._3{margin-left:-4.491600px;}
._0{margin-left:-3.302400px;}
._17{margin-left:-2.298000px;}
._2{margin-left:-1.296000px;}
._5{width:1.798200px;}
._4{width:2.813400px;}
._6{width:4.201200px;}
._b{width:5.247600px;}
._7{width:6.426000px;}
._c{width:8.358000px;}
._a{width:9.894000px;}
._9{width:11.052000px;}
._e{width:12.078000px;}
._f{width:14.382000px;}
._14{width:15.432000px;}
._d{width:16.476000px;}
._18{width:19.920000px;}
._12{width:21.924000px;}
._16{width:25.836000px;}
._19{width:662.427600px;}
._13{width:691.734600px;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(166,29,35);}
.fs6{font-size:27.984000px;}
.fs7{font-size:34.980000px;}
.fs0{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs4{font-size:55.968000px;}
.fs2{font-size:60.000000px;}
.fs5{font-size:72.000000px;}
.fs3{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:71.987400px;}
.y79{bottom:99.921300px;}
.yad{bottom:102.047250px;}
.yb8{bottom:104.375850px;}
.y72{bottom:106.299150px;}
.y6f{bottom:107.149650px;}
.yc1{bottom:110.551200px;}
.y21{bottom:111.614250px;}
.y84{bottom:112.677150px;}
.y49{bottom:113.340450px;}
.y7f{bottom:113.696850px;}
.yac{bottom:115.847250px;}
.y78{bottom:117.717300px;}
.yd0{bottom:119.576550px;}
.y89{bottom:120.099150px;}
.y6e{bottom:120.949650px;}
.y80{bottom:121.844400px;}
.yb7{bottom:122.375850px;}
.y71{bottom:124.095300px;}
.yc0{bottom:124.351200px;}
.y20{bottom:125.414250px;}
.y83{bottom:126.477150px;}
.yab{bottom:129.647250px;}
.yef{bottom:130.064850px;}
.y48{bottom:131.340450px;}
.y7e{bottom:132.198450px;}
.y88{bottom:133.899150px;}
.yfe{bottom:134.316750px;}
.y6d{bottom:134.749650px;}
.ycf{bottom:137.576550px;}
.y70{bottom:137.895300px;}
.y77{bottom:139.844400px;}
.y82{bottom:140.277150px;}
.yb6{bottom:140.375850px;}
.ybf{bottom:142.147200px;}
.y1f{bottom:143.210250px;}
.y7d{bottom:145.998450px;}
.yaa{bottom:147.443250px;}
.y87{bottom:147.699150px;}
.yee{bottom:148.064850px;}
.y6c{bottom:148.549650px;}
.y47{bottom:149.340450px;}
.ybe{bottom:151.951200px;}
.yfd{bottom:152.316750px;}
.y76{bottom:157.844400px;}
.y81{bottom:158.073150px;}
.yb5{bottom:158.375850px;}
.y7c{bottom:159.798450px;}
.yce{bottom:159.828600px;}
.y86{bottom:161.499150px;}
.ybd{bottom:165.751200px;}
.y6b{bottom:166.345650px;}
.y46{bottom:167.340450px;}
.yed{bottom:170.316750px;}
.y7b{bottom:173.598450px;}
.y105{bottom:174.568800px;}
.y75{bottom:175.844400px;}
.yb4{bottom:176.375850px;}
.ycd{bottom:177.828600px;}
.y85{bottom:179.295150px;}
.ybc{bottom:179.551200px;}
.y45{bottom:185.340450px;}
.ya9{bottom:185.871900px;}
.y7a{bottom:191.394450px;}
.yec{bottom:192.568800px;}
.ybb{bottom:193.351200px;}
.y74{bottom:193.844400px;}
.yb3{bottom:194.375850px;}
.ycc{bottom:200.080500px;}
.y44{bottom:203.340450px;}
.ya8{bottom:203.871900px;}
.yba{bottom:207.151200px;}
.yeb{bottom:210.568800px;}
.y73{bottom:211.844400px;}
.yb2{bottom:212.375850px;}
.y104{bottom:214.820700px;}
.ycb{bottom:218.080500px;}
.y1e{bottom:220.028100px;}
.y43{bottom:221.340450px;}
.yb9{bottom:224.947200px;}
.y6a{bottom:229.844400px;}
.ya7{bottom:230.375850px;}
.yea{bottom:232.820700px;}
.y42{bottom:239.340450px;}
.yca{bottom:240.332550px;}
.y1d{bottom:240.480000px;}
.y69{bottom:247.844400px;}
.yb1{bottom:248.375850px;}
.ye9{bottom:250.820700px;}
.y103{bottom:255.072750px;}
.y1c{bottom:256.680150px;}
.y41{bottom:257.340450px;}
.yc9{bottom:258.332550px;}
.y68{bottom:265.844400px;}
.yb0{bottom:266.375850px;}
.y1b{bottom:272.880000px;}
.ye8{bottom:273.072750px;}
.y40{bottom:275.340450px;}
.yc8{bottom:276.332550px;}
.y67{bottom:283.844400px;}
.ya6{bottom:284.375850px;}
.y1a{bottom:289.080000px;}
.ye7{bottom:291.072750px;}
.y3f{bottom:293.340450px;}
.y102{bottom:295.324650px;}
.yc7{bottom:298.584450px;}
.y66{bottom:301.844400px;}
.ya5{bottom:302.375850px;}
.y19{bottom:305.280150px;}
.ye6{bottom:309.072750px;}
.y3e{bottom:311.340450px;}
.yfc{bottom:313.324650px;}
.yc6{bottom:316.584450px;}
.y65{bottom:319.844400px;}
.ya4{bottom:320.375850px;}
.y18{bottom:321.480000px;}
.ye5{bottom:327.072750px;}
.y3d{bottom:329.340450px;}
.yfb{bottom:331.324650px;}
.y101{bottom:335.576550px;}
.y17{bottom:337.680150px;}
.y64{bottom:337.844400px;}
.ya3{bottom:338.375850px;}
.yc5{bottom:338.836500px;}
.y3c{bottom:347.340450px;}
.ye4{bottom:349.324650px;}
.yfa{bottom:353.576550px;}
.y16{bottom:353.880000px;}
.y63{bottom:355.844400px;}
.ya2{bottom:356.375850px;}
.yc4{bottom:356.836500px;}
.y3b{bottom:365.340450px;}
.ye3{bottom:367.324650px;}
.yf9{bottom:371.576550px;}
.y62{bottom:373.844400px;}
.y15{bottom:374.332050px;}
.ya1{bottom:374.375850px;}
.yc3{bottom:379.088400px;}
.y3a{bottom:383.340450px;}
.ye2{bottom:389.576550px;}
.y61{bottom:391.844400px;}
.ya0{bottom:392.375850px;}
.yf8{bottom:393.828600px;}
.y14{bottom:394.783950px;}
.yc2{bottom:397.088400px;}
.y39{bottom:401.340450px;}
.ye1{bottom:407.576550px;}
.y60{bottom:409.844400px;}
.y9f{bottom:410.375850px;}
.yf7{bottom:411.828600px;}
.y38{bottom:419.340450px;}
.y5f{bottom:427.844400px;}
.y9e{bottom:428.375850px;}
.ye0{bottom:429.828600px;}
.yf6{bottom:434.080500px;}
.y37{bottom:437.340450px;}
.y5e{bottom:445.844400px;}
.y9d{bottom:446.375850px;}
.y13{bottom:447.636000px;}
.ydf{bottom:447.828600px;}
.yf5{bottom:452.080500px;}
.y36{bottom:455.340300px;}
.y5d{bottom:463.844400px;}
.y9c{bottom:464.375850px;}
.y12{bottom:468.087900px;}
.yde{bottom:470.080500px;}
.y35{bottom:473.340300px;}
.yf4{bottom:474.332550px;}
.y5c{bottom:481.844400px;}
.y9b{bottom:482.375850px;}
.y11{bottom:484.287900px;}
.ydd{bottom:488.080500px;}
.y34{bottom:491.340300px;}
.yf3{bottom:492.332550px;}
.y5b{bottom:499.844400px;}
.y9a{bottom:500.375850px;}
.y10{bottom:500.487900px;}
.y33{bottom:509.340300px;}
.ydc{bottom:510.332550px;}
.yf{bottom:516.687900px;}
.y5a{bottom:517.844400px;}
.y99{bottom:518.375850px;}
.y32{bottom:527.340300px;}
.ydb{bottom:528.332550px;}
.ye{bottom:532.887900px;}
.y59{bottom:535.844400px;}
.y98{bottom:536.375850px;}
.y31{bottom:545.340300px;}
.yda{bottom:546.332550px;}
.yd{bottom:549.087900px;}
.yf2{bottom:550.584450px;}
.y58{bottom:553.844400px;}
.y97{bottom:554.375850px;}
.y30{bottom:563.340300px;}
.yc{bottom:565.287900px;}
.yd9{bottom:568.584450px;}
.y57{bottom:571.844400px;}
.y96{bottom:572.375850px;}
.y2f{bottom:581.340300px;}
.yb{bottom:581.487900px;}
.yd8{bottom:586.584450px;}
.y56{bottom:589.844400px;}
.y95{bottom:590.375850px;}
.yf1{bottom:590.836500px;}
.ya{bottom:597.687900px;}
.y2e{bottom:599.340300px;}
.y100{bottom:604.584450px;}
.y55{bottom:607.844400px;}
.y94{bottom:608.375850px;}
.yd7{bottom:608.836500px;}
.y2d{bottom:617.340300px;}
.y54{bottom:625.844400px;}
.y93{bottom:626.375850px;}
.yd6{bottom:626.836500px;}
.yf0{bottom:631.088400px;}
.y2c{bottom:635.340300px;}
.y53{bottom:643.844400px;}
.yaf{bottom:644.375850px;}
.yd5{bottom:649.088400px;}
.y2b{bottom:653.340450px;}
.y52{bottom:661.844400px;}
.y92{bottom:662.375850px;}
.yd4{bottom:667.088400px;}
.y2a{bottom:671.340450px;}
.y51{bottom:679.844400px;}
.y91{bottom:680.375850px;}
.yd3{bottom:685.088400px;}
.y29{bottom:689.340450px;}
.y50{bottom:697.844400px;}
.y90{bottom:698.375850px;}
.yff{bottom:703.088400px;}
.y9{bottom:703.887900px;}
.y28{bottom:707.340450px;}
.y4f{bottom:715.844400px;}
.y8f{bottom:716.375850px;}
.y27{bottom:725.340450px;}
.y4e{bottom:733.844400px;}
.y8e{bottom:734.375850px;}
.y8{bottom:738.087900px;}
.y26{bottom:743.340450px;}
.y4d{bottom:751.844400px;}
.y8d{bottom:752.375850px;}
.y25{bottom:761.340450px;}
.yd2{bottom:765.592350px;}
.y4c{bottom:769.844400px;}
.y8c{bottom:770.375850px;}
.y24{bottom:779.340300px;}
.yd1{bottom:783.592350px;}
.y4b{bottom:787.844400px;}
.yae{bottom:788.375850px;}
.y7{bottom:789.843900px;}
.y23{bottom:797.340300px;}
.y4a{bottom:805.844400px;}
.y8b{bottom:806.375850px;}
.y6{bottom:816.843900px;}
.y22{bottom:823.844400px;}
.y8a{bottom:824.375850px;}
.y5{bottom:857.860050px;}
.y3{bottom:893.996700px;}
.y2{bottom:935.134500px;}
.y1{bottom:948.634500px;}
.ha{height:25.781625px;}
.hd{height:31.002328px;}
.h2{height:33.632812px;}
.h7{height:37.494141px;}
.h8{height:38.021484px;}
.hb{height:41.765625px;}
.h3{height:46.986328px;}
.h9{height:47.408203px;}
.h4{height:52.207031px;}
.hc{height:52.675781px;}
.h6{height:62.648438px;}
.h5{height:84.281250px;}
.h1{height:999.000000px;}
.h0{height:999.213000px;}
.w1{width:701.250000px;}
.w0{width:701.575500px;}
.x0{left:0.000000px;}
.x1{left:85.039350px;}
.x6{left:97.715100px;}
.xa{left:106.299150px;}
.x5{left:122.348700px;}
.x9{left:131.277300px;}
.xb{left:136.062900px;}
.x7{left:237.067650px;}
.x4{left:281.975250px;}
.x8{left:288.965100px;}
.x3{left:445.646850px;}
.x2{left:532.787400px;}
@media print{
.v4{vertical-align:-17.760000pt;}
.v2{vertical-align:-14.208000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:17.759467pt;}
.v1{vertical-align:28.416000pt;}
.ls2{letter-spacing:-1.173333pt;}
.ls4{letter-spacing:-1.066667pt;}
.ls3{letter-spacing:-0.906667pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:1.653333pt;}
.ls6{letter-spacing:589.484800pt;}
.ls1{letter-spacing:614.844267pt;}
.wse{word-spacing:-11.733333pt;}
.ws1a{word-spacing:-11.093333pt;}
.ws12{word-spacing:-10.826667pt;}
.ws13{word-spacing:-10.666667pt;}
.ws0{word-spacing:-10.560000pt;}
.ws16{word-spacing:-9.386667pt;}
.wsf{word-spacing:-6.840533pt;}
.ws10{word-spacing:-5.472427pt;}
.ws1f{word-spacing:-2.613333pt;}
.ws21{word-spacing:-2.506667pt;}
.ws26{word-spacing:-2.080000pt;}
.ws18{word-spacing:-1.920000pt;}
.ws1d{word-spacing:-1.706667pt;}
.ws14{word-spacing:-1.653333pt;}
.ws19{word-spacing:-1.546667pt;}
.ws27{word-spacing:-0.960000pt;}
.wsd{word-spacing:-0.810667pt;}
.wsa{word-spacing:-0.768000pt;}
.wsb{word-spacing:-0.432000pt;}
.ws8{word-spacing:-0.192000pt;}
.ws11{word-spacing:-0.053333pt;}
.ws17{word-spacing:-0.031093pt;}
.ws1{word-spacing:-0.024875pt;}
.ws2{word-spacing:0.000000pt;}
.ws5{word-spacing:0.480000pt;}
.ws7{word-spacing:0.864000pt;}
.wsc{word-spacing:1.200000pt;}
.ws25{word-spacing:2.453333pt;}
.ws4{word-spacing:2.496000pt;}
.ws9{word-spacing:2.832000pt;}
.ws23{word-spacing:3.360000pt;}
.ws1e{word-spacing:3.466667pt;}
.ws1c{word-spacing:3.680000pt;}
.ws1b{word-spacing:4.426667pt;}
.ws15{word-spacing:5.013333pt;}
.ws20{word-spacing:5.066667pt;}
.ws22{word-spacing:5.440000pt;}
.ws24{word-spacing:5.760000pt;}
.ws6{word-spacing:5.808000pt;}
.ws3{word-spacing:614.832000pt;}
._1{margin-left:-2988.851200pt;}
._10{margin-left:-12.026667pt;}
._11{margin-left:-10.894933pt;}
._15{margin-left:-6.392000pt;}
._8{margin-left:-5.318400pt;}
._3{margin-left:-3.992533pt;}
._0{margin-left:-2.935467pt;}
._17{margin-left:-2.042667pt;}
._2{margin-left:-1.152000pt;}
._5{width:1.598400pt;}
._4{width:2.500800pt;}
._6{width:3.734400pt;}
._b{width:4.664533pt;}
._7{width:5.712000pt;}
._c{width:7.429333pt;}
._a{width:8.794667pt;}
._9{width:9.824000pt;}
._e{width:10.736000pt;}
._f{width:12.784000pt;}
._14{width:13.717333pt;}
._d{width:14.645333pt;}
._18{width:17.706667pt;}
._12{width:19.488000pt;}
._16{width:22.965333pt;}
._19{width:588.824533pt;}
._13{width:614.875200pt;}
.fs6{font-size:24.874667pt;}
.fs7{font-size:31.093333pt;}
.fs0{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs4{font-size:49.749333pt;}
.fs2{font-size:53.333333pt;}
.fs5{font-size:64.000000pt;}
.fs3{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:63.988800pt;}
.y79{bottom:88.818933pt;}
.yad{bottom:90.708667pt;}
.yb8{bottom:92.778533pt;}
.y72{bottom:94.488133pt;}
.y6f{bottom:95.244133pt;}
.yc1{bottom:98.267733pt;}
.y21{bottom:99.212667pt;}
.y84{bottom:100.157467pt;}
.y49{bottom:100.747067pt;}
.y7f{bottom:101.063867pt;}
.yac{bottom:102.975333pt;}
.y78{bottom:104.637600pt;}
.yd0{bottom:106.290267pt;}
.y89{bottom:106.754800pt;}
.y6e{bottom:107.510800pt;}
.y80{bottom:108.306133pt;}
.yb7{bottom:108.778533pt;}
.y71{bottom:110.306933pt;}
.yc0{bottom:110.534400pt;}
.y20{bottom:111.479333pt;}
.y83{bottom:112.424133pt;}
.yab{bottom:115.242000pt;}
.yef{bottom:115.613200pt;}
.y48{bottom:116.747067pt;}
.y7e{bottom:117.509733pt;}
.y88{bottom:119.021467pt;}
.yfe{bottom:119.392667pt;}
.y6d{bottom:119.777467pt;}
.ycf{bottom:122.290267pt;}
.y70{bottom:122.573600pt;}
.y77{bottom:124.306133pt;}
.y82{bottom:124.690800pt;}
.yb6{bottom:124.778533pt;}
.ybf{bottom:126.353067pt;}
.y1f{bottom:127.298000pt;}
.y7d{bottom:129.776400pt;}
.yaa{bottom:131.060667pt;}
.y87{bottom:131.288133pt;}
.yee{bottom:131.613200pt;}
.y6c{bottom:132.044133pt;}
.y47{bottom:132.747067pt;}
.ybe{bottom:135.067733pt;}
.yfd{bottom:135.392667pt;}
.y76{bottom:140.306133pt;}
.y81{bottom:140.509467pt;}
.yb5{bottom:140.778533pt;}
.y7c{bottom:142.043067pt;}
.yce{bottom:142.069867pt;}
.y86{bottom:143.554800pt;}
.ybd{bottom:147.334400pt;}
.y6b{bottom:147.862800pt;}
.y46{bottom:148.747067pt;}
.yed{bottom:151.392667pt;}
.y7b{bottom:154.309733pt;}
.y105{bottom:155.172267pt;}
.y75{bottom:156.306133pt;}
.yb4{bottom:156.778533pt;}
.ycd{bottom:158.069867pt;}
.y85{bottom:159.373467pt;}
.ybc{bottom:159.601067pt;}
.y45{bottom:164.747067pt;}
.ya9{bottom:165.219467pt;}
.y7a{bottom:170.128400pt;}
.yec{bottom:171.172267pt;}
.ybb{bottom:171.867733pt;}
.y74{bottom:172.306133pt;}
.yb3{bottom:172.778533pt;}
.ycc{bottom:177.849333pt;}
.y44{bottom:180.747067pt;}
.ya8{bottom:181.219467pt;}
.yba{bottom:184.134400pt;}
.yeb{bottom:187.172267pt;}
.y73{bottom:188.306133pt;}
.yb2{bottom:188.778533pt;}
.y104{bottom:190.951733pt;}
.ycb{bottom:193.849333pt;}
.y1e{bottom:195.580533pt;}
.y43{bottom:196.747067pt;}
.yb9{bottom:199.953067pt;}
.y6a{bottom:204.306133pt;}
.ya7{bottom:204.778533pt;}
.yea{bottom:206.951733pt;}
.y42{bottom:212.747067pt;}
.yca{bottom:213.628933pt;}
.y1d{bottom:213.760000pt;}
.y69{bottom:220.306133pt;}
.yb1{bottom:220.778533pt;}
.ye9{bottom:222.951733pt;}
.y103{bottom:226.731333pt;}
.y1c{bottom:228.160133pt;}
.y41{bottom:228.747067pt;}
.yc9{bottom:229.628933pt;}
.y68{bottom:236.306133pt;}
.yb0{bottom:236.778533pt;}
.y1b{bottom:242.560000pt;}
.ye8{bottom:242.731333pt;}
.y40{bottom:244.747067pt;}
.yc8{bottom:245.628933pt;}
.y67{bottom:252.306133pt;}
.ya6{bottom:252.778533pt;}
.y1a{bottom:256.960000pt;}
.ye7{bottom:258.731333pt;}
.y3f{bottom:260.747067pt;}
.y102{bottom:262.510800pt;}
.yc7{bottom:265.408400pt;}
.y66{bottom:268.306133pt;}
.ya5{bottom:268.778533pt;}
.y19{bottom:271.360133pt;}
.ye6{bottom:274.731333pt;}
.y3e{bottom:276.747067pt;}
.yfc{bottom:278.510800pt;}
.yc6{bottom:281.408400pt;}
.y65{bottom:284.306133pt;}
.ya4{bottom:284.778533pt;}
.y18{bottom:285.760000pt;}
.ye5{bottom:290.731333pt;}
.y3d{bottom:292.747067pt;}
.yfb{bottom:294.510800pt;}
.y101{bottom:298.290267pt;}
.y17{bottom:300.160133pt;}
.y64{bottom:300.306133pt;}
.ya3{bottom:300.778533pt;}
.yc5{bottom:301.188000pt;}
.y3c{bottom:308.747067pt;}
.ye4{bottom:310.510800pt;}
.yfa{bottom:314.290267pt;}
.y16{bottom:314.560000pt;}
.y63{bottom:316.306133pt;}
.ya2{bottom:316.778533pt;}
.yc4{bottom:317.188000pt;}
.y3b{bottom:324.747067pt;}
.ye3{bottom:326.510800pt;}
.yf9{bottom:330.290267pt;}
.y62{bottom:332.306133pt;}
.y15{bottom:332.739600pt;}
.ya1{bottom:332.778533pt;}
.yc3{bottom:336.967467pt;}
.y3a{bottom:340.747067pt;}
.ye2{bottom:346.290267pt;}
.y61{bottom:348.306133pt;}
.ya0{bottom:348.778533pt;}
.yf8{bottom:350.069867pt;}
.y14{bottom:350.919067pt;}
.yc2{bottom:352.967467pt;}
.y39{bottom:356.747067pt;}
.ye1{bottom:362.290267pt;}
.y60{bottom:364.306133pt;}
.y9f{bottom:364.778533pt;}
.yf7{bottom:366.069867pt;}
.y38{bottom:372.747067pt;}
.y5f{bottom:380.306133pt;}
.y9e{bottom:380.778533pt;}
.ye0{bottom:382.069867pt;}
.yf6{bottom:385.849333pt;}
.y37{bottom:388.747067pt;}
.y5e{bottom:396.306133pt;}
.y9d{bottom:396.778533pt;}
.y13{bottom:397.898667pt;}
.ydf{bottom:398.069867pt;}
.yf5{bottom:401.849333pt;}
.y36{bottom:404.746933pt;}
.y5d{bottom:412.306133pt;}
.y9c{bottom:412.778533pt;}
.y12{bottom:416.078133pt;}
.yde{bottom:417.849333pt;}
.y35{bottom:420.746933pt;}
.yf4{bottom:421.628933pt;}
.y5c{bottom:428.306133pt;}
.y9b{bottom:428.778533pt;}
.y11{bottom:430.478133pt;}
.ydd{bottom:433.849333pt;}
.y34{bottom:436.746933pt;}
.yf3{bottom:437.628933pt;}
.y5b{bottom:444.306133pt;}
.y9a{bottom:444.778533pt;}
.y10{bottom:444.878133pt;}
.y33{bottom:452.746933pt;}
.ydc{bottom:453.628933pt;}
.yf{bottom:459.278133pt;}
.y5a{bottom:460.306133pt;}
.y99{bottom:460.778533pt;}
.y32{bottom:468.746933pt;}
.ydb{bottom:469.628933pt;}
.ye{bottom:473.678133pt;}
.y59{bottom:476.306133pt;}
.y98{bottom:476.778533pt;}
.y31{bottom:484.746933pt;}
.yda{bottom:485.628933pt;}
.yd{bottom:488.078133pt;}
.yf2{bottom:489.408400pt;}
.y58{bottom:492.306133pt;}
.y97{bottom:492.778533pt;}
.y30{bottom:500.746933pt;}
.yc{bottom:502.478133pt;}
.yd9{bottom:505.408400pt;}
.y57{bottom:508.306133pt;}
.y96{bottom:508.778533pt;}
.y2f{bottom:516.746933pt;}
.yb{bottom:516.878133pt;}
.yd8{bottom:521.408400pt;}
.y56{bottom:524.306133pt;}
.y95{bottom:524.778533pt;}
.yf1{bottom:525.188000pt;}
.ya{bottom:531.278133pt;}
.y2e{bottom:532.746933pt;}
.y100{bottom:537.408400pt;}
.y55{bottom:540.306133pt;}
.y94{bottom:540.778533pt;}
.yd7{bottom:541.188000pt;}
.y2d{bottom:548.746933pt;}
.y54{bottom:556.306133pt;}
.y93{bottom:556.778533pt;}
.yd6{bottom:557.188000pt;}
.yf0{bottom:560.967467pt;}
.y2c{bottom:564.746933pt;}
.y53{bottom:572.306133pt;}
.yaf{bottom:572.778533pt;}
.yd5{bottom:576.967467pt;}
.y2b{bottom:580.747067pt;}
.y52{bottom:588.306133pt;}
.y92{bottom:588.778533pt;}
.yd4{bottom:592.967467pt;}
.y2a{bottom:596.747067pt;}
.y51{bottom:604.306133pt;}
.y91{bottom:604.778533pt;}
.yd3{bottom:608.967467pt;}
.y29{bottom:612.747067pt;}
.y50{bottom:620.306133pt;}
.y90{bottom:620.778533pt;}
.yff{bottom:624.967467pt;}
.y9{bottom:625.678133pt;}
.y28{bottom:628.747067pt;}
.y4f{bottom:636.306133pt;}
.y8f{bottom:636.778533pt;}
.y27{bottom:644.747067pt;}
.y4e{bottom:652.306133pt;}
.y8e{bottom:652.778533pt;}
.y8{bottom:656.078133pt;}
.y26{bottom:660.747067pt;}
.y4d{bottom:668.306133pt;}
.y8d{bottom:668.778533pt;}
.y25{bottom:676.747067pt;}
.yd2{bottom:680.526533pt;}
.y4c{bottom:684.306133pt;}
.y8c{bottom:684.778533pt;}
.y24{bottom:692.746933pt;}
.yd1{bottom:696.526533pt;}
.y4b{bottom:700.306133pt;}
.yae{bottom:700.778533pt;}
.y7{bottom:702.083467pt;}
.y23{bottom:708.746933pt;}
.y4a{bottom:716.306133pt;}
.y8b{bottom:716.778533pt;}
.y6{bottom:726.083467pt;}
.y22{bottom:732.306133pt;}
.y8a{bottom:732.778533pt;}
.y5{bottom:762.542267pt;}
.y3{bottom:794.663733pt;}
.y2{bottom:831.230667pt;}
.y1{bottom:843.230667pt;}
.ha{height:22.917000pt;}
.hd{height:27.557625pt;}
.h2{height:29.895833pt;}
.h7{height:33.328125pt;}
.h8{height:33.796875pt;}
.hb{height:37.125000pt;}
.h3{height:41.765625pt;}
.h9{height:42.140625pt;}
.h4{height:46.406250pt;}
.hc{height:46.822917pt;}
.h6{height:55.687500pt;}
.h5{height:74.916667pt;}
.h1{height:888.000000pt;}
.h0{height:888.189333pt;}
.w1{width:623.333333pt;}
.w0{width:623.622667pt;}
.x0{left:0.000000pt;}
.x1{left:75.590533pt;}
.x6{left:86.857867pt;}
.xa{left:94.488133pt;}
.x5{left:108.754400pt;}
.x9{left:116.690933pt;}
.xb{left:120.944800pt;}
.x7{left:210.726800pt;}
.x4{left:250.644667pt;}
.x8{left:256.857867pt;}
.x3{left:396.130533pt;}
.x2{left:473.588800pt;}
}




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