
    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_7e27675718f86b0df3f0e73b.woff')format("woff");}.ff1{font-family:ff1;line-height:0.766602;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_2f3fa7b589abdf1d8ee4bedb.woff')format("woff");}.ff2{font-family:ff2;line-height:0.977539;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_fc4af3ac8e5fbf3e3b268ba0.woff')format("woff");}.ff3{font-family:ff3;line-height:0.800293;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_defca4745d71b77212ec84c0.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_99628b0e5eab96f215f2342b.woff')format("woff");}.ff5{font-family:ff5;line-height:1.130371;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_aec5295f50e9635aacfa3df3.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_4a35e286d4d7bc1b0844af16.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_50969ab8a89630727602f2b4.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_b5c4858fad1b449b5ab5fd8a.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_a90fd5e72a4d18d1a5731726.woff')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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-74.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:21.600000px;}
.v2{vertical-align:48.240000px;}
.v1{vertical-align:54.720000px;}
.v3{vertical-align:102.960000px;}
.ls9{letter-spacing:-0.288000px;}
.lsa{letter-spacing:-0.216000px;}
.ls2{letter-spacing:-0.058320px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.ls3{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.720000px;}
.ls4{letter-spacing:2.801520px;}
.ls7{letter-spacing:9.720000px;}
.ls8{letter-spacing:19.656000px;}
.ls6{letter-spacing:1048.476000px;}
.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;}
}
.ws9{word-spacing:-72.000000px;}
.ws2{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.784000px;}
.ws7{word-spacing:-15.840000px;}
.ws6{word-spacing:-15.552000px;}
.ws0{word-spacing:-13.447440px;}
.ws5{word-spacing:-0.504000px;}
.ws3{word-spacing:0.000000px;}
.ws4{word-spacing:0.216000px;}
.ws8{word-spacing:5.328000px;}
._2a{margin-left:-5.256000px;}
._8{margin-left:-4.176000px;}
._3{margin-left:-2.952000px;}
._0{margin-left:-1.243142px;}
._1{width:1.238842px;}
._6{width:2.448000px;}
._7{width:3.498317px;}
._f{width:5.086732px;}
._12{width:6.408000px;}
._10{width:7.441268px;}
._b{width:9.019142px;}
._a{width:10.080000px;}
._11{width:11.164301px;}
._9{width:12.312000px;}
._13{width:13.392000px;}
._d{width:14.688000px;}
._14{width:15.912000px;}
._15{width:16.974317px;}
._c{width:19.800000px;}
._4{width:21.456000px;}
._5{width:22.968000px;}
._19{width:24.048000px;}
._1a{width:25.056000px;}
._1c{width:26.462284px;}
._16{width:28.296000px;}
._17{width:29.721158px;}
._1b{width:30.917683px;}
._26{width:33.480000px;}
._28{width:34.632000px;}
._29{width:36.000000px;}
._21{width:39.312000px;}
._24{width:43.704000px;}
._18{width:53.976000px;}
._1e{width:56.976557px;}
._20{width:58.464000px;}
._25{width:60.840000px;}
._23{width:74.952000px;}
._e{width:107.976000px;}
._1f{width:137.160000px;}
._2{width:146.082865px;}
._27{width:161.976000px;}
._2e{width:180.360000px;}
._1d{width:186.191175px;}
._22{width:188.083142px;}
._2b{width:197.640000px;}
._2c{width:245.520000px;}
._2d{width:246.744000px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(91,155,213);}
.fc1{color:rgb(0,176,240);}
.fc4{color:rgb(0,176,80);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:51.120000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:56.920429px;}
.fs3{font-size:59.760000px;}
.fs4{font-size:72.000000px;}
.fs1{font-size:88.795869px;}
.y0{bottom:0.000000px;}
.y59{bottom:3.960000px;}
.y60{bottom:4.005000px;}
.y5c{bottom:24.660000px;}
.y5f{bottom:24.705000px;}
.y8b{bottom:45.180000px;}
.y5b{bottom:45.360000px;}
.y5e{bottom:45.405000px;}
.y62{bottom:66.060000px;}
.y87{bottom:66.105000px;}
.y4{bottom:68.580000px;}
.y57{bottom:122.976000px;}
.y82{bottom:125.136000px;}
.y36{bottom:128.916000px;}
.y56{bottom:143.676000px;}
.y81{bottom:145.836000px;}
.y35{bottom:149.616000px;}
.y55{bottom:164.370000px;}
.y80{bottom:166.530000px;}
.y34{bottom:170.310000px;}
.y54{bottom:185.070000px;}
.y7f{bottom:187.230000px;}
.y33{bottom:191.010000px;}
.y53{bottom:205.770000px;}
.y7e{bottom:207.930000px;}
.y32{bottom:211.710000px;}
.y52{bottom:226.470000px;}
.y7d{bottom:228.630000px;}
.y31{bottom:232.410000px;}
.y51{bottom:247.170000px;}
.y7c{bottom:249.330000px;}
.y30{bottom:253.110000px;}
.y50{bottom:267.870000px;}
.y7b{bottom:270.030000px;}
.y2f{bottom:273.810000px;}
.y4f{bottom:288.570000px;}
.y7a{bottom:290.730000px;}
.y2e{bottom:294.510000px;}
.y4e{bottom:309.270000px;}
.y79{bottom:311.430000px;}
.y2d{bottom:315.210000px;}
.y4d{bottom:329.970000px;}
.y78{bottom:332.130000px;}
.y2c{bottom:335.910000px;}
.y4c{bottom:350.715000px;}
.y77{bottom:352.875000px;}
.y2b{bottom:356.655000px;}
.y4b{bottom:371.415000px;}
.y76{bottom:373.575000px;}
.y2a{bottom:377.355000px;}
.y4a{bottom:392.115000px;}
.y75{bottom:394.275000px;}
.y29{bottom:398.055000px;}
.y49{bottom:412.815000px;}
.y74{bottom:414.975000px;}
.y28{bottom:418.755000px;}
.y48{bottom:433.515000px;}
.y73{bottom:435.675000px;}
.y27{bottom:439.455000px;}
.y47{bottom:454.215000px;}
.y72{bottom:456.375000px;}
.y26{bottom:460.155000px;}
.y46{bottom:474.915000px;}
.y71{bottom:477.075000px;}
.y25{bottom:480.855000px;}
.y45{bottom:495.615000px;}
.y70{bottom:497.775000px;}
.y24{bottom:501.555000px;}
.y44{bottom:516.315000px;}
.y6f{bottom:518.475000px;}
.y23{bottom:522.255000px;}
.y43{bottom:537.015000px;}
.y6e{bottom:539.175000px;}
.y22{bottom:542.955000px;}
.y42{bottom:557.715000px;}
.y6d{bottom:559.875000px;}
.y21{bottom:563.655000px;}
.y41{bottom:578.415000px;}
.y6c{bottom:580.575000px;}
.y20{bottom:584.355000px;}
.y40{bottom:599.115000px;}
.y6b{bottom:601.275000px;}
.y1f{bottom:605.085000px;}
.y3f{bottom:619.845000px;}
.y6a{bottom:622.005000px;}
.y1e{bottom:625.785000px;}
.y3e{bottom:640.545000px;}
.y69{bottom:642.705000px;}
.y1d{bottom:646.485000px;}
.y3d{bottom:661.245000px;}
.y68{bottom:663.405000px;}
.y1c{bottom:667.185000px;}
.y3c{bottom:681.945000px;}
.y67{bottom:684.105000px;}
.y1b{bottom:687.885000px;}
.y3b{bottom:702.645000px;}
.y66{bottom:704.805000px;}
.y1a{bottom:708.585000px;}
.y3a{bottom:723.165000px;}
.y65{bottom:725.505000px;}
.y19{bottom:729.285000px;}
.y64{bottom:746.205000px;}
.y18{bottom:749.985000px;}
.y63{bottom:766.905000px;}
.y39{bottom:767.625000px;}
.y17{bottom:770.685000px;}
.y61{bottom:784.365000px;}
.y88{bottom:787.605000px;}
.y38{bottom:788.325000px;}
.y16{bottom:791.385000px;}
.y37{bottom:800.385000px;}
.y86{bottom:805.065000px;}
.y90{bottom:808.305000px;}
.y15{bottom:812.085000px;}
.y8f{bottom:829.005000px;}
.y14{bottom:832.785000px;}
.y8e{bottom:849.705000px;}
.y13{bottom:853.485000px;}
.y8d{bottom:867.165000px;}
.y5d{bottom:867.885000px;}
.y12{bottom:874.230000px;}
.y85{bottom:888.630000px;}
.y11{bottom:894.930000px;}
.y10{bottom:915.630000px;}
.y5a{bottom:930.930000px;}
.yf{bottom:936.330000px;}
.y8c{bottom:950.730000px;}
.ye{bottom:957.030000px;}
.y84{bottom:972.330000px;}
.yd{bottom:977.730000px;}
.y58{bottom:993.750000px;}
.yc{bottom:998.430000px;}
.y8a{bottom:1013.730000px;}
.yb{bottom:1019.130000px;}
.y83{bottom:1035.150000px;}
.ya{bottom:1039.830000px;}
.y9{bottom:1060.530000px;}
.y89{bottom:1076.550000px;}
.y8{bottom:1081.230000px;}
.y7{bottom:1101.930000px;}
.y6{bottom:1122.630000px;}
.y5{bottom:1143.360000px;}
.y3{bottom:1162.800000px;}
.y2{bottom:1180.260000px;}
.y1{bottom:1217.520000px;}
.hc{height:20.700000px;}
.h2{height:40.790039px;}
.h10{height:41.400000px;}
.h4{height:45.386260px;}
.h7{height:50.273438px;}
.h6{height:50.800781px;}
.h5{height:56.900391px;}
.h12{height:61.920000px;}
.hd{height:62.100000px;}
.he{height:62.136000px;}
.h3{height:70.802565px;}
.hf{height:82.800000px;}
.h11{height:82.836000px;}
.ha{height:98.513438px;}
.hb{height:108.919688px;}
.h8{height:115.399688px;}
.h9{height:163.639688px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:38.880000px;}
.w9{width:39.240000px;}
.wb{width:48.780000px;}
.wd{width:59.040000px;}
.w7{width:76.860000px;}
.w5{width:76.896000px;}
.w6{width:77.040000px;}
.w8{width:77.076000px;}
.w4{width:247.170000px;}
.wc{width:264.990000px;}
.wa{width:275.070000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:7.740000px;}
.x1{left:108.035987px;}
.x3{left:126.215987px;}
.x2{left:142.775987px;}
.x11{left:148.536000px;}
.x1d{left:162.029987px;}
.x8{left:245.009987px;}
.x4{left:292.934987px;}
.xb{left:297.794987px;}
.xe{left:322.634987px;}
.x7{left:325.334987px;}
.x6{left:328.034987px;}
.x9{left:343.514987px;}
.xc{left:367.094987px;}
.xa{left:396.974987px;}
.x1b{left:414.615000px;}
.x16{left:424.695000px;}
.x5{left:446.474987px;}
.xf{left:472.064987px;}
.x12{left:474.225000px;}
.xd{left:477.464987px;}
.x1c{left:492.225000px;}
.x17{left:502.485000px;}
.x13{left:551.985000px;}
.x18{left:580.065000px;}
.x14{left:629.565000px;}
.x19{left:657.870000px;}
.x15{left:707.370000px;}
.x1a{left:735.630000px;}
@media print{
.v5{vertical-align:-66.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:19.200000pt;}
.v2{vertical-align:42.880000pt;}
.v1{vertical-align:48.640000pt;}
.v3{vertical-align:91.520000pt;}
.ls9{letter-spacing:-0.256000pt;}
.lsa{letter-spacing:-0.192000pt;}
.ls2{letter-spacing:-0.051840pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.ls3{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.640000pt;}
.ls4{letter-spacing:2.490240pt;}
.ls7{letter-spacing:8.640000pt;}
.ls8{letter-spacing:17.472000pt;}
.ls6{letter-spacing:931.978667pt;}
.ws9{word-spacing:-64.000000pt;}
.ws2{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.808000pt;}
.ws7{word-spacing:-14.080000pt;}
.ws6{word-spacing:-13.824000pt;}
.ws0{word-spacing:-11.953280pt;}
.ws5{word-spacing:-0.448000pt;}
.ws3{word-spacing:0.000000pt;}
.ws4{word-spacing:0.192000pt;}
.ws8{word-spacing:4.736000pt;}
._2a{margin-left:-4.672000pt;}
._8{margin-left:-3.712000pt;}
._3{margin-left:-2.624000pt;}
._0{margin-left:-1.105015pt;}
._1{width:1.101192pt;}
._6{width:2.176000pt;}
._7{width:3.109615pt;}
._f{width:4.521540pt;}
._12{width:5.696000pt;}
._10{width:6.614460pt;}
._b{width:8.017015pt;}
._a{width:8.960000pt;}
._11{width:9.923823pt;}
._9{width:10.944000pt;}
._13{width:11.904000pt;}
._d{width:13.056000pt;}
._14{width:14.144000pt;}
._15{width:15.088282pt;}
._c{width:17.600000pt;}
._4{width:19.072000pt;}
._5{width:20.416000pt;}
._19{width:21.376000pt;}
._1a{width:22.272000pt;}
._1c{width:23.522031pt;}
._16{width:25.152000pt;}
._17{width:26.418808pt;}
._1b{width:27.482385pt;}
._26{width:29.760000pt;}
._28{width:30.784000pt;}
._29{width:32.000000pt;}
._21{width:34.944000pt;}
._24{width:38.848000pt;}
._18{width:47.978667pt;}
._1e{width:50.645829pt;}
._20{width:51.968000pt;}
._25{width:54.080000pt;}
._23{width:66.624000pt;}
._e{width:95.978667pt;}
._1f{width:121.920000pt;}
._2{width:129.851436pt;}
._27{width:143.978667pt;}
._2e{width:160.320000pt;}
._1d{width:165.503267pt;}
._22{width:167.185015pt;}
._2b{width:175.680000pt;}
._2c{width:218.240000pt;}
._2d{width:219.328000pt;}
.fs5{font-size:45.440000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:50.595937pt;}
.fs3{font-size:53.120000pt;}
.fs4{font-size:64.000000pt;}
.fs1{font-size:78.929661pt;}
.y0{bottom:0.000000pt;}
.y59{bottom:3.520000pt;}
.y60{bottom:3.560000pt;}
.y5c{bottom:21.920000pt;}
.y5f{bottom:21.960000pt;}
.y8b{bottom:40.160000pt;}
.y5b{bottom:40.320000pt;}
.y5e{bottom:40.360000pt;}
.y62{bottom:58.720000pt;}
.y87{bottom:58.760000pt;}
.y4{bottom:60.960000pt;}
.y57{bottom:109.312000pt;}
.y82{bottom:111.232000pt;}
.y36{bottom:114.592000pt;}
.y56{bottom:127.712000pt;}
.y81{bottom:129.632000pt;}
.y35{bottom:132.992000pt;}
.y55{bottom:146.106667pt;}
.y80{bottom:148.026667pt;}
.y34{bottom:151.386667pt;}
.y54{bottom:164.506667pt;}
.y7f{bottom:166.426667pt;}
.y33{bottom:169.786667pt;}
.y53{bottom:182.906667pt;}
.y7e{bottom:184.826667pt;}
.y32{bottom:188.186667pt;}
.y52{bottom:201.306667pt;}
.y7d{bottom:203.226667pt;}
.y31{bottom:206.586667pt;}
.y51{bottom:219.706667pt;}
.y7c{bottom:221.626667pt;}
.y30{bottom:224.986667pt;}
.y50{bottom:238.106667pt;}
.y7b{bottom:240.026667pt;}
.y2f{bottom:243.386667pt;}
.y4f{bottom:256.506667pt;}
.y7a{bottom:258.426667pt;}
.y2e{bottom:261.786667pt;}
.y4e{bottom:274.906667pt;}
.y79{bottom:276.826667pt;}
.y2d{bottom:280.186667pt;}
.y4d{bottom:293.306667pt;}
.y78{bottom:295.226667pt;}
.y2c{bottom:298.586667pt;}
.y4c{bottom:311.746667pt;}
.y77{bottom:313.666667pt;}
.y2b{bottom:317.026667pt;}
.y4b{bottom:330.146667pt;}
.y76{bottom:332.066667pt;}
.y2a{bottom:335.426667pt;}
.y4a{bottom:348.546667pt;}
.y75{bottom:350.466667pt;}
.y29{bottom:353.826667pt;}
.y49{bottom:366.946667pt;}
.y74{bottom:368.866667pt;}
.y28{bottom:372.226667pt;}
.y48{bottom:385.346667pt;}
.y73{bottom:387.266667pt;}
.y27{bottom:390.626667pt;}
.y47{bottom:403.746667pt;}
.y72{bottom:405.666667pt;}
.y26{bottom:409.026667pt;}
.y46{bottom:422.146667pt;}
.y71{bottom:424.066667pt;}
.y25{bottom:427.426667pt;}
.y45{bottom:440.546667pt;}
.y70{bottom:442.466667pt;}
.y24{bottom:445.826667pt;}
.y44{bottom:458.946667pt;}
.y6f{bottom:460.866667pt;}
.y23{bottom:464.226667pt;}
.y43{bottom:477.346667pt;}
.y6e{bottom:479.266667pt;}
.y22{bottom:482.626667pt;}
.y42{bottom:495.746667pt;}
.y6d{bottom:497.666667pt;}
.y21{bottom:501.026667pt;}
.y41{bottom:514.146667pt;}
.y6c{bottom:516.066667pt;}
.y20{bottom:519.426667pt;}
.y40{bottom:532.546667pt;}
.y6b{bottom:534.466667pt;}
.y1f{bottom:537.853333pt;}
.y3f{bottom:550.973333pt;}
.y6a{bottom:552.893333pt;}
.y1e{bottom:556.253333pt;}
.y3e{bottom:569.373333pt;}
.y69{bottom:571.293333pt;}
.y1d{bottom:574.653333pt;}
.y3d{bottom:587.773333pt;}
.y68{bottom:589.693333pt;}
.y1c{bottom:593.053333pt;}
.y3c{bottom:606.173333pt;}
.y67{bottom:608.093333pt;}
.y1b{bottom:611.453333pt;}
.y3b{bottom:624.573333pt;}
.y66{bottom:626.493333pt;}
.y1a{bottom:629.853333pt;}
.y3a{bottom:642.813333pt;}
.y65{bottom:644.893333pt;}
.y19{bottom:648.253333pt;}
.y64{bottom:663.293333pt;}
.y18{bottom:666.653333pt;}
.y63{bottom:681.693333pt;}
.y39{bottom:682.333333pt;}
.y17{bottom:685.053333pt;}
.y61{bottom:697.213333pt;}
.y88{bottom:700.093333pt;}
.y38{bottom:700.733333pt;}
.y16{bottom:703.453333pt;}
.y37{bottom:711.453333pt;}
.y86{bottom:715.613333pt;}
.y90{bottom:718.493333pt;}
.y15{bottom:721.853333pt;}
.y8f{bottom:736.893333pt;}
.y14{bottom:740.253333pt;}
.y8e{bottom:755.293333pt;}
.y13{bottom:758.653333pt;}
.y8d{bottom:770.813333pt;}
.y5d{bottom:771.453333pt;}
.y12{bottom:777.093333pt;}
.y85{bottom:789.893333pt;}
.y11{bottom:795.493333pt;}
.y10{bottom:813.893333pt;}
.y5a{bottom:827.493333pt;}
.yf{bottom:832.293333pt;}
.y8c{bottom:845.093333pt;}
.ye{bottom:850.693333pt;}
.y84{bottom:864.293333pt;}
.yd{bottom:869.093333pt;}
.y58{bottom:883.333333pt;}
.yc{bottom:887.493333pt;}
.y8a{bottom:901.093333pt;}
.yb{bottom:905.893333pt;}
.y83{bottom:920.133333pt;}
.ya{bottom:924.293333pt;}
.y9{bottom:942.693333pt;}
.y89{bottom:956.933333pt;}
.y8{bottom:961.093333pt;}
.y7{bottom:979.493333pt;}
.y6{bottom:997.893333pt;}
.y5{bottom:1016.320000pt;}
.y3{bottom:1033.600000pt;}
.y2{bottom:1049.120000pt;}
.y1{bottom:1082.240000pt;}
.hc{height:18.400000pt;}
.h2{height:36.257812pt;}
.h10{height:36.800000pt;}
.h4{height:40.343342pt;}
.h7{height:44.687500pt;}
.h6{height:45.156250pt;}
.h5{height:50.578125pt;}
.h12{height:55.040000pt;}
.hd{height:55.200000pt;}
.he{height:55.232000pt;}
.h3{height:62.935614pt;}
.hf{height:73.600000pt;}
.h11{height:73.632000pt;}
.ha{height:87.567500pt;}
.hb{height:96.817500pt;}
.h8{height:102.577500pt;}
.h9{height:145.457500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:34.560000pt;}
.w9{width:34.880000pt;}
.wb{width:43.360000pt;}
.wd{width:52.480000pt;}
.w7{width:68.320000pt;}
.w5{width:68.352000pt;}
.w6{width:68.480000pt;}
.w8{width:68.512000pt;}
.w4{width:219.706667pt;}
.wc{width:235.546667pt;}
.wa{width:244.506667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:6.880000pt;}
.x1{left:96.031988pt;}
.x3{left:112.191988pt;}
.x2{left:126.911988pt;}
.x11{left:132.032000pt;}
.x1d{left:144.026655pt;}
.x8{left:217.786655pt;}
.x4{left:260.386655pt;}
.xb{left:264.706655pt;}
.xe{left:286.786655pt;}
.x7{left:289.186655pt;}
.x6{left:291.586655pt;}
.x9{left:305.346655pt;}
.xc{left:326.306655pt;}
.xa{left:352.866655pt;}
.x1b{left:368.546667pt;}
.x16{left:377.506667pt;}
.x5{left:396.866655pt;}
.xf{left:419.613322pt;}
.x12{left:421.533333pt;}
.xd{left:424.413322pt;}
.x1c{left:437.533333pt;}
.x17{left:446.653333pt;}
.x13{left:490.653333pt;}
.x18{left:515.613333pt;}
.x14{left:559.613333pt;}
.x19{left:584.773333pt;}
.x15{left:628.773333pt;}
.x1a{left:653.893333pt;}
}




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