
    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_33c24022a5d2cb0df4e77c6c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.002930;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_207c314e59e6078b089d4c8f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.002930;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_9cc94b6a4a8d57500fff085f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.945312;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_0edb90097e2e6c066d60b200.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.002930;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_15edea4c1f792fca479a8c84.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.983398;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_6510c7a6a7afca138f005b33.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_9c3d2d151c01224ee4157f78.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_333b6d6b7d0f814266561165.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_04141547d94db347e02b6ab1.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_e398ba153e865973b2213ebd.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_030979fcaac384dea8c10865.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.147461;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_d15cd38f24726338a449c802.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ffd{font-family:ffd;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;}
.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);}
.v5{vertical-align:-86.040000px;}
.v2{vertical-align:-18.000000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.880000px;}
.v1{vertical-align:20.880000px;}
.ls10{letter-spacing:-0.386400px;}
.lse{letter-spacing:-0.306600px;}
.lsf{letter-spacing:-0.153600px;}
.lsb{letter-spacing:-0.144000px;}
.lsc{letter-spacing:-0.139800px;}
.ls16{letter-spacing:-0.121800px;}
.ls15{letter-spacing:-0.059760px;}
.ls3{letter-spacing:-0.041760px;}
.ls12{letter-spacing:-0.003960px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000720px;}
.ls11{letter-spacing:0.003240px;}
.ls8{letter-spacing:0.008640px;}
.ls9{letter-spacing:0.037080px;}
.ls6{letter-spacing:0.045360px;}
.ls7{letter-spacing:0.053280px;}
.ls1{letter-spacing:0.078600px;}
.ls5{letter-spacing:0.091440px;}
.ls17{letter-spacing:0.119400px;}
.ls14{letter-spacing:0.124800px;}
.ls4{letter-spacing:0.139800px;}
.lsd{letter-spacing:0.153600px;}
.ls13{letter-spacing:0.160800px;}
.lsa{letter-spacing:1190.846640px;}
.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:-60.120000px;}
.wsb{word-spacing:-35.110080px;}
.ws5{word-spacing:-19.872000px;}
.ws7{word-spacing:-18.314640px;}
.wsa{word-spacing:-16.866960px;}
.wsc{word-spacing:-16.853160px;}
.wse{word-spacing:-16.713360px;}
.ws9{word-spacing:-16.573560px;}
.wsd{word-spacing:-16.406760px;}
.ws10{word-spacing:-16.326960px;}
.ws4{word-spacing:-15.028680px;}
.ws2{word-spacing:-14.967480px;}
.ws1{word-spacing:-14.888880px;}
.ws3{word-spacing:-14.847120px;}
.ws12{word-spacing:-13.747920px;}
.ws13{word-spacing:-13.711920px;}
.ws17{word-spacing:-13.706520px;}
.ws16{word-spacing:-13.587120px;}
.ws11{word-spacing:-13.583160px;}
.ws14{word-spacing:-13.527360px;}
.ws15{word-spacing:-13.465320px;}
.ws6{word-spacing:-11.709360px;}
.ws8{word-spacing:-10.808640px;}
.ws0{word-spacing:0.000000px;}
._9{margin-left:-13.149600px;}
._7{margin-left:-6.143760px;}
._11{margin-left:-4.875000px;}
._8{margin-left:-3.848880px;}
._f{margin-left:-2.498160px;}
._0{margin-left:-1.133400px;}
._1{width:1.258200px;}
._e{width:3.006000px;}
._c{width:5.290560px;}
._d{width:6.482400px;}
._b{width:7.948080px;}
._10{width:9.560400px;}
._12{width:14.308560px;}
._13{width:15.331560px;}
._a{width:29.080080px;}
._3{width:117.843120px;}
._4{width:193.443120px;}
._2{width:481.083120px;}
._5{width:553.563120px;}
._14{width:846.048000px;}
._6{width:849.171720px;}
._15{width:1257.405360px;}
.fc2{color:rgb(128,141,42);}
.fc1{color:rgb(46,116,181);}
.fc3{color:rgb(237,125,49);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:29.880000px;}
.fs8{font-size:38.880000px;}
.fs5{font-size:42.120000px;}
.fs7{font-size:47.880000px;}
.fs4{font-size:60.120000px;}
.fs0{font-size:65.880000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:83.880000px;}
.fs1{font-size:132.120000px;}
.y0{bottom:0.000000px;}
.y5b{bottom:0.000092px;}
.y89{bottom:4.050000px;}
.y8f{bottom:4.140000px;}
.ya7{bottom:4.170000px;}
.y88{bottom:8.280000px;}
.ya6{bottom:8.310000px;}
.ya4{bottom:8.730000px;}
.ya8{bottom:8.760000px;}
.y8e{bottom:22.410000px;}
.y8c{bottom:24.030000px;}
.y5e{bottom:38.399908px;}
.y4{bottom:57.510000px;}
.y5d{bottom:58.559908px;}
.y3{bottom:77.670000px;}
.yb4{bottom:85.590000px;}
.yb3{bottom:108.090000px;}
.y85{bottom:109.259908px;}
.y5a{bottom:117.630000px;}
.y19{bottom:119.070000px;}
.y38{bottom:121.500000px;}
.yb2{bottom:130.590000px;}
.y84{bottom:138.959908px;}
.y59{bottom:146.790000px;}
.y18{bottom:152.820000px;}
.yb1{bottom:153.090000px;}
.y37{bottom:153.720000px;}
.y83{bottom:168.659908px;}
.y36{bottom:173.880000px;}
.yb0{bottom:175.590000px;}
.y58{bottom:176.040000px;}
.y17{bottom:186.570000px;}
.y35{bottom:194.040000px;}
.yaf{bottom:198.090000px;}
.y82{bottom:198.359908px;}
.y57{bottom:205.290000px;}
.yae{bottom:220.590000px;}
.y16{bottom:220.860000px;}
.y34{bottom:226.110000px;}
.y81{bottom:228.059908px;}
.y56{bottom:234.570000px;}
.yad{bottom:243.090000px;}
.y33{bottom:246.360000px;}
.y80{bottom:257.759908px;}
.y15{bottom:258.960000px;}
.y55{bottom:263.820000px;}
.yac{bottom:265.590000px;}
.y32{bottom:266.520000px;}
.y31{bottom:286.680000px;}
.y7f{bottom:287.459908px;}
.yab{bottom:288.090000px;}
.y54{bottom:293.070000px;}
.yaa{bottom:310.590000px;}
.y7e{bottom:317.159908px;}
.y30{bottom:318.720000px;}
.y53{bottom:322.230000px;}
.ya9{bottom:333.090000px;}
.y2f{bottom:338.970000px;}
.y7d{bottom:346.859908px;}
.y52{bottom:351.480000px;}
.y14{bottom:352.020000px;}
.ya5{bottom:355.590000px;}
.y2e{bottom:359.040000px;}
.y7c{bottom:376.589908px;}
.ya3{bottom:378.120000px;}
.y2d{bottom:379.200000px;}
.y51{bottom:380.730000px;}
.ya2{bottom:400.620000px;}
.y2c{bottom:400.980000px;}
.y50{bottom:409.980000px;}
.ya1{bottom:423.120000px;}
.y7b{bottom:427.799908px;}
.y2b{bottom:434.730000px;}
.y4f{bottom:439.230000px;}
.ya0{bottom:445.620000px;}
.y7a{bottom:446.429908px;}
.y13{bottom:450.840000px;}
.y2a{bottom:456.420000px;}
.y79{bottom:464.969908px;}
.y9f{bottom:468.120000px;}
.y4e{bottom:468.480000px;}
.y29{bottom:478.200000px;}
.y78{bottom:483.599908px;}
.y9e{bottom:490.620000px;}
.y12{bottom:497.460000px;}
.y4d{bottom:497.730000px;}
.y28{bottom:499.890000px;}
.y77{bottom:502.229908px;}
.y9d{bottom:513.120000px;}
.y76{bottom:520.859908px;}
.y4c{bottom:526.890000px;}
.y27{bottom:533.640000px;}
.y9c{bottom:535.620000px;}
.y75{bottom:539.489908px;}
.y11{bottom:544.080000px;}
.y4b{bottom:556.140000px;}
.y9b{bottom:558.120000px;}
.y74{bottom:559.289908px;}
.y26{bottom:567.390000px;}
.y73{bottom:577.919908px;}
.y9a{bottom:580.620000px;}
.y10{bottom:583.860000px;}
.y4a{bottom:585.390000px;}
.y72{bottom:596.549908px;}
.y25{bottom:601.140000px;}
.y99{bottom:603.120000px;}
.yf{bottom:611.490000px;}
.y49{bottom:614.640000px;}
.y71{bottom:615.179908px;}
.y24{bottom:634.800000px;}
.y70{bottom:634.979908px;}
.ye{bottom:639.210000px;}
.y98{bottom:639.750000px;}
.y48{bottom:643.890000px;}
.y6f{bottom:653.609908px;}
.y97{bottom:662.280000px;}
.y23{bottom:668.580000px;}
.y6e{bottom:672.179908px;}
.y47{bottom:673.170000px;}
.yd{bottom:677.760000px;}
.y6d{bottom:690.809908px;}
.y96{bottom:698.910000px;}
.y22{bottom:702.330000px;}
.y6c{bottom:709.439908px;}
.yc{bottom:718.890000px;}
.y95{bottom:721.410000px;}
.y6b{bottom:728.069908px;}
.y46{bottom:731.580000px;}
.y21{bottom:736.080000px;}
.y6a{bottom:746.699908px;}
.y94{bottom:759.660000px;}
.y45{bottom:760.830000px;}
.y69{bottom:765.329908px;}
.yb{bottom:768.390000px;}
.y20{bottom:769.830000px;}
.y93{bottom:782.160000px;}
.y68{bottom:783.869908px;}
.y44{bottom:790.080000px;}
.ya{bottom:797.640000px;}
.y67{bottom:802.499908px;}
.y1f{bottom:803.580000px;}
.y43{bottom:819.330000px;}
.y66{bottom:820.139908px;}
.y92{bottom:820.410000px;}
.y65{bottom:834.989908px;}
.y1e{bottom:837.330000px;}
.y91{bottom:842.910000px;}
.y42{bottom:848.580000px;}
.y64{bottom:854.429908px;}
.y63{bottom:864.779908px;}
.y90{bottom:865.410000px;}
.y1d{bottom:870.990000px;}
.y41{bottom:877.830000px;}
.y62{bottom:884.219908px;}
.y8d{bottom:887.910000px;}
.y1c{bottom:904.740000px;}
.y61{bottom:905.009908px;}
.y40{bottom:906.990000px;}
.y8b{bottom:924.540000px;}
.y3f{bottom:936.240000px;}
.y60{bottom:936.329908px;}
.y1b{bottom:938.490000px;}
.y8a{bottom:962.820000px;}
.y3e{bottom:965.490000px;}
.y5f{bottom:966.059908px;}
.y1a{bottom:972.240000px;}
.y5c{bottom:984.959908px;}
.y87{bottom:985.320000px;}
.y3d{bottom:994.740000px;}
.y9{bottom:1005.990000px;}
.y3c{bottom:1023.990000px;}
.y86{bottom:1034.819908px;}
.y8{bottom:1039.740000px;}
.y3b{bottom:1053.240000px;}
.y7{bottom:1073.430000px;}
.y3a{bottom:1082.430000px;}
.y6{bottom:1107.180000px;}
.y39{bottom:1111.680000px;}
.y5{bottom:1140.930000px;}
.y2{bottom:1173.960000px;}
.y1{bottom:1194.120000px;}
.h10{height:22.500000px;}
.h15{height:22.530000px;}
.hd{height:31.937344px;}
.h13{height:36.630000px;}
.h14{height:38.250000px;}
.h12{height:38.280000px;}
.h11{height:49.581387px;}
.he{height:49.937344px;}
.h2{height:54.331699px;}
.h6{height:57.937500px;}
.h16{height:59.004492px;}
.h4{height:59.378906px;}
.hf{height:62.703281px;}
.ha{height:68.710781px;}
.h5{height:69.176426px;}
.hb{height:72.562500px;}
.hc{height:75.093750px;}
.h3{height:108.960293px;}
.h8{height:1092.750000px;}
.h9{height:1092.869908px;}
.h7{height:1092.870000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:91.200000px;}
.w7{width:113.670000px;}
.wa{width:113.700000px;}
.w9{width:161.730000px;}
.w6{width:161.760000px;}
.w5{width:773.909988px;}
.w3{width:773.910000px;}
.w4{width:774.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:5.220000px;}
.x11{left:85.049988px;}
.x12{left:98.549988px;}
.x1{left:127.649987px;}
.x10{left:137.999988px;}
.xc{left:144.119987px;}
.x7{left:152.399987px;}
.x6{left:183.719987px;}
.x15{left:246.810000px;}
.x5{left:249.419987px;}
.x8{left:265.709987px;}
.x16{left:360.480000px;}
.x13{left:372.449988px;}
.xa{left:375.089987px;}
.xf{left:386.939988px;}
.x3{left:446.549987px;}
.x17{left:451.680000px;}
.x9{left:562.469987px;}
.x18{left:613.410000px;}
.xe{left:663.839988px;}
.x4{left:665.999987px;}
.xd{left:690.389988px;}
.xb{left:748.799987px;}
.x2{left:757.169987px;}
@media print{
.v5{vertical-align:-76.480000pt;}
.v2{vertical-align:-16.000000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.560000pt;}
.v1{vertical-align:18.560000pt;}
.ls10{letter-spacing:-0.343467pt;}
.lse{letter-spacing:-0.272533pt;}
.lsf{letter-spacing:-0.136533pt;}
.lsb{letter-spacing:-0.128000pt;}
.lsc{letter-spacing:-0.124267pt;}
.ls16{letter-spacing:-0.108267pt;}
.ls15{letter-spacing:-0.053120pt;}
.ls3{letter-spacing:-0.037120pt;}
.ls12{letter-spacing:-0.003520pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000640pt;}
.ls11{letter-spacing:0.002880pt;}
.ls8{letter-spacing:0.007680pt;}
.ls9{letter-spacing:0.032960pt;}
.ls6{letter-spacing:0.040320pt;}
.ls7{letter-spacing:0.047360pt;}
.ls1{letter-spacing:0.069867pt;}
.ls5{letter-spacing:0.081280pt;}
.ls17{letter-spacing:0.106133pt;}
.ls14{letter-spacing:0.110933pt;}
.ls4{letter-spacing:0.124267pt;}
.lsd{letter-spacing:0.136533pt;}
.ls13{letter-spacing:0.142933pt;}
.lsa{letter-spacing:1058.530347pt;}
.wsf{word-spacing:-53.440000pt;}
.wsb{word-spacing:-31.208960pt;}
.ws5{word-spacing:-17.664000pt;}
.ws7{word-spacing:-16.279680pt;}
.wsa{word-spacing:-14.992853pt;}
.wsc{word-spacing:-14.980587pt;}
.wse{word-spacing:-14.856320pt;}
.ws9{word-spacing:-14.732053pt;}
.wsd{word-spacing:-14.583787pt;}
.ws10{word-spacing:-14.512853pt;}
.ws4{word-spacing:-13.358827pt;}
.ws2{word-spacing:-13.304427pt;}
.ws1{word-spacing:-13.234560pt;}
.ws3{word-spacing:-13.197440pt;}
.ws12{word-spacing:-12.220373pt;}
.ws13{word-spacing:-12.188373pt;}
.ws17{word-spacing:-12.183573pt;}
.ws16{word-spacing:-12.077440pt;}
.ws11{word-spacing:-12.073920pt;}
.ws14{word-spacing:-12.024320pt;}
.ws15{word-spacing:-11.969173pt;}
.ws6{word-spacing:-10.408320pt;}
.ws8{word-spacing:-9.607680pt;}
.ws0{word-spacing:0.000000pt;}
._9{margin-left:-11.688533pt;}
._7{margin-left:-5.461120pt;}
._11{margin-left:-4.333333pt;}
._8{margin-left:-3.421227pt;}
._f{margin-left:-2.220587pt;}
._0{margin-left:-1.007467pt;}
._1{width:1.118400pt;}
._e{width:2.672000pt;}
._c{width:4.702720pt;}
._d{width:5.762133pt;}
._b{width:7.064960pt;}
._10{width:8.498133pt;}
._12{width:12.718720pt;}
._13{width:13.628053pt;}
._a{width:25.848960pt;}
._3{width:104.749440pt;}
._4{width:171.949440pt;}
._2{width:427.629440pt;}
._5{width:492.056107pt;}
._14{width:752.042667pt;}
._6{width:754.819307pt;}
._15{width:1117.693653pt;}
.fs6{font-size:26.560000pt;}
.fs8{font-size:34.560000pt;}
.fs5{font-size:37.440000pt;}
.fs7{font-size:42.560000pt;}
.fs4{font-size:53.440000pt;}
.fs0{font-size:58.560000pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:74.560000pt;}
.fs1{font-size:117.440000pt;}
.y0{bottom:0.000000pt;}
.y5b{bottom:0.000081pt;}
.y89{bottom:3.600000pt;}
.y8f{bottom:3.680000pt;}
.ya7{bottom:3.706667pt;}
.y88{bottom:7.360000pt;}
.ya6{bottom:7.386667pt;}
.ya4{bottom:7.760000pt;}
.ya8{bottom:7.786667pt;}
.y8e{bottom:19.920000pt;}
.y8c{bottom:21.360000pt;}
.y5e{bottom:34.133252pt;}
.y4{bottom:51.120000pt;}
.y5d{bottom:52.053252pt;}
.y3{bottom:69.040000pt;}
.yb4{bottom:76.080000pt;}
.yb3{bottom:96.080000pt;}
.y85{bottom:97.119919pt;}
.y5a{bottom:104.560000pt;}
.y19{bottom:105.840000pt;}
.y38{bottom:108.000000pt;}
.yb2{bottom:116.080000pt;}
.y84{bottom:123.519919pt;}
.y59{bottom:130.480000pt;}
.y18{bottom:135.840000pt;}
.yb1{bottom:136.080000pt;}
.y37{bottom:136.640000pt;}
.y83{bottom:149.919919pt;}
.y36{bottom:154.560000pt;}
.yb0{bottom:156.080000pt;}
.y58{bottom:156.480000pt;}
.y17{bottom:165.840000pt;}
.y35{bottom:172.480000pt;}
.yaf{bottom:176.080000pt;}
.y82{bottom:176.319919pt;}
.y57{bottom:182.480000pt;}
.yae{bottom:196.080000pt;}
.y16{bottom:196.320000pt;}
.y34{bottom:200.986667pt;}
.y81{bottom:202.719919pt;}
.y56{bottom:208.506667pt;}
.yad{bottom:216.080000pt;}
.y33{bottom:218.986667pt;}
.y80{bottom:229.119919pt;}
.y15{bottom:230.186667pt;}
.y55{bottom:234.506667pt;}
.yac{bottom:236.080000pt;}
.y32{bottom:236.906667pt;}
.y31{bottom:254.826667pt;}
.y7f{bottom:255.519919pt;}
.yab{bottom:256.080000pt;}
.y54{bottom:260.506667pt;}
.yaa{bottom:276.080000pt;}
.y7e{bottom:281.919919pt;}
.y30{bottom:283.306667pt;}
.y53{bottom:286.426667pt;}
.ya9{bottom:296.080000pt;}
.y2f{bottom:301.306667pt;}
.y7d{bottom:308.319919pt;}
.y52{bottom:312.426667pt;}
.y14{bottom:312.906667pt;}
.ya5{bottom:316.080000pt;}
.y2e{bottom:319.146667pt;}
.y7c{bottom:334.746585pt;}
.ya3{bottom:336.106667pt;}
.y2d{bottom:337.066667pt;}
.y51{bottom:338.426667pt;}
.ya2{bottom:356.106667pt;}
.y2c{bottom:356.426667pt;}
.y50{bottom:364.426667pt;}
.ya1{bottom:376.106667pt;}
.y7b{bottom:380.266585pt;}
.y2b{bottom:386.426667pt;}
.y4f{bottom:390.426667pt;}
.ya0{bottom:396.106667pt;}
.y7a{bottom:396.826585pt;}
.y13{bottom:400.746667pt;}
.y2a{bottom:405.706667pt;}
.y79{bottom:413.306585pt;}
.y9f{bottom:416.106667pt;}
.y4e{bottom:416.426667pt;}
.y29{bottom:425.066667pt;}
.y78{bottom:429.866585pt;}
.y9e{bottom:436.106667pt;}
.y12{bottom:442.186667pt;}
.y4d{bottom:442.426667pt;}
.y28{bottom:444.346667pt;}
.y77{bottom:446.426585pt;}
.y9d{bottom:456.106667pt;}
.y76{bottom:462.986585pt;}
.y4c{bottom:468.346667pt;}
.y27{bottom:474.346667pt;}
.y9c{bottom:476.106667pt;}
.y75{bottom:479.546585pt;}
.y11{bottom:483.626667pt;}
.y4b{bottom:494.346667pt;}
.y9b{bottom:496.106667pt;}
.y74{bottom:497.146585pt;}
.y26{bottom:504.346667pt;}
.y73{bottom:513.706585pt;}
.y9a{bottom:516.106667pt;}
.y10{bottom:518.986667pt;}
.y4a{bottom:520.346667pt;}
.y72{bottom:530.266585pt;}
.y25{bottom:534.346667pt;}
.y99{bottom:536.106667pt;}
.yf{bottom:543.546667pt;}
.y49{bottom:546.346667pt;}
.y71{bottom:546.826585pt;}
.y24{bottom:564.266667pt;}
.y70{bottom:564.426585pt;}
.ye{bottom:568.186667pt;}
.y98{bottom:568.666667pt;}
.y48{bottom:572.346667pt;}
.y6f{bottom:580.986585pt;}
.y97{bottom:588.693333pt;}
.y23{bottom:594.293333pt;}
.y6e{bottom:597.493252pt;}
.y47{bottom:598.373333pt;}
.yd{bottom:602.453333pt;}
.y6d{bottom:614.053252pt;}
.y96{bottom:621.253333pt;}
.y22{bottom:624.293333pt;}
.y6c{bottom:630.613252pt;}
.yc{bottom:639.013333pt;}
.y95{bottom:641.253333pt;}
.y6b{bottom:647.173252pt;}
.y46{bottom:650.293333pt;}
.y21{bottom:654.293333pt;}
.y6a{bottom:663.733252pt;}
.y94{bottom:675.253333pt;}
.y45{bottom:676.293333pt;}
.y69{bottom:680.293252pt;}
.yb{bottom:683.013333pt;}
.y20{bottom:684.293333pt;}
.y93{bottom:695.253333pt;}
.y68{bottom:696.773252pt;}
.y44{bottom:702.293333pt;}
.ya{bottom:709.013333pt;}
.y67{bottom:713.333252pt;}
.y1f{bottom:714.293333pt;}
.y43{bottom:728.293333pt;}
.y66{bottom:729.013252pt;}
.y92{bottom:729.253333pt;}
.y65{bottom:742.213252pt;}
.y1e{bottom:744.293333pt;}
.y91{bottom:749.253333pt;}
.y42{bottom:754.293333pt;}
.y64{bottom:759.493252pt;}
.y63{bottom:768.693252pt;}
.y90{bottom:769.253333pt;}
.y1d{bottom:774.213333pt;}
.y41{bottom:780.293333pt;}
.y62{bottom:785.973252pt;}
.y8d{bottom:789.253333pt;}
.y1c{bottom:804.213333pt;}
.y61{bottom:804.453252pt;}
.y40{bottom:806.213333pt;}
.y8b{bottom:821.813333pt;}
.y3f{bottom:832.213333pt;}
.y60{bottom:832.293252pt;}
.y1b{bottom:834.213333pt;}
.y8a{bottom:855.840000pt;}
.y3e{bottom:858.213333pt;}
.y5f{bottom:858.719919pt;}
.y1a{bottom:864.213333pt;}
.y5c{bottom:875.519919pt;}
.y87{bottom:875.840000pt;}
.y3d{bottom:884.213333pt;}
.y9{bottom:894.213333pt;}
.y3c{bottom:910.213333pt;}
.y86{bottom:919.839919pt;}
.y8{bottom:924.213333pt;}
.y3b{bottom:936.213333pt;}
.y7{bottom:954.160000pt;}
.y3a{bottom:962.160000pt;}
.y6{bottom:984.160000pt;}
.y39{bottom:988.160000pt;}
.y5{bottom:1014.160000pt;}
.y2{bottom:1043.520000pt;}
.y1{bottom:1061.440000pt;}
.h10{height:20.000000pt;}
.h15{height:20.026667pt;}
.hd{height:28.388750pt;}
.h13{height:32.560000pt;}
.h14{height:34.000000pt;}
.h12{height:34.026667pt;}
.h11{height:44.072344pt;}
.he{height:44.388750pt;}
.h2{height:48.294844pt;}
.h6{height:51.500000pt;}
.h16{height:52.448437pt;}
.h4{height:52.781250pt;}
.hf{height:55.736250pt;}
.ha{height:61.076250pt;}
.h5{height:61.490156pt;}
.hb{height:64.500000pt;}
.hc{height:66.750000pt;}
.h3{height:96.853594pt;}
.h8{height:971.333333pt;}
.h9{height:971.439919pt;}
.h7{height:971.440000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:81.066667pt;}
.w7{width:101.040000pt;}
.wa{width:101.066667pt;}
.w9{width:143.760000pt;}
.w6{width:143.786667pt;}
.w5{width:687.919990pt;}
.w3{width:687.920000pt;}
.w4{width:688.000000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:4.640000pt;}
.x11{left:75.599990pt;}
.x12{left:87.599990pt;}
.x1{left:113.466655pt;}
.x10{left:122.666656pt;}
.xc{left:128.106655pt;}
.x7{left:135.466655pt;}
.x6{left:163.306655pt;}
.x15{left:219.386667pt;}
.x5{left:221.706655pt;}
.x8{left:236.186655pt;}
.x16{left:320.426667pt;}
.x13{left:331.066656pt;}
.xa{left:333.413322pt;}
.xf{left:343.946656pt;}
.x3{left:396.933322pt;}
.x17{left:401.493333pt;}
.x9{left:499.973322pt;}
.x18{left:545.253333pt;}
.xe{left:590.079990pt;}
.x4{left:591.999988pt;}
.xd{left:613.679990pt;}
.xb{left:665.599988pt;}
.x2{left:673.039988pt;}
}




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