
    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_f27691bdf23f4527dba2bda8.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_5f8aa509789b3feec5da030f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.035156;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_7ff5225ed3dfdd05d658eb81.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_3b8bdf7caff024c165849c01.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_1d495dda717e7e385666d415.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_ccc1638eb46e9fe2264c0855.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.063477;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_72e023d82be48aa6b7c1f5c3.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.063477;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_c911a6e7b8677a6d2e4ddb9c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;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_6c90ee3777d7a815dfa351f4.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_3c2046b80eb42ba620d64a76.woff2')format("woff");}.ffb{font-family:ffb;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);}
.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);}
.v4{vertical-align:-17.280000px;}
.v3{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:17.280000px;}
.v6{vertical-align:30.960000px;}
.v2{vertical-align:56.160000px;}
.v1{vertical-align:64.080000px;}
.v7{vertical-align:66.240000px;}
.ls7{letter-spacing:-0.900000px;}
.ls21{letter-spacing:-0.274200px;}
.ls8{letter-spacing:-0.180000px;}
.ls22{letter-spacing:-0.096000px;}
.ls6{letter-spacing:0.000000px;}
.ls20{letter-spacing:0.000726px;}
.lsf{letter-spacing:0.010800px;}
.ls1d{letter-spacing:0.028080px;}
.ls1f{letter-spacing:0.037440px;}
.ls15{letter-spacing:0.081600px;}
.ls5{letter-spacing:0.130800px;}
.ls1{letter-spacing:0.131040px;}
.lsb{letter-spacing:0.187200px;}
.ls12{letter-spacing:0.252720px;}
.ls19{letter-spacing:0.275040px;}
.ls1e{letter-spacing:0.299400px;}
.ls1a{letter-spacing:0.339000px;}
.ls14{letter-spacing:0.341280px;}
.ls3{letter-spacing:0.341400px;}
.ls0{letter-spacing:0.360000px;}
.ls4{letter-spacing:1.260000px;}
.ls11{letter-spacing:1.382880px;}
.ls24{letter-spacing:1.457760px;}
.ls18{letter-spacing:1.481760px;}
.ls17{letter-spacing:1.727760px;}
.lse{letter-spacing:2.005200px;}
.lsa{letter-spacing:2.093760px;}
.lsd{letter-spacing:2.766000px;}
.ls10{letter-spacing:3.558960px;}
.ls2{letter-spacing:4.860000px;}
.ls9{letter-spacing:12.600000px;}
.lsc{letter-spacing:18.388800px;}
.ls23{letter-spacing:18.472080px;}
.ls1b{letter-spacing:22.752720px;}
.ls13{letter-spacing:23.472720px;}
.ls1c{letter-spacing:68.245200px;}
.ls16{letter-spacing:100.045200px;}
.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:-24.300000px;}
.ws6{word-spacing:-21.420000px;}
.wse{word-spacing:-21.097440px;}
.ws7{word-spacing:-21.088080px;}
.ws0{word-spacing:-21.060000px;}
.ws17{word-spacing:-18.871800px;}
.wsc{word-spacing:-18.832200px;}
.ws2{word-spacing:-18.663600px;}
.ws11{word-spacing:-18.533526px;}
.ws1{word-spacing:-18.532800px;}
.ws16{word-spacing:-18.258600px;}
.ws12{word-spacing:-13.228800px;}
.ws8{word-spacing:-13.147200px;}
.ws18{word-spacing:-13.051200px;}
.ws5{word-spacing:-4.842000px;}
.wsf{word-spacing:-1.262640px;}
.ws3{word-spacing:0.000000px;}
.wsa{word-spacing:0.191520px;}
.ws14{word-spacing:0.659280px;}
.ws13{word-spacing:3.609120px;}
.ws10{word-spacing:3.656880px;}
.wsb{word-spacing:5.955840px;}
.ws15{word-spacing:6.708960px;}
.ws9{word-spacing:15.210720px;}
.ws19{word-spacing:15.220800px;}
.ws1a{word-spacing:16.200000px;}
.wsd{word-spacing:23.238000px;}
._15{margin-left:-11.075280px;}
._19{margin-left:-8.937360px;}
._17{margin-left:-5.971440px;}
._5{margin-left:-4.464720px;}
._4{margin-left:-3.201120px;}
._1{margin-left:-1.158720px;}
._0{width:1.140000px;}
._2{width:2.444400px;}
._9{width:3.959280px;}
._b{width:5.224680px;}
._a{width:6.638640px;}
._10{width:8.719680px;}
._e{width:9.771840px;}
._f{width:10.819680px;}
._11{width:12.110880px;}
._12{width:13.505520px;}
._3{width:15.752880px;}
._c{width:17.074320px;}
._d{width:18.785520px;}
._18{width:20.694720px;}
._13{width:21.892320px;}
._14{width:23.285520px;}
._7{width:24.429600px;}
._6{width:25.673040px;}
._8{width:26.908560px;}
._16{width:41.836560px;}
._1b{width:84.324240px;}
._1a{width:706.331760px;}
.fc3{color:transparent;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs1{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y6{bottom:-6.480000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.960000px;}
.ya{bottom:5.220000px;}
.y9{bottom:7.380000px;}
.y63{bottom:8.280000px;}
.y66{bottom:8.460000px;}
.y4{bottom:16.020000px;}
.yc{bottom:16.380000px;}
.y62{bottom:22.860000px;}
.y61{bottom:23.040000px;}
.y2{bottom:24.660000px;}
.yb{bottom:52.560000px;}
.y8{bottom:80.856000px;}
.y8d{bottom:122.976000px;}
.y6f{bottom:123.876000px;}
.y31{bottom:124.416000px;}
.y52{bottom:130.536000px;}
.y8c{bottom:150.870000px;}
.y6e{bottom:151.590000px;}
.y30{bottom:152.310000px;}
.y51{bottom:161.310000px;}
.y8b{bottom:178.590000px;}
.y2f{bottom:180.030000px;}
.y50{bottom:184.890000px;}
.y4f{bottom:198.930000px;}
.y8a{bottom:206.310000px;}
.y2e{bottom:207.750000px;}
.y89{bottom:234.030000px;}
.y2d{bottom:235.470000px;}
.y4e{bottom:240.690000px;}
.y88{bottom:261.930000px;}
.y2c{bottom:263.370000px;}
.y4d{bottom:271.830000px;}
.y87{bottom:289.650000px;}
.y2b{bottom:291.090000px;}
.y4c{bottom:299.910000px;}
.y86{bottom:317.370000px;}
.y2a{bottom:318.810000px;}
.y4b{bottom:328.170000px;}
.y85{bottom:345.135000px;}
.y29{bottom:346.755000px;}
.y4a{bottom:352.155000px;}
.y49{bottom:366.195000px;}
.y84{bottom:373.035000px;}
.y28{bottom:374.475000px;}
.y83{bottom:400.755000px;}
.y27{bottom:402.195000px;}
.y48{bottom:407.415000px;}
.y6d{bottom:421.095000px;}
.y82{bottom:428.475000px;}
.y26{bottom:429.915000px;}
.y47{bottom:438.555000px;}
.y6c{bottom:449.355000px;}
.y81{bottom:456.375000px;}
.y25{bottom:457.995000px;}
.y46{bottom:466.455000px;}
.y6b{bottom:470.055000px;}
.y80{bottom:484.095000px;}
.y24{bottom:486.255000px;}
.y45{bottom:494.715000px;}
.y6a{bottom:499.035000px;}
.y7f{bottom:511.815000px;}
.y23{bottom:514.515000px;}
.y44{bottom:522.975000px;}
.y69{bottom:527.835000px;}
.y7e{bottom:539.535000px;}
.y22{bottom:542.955000px;}
.y43{bottom:550.875000px;}
.y68{bottom:556.635000px;}
.y7d{bottom:567.435000px;}
.y21{bottom:571.035000px;}
.y42{bottom:579.495000px;}
.y67{bottom:585.615000px;}
.y7c{bottom:595.155000px;}
.y20{bottom:598.755000px;}
.y41{bottom:610.305000px;}
.y65{bottom:614.445000px;}
.y7b{bottom:622.905000px;}
.y1f{bottom:626.505000px;}
.y40{bottom:641.085000px;}
.y64{bottom:643.425000px;}
.y7a{bottom:650.805000px;}
.y1e{bottom:654.405000px;}
.y3f{bottom:672.225000px;}
.y79{bottom:678.525000px;}
.y1d{bottom:682.125000px;}
.y3e{bottom:700.125000px;}
.y60{bottom:701.205000px;}
.y78{bottom:706.245000px;}
.y1c{bottom:709.845000px;}
.y3d{bottom:728.745000px;}
.y77{bottom:733.965000px;}
.y1b{bottom:737.745000px;}
.y3c{bottom:757.365000px;}
.y76{bottom:761.865000px;}
.y1a{bottom:765.465000px;}
.y5f{bottom:767.625000px;}
.y3b{bottom:784.185000px;}
.y75{bottom:789.585000px;}
.y19{bottom:793.185000px;}
.y5e{bottom:795.345000px;}
.y3a{bottom:798.225000px;}
.y74{bottom:817.305000px;}
.y18{bottom:820.905000px;}
.y5d{bottom:827.745000px;}
.y39{bottom:842.325000px;}
.y73{bottom:845.025000px;}
.y17{bottom:848.805000px;}
.y5c{bottom:855.465000px;}
.y38{bottom:870.225000px;}
.y72{bottom:872.970000px;}
.y16{bottom:876.570000px;}
.y5b{bottom:883.230000px;}
.y37{bottom:897.990000px;}
.y71{bottom:900.690000px;}
.y15{bottom:904.290000px;}
.y5a{bottom:915.450000px;}
.y36{bottom:925.890000px;}
.y70{bottom:928.410000px;}
.y14{bottom:932.010000px;}
.y59{bottom:943.530000px;}
.y35{bottom:954.330000px;}
.y13{bottom:956.310000px;}
.y58{bottom:974.310000px;}
.y34{bottom:982.590000px;}
.y12{bottom:984.030000px;}
.y57{bottom:1002.390000px;}
.y33{bottom:1010.850000px;}
.y11{bottom:1011.750000px;}
.y56{bottom:1033.170000px;}
.y32{bottom:1039.110000px;}
.y10{bottom:1039.470000px;}
.y55{bottom:1063.950000px;}
.yf{bottom:1067.370000px;}
.y54{bottom:1094.730000px;}
.ye{bottom:1095.090000px;}
.y53{bottom:1108.770000px;}
.yd{bottom:1122.810000px;}
.y7{bottom:1146.240000px;}
.y5{bottom:1161.540000px;}
.y1{bottom:1178.820000px;}
.h5{height:6.480000px;}
.h7{height:27.540000px;}
.h14{height:28.080000px;}
.h16{height:28.116000px;}
.h15{height:28.260000px;}
.h2{height:41.400000px;}
.h4{height:53.709961px;}
.h13{height:57.600000px;}
.h6{height:66.757500px;}
.h8{height:70.664062px;}
.h10{height:70.995234px;}
.h3{height:72.562500px;}
.h12{height:75.519844px;}
.hc{height:82.635820px;}
.ha{height:82.676953px;}
.hb{height:84.898125px;}
.hd{height:86.585445px;}
.h9{height:96.508125px;}
.he{height:135.075234px;}
.h11{height:137.235234px;}
.hf{height:138.836953px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:63.756000px;}
.w3{width:68.616000px;}
.w7{width:126.720000px;}
.wa{width:148.176000px;}
.w9{width:168.330000px;}
.w8{width:186.330000px;}
.w2{width:760.830000px;}
.w5{width:765.690000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1d{left:7.560000px;}
.x2{left:8.640000px;}
.x13{left:19.800000px;}
.x7{left:25.740000px;}
.x1{left:31.860000px;}
.x4{left:59.970000px;}
.x5{left:84.959987px;}
.x8{left:91.835987px;}
.x9{left:107.855987px;}
.x19{left:114.155987px;}
.x1c{left:129.455987px;}
.x14{left:131.075987px;}
.x15{left:132.695987px;}
.x12{left:138.095987px;}
.x17{left:141.155987px;}
.xd{left:186.509987px;}
.x1e{left:258.330000px;}
.xe{left:273.989987px;}
.x10{left:309.134987px;}
.xf{left:356.834987px;}
.xc{left:370.874987px;}
.x11{left:389.234987px;}
.x1a{left:393.194987px;}
.xa{left:397.334987px;}
.x18{left:436.574987px;}
.x1f{left:445.035000px;}
.xb{left:446.474987px;}
.x16{left:450.974987px;}
.x1b{left:454.934987px;}
.x20{left:613.725000px;}
.x3{left:792.690000px;}
.x6{left:797.550000px;}
@media print{
.v4{vertical-align:-15.360000pt;}
.v3{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:15.360000pt;}
.v6{vertical-align:27.520000pt;}
.v2{vertical-align:49.920000pt;}
.v1{vertical-align:56.960000pt;}
.v7{vertical-align:58.880000pt;}
.ls7{letter-spacing:-0.800000pt;}
.ls21{letter-spacing:-0.243733pt;}
.ls8{letter-spacing:-0.160000pt;}
.ls22{letter-spacing:-0.085333pt;}
.ls6{letter-spacing:0.000000pt;}
.ls20{letter-spacing:0.000645pt;}
.lsf{letter-spacing:0.009600pt;}
.ls1d{letter-spacing:0.024960pt;}
.ls1f{letter-spacing:0.033280pt;}
.ls15{letter-spacing:0.072533pt;}
.ls5{letter-spacing:0.116267pt;}
.ls1{letter-spacing:0.116480pt;}
.lsb{letter-spacing:0.166400pt;}
.ls12{letter-spacing:0.224640pt;}
.ls19{letter-spacing:0.244480pt;}
.ls1e{letter-spacing:0.266133pt;}
.ls1a{letter-spacing:0.301333pt;}
.ls14{letter-spacing:0.303360pt;}
.ls3{letter-spacing:0.303467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls4{letter-spacing:1.120000pt;}
.ls11{letter-spacing:1.229227pt;}
.ls24{letter-spacing:1.295787pt;}
.ls18{letter-spacing:1.317120pt;}
.ls17{letter-spacing:1.535787pt;}
.lse{letter-spacing:1.782400pt;}
.lsa{letter-spacing:1.861120pt;}
.lsd{letter-spacing:2.458667pt;}
.ls10{letter-spacing:3.163520pt;}
.ls2{letter-spacing:4.320000pt;}
.ls9{letter-spacing:11.200000pt;}
.lsc{letter-spacing:16.345600pt;}
.ls23{letter-spacing:16.419627pt;}
.ls1b{letter-spacing:20.224640pt;}
.ls13{letter-spacing:20.864640pt;}
.ls1c{letter-spacing:60.662400pt;}
.ls16{letter-spacing:88.929067pt;}
.ws4{word-spacing:-21.600000pt;}
.ws6{word-spacing:-19.040000pt;}
.wse{word-spacing:-18.753280pt;}
.ws7{word-spacing:-18.744960pt;}
.ws0{word-spacing:-18.720000pt;}
.ws17{word-spacing:-16.774933pt;}
.wsc{word-spacing:-16.739733pt;}
.ws2{word-spacing:-16.589867pt;}
.ws11{word-spacing:-16.474245pt;}
.ws1{word-spacing:-16.473600pt;}
.ws16{word-spacing:-16.229867pt;}
.ws12{word-spacing:-11.758933pt;}
.ws8{word-spacing:-11.686400pt;}
.ws18{word-spacing:-11.601067pt;}
.ws5{word-spacing:-4.304000pt;}
.wsf{word-spacing:-1.122347pt;}
.ws3{word-spacing:0.000000pt;}
.wsa{word-spacing:0.170240pt;}
.ws14{word-spacing:0.586027pt;}
.ws13{word-spacing:3.208107pt;}
.ws10{word-spacing:3.250560pt;}
.wsb{word-spacing:5.294080pt;}
.ws15{word-spacing:5.963520pt;}
.ws9{word-spacing:13.520640pt;}
.ws19{word-spacing:13.529600pt;}
.ws1a{word-spacing:14.400000pt;}
.wsd{word-spacing:20.656000pt;}
._15{margin-left:-9.844693pt;}
._19{margin-left:-7.944320pt;}
._17{margin-left:-5.307947pt;}
._5{margin-left:-3.968640pt;}
._4{margin-left:-2.845440pt;}
._1{margin-left:-1.029973pt;}
._0{width:1.013333pt;}
._2{width:2.172800pt;}
._9{width:3.519360pt;}
._b{width:4.644160pt;}
._a{width:5.901013pt;}
._10{width:7.750827pt;}
._e{width:8.686080pt;}
._f{width:9.617493pt;}
._11{width:10.765227pt;}
._12{width:12.004907pt;}
._3{width:14.002560pt;}
._c{width:15.177173pt;}
._d{width:16.698240pt;}
._18{width:18.395307pt;}
._13{width:19.459840pt;}
._14{width:20.698240pt;}
._7{width:21.715200pt;}
._6{width:22.820480pt;}
._8{width:23.918720pt;}
._16{width:37.188053pt;}
._1b{width:74.954880pt;}
._1a{width:627.850453pt;}
.fs1{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y6{bottom:-5.760000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.520000pt;}
.ya{bottom:4.640000pt;}
.y9{bottom:6.560000pt;}
.y63{bottom:7.360000pt;}
.y66{bottom:7.520000pt;}
.y4{bottom:14.240000pt;}
.yc{bottom:14.560000pt;}
.y62{bottom:20.320000pt;}
.y61{bottom:20.480000pt;}
.y2{bottom:21.920000pt;}
.yb{bottom:46.720000pt;}
.y8{bottom:71.872000pt;}
.y8d{bottom:109.312000pt;}
.y6f{bottom:110.112000pt;}
.y31{bottom:110.592000pt;}
.y52{bottom:116.032000pt;}
.y8c{bottom:134.106667pt;}
.y6e{bottom:134.746667pt;}
.y30{bottom:135.386667pt;}
.y51{bottom:143.386667pt;}
.y8b{bottom:158.746667pt;}
.y2f{bottom:160.026667pt;}
.y50{bottom:164.346667pt;}
.y4f{bottom:176.826667pt;}
.y8a{bottom:183.386667pt;}
.y2e{bottom:184.666667pt;}
.y89{bottom:208.026667pt;}
.y2d{bottom:209.306667pt;}
.y4e{bottom:213.946667pt;}
.y88{bottom:232.826667pt;}
.y2c{bottom:234.106667pt;}
.y4d{bottom:241.626667pt;}
.y87{bottom:257.466667pt;}
.y2b{bottom:258.746667pt;}
.y4c{bottom:266.586667pt;}
.y86{bottom:282.106667pt;}
.y2a{bottom:283.386667pt;}
.y4b{bottom:291.706667pt;}
.y85{bottom:306.786667pt;}
.y29{bottom:308.226667pt;}
.y4a{bottom:313.026667pt;}
.y49{bottom:325.506667pt;}
.y84{bottom:331.586667pt;}
.y28{bottom:332.866667pt;}
.y83{bottom:356.226667pt;}
.y27{bottom:357.506667pt;}
.y48{bottom:362.146667pt;}
.y6d{bottom:374.306667pt;}
.y82{bottom:380.866667pt;}
.y26{bottom:382.146667pt;}
.y47{bottom:389.826667pt;}
.y6c{bottom:399.426667pt;}
.y81{bottom:405.666667pt;}
.y25{bottom:407.106667pt;}
.y46{bottom:414.626667pt;}
.y6b{bottom:417.826667pt;}
.y80{bottom:430.306667pt;}
.y24{bottom:432.226667pt;}
.y45{bottom:439.746667pt;}
.y6a{bottom:443.586667pt;}
.y7f{bottom:454.946667pt;}
.y23{bottom:457.346667pt;}
.y44{bottom:464.866667pt;}
.y69{bottom:469.186667pt;}
.y7e{bottom:479.586667pt;}
.y22{bottom:482.626667pt;}
.y43{bottom:489.666667pt;}
.y68{bottom:494.786667pt;}
.y7d{bottom:504.386667pt;}
.y21{bottom:507.586667pt;}
.y42{bottom:515.106667pt;}
.y67{bottom:520.546667pt;}
.y7c{bottom:529.026667pt;}
.y20{bottom:532.226667pt;}
.y41{bottom:542.493333pt;}
.y65{bottom:546.173333pt;}
.y7b{bottom:553.693333pt;}
.y1f{bottom:556.893333pt;}
.y40{bottom:569.853333pt;}
.y64{bottom:571.933333pt;}
.y7a{bottom:578.493333pt;}
.y1e{bottom:581.693333pt;}
.y3f{bottom:597.533333pt;}
.y79{bottom:603.133333pt;}
.y1d{bottom:606.333333pt;}
.y3e{bottom:622.333333pt;}
.y60{bottom:623.293333pt;}
.y78{bottom:627.773333pt;}
.y1c{bottom:630.973333pt;}
.y3d{bottom:647.773333pt;}
.y77{bottom:652.413333pt;}
.y1b{bottom:655.773333pt;}
.y3c{bottom:673.213333pt;}
.y76{bottom:677.213333pt;}
.y1a{bottom:680.413333pt;}
.y5f{bottom:682.333333pt;}
.y3b{bottom:697.053333pt;}
.y75{bottom:701.853333pt;}
.y19{bottom:705.053333pt;}
.y5e{bottom:706.973333pt;}
.y3a{bottom:709.533333pt;}
.y74{bottom:726.493333pt;}
.y18{bottom:729.693333pt;}
.y5d{bottom:735.773333pt;}
.y39{bottom:748.733333pt;}
.y73{bottom:751.133333pt;}
.y17{bottom:754.493333pt;}
.y5c{bottom:760.413333pt;}
.y38{bottom:773.533333pt;}
.y72{bottom:775.973333pt;}
.y16{bottom:779.173333pt;}
.y5b{bottom:785.093333pt;}
.y37{bottom:798.213333pt;}
.y71{bottom:800.613333pt;}
.y15{bottom:803.813333pt;}
.y5a{bottom:813.733333pt;}
.y36{bottom:823.013333pt;}
.y70{bottom:825.253333pt;}
.y14{bottom:828.453333pt;}
.y59{bottom:838.693333pt;}
.y35{bottom:848.293333pt;}
.y13{bottom:850.053333pt;}
.y58{bottom:866.053333pt;}
.y34{bottom:873.413333pt;}
.y12{bottom:874.693333pt;}
.y57{bottom:891.013333pt;}
.y33{bottom:898.533333pt;}
.y11{bottom:899.333333pt;}
.y56{bottom:918.373333pt;}
.y32{bottom:923.653333pt;}
.y10{bottom:923.973333pt;}
.y55{bottom:945.733333pt;}
.yf{bottom:948.773333pt;}
.y54{bottom:973.093333pt;}
.ye{bottom:973.413333pt;}
.y53{bottom:985.573333pt;}
.yd{bottom:998.053333pt;}
.y7{bottom:1018.880000pt;}
.y5{bottom:1032.480000pt;}
.y1{bottom:1047.840000pt;}
.h5{height:5.760000pt;}
.h7{height:24.480000pt;}
.h14{height:24.960000pt;}
.h16{height:24.992000pt;}
.h15{height:25.120000pt;}
.h2{height:36.800000pt;}
.h4{height:47.742188pt;}
.h13{height:51.200000pt;}
.h6{height:59.340000pt;}
.h8{height:62.812500pt;}
.h10{height:63.106875pt;}
.h3{height:64.500000pt;}
.h12{height:67.128750pt;}
.hc{height:73.454062pt;}
.ha{height:73.490625pt;}
.hb{height:75.465000pt;}
.hd{height:76.964840pt;}
.h9{height:85.785000pt;}
.he{height:120.066875pt;}
.h11{height:121.986875pt;}
.hf{height:123.410625pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:56.672000pt;}
.w3{width:60.992000pt;}
.w7{width:112.640000pt;}
.wa{width:131.712000pt;}
.w9{width:149.626667pt;}
.w8{width:165.626667pt;}
.w2{width:676.293333pt;}
.w5{width:680.613333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:6.720000pt;}
.x2{left:7.680000pt;}
.x13{left:17.600000pt;}
.x7{left:22.880000pt;}
.x1{left:28.320000pt;}
.x4{left:53.306667pt;}
.x5{left:75.519988pt;}
.x8{left:81.631988pt;}
.x9{left:95.871988pt;}
.x19{left:101.471988pt;}
.x1c{left:115.071988pt;}
.x14{left:116.511988pt;}
.x15{left:117.951988pt;}
.x12{left:122.751988pt;}
.x17{left:125.471988pt;}
.xd{left:165.786655pt;}
.x1e{left:229.626667pt;}
.xe{left:243.546655pt;}
.x10{left:274.786655pt;}
.xf{left:317.186655pt;}
.xc{left:329.666655pt;}
.x11{left:345.986655pt;}
.x1a{left:349.506655pt;}
.xa{left:353.186655pt;}
.x18{left:388.066655pt;}
.x1f{left:395.586667pt;}
.xb{left:396.866655pt;}
.x16{left:400.866655pt;}
.x1b{left:404.386655pt;}
.x20{left:545.533333pt;}
.x3{left:704.613333pt;}
.x6{left:708.933333pt;}
}




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