
    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_3c0c1596736c20cbdd0f083d.woff')format("woff");}.ff1{font-family:ff1;line-height:1.006836;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_b3f4d4462de4a9584e5f835d.woff')format("woff");}.ff2{font-family:ff2;line-height:0.914062;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_e6f0708552efe89a65852fea.woff')format("woff");}.ff3{font-family:ff3;line-height:0.854004;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_f3905539061a75c26ace3ce4.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_00b256b33a97bd2595b7218a.woff')format("woff");}.ff5{font-family:ff5;line-height:0.914062;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_e21908ec8ebb62278baf5d76.woff')format("woff");}.ff6{font-family:ff6;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_36160a8c5bb3a8a78249e43b.woff')format("woff");}.ff7{font-family:ff7;line-height:0.982422;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_130301694ab792f9947e2b7d.woff')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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_bcd3fce7118e292fee2d449d.woff')format("woff");}.ff9{font-family:ff9;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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;}
.ls15{letter-spacing:-0.774000px;}
.ls12{letter-spacing:-0.540000px;}
.ls11{letter-spacing:-0.408000px;}
.ls7{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.208200px;}
.ls14{letter-spacing:-0.206400px;}
.lsc{letter-spacing:-0.053280px;}
.ls5{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.008640px;}
.ls1{letter-spacing:0.037440px;}
.lse{letter-spacing:0.053280px;}
.ls10{letter-spacing:0.106800px;}
.lsf{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.259920px;}
.ls2{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.540000px;}
.lsb{letter-spacing:0.900000px;}
.lsd{letter-spacing:1.620000px;}
.lsa{letter-spacing:3.060000px;}
.ls9{letter-spacing:8.100000px;}
.ls13{letter-spacing:11.700000px;}
.ls8{letter-spacing:46.170720px;}
.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;}
}
.ws0{word-spacing:-19.440000px;}
.ws1{word-spacing:-16.560000px;}
.ws4{word-spacing:-15.300000px;}
.ws6{word-spacing:-15.046800px;}
.ws7{word-spacing:-14.993280px;}
.ws2{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.886720px;}
.ws3{word-spacing:0.000000px;}
._3{margin-left:-503.064000px;}
._7{margin-left:-3.645360px;}
._6{margin-left:-2.569680px;}
._2{margin-left:-1.059840px;}
._0{width:1.157760px;}
._1{width:2.950080px;}
._5{width:4.035600px;}
._4{width:5.262960px;}
._a{width:6.932160px;}
._9{width:8.007840px;}
._12{width:9.027120px;}
._e{width:10.077120px;}
._f{width:12.018960px;}
._8{width:13.423680px;}
._10{width:15.955920px;}
._13{width:17.451840px;}
._14{width:21.140640px;}
._15{width:37.110960px;}
._b{width:91.649520px;}
._d{width:178.443360px;}
._c{width:223.143840px;}
._11{width:1947.804000px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(21,96,130);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:2.880000px;}
.fs6{font-size:48.240000px;}
.fs5{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs4{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y7{bottom:5.220000px;}
.yb0{bottom:5.754000px;}
.yab{bottom:5.760000px;}
.yb7{bottom:5.805000px;}
.y1f{bottom:5.940000px;}
.y33{bottom:10.800000px;}
.y6{bottom:14.220000px;}
.y1e{bottom:25.740000px;}
.y32{bottom:30.600000px;}
.y1d{bottom:45.570000px;}
.y5{bottom:45.720000px;}
.y31{bottom:50.430000px;}
.y9{bottom:57.960000px;}
.y1c{bottom:65.370000px;}
.y30{bottom:70.230000px;}
.y4{bottom:77.400000px;}
.y1b{bottom:85.170000px;}
.y81{bottom:85.716000px;}
.y2f{bottom:90.030000px;}
.yb3{bottom:90.756000px;}
.yc3{bottom:92.916000px;}
.y4a{bottom:104.256000px;}
.y1a{bottom:105.150000px;}
.y80{bottom:105.516000px;}
.y2e{bottom:107.310000px;}
.y3{bottom:109.110000px;}
.yb2{bottom:110.556000px;}
.yc6{bottom:112.536000px;}
.yc2{bottom:112.716000px;}
.y2d{bottom:123.870000px;}
.yb1{bottom:124.596000px;}
.y19{bottom:124.950000px;}
.y7f{bottom:125.316000px;}
.y49{bottom:126.936000px;}
.yc1{bottom:132.516000px;}
.y2c{bottom:137.730000px;}
.y2{bottom:142.230000px;}
.yaf{bottom:144.396000px;}
.y18{bottom:144.750000px;}
.y7e{bottom:145.116000px;}
.y48{bottom:146.736000px;}
.yc5{bottom:149.436000px;}
.y2b{bottom:151.410000px;}
.yc0{bottom:152.310000px;}
.yae{bottom:164.190000px;}
.y17{bottom:164.550000px;}
.y7d{bottom:165.090000px;}
.y2a{bottom:165.270000px;}
.y47{bottom:166.710000px;}
.ybf{bottom:172.110000px;}
.y29{bottom:179.130000px;}
.yad{bottom:183.990000px;}
.y16{bottom:184.350000px;}
.y7c{bottom:184.890000px;}
.y46{bottom:186.510000px;}
.ybe{bottom:192.090000px;}
.y28{bottom:192.810000px;}
.yac{bottom:203.970000px;}
.y15{bottom:204.330000px;}
.y7b{bottom:204.690000px;}
.y45{bottom:206.310000px;}
.y27{bottom:206.670000px;}
.ybd{bottom:211.890000px;}
.y26{bottom:220.530000px;}
.yaa{bottom:223.770000px;}
.y14{bottom:224.130000px;}
.y7a{bottom:224.490000px;}
.y44{bottom:226.110000px;}
.ybc{bottom:231.690000px;}
.y25{bottom:234.210000px;}
.y13{bottom:243.930000px;}
.y79{bottom:244.290000px;}
.y43{bottom:245.910000px;}
.y24{bottom:248.070000px;}
.ya9{bottom:249.330000px;}
.ybb{bottom:251.490000px;}
.y23{bottom:261.930000px;}
.y12{bottom:263.730000px;}
.y78{bottom:264.270000px;}
.y42{bottom:265.890000px;}
.ya8{bottom:268.410000px;}
.yba{bottom:271.290000px;}
.y22{bottom:275.610000px;}
.y11{bottom:283.530000px;}
.y77{bottom:284.070000px;}
.y41{bottom:285.690000px;}
.y21{bottom:290.190000px;}
.ya7{bottom:291.270000px;}
.y76{bottom:303.870000px;}
.y10{bottom:304.815000px;}
.y40{bottom:305.490000px;}
.y20{bottom:307.515000px;}
.ya6{bottom:311.070000px;}
.y75{bottom:323.670000px;}
.y3f{bottom:325.290000px;}
.yc4{bottom:327.675000px;}
.ya5{bottom:330.915000px;}
.y74{bottom:343.515000px;}
.y3e{bottom:345.135000px;}
.ya4{bottom:350.715000px;}
.y73{bottom:363.495000px;}
.y3d{bottom:365.115000px;}
.ya3{bottom:370.515000px;}
.y72{bottom:383.295000px;}
.y3c{bottom:384.915000px;}
.ya2{bottom:390.495000px;}
.y71{bottom:403.095000px;}
.y3b{bottom:404.715000px;}
.ya1{bottom:410.295000px;}
.y70{bottom:422.895000px;}
.y3a{bottom:424.515000px;}
.ya0{bottom:430.095000px;}
.y6f{bottom:442.695000px;}
.y39{bottom:444.315000px;}
.y9f{bottom:449.895000px;}
.y6e{bottom:462.675000px;}
.y38{bottom:464.295000px;}
.y9e{bottom:469.695000px;}
.y6d{bottom:482.475000px;}
.y37{bottom:484.095000px;}
.y9d{bottom:489.675000px;}
.y6c{bottom:502.275000px;}
.y36{bottom:503.895000px;}
.y9c{bottom:509.475000px;}
.y6b{bottom:522.075000px;}
.y35{bottom:523.695000px;}
.y9b{bottom:529.275000px;}
.y6a{bottom:541.875000px;}
.y34{bottom:543.495000px;}
.y9a{bottom:549.075000px;}
.yf{bottom:558.255000px;}
.y69{bottom:561.855000px;}
.y99{bottom:568.875000px;}
.y68{bottom:581.655000px;}
.y98{bottom:588.855000px;}
.y67{bottom:601.485000px;}
.y97{bottom:608.685000px;}
.y66{bottom:621.285000px;}
.y96{bottom:628.485000px;}
.y65{bottom:641.085000px;}
.y95{bottom:648.285000px;}
.y64{bottom:661.065000px;}
.y94{bottom:668.085000px;}
.y63{bottom:680.865000px;}
.y93{bottom:688.065000px;}
.y92{bottom:707.865000px;}
.y62{bottom:709.665000px;}
.y91{bottom:727.665000px;}
.y61{bottom:729.465000px;}
.y90{bottom:747.465000px;}
.y60{bottom:749.265000px;}
.y8f{bottom:767.265000px;}
.y5f{bottom:769.245000px;}
.y8e{bottom:787.245000px;}
.y5e{bottom:789.045000px;}
.y8d{bottom:807.045000px;}
.y5d{bottom:808.845000px;}
.yb9{bottom:821.085000px;}
.y8c{bottom:826.845000px;}
.y5c{bottom:828.645000px;}
.yb8{bottom:840.885000px;}
.y8b{bottom:846.645000px;}
.y5b{bottom:848.445000px;}
.yb6{bottom:860.685000px;}
.y8a{bottom:866.490000px;}
.y5a{bottom:868.290000px;}
.yb5{bottom:880.530000px;}
.y89{bottom:886.290000px;}
.y59{bottom:888.270000px;}
.yb4{bottom:900.330000px;}
.ye{bottom:904.290000px;}
.y88{bottom:906.270000px;}
.y58{bottom:917.070000px;}
.yd{bottom:924.630000px;}
.y87{bottom:926.070000px;}
.y57{bottom:936.870000px;}
.y86{bottom:945.870000px;}
.yc{bottom:946.050000px;}
.y56{bottom:956.670000px;}
.y85{bottom:965.670000px;}
.yb{bottom:969.450000px;}
.y55{bottom:976.470000px;}
.y84{bottom:985.470000px;}
.y54{bottom:996.450000px;}
.ya{bottom:1001.130000px;}
.y83{bottom:1005.450000px;}
.y53{bottom:1016.250000px;}
.y82{bottom:1025.250000px;}
.y8{bottom:1028.490000px;}
.y52{bottom:1045.050000px;}
.y1{bottom:1046.130000px;}
.y51{bottom:1064.850000px;}
.y50{bottom:1084.650000px;}
.y4f{bottom:1104.630000px;}
.y4e{bottom:1124.430000px;}
.y4d{bottom:1144.260000px;}
.y4c{bottom:1164.060000px;}
.y4b{bottom:1192.140000px;}
.h5{height:2.010938px;}
.h12{height:19.800000px;}
.h14{height:19.836000px;}
.h13{height:19.980000px;}
.he{height:34.036523px;}
.h9{height:41.726953px;}
.hd{height:42.164648px;}
.h10{height:43.506914px;}
.ha{height:46.736719px;}
.hf{height:48.127500px;}
.h4{height:48.774375px;}
.h11{height:49.255313px;}
.h7{height:50.273438px;}
.hc{height:50.800781px;}
.h3{height:57.256875px;}
.h6{height:60.855469px;}
.h8{height:67.565039px;}
.h2{height:162.750000px;}
.hb{height:321.555000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:83.556000px;}
.we{width:84.420000px;}
.w8{width:90.900000px;}
.wd{width:92.016000px;}
.wa{width:92.520000px;}
.wf{width:93.600000px;}
.wb{width:106.056000px;}
.wc{width:141.696000px;}
.w3{width:147.420000px;}
.w7{width:187.050000px;}
.w6{width:215.490000px;}
.w5{width:563.685000px;}
.w2{width:633.930000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x1{left:54.000000px;}
.x6{left:56.880000px;}
.x9{left:80.999987px;}
.xa{left:108.035987px;}
.x4{left:139.320000px;}
.xb{left:166.530000px;}
.xf{left:240.690000px;}
.x8{left:333.794987px;}
.xc{left:353.595000px;}
.x10{left:382.395000px;}
.x5{left:387.974987px;}
.xd{left:444.495000px;}
.x11{left:474.405000px;}
.xe{left:528.045000px;}
.x12{left:558.825000px;}
.x7{left:620.565000px;}
.x3{left:687.930000px;}
.x13{left:839.129987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls15{letter-spacing:-0.688000pt;}
.ls12{letter-spacing:-0.480000pt;}
.ls11{letter-spacing:-0.362667pt;}
.ls7{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.185067pt;}
.ls14{letter-spacing:-0.183467pt;}
.lsc{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.007680pt;}
.ls1{letter-spacing:0.033280pt;}
.lse{letter-spacing:0.047360pt;}
.ls10{letter-spacing:0.094933pt;}
.lsf{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.231040pt;}
.ls2{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.480000pt;}
.lsb{letter-spacing:0.800000pt;}
.lsd{letter-spacing:1.440000pt;}
.lsa{letter-spacing:2.720000pt;}
.ls9{letter-spacing:7.200000pt;}
.ls13{letter-spacing:10.400000pt;}
.ls8{letter-spacing:41.040640pt;}
.ws0{word-spacing:-17.280000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws4{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.374933pt;}
.ws7{word-spacing:-13.327360pt;}
.ws2{word-spacing:-13.280000pt;}
.ws5{word-spacing:-13.232640pt;}
.ws3{word-spacing:0.000000pt;}
._3{margin-left:-447.168000pt;}
._7{margin-left:-3.240320pt;}
._6{margin-left:-2.284160pt;}
._2{margin-left:-0.942080pt;}
._0{width:1.029120pt;}
._1{width:2.622293pt;}
._5{width:3.587200pt;}
._4{width:4.678187pt;}
._a{width:6.161920pt;}
._9{width:7.118080pt;}
._12{width:8.024107pt;}
._e{width:8.957440pt;}
._f{width:10.683520pt;}
._8{width:11.932160pt;}
._10{width:14.183040pt;}
._13{width:15.512747pt;}
._14{width:18.791680pt;}
._15{width:32.987520pt;}
._b{width:81.466240pt;}
._d{width:158.616320pt;}
._c{width:198.350080pt;}
._11{width:1731.381333pt;}
.fs2{font-size:2.560000pt;}
.fs6{font-size:42.880000pt;}
.fs5{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs4{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:4.640000pt;}
.yb0{bottom:5.114667pt;}
.yab{bottom:5.120000pt;}
.yb7{bottom:5.160000pt;}
.y1f{bottom:5.280000pt;}
.y33{bottom:9.600000pt;}
.y6{bottom:12.640000pt;}
.y1e{bottom:22.880000pt;}
.y32{bottom:27.200000pt;}
.y1d{bottom:40.506667pt;}
.y5{bottom:40.640000pt;}
.y31{bottom:44.826667pt;}
.y9{bottom:51.520000pt;}
.y1c{bottom:58.106667pt;}
.y30{bottom:62.426667pt;}
.y4{bottom:68.800000pt;}
.y1b{bottom:75.706667pt;}
.y81{bottom:76.192000pt;}
.y2f{bottom:80.026667pt;}
.yb3{bottom:80.672000pt;}
.yc3{bottom:82.592000pt;}
.y4a{bottom:92.672000pt;}
.y1a{bottom:93.466667pt;}
.y80{bottom:93.792000pt;}
.y2e{bottom:95.386667pt;}
.y3{bottom:96.986667pt;}
.yb2{bottom:98.272000pt;}
.yc6{bottom:100.032000pt;}
.yc2{bottom:100.192000pt;}
.y2d{bottom:110.106667pt;}
.yb1{bottom:110.752000pt;}
.y19{bottom:111.066667pt;}
.y7f{bottom:111.392000pt;}
.y49{bottom:112.832000pt;}
.yc1{bottom:117.792000pt;}
.y2c{bottom:122.426667pt;}
.y2{bottom:126.426667pt;}
.yaf{bottom:128.352000pt;}
.y18{bottom:128.666667pt;}
.y7e{bottom:128.992000pt;}
.y48{bottom:130.432000pt;}
.yc5{bottom:132.832000pt;}
.y2b{bottom:134.586667pt;}
.yc0{bottom:135.386667pt;}
.yae{bottom:145.946667pt;}
.y17{bottom:146.266667pt;}
.y7d{bottom:146.746667pt;}
.y2a{bottom:146.906667pt;}
.y47{bottom:148.186667pt;}
.ybf{bottom:152.986667pt;}
.y29{bottom:159.226667pt;}
.yad{bottom:163.546667pt;}
.y16{bottom:163.866667pt;}
.y7c{bottom:164.346667pt;}
.y46{bottom:165.786667pt;}
.ybe{bottom:170.746667pt;}
.y28{bottom:171.386667pt;}
.yac{bottom:181.306667pt;}
.y15{bottom:181.626667pt;}
.y7b{bottom:181.946667pt;}
.y45{bottom:183.386667pt;}
.y27{bottom:183.706667pt;}
.ybd{bottom:188.346667pt;}
.y26{bottom:196.026667pt;}
.yaa{bottom:198.906667pt;}
.y14{bottom:199.226667pt;}
.y7a{bottom:199.546667pt;}
.y44{bottom:200.986667pt;}
.ybc{bottom:205.946667pt;}
.y25{bottom:208.186667pt;}
.y13{bottom:216.826667pt;}
.y79{bottom:217.146667pt;}
.y43{bottom:218.586667pt;}
.y24{bottom:220.506667pt;}
.ya9{bottom:221.626667pt;}
.ybb{bottom:223.546667pt;}
.y23{bottom:232.826667pt;}
.y12{bottom:234.426667pt;}
.y78{bottom:234.906667pt;}
.y42{bottom:236.346667pt;}
.ya8{bottom:238.586667pt;}
.yba{bottom:241.146667pt;}
.y22{bottom:244.986667pt;}
.y11{bottom:252.026667pt;}
.y77{bottom:252.506667pt;}
.y41{bottom:253.946667pt;}
.y21{bottom:257.946667pt;}
.ya7{bottom:258.906667pt;}
.y76{bottom:270.106667pt;}
.y10{bottom:270.946667pt;}
.y40{bottom:271.546667pt;}
.y20{bottom:273.346667pt;}
.ya6{bottom:276.506667pt;}
.y75{bottom:287.706667pt;}
.y3f{bottom:289.146667pt;}
.yc4{bottom:291.266667pt;}
.ya5{bottom:294.146667pt;}
.y74{bottom:305.346667pt;}
.y3e{bottom:306.786667pt;}
.ya4{bottom:311.746667pt;}
.y73{bottom:323.106667pt;}
.y3d{bottom:324.546667pt;}
.ya3{bottom:329.346667pt;}
.y72{bottom:340.706667pt;}
.y3c{bottom:342.146667pt;}
.ya2{bottom:347.106667pt;}
.y71{bottom:358.306667pt;}
.y3b{bottom:359.746667pt;}
.ya1{bottom:364.706667pt;}
.y70{bottom:375.906667pt;}
.y3a{bottom:377.346667pt;}
.ya0{bottom:382.306667pt;}
.y6f{bottom:393.506667pt;}
.y39{bottom:394.946667pt;}
.y9f{bottom:399.906667pt;}
.y6e{bottom:411.266667pt;}
.y38{bottom:412.706667pt;}
.y9e{bottom:417.506667pt;}
.y6d{bottom:428.866667pt;}
.y37{bottom:430.306667pt;}
.y9d{bottom:435.266667pt;}
.y6c{bottom:446.466667pt;}
.y36{bottom:447.906667pt;}
.y9c{bottom:452.866667pt;}
.y6b{bottom:464.066667pt;}
.y35{bottom:465.506667pt;}
.y9b{bottom:470.466667pt;}
.y6a{bottom:481.666667pt;}
.y34{bottom:483.106667pt;}
.y9a{bottom:488.066667pt;}
.yf{bottom:496.226667pt;}
.y69{bottom:499.426667pt;}
.y99{bottom:505.666667pt;}
.y68{bottom:517.026667pt;}
.y98{bottom:523.426667pt;}
.y67{bottom:534.653333pt;}
.y97{bottom:541.053333pt;}
.y66{bottom:552.253333pt;}
.y96{bottom:558.653333pt;}
.y65{bottom:569.853333pt;}
.y95{bottom:576.253333pt;}
.y64{bottom:587.613333pt;}
.y94{bottom:593.853333pt;}
.y63{bottom:605.213333pt;}
.y93{bottom:611.613333pt;}
.y92{bottom:629.213333pt;}
.y62{bottom:630.813333pt;}
.y91{bottom:646.813333pt;}
.y61{bottom:648.413333pt;}
.y90{bottom:664.413333pt;}
.y60{bottom:666.013333pt;}
.y8f{bottom:682.013333pt;}
.y5f{bottom:683.773333pt;}
.y8e{bottom:699.773333pt;}
.y5e{bottom:701.373333pt;}
.y8d{bottom:717.373333pt;}
.y5d{bottom:718.973333pt;}
.yb9{bottom:729.853333pt;}
.y8c{bottom:734.973333pt;}
.y5c{bottom:736.573333pt;}
.yb8{bottom:747.453333pt;}
.y8b{bottom:752.573333pt;}
.y5b{bottom:754.173333pt;}
.yb6{bottom:765.053333pt;}
.y8a{bottom:770.213333pt;}
.y5a{bottom:771.813333pt;}
.yb5{bottom:782.693333pt;}
.y89{bottom:787.813333pt;}
.y59{bottom:789.573333pt;}
.yb4{bottom:800.293333pt;}
.ye{bottom:803.813333pt;}
.y88{bottom:805.573333pt;}
.y58{bottom:815.173333pt;}
.yd{bottom:821.893333pt;}
.y87{bottom:823.173333pt;}
.y57{bottom:832.773333pt;}
.y86{bottom:840.773333pt;}
.yc{bottom:840.933333pt;}
.y56{bottom:850.373333pt;}
.y85{bottom:858.373333pt;}
.yb{bottom:861.733333pt;}
.y55{bottom:867.973333pt;}
.y84{bottom:875.973333pt;}
.y54{bottom:885.733333pt;}
.ya{bottom:889.893333pt;}
.y83{bottom:893.733333pt;}
.y53{bottom:903.333333pt;}
.y82{bottom:911.333333pt;}
.y8{bottom:914.213333pt;}
.y52{bottom:928.933333pt;}
.y1{bottom:929.893333pt;}
.y51{bottom:946.533333pt;}
.y50{bottom:964.133333pt;}
.y4f{bottom:981.893333pt;}
.y4e{bottom:999.493333pt;}
.y4d{bottom:1017.120000pt;}
.y4c{bottom:1034.720000pt;}
.y4b{bottom:1059.680000pt;}
.h5{height:1.787500pt;}
.h12{height:17.600000pt;}
.h14{height:17.632000pt;}
.h13{height:17.760000pt;}
.he{height:30.254687pt;}
.h9{height:37.090625pt;}
.hd{height:37.479688pt;}
.h10{height:38.672812pt;}
.ha{height:41.543750pt;}
.hf{height:42.780000pt;}
.h4{height:43.355000pt;}
.h11{height:43.782500pt;}
.h7{height:44.687500pt;}
.hc{height:45.156250pt;}
.h3{height:50.895000pt;}
.h6{height:54.093750pt;}
.h8{height:60.057813pt;}
.h2{height:144.666667pt;}
.hb{height:285.826667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:74.272000pt;}
.we{width:75.040000pt;}
.w8{width:80.800000pt;}
.wd{width:81.792000pt;}
.wa{width:82.240000pt;}
.wf{width:83.200000pt;}
.wb{width:94.272000pt;}
.wc{width:125.952000pt;}
.w3{width:131.040000pt;}
.w7{width:166.266667pt;}
.w6{width:191.546667pt;}
.w5{width:501.053333pt;}
.w2{width:563.493333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x1{left:48.000000pt;}
.x6{left:50.560000pt;}
.x9{left:71.999988pt;}
.xa{left:96.031988pt;}
.x4{left:123.840000pt;}
.xb{left:148.026667pt;}
.xf{left:213.946667pt;}
.x8{left:296.706655pt;}
.xc{left:314.306667pt;}
.x10{left:339.906667pt;}
.x5{left:344.866655pt;}
.xd{left:395.106667pt;}
.x11{left:421.693333pt;}
.xe{left:469.373333pt;}
.x12{left:496.733333pt;}
.x7{left:551.613333pt;}
.x3{left:611.493333pt;}
.x13{left:745.893322pt;}
}




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