
    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_d9bcd6f6cf172b3b510d9206.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_6fd07d55ca68d7501bb49cc4.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_90910802a2fef3cd7dc6826c.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_f3e6d81d04ec69d6e3690bd0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.916992;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_2a59d896b360db18252e9a64.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.372070;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_0f64794259086ed44cd79cc5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_e93078d4208649a7fb6b11e4.woff2')format("woff");}.ff7{font-family:ff7;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;}
.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);}
.v1{vertical-align:-97.200000px;}
.v0{vertical-align:0.000000px;}
.ls18{letter-spacing:-0.714000px;}
.ls17{letter-spacing:-0.690000px;}
.ls16{letter-spacing:-0.684000px;}
.lsf{letter-spacing:-0.378600px;}
.lsd{letter-spacing:-0.369600px;}
.lsc{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.341400px;}
.ls6{letter-spacing:-0.180000px;}
.lse{letter-spacing:-0.144000px;}
.ls15{letter-spacing:-0.037440px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.028080px;}
.ls11{letter-spacing:0.037440px;}
.ls12{letter-spacing:0.148080px;}
.lsa{letter-spacing:0.341400px;}
.ls0{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.378600px;}
.ls10{letter-spacing:0.485280px;}
.ls2{letter-spacing:0.504000px;}
.ls13{letter-spacing:0.540000px;}
.ls9{letter-spacing:0.750000px;}
.lsb{letter-spacing:41.357280px;}
.ls8{letter-spacing:105.660000px;}
.ls14{letter-spacing:149.004000px;}
.ls1{letter-spacing:182.124000px;}
.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;}
}
.ws1{word-spacing:-24.300000px;}
.ws3{word-spacing:-21.438600px;}
.ws5{word-spacing:-21.420000px;}
.ws7{word-spacing:-21.401400px;}
.wsb{word-spacing:-21.097440px;}
.ws8{word-spacing:-21.088080px;}
.ws2{word-spacing:-21.060000px;}
.wsc{word-spacing:-21.022560px;}
.ws4{word-spacing:-20.718600px;}
.ws9{word-spacing:-20.700000px;}
.wsd{word-spacing:-20.376000px;}
.wse{word-spacing:-20.370000px;}
.wsf{word-spacing:-20.346000px;}
.ws0{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.856000px;}
.ws6{word-spacing:0.000000px;}
._40{margin-left:-6.233760px;}
._20{margin-left:-5.161680px;}
._1f{margin-left:-3.959280px;}
._c{margin-left:-2.487600px;}
._1{margin-left:-1.158720px;}
._0{width:1.140000px;}
._2{width:2.150400px;}
._19{width:4.107120px;}
._27{width:5.216400px;}
._21{width:6.233760px;}
._a{width:7.244640px;}
._d{width:8.592480px;}
._b{width:9.862320px;}
._25{width:11.658240px;}
._16{width:12.699600px;}
._3{width:13.815360px;}
._4{width:15.014400px;}
._23{width:17.080080px;}
._9{width:19.101840px;}
._31{width:22.531440px;}
._7{width:23.819280px;}
._f{width:24.830160px;}
._e{width:25.841040px;}
._3f{width:27.150240px;}
._6{width:28.158720px;}
._22{width:29.547600px;}
._26{width:31.393680px;}
._38{width:32.546640px;}
._5{width:33.696000px;}
._32{width:35.781360px;}
._11{width:37.571040px;}
._10{width:38.647920px;}
._17{width:39.656400px;}
._18{width:41.063760px;}
._1b{width:42.604800px;}
._24{width:44.710800px;}
._35{width:46.142880px;}
._37{width:47.153760px;}
._33{width:49.111920px;}
._8{width:51.302160px;}
._2e{width:52.488000px;}
._2a{width:55.469760px;}
._29{width:56.975280px;}
._2b{width:59.108160px;}
._39{width:60.119760px;}
._3a{width:61.474560px;}
._2d{width:62.882160px;}
._2c{width:63.913200px;}
._34{width:65.124720px;}
._1a{width:69.752160px;}
._12{width:70.761600px;}
._13{width:71.944320px;}
._36{width:74.468160px;}
._2f{width:75.816000px;}
._15{width:83.903040px;}
._14{width:85.398720px;}
._3d{width:87.104160px;}
._3e{width:88.262880px;}
._3c{width:94.139040px;}
._3b{width:95.359680px;}
._30{width:99.720000px;}
._1c{width:105.384240px;}
._1e{width:120.462960px;}
._1d{width:121.537680px;}
._28{width:145.650960px;}
._42{width:161.049360px;}
._41{width:162.148080px;}
.fc4{color:transparent;}
.fc2{color:rgb(5,99,193);}
.fc3{color:rgb(31,31,31);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs1{font-size:54.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y6{bottom:-6.120000px;}
.y0{bottom:0.000000px;}
.y77{bottom:7.020000px;}
.y74{bottom:7.065000px;}
.y7a{bottom:7.200000px;}
.y3{bottom:16.020000px;}
.yb{bottom:16.380000px;}
.ya{bottom:17.280000px;}
.y9{bottom:19.440000px;}
.y4{bottom:27.900000px;}
.y76{bottom:30.780000px;}
.y79{bottom:30.960000px;}
.y2{bottom:36.720000px;}
.y8{bottom:44.640000px;}
.y34{bottom:103.536000px;}
.ya1{bottom:104.796000px;}
.y84{bottom:109.296000px;}
.y72{bottom:121.536000px;}
.y33{bottom:127.656000px;}
.ya0{bottom:132.516000px;}
.y50{bottom:133.776000px;}
.y83{bottom:137.016000px;}
.y71{bottom:149.436000px;}
.y32{bottom:151.770000px;}
.y9f{bottom:160.230000px;}
.y4f{bottom:161.490000px;}
.y82{bottom:164.730000px;}
.y31{bottom:175.890000px;}
.y70{bottom:177.150000px;}
.y9e{bottom:187.950000px;}
.y4e{bottom:189.210000px;}
.y81{bottom:192.630000px;}
.y30{bottom:200.010000px;}
.y6f{bottom:204.870000px;}
.y80{bottom:215.670000px;}
.y9d{bottom:215.850000px;}
.y4d{bottom:216.930000px;}
.y2f{bottom:224.310000px;}
.y6e{bottom:232.770000px;}
.y9c{bottom:243.570000px;}
.y4c{bottom:244.830000px;}
.y2e{bottom:248.430000px;}
.y6d{bottom:260.490000px;}
.y9b{bottom:271.290000px;}
.y2d{bottom:272.550000px;}
.y6c{bottom:288.210000px;}
.y2c{bottom:296.670000px;}
.y9a{bottom:299.010000px;}
.y4b{bottom:300.270000px;}
.y6b{bottom:315.930000px;}
.y2b{bottom:320.790000px;}
.y4a{bottom:327.990000px;}
.y6a{bottom:343.875000px;}
.y2a{bottom:344.955000px;}
.y99{bottom:347.475000px;}
.y49{bottom:355.935000px;}
.y29{bottom:369.255000px;}
.y69{bottom:371.595000px;}
.y98{bottom:375.195000px;}
.y48{bottom:380.055000px;}
.y28{bottom:393.375000px;}
.y68{bottom:399.315000px;}
.y97{bottom:402.915000px;}
.y47{bottom:407.775000px;}
.y27{bottom:417.495000px;}
.y67{bottom:427.215000px;}
.y96{bottom:430.815000px;}
.y46{bottom:435.495000px;}
.y26{bottom:441.615000px;}
.y66{bottom:454.935000px;}
.y95{bottom:458.535000px;}
.y45{bottom:463.395000px;}
.y25{bottom:465.735000px;}
.y65{bottom:482.655000px;}
.y94{bottom:486.255000px;}
.y24{bottom:489.855000px;}
.y44{bottom:491.115000px;}
.y64{bottom:510.375000px;}
.y23{bottom:513.975000px;}
.y43{bottom:518.835000px;}
.y22{bottom:538.275000px;}
.y93{bottom:541.875000px;}
.y42{bottom:546.735000px;}
.y21{bottom:562.395000px;}
.y63{bottom:565.995000px;}
.y92{bottom:569.595000px;}
.y41{bottom:574.455000px;}
.y20{bottom:586.515000px;}
.y62{bottom:593.715000px;}
.y91{bottom:597.315000px;}
.y40{bottom:602.175000px;}
.y1f{bottom:610.665000px;}
.y7f{bottom:617.865000px;}
.y61{bottom:621.465000px;}
.y90{bottom:625.245000px;}
.y3f{bottom:629.925000px;}
.y1e{bottom:634.785000px;}
.y7e{bottom:645.585000px;}
.y60{bottom:649.365000px;}
.y8f{bottom:652.965000px;}
.y3e{bottom:657.825000px;}
.y1d{bottom:658.905000px;}
.y7d{bottom:673.305000px;}
.y5f{bottom:677.085000px;}
.y8e{bottom:680.685000px;}
.y1c{bottom:683.205000px;}
.y3d{bottom:685.545000px;}
.y7c{bottom:701.025000px;}
.y5e{bottom:704.805000px;}
.y1b{bottom:707.325000px;}
.y8d{bottom:708.405000px;}
.y3c{bottom:713.265000px;}
.y7b{bottom:721.545000px;}
.y1a{bottom:731.445000px;}
.y5d{bottom:732.705000px;}
.y8c{bottom:736.305000px;}
.y3b{bottom:741.165000px;}
.y19{bottom:755.565000px;}
.y5c{bottom:760.425000px;}
.y8b{bottom:764.025000px;}
.y3a{bottom:768.885000px;}
.y78{bottom:769.785000px;}
.y18{bottom:779.685000px;}
.y5b{bottom:788.145000px;}
.y8a{bottom:791.745000px;}
.y39{bottom:793.005000px;}
.y17{bottom:803.805000px;}
.y5a{bottom:815.865000px;}
.y38{bottom:817.125000px;}
.y75{bottom:818.205000px;}
.y89{bottom:819.645000px;}
.y16{bottom:827.925000px;}
.y59{bottom:843.765000px;}
.y37{bottom:844.845000px;}
.y88{bottom:847.365000px;}
.y15{bottom:852.225000px;}
.y73{bottom:866.625000px;}
.y58{bottom:871.530000px;}
.y36{bottom:872.790000px;}
.y87{bottom:875.130000px;}
.y14{bottom:876.390000px;}
.y57{bottom:899.250000px;}
.y13{bottom:900.510000px;}
.y86{bottom:902.850000px;}
.y12{bottom:924.630000px;}
.y56{bottom:927.150000px;}
.y85{bottom:930.750000px;}
.y11{bottom:948.750000px;}
.y55{bottom:954.870000px;}
.y35{bottom:972.870000px;}
.y54{bottom:982.590000px;}
.y10{bottom:997.170000px;}
.y53{bottom:1010.310000px;}
.yf{bottom:1021.290000px;}
.y52{bottom:1038.210000px;}
.ye{bottom:1045.410000px;}
.y51{bottom:1065.930000px;}
.yd{bottom:1069.530000px;}
.yc{bottom:1093.650000px;}
.y7{bottom:1129.830000px;}
.y5{bottom:1149.480000px;}
.y1{bottom:1166.760000px;}
.h5{height:6.480000px;}
.hf{height:23.796000px;}
.h7{height:39.636000px;}
.h10{height:47.520000px;}
.h12{height:47.700000px;}
.h11{height:50.484375px;}
.h4{height:52.998047px;}
.h2{height:53.460000px;}
.hc{height:59.066719px;}
.hb{height:59.436914px;}
.h8{height:70.664062px;}
.h3{height:72.562500px;}
.ha{height:82.676953px;}
.hd{height:84.034336px;}
.h6{height:84.898125px;}
.h13{height:86.585445px;}
.he{height:87.695156px;}
.h9{height:96.508125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:63.756000px;}
.w3{width:68.616000px;}
.w7{width:158.400000px;}
.w9{width:257.970000px;}
.w8{width:272.235000px;}
.w2{width:760.830000px;}
.w5{width:765.690000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.640000px;}
.x7{left:13.860000px;}
.x1{left:31.860000px;}
.x4{left:59.970000px;}
.x5{left:84.959987px;}
.x15{left:89.675987px;}
.x16{left:96.155987px;}
.x19{left:101.556000px;}
.x11{left:119.195987px;}
.x8{left:121.535987px;}
.xf{left:127.475987px;}
.x12{left:160.589987px;}
.x10{left:187.049987px;}
.x9{left:243.029987px;}
.x1a{left:260.670000px;}
.xb{left:292.394987px;}
.xc{left:296.354987px;}
.xd{left:297.434987px;}
.x17{left:300.314987px;}
.x13{left:357.914987px;}
.xe{left:368.894987px;}
.x14{left:375.914987px;}
.x18{left:389.234987px;}
.xa{left:446.474987px;}
.x1b{left:533.625000px;}
.x1c{left:683.789987px;}
.x3{left:792.690000px;}
.x6{left:797.550000px;}
@media print{
.v1{vertical-align:-86.400000pt;}
.v0{vertical-align:0.000000pt;}
.ls18{letter-spacing:-0.634667pt;}
.ls17{letter-spacing:-0.613333pt;}
.ls16{letter-spacing:-0.608000pt;}
.lsf{letter-spacing:-0.336533pt;}
.lsd{letter-spacing:-0.328533pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.303467pt;}
.ls6{letter-spacing:-0.160000pt;}
.lse{letter-spacing:-0.128000pt;}
.ls15{letter-spacing:-0.033280pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.024960pt;}
.ls11{letter-spacing:0.033280pt;}
.ls12{letter-spacing:0.131627pt;}
.lsa{letter-spacing:0.303467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.336533pt;}
.ls10{letter-spacing:0.431360pt;}
.ls2{letter-spacing:0.448000pt;}
.ls13{letter-spacing:0.480000pt;}
.ls9{letter-spacing:0.666667pt;}
.lsb{letter-spacing:36.762027pt;}
.ls8{letter-spacing:93.920000pt;}
.ls14{letter-spacing:132.448000pt;}
.ls1{letter-spacing:161.888000pt;}
.ws1{word-spacing:-21.600000pt;}
.ws3{word-spacing:-19.056533pt;}
.ws5{word-spacing:-19.040000pt;}
.ws7{word-spacing:-19.023467pt;}
.wsb{word-spacing:-18.753280pt;}
.ws8{word-spacing:-18.744960pt;}
.ws2{word-spacing:-18.720000pt;}
.wsc{word-spacing:-18.686720pt;}
.ws4{word-spacing:-18.416533pt;}
.ws9{word-spacing:-18.400000pt;}
.wsd{word-spacing:-18.112000pt;}
.wse{word-spacing:-18.106667pt;}
.wsf{word-spacing:-18.085333pt;}
.ws0{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.872000pt;}
.ws6{word-spacing:0.000000pt;}
._40{margin-left:-5.541120pt;}
._20{margin-left:-4.588160pt;}
._1f{margin-left:-3.519360pt;}
._c{margin-left:-2.211200pt;}
._1{margin-left:-1.029973pt;}
._0{width:1.013333pt;}
._2{width:1.911467pt;}
._19{width:3.650773pt;}
._27{width:4.636800pt;}
._21{width:5.541120pt;}
._a{width:6.439680pt;}
._d{width:7.637760pt;}
._b{width:8.766507pt;}
._25{width:10.362880pt;}
._16{width:11.288533pt;}
._3{width:12.280320pt;}
._4{width:13.346133pt;}
._23{width:15.182293pt;}
._9{width:16.979413pt;}
._31{width:20.027947pt;}
._7{width:21.172693pt;}
._f{width:22.071253pt;}
._e{width:22.969813pt;}
._3f{width:24.133547pt;}
._6{width:25.029973pt;}
._22{width:26.264533pt;}
._26{width:27.905493pt;}
._38{width:28.930347pt;}
._5{width:29.952000pt;}
._32{width:31.805653pt;}
._11{width:33.396480pt;}
._10{width:34.353707pt;}
._17{width:35.250133pt;}
._18{width:36.501120pt;}
._1b{width:37.870933pt;}
._24{width:39.742933pt;}
._35{width:41.015893pt;}
._37{width:41.914453pt;}
._33{width:43.655040pt;}
._8{width:45.601920pt;}
._2e{width:46.656000pt;}
._2a{width:49.306453pt;}
._29{width:50.644693pt;}
._2b{width:52.540587pt;}
._39{width:53.439787pt;}
._3a{width:54.644053pt;}
._2d{width:55.895253pt;}
._2c{width:56.811733pt;}
._34{width:57.888640pt;}
._1a{width:62.001920pt;}
._12{width:62.899200pt;}
._13{width:63.950507pt;}
._36{width:66.193920pt;}
._2f{width:67.392000pt;}
._15{width:74.580480pt;}
._14{width:75.909973pt;}
._3d{width:77.425920pt;}
._3e{width:78.455893pt;}
._3c{width:83.679147pt;}
._3b{width:84.764160pt;}
._30{width:88.640000pt;}
._1c{width:93.674880pt;}
._1e{width:107.078187pt;}
._1d{width:108.033493pt;}
._28{width:129.467520pt;}
._42{width:143.154987pt;}
._41{width:144.131627pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y6{bottom:-5.440000pt;}
.y0{bottom:0.000000pt;}
.y77{bottom:6.240000pt;}
.y74{bottom:6.280000pt;}
.y7a{bottom:6.400000pt;}
.y3{bottom:14.240000pt;}
.yb{bottom:14.560000pt;}
.ya{bottom:15.360000pt;}
.y9{bottom:17.280000pt;}
.y4{bottom:24.800000pt;}
.y76{bottom:27.360000pt;}
.y79{bottom:27.520000pt;}
.y2{bottom:32.640000pt;}
.y8{bottom:39.680000pt;}
.y34{bottom:92.032000pt;}
.ya1{bottom:93.152000pt;}
.y84{bottom:97.152000pt;}
.y72{bottom:108.032000pt;}
.y33{bottom:113.472000pt;}
.ya0{bottom:117.792000pt;}
.y50{bottom:118.912000pt;}
.y83{bottom:121.792000pt;}
.y71{bottom:132.832000pt;}
.y32{bottom:134.906667pt;}
.y9f{bottom:142.426667pt;}
.y4f{bottom:143.546667pt;}
.y82{bottom:146.426667pt;}
.y31{bottom:156.346667pt;}
.y70{bottom:157.466667pt;}
.y9e{bottom:167.066667pt;}
.y4e{bottom:168.186667pt;}
.y81{bottom:171.226667pt;}
.y30{bottom:177.786667pt;}
.y6f{bottom:182.106667pt;}
.y80{bottom:191.706667pt;}
.y9d{bottom:191.866667pt;}
.y4d{bottom:192.826667pt;}
.y2f{bottom:199.386667pt;}
.y6e{bottom:206.906667pt;}
.y9c{bottom:216.506667pt;}
.y4c{bottom:217.626667pt;}
.y2e{bottom:220.826667pt;}
.y6d{bottom:231.546667pt;}
.y9b{bottom:241.146667pt;}
.y2d{bottom:242.266667pt;}
.y6c{bottom:256.186667pt;}
.y2c{bottom:263.706667pt;}
.y9a{bottom:265.786667pt;}
.y4b{bottom:266.906667pt;}
.y6b{bottom:280.826667pt;}
.y2b{bottom:285.146667pt;}
.y4a{bottom:291.546667pt;}
.y6a{bottom:305.666667pt;}
.y2a{bottom:306.626667pt;}
.y99{bottom:308.866667pt;}
.y49{bottom:316.386667pt;}
.y29{bottom:328.226667pt;}
.y69{bottom:330.306667pt;}
.y98{bottom:333.506667pt;}
.y48{bottom:337.826667pt;}
.y28{bottom:349.666667pt;}
.y68{bottom:354.946667pt;}
.y97{bottom:358.146667pt;}
.y47{bottom:362.466667pt;}
.y27{bottom:371.106667pt;}
.y67{bottom:379.746667pt;}
.y96{bottom:382.946667pt;}
.y46{bottom:387.106667pt;}
.y26{bottom:392.546667pt;}
.y66{bottom:404.386667pt;}
.y95{bottom:407.586667pt;}
.y45{bottom:411.906667pt;}
.y25{bottom:413.986667pt;}
.y65{bottom:429.026667pt;}
.y94{bottom:432.226667pt;}
.y24{bottom:435.426667pt;}
.y44{bottom:436.546667pt;}
.y64{bottom:453.666667pt;}
.y23{bottom:456.866667pt;}
.y43{bottom:461.186667pt;}
.y22{bottom:478.466667pt;}
.y93{bottom:481.666667pt;}
.y42{bottom:485.986667pt;}
.y21{bottom:499.906667pt;}
.y63{bottom:503.106667pt;}
.y92{bottom:506.306667pt;}
.y41{bottom:510.626667pt;}
.y20{bottom:521.346667pt;}
.y62{bottom:527.746667pt;}
.y91{bottom:530.946667pt;}
.y40{bottom:535.266667pt;}
.y1f{bottom:542.813333pt;}
.y7f{bottom:549.213333pt;}
.y61{bottom:552.413333pt;}
.y90{bottom:555.773333pt;}
.y3f{bottom:559.933333pt;}
.y1e{bottom:564.253333pt;}
.y7e{bottom:573.853333pt;}
.y60{bottom:577.213333pt;}
.y8f{bottom:580.413333pt;}
.y3e{bottom:584.733333pt;}
.y1d{bottom:585.693333pt;}
.y7d{bottom:598.493333pt;}
.y5f{bottom:601.853333pt;}
.y8e{bottom:605.053333pt;}
.y1c{bottom:607.293333pt;}
.y3d{bottom:609.373333pt;}
.y7c{bottom:623.133333pt;}
.y5e{bottom:626.493333pt;}
.y1b{bottom:628.733333pt;}
.y8d{bottom:629.693333pt;}
.y3c{bottom:634.013333pt;}
.y7b{bottom:641.373333pt;}
.y1a{bottom:650.173333pt;}
.y5d{bottom:651.293333pt;}
.y8c{bottom:654.493333pt;}
.y3b{bottom:658.813333pt;}
.y19{bottom:671.613333pt;}
.y5c{bottom:675.933333pt;}
.y8b{bottom:679.133333pt;}
.y3a{bottom:683.453333pt;}
.y78{bottom:684.253333pt;}
.y18{bottom:693.053333pt;}
.y5b{bottom:700.573333pt;}
.y8a{bottom:703.773333pt;}
.y39{bottom:704.893333pt;}
.y17{bottom:714.493333pt;}
.y5a{bottom:725.213333pt;}
.y38{bottom:726.333333pt;}
.y75{bottom:727.293333pt;}
.y89{bottom:728.573333pt;}
.y16{bottom:735.933333pt;}
.y59{bottom:750.013333pt;}
.y37{bottom:750.973333pt;}
.y88{bottom:753.213333pt;}
.y15{bottom:757.533333pt;}
.y73{bottom:770.333333pt;}
.y58{bottom:774.693333pt;}
.y36{bottom:775.813333pt;}
.y87{bottom:777.893333pt;}
.y14{bottom:779.013333pt;}
.y57{bottom:799.333333pt;}
.y13{bottom:800.453333pt;}
.y86{bottom:802.533333pt;}
.y12{bottom:821.893333pt;}
.y56{bottom:824.133333pt;}
.y85{bottom:827.333333pt;}
.y11{bottom:843.333333pt;}
.y55{bottom:848.773333pt;}
.y35{bottom:864.773333pt;}
.y54{bottom:873.413333pt;}
.y10{bottom:886.373333pt;}
.y53{bottom:898.053333pt;}
.yf{bottom:907.813333pt;}
.y52{bottom:922.853333pt;}
.ye{bottom:929.253333pt;}
.y51{bottom:947.493333pt;}
.yd{bottom:950.693333pt;}
.yc{bottom:972.133333pt;}
.y7{bottom:1004.293333pt;}
.y5{bottom:1021.760000pt;}
.y1{bottom:1037.120000pt;}
.h5{height:5.760000pt;}
.hf{height:21.152000pt;}
.h7{height:35.232000pt;}
.h10{height:42.240000pt;}
.h12{height:42.400000pt;}
.h11{height:44.875000pt;}
.h4{height:47.109375pt;}
.h2{height:47.520000pt;}
.hc{height:52.503750pt;}
.hb{height:52.832812pt;}
.h8{height:62.812500pt;}
.h3{height:64.500000pt;}
.ha{height:73.490625pt;}
.hd{height:74.697187pt;}
.h6{height:75.465000pt;}
.h13{height:76.964840pt;}
.he{height:77.951250pt;}
.h9{height:85.785000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:56.672000pt;}
.w3{width:60.992000pt;}
.w7{width:140.800000pt;}
.w9{width:229.306667pt;}
.w8{width:241.986667pt;}
.w2{width:676.293333pt;}
.w5{width:680.613333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.680000pt;}
.x7{left:12.320000pt;}
.x1{left:28.320000pt;}
.x4{left:53.306667pt;}
.x5{left:75.519988pt;}
.x15{left:79.711988pt;}
.x16{left:85.471988pt;}
.x19{left:90.272000pt;}
.x11{left:105.951988pt;}
.x8{left:108.031988pt;}
.xf{left:113.311988pt;}
.x12{left:142.746655pt;}
.x10{left:166.266655pt;}
.x9{left:216.026655pt;}
.x1a{left:231.706667pt;}
.xb{left:259.906655pt;}
.xc{left:263.426655pt;}
.xd{left:264.386655pt;}
.x17{left:266.946655pt;}
.x13{left:318.146655pt;}
.xe{left:327.906655pt;}
.x14{left:334.146655pt;}
.x18{left:345.986655pt;}
.xa{left:396.866655pt;}
.x1b{left:474.333333pt;}
.x1c{left:607.813322pt;}
.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; }
  