
    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_5ec245b2123f039bcd02186c.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_e6372fdc75d854c8dc0f3c04.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_e4fbfa9424ae97c9d9e8c0fc.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_323f34c12247e3ac1757021e.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_461328f5e5513077b8334f6f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.921387;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_ef02443cdc18e937c3f47344.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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_bbf895394962e7f449b605dd.woff2')format("woff");}.ff9{font-family:ff9;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:20.880000px;}
.v1{vertical-align:24.120000px;}
.lsf{letter-spacing:-0.270000px;}
.ls11{letter-spacing:-0.180000px;}
.lsd{letter-spacing:-0.153600px;}
.ls7{letter-spacing:-0.103800px;}
.lsc{letter-spacing:-0.008640px;}
.lsb{letter-spacing:-0.004320px;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.018000px;}
.ls0{letter-spacing:0.021960px;}
.ls8{letter-spacing:0.028800px;}
.ls6{letter-spacing:0.090000px;}
.ls9{letter-spacing:0.139800px;}
.ls5{letter-spacing:0.153600px;}
.ls1{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.382200px;}
.lse{letter-spacing:0.450000px;}
.lsa{letter-spacing:12.330000px;}
.ls10{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;}
}
.wsf{word-spacing:-36.450000px;}
.wsb{word-spacing:-15.210000px;}
.ws4{word-spacing:-15.183600px;}
.wsa{word-spacing:-15.169800px;}
.ws8{word-spacing:-15.058800px;}
.ws9{word-spacing:-15.030000px;}
.wse{word-spacing:-14.876400px;}
.ws0{word-spacing:-13.518000px;}
.ws1{word-spacing:-13.500000px;}
.ws6{word-spacing:-11.970000px;}
.ws7{word-spacing:-11.866200px;}
.ws2{word-spacing:-10.530000px;}
.ws3{word-spacing:-9.720000px;}
.wsc{word-spacing:-9.715680px;}
.wsd{word-spacing:-9.711360px;}
.ws5{word-spacing:0.000000px;}
._5{margin-left:-3.727440px;}
._4{margin-left:-2.645280px;}
._1{margin-left:-1.082160px;}
._0{width:1.045800px;}
._2{width:2.082000px;}
._3{width:3.444000px;}
._9{width:4.869720px;}
._a{width:6.225240px;}
._6{width:7.676640px;}
._d{width:9.597360px;}
._c{width:10.641240px;}
._e{width:11.745240px;}
._f{width:12.985920px;}
._b{width:235.380000px;}
._8{width:466.278000px;}
._7{width:589.620000px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs2{font-size:42.120000px;}
.fs5{font-size:47.880000px;}
.fs0{font-size:54.000000px;}
.fs3{font-size:60.120000px;}
.fs1{font-size:65.880000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000092px;}
.y2d{bottom:4.770000px;}
.y2f{bottom:12.690000px;}
.y30{bottom:20.610000px;}
.y3{bottom:73.349908px;}
.y99{bottom:105.479908px;}
.ye4{bottom:106.739908px;}
.y4a{bottom:107.279908px;}
.ybb{bottom:122.309908px;}
.ye3{bottom:124.559908px;}
.y98{bottom:125.369908px;}
.y49{bottom:127.169908px;}
.y78{bottom:127.709908px;}
.y2a{bottom:130.139908px;}
.yba{bottom:140.129908px;}
.y97{bottom:145.169908px;}
.y48{bottom:146.969908px;}
.y77{bottom:147.509908px;}
.y29{bottom:149.939908px;}
.yb9{bottom:162.539908px;}
.ye2{bottom:164.789908px;}
.y96{bottom:164.969908px;}
.y76{bottom:167.399908px;}
.y28{bottom:169.829908px;}
.y5d{bottom:179.459908px;}
.yb8{bottom:180.359908px;}
.ye1{bottom:182.609908px;}
.y47{bottom:183.689908px;}
.y95{bottom:184.859908px;}
.y75{bottom:187.199908px;}
.y27{bottom:189.629908px;}
.y5c{bottom:199.349908px;}
.yb7{bottom:202.679908px;}
.y94{bottom:204.659908px;}
.ye0{bottom:205.019908px;}
.y46{bottom:206.999908px;}
.y74{bottom:207.089908px;}
.y26{bottom:209.519908px;}
.y5b{bottom:219.149908px;}
.yb6{bottom:220.589908px;}
.ydf{bottom:222.839908px;}
.y93{bottom:224.549908px;}
.y73{bottom:226.889908px;}
.y25{bottom:229.319908px;}
.yb5{bottom:238.409908px;}
.y5a{bottom:239.039908px;}
.y92{bottom:244.349908px;}
.yde{bottom:245.159908px;}
.y72{bottom:246.689908px;}
.y24{bottom:249.119908px;}
.yb4{bottom:260.729908px;}
.ydd{bottom:263.069908px;}
.y91{bottom:264.149908px;}
.y71{bottom:266.579908px;}
.y23{bottom:269.009908px;}
.y59{bottom:275.759908px;}
.yb3{bottom:278.639908px;}
.y90{bottom:284.039908px;}
.ydc{bottom:285.389908px;}
.y70{bottom:286.379908px;}
.y22{bottom:288.809908px;}
.y58{bottom:291.599908px;}
.yb2{bottom:296.459908px;}
.ydb{bottom:303.209908px;}
.y8f{bottom:303.839908px;}
.y6f{bottom:306.269908px;}
.y57{bottom:307.529908px;}
.y21{bottom:308.699908px;}
.yda{bottom:321.119908px;}
.y8e{bottom:323.729908px;}
.yb1{bottom:323.909908px;}
.y6e{bottom:326.069908px;}
.y20{bottom:328.499908px;}
.y56{bottom:330.749908px;}
.yd9{bottom:343.469908px;}
.y8d{bottom:343.559908px;}
.y6d{bottom:345.899908px;}
.y1f{bottom:348.329908px;}
.yd8{bottom:361.379908px;}
.yb0{bottom:361.739908px;}
.y8c{bottom:363.359908px;}
.y6c{bottom:365.789908px;}
.y1e{bottom:368.219908px;}
.yaf{bottom:381.539908px;}
.y8b{bottom:383.249908px;}
.yd7{bottom:383.699908px;}
.y6b{bottom:385.589908px;}
.y1d{bottom:388.019908px;}
.yae{bottom:401.429908px;}
.yd6{bottom:401.519908px;}
.y8a{bottom:403.049908px;}
.y6a{bottom:405.479908px;}
.y1c{bottom:407.909908px;}
.y45{bottom:422.039908px;}
.y89{bottom:422.939908px;}
.yd5{bottom:423.929908px;}
.y69{bottom:425.279908px;}
.y1b{bottom:427.709908px;}
.yad{bottom:430.229908px;}
.yd4{bottom:441.749908px;}
.y44{bottom:441.929908px;}
.y88{bottom:442.739908px;}
.y68{bottom:445.079908px;}
.y1a{bottom:447.509908px;}
.yd3{bottom:459.569908px;}
.y43{bottom:461.729908px;}
.y87{bottom:462.539908px;}
.y67{bottom:464.969908px;}
.y19{bottom:467.399908px;}
.yac{bottom:468.119908px;}
.y42{bottom:481.619908px;}
.yd2{bottom:481.979908px;}
.y86{bottom:482.429908px;}
.y66{bottom:484.769908px;}
.y18{bottom:487.199908px;}
.yab{bottom:487.919908px;}
.yd1{bottom:499.799908px;}
.y41{bottom:501.419908px;}
.y85{bottom:502.229908px;}
.y65{bottom:504.659908px;}
.y17{bottom:507.089908px;}
.yaa{bottom:516.719908px;}
.y40{bottom:521.219908px;}
.y84{bottom:522.119908px;}
.y64{bottom:524.459908px;}
.y16{bottom:535.889908px;}
.yd0{bottom:540.029908px;}
.y3f{bottom:541.109908px;}
.y83{bottom:541.919908px;}
.y63{bottom:544.259908px;}
.ya9{bottom:554.609908px;}
.y3e{bottom:560.909908px;}
.y82{bottom:561.719908px;}
.ycf{bottom:562.349908px;}
.y62{bottom:564.149908px;}
.y15{bottom:573.149908px;}
.ya8{bottom:574.409908px;}
.yce{bottom:580.169908px;}
.y81{bottom:581.609908px;}
.y61{bottom:583.949908px;}
.yee{bottom:587.729908px;}
.y3d{bottom:589.799908px;}
.ya7{bottom:594.299908px;}
.y14{bottom:600.059908px;}
.y80{bottom:601.409908px;}
.ycd{bottom:602.579908px;}
.yed{bottom:607.079908px;}
.y60{bottom:612.749908px;}
.ya6{bottom:614.099908px;}
.y13{bottom:617.879908px;}
.ycc{bottom:620.399908px;}
.y7f{bottom:621.299908px;}
.yec{bottom:624.899908px;}
.y3c{bottom:627.599908px;}
.ya5{bottom:633.929908px;}
.y12{bottom:635.729908px;}
.y7e{bottom:641.129908px;}
.ycb{bottom:642.839908px;}
.y3b{bottom:647.429908px;}
.y5f{bottom:649.589908px;}
.y11{bottom:653.639908px;}
.ya4{bottom:653.819908px;}
.yca{bottom:660.659908px;}
.y7d{bottom:660.929908px;}
.yeb{bottom:665.159908px;}
.y3a{bottom:667.319908px;}
.y10{bottom:671.459908px;}
.y5e{bottom:672.809908px;}
.ya3{bottom:673.619908px;}
.yc9{bottom:678.479908px;}
.y7c{bottom:680.819908px;}
.yea{bottom:682.979908px;}
.y39{bottom:687.119908px;}
.yf{bottom:689.369908px;}
.ya2{bottom:693.509908px;}
.y7b{bottom:700.619908px;}
.yc8{bottom:700.889908px;}
.ye9{bottom:705.389908px;}
.y38{bottom:707.009908px;}
.ye{bottom:707.189908px;}
.ya1{bottom:713.309908px;}
.yc7{bottom:718.709908px;}
.y7a{bottom:720.509908px;}
.ye8{bottom:723.209908px;}
.y37{bottom:726.809908px;}
.ya0{bottom:733.109908px;}
.y79{bottom:740.309908px;}
.yc6{bottom:741.029908px;}
.yd{bottom:743.549908px;}
.y36{bottom:746.609908px;}
.y9f{bottom:752.999908px;}
.y55{bottom:760.109908px;}
.yc{bottom:763.439908px;}
.y35{bottom:766.499908px;}
.y9e{bottom:772.799908px;}
.y54{bottom:779.999908px;}
.yc5{bottom:781.259908px;}
.yb{bottom:783.239908px;}
.y34{bottom:786.299908px;}
.y9d{bottom:792.689908px;}
.yc4{bottom:799.079908px;}
.y53{bottom:799.799908px;}
.y33{bottom:801.060000px;}
.ye7{bottom:803.579908px;}
.ya{bottom:808.259908px;}
.y9c{bottom:812.489908px;}
.y52{bottom:819.689908px;}
.yc3{bottom:821.489908px;}
.y9{bottom:828.149908px;}
.y9b{bottom:832.289908px;}
.y32{bottom:833.550000px;}
.yc2{bottom:839.309908px;}
.y51{bottom:839.489908px;}
.ye6{bottom:843.809908px;}
.y8{bottom:847.949908px;}
.y50{bottom:859.289908px;}
.y9a{bottom:861.179908px;}
.yc1{bottom:861.719908px;}
.y7{bottom:862.619908px;}
.y31{bottom:866.040000px;}
.y4f{bottom:879.179908px;}
.yc0{bottom:879.539908px;}
.ye5{bottom:884.039908px;}
.y2e{bottom:898.530000px;}
.y4e{bottom:898.979908px;}
.y6{bottom:901.049908px;}
.ybf{bottom:901.859908px;}
.y4d{bottom:918.869908px;}
.ybe{bottom:919.769908px;}
.y2c{bottom:931.050000px;}
.y4c{bottom:938.699908px;}
.y5{bottom:940.949908px;}
.ybd{bottom:942.119908px;}
.y4b{bottom:958.499908px;}
.ybc{bottom:959.939908px;}
.y2b{bottom:961.379908px;}
.y4{bottom:962.729908px;}
.y2{bottom:999.539908px;}
.hd{height:15.930000px;}
.h12{height:31.770000px;}
.hf{height:31.800000px;}
.h8{height:38.139609px;}
.he{height:46.968223px;}
.h11{height:46.991602px;}
.h10{height:47.622832px;}
.hc{height:48.254063px;}
.h16{height:52.971680px;}
.h3{height:52.998047px;}
.h14{height:53.896641px;}
.ha{height:54.421875px;}
.h15{height:56.320312px;}
.h7{height:58.975137px;}
.h9{height:59.004492px;}
.h13{height:59.038594px;}
.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;}
.w3{width:101.190000px;}
.w6{width:157.170000px;}
.w5{width:163.530000px;}
.w4{width:169.230000px;}
.w1{width:744.000000px;}
.w2{width:744.209989px;}
.w0{width:744.210000px;}
.x0{left:0.000000px;}
.x1d{left:9.270000px;}
.x1f{left:14.760000px;}
.x25{left:15.930000px;}
.x21{left:17.010000px;}
.x10{left:18.360000px;}
.x1b{left:22.590000px;}
.x1c{left:23.940000px;}
.x23{left:28.290000px;}
.x13{left:29.880000px;}
.x27{left:36.480000px;}
.x1a{left:37.830000px;}
.x20{left:40.170000px;}
.x19{left:42.930000px;}
.x11{left:44.100000px;}
.x18{left:46.980000px;}
.x15{left:48.630000px;}
.x22{left:52.290000px;}
.x24{left:53.490000px;}
.x17{left:55.260000px;}
.x1e{left:56.430000px;}
.x26{left:57.630000px;}
.x16{left:59.940000px;}
.x2{left:76.589989px;}
.x5{left:82.799989px;}
.xc{left:90.359989px;}
.x1{left:94.499989px;}
.xe{left:110.639989px;}
.x3{left:122.699989px;}
.x2b{left:130.619989px;}
.x2a{left:136.109989px;}
.x6{left:139.079989px;}
.xb{left:166.619989px;}
.xf{left:176.879989px;}
.x7{left:178.679989px;}
.x8{left:197.219989px;}
.xa{left:213.779989px;}
.x4{left:215.849989px;}
.x29{left:242.219989px;}
.x9{left:275.789989px;}
.xd{left:335.399989px;}
.x12{left:347.010000px;}
.x14{left:510.540000px;}
.x28{left:648.989989px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.440000pt;}
.lsf{letter-spacing:-0.240000pt;}
.ls11{letter-spacing:-0.160000pt;}
.lsd{letter-spacing:-0.136533pt;}
.ls7{letter-spacing:-0.092267pt;}
.lsc{letter-spacing:-0.007680pt;}
.lsb{letter-spacing:-0.003840pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.016000pt;}
.ls0{letter-spacing:0.019520pt;}
.ls8{letter-spacing:0.025600pt;}
.ls6{letter-spacing:0.080000pt;}
.ls9{letter-spacing:0.124267pt;}
.ls5{letter-spacing:0.136533pt;}
.ls1{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.339733pt;}
.lse{letter-spacing:0.400000pt;}
.lsa{letter-spacing:10.960000pt;}
.ls10{letter-spacing:21.536000pt;}
.wsf{word-spacing:-32.400000pt;}
.wsb{word-spacing:-13.520000pt;}
.ws4{word-spacing:-13.496533pt;}
.wsa{word-spacing:-13.484267pt;}
.ws8{word-spacing:-13.385600pt;}
.ws9{word-spacing:-13.360000pt;}
.wse{word-spacing:-13.223467pt;}
.ws0{word-spacing:-12.016000pt;}
.ws1{word-spacing:-12.000000pt;}
.ws6{word-spacing:-10.640000pt;}
.ws7{word-spacing:-10.547733pt;}
.ws2{word-spacing:-9.360000pt;}
.ws3{word-spacing:-8.640000pt;}
.wsc{word-spacing:-8.636160pt;}
.wsd{word-spacing:-8.632320pt;}
.ws5{word-spacing:0.000000pt;}
._5{margin-left:-3.313280pt;}
._4{margin-left:-2.351360pt;}
._1{margin-left:-0.961920pt;}
._0{width:0.929600pt;}
._2{width:1.850667pt;}
._3{width:3.061333pt;}
._9{width:4.328640pt;}
._a{width:5.533547pt;}
._6{width:6.823680pt;}
._d{width:8.530987pt;}
._c{width:9.458880pt;}
._e{width:10.440213pt;}
._f{width:11.543040pt;}
._b{width:209.226667pt;}
._8{width:414.469333pt;}
._7{width:524.106667pt;}
.fs4{font-size:34.560000pt;}
.fs2{font-size:37.440000pt;}
.fs5{font-size:42.560000pt;}
.fs0{font-size:48.000000pt;}
.fs3{font-size:53.440000pt;}
.fs1{font-size:58.560000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000081pt;}
.y2d{bottom:4.240000pt;}
.y2f{bottom:11.280000pt;}
.y30{bottom:18.320000pt;}
.y3{bottom:65.199919pt;}
.y99{bottom:93.759919pt;}
.ye4{bottom:94.879919pt;}
.y4a{bottom:95.359919pt;}
.ybb{bottom:108.719919pt;}
.ye3{bottom:110.719919pt;}
.y98{bottom:111.439919pt;}
.y49{bottom:113.039919pt;}
.y78{bottom:113.519919pt;}
.y2a{bottom:115.679919pt;}
.yba{bottom:124.559919pt;}
.y97{bottom:129.039919pt;}
.y48{bottom:130.639919pt;}
.y77{bottom:131.119919pt;}
.y29{bottom:133.279919pt;}
.yb9{bottom:144.479919pt;}
.ye2{bottom:146.479919pt;}
.y96{bottom:146.639919pt;}
.y76{bottom:148.799919pt;}
.y28{bottom:150.959919pt;}
.y5d{bottom:159.519919pt;}
.yb8{bottom:160.319919pt;}
.ye1{bottom:162.319919pt;}
.y47{bottom:163.279919pt;}
.y95{bottom:164.319919pt;}
.y75{bottom:166.399919pt;}
.y27{bottom:168.559919pt;}
.y5c{bottom:177.199919pt;}
.yb7{bottom:180.159919pt;}
.y94{bottom:181.919919pt;}
.ye0{bottom:182.239919pt;}
.y46{bottom:183.999919pt;}
.y74{bottom:184.079919pt;}
.y26{bottom:186.239919pt;}
.y5b{bottom:194.799919pt;}
.yb6{bottom:196.079919pt;}
.ydf{bottom:198.079919pt;}
.y93{bottom:199.599919pt;}
.y73{bottom:201.679919pt;}
.y25{bottom:203.839919pt;}
.yb5{bottom:211.919919pt;}
.y5a{bottom:212.479919pt;}
.y92{bottom:217.199919pt;}
.yde{bottom:217.919919pt;}
.y72{bottom:219.279919pt;}
.y24{bottom:221.439919pt;}
.yb4{bottom:231.759919pt;}
.ydd{bottom:233.839919pt;}
.y91{bottom:234.799919pt;}
.y71{bottom:236.959919pt;}
.y23{bottom:239.119919pt;}
.y59{bottom:245.119919pt;}
.yb3{bottom:247.679919pt;}
.y90{bottom:252.479919pt;}
.ydc{bottom:253.679919pt;}
.y70{bottom:254.559919pt;}
.y22{bottom:256.719919pt;}
.y58{bottom:259.199919pt;}
.yb2{bottom:263.519919pt;}
.ydb{bottom:269.519919pt;}
.y8f{bottom:270.079919pt;}
.y6f{bottom:272.239919pt;}
.y57{bottom:273.359919pt;}
.y21{bottom:274.399919pt;}
.yda{bottom:285.439919pt;}
.y8e{bottom:287.759919pt;}
.yb1{bottom:287.919919pt;}
.y6e{bottom:289.839919pt;}
.y20{bottom:291.999919pt;}
.y56{bottom:293.999919pt;}
.yd9{bottom:305.306585pt;}
.y8d{bottom:305.386585pt;}
.y6d{bottom:307.466585pt;}
.y1f{bottom:309.626585pt;}
.yd8{bottom:321.226585pt;}
.yb0{bottom:321.546585pt;}
.y8c{bottom:322.986585pt;}
.y6c{bottom:325.146585pt;}
.y1e{bottom:327.306585pt;}
.yaf{bottom:339.146585pt;}
.y8b{bottom:340.666585pt;}
.yd7{bottom:341.066585pt;}
.y6b{bottom:342.746585pt;}
.y1d{bottom:344.906585pt;}
.yae{bottom:356.826585pt;}
.yd6{bottom:356.906585pt;}
.y8a{bottom:358.266585pt;}
.y6a{bottom:360.426585pt;}
.y1c{bottom:362.586585pt;}
.y45{bottom:375.146585pt;}
.y89{bottom:375.946585pt;}
.yd5{bottom:376.826585pt;}
.y69{bottom:378.026585pt;}
.y1b{bottom:380.186585pt;}
.yad{bottom:382.426585pt;}
.yd4{bottom:392.666585pt;}
.y44{bottom:392.826585pt;}
.y88{bottom:393.546585pt;}
.y68{bottom:395.626585pt;}
.y1a{bottom:397.786585pt;}
.yd3{bottom:408.506585pt;}
.y43{bottom:410.426585pt;}
.y87{bottom:411.146585pt;}
.y67{bottom:413.306585pt;}
.y19{bottom:415.466585pt;}
.yac{bottom:416.106585pt;}
.y42{bottom:428.106585pt;}
.yd2{bottom:428.426585pt;}
.y86{bottom:428.826585pt;}
.y66{bottom:430.906585pt;}
.y18{bottom:433.066585pt;}
.yab{bottom:433.706585pt;}
.yd1{bottom:444.266585pt;}
.y41{bottom:445.706585pt;}
.y85{bottom:446.426585pt;}
.y65{bottom:448.586585pt;}
.y17{bottom:450.746585pt;}
.yaa{bottom:459.306585pt;}
.y40{bottom:463.306585pt;}
.y84{bottom:464.106585pt;}
.y64{bottom:466.186585pt;}
.y16{bottom:476.346585pt;}
.yd0{bottom:480.026585pt;}
.y3f{bottom:480.986585pt;}
.y83{bottom:481.706585pt;}
.y63{bottom:483.786585pt;}
.ya9{bottom:492.986585pt;}
.y3e{bottom:498.586585pt;}
.y82{bottom:499.306585pt;}
.ycf{bottom:499.866585pt;}
.y62{bottom:501.466585pt;}
.y15{bottom:509.466585pt;}
.ya8{bottom:510.586585pt;}
.yce{bottom:515.706585pt;}
.y81{bottom:516.986585pt;}
.y61{bottom:519.066585pt;}
.yee{bottom:522.426585pt;}
.y3d{bottom:524.266585pt;}
.ya7{bottom:528.266585pt;}
.y14{bottom:533.386585pt;}
.y80{bottom:534.586585pt;}
.ycd{bottom:535.626585pt;}
.yed{bottom:539.626585pt;}
.y60{bottom:544.666585pt;}
.ya6{bottom:545.866585pt;}
.y13{bottom:549.226585pt;}
.ycc{bottom:551.466585pt;}
.y7f{bottom:552.266585pt;}
.yec{bottom:555.466585pt;}
.y3c{bottom:557.866585pt;}
.ya5{bottom:563.493252pt;}
.y12{bottom:565.093252pt;}
.y7e{bottom:569.893252pt;}
.ycb{bottom:571.413252pt;}
.y3b{bottom:575.493252pt;}
.y5f{bottom:577.413252pt;}
.y11{bottom:581.013252pt;}
.ya4{bottom:581.173252pt;}
.yca{bottom:587.253252pt;}
.y7d{bottom:587.493252pt;}
.yeb{bottom:591.253252pt;}
.y3a{bottom:593.173252pt;}
.y10{bottom:596.853252pt;}
.y5e{bottom:598.053252pt;}
.ya3{bottom:598.773252pt;}
.yc9{bottom:603.093252pt;}
.y7c{bottom:605.173252pt;}
.yea{bottom:607.093252pt;}
.y39{bottom:610.773252pt;}
.yf{bottom:612.773252pt;}
.ya2{bottom:616.453252pt;}
.y7b{bottom:622.773252pt;}
.yc8{bottom:623.013252pt;}
.ye9{bottom:627.013252pt;}
.y38{bottom:628.453252pt;}
.ye{bottom:628.613252pt;}
.ya1{bottom:634.053252pt;}
.yc7{bottom:638.853252pt;}
.y7a{bottom:640.453252pt;}
.ye8{bottom:642.853252pt;}
.y37{bottom:646.053252pt;}
.ya0{bottom:651.653252pt;}
.y79{bottom:658.053252pt;}
.yc6{bottom:658.693252pt;}
.yd{bottom:660.933252pt;}
.y36{bottom:663.653252pt;}
.y9f{bottom:669.333252pt;}
.y55{bottom:675.653252pt;}
.yc{bottom:678.613252pt;}
.y35{bottom:681.333252pt;}
.y9e{bottom:686.933252pt;}
.y54{bottom:693.333252pt;}
.yc5{bottom:694.453252pt;}
.yb{bottom:696.213252pt;}
.y34{bottom:698.933252pt;}
.y9d{bottom:704.613252pt;}
.yc4{bottom:710.293252pt;}
.y53{bottom:710.933252pt;}
.y33{bottom:712.053333pt;}
.ye7{bottom:714.293252pt;}
.ya{bottom:718.453252pt;}
.y9c{bottom:722.213252pt;}
.y52{bottom:728.613252pt;}
.yc3{bottom:730.213252pt;}
.y9{bottom:736.133252pt;}
.y9b{bottom:739.813252pt;}
.y32{bottom:740.933333pt;}
.yc2{bottom:746.053252pt;}
.y51{bottom:746.213252pt;}
.ye6{bottom:750.053252pt;}
.y8{bottom:753.733252pt;}
.y50{bottom:763.813252pt;}
.y9a{bottom:765.493252pt;}
.yc1{bottom:765.973252pt;}
.y7{bottom:766.773252pt;}
.y31{bottom:769.813333pt;}
.y4f{bottom:781.493252pt;}
.yc0{bottom:781.813252pt;}
.ye5{bottom:785.813252pt;}
.y2e{bottom:798.693333pt;}
.y4e{bottom:799.093252pt;}
.y6{bottom:800.933252pt;}
.ybf{bottom:801.653252pt;}
.y4d{bottom:816.773252pt;}
.ybe{bottom:817.573252pt;}
.y2c{bottom:827.600000pt;}
.y4c{bottom:834.399919pt;}
.y5{bottom:836.399919pt;}
.ybd{bottom:837.439919pt;}
.y4b{bottom:851.999919pt;}
.ybc{bottom:853.279919pt;}
.y2b{bottom:854.559919pt;}
.y4{bottom:855.759919pt;}
.y2{bottom:888.479919pt;}
.hd{height:14.160000pt;}
.h12{height:28.240000pt;}
.hf{height:28.266667pt;}
.h8{height:33.901875pt;}
.he{height:41.749531pt;}
.h11{height:41.770312pt;}
.h10{height:42.331406pt;}
.hc{height:42.892500pt;}
.h16{height:47.085938pt;}
.h3{height:47.109375pt;}
.h14{height:47.908125pt;}
.ha{height:48.375000pt;}
.h15{height:50.062500pt;}
.h7{height:52.422344pt;}
.h9{height:52.448437pt;}
.h13{height:52.478750pt;}
.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;}
.w3{width:89.946667pt;}
.w6{width:139.706667pt;}
.w5{width:145.360000pt;}
.w4{width:150.426667pt;}
.w1{width:661.333333pt;}
.w2{width:661.519990pt;}
.w0{width:661.520000pt;}
.x0{left:0.000000pt;}
.x1d{left:8.240000pt;}
.x1f{left:13.120000pt;}
.x25{left:14.160000pt;}
.x21{left:15.120000pt;}
.x10{left:16.320000pt;}
.x1b{left:20.080000pt;}
.x1c{left:21.280000pt;}
.x23{left:25.146667pt;}
.x13{left:26.560000pt;}
.x27{left:32.426667pt;}
.x1a{left:33.626667pt;}
.x20{left:35.706667pt;}
.x19{left:38.160000pt;}
.x11{left:39.200000pt;}
.x18{left:41.760000pt;}
.x15{left:43.226667pt;}
.x22{left:46.480000pt;}
.x24{left:47.546667pt;}
.x17{left:49.120000pt;}
.x1e{left:50.160000pt;}
.x26{left:51.226667pt;}
.x16{left:53.280000pt;}
.x2{left:68.079990pt;}
.x5{left:73.599990pt;}
.xc{left:80.319990pt;}
.x1{left:83.999990pt;}
.xe{left:98.346657pt;}
.x3{left:109.066657pt;}
.x2b{left:116.106657pt;}
.x2a{left:120.986657pt;}
.x6{left:123.626657pt;}
.xb{left:148.106657pt;}
.xf{left:157.226657pt;}
.x7{left:158.826657pt;}
.x8{left:175.306657pt;}
.xa{left:190.026657pt;}
.x4{left:191.866657pt;}
.x29{left:215.306657pt;}
.x9{left:245.146657pt;}
.xd{left:298.133323pt;}
.x12{left:308.453333pt;}
.x14{left:453.813333pt;}
.x28{left:576.879990pt;}
}




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