
    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_fe13f7826a7b72e1932c572a.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_3e89cc7088d448dccd7a11fe.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.917969;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_1981b21c6cbcc7e2e1841128.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_f25980957d34c52065cc6944.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.925781;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_a75c79365eb85c785165b7d5.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_fd151f67396dc07393fc949b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.917969;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_a940d36fb3f84766668229fc.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_cc61a0437eac6701b681d6b6.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_fe13f7826a7b72e1932c572a.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_3e89cc7088d448dccd7a11fe.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.917969;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_a75c79365eb85c785165b7d5.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_2028d4d8744226eb672ee50e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.925781;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);}
.v2{vertical-align:-15.984000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980000px;}
.ls4{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.300000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.010200px;}
.ls0{letter-spacing:0.010800px;}
.ls3{letter-spacing:0.011160px;}
.ls6{letter-spacing:1.200000px;}
.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;}
}
.ws1{word-spacing:-13.200000px;}
.wsd{word-spacing:-11.880000px;}
.ws0{word-spacing:-10.560000px;}
.ws7{word-spacing:-7.695600px;}
.ws8{word-spacing:-6.156480px;}
.ws6{word-spacing:-2.580000px;}
.ws10{word-spacing:-1.680000px;}
.ws16{word-spacing:-1.200000px;}
.ws2{word-spacing:-0.034980px;}
.ws3{word-spacing:-0.027984px;}
.ws4{word-spacing:0.000000px;}
.ws15{word-spacing:0.300000px;}
.ws14{word-spacing:0.540000px;}
.ws12{word-spacing:0.720000px;}
.wsc{word-spacing:3.000000px;}
.ws9{word-spacing:3.060000px;}
.wsa{word-spacing:6.060000px;}
.wsf{word-spacing:6.420000px;}
.wsb{word-spacing:6.480000px;}
.wse{word-spacing:7.620000px;}
.ws11{word-spacing:8.580000px;}
.ws13{word-spacing:17.040000px;}
.ws5{word-spacing:646.974000px;}
._1{margin-left:-3362.457600px;}
._10{margin-left:-3361.413600px;}
._1d{margin-left:-13.645800px;}
._1c{margin-left:-7.890000px;}
._15{margin-left:-6.547800px;}
._3{margin-left:-5.419800px;}
._c{margin-left:-4.346400px;}
._0{margin-left:-3.302400px;}
._2{margin-left:-1.774200px;}
._a{width:1.305600px;}
._8{width:2.500200px;}
._9{width:3.931200px;}
._d{width:4.942200px;}
._7{width:6.000000px;}
._5{width:7.638000px;}
._6{width:8.856000px;}
._b{width:10.030200px;}
._11{width:11.173800px;}
._4{width:12.192000px;}
._12{width:14.619000px;}
._13{width:16.299000px;}
._19{width:17.767200px;}
._18{width:19.290000px;}
._16{width:21.024000px;}
._17{width:22.182000px;}
._1b{width:23.350200px;}
._14{width:24.810000px;}
._1a{width:25.866000px;}
._f{width:27.340200px;}
._1f{width:28.546200px;}
._1e{width:29.760000px;}
._21{width:35.884200px;}
._20{width:71.820000px;}
._e{width:647.032200px;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(166,29,35);}
.fs6{font-size:27.984000px;}
.fs5{font-size:34.980000px;}
.fs0{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:71.987400px;}
.y96{bottom:100.740300px;}
.y94{bottom:101.622000px;}
.ye4{bottom:105.236250px;}
.y27{bottom:108.425250px;}
.y71{bottom:112.251900px;}
.ya9{bottom:112.421250px;}
.y77{bottom:112.677150px;}
.y9d{bottom:113.696850px;}
.y126{bottom:115.324650px;}
.y93{bottom:115.422000px;}
.ycb{bottom:116.673150px;}
.yec{bottom:119.055150px;}
.y26{bottom:122.225250px;}
.y4b{bottom:122.836500px;}
.ye3{bottom:123.032250px;}
.yc0{bottom:124.351200px;}
.ya2{bottom:125.433000px;}
.y70{bottom:126.052050px;}
.y76{bottom:126.477150px;}
.y9c{bottom:127.496700px;}
.y92{bottom:129.222000px;}
.yd4{bottom:129.429150px;}
.ye2{bottom:132.836250px;}
.yeb{bottom:132.855150px;}
.y125{bottom:133.324650px;}
.y109{bottom:134.316750px;}
.ya8{bottom:136.025250px;}
.ybf{bottom:138.151200px;}
.ya1{bottom:139.233000px;}
.yd3{bottom:139.233150px;}
.y6f{bottom:139.851900px;}
.y25{bottom:140.021250px;}
.y75{bottom:140.277150px;}
.y4a{bottom:140.836500px;}
.y9b{bottom:141.296700px;}
.y91{bottom:143.022000px;}
.ye1{bottom:146.636250px;}
.yea{bottom:146.655150px;}
.ya7{bottom:149.825250px;}
.y9a{bottom:151.100700px;}
.ybe{bottom:151.951200px;}
.y108{bottom:152.316750px;}
.yd2{bottom:153.033150px;}
.y6e{bottom:153.651900px;}
.y124{bottom:155.576550px;}
.y90{bottom:156.822000px;}
.ya0{bottom:157.029150px;}
.y74{bottom:158.073150px;}
.y49{bottom:158.836500px;}
.ye0{bottom:160.436250px;}
.ye9{bottom:160.455150px;}
.ya6{bottom:163.625250px;}
.y99{bottom:164.900700px;}
.ybd{bottom:165.751200px;}
.yd1{bottom:166.833150px;}
.y6d{bottom:167.452050px;}
.y73{bottom:167.877150px;}
.y123{bottom:173.576550px;}
.ydf{bottom:174.236250px;}
.ye8{bottom:174.255150px;}
.y107{bottom:174.568800px;}
.y8f{bottom:174.618000px;}
.y48{bottom:176.836500px;}
.y98{bottom:178.700700px;}
.y6c{bottom:181.251900px;}
.ya5{bottom:181.421250px;}
.y8e{bottom:184.422000px;}
.yd0{bottom:184.629150px;}
.y72{bottom:185.673150px;}
.y24{bottom:187.869150px;}
.ye7{bottom:188.055150px;}
.ya4{bottom:191.225250px;}
.y122{bottom:191.576550px;}
.yde{bottom:192.032250px;}
.ycf{bottom:194.433150px;}
.yca{bottom:194.836500px;}
.y97{bottom:196.496700px;}
.y106{bottom:196.820700px;}
.y8d{bottom:198.222000px;}
.y6b{bottom:199.048050px;}
.ydd{bottom:201.836250px;}
.ye6{bottom:201.855150px;}
.y47{bottom:203.340450px;}
.y23{bottom:205.869150px;}
.yce{bottom:208.233150px;}
.ya3{bottom:209.021250px;}
.ybc{bottom:209.059050px;}
.yc9{bottom:212.836500px;}
.y121{bottom:213.828600px;}
.y105{bottom:214.820700px;}
.ydc{bottom:215.636250px;}
.ye5{bottom:215.655150px;}
.y8c{bottom:216.018000px;}
.y9f{bottom:221.340450px;}
.ycd{bottom:222.033150px;}
.y22{bottom:223.869150px;}
.y8b{bottom:225.822000px;}
.ybb{bottom:227.059050px;}
.ydb{bottom:229.436250px;}
.yc8{bottom:230.836500px;}
.y120{bottom:231.828600px;}
.y104{bottom:232.820700px;}
.y9e{bottom:239.340450px;}
.y8a{bottom:239.622000px;}
.ycc{bottom:239.829150px;}
.y21{bottom:241.869150px;}
.yba{bottom:245.059050px;}
.yda{bottom:247.232250px;}
.y6a{bottom:247.844400px;}
.yc7{bottom:248.836500px;}
.y11f{bottom:249.828600px;}
.y103{bottom:250.820700px;}
.y89{bottom:253.422000px;}
.yd9{bottom:257.036250px;}
.y46{bottom:257.340450px;}
.y20{bottom:259.869150px;}
.yb9{bottom:263.059050px;}
.y69{bottom:265.844400px;}
.yc6{bottom:266.836500px;}
.y88{bottom:267.222000px;}
.y11e{bottom:267.828600px;}
.y102{bottom:268.820700px;}
.yd8{bottom:270.836250px;}
.y45{bottom:275.340450px;}
.y1f{bottom:277.869150px;}
.y87{bottom:281.022000px;}
.yb8{bottom:281.059050px;}
.y68{bottom:283.844400px;}
.yd7{bottom:284.636250px;}
.yc5{bottom:284.836500px;}
.y11d{bottom:290.080500px;}
.y101{bottom:291.072750px;}
.y44{bottom:293.340450px;}
.y1e{bottom:295.869150px;}
.yd6{bottom:298.436250px;}
.y86{bottom:298.818000px;}
.yb7{bottom:299.059050px;}
.y67{bottom:301.844400px;}
.yc4{bottom:302.836500px;}
.y11c{bottom:308.080500px;}
.y85{bottom:308.622000px;}
.y43{bottom:311.340450px;}
.y100{bottom:313.324650px;}
.y1d{bottom:313.869150px;}
.yd5{bottom:316.232250px;}
.yb6{bottom:317.059050px;}
.y66{bottom:319.844400px;}
.yc3{bottom:320.836500px;}
.y84{bottom:322.422000px;}
.y11b{bottom:326.080500px;}
.y42{bottom:329.340450px;}
.y95{bottom:331.140450px;}
.y1c{bottom:331.869150px;}
.yb5{bottom:335.059050px;}
.yff{bottom:335.576550px;}
.y83{bottom:336.222000px;}
.y65{bottom:337.844400px;}
.yc2{bottom:338.836500px;}
.y41{bottom:347.340450px;}
.y11a{bottom:348.332550px;}
.y1b{bottom:349.869150px;}
.y82{bottom:350.022000px;}
.yb4{bottom:353.059050px;}
.yfe{bottom:353.576550px;}
.y64{bottom:355.844400px;}
.yc1{bottom:356.836500px;}
.y81{bottom:363.822000px;}
.y40{bottom:365.340450px;}
.y119{bottom:366.332550px;}
.y1a{bottom:367.869150px;}
.yb3{bottom:371.059050px;}
.yfd{bottom:371.576550px;}
.y63{bottom:373.844400px;}
.y80{bottom:377.622000px;}
.y3f{bottom:383.340450px;}
.y118{bottom:384.332550px;}
.y19{bottom:385.869150px;}
.yb2{bottom:389.059050px;}
.yfc{bottom:389.576550px;}
.y7f{bottom:391.422000px;}
.y62{bottom:391.844400px;}
.y3e{bottom:401.340450px;}
.y117{bottom:402.332550px;}
.y18{bottom:403.869150px;}
.y7e{bottom:405.222000px;}
.yb1{bottom:407.059050px;}
.y61{bottom:409.844400px;}
.yfb{bottom:411.828600px;}
.y7d{bottom:419.022150px;}
.y3d{bottom:419.340450px;}
.y116{bottom:420.332550px;}
.y17{bottom:421.869150px;}
.yb0{bottom:425.059050px;}
.y60{bottom:427.844400px;}
.y7c{bottom:432.822000px;}
.yfa{bottom:434.080500px;}
.y3c{bottom:437.340450px;}
.y16{bottom:439.869150px;}
.y115{bottom:442.584450px;}
.yaf{bottom:443.059050px;}
.y5f{bottom:445.844400px;}
.y7b{bottom:446.622000px;}
.yf9{bottom:452.080500px;}
.y3b{bottom:455.340300px;}
.y15{bottom:457.869150px;}
.y114{bottom:460.584450px;}
.y5e{bottom:463.844400px;}
.y7a{bottom:464.418000px;}
.y3a{bottom:473.340300px;}
.y79{bottom:474.222000px;}
.yf8{bottom:474.332550px;}
.y14{bottom:475.869000px;}
.y113{bottom:478.584450px;}
.yae{bottom:479.059050px;}
.y5d{bottom:481.844400px;}
.y39{bottom:491.340300px;}
.y78{bottom:492.018000px;}
.yf7{bottom:492.332550px;}
.y13{bottom:493.869000px;}
.y112{bottom:496.584450px;}
.yad{bottom:497.059050px;}
.y5c{bottom:499.844400px;}
.y38{bottom:509.340300px;}
.y12{bottom:511.869000px;}
.yf6{bottom:514.584450px;}
.y5b{bottom:517.844400px;}
.y111{bottom:518.836500px;}
.y37{bottom:527.340300px;}
.y11{bottom:529.869000px;}
.yf5{bottom:532.584450px;}
.y5a{bottom:535.844400px;}
.y110{bottom:536.836500px;}
.y36{bottom:545.340300px;}
.y10{bottom:547.869000px;}
.y59{bottom:553.844400px;}
.yf4{bottom:554.836500px;}
.y35{bottom:563.340300px;}
.yf{bottom:565.869000px;}
.y58{bottom:571.844400px;}
.yf3{bottom:572.836500px;}
.y34{bottom:581.340300px;}
.ye{bottom:583.869000px;}
.y57{bottom:589.844400px;}
.yf2{bottom:595.088400px;}
.y33{bottom:599.340300px;}
.yd{bottom:601.869000px;}
.y56{bottom:607.844400px;}
.y10f{bottom:613.088400px;}
.y32{bottom:617.340300px;}
.y55{bottom:625.844400px;}
.yc{bottom:628.372950px;}
.y10e{bottom:631.088400px;}
.y31{bottom:635.340300px;}
.yf1{bottom:639.592350px;}
.y54{bottom:643.844400px;}
.y10d{bottom:649.088400px;}
.y30{bottom:653.340450px;}
.yf0{bottom:657.592350px;}
.y53{bottom:661.844400px;}
.y2f{bottom:671.340450px;}
.yef{bottom:675.592350px;}
.y52{bottom:679.844400px;}
.yb{bottom:682.372950px;}
.y2e{bottom:689.340450px;}
.yee{bottom:693.592350px;}
.y51{bottom:697.844400px;}
.ya{bottom:698.572950px;}
.y2d{bottom:707.340450px;}
.yed{bottom:711.592350px;}
.y50{bottom:715.844400px;}
.y9{bottom:719.025000px;}
.y2c{bottom:725.340450px;}
.y4f{bottom:733.844400px;}
.y2b{bottom:743.340450px;}
.y10c{bottom:747.592350px;}
.y4e{bottom:751.844400px;}
.y8{bottom:752.780850px;}
.y2a{bottom:761.340450px;}
.y10b{bottom:765.592350px;}
.y4d{bottom:769.844400px;}
.y7{bottom:770.780850px;}
.y10a{bottom:783.592350px;}
.y29{bottom:787.844400px;}
.yac{bottom:792.611100px;}
.y6{bottom:797.284800px;}
.y4c{bottom:805.844400px;}
.yab{bottom:808.811100px;}
.y28{bottom:823.844400px;}
.yaa{bottom:825.011100px;}
.y5{bottom:857.860050px;}
.y3{bottom:893.996700px;}
.y2{bottom:935.134500px;}
.y1{bottom:948.634500px;}
.hd{height:25.781025px;}
.h9{height:25.781625px;}
.h2{height:33.632812px;}
.ha{height:41.765625px;}
.h8{height:41.953125px;}
.hb{height:42.451172px;}
.h6{height:42.539062px;}
.hc{height:44.438672px;}
.h3{height:46.986328px;}
.h4{height:52.207031px;}
.h7{height:62.648438px;}
.h5{height:67.125000px;}
.h1{height:999.000000px;}
.h0{height:999.213000px;}
.w1{width:701.250000px;}
.w0{width:701.575500px;}
.x0{left:0.000000px;}
.x1{left:85.039350px;}
.x5{left:87.165300px;}
.xf{left:100.200150px;}
.x7{left:101.359650px;}
.xd{left:106.299150px;}
.x8{left:107.326650px;}
.xe{left:110.551200px;}
.xb{left:189.548700px;}
.x9{left:198.169050px;}
.xc{left:205.369050px;}
.x6{left:267.738150px;}
.x4{left:281.975250px;}
.xa{left:291.553500px;}
.x3{left:444.697650px;}
.x2{left:532.787400px;}
@media print{
.v2{vertical-align:-14.208000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760000pt;}
.ls4{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.266667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.009067pt;}
.ls0{letter-spacing:0.009600pt;}
.ls3{letter-spacing:0.009920pt;}
.ls6{letter-spacing:1.066667pt;}
.ws1{word-spacing:-11.733333pt;}
.wsd{word-spacing:-10.560000pt;}
.ws0{word-spacing:-9.386667pt;}
.ws7{word-spacing:-6.840533pt;}
.ws8{word-spacing:-5.472427pt;}
.ws6{word-spacing:-2.293333pt;}
.ws10{word-spacing:-1.493333pt;}
.ws16{word-spacing:-1.066667pt;}
.ws2{word-spacing:-0.031093pt;}
.ws3{word-spacing:-0.024875pt;}
.ws4{word-spacing:0.000000pt;}
.ws15{word-spacing:0.266667pt;}
.ws14{word-spacing:0.480000pt;}
.ws12{word-spacing:0.640000pt;}
.wsc{word-spacing:2.666667pt;}
.ws9{word-spacing:2.720000pt;}
.wsa{word-spacing:5.386667pt;}
.wsf{word-spacing:5.706667pt;}
.wsb{word-spacing:5.760000pt;}
.wse{word-spacing:6.773333pt;}
.ws11{word-spacing:7.626667pt;}
.ws13{word-spacing:15.146667pt;}
.ws5{word-spacing:575.088000pt;}
._1{margin-left:-2988.851200pt;}
._10{margin-left:-2987.923200pt;}
._1d{margin-left:-12.129600pt;}
._1c{margin-left:-7.013333pt;}
._15{margin-left:-5.820267pt;}
._3{margin-left:-4.817600pt;}
._c{margin-left:-3.863467pt;}
._0{margin-left:-2.935467pt;}
._2{margin-left:-1.577067pt;}
._a{width:1.160533pt;}
._8{width:2.222400pt;}
._9{width:3.494400pt;}
._d{width:4.393067pt;}
._7{width:5.333333pt;}
._5{width:6.789333pt;}
._6{width:7.872000pt;}
._b{width:8.915733pt;}
._11{width:9.932267pt;}
._4{width:10.837333pt;}
._12{width:12.994667pt;}
._13{width:14.488000pt;}
._19{width:15.793067pt;}
._18{width:17.146667pt;}
._16{width:18.688000pt;}
._17{width:19.717333pt;}
._1b{width:20.755733pt;}
._14{width:22.053333pt;}
._1a{width:22.992000pt;}
._f{width:24.302400pt;}
._1f{width:25.374400pt;}
._1e{width:26.453333pt;}
._21{width:31.897067pt;}
._20{width:63.840000pt;}
._e{width:575.139733pt;}
.fs6{font-size:24.874667pt;}
.fs5{font-size:31.093333pt;}
.fs0{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:63.988800pt;}
.y96{bottom:89.546933pt;}
.y94{bottom:90.330667pt;}
.ye4{bottom:93.543333pt;}
.y27{bottom:96.378000pt;}
.y71{bottom:99.779467pt;}
.ya9{bottom:99.930000pt;}
.y77{bottom:100.157467pt;}
.y9d{bottom:101.063867pt;}
.y126{bottom:102.510800pt;}
.y93{bottom:102.597333pt;}
.ycb{bottom:103.709467pt;}
.yec{bottom:105.826800pt;}
.y26{bottom:108.644667pt;}
.y4b{bottom:109.188000pt;}
.ye3{bottom:109.362000pt;}
.yc0{bottom:110.534400pt;}
.ya2{bottom:111.496000pt;}
.y70{bottom:112.046267pt;}
.y76{bottom:112.424133pt;}
.y9c{bottom:113.330400pt;}
.y92{bottom:114.864000pt;}
.yd4{bottom:115.048133pt;}
.ye2{bottom:118.076667pt;}
.yeb{bottom:118.093467pt;}
.y125{bottom:118.510800pt;}
.y109{bottom:119.392667pt;}
.ya8{bottom:120.911333pt;}
.ybf{bottom:122.801067pt;}
.ya1{bottom:123.762667pt;}
.yd3{bottom:123.762800pt;}
.y6f{bottom:124.312800pt;}
.y25{bottom:124.463333pt;}
.y75{bottom:124.690800pt;}
.y4a{bottom:125.188000pt;}
.y9b{bottom:125.597067pt;}
.y91{bottom:127.130667pt;}
.ye1{bottom:130.343333pt;}
.yea{bottom:130.360133pt;}
.ya7{bottom:133.178000pt;}
.y9a{bottom:134.311733pt;}
.ybe{bottom:135.067733pt;}
.y108{bottom:135.392667pt;}
.yd2{bottom:136.029467pt;}
.y6e{bottom:136.579467pt;}
.y124{bottom:138.290267pt;}
.y90{bottom:139.397333pt;}
.ya0{bottom:139.581467pt;}
.y74{bottom:140.509467pt;}
.y49{bottom:141.188000pt;}
.ye0{bottom:142.610000pt;}
.ye9{bottom:142.626800pt;}
.ya6{bottom:145.444667pt;}
.y99{bottom:146.578400pt;}
.ybd{bottom:147.334400pt;}
.yd1{bottom:148.296133pt;}
.y6d{bottom:148.846267pt;}
.y73{bottom:149.224133pt;}
.y123{bottom:154.290267pt;}
.ydf{bottom:154.876667pt;}
.ye8{bottom:154.893467pt;}
.y107{bottom:155.172267pt;}
.y8f{bottom:155.216000pt;}
.y48{bottom:157.188000pt;}
.y98{bottom:158.845067pt;}
.y6c{bottom:161.112800pt;}
.ya5{bottom:161.263333pt;}
.y8e{bottom:163.930667pt;}
.yd0{bottom:164.114800pt;}
.y72{bottom:165.042800pt;}
.y24{bottom:166.994800pt;}
.ye7{bottom:167.160133pt;}
.ya4{bottom:169.978000pt;}
.y122{bottom:170.290267pt;}
.yde{bottom:170.695333pt;}
.ycf{bottom:172.829467pt;}
.yca{bottom:173.188000pt;}
.y97{bottom:174.663733pt;}
.y106{bottom:174.951733pt;}
.y8d{bottom:176.197333pt;}
.y6b{bottom:176.931600pt;}
.ydd{bottom:179.410000pt;}
.ye6{bottom:179.426800pt;}
.y47{bottom:180.747067pt;}
.y23{bottom:182.994800pt;}
.yce{bottom:185.096133pt;}
.ya3{bottom:185.796667pt;}
.ybc{bottom:185.830267pt;}
.yc9{bottom:189.188000pt;}
.y121{bottom:190.069867pt;}
.y105{bottom:190.951733pt;}
.ydc{bottom:191.676667pt;}
.ye5{bottom:191.693467pt;}
.y8c{bottom:192.016000pt;}
.y9f{bottom:196.747067pt;}
.ycd{bottom:197.362800pt;}
.y22{bottom:198.994800pt;}
.y8b{bottom:200.730667pt;}
.ybb{bottom:201.830267pt;}
.ydb{bottom:203.943333pt;}
.yc8{bottom:205.188000pt;}
.y120{bottom:206.069867pt;}
.y104{bottom:206.951733pt;}
.y9e{bottom:212.747067pt;}
.y8a{bottom:212.997333pt;}
.ycc{bottom:213.181467pt;}
.y21{bottom:214.994800pt;}
.yba{bottom:217.830267pt;}
.yda{bottom:219.762000pt;}
.y6a{bottom:220.306133pt;}
.yc7{bottom:221.188000pt;}
.y11f{bottom:222.069867pt;}
.y103{bottom:222.951733pt;}
.y89{bottom:225.264000pt;}
.yd9{bottom:228.476667pt;}
.y46{bottom:228.747067pt;}
.y20{bottom:230.994800pt;}
.yb9{bottom:233.830267pt;}
.y69{bottom:236.306133pt;}
.yc6{bottom:237.188000pt;}
.y88{bottom:237.530667pt;}
.y11e{bottom:238.069867pt;}
.y102{bottom:238.951733pt;}
.yd8{bottom:240.743333pt;}
.y45{bottom:244.747067pt;}
.y1f{bottom:246.994800pt;}
.y87{bottom:249.797333pt;}
.yb8{bottom:249.830267pt;}
.y68{bottom:252.306133pt;}
.yd7{bottom:253.010000pt;}
.yc5{bottom:253.188000pt;}
.y11d{bottom:257.849333pt;}
.y101{bottom:258.731333pt;}
.y44{bottom:260.747067pt;}
.y1e{bottom:262.994800pt;}
.yd6{bottom:265.276667pt;}
.y86{bottom:265.616000pt;}
.yb7{bottom:265.830267pt;}
.y67{bottom:268.306133pt;}
.yc4{bottom:269.188000pt;}
.y11c{bottom:273.849333pt;}
.y85{bottom:274.330667pt;}
.y43{bottom:276.747067pt;}
.y100{bottom:278.510800pt;}
.y1d{bottom:278.994800pt;}
.yd5{bottom:281.095333pt;}
.yb6{bottom:281.830267pt;}
.y66{bottom:284.306133pt;}
.yc3{bottom:285.188000pt;}
.y84{bottom:286.597333pt;}
.y11b{bottom:289.849333pt;}
.y42{bottom:292.747067pt;}
.y95{bottom:294.347067pt;}
.y1c{bottom:294.994800pt;}
.yb5{bottom:297.830267pt;}
.yff{bottom:298.290267pt;}
.y83{bottom:298.864000pt;}
.y65{bottom:300.306133pt;}
.yc2{bottom:301.188000pt;}
.y41{bottom:308.747067pt;}
.y11a{bottom:309.628933pt;}
.y1b{bottom:310.994800pt;}
.y82{bottom:311.130667pt;}
.yb4{bottom:313.830267pt;}
.yfe{bottom:314.290267pt;}
.y64{bottom:316.306133pt;}
.yc1{bottom:317.188000pt;}
.y81{bottom:323.397333pt;}
.y40{bottom:324.747067pt;}
.y119{bottom:325.628933pt;}
.y1a{bottom:326.994800pt;}
.yb3{bottom:329.830267pt;}
.yfd{bottom:330.290267pt;}
.y63{bottom:332.306133pt;}
.y80{bottom:335.664000pt;}
.y3f{bottom:340.747067pt;}
.y118{bottom:341.628933pt;}
.y19{bottom:342.994800pt;}
.yb2{bottom:345.830267pt;}
.yfc{bottom:346.290267pt;}
.y7f{bottom:347.930667pt;}
.y62{bottom:348.306133pt;}
.y3e{bottom:356.747067pt;}
.y117{bottom:357.628933pt;}
.y18{bottom:358.994800pt;}
.y7e{bottom:360.197333pt;}
.yb1{bottom:361.830267pt;}
.y61{bottom:364.306133pt;}
.yfb{bottom:366.069867pt;}
.y7d{bottom:372.464133pt;}
.y3d{bottom:372.747067pt;}
.y116{bottom:373.628933pt;}
.y17{bottom:374.994800pt;}
.yb0{bottom:377.830267pt;}
.y60{bottom:380.306133pt;}
.y7c{bottom:384.730667pt;}
.yfa{bottom:385.849333pt;}
.y3c{bottom:388.747067pt;}
.y16{bottom:390.994800pt;}
.y115{bottom:393.408400pt;}
.yaf{bottom:393.830267pt;}
.y5f{bottom:396.306133pt;}
.y7b{bottom:396.997333pt;}
.yf9{bottom:401.849333pt;}
.y3b{bottom:404.746933pt;}
.y15{bottom:406.994800pt;}
.y114{bottom:409.408400pt;}
.y5e{bottom:412.306133pt;}
.y7a{bottom:412.816000pt;}
.y3a{bottom:420.746933pt;}
.y79{bottom:421.530667pt;}
.yf8{bottom:421.628933pt;}
.y14{bottom:422.994667pt;}
.y113{bottom:425.408400pt;}
.yae{bottom:425.830267pt;}
.y5d{bottom:428.306133pt;}
.y39{bottom:436.746933pt;}
.y78{bottom:437.349333pt;}
.yf7{bottom:437.628933pt;}
.y13{bottom:438.994667pt;}
.y112{bottom:441.408400pt;}
.yad{bottom:441.830267pt;}
.y5c{bottom:444.306133pt;}
.y38{bottom:452.746933pt;}
.y12{bottom:454.994667pt;}
.yf6{bottom:457.408400pt;}
.y5b{bottom:460.306133pt;}
.y111{bottom:461.188000pt;}
.y37{bottom:468.746933pt;}
.y11{bottom:470.994667pt;}
.yf5{bottom:473.408400pt;}
.y5a{bottom:476.306133pt;}
.y110{bottom:477.188000pt;}
.y36{bottom:484.746933pt;}
.y10{bottom:486.994667pt;}
.y59{bottom:492.306133pt;}
.yf4{bottom:493.188000pt;}
.y35{bottom:500.746933pt;}
.yf{bottom:502.994667pt;}
.y58{bottom:508.306133pt;}
.yf3{bottom:509.188000pt;}
.y34{bottom:516.746933pt;}
.ye{bottom:518.994667pt;}
.y57{bottom:524.306133pt;}
.yf2{bottom:528.967467pt;}
.y33{bottom:532.746933pt;}
.yd{bottom:534.994667pt;}
.y56{bottom:540.306133pt;}
.y10f{bottom:544.967467pt;}
.y32{bottom:548.746933pt;}
.y55{bottom:556.306133pt;}
.yc{bottom:558.553733pt;}
.y10e{bottom:560.967467pt;}
.y31{bottom:564.746933pt;}
.yf1{bottom:568.526533pt;}
.y54{bottom:572.306133pt;}
.y10d{bottom:576.967467pt;}
.y30{bottom:580.747067pt;}
.yf0{bottom:584.526533pt;}
.y53{bottom:588.306133pt;}
.y2f{bottom:596.747067pt;}
.yef{bottom:600.526533pt;}
.y52{bottom:604.306133pt;}
.yb{bottom:606.553733pt;}
.y2e{bottom:612.747067pt;}
.yee{bottom:616.526533pt;}
.y51{bottom:620.306133pt;}
.ya{bottom:620.953733pt;}
.y2d{bottom:628.747067pt;}
.yed{bottom:632.526533pt;}
.y50{bottom:636.306133pt;}
.y9{bottom:639.133333pt;}
.y2c{bottom:644.747067pt;}
.y4f{bottom:652.306133pt;}
.y2b{bottom:660.747067pt;}
.y10c{bottom:664.526533pt;}
.y4e{bottom:668.306133pt;}
.y8{bottom:669.138533pt;}
.y2a{bottom:676.747067pt;}
.y10b{bottom:680.526533pt;}
.y4d{bottom:684.306133pt;}
.y7{bottom:685.138533pt;}
.y10a{bottom:696.526533pt;}
.y29{bottom:700.306133pt;}
.yac{bottom:704.543200pt;}
.y6{bottom:708.697600pt;}
.y4c{bottom:716.306133pt;}
.yab{bottom:718.943200pt;}
.y28{bottom:732.306133pt;}
.yaa{bottom:733.343200pt;}
.y5{bottom:762.542267pt;}
.y3{bottom:794.663733pt;}
.y2{bottom:831.230667pt;}
.y1{bottom:843.230667pt;}
.hd{height:22.916467pt;}
.h9{height:22.917000pt;}
.h2{height:29.895833pt;}
.ha{height:37.125000pt;}
.h8{height:37.291667pt;}
.hb{height:37.734375pt;}
.h6{height:37.812500pt;}
.hc{height:39.501042pt;}
.h3{height:41.765625pt;}
.h4{height:46.406250pt;}
.h7{height:55.687500pt;}
.h5{height:59.666667pt;}
.h1{height:888.000000pt;}
.h0{height:888.189333pt;}
.w1{width:623.333333pt;}
.w0{width:623.622667pt;}
.x0{left:0.000000pt;}
.x1{left:75.590533pt;}
.x5{left:77.480267pt;}
.xf{left:89.066800pt;}
.x7{left:90.097467pt;}
.xd{left:94.488133pt;}
.x8{left:95.401467pt;}
.xe{left:98.267733pt;}
.xb{left:168.487733pt;}
.x9{left:176.150267pt;}
.xc{left:182.550267pt;}
.x6{left:237.989467pt;}
.x4{left:250.644667pt;}
.xa{left:259.158667pt;}
.x3{left:395.286800pt;}
.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; }
  