
    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_e3d32e53aba6a3e4d0f6dfb6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_d6cce44d55ab47ff66beb254.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.123047;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_dae34e0f17aa1094fe3864fa.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_82f86a0f3c747ce3bb857a24.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_de75e4c33ba1b1c670d8ba5b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_fb7c265ebdc6ecd60a3b8805.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_826bb5e045c4fb1e9ee4afea.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.000000px;}
.v1{vertical-align:24.120000px;}
.lsd{letter-spacing:-0.306600px;}
.ls6{letter-spacing:-0.270000px;}
.ls9{letter-spacing:-0.246000px;}
.ls3{letter-spacing:-0.180000px;}
.ls7{letter-spacing:-0.153600px;}
.ls12{letter-spacing:-0.126000px;}
.ls10{letter-spacing:-0.108000px;}
.lsc{letter-spacing:-0.094800px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.018000px;}
.lsa{letter-spacing:0.053280px;}
.ls5{letter-spacing:0.090000px;}
.ls14{letter-spacing:0.108000px;}
.ls13{letter-spacing:0.120000px;}
.lsb{letter-spacing:0.143640px;}
.ls8{letter-spacing:0.153600px;}
.ls0{letter-spacing:0.180000px;}
.ls11{letter-spacing:0.540000px;}
.lse{letter-spacing:0.810000px;}
.ls4{letter-spacing:5.130000px;}
.lsf{letter-spacing:24.228000px;}
.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;}
}
.ws7{word-spacing:-15.183600px;}
.ws4{word-spacing:-15.030000px;}
.ws6{word-spacing:-14.876400px;}
.ws10{word-spacing:-13.608000px;}
.ws0{word-spacing:-13.518000px;}
.ws1{word-spacing:-13.500000px;}
.wse{word-spacing:-13.392000px;}
.wsf{word-spacing:-13.374000px;}
.wsd{word-spacing:-12.150000px;}
.wsb{word-spacing:-12.113640px;}
.ws8{word-spacing:-11.970000px;}
.ws9{word-spacing:-11.875200px;}
.ws2{word-spacing:-10.530000px;}
.ws3{word-spacing:-9.720000px;}
.wsa{word-spacing:-7.523280px;}
.wsc{word-spacing:-7.163400px;}
.ws5{word-spacing:0.000000px;}
._9{margin-left:-3.607200px;}
._3{margin-left:-2.089680px;}
._1{margin-left:-1.022040px;}
._0{width:1.185840px;}
._2{width:2.231280px;}
._4{width:3.243840px;}
._5{width:4.544160px;}
._6{width:6.432840px;}
._7{width:7.440360px;}
._c{width:8.505960px;}
._a{width:10.160280px;}
._b{width:11.348160px;}
._19{width:12.349680px;}
._14{width:14.778000px;}
._11{width:16.052040px;}
._20{width:17.249760px;}
._1b{width:21.276000px;}
._1a{width:22.464000px;}
._24{width:24.084000px;}
._23{width:30.024000px;}
._1e{width:31.320000px;}
._1d{width:32.616000px;}
._13{width:36.342000px;}
._12{width:37.368000px;}
._21{width:38.610000px;}
._15{width:41.202000px;}
._1f{width:43.848000px;}
._8{width:44.940000px;}
._1c{width:48.114000px;}
._f{width:50.171160px;}
._10{width:52.078560px;}
._17{width:55.674000px;}
._16{width:56.808000px;}
._22{width:61.668000px;}
._18{width:136.674000px;}
._e{width:250.188000px;}
._d{width:346.260000px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:29.880000px;}
.fs3{font-size:38.880000px;}
.fs2{font-size:42.120000px;}
.fs5{font-size:47.880000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:60.120000px;}
.fs1{font-size:65.880000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000092px;}
.y7c{bottom:2.610000px;}
.y7e{bottom:2.700000px;}
.y3{bottom:73.349908px;}
.y2c{bottom:94.409908px;}
.y58{bottom:105.479908px;}
.ya5{bottom:106.829908px;}
.y2b{bottom:114.299908px;}
.y101{bottom:124.739908px;}
.y57{bottom:125.369908px;}
.yb0{bottom:126.179908px;}
.ya4{bottom:126.629908px;}
.y78{bottom:130.859908px;}
.yda{bottom:133.739908px;}
.y2a{bottom:134.099908px;}
.yf0{bottom:138.239908px;}
.yaf{bottom:143.999908px;}
.y56{bottom:145.169908px;}
.ya3{bottom:146.429908px;}
.y100{bottom:147.059908px;}
.y77{bottom:150.659908px;}
.yd9{bottom:151.559908px;}
.y29{bottom:153.989908px;}
.yef{bottom:156.059908px;}
.yae{bottom:161.909908px;}
.y55{bottom:164.969908px;}
.ya2{bottom:166.319908px;}
.yd8{bottom:169.469908px;}
.y76{bottom:170.549908px;}
.y28{bottom:173.789908px;}
.yee{bottom:178.469908px;}
.yad{bottom:184.229908px;}
.y54{bottom:184.859908px;}
.ya1{bottom:186.119908px;}
.yff{bottom:187.289908px;}
.y75{bottom:190.349908px;}
.yd7{bottom:191.789908px;}
.y27{bottom:193.589908px;}
.yed{bottom:196.289908px;}
.yac{bottom:202.049908px;}
.y53{bottom:204.659908px;}
.yfe{bottom:205.109908px;}
.ya0{bottom:206.009908px;}
.yd6{bottom:209.609908px;}
.y74{bottom:210.149908px;}
.y26{bottom:213.479908px;}
.yec{bottom:214.109908px;}
.yab{bottom:219.959908px;}
.y52{bottom:224.549908px;}
.y9f{bottom:225.809908px;}
.yd5{bottom:227.519908px;}
.y73{bottom:230.039908px;}
.y25{bottom:233.279908px;}
.yeb{bottom:236.519908px;}
.yaa{bottom:237.779908px;}
.y51{bottom:244.349908px;}
.yfd{bottom:245.339908px;}
.y9e{bottom:245.609908px;}
.y72{bottom:249.839908px;}
.y24{bottom:253.169908px;}
.yea{bottom:254.339908px;}
.ya9{bottom:260.729908px;}
.y50{bottom:264.149908px;}
.y9d{bottom:265.499908px;}
.yd4{bottom:267.659908px;}
.ye9{bottom:272.159908px;}
.y23{bottom:272.969908px;}
.y71{bottom:278.729908px;}
.y4f{bottom:284.039908px;}
.y9c{bottom:285.299908px;}
.yd3{bottom:285.569908px;}
.ya8{bottom:289.529908px;}
.y22{bottom:292.769908px;}
.ye8{bottom:294.569908px;}
.yfc{bottom:303.389908px;}
.y4e{bottom:303.839908px;}
.y9b{bottom:305.189908px;}
.yd2{bottom:307.889908px;}
.ye7{bottom:312.389908px;}
.y70{bottom:316.529908px;}
.ya7{bottom:318.329908px;}
.y21{bottom:321.659908px;}
.y4d{bottom:323.729908px;}
.y9a{bottom:324.989908px;}
.yd1{bottom:325.709908px;}
.ye6{bottom:330.209908px;}
.y6f{bottom:336.359908px;}
.y4c{bottom:343.559908px;}
.yfb{bottom:343.649908px;}
.y99{bottom:344.819908px;}
.yd0{bottom:348.149908px;}
.y6e{bottom:356.249908px;}
.y20{bottom:358.949908px;}
.yfa{bottom:361.469908px;}
.y4b{bottom:363.359908px;}
.ycf{bottom:365.969908px;}
.y98{bottom:373.709908px;}
.y6d{bottom:376.049908px;}
.y4a{bottom:383.249908px;}
.yce{bottom:383.879908px;}
.y1f{bottom:385.769908px;}
.ye5{bottom:388.379908px;}
.y6c{bottom:395.939908px;}
.yf9{bottom:401.699908px;}
.y49{bottom:403.049908px;}
.y1e{bottom:403.679908px;}
.ycd{bottom:406.199908px;}
.y97{bottom:411.509908px;}
.y6b{bottom:415.739908px;}
.y1d{bottom:421.499908px;}
.y48{bottom:422.939908px;}
.ycc{bottom:424.019908px;}
.y96{bottom:431.399908px;}
.y6a{bottom:435.539908px;}
.y1c{bottom:439.409908px;}
.ycb{bottom:441.929908px;}
.y47{bottom:442.739908px;}
.ye4{bottom:446.429908px;}
.y95{bottom:451.199908px;}
.y69{bottom:455.429908px;}
.y1b{bottom:457.229908px;}
.yf8{bottom:459.749908px;}
.y46{bottom:462.539908px;}
.yca{bottom:464.249908px;}
.y94{bottom:470.999908px;}
.y1a{bottom:475.049908px;}
.y68{bottom:475.229908px;}
.yf7{bottom:477.569908px;}
.yc9{bottom:482.069908px;}
.y45{bottom:482.429908px;}
.y93{bottom:490.889908px;}
.y19{bottom:492.959908px;}
.y67{bottom:495.119908px;}
.yc8{bottom:499.979908px;}
.y44{bottom:502.229908px;}
.ye3{bottom:504.479908px;}
.y18{bottom:510.779908px;}
.y66{bottom:514.919908px;}
.yf6{bottom:517.799908px;}
.y92{bottom:518.609908px;}
.y43{bottom:522.119908px;}
.yc7{bottom:522.299908px;}
.y17{bottom:528.599908px;}
.y65{bottom:534.719908px;}
.yf5{bottom:535.619908px;}
.y91{bottom:539.490000px;}
.yc6{bottom:540.119908px;}
.y42{bottom:541.919908px;}
.y16{bottom:546.509908px;}
.y90{bottom:554.070000px;}
.y64{bottom:554.609908px;}
.ye2{bottom:558.029908px;}
.y41{bottom:561.719908px;}
.yc5{bottom:562.529908px;}
.y15{bottom:564.329908px;}
.y8f{bottom:568.650000px;}
.y63{bottom:574.409908px;}
.ye1{bottom:575.849908px;}
.yc4{bottom:580.349908px;}
.y40{bottom:581.609908px;}
.y14{bottom:582.149908px;}
.y8e{bottom:583.140000px;}
.yf4{bottom:593.669908px;}
.y62{bottom:594.299908px;}
.y8d{bottom:597.720000px;}
.yc3{bottom:598.169908px;}
.y3f{bottom:601.409908px;}
.yf3{bottom:611.579908px;}
.y61{bottom:614.099908px;}
.yc2{bottom:616.079908px;}
.y13{bottom:618.599908px;}
.y3e{bottom:621.299908px;}
.ya6{bottom:623.099908px;}
.y8c{bottom:625.979908px;}
.y60{bottom:633.929908px;}
.y12{bottom:638.429908px;}
.y3d{bottom:641.129908px;}
.y8b{bottom:641.849908px;}
.ye0{bottom:651.839908px;}
.y5f{bottom:653.819908px;}
.yc1{bottom:656.339908px;}
.y11{bottom:658.319908px;}
.y3c{bottom:660.929908px;}
.yf2{bottom:669.659908px;}
.y5e{bottom:673.619908px;}
.yc0{bottom:674.159908px;}
.y8a{bottom:676.859908px;}
.y10{bottom:678.119908px;}
.y3b{bottom:680.819908px;}
.ydf{bottom:691.979908px;}
.y5d{bottom:693.509908px;}
.ybf{bottom:696.479908px;}
.y89{bottom:696.659908px;}
.yf{bottom:697.919908px;}
.y3a{bottom:700.619908px;}
.yde{bottom:709.889908px;}
.y5c{bottom:713.309908px;}
.ybe{bottom:714.389908px;}
.y88{bottom:716.549908px;}
.ye{bottom:717.809908px;}
.y39{bottom:720.509908px;}
.yf1{bottom:727.709908px;}
.ybd{bottom:732.209908px;}
.y5b{bottom:733.109908px;}
.y87{bottom:736.349908px;}
.y38{bottom:740.309908px;}
.yd{bottom:742.829908px;}
.ybc{bottom:750.029908px;}
.y5a{bottom:752.999908px;}
.y86{bottom:756.149908px;}
.yc{bottom:757.499908px;}
.y37{bottom:760.109908px;}
.ydd{bottom:767.939908px;}
.ybb{bottom:772.439908px;}
.y85{bottom:776.039908px;}
.yb{bottom:777.299908px;}
.y36{bottom:779.999908px;}
.y59{bottom:781.799908px;}
.ydc{bottom:785.759908px;}
.yba{bottom:790.259908px;}
.y84{bottom:795.839908px;}
.y35{bottom:799.799908px;}
.ya{bottom:802.319908px;}
.yb9{bottom:808.079908px;}
.y34{bottom:819.689908px;}
.y83{bottom:823.559908px;}
.yb8{bottom:825.989908px;}
.y9{bottom:835.619908px;}
.y33{bottom:839.489908px;}
.ydb{bottom:843.809908px;}
.y82{bottom:844.530000px;}
.yb7{bottom:848.309908px;}
.y8{bottom:857.399908px;}
.y81{bottom:859.020000px;}
.y32{bottom:859.289908px;}
.yb6{bottom:866.219908px;}
.y80{bottom:873.600000px;}
.y31{bottom:879.179908px;}
.y7{bottom:879.269908px;}
.yb5{bottom:884.039908px;}
.y7f{bottom:888.180000px;}
.y30{bottom:898.979908px;}
.yb4{bottom:901.859908px;}
.y7d{bottom:902.670000px;}
.y7b{bottom:917.250000px;}
.y2f{bottom:918.869908px;}
.y6{bottom:919.049908px;}
.yb3{bottom:924.269908px;}
.y2e{bottom:938.699908px;}
.y5{bottom:940.949908px;}
.yb2{bottom:942.119908px;}
.y7a{bottom:945.539908px;}
.y2d{bottom:958.499908px;}
.yb1{bottom:959.939908px;}
.y79{bottom:961.379908px;}
.y4{bottom:962.729908px;}
.y2{bottom:999.539908px;}
.h10{height:13.770000px;}
.hd{height:13.800000px;}
.he{height:13.860000px;}
.h7{height:38.139609px;}
.h12{height:46.968223px;}
.hf{height:46.991602px;}
.h11{height:47.325586px;}
.hc{height:48.254063px;}
.h15{height:52.971680px;}
.h3{height:52.998047px;}
.h13{height:53.896641px;}
.ha{height:54.421875px;}
.h14{height:56.320312px;}
.h8{height:58.975137px;}
.h9{height:59.004492px;}
.hb{height:60.589687px;}
.h4{height:65.526152px;}
.h5{height:66.394687px;}
.h6{height:66.569062px;}
.h2{height:1063.169908px;}
.h0{height:1063.170000px;}
.h1{height:1063.500000px;}
.w5{width:124.920000px;}
.w7{width:132.330000px;}
.w4{width:135.390000px;}
.w6{width:147.270000px;}
.w9{width:153.480000px;}
.w8{width:158.040000px;}
.w3{width:195.420000px;}
.w1{width:744.000000px;}
.w2{width:744.209989px;}
.w0{width:744.210000px;}
.x0{left:0.000000px;}
.x19{left:8.100000px;}
.x1b{left:38.820000px;}
.x17{left:55.800000px;}
.x1d{left:59.490000px;}
.x15{left:61.050000px;}
.x13{left:68.070000px;}
.x21{left:70.050000px;}
.x1f{left:72.360000px;}
.x2{left:76.589989px;}
.x4{left:78.569989px;}
.x6{left:83.429989px;}
.xd{left:87.209989px;}
.xe{left:92.249989px;}
.x1a{left:93.869989px;}
.x1{left:101.249989px;}
.x10{left:102.449989px;}
.x3{left:111.539989px;}
.xa{left:121.169989px;}
.x5{left:122.789989px;}
.x8{left:127.739989px;}
.x22{left:130.619989px;}
.x7{left:206.039989px;}
.xf{left:215.309989px;}
.x1c{left:223.860000px;}
.xb{left:225.569989px;}
.x12{left:229.169989px;}
.xc{left:241.769989px;}
.x14{left:272.010000px;}
.x9{left:291.359989px;}
.x11{left:335.399989px;}
.x1e{left:356.190000px;}
.x16{left:407.400000px;}
.x20{left:514.230000px;}
.x18{left:532.320000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.000000pt;}
.v1{vertical-align:21.440000pt;}
.lsd{letter-spacing:-0.272533pt;}
.ls6{letter-spacing:-0.240000pt;}
.ls9{letter-spacing:-0.218667pt;}
.ls3{letter-spacing:-0.160000pt;}
.ls7{letter-spacing:-0.136533pt;}
.ls12{letter-spacing:-0.112000pt;}
.ls10{letter-spacing:-0.096000pt;}
.lsc{letter-spacing:-0.084267pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.016000pt;}
.lsa{letter-spacing:0.047360pt;}
.ls5{letter-spacing:0.080000pt;}
.ls14{letter-spacing:0.096000pt;}
.ls13{letter-spacing:0.106667pt;}
.lsb{letter-spacing:0.127680pt;}
.ls8{letter-spacing:0.136533pt;}
.ls0{letter-spacing:0.160000pt;}
.ls11{letter-spacing:0.480000pt;}
.lse{letter-spacing:0.720000pt;}
.ls4{letter-spacing:4.560000pt;}
.lsf{letter-spacing:21.536000pt;}
.ws7{word-spacing:-13.496533pt;}
.ws4{word-spacing:-13.360000pt;}
.ws6{word-spacing:-13.223467pt;}
.ws10{word-spacing:-12.096000pt;}
.ws0{word-spacing:-12.016000pt;}
.ws1{word-spacing:-12.000000pt;}
.wse{word-spacing:-11.904000pt;}
.wsf{word-spacing:-11.888000pt;}
.wsd{word-spacing:-10.800000pt;}
.wsb{word-spacing:-10.767680pt;}
.ws8{word-spacing:-10.640000pt;}
.ws9{word-spacing:-10.555733pt;}
.ws2{word-spacing:-9.360000pt;}
.ws3{word-spacing:-8.640000pt;}
.wsa{word-spacing:-6.687360pt;}
.wsc{word-spacing:-6.367467pt;}
.ws5{word-spacing:0.000000pt;}
._9{margin-left:-3.206400pt;}
._3{margin-left:-1.857493pt;}
._1{margin-left:-0.908480pt;}
._0{width:1.054080pt;}
._2{width:1.983360pt;}
._4{width:2.883413pt;}
._5{width:4.039253pt;}
._6{width:5.718080pt;}
._7{width:6.613653pt;}
._c{width:7.560853pt;}
._a{width:9.031360pt;}
._b{width:10.087253pt;}
._19{width:10.977493pt;}
._14{width:13.136000pt;}
._11{width:14.268480pt;}
._20{width:15.333120pt;}
._1b{width:18.912000pt;}
._1a{width:19.968000pt;}
._24{width:21.408000pt;}
._23{width:26.688000pt;}
._1e{width:27.840000pt;}
._1d{width:28.992000pt;}
._13{width:32.304000pt;}
._12{width:33.216000pt;}
._21{width:34.320000pt;}
._15{width:36.624000pt;}
._1f{width:38.976000pt;}
._8{width:39.946667pt;}
._1c{width:42.768000pt;}
._f{width:44.596587pt;}
._10{width:46.292053pt;}
._17{width:49.488000pt;}
._16{width:50.496000pt;}
._22{width:54.816000pt;}
._18{width:121.488000pt;}
._e{width:222.389333pt;}
._d{width:307.786667pt;}
.fs6{font-size:26.560000pt;}
.fs3{font-size:34.560000pt;}
.fs2{font-size:37.440000pt;}
.fs5{font-size:42.560000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.440000pt;}
.fs1{font-size:58.560000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000081pt;}
.y7c{bottom:2.320000pt;}
.y7e{bottom:2.400000pt;}
.y3{bottom:65.199919pt;}
.y2c{bottom:83.919919pt;}
.y58{bottom:93.759919pt;}
.ya5{bottom:94.959919pt;}
.y2b{bottom:101.599919pt;}
.y101{bottom:110.879919pt;}
.y57{bottom:111.439919pt;}
.yb0{bottom:112.159919pt;}
.ya4{bottom:112.559919pt;}
.y78{bottom:116.319919pt;}
.yda{bottom:118.879919pt;}
.y2a{bottom:119.199919pt;}
.yf0{bottom:122.879919pt;}
.yaf{bottom:127.999919pt;}
.y56{bottom:129.039919pt;}
.ya3{bottom:130.159919pt;}
.y100{bottom:130.719919pt;}
.y77{bottom:133.919919pt;}
.yd9{bottom:134.719919pt;}
.y29{bottom:136.879919pt;}
.yef{bottom:138.719919pt;}
.yae{bottom:143.919919pt;}
.y55{bottom:146.639919pt;}
.ya2{bottom:147.839919pt;}
.yd8{bottom:150.639919pt;}
.y76{bottom:151.599919pt;}
.y28{bottom:154.479919pt;}
.yee{bottom:158.639919pt;}
.yad{bottom:163.759919pt;}
.y54{bottom:164.319919pt;}
.ya1{bottom:165.439919pt;}
.yff{bottom:166.479919pt;}
.y75{bottom:169.199919pt;}
.yd7{bottom:170.479919pt;}
.y27{bottom:172.079919pt;}
.yed{bottom:174.479919pt;}
.yac{bottom:179.599919pt;}
.y53{bottom:181.919919pt;}
.yfe{bottom:182.319919pt;}
.ya0{bottom:183.119919pt;}
.yd6{bottom:186.319919pt;}
.y74{bottom:186.799919pt;}
.y26{bottom:189.759919pt;}
.yec{bottom:190.319919pt;}
.yab{bottom:195.519919pt;}
.y52{bottom:199.599919pt;}
.y9f{bottom:200.719919pt;}
.yd5{bottom:202.239919pt;}
.y73{bottom:204.479919pt;}
.y25{bottom:207.359919pt;}
.yeb{bottom:210.239919pt;}
.yaa{bottom:211.359919pt;}
.y51{bottom:217.199919pt;}
.yfd{bottom:218.079919pt;}
.y9e{bottom:218.319919pt;}
.y72{bottom:222.079919pt;}
.y24{bottom:225.039919pt;}
.yea{bottom:226.079919pt;}
.ya9{bottom:231.759919pt;}
.y50{bottom:234.799919pt;}
.y9d{bottom:235.999919pt;}
.yd4{bottom:237.919919pt;}
.ye9{bottom:241.919919pt;}
.y23{bottom:242.639919pt;}
.y71{bottom:247.759919pt;}
.y4f{bottom:252.479919pt;}
.y9c{bottom:253.599919pt;}
.yd3{bottom:253.839919pt;}
.ya8{bottom:257.359919pt;}
.y22{bottom:260.239919pt;}
.ye8{bottom:261.839919pt;}
.yfc{bottom:269.679919pt;}
.y4e{bottom:270.079919pt;}
.y9b{bottom:271.279919pt;}
.yd2{bottom:273.679919pt;}
.ye7{bottom:277.679919pt;}
.y70{bottom:281.359919pt;}
.ya7{bottom:282.959919pt;}
.y21{bottom:285.919919pt;}
.y4d{bottom:287.759919pt;}
.y9a{bottom:288.879919pt;}
.yd1{bottom:289.519919pt;}
.ye6{bottom:293.519919pt;}
.y6f{bottom:298.986585pt;}
.y4c{bottom:305.386585pt;}
.yfb{bottom:305.466585pt;}
.y99{bottom:306.506585pt;}
.yd0{bottom:309.466585pt;}
.y6e{bottom:316.666585pt;}
.y20{bottom:319.066585pt;}
.yfa{bottom:321.306585pt;}
.y4b{bottom:322.986585pt;}
.ycf{bottom:325.306585pt;}
.y98{bottom:332.186585pt;}
.y6d{bottom:334.266585pt;}
.y4a{bottom:340.666585pt;}
.yce{bottom:341.226585pt;}
.y1f{bottom:342.906585pt;}
.ye5{bottom:345.226585pt;}
.y6c{bottom:351.946585pt;}
.yf9{bottom:357.066585pt;}
.y49{bottom:358.266585pt;}
.y1e{bottom:358.826585pt;}
.ycd{bottom:361.066585pt;}
.y97{bottom:365.786585pt;}
.y6b{bottom:369.546585pt;}
.y1d{bottom:374.666585pt;}
.y48{bottom:375.946585pt;}
.ycc{bottom:376.906585pt;}
.y96{bottom:383.466585pt;}
.y6a{bottom:387.146585pt;}
.y1c{bottom:390.586585pt;}
.ycb{bottom:392.826585pt;}
.y47{bottom:393.546585pt;}
.ye4{bottom:396.826585pt;}
.y95{bottom:401.066585pt;}
.y69{bottom:404.826585pt;}
.y1b{bottom:406.426585pt;}
.yf8{bottom:408.666585pt;}
.y46{bottom:411.146585pt;}
.yca{bottom:412.666585pt;}
.y94{bottom:418.666585pt;}
.y1a{bottom:422.266585pt;}
.y68{bottom:422.426585pt;}
.yf7{bottom:424.506585pt;}
.yc9{bottom:428.506585pt;}
.y45{bottom:428.826585pt;}
.y93{bottom:436.346585pt;}
.y19{bottom:438.186585pt;}
.y67{bottom:440.106585pt;}
.yc8{bottom:444.426585pt;}
.y44{bottom:446.426585pt;}
.ye3{bottom:448.426585pt;}
.y18{bottom:454.026585pt;}
.y66{bottom:457.706585pt;}
.yf6{bottom:460.266585pt;}
.y92{bottom:460.986585pt;}
.y43{bottom:464.106585pt;}
.yc7{bottom:464.266585pt;}
.y17{bottom:469.866585pt;}
.y65{bottom:475.306585pt;}
.yf5{bottom:476.106585pt;}
.y91{bottom:479.546667pt;}
.yc6{bottom:480.106585pt;}
.y42{bottom:481.706585pt;}
.y16{bottom:485.786585pt;}
.y90{bottom:492.506667pt;}
.y64{bottom:492.986585pt;}
.ye2{bottom:496.026585pt;}
.y41{bottom:499.306585pt;}
.yc5{bottom:500.026585pt;}
.y15{bottom:501.626585pt;}
.y8f{bottom:505.466667pt;}
.y63{bottom:510.586585pt;}
.ye1{bottom:511.866585pt;}
.yc4{bottom:515.866585pt;}
.y40{bottom:516.986585pt;}
.y14{bottom:517.466585pt;}
.y8e{bottom:518.346667pt;}
.yf4{bottom:527.706585pt;}
.y62{bottom:528.266585pt;}
.y8d{bottom:531.306667pt;}
.yc3{bottom:531.706585pt;}
.y3f{bottom:534.586585pt;}
.yf3{bottom:543.626585pt;}
.y61{bottom:545.866585pt;}
.yc2{bottom:547.626585pt;}
.y13{bottom:549.866585pt;}
.y3e{bottom:552.266585pt;}
.ya6{bottom:553.866585pt;}
.y8c{bottom:556.426585pt;}
.y60{bottom:563.493252pt;}
.y12{bottom:567.493252pt;}
.y3d{bottom:569.893252pt;}
.y8b{bottom:570.533252pt;}
.ye0{bottom:579.413252pt;}
.y5f{bottom:581.173252pt;}
.yc1{bottom:583.413252pt;}
.y11{bottom:585.173252pt;}
.y3c{bottom:587.493252pt;}
.yf2{bottom:595.253252pt;}
.y5e{bottom:598.773252pt;}
.yc0{bottom:599.253252pt;}
.y8a{bottom:601.653252pt;}
.y10{bottom:602.773252pt;}
.y3b{bottom:605.173252pt;}
.ydf{bottom:615.093252pt;}
.y5d{bottom:616.453252pt;}
.ybf{bottom:619.093252pt;}
.y89{bottom:619.253252pt;}
.yf{bottom:620.373252pt;}
.y3a{bottom:622.773252pt;}
.yde{bottom:631.013252pt;}
.y5c{bottom:634.053252pt;}
.ybe{bottom:635.013252pt;}
.y88{bottom:636.933252pt;}
.ye{bottom:638.053252pt;}
.y39{bottom:640.453252pt;}
.yf1{bottom:646.853252pt;}
.ybd{bottom:650.853252pt;}
.y5b{bottom:651.653252pt;}
.y87{bottom:654.533252pt;}
.y38{bottom:658.053252pt;}
.yd{bottom:660.293252pt;}
.ybc{bottom:666.693252pt;}
.y5a{bottom:669.333252pt;}
.y86{bottom:672.133252pt;}
.yc{bottom:673.333252pt;}
.y37{bottom:675.653252pt;}
.ydd{bottom:682.613252pt;}
.ybb{bottom:686.613252pt;}
.y85{bottom:689.813252pt;}
.yb{bottom:690.933252pt;}
.y36{bottom:693.333252pt;}
.y59{bottom:694.933252pt;}
.ydc{bottom:698.453252pt;}
.yba{bottom:702.453252pt;}
.y84{bottom:707.413252pt;}
.y35{bottom:710.933252pt;}
.ya{bottom:713.173252pt;}
.yb9{bottom:718.293252pt;}
.y34{bottom:728.613252pt;}
.y83{bottom:732.053252pt;}
.yb8{bottom:734.213252pt;}
.y9{bottom:742.773252pt;}
.y33{bottom:746.213252pt;}
.ydb{bottom:750.053252pt;}
.y82{bottom:750.693333pt;}
.yb7{bottom:754.053252pt;}
.y8{bottom:762.133252pt;}
.y81{bottom:763.573333pt;}
.y32{bottom:763.813252pt;}
.yb6{bottom:769.973252pt;}
.y80{bottom:776.533333pt;}
.y31{bottom:781.493252pt;}
.y7{bottom:781.573252pt;}
.yb5{bottom:785.813252pt;}
.y7f{bottom:789.493333pt;}
.y30{bottom:799.093252pt;}
.yb4{bottom:801.653252pt;}
.y7d{bottom:802.373333pt;}
.y7b{bottom:815.333333pt;}
.y2f{bottom:816.773252pt;}
.y6{bottom:816.933252pt;}
.yb3{bottom:821.573252pt;}
.y2e{bottom:834.399919pt;}
.y5{bottom:836.399919pt;}
.yb2{bottom:837.439919pt;}
.y7a{bottom:840.479919pt;}
.y2d{bottom:851.999919pt;}
.yb1{bottom:853.279919pt;}
.y79{bottom:854.559919pt;}
.y4{bottom:855.759919pt;}
.y2{bottom:888.479919pt;}
.h10{height:12.240000pt;}
.hd{height:12.266667pt;}
.he{height:12.320000pt;}
.h7{height:33.901875pt;}
.h12{height:41.749531pt;}
.hf{height:41.770312pt;}
.h11{height:42.067187pt;}
.hc{height:42.892500pt;}
.h15{height:47.085938pt;}
.h3{height:47.109375pt;}
.h13{height:47.908125pt;}
.ha{height:48.375000pt;}
.h14{height:50.062500pt;}
.h8{height:52.422344pt;}
.h9{height:52.448437pt;}
.hb{height:53.857500pt;}
.h4{height:58.245469pt;}
.h5{height:59.017500pt;}
.h6{height:59.172500pt;}
.h2{height:945.039919pt;}
.h0{height:945.040000pt;}
.h1{height:945.333333pt;}
.w5{width:111.040000pt;}
.w7{width:117.626667pt;}
.w4{width:120.346667pt;}
.w6{width:130.906667pt;}
.w9{width:136.426667pt;}
.w8{width:140.480000pt;}
.w3{width:173.706667pt;}
.w1{width:661.333333pt;}
.w2{width:661.519990pt;}
.w0{width:661.520000pt;}
.x0{left:0.000000pt;}
.x19{left:7.200000pt;}
.x1b{left:34.506667pt;}
.x17{left:49.600000pt;}
.x1d{left:52.880000pt;}
.x15{left:54.266667pt;}
.x13{left:60.506667pt;}
.x21{left:62.266667pt;}
.x1f{left:64.320000pt;}
.x2{left:68.079990pt;}
.x4{left:69.839990pt;}
.x6{left:74.159990pt;}
.xd{left:77.519990pt;}
.xe{left:81.999990pt;}
.x1a{left:83.439990pt;}
.x1{left:89.999990pt;}
.x10{left:91.066657pt;}
.x3{left:99.146657pt;}
.xa{left:107.706657pt;}
.x5{left:109.146657pt;}
.x8{left:113.546657pt;}
.x22{left:116.106657pt;}
.x7{left:183.146657pt;}
.xf{left:191.386657pt;}
.x1c{left:198.986667pt;}
.xb{left:200.506657pt;}
.x12{left:203.706657pt;}
.xc{left:214.906657pt;}
.x14{left:241.786667pt;}
.x9{left:258.986657pt;}
.x11{left:298.133323pt;}
.x1e{left:316.613333pt;}
.x16{left:362.133333pt;}
.x20{left:457.093333pt;}
.x18{left:473.173333pt;}
}




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