
    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_41afb5d6f7801a44005274f6.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_49930752156674dcafe0223a.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_acfa1b57eefbea640c09a015.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_e094159a98486b4223245592.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_2be8c5c93fa2fa6463dc18a4.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_3cb3eafc0bb174f70b661263.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff8{font-family:ff8;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:18.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:24.120000px;}
.ls15{letter-spacing:-1.080000px;}
.ls17{letter-spacing:-0.900000px;}
.lsb{letter-spacing:-0.876000px;}
.ls6{letter-spacing:-0.726000px;}
.ls5{letter-spacing:-0.540000px;}
.lsd{letter-spacing:-0.306600px;}
.ls13{letter-spacing:-0.206400px;}
.ls4{letter-spacing:-0.180000px;}
.lsa{letter-spacing:-0.053280px;}
.ls12{letter-spacing:-0.018720px;}
.ls1{letter-spacing:0.000000px;}
.lse{letter-spacing:0.013320px;}
.ls2{letter-spacing:0.018000px;}
.lsf{letter-spacing:0.018720px;}
.ls14{letter-spacing:0.090000px;}
.ls16{letter-spacing:0.108000px;}
.lsc{letter-spacing:0.139800px;}
.ls3{letter-spacing:0.153600px;}
.ls9{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.810000px;}
.ls0{letter-spacing:3.420000px;}
.ls8{letter-spacing:5.850000px;}
.ls10{letter-spacing:24.228000px;}
.ls11{letter-spacing:26.028000px;}
.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;}
}
.ws4{word-spacing:-15.183600px;}
.wsd{word-spacing:-15.169800px;}
.wsf{word-spacing:-15.043320px;}
.ws8{word-spacing:-15.030000px;}
.ws9{word-spacing:-14.976720px;}
.wse{word-spacing:-14.723400px;}
.ws5{word-spacing:-14.490000px;}
.wsa{word-spacing:-14.154000px;}
.ws0{word-spacing:-13.518000px;}
.ws1{word-spacing:-13.500000px;}
.ws12{word-spacing:-12.420000px;}
.ws10{word-spacing:-11.988720px;}
.wsb{word-spacing:-11.970000px;}
.ws11{word-spacing:-11.951280px;}
.ws2{word-spacing:-10.530000px;}
.ws3{word-spacing:-9.720000px;}
.ws6{word-spacing:-8.994000px;}
.wsc{word-spacing:-7.470000px;}
.ws7{word-spacing:0.000000px;}
._3{margin-left:-3.969360px;}
._2{margin-left:-2.916000px;}
._1{margin-left:-1.322640px;}
._0{width:1.158480px;}
._4{width:2.401200px;}
._5{width:3.891600px;}
._6{width:4.914000px;}
._7{width:5.991840px;}
._9{width:7.154280px;}
._8{width:8.176320px;}
._f{width:9.258480px;}
._d{width:10.400760px;}
._c{width:11.422800px;}
._10{width:12.865680px;}
._11{width:13.887720px;}
._b{width:354.158160px;}
._a{width:449.940000px;}
._e{width:565.500000px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:29.880000px;}
.fs4{font-size:38.880000px;}
.fs3{font-size:42.120000px;}
.fs6{font-size:47.880000px;}
.fs0{font-size:54.000000px;}
.fs5{font-size:60.120000px;}
.fs1{font-size:65.880000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000092px;}
.y82{bottom:2.610000px;}
.y86{bottom:2.700000px;}
.ya9{bottom:9.540000px;}
.y84{bottom:14.220000px;}
.ya8{bottom:16.380000px;}
.yac{bottom:16.470000px;}
.ya6{bottom:16.830000px;}
.y3{bottom:73.349908px;}
.y2c{bottom:102.329908px;}
.ycf{bottom:104.309908px;}
.y7e{bottom:109.169908px;}
.yf8{bottom:120.239908px;}
.yce{bottom:122.129908px;}
.y2b{bottom:122.219908px;}
.y54{bottom:124.469908px;}
.y7d{bottom:128.969908px;}
.ya2{bottom:139.139908px;}
.y2a{bottom:142.019908px;}
.yf7{bottom:142.559908px;}
.y53{bottom:144.359908px;}
.ycd{bottom:144.449908px;}
.y7c{bottom:148.859908px;}
.ya1{bottom:159.029908px;}
.yf6{bottom:160.469908px;}
.y29{bottom:161.909908px;}
.ycc{bottom:162.359908px;}
.y52{bottom:164.159908px;}
.y7b{bottom:168.659908px;}
.ya0{bottom:178.829908px;}
.y28{bottom:181.709908px;}
.yf5{bottom:182.789908px;}
.y51{bottom:184.049908px;}
.ycb{bottom:184.679908px;}
.y7a{bottom:188.549908px;}
.y9f{bottom:198.719908px;}
.yf4{bottom:200.609908px;}
.y27{bottom:201.509908px;}
.yca{bottom:202.589908px;}
.y50{bottom:203.849908px;}
.y79{bottom:208.349908px;}
.y9e{bottom:218.519908px;}
.yc9{bottom:220.409908px;}
.y26{bottom:221.399908px;}
.y78{bottom:228.149908px;}
.y4f{bottom:232.649908px;}
.y9d{bottom:238.319908px;}
.yf3{bottom:240.839908px;}
.y25{bottom:241.199908px;}
.yc8{bottom:242.729908px;}
.y77{bottom:248.039908px;}
.y4e{bottom:252.539908px;}
.y9c{bottom:258.209908px;}
.yf2{bottom:258.659908px;}
.yc7{bottom:260.639908px;}
.y24{bottom:261.089908px;}
.y76{bottom:267.839908px;}
.y4d{bottom:272.339908px;}
.y9b{bottom:278.009908px;}
.y23{bottom:280.889908px;}
.yf1{bottom:281.069908px;}
.yc6{bottom:282.959908px;}
.y75{bottom:287.729908px;}
.y4c{bottom:292.229908px;}
.y9a{bottom:297.899908px;}
.yf0{bottom:298.889908px;}
.y22{bottom:300.689908px;}
.yc5{bottom:300.779908px;}
.y74{bottom:307.529908px;}
.y4b{bottom:312.029908px;}
.y99{bottom:317.699908px;}
.yc4{bottom:318.689908px;}
.y21{bottom:320.579908px;}
.yef{bottom:321.209908px;}
.y73{bottom:327.329908px;}
.y4a{bottom:331.829908px;}
.y98{bottom:337.529908px;}
.yee{bottom:339.149908px;}
.y20{bottom:340.409908px;}
.yc3{bottom:346.079908px;}
.y72{bottom:347.249908px;}
.y49{bottom:351.749908px;}
.y97{bottom:357.419908px;}
.y1f{bottom:360.299908px;}
.yed{bottom:361.469908px;}
.y48{bottom:371.549908px;}
.yc2{bottom:374.879908px;}
.y71{bottom:376.049908px;}
.y96{bottom:377.219908px;}
.yec{bottom:379.379908px;}
.y1e{bottom:380.099908px;}
.yc1{bottom:394.769908px;}
.y70{bottom:395.939908px;}
.y95{bottom:397.109908px;}
.y47{bottom:400.439908px;}
.yeb{bottom:401.699908px;}
.y1d{bottom:408.899908px;}
.yc0{bottom:414.569908px;}
.y6f{bottom:415.739908px;}
.y94{bottom:416.909908px;}
.yea{bottom:419.519908px;}
.y46{bottom:420.239908px;}
.ybf{bottom:434.459908px;}
.y6e{bottom:435.539908px;}
.y93{bottom:436.709908px;}
.ye9{bottom:437.429908px;}
.y45{bottom:440.039908px;}
.y1c{bottom:446.249908px;}
.ybe{bottom:454.259908px;}
.y6d{bottom:455.429908px;}
.y92{bottom:456.599908px;}
.ye8{bottom:459.749908px;}
.y44{bottom:459.929908px;}
.y1b{bottom:464.069908px;}
.ybd{bottom:474.059908px;}
.y6c{bottom:475.229908px;}
.y91{bottom:476.399908px;}
.ye7{bottom:477.569908px;}
.y43{bottom:479.729908px;}
.y1a{bottom:490.979908px;}
.ybc{bottom:493.949908px;}
.y6b{bottom:495.119908px;}
.ye6{bottom:495.479908px;}
.y90{bottom:496.289908px;}
.y42{bottom:499.619908px;}
.y19{bottom:508.799908px;}
.y8f{bottom:516.089908px;}
.ye5{bottom:517.799908px;}
.y41{bottom:519.419908px;}
.ybb{bottom:522.749908px;}
.y6a{bottom:523.919908px;}
.y18{bottom:526.619908px;}
.ye4{bottom:535.619908px;}
.y8e{bottom:535.889908px;}
.y40{bottom:539.219908px;}
.y69{bottom:543.719908px;}
.y17{bottom:544.529908px;}
.y8d{bottom:555.779908px;}
.ye3{bottom:558.029908px;}
.y3f{bottom:559.109908px;}
.yba{bottom:560.639908px;}
.y16{bottom:562.349908px;}
.y68{bottom:563.609908px;}
.y8c{bottom:575.579908px;}
.ye2{bottom:575.849908px;}
.y3e{bottom:578.909908px;}
.y15{bottom:580.169908px;}
.yb9{bottom:580.439908px;}
.y67{bottom:583.409908px;}
.y8b{bottom:595.469908px;}
.y14{bottom:598.079908px;}
.ye1{bottom:598.169908px;}
.y3d{bottom:598.799908px;}
.yb8{bottom:600.239908px;}
.y66{bottom:603.299908px;}
.y13{bottom:615.899908px;}
.ye0{bottom:616.079908px;}
.y3c{bottom:618.599908px;}
.yb7{bottom:620.129908px;}
.y65{bottom:623.099908px;}
.y8a{bottom:623.729908px;}
.y12{bottom:633.749908px;}
.y3b{bottom:638.429908px;}
.yb6{bottom:639.959908px;}
.y89{bottom:641.579908px;}
.y64{bottom:642.929908px;}
.y109{bottom:647.339908px;}
.y11{bottom:651.659908px;}
.ydf{bottom:656.339908px;}
.yb5{bottom:659.849908px;}
.y63{bottom:662.819908px;}
.y108{bottom:665.159908px;}
.y3a{bottom:667.319908px;}
.y87{bottom:668.220000px;}
.y10{bottom:669.479908px;}
.yde{bottom:674.159908px;}
.yb4{bottom:679.649908px;}
.y62{bottom:682.619908px;}
.yf{bottom:687.299908px;}
.y107{bottom:687.479908px;}
.y88{bottom:691.350000px;}
.ydd{bottom:696.479908px;}
.yb3{bottom:699.449908px;}
.y61{bottom:702.509908px;}
.y39{bottom:705.119908px;}
.ye{bottom:705.209908px;}
.y106{bottom:705.389908px;}
.ydc{bottom:714.389908px;}
.y83{bottom:714.390000px;}
.yb2{bottom:719.339908px;}
.y60{bottom:722.309908px;}
.yd{bottom:723.029908px;}
.y38{bottom:725.009908px;}
.y105{bottom:727.709908px;}
.ydb{bottom:732.209908px;}
.y85{bottom:737.520000px;}
.yb1{bottom:739.139908px;}
.y5f{bottom:742.109908px;}
.y37{bottom:744.809908px;}
.y104{bottom:745.529908px;}
.yda{bottom:754.529908px;}
.yb0{bottom:759.029908px;}
.yc{bottom:759.479908px;}
.y81{bottom:760.650000px;}
.y5e{bottom:761.999908px;}
.y36{bottom:764.609908px;}
.y103{bottom:767.939908px;}
.yd9{bottom:772.439908px;}
.yaf{bottom:778.829908px;}
.yb{bottom:779.279908px;}
.y35{bottom:784.499908px;}
.y102{bottom:785.759908px;}
.yd8{bottom:790.259908px;}
.y5d{bottom:790.799908px;}
.y80{bottom:793.139908px;}
.ya{bottom:799.079908px;}
.y34{bottom:804.299908px;}
.yae{bottom:807.089908px;}
.y101{bottom:808.079908px;}
.y7f{bottom:809.069908px;}
.y5c{bottom:810.689908px;}
.yd7{bottom:812.579908px;}
.y9{bottom:818.969908px;}
.y33{bottom:824.189908px;}
.yad{bottom:824.999908px;}
.y100{bottom:825.989908px;}
.y5b{bottom:830.489908px;}
.yff{bottom:843.809908px;}
.y8{bottom:843.989908px;}
.yaa{bottom:847.320000px;}
.yd6{bottom:848.309908px;}
.y5a{bottom:850.289908px;}
.y32{bottom:863.789908px;}
.y7{bottom:863.879908px;}
.yfe{bottom:866.219908px;}
.yd5{bottom:870.719908px;}
.yab{bottom:875.670000px;}
.y59{bottom:879.179908px;}
.y31{bottom:883.679908px;}
.yfd{bottom:884.039908px;}
.yd4{bottom:888.539908px;}
.ya5{bottom:890.250000px;}
.y6{bottom:897.089908px;}
.y58{bottom:898.979908px;}
.yfc{bottom:901.859908px;}
.y30{bottom:903.479908px;}
.yd3{bottom:906.359908px;}
.ya7{bottom:918.600000px;}
.y57{bottom:918.869908px;}
.y2f{bottom:923.369908px;}
.yfb{bottom:924.269908px;}
.yd2{bottom:928.799908px;}
.ya4{bottom:933.120000px;}
.y5{bottom:937.529908px;}
.y56{bottom:938.699908px;}
.yfa{bottom:942.119908px;}
.y2e{bottom:943.199908px;}
.yd1{bottom:946.619908px;}
.y55{bottom:958.499908px;}
.yf9{bottom:959.939908px;}
.y4{bottom:961.289908px;}
.ya3{bottom:961.379908px;}
.y2d{bottom:962.999908px;}
.yd0{bottom:964.439908px;}
.y2{bottom:999.539908px;}
.hf{height:13.770000px;}
.h16{height:13.800000px;}
.h13{height:13.860000px;}
.h18{height:27.540000px;}
.h1a{height:27.630000px;}
.h10{height:36.900000px;}
.h7{height:38.139609px;}
.h19{height:42.120000px;}
.h15{height:42.150000px;}
.h11{height:46.991602px;}
.h12{height:47.325586px;}
.h17{height:47.445586px;}
.he{height:48.254063px;}
.h14{height:52.971680px;}
.h3{height:52.998047px;}
.hd{height:53.896641px;}
.ha{height:54.421875px;}
.h1b{height:56.320312px;}
.h8{height:58.975137px;}
.h9{height:59.004492px;}
.hc{height:59.038594px;}
.hb{height:60.589687px;}
.h4{height:65.526152px;}
.h6{height:66.569063px;}
.h5{height:72.562500px;}
.h2{height:1063.169908px;}
.h0{height:1063.170000px;}
.h1{height:1063.500000px;}
.wb{width:34.560000px;}
.wa{width:45.570000px;}
.w4{width:46.800000px;}
.w3{width:51.420000px;}
.w11{width:59.490000px;}
.wf{width:61.560000px;}
.w10{width:61.590000px;}
.wd{width:65.250000px;}
.we{width:65.280000px;}
.w9{width:65.340000px;}
.w5{width:69.480000px;}
.wc{width:74.700000px;}
.w8{width:77.250000px;}
.w7{width:93.330000px;}
.w6{width:118.020000px;}
.w1{width:744.000000px;}
.w2{width:744.209989px;}
.w0{width:744.210000px;}
.x0{left:0.000000px;}
.x19{left:2.070000px;}
.x10{left:4.230000px;}
.x2{left:76.589989px;}
.xd{left:82.889989px;}
.x3{left:84.959989px;}
.x18{left:92.159989px;}
.xe{left:96.659989px;}
.x4{left:98.189989px;}
.x1{left:101.249989px;}
.x7{left:105.419989px;}
.xc{left:110.639989px;}
.x1a{left:122.160000px;}
.x11{left:128.010000px;}
.x22{left:130.619989px;}
.x6{left:149.069989px;}
.x1b{left:156.720000px;}
.x12{left:174.810000px;}
.x5{left:185.429989px;}
.x1c{left:231.420000px;}
.x8{left:240.959989px;}
.x13{left:244.290000px;}
.xa{left:249.239989px;}
.x9{left:265.619989px;}
.x1d{left:296.670000px;}
.xb{left:335.399989px;}
.xf{left:338.549989px;}
.x14{left:362.310000px;}
.x1e{left:423.510000px;}
.x15{left:455.640000px;}
.x1f{left:485.070000px;}
.x16{left:525.120000px;}
.x20{left:546.660000px;}
.x17{left:602.370000px;}
.x21{left:606.150000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:16.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.440000pt;}
.ls15{letter-spacing:-0.960000pt;}
.ls17{letter-spacing:-0.800000pt;}
.lsb{letter-spacing:-0.778667pt;}
.ls6{letter-spacing:-0.645333pt;}
.ls5{letter-spacing:-0.480000pt;}
.lsd{letter-spacing:-0.272533pt;}
.ls13{letter-spacing:-0.183467pt;}
.ls4{letter-spacing:-0.160000pt;}
.lsa{letter-spacing:-0.047360pt;}
.ls12{letter-spacing:-0.016640pt;}
.ls1{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.011840pt;}
.ls2{letter-spacing:0.016000pt;}
.lsf{letter-spacing:0.016640pt;}
.ls14{letter-spacing:0.080000pt;}
.ls16{letter-spacing:0.096000pt;}
.lsc{letter-spacing:0.124267pt;}
.ls3{letter-spacing:0.136533pt;}
.ls9{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.720000pt;}
.ls0{letter-spacing:3.040000pt;}
.ls8{letter-spacing:5.200000pt;}
.ls10{letter-spacing:21.536000pt;}
.ls11{letter-spacing:23.136000pt;}
.ws4{word-spacing:-13.496533pt;}
.wsd{word-spacing:-13.484267pt;}
.wsf{word-spacing:-13.371840pt;}
.ws8{word-spacing:-13.360000pt;}
.ws9{word-spacing:-13.312640pt;}
.wse{word-spacing:-13.087467pt;}
.ws5{word-spacing:-12.880000pt;}
.wsa{word-spacing:-12.581333pt;}
.ws0{word-spacing:-12.016000pt;}
.ws1{word-spacing:-12.000000pt;}
.ws12{word-spacing:-11.040000pt;}
.ws10{word-spacing:-10.656640pt;}
.wsb{word-spacing:-10.640000pt;}
.ws11{word-spacing:-10.623360pt;}
.ws2{word-spacing:-9.360000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws6{word-spacing:-7.994667pt;}
.wsc{word-spacing:-6.640000pt;}
.ws7{word-spacing:0.000000pt;}
._3{margin-left:-3.528320pt;}
._2{margin-left:-2.592000pt;}
._1{margin-left:-1.175680pt;}
._0{width:1.029760pt;}
._4{width:2.134400pt;}
._5{width:3.459200pt;}
._6{width:4.368000pt;}
._7{width:5.326080pt;}
._9{width:6.359360pt;}
._8{width:7.267840pt;}
._f{width:8.229760pt;}
._d{width:9.245120pt;}
._c{width:10.153600pt;}
._10{width:11.436160pt;}
._11{width:12.344640pt;}
._b{width:314.807253pt;}
._a{width:399.946667pt;}
._e{width:502.666667pt;}
.fs7{font-size:26.560000pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:37.440000pt;}
.fs6{font-size:42.560000pt;}
.fs0{font-size:48.000000pt;}
.fs5{font-size:53.440000pt;}
.fs1{font-size:58.560000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000081pt;}
.y82{bottom:2.320000pt;}
.y86{bottom:2.400000pt;}
.ya9{bottom:8.480000pt;}
.y84{bottom:12.640000pt;}
.ya8{bottom:14.560000pt;}
.yac{bottom:14.640000pt;}
.ya6{bottom:14.960000pt;}
.y3{bottom:65.199919pt;}
.y2c{bottom:90.959919pt;}
.ycf{bottom:92.719919pt;}
.y7e{bottom:97.039919pt;}
.yf8{bottom:106.879919pt;}
.yce{bottom:108.559919pt;}
.y2b{bottom:108.639919pt;}
.y54{bottom:110.639919pt;}
.y7d{bottom:114.639919pt;}
.ya2{bottom:123.679919pt;}
.y2a{bottom:126.239919pt;}
.yf7{bottom:126.719919pt;}
.y53{bottom:128.319919pt;}
.ycd{bottom:128.399919pt;}
.y7c{bottom:132.319919pt;}
.ya1{bottom:141.359919pt;}
.yf6{bottom:142.639919pt;}
.y29{bottom:143.919919pt;}
.ycc{bottom:144.319919pt;}
.y52{bottom:145.919919pt;}
.y7b{bottom:149.919919pt;}
.ya0{bottom:158.959919pt;}
.y28{bottom:161.519919pt;}
.yf5{bottom:162.479919pt;}
.y51{bottom:163.599919pt;}
.ycb{bottom:164.159919pt;}
.y7a{bottom:167.599919pt;}
.y9f{bottom:176.639919pt;}
.yf4{bottom:178.319919pt;}
.y27{bottom:179.119919pt;}
.yca{bottom:180.079919pt;}
.y50{bottom:181.199919pt;}
.y79{bottom:185.199919pt;}
.y9e{bottom:194.239919pt;}
.yc9{bottom:195.919919pt;}
.y26{bottom:196.799919pt;}
.y78{bottom:202.799919pt;}
.y4f{bottom:206.799919pt;}
.y9d{bottom:211.839919pt;}
.yf3{bottom:214.079919pt;}
.y25{bottom:214.399919pt;}
.yc8{bottom:215.759919pt;}
.y77{bottom:220.479919pt;}
.y4e{bottom:224.479919pt;}
.y9c{bottom:229.519919pt;}
.yf2{bottom:229.919919pt;}
.yc7{bottom:231.679919pt;}
.y24{bottom:232.079919pt;}
.y76{bottom:238.079919pt;}
.y4d{bottom:242.079919pt;}
.y9b{bottom:247.119919pt;}
.y23{bottom:249.679919pt;}
.yf1{bottom:249.839919pt;}
.yc6{bottom:251.519919pt;}
.y75{bottom:255.759919pt;}
.y4c{bottom:259.759919pt;}
.y9a{bottom:264.799919pt;}
.yf0{bottom:265.679919pt;}
.y22{bottom:267.279919pt;}
.yc5{bottom:267.359919pt;}
.y74{bottom:273.359919pt;}
.y4b{bottom:277.359919pt;}
.y99{bottom:282.399919pt;}
.yc4{bottom:283.279919pt;}
.y21{bottom:284.959919pt;}
.yef{bottom:285.519919pt;}
.y73{bottom:290.959919pt;}
.y4a{bottom:294.959919pt;}
.y98{bottom:300.026585pt;}
.yee{bottom:301.466585pt;}
.y20{bottom:302.586585pt;}
.yc3{bottom:307.626585pt;}
.y72{bottom:308.666585pt;}
.y49{bottom:312.666585pt;}
.y97{bottom:317.706585pt;}
.y1f{bottom:320.266585pt;}
.yed{bottom:321.306585pt;}
.y48{bottom:330.266585pt;}
.yc2{bottom:333.226585pt;}
.y71{bottom:334.266585pt;}
.y96{bottom:335.306585pt;}
.yec{bottom:337.226585pt;}
.y1e{bottom:337.866585pt;}
.yc1{bottom:350.906585pt;}
.y70{bottom:351.946585pt;}
.y95{bottom:352.986585pt;}
.y47{bottom:355.946585pt;}
.yeb{bottom:357.066585pt;}
.y1d{bottom:363.466585pt;}
.yc0{bottom:368.506585pt;}
.y6f{bottom:369.546585pt;}
.y94{bottom:370.586585pt;}
.yea{bottom:372.906585pt;}
.y46{bottom:373.546585pt;}
.ybf{bottom:386.186585pt;}
.y6e{bottom:387.146585pt;}
.y93{bottom:388.186585pt;}
.ye9{bottom:388.826585pt;}
.y45{bottom:391.146585pt;}
.y1c{bottom:396.666585pt;}
.ybe{bottom:403.786585pt;}
.y6d{bottom:404.826585pt;}
.y92{bottom:405.866585pt;}
.ye8{bottom:408.666585pt;}
.y44{bottom:408.826585pt;}
.y1b{bottom:412.506585pt;}
.ybd{bottom:421.386585pt;}
.y6c{bottom:422.426585pt;}
.y91{bottom:423.466585pt;}
.ye7{bottom:424.506585pt;}
.y43{bottom:426.426585pt;}
.y1a{bottom:436.426585pt;}
.ybc{bottom:439.066585pt;}
.y6b{bottom:440.106585pt;}
.ye6{bottom:440.426585pt;}
.y90{bottom:441.146585pt;}
.y42{bottom:444.106585pt;}
.y19{bottom:452.266585pt;}
.y8f{bottom:458.746585pt;}
.ye5{bottom:460.266585pt;}
.y41{bottom:461.706585pt;}
.ybb{bottom:464.666585pt;}
.y6a{bottom:465.706585pt;}
.y18{bottom:468.106585pt;}
.ye4{bottom:476.106585pt;}
.y8e{bottom:476.346585pt;}
.y40{bottom:479.306585pt;}
.y69{bottom:483.306585pt;}
.y17{bottom:484.026585pt;}
.y8d{bottom:494.026585pt;}
.ye3{bottom:496.026585pt;}
.y3f{bottom:496.986585pt;}
.yba{bottom:498.346585pt;}
.y16{bottom:499.866585pt;}
.y68{bottom:500.986585pt;}
.y8c{bottom:511.626585pt;}
.ye2{bottom:511.866585pt;}
.y3e{bottom:514.586585pt;}
.y15{bottom:515.706585pt;}
.yb9{bottom:515.946585pt;}
.y67{bottom:518.586585pt;}
.y8b{bottom:529.306585pt;}
.y14{bottom:531.626585pt;}
.ye1{bottom:531.706585pt;}
.y3d{bottom:532.266585pt;}
.yb8{bottom:533.546585pt;}
.y66{bottom:536.266585pt;}
.y13{bottom:547.466585pt;}
.ye0{bottom:547.626585pt;}
.y3c{bottom:549.866585pt;}
.yb7{bottom:551.226585pt;}
.y65{bottom:553.866585pt;}
.y8a{bottom:554.426585pt;}
.y12{bottom:563.333252pt;}
.y3b{bottom:567.493252pt;}
.yb6{bottom:568.853252pt;}
.y89{bottom:570.293252pt;}
.y64{bottom:571.493252pt;}
.y109{bottom:575.413252pt;}
.y11{bottom:579.253252pt;}
.ydf{bottom:583.413252pt;}
.yb5{bottom:586.533252pt;}
.y63{bottom:589.173252pt;}
.y108{bottom:591.253252pt;}
.y3a{bottom:593.173252pt;}
.y87{bottom:593.973333pt;}
.y10{bottom:595.093252pt;}
.yde{bottom:599.253252pt;}
.yb4{bottom:604.133252pt;}
.y62{bottom:606.773252pt;}
.yf{bottom:610.933252pt;}
.y107{bottom:611.093252pt;}
.y88{bottom:614.533333pt;}
.ydd{bottom:619.093252pt;}
.yb3{bottom:621.733252pt;}
.y61{bottom:624.453252pt;}
.y39{bottom:626.773252pt;}
.ye{bottom:626.853252pt;}
.y106{bottom:627.013252pt;}
.ydc{bottom:635.013252pt;}
.y83{bottom:635.013333pt;}
.yb2{bottom:639.413252pt;}
.y60{bottom:642.053252pt;}
.yd{bottom:642.693252pt;}
.y38{bottom:644.453252pt;}
.y105{bottom:646.853252pt;}
.ydb{bottom:650.853252pt;}
.y85{bottom:655.573333pt;}
.yb1{bottom:657.013252pt;}
.y5f{bottom:659.653252pt;}
.y37{bottom:662.053252pt;}
.y104{bottom:662.693252pt;}
.yda{bottom:670.693252pt;}
.yb0{bottom:674.693252pt;}
.yc{bottom:675.093252pt;}
.y81{bottom:676.133333pt;}
.y5e{bottom:677.333252pt;}
.y36{bottom:679.653252pt;}
.y103{bottom:682.613252pt;}
.yd9{bottom:686.613252pt;}
.yaf{bottom:692.293252pt;}
.yb{bottom:692.693252pt;}
.y35{bottom:697.333252pt;}
.y102{bottom:698.453252pt;}
.yd8{bottom:702.453252pt;}
.y5d{bottom:702.933252pt;}
.y80{bottom:705.013252pt;}
.ya{bottom:710.293252pt;}
.y34{bottom:714.933252pt;}
.yae{bottom:717.413252pt;}
.y101{bottom:718.293252pt;}
.y7f{bottom:719.173252pt;}
.y5c{bottom:720.613252pt;}
.yd7{bottom:722.293252pt;}
.y9{bottom:727.973252pt;}
.y33{bottom:732.613252pt;}
.yad{bottom:733.333252pt;}
.y100{bottom:734.213252pt;}
.y5b{bottom:738.213252pt;}
.yff{bottom:750.053252pt;}
.y8{bottom:750.213252pt;}
.yaa{bottom:753.173333pt;}
.yd6{bottom:754.053252pt;}
.y5a{bottom:755.813252pt;}
.y32{bottom:767.813252pt;}
.y7{bottom:767.893252pt;}
.yfe{bottom:769.973252pt;}
.yd5{bottom:773.973252pt;}
.yab{bottom:778.373333pt;}
.y59{bottom:781.493252pt;}
.y31{bottom:785.493252pt;}
.yfd{bottom:785.813252pt;}
.yd4{bottom:789.813252pt;}
.ya5{bottom:791.333333pt;}
.y6{bottom:797.413252pt;}
.y58{bottom:799.093252pt;}
.yfc{bottom:801.653252pt;}
.y30{bottom:803.093252pt;}
.yd3{bottom:805.653252pt;}
.ya7{bottom:816.533333pt;}
.y57{bottom:816.773252pt;}
.y2f{bottom:820.773252pt;}
.yfb{bottom:821.573252pt;}
.yd2{bottom:825.599919pt;}
.ya4{bottom:829.440000pt;}
.y5{bottom:833.359919pt;}
.y56{bottom:834.399919pt;}
.yfa{bottom:837.439919pt;}
.y2e{bottom:838.399919pt;}
.yd1{bottom:841.439919pt;}
.y55{bottom:851.999919pt;}
.yf9{bottom:853.279919pt;}
.y4{bottom:854.479919pt;}
.ya3{bottom:854.559919pt;}
.y2d{bottom:855.999919pt;}
.yd0{bottom:857.279919pt;}
.y2{bottom:888.479919pt;}
.hf{height:12.240000pt;}
.h16{height:12.266667pt;}
.h13{height:12.320000pt;}
.h18{height:24.480000pt;}
.h1a{height:24.560000pt;}
.h10{height:32.800000pt;}
.h7{height:33.901875pt;}
.h19{height:37.440000pt;}
.h15{height:37.466667pt;}
.h11{height:41.770312pt;}
.h12{height:42.067187pt;}
.h17{height:42.173854pt;}
.he{height:42.892500pt;}
.h14{height:47.085938pt;}
.h3{height:47.109375pt;}
.hd{height:47.908125pt;}
.ha{height:48.375000pt;}
.h1b{height:50.062500pt;}
.h8{height:52.422344pt;}
.h9{height:52.448437pt;}
.hc{height:52.478750pt;}
.hb{height:53.857500pt;}
.h4{height:58.245469pt;}
.h6{height:59.172500pt;}
.h5{height:64.500000pt;}
.h2{height:945.039919pt;}
.h0{height:945.040000pt;}
.h1{height:945.333333pt;}
.wb{width:30.720000pt;}
.wa{width:40.506667pt;}
.w4{width:41.600000pt;}
.w3{width:45.706667pt;}
.w11{width:52.880000pt;}
.wf{width:54.720000pt;}
.w10{width:54.746667pt;}
.wd{width:58.000000pt;}
.we{width:58.026667pt;}
.w9{width:58.080000pt;}
.w5{width:61.760000pt;}
.wc{width:66.400000pt;}
.w8{width:68.666667pt;}
.w7{width:82.960000pt;}
.w6{width:104.906667pt;}
.w1{width:661.333333pt;}
.w2{width:661.519990pt;}
.w0{width:661.520000pt;}
.x0{left:0.000000pt;}
.x19{left:1.840000pt;}
.x10{left:3.760000pt;}
.x2{left:68.079990pt;}
.xd{left:73.679990pt;}
.x3{left:75.519990pt;}
.x18{left:81.919990pt;}
.xe{left:85.919990pt;}
.x4{left:87.279990pt;}
.x1{left:89.999990pt;}
.x7{left:93.706657pt;}
.xc{left:98.346657pt;}
.x1a{left:108.586667pt;}
.x11{left:113.786667pt;}
.x22{left:116.106657pt;}
.x6{left:132.506657pt;}
.x1b{left:139.306667pt;}
.x12{left:155.386667pt;}
.x5{left:164.826657pt;}
.x1c{left:205.706667pt;}
.x8{left:214.186657pt;}
.x13{left:217.146667pt;}
.xa{left:221.546657pt;}
.x9{left:236.106657pt;}
.x1d{left:263.706667pt;}
.xb{left:298.133323pt;}
.xf{left:300.933323pt;}
.x14{left:322.053333pt;}
.x1e{left:376.453333pt;}
.x15{left:405.013333pt;}
.x1f{left:431.173333pt;}
.x16{left:466.773333pt;}
.x20{left:485.920000pt;}
.x17{left:535.440000pt;}
.x21{left:538.800000pt;}
}




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