
    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_8bd42c66fe6d02744608f1b0.woff')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_210c9dcdca15c03c26d2019e.woff')format("woff");}.ff2{font-family:ff2;line-height:0.858398;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_7a18d8ea79c0008af31d1940.woff')format("woff");}.ff3{font-family:ff3;line-height:0.910645;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_6166af634f749528d0b3a455.woff')format("woff");}.ff4{font-family:ff4;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws14{word-spacing:-55.944000px;}
.ws4{word-spacing:-38.657700px;}
.ws5{word-spacing:-38.653200px;}
.ws6b{word-spacing:-38.448000px;}
.ws35{word-spacing:-38.439600px;}
.ws33{word-spacing:-38.433600px;}
.ws37{word-spacing:-38.427600px;}
.ws69{word-spacing:-38.401200px;}
.ws15{word-spacing:-38.160000px;}
.wsf{word-spacing:-38.149200px;}
.ws65{word-spacing:-38.146500px;}
.ws1b{word-spacing:-38.146200px;}
.ws2{word-spacing:-38.081700px;}
.ws0{word-spacing:-37.944000px;}
.ws10{word-spacing:-37.941900px;}
.ws68{word-spacing:-37.940400px;}
.ws6{word-spacing:-37.939200px;}
.ws4f{word-spacing:-37.937400px;}
.ws3c{word-spacing:-37.936800px;}
.ws9{word-spacing:-37.868400px;}
.ws46{word-spacing:-37.732200px;}
.ws7{word-spacing:-37.728000px;}
.ws30{word-spacing:-37.726200px;}
.ws24{word-spacing:-37.706400px;}
.ws8{word-spacing:-37.703700px;}
.wsa{word-spacing:-37.695900px;}
.ws44{word-spacing:-37.422000px;}
.ws3{word-spacing:-37.222200px;}
.wse{word-spacing:-37.149300px;}
.ws28{word-spacing:-36.990900px;}
.ws67{word-spacing:-36.709200px;}
.ws3e{word-spacing:-36.510000px;}
.ws4d{word-spacing:-35.985600px;}
.ws2e{word-spacing:-35.790000px;}
.ws3b{word-spacing:-35.784000px;}
.ws4b{word-spacing:-35.265600px;}
.ws2d{word-spacing:-35.064000px;}
.ws51{word-spacing:-35.058000px;}
.ws26{word-spacing:-35.052000px;}
.ws25{word-spacing:-35.051400px;}
.ws4a{word-spacing:-34.846200px;}
.ws1f{word-spacing:-34.566000px;}
.ws27{word-spacing:-34.344000px;}
.ws64{word-spacing:-34.115400px;}
.ws52{word-spacing:-33.840000px;}
.ws59{word-spacing:-33.836400px;}
.ws47{word-spacing:-33.624000px;}
.ws45{word-spacing:-33.412200px;}
.ws3a{word-spacing:-32.902800px;}
.ws17{word-spacing:-32.895000px;}
.ws62{word-spacing:-32.893800px;}
.wsd{word-spacing:-32.406000px;}
.ws61{word-spacing:-32.385600px;}
.ws5c{word-spacing:-32.182800px;}
.ws13{word-spacing:-31.672200px;}
.ws1e{word-spacing:-31.462200px;}
.ws31{word-spacing:-30.744000px;}
.ws60{word-spacing:-30.016800px;}
.ws49{word-spacing:-29.505600px;}
.ws2b{word-spacing:-29.304000px;}
.ws4e{word-spacing:-29.080200px;}
.ws5a{word-spacing:-28.573200px;}
.ws21{word-spacing:-28.564200px;}
.ws5d{word-spacing:-28.080000px;}
.ws29{word-spacing:-28.070100px;}
.ws5e{word-spacing:-27.864000px;}
.ws2a{word-spacing:-27.847200px;}
.ws6a{word-spacing:-27.356400px;}
.ws3f{word-spacing:-27.144000px;}
.ws22{word-spacing:-26.416800px;}
.ws43{word-spacing:-26.206200px;}
.wsc{word-spacing:-25.920000px;}
.wsb{word-spacing:-25.905600px;}
.ws48{word-spacing:-25.704000px;}
.ws11{word-spacing:-25.200000px;}
.ws12{word-spacing:-25.189200px;}
.ws58{word-spacing:-24.967800px;}
.ws55{word-spacing:-24.264000px;}
.ws1c{word-spacing:-24.256800px;}
.ws54{word-spacing:-23.544000px;}
.ws34{word-spacing:-23.535300px;}
.ws57{word-spacing:-22.824000px;}
.ws53{word-spacing:-22.806000px;}
.ws23{word-spacing:-22.600800px;}
.ws3d{word-spacing:-20.880000px;}
.ws32{word-spacing:-20.664000px;}
.ws16{word-spacing:-20.652300px;}
.ws38{word-spacing:-19.944000px;}
.ws5b{word-spacing:-19.936800px;}
.ws4c{word-spacing:-19.006200px;}
.ws41{word-spacing:-18.504000px;}
.ws40{word-spacing:-18.491400px;}
.ws36{word-spacing:-17.781300px;}
.ws20{word-spacing:-17.280000px;}
.ws2c{word-spacing:-17.053200px;}
.ws1a{word-spacing:-16.566000px;}
.ws2f{word-spacing:-16.344000px;}
.ws19{word-spacing:-16.329600px;}
.ws56{word-spacing:-16.327800px;}
.ws18{word-spacing:-15.601500px;}
.ws1d{word-spacing:-14.893800px;}
.ws5f{word-spacing:-14.190000px;}
.ws50{word-spacing:-14.176800px;}
.ws66{word-spacing:-9.850500px;}
.ws63{word-spacing:-6.264000px;}
.ws39{word-spacing:0.000000px;}
.ws42{word-spacing:3.816000px;}
.ws1{word-spacing:1037.484900px;}
._3{margin-left:-1.348200px;}
._0{width:1.076400px;}
._1{width:18.968400px;}
._15{width:19.988400px;}
._14{width:21.182400px;}
._f{width:22.226400px;}
._e{width:23.315400px;}
._4{width:24.630000px;}
._b{width:25.765800px;}
._11{width:26.767800px;}
._c{width:28.584000px;}
._d{width:29.631600px;}
._19{width:30.814200px;}
._5{width:31.962600px;}
._9{width:33.316200px;}
._1c{width:34.614000px;}
._2{width:36.116400px;}
._12{width:37.297800px;}
._17{width:38.503800px;}
._8{width:40.427400px;}
._6{width:41.544000px;}
._a{width:42.552000px;}
._1a{width:43.583400px;}
._1e{width:45.925200px;}
._13{width:46.944000px;}
._10{width:51.336000px;}
._1f{width:57.420000px;}
._16{width:58.852800px;}
._18{width:60.840000px;}
._1d{width:64.524600px;}
._21{width:70.256400px;}
._7{width:82.395000px;}
._20{width:84.721200px;}
._1b{width:126.910800px;}
._22{width:158.400000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y38{bottom:3.765000px;}
.y3a{bottom:3.795000px;}
.y42{bottom:3.811500px;}
.y3c{bottom:3.825000px;}
.y44{bottom:3.840000px;}
.y3e{bottom:3.855000px;}
.y46{bottom:3.870000px;}
.y36{bottom:3.915000px;}
.y48{bottom:4.725000px;}
.y4{bottom:12.240000px;}
.y40{bottom:14.836500px;}
.y3{bottom:63.975000px;}
.y7e{bottom:112.936500px;}
.y27{bottom:120.136500px;}
.y34{bottom:123.840000px;}
.y7d{bottom:133.636500px;}
.y26{bottom:140.836500px;}
.y33{bottom:144.540000px;}
.y7c{bottom:154.336500px;}
.y25{bottom:161.536500px;}
.y32{bottom:165.240000px;}
.y7b{bottom:175.036500px;}
.y24{bottom:182.236500px;}
.y31{bottom:185.940000px;}
.y7a{bottom:195.736500px;}
.y79{bottom:216.436500px;}
.y23{bottom:223.815000px;}
.y78{bottom:237.136500px;}
.y22{bottom:244.515000px;}
.y4e{bottom:251.896500px;}
.y77{bottom:257.836500px;}
.y76{bottom:278.536500px;}
.y21{bottom:286.275000px;}
.y75{bottom:299.236500px;}
.y20{bottom:306.975000px;}
.y74{bottom:319.936500px;}
.y1f{bottom:327.675000px;}
.y4d{bottom:335.236500px;}
.y73{bottom:340.636500px;}
.y1e{bottom:348.375000px;}
.y4c{bottom:355.936500px;}
.y5e{bottom:356.295000px;}
.y72{bottom:361.336500px;}
.y1d{bottom:369.075000px;}
.y4b{bottom:376.636500px;}
.y5d{bottom:376.996500px;}
.y71{bottom:382.036500px;}
.y1c{bottom:389.775000px;}
.y4a{bottom:397.336500px;}
.y5c{bottom:397.696500px;}
.y70{bottom:402.736500px;}
.y1b{bottom:410.475000px;}
.y49{bottom:418.036500px;}
.y5b{bottom:418.396500px;}
.y1a{bottom:431.175000px;}
.y5a{bottom:439.096500px;}
.y6f{bottom:444.496500px;}
.y19{bottom:451.875000px;}
.y59{bottom:459.795000px;}
.y6e{bottom:465.196500px;}
.y58{bottom:480.496500px;}
.y6d{bottom:485.896500px;}
.y18{bottom:493.636500px;}
.y47{bottom:497.550000px;}
.y57{bottom:501.195000px;}
.y6c{bottom:506.596500px;}
.y17{bottom:514.336500px;}
.y45{bottom:519.825000px;}
.y56{bottom:521.896500px;}
.y6b{bottom:527.296500px;}
.y16{bottom:535.036500px;}
.y43{bottom:541.275000px;}
.y55{bottom:542.596500px;}
.y6a{bottom:547.996500px;}
.y15{bottom:555.736500px;}
.y41{bottom:562.725000px;}
.y54{bottom:563.296500px;}
.y69{bottom:568.695000px;}
.y14{bottom:576.436500px;}
.y92{bottom:579.496500px;}
.y53{bottom:583.996500px;}
.y3f{bottom:584.100000px;}
.y68{bottom:589.396500px;}
.y91{bottom:600.195000px;}
.y52{bottom:604.695000px;}
.y67{bottom:610.096500px;}
.y3d{bottom:616.500000px;}
.y13{bottom:618.015000px;}
.y90{bottom:620.896500px;}
.y51{bottom:625.396500px;}
.y66{bottom:630.795000px;}
.y3b{bottom:637.950000px;}
.y8f{bottom:641.596500px;}
.y50{bottom:646.096500px;}
.y65{bottom:651.496500px;}
.y39{bottom:659.400000px;}
.y12{bottom:659.775000px;}
.y8e{bottom:662.295000px;}
.y4f{bottom:666.795000px;}
.y64{bottom:672.195000px;}
.y11{bottom:680.475000px;}
.y37{bottom:680.850000px;}
.y8d{bottom:682.996500px;}
.y63{bottom:692.896500px;}
.y10{bottom:701.175000px;}
.y35{bottom:702.300000px;}
.y8c{bottom:703.695000px;}
.y62{bottom:713.596500px;}
.y30{bottom:723.675000px;}
.y8b{bottom:724.396500px;}
.y61{bottom:734.295000px;}
.yf{bottom:742.936500px;}
.y8a{bottom:745.096500px;}
.y60{bottom:754.996500px;}
.y89{bottom:765.795000px;}
.ye{bottom:784.515000px;}
.y5f{bottom:796.575000px;}
.yd{bottom:805.215000px;}
.y88{bottom:807.375000px;}
.yc{bottom:825.915000px;}
.y87{bottom:849.136500px;}
.yb{bottom:867.675000px;}
.y86{bottom:869.836500px;}
.ya{bottom:888.375000px;}
.y85{bottom:890.536500px;}
.y84{bottom:911.236500px;}
.y83{bottom:931.936500px;}
.y2f{bottom:952.095000px;}
.y82{bottom:952.636500px;}
.y81{bottom:973.336500px;}
.y9{bottom:992.775000px;}
.y2e{bottom:993.675000px;}
.y80{bottom:994.036500px;}
.y7f{bottom:1014.736500px;}
.y8{bottom:1034.536500px;}
.y2d{bottom:1035.436500px;}
.y2c{bottom:1056.136500px;}
.y7{bottom:1076.295000px;}
.y2b{bottom:1076.836500px;}
.y2a{bottom:1097.536500px;}
.y6{bottom:1117.875000px;}
.y29{bottom:1118.236500px;}
.y28{bottom:1138.936500px;}
.y5{bottom:1159.636500px;}
.y2{bottom:1202.655000px;}
.y1{bottom:1224.795000px;}
.h7{height:21.375000px;}
.h9{height:22.200000px;}
.h8{height:32.325000px;}
.h3{height:32.700000px;}
.h2{height:48.796875px;}
.h4{height:48.972656px;}
.h5{height:50.027344px;}
.h6{height:203.475000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w3{width:34.800000px;}
.w9{width:105.075000px;}
.w8{width:109.950000px;}
.w6{width:119.550000px;}
.w5{width:123.450000px;}
.w7{width:124.875000px;}
.w4{width:150.450000px;}
.w2{width:710.175000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.xd{left:-1.980000px;}
.x0{left:0.000000px;}
.xf{left:8.113500px;}
.x4{left:11.760000px;}
.xe{left:34.725000px;}
.xc{left:53.100000px;}
.xa{left:81.180000px;}
.x17{left:93.600000px;}
.x16{left:98.100000px;}
.x15{left:107.100000px;}
.x1{left:124.920000px;}
.x3{left:127.200000px;}
.x2{left:160.560000px;}
.x9{left:168.660000px;}
.x10{left:185.100000px;}
.xb{left:192.238500px;}
.x7{left:197.820000px;}
.x11{left:308.475000px;}
.x8{left:337.500000px;}
.x6{left:358.560000px;}
.x5{left:379.438500px;}
.x12{left:427.950000px;}
.x13{left:552.750000px;}
.x14{left:662.625000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws14{word-spacing:-49.728000pt;}
.ws4{word-spacing:-34.362400pt;}
.ws5{word-spacing:-34.358400pt;}
.ws6b{word-spacing:-34.176000pt;}
.ws35{word-spacing:-34.168533pt;}
.ws33{word-spacing:-34.163200pt;}
.ws37{word-spacing:-34.157867pt;}
.ws69{word-spacing:-34.134400pt;}
.ws15{word-spacing:-33.920000pt;}
.wsf{word-spacing:-33.910400pt;}
.ws65{word-spacing:-33.908000pt;}
.ws1b{word-spacing:-33.907733pt;}
.ws2{word-spacing:-33.850400pt;}
.ws0{word-spacing:-33.728000pt;}
.ws10{word-spacing:-33.726133pt;}
.ws68{word-spacing:-33.724800pt;}
.ws6{word-spacing:-33.723733pt;}
.ws4f{word-spacing:-33.722133pt;}
.ws3c{word-spacing:-33.721600pt;}
.ws9{word-spacing:-33.660800pt;}
.ws46{word-spacing:-33.539733pt;}
.ws7{word-spacing:-33.536000pt;}
.ws30{word-spacing:-33.534400pt;}
.ws24{word-spacing:-33.516800pt;}
.ws8{word-spacing:-33.514400pt;}
.wsa{word-spacing:-33.507467pt;}
.ws44{word-spacing:-33.264000pt;}
.ws3{word-spacing:-33.086400pt;}
.wse{word-spacing:-33.021600pt;}
.ws28{word-spacing:-32.880800pt;}
.ws67{word-spacing:-32.630400pt;}
.ws3e{word-spacing:-32.453333pt;}
.ws4d{word-spacing:-31.987200pt;}
.ws2e{word-spacing:-31.813333pt;}
.ws3b{word-spacing:-31.808000pt;}
.ws4b{word-spacing:-31.347200pt;}
.ws2d{word-spacing:-31.168000pt;}
.ws51{word-spacing:-31.162667pt;}
.ws26{word-spacing:-31.157333pt;}
.ws25{word-spacing:-31.156800pt;}
.ws4a{word-spacing:-30.974400pt;}
.ws1f{word-spacing:-30.725333pt;}
.ws27{word-spacing:-30.528000pt;}
.ws64{word-spacing:-30.324800pt;}
.ws52{word-spacing:-30.080000pt;}
.ws59{word-spacing:-30.076800pt;}
.ws47{word-spacing:-29.888000pt;}
.ws45{word-spacing:-29.699733pt;}
.ws3a{word-spacing:-29.246933pt;}
.ws17{word-spacing:-29.240000pt;}
.ws62{word-spacing:-29.238933pt;}
.wsd{word-spacing:-28.805333pt;}
.ws61{word-spacing:-28.787200pt;}
.ws5c{word-spacing:-28.606933pt;}
.ws13{word-spacing:-28.153067pt;}
.ws1e{word-spacing:-27.966400pt;}
.ws31{word-spacing:-27.328000pt;}
.ws60{word-spacing:-26.681600pt;}
.ws49{word-spacing:-26.227200pt;}
.ws2b{word-spacing:-26.048000pt;}
.ws4e{word-spacing:-25.849067pt;}
.ws5a{word-spacing:-25.398400pt;}
.ws21{word-spacing:-25.390400pt;}
.ws5d{word-spacing:-24.960000pt;}
.ws29{word-spacing:-24.951200pt;}
.ws5e{word-spacing:-24.768000pt;}
.ws2a{word-spacing:-24.753067pt;}
.ws6a{word-spacing:-24.316800pt;}
.ws3f{word-spacing:-24.128000pt;}
.ws22{word-spacing:-23.481600pt;}
.ws43{word-spacing:-23.294400pt;}
.wsc{word-spacing:-23.040000pt;}
.wsb{word-spacing:-23.027200pt;}
.ws48{word-spacing:-22.848000pt;}
.ws11{word-spacing:-22.400000pt;}
.ws12{word-spacing:-22.390400pt;}
.ws58{word-spacing:-22.193600pt;}
.ws55{word-spacing:-21.568000pt;}
.ws1c{word-spacing:-21.561600pt;}
.ws54{word-spacing:-20.928000pt;}
.ws34{word-spacing:-20.920267pt;}
.ws57{word-spacing:-20.288000pt;}
.ws53{word-spacing:-20.272000pt;}
.ws23{word-spacing:-20.089600pt;}
.ws3d{word-spacing:-18.560000pt;}
.ws32{word-spacing:-18.368000pt;}
.ws16{word-spacing:-18.357600pt;}
.ws38{word-spacing:-17.728000pt;}
.ws5b{word-spacing:-17.721600pt;}
.ws4c{word-spacing:-16.894400pt;}
.ws41{word-spacing:-16.448000pt;}
.ws40{word-spacing:-16.436800pt;}
.ws36{word-spacing:-15.805600pt;}
.ws20{word-spacing:-15.360000pt;}
.ws2c{word-spacing:-15.158400pt;}
.ws1a{word-spacing:-14.725333pt;}
.ws2f{word-spacing:-14.528000pt;}
.ws19{word-spacing:-14.515200pt;}
.ws56{word-spacing:-14.513600pt;}
.ws18{word-spacing:-13.868000pt;}
.ws1d{word-spacing:-13.238933pt;}
.ws5f{word-spacing:-12.613333pt;}
.ws50{word-spacing:-12.601600pt;}
.ws66{word-spacing:-8.756000pt;}
.ws63{word-spacing:-5.568000pt;}
.ws39{word-spacing:0.000000pt;}
.ws42{word-spacing:3.392000pt;}
.ws1{word-spacing:922.208800pt;}
._3{margin-left:-1.198400pt;}
._0{width:0.956800pt;}
._1{width:16.860800pt;}
._15{width:17.767467pt;}
._14{width:18.828800pt;}
._f{width:19.756800pt;}
._e{width:20.724800pt;}
._4{width:21.893333pt;}
._b{width:22.902933pt;}
._11{width:23.793600pt;}
._c{width:25.408000pt;}
._d{width:26.339200pt;}
._19{width:27.390400pt;}
._5{width:28.411200pt;}
._9{width:29.614400pt;}
._1c{width:30.768000pt;}
._2{width:32.103467pt;}
._12{width:33.153600pt;}
._17{width:34.225600pt;}
._8{width:35.935467pt;}
._6{width:36.928000pt;}
._a{width:37.824000pt;}
._1a{width:38.740800pt;}
._1e{width:40.822400pt;}
._13{width:41.728000pt;}
._10{width:45.632000pt;}
._1f{width:51.040000pt;}
._16{width:52.313600pt;}
._18{width:54.080000pt;}
._1d{width:57.355200pt;}
._21{width:62.450133pt;}
._7{width:73.240000pt;}
._20{width:75.307733pt;}
._1b{width:112.809600pt;}
._22{width:140.800000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y38{bottom:3.346667pt;}
.y3a{bottom:3.373333pt;}
.y42{bottom:3.388000pt;}
.y3c{bottom:3.400000pt;}
.y44{bottom:3.413333pt;}
.y3e{bottom:3.426667pt;}
.y46{bottom:3.440000pt;}
.y36{bottom:3.480000pt;}
.y48{bottom:4.200000pt;}
.y4{bottom:10.880000pt;}
.y40{bottom:13.188000pt;}
.y3{bottom:56.866667pt;}
.y7e{bottom:100.388000pt;}
.y27{bottom:106.788000pt;}
.y34{bottom:110.080000pt;}
.y7d{bottom:118.788000pt;}
.y26{bottom:125.188000pt;}
.y33{bottom:128.480000pt;}
.y7c{bottom:137.188000pt;}
.y25{bottom:143.588000pt;}
.y32{bottom:146.880000pt;}
.y7b{bottom:155.588000pt;}
.y24{bottom:161.988000pt;}
.y31{bottom:165.280000pt;}
.y7a{bottom:173.988000pt;}
.y79{bottom:192.388000pt;}
.y23{bottom:198.946667pt;}
.y78{bottom:210.788000pt;}
.y22{bottom:217.346667pt;}
.y4e{bottom:223.908000pt;}
.y77{bottom:229.188000pt;}
.y76{bottom:247.588000pt;}
.y21{bottom:254.466667pt;}
.y75{bottom:265.988000pt;}
.y20{bottom:272.866667pt;}
.y74{bottom:284.388000pt;}
.y1f{bottom:291.266667pt;}
.y4d{bottom:297.988000pt;}
.y73{bottom:302.788000pt;}
.y1e{bottom:309.666667pt;}
.y4c{bottom:316.388000pt;}
.y5e{bottom:316.706667pt;}
.y72{bottom:321.188000pt;}
.y1d{bottom:328.066667pt;}
.y4b{bottom:334.788000pt;}
.y5d{bottom:335.108000pt;}
.y71{bottom:339.588000pt;}
.y1c{bottom:346.466667pt;}
.y4a{bottom:353.188000pt;}
.y5c{bottom:353.508000pt;}
.y70{bottom:357.988000pt;}
.y1b{bottom:364.866667pt;}
.y49{bottom:371.588000pt;}
.y5b{bottom:371.908000pt;}
.y1a{bottom:383.266667pt;}
.y5a{bottom:390.308000pt;}
.y6f{bottom:395.108000pt;}
.y19{bottom:401.666667pt;}
.y59{bottom:408.706667pt;}
.y6e{bottom:413.508000pt;}
.y58{bottom:427.108000pt;}
.y6d{bottom:431.908000pt;}
.y18{bottom:438.788000pt;}
.y47{bottom:442.266667pt;}
.y57{bottom:445.506667pt;}
.y6c{bottom:450.308000pt;}
.y17{bottom:457.188000pt;}
.y45{bottom:462.066667pt;}
.y56{bottom:463.908000pt;}
.y6b{bottom:468.708000pt;}
.y16{bottom:475.588000pt;}
.y43{bottom:481.133333pt;}
.y55{bottom:482.308000pt;}
.y6a{bottom:487.108000pt;}
.y15{bottom:493.988000pt;}
.y41{bottom:500.200000pt;}
.y54{bottom:500.708000pt;}
.y69{bottom:505.506667pt;}
.y14{bottom:512.388000pt;}
.y92{bottom:515.108000pt;}
.y53{bottom:519.108000pt;}
.y3f{bottom:519.200000pt;}
.y68{bottom:523.908000pt;}
.y91{bottom:533.506667pt;}
.y52{bottom:537.506667pt;}
.y67{bottom:542.308000pt;}
.y3d{bottom:548.000000pt;}
.y13{bottom:549.346667pt;}
.y90{bottom:551.908000pt;}
.y51{bottom:555.908000pt;}
.y66{bottom:560.706667pt;}
.y3b{bottom:567.066667pt;}
.y8f{bottom:570.308000pt;}
.y50{bottom:574.308000pt;}
.y65{bottom:579.108000pt;}
.y39{bottom:586.133333pt;}
.y12{bottom:586.466667pt;}
.y8e{bottom:588.706667pt;}
.y4f{bottom:592.706667pt;}
.y64{bottom:597.506667pt;}
.y11{bottom:604.866667pt;}
.y37{bottom:605.200000pt;}
.y8d{bottom:607.108000pt;}
.y63{bottom:615.908000pt;}
.y10{bottom:623.266667pt;}
.y35{bottom:624.266667pt;}
.y8c{bottom:625.506667pt;}
.y62{bottom:634.308000pt;}
.y30{bottom:643.266667pt;}
.y8b{bottom:643.908000pt;}
.y61{bottom:652.706667pt;}
.yf{bottom:660.388000pt;}
.y8a{bottom:662.308000pt;}
.y60{bottom:671.108000pt;}
.y89{bottom:680.706667pt;}
.ye{bottom:697.346667pt;}
.y5f{bottom:708.066667pt;}
.yd{bottom:715.746667pt;}
.y88{bottom:717.666667pt;}
.yc{bottom:734.146667pt;}
.y87{bottom:754.788000pt;}
.yb{bottom:771.266667pt;}
.y86{bottom:773.188000pt;}
.ya{bottom:789.666667pt;}
.y85{bottom:791.588000pt;}
.y84{bottom:809.988000pt;}
.y83{bottom:828.388000pt;}
.y2f{bottom:846.306667pt;}
.y82{bottom:846.788000pt;}
.y81{bottom:865.188000pt;}
.y9{bottom:882.466667pt;}
.y2e{bottom:883.266667pt;}
.y80{bottom:883.588000pt;}
.y7f{bottom:901.988000pt;}
.y8{bottom:919.588000pt;}
.y2d{bottom:920.388000pt;}
.y2c{bottom:938.788000pt;}
.y7{bottom:956.706667pt;}
.y2b{bottom:957.188000pt;}
.y2a{bottom:975.588000pt;}
.y6{bottom:993.666667pt;}
.y29{bottom:993.988000pt;}
.y28{bottom:1012.388000pt;}
.y5{bottom:1030.788000pt;}
.y2{bottom:1069.026667pt;}
.y1{bottom:1088.706667pt;}
.h7{height:19.000000pt;}
.h9{height:19.733333pt;}
.h8{height:28.733333pt;}
.h3{height:29.066667pt;}
.h2{height:43.375000pt;}
.h4{height:43.531250pt;}
.h5{height:44.468750pt;}
.h6{height:180.866667pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w3{width:30.933333pt;}
.w9{width:93.400000pt;}
.w8{width:97.733333pt;}
.w6{width:106.266667pt;}
.w5{width:109.733333pt;}
.w7{width:111.000000pt;}
.w4{width:133.733333pt;}
.w2{width:631.266667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.xd{left:-1.760000pt;}
.x0{left:0.000000pt;}
.xf{left:7.212000pt;}
.x4{left:10.453333pt;}
.xe{left:30.866667pt;}
.xc{left:47.200000pt;}
.xa{left:72.160000pt;}
.x17{left:83.200000pt;}
.x16{left:87.200000pt;}
.x15{left:95.200000pt;}
.x1{left:111.040000pt;}
.x3{left:113.066667pt;}
.x2{left:142.720000pt;}
.x9{left:149.920000pt;}
.x10{left:164.533333pt;}
.xb{left:170.878667pt;}
.x7{left:175.840000pt;}
.x11{left:274.200000pt;}
.x8{left:300.000000pt;}
.x6{left:318.720000pt;}
.x5{left:337.278667pt;}
.x12{left:380.400000pt;}
.x13{left:491.333333pt;}
.x14{left:589.000000pt;}
}




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