
    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_47a56e8dc2c1948ccaaf9f0b.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_0cd698c75730afa47d92b5b8.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_181031d88fdf5257f5e1b3a6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_59d02361b55e06079b730cf3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_e28a431e0f1b23a797dde032.woff2')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_a091ded8ba9b57e719f6e25f.woff2')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_8a242bc9129d89016751ba91.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.978027;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_9b8c40e01a5ca433cf050716.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.942383;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_9776249860832bb9d4609dd8.woff2')format("woff");}.ffa{font-family:ffa;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls3{letter-spacing:-0.936000px;}
.ls17{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.288000px;}
.ls13{letter-spacing:-0.144000px;}
.lsb{letter-spacing:-0.072000px;}
.ls2{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.480000px;}
.lse{letter-spacing:0.720000px;}
.lsf{letter-spacing:1.080000px;}
.ls8{letter-spacing:3.600000px;}
.ls12{letter-spacing:7.200000px;}
.ls11{letter-spacing:9.360000px;}
.lsd{letter-spacing:12.960000px;}
.ls16{letter-spacing:17.424000px;}
.ls1{letter-spacing:28.080000px;}
.ls0{letter-spacing:33.120000px;}
.lsc{letter-spacing:44.640000px;}
.ls14{letter-spacing:48.960000px;}
.ls15{letter-spacing:53.424000px;}
.ls10{letter-spacing:66.240000px;}
.ls9{letter-spacing:155.520000px;}
.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;}
}
.ws3{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.928000px;}
.ws9{word-spacing:-17.856000px;}
.ws4{word-spacing:-17.712000px;}
.wsa{word-spacing:-17.280000px;}
.ws2{word-spacing:-17.064000px;}
.ws0{word-spacing:-16.560000px;}
.ws8{word-spacing:-13.140000px;}
.ws6{word-spacing:-11.700000px;}
.ws5{word-spacing:0.000000px;}
._29{margin-left:-12.300000px;}
._2c{margin-left:-7.620000px;}
._31{margin-left:-5.928000px;}
._2{margin-left:-2.484000px;}
._1{margin-left:-1.224000px;}
._0{width:1.224000px;}
._22{width:2.472000px;}
._25{width:4.392000px;}
._27{width:5.484000px;}
._24{width:6.552000px;}
._1e{width:7.560000px;}
._6{width:8.856000px;}
._7{width:9.864000px;}
._4{width:11.088000px;}
._3{width:12.708000px;}
._9{width:14.472000px;}
._8{width:15.480000px;}
._f{width:16.608000px;}
._10{width:19.656000px;}
._14{width:20.748000px;}
._5{width:22.392000px;}
._26{width:23.544000px;}
._1f{width:24.624000px;}
._15{width:25.704000px;}
._b{width:27.576000px;}
._1b{width:29.088000px;}
._1c{width:30.168000px;}
._e{width:31.572000px;}
._1d{width:32.664000px;}
._a{width:33.768000px;}
._2d{width:35.208000px;}
._28{width:36.792000px;}
._1a{width:38.160000px;}
._2a{width:39.780000px;}
._d{width:40.788000px;}
._c{width:41.832000px;}
._21{width:43.560000px;}
._23{width:45.300000px;}
._2e{width:46.512000px;}
._2f{width:47.628000px;}
._2b{width:50.484000px;}
._30{width:52.788000px;}
._36{width:55.512000px;}
._33{width:56.808000px;}
._34{width:57.816000px;}
._12{width:61.488000px;}
._13{width:62.568000px;}
._11{width:64.152000px;}
._18{width:68.400000px;}
._19{width:69.912000px;}
._16{width:89.568000px;}
._17{width:90.864000px;}
._20{width:95.004000px;}
._35{width:146.052000px;}
._32{width:188.544000px;}
.fc5{color:rgb(79,129,189);}
.fc4{color:transparent;}
.fc3{color:rgb(192,0,0);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs2{font-size:48.240000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:1.620000px;}
.y4f{bottom:7.020000px;}
.y57{bottom:7.200000px;}
.y36{bottom:16.740000px;}
.y34{bottom:16.770000px;}
.y3e{bottom:17.280000px;}
.y3c{bottom:17.325000px;}
.y39{bottom:17.460000px;}
.y40{bottom:18.360000px;}
.y52{bottom:18.900000px;}
.y59{bottom:18.930000px;}
.y50{bottom:19.080000px;}
.y53{bottom:30.780000px;}
.y5a{bottom:30.810000px;}
.y56{bottom:30.954000px;}
.y4e{bottom:30.960000px;}
.y5{bottom:57.420000px;}
.y1{bottom:68.940000px;}
.y4{bottom:77.580000px;}
.y32{bottom:113.616000px;}
.y4c{bottom:117.576000px;}
.y55{bottom:127.296000px;}
.y84{bottom:135.936000px;}
.y31{bottom:137.376000px;}
.y4b{bottom:141.516000px;}
.y83{bottom:159.690000px;}
.y30{bottom:161.130000px;}
.y4a{bottom:165.270000px;}
.y54{bottom:175.710000px;}
.y82{bottom:183.450000px;}
.y2f{bottom:185.070000px;}
.y49{bottom:189.030000px;}
.y81{bottom:207.390000px;}
.y2e{bottom:208.830000px;}
.y48{bottom:212.790000px;}
.y51{bottom:224.130000px;}
.y80{bottom:231.150000px;}
.y2d{bottom:232.590000px;}
.y47{bottom:236.730000px;}
.y7f{bottom:254.910000px;}
.y2c{bottom:256.350000px;}
.y46{bottom:260.490000px;}
.y4d{bottom:272.370000px;}
.y7e{bottom:278.670000px;}
.y2b{bottom:280.290000px;}
.y45{bottom:284.250000px;}
.y7d{bottom:302.610000px;}
.y2a{bottom:304.050000px;}
.y44{bottom:308.010000px;}
.y7c{bottom:326.370000px;}
.y29{bottom:327.810000px;}
.y43{bottom:331.950000px;}
.y7b{bottom:350.130000px;}
.y28{bottom:351.570000px;}
.y7a{bottom:373.935000px;}
.y27{bottom:375.555000px;}
.y79{bottom:397.875000px;}
.y26{bottom:399.315000px;}
.y78{bottom:421.635000px;}
.y25{bottom:423.075000px;}
.y77{bottom:445.395000px;}
.y24{bottom:446.835000px;}
.y76{bottom:469.155000px;}
.y23{bottom:470.775000px;}
.y75{bottom:492.915000px;}
.y22{bottom:494.535000px;}
.y74{bottom:516.855000px;}
.y21{bottom:518.295000px;}
.y73{bottom:540.615000px;}
.y20{bottom:542.055000px;}
.y72{bottom:564.375000px;}
.y1f{bottom:565.995000px;}
.y71{bottom:588.135000px;}
.y1e{bottom:589.755000px;}
.y70{bottom:612.075000px;}
.y1d{bottom:613.515000px;}
.y6f{bottom:635.865000px;}
.y1c{bottom:637.305000px;}
.y6e{bottom:659.625000px;}
.y1b{bottom:661.065000px;}
.y85{bottom:662.505000px;}
.y6d{bottom:683.385000px;}
.y1a{bottom:685.005000px;}
.y6c{bottom:707.325000px;}
.y19{bottom:708.765000px;}
.y6b{bottom:731.085000px;}
.y18{bottom:732.525000px;}
.y6a{bottom:754.845000px;}
.y17{bottom:756.285000px;}
.y42{bottom:758.085000px;}
.y69{bottom:778.605000px;}
.y16{bottom:780.225000px;}
.y41{bottom:781.845000px;}
.y3f{bottom:799.305000px;}
.y68{bottom:802.545000px;}
.y15{bottom:803.985000px;}
.y67{bottom:826.305000px;}
.y14{bottom:827.745000px;}
.y3d{bottom:835.125000px;}
.y66{bottom:850.065000px;}
.y13{bottom:851.505000px;}
.y3b{bottom:870.045000px;}
.y65{bottom:873.825000px;}
.y12{bottom:875.445000px;}
.y64{bottom:897.810000px;}
.y11{bottom:899.250000px;}
.y3a{bottom:904.830000px;}
.y63{bottom:921.570000px;}
.y10{bottom:923.010000px;}
.y62{bottom:945.330000px;}
.yf{bottom:946.770000px;}
.y61{bottom:969.090000px;}
.ye{bottom:970.710000px;}
.y38{bottom:988.170000px;}
.y60{bottom:992.850000px;}
.yd{bottom:994.470000px;}
.y5f{bottom:1016.790000px;}
.yc{bottom:1018.230000px;}
.y37{bottom:1036.590000px;}
.y5e{bottom:1040.550000px;}
.yb{bottom:1041.990000px;}
.y5d{bottom:1064.310000px;}
.ya{bottom:1065.930000px;}
.y35{bottom:1083.570000px;}
.y5c{bottom:1088.070000px;}
.y9{bottom:1089.690000px;}
.y5b{bottom:1112.010000px;}
.y8{bottom:1113.450000px;}
.y58{bottom:1129.470000px;}
.y33{bottom:1130.730000px;}
.y7{bottom:1137.210000px;}
.y6{bottom:1161.180000px;}
.y3{bottom:1193.040000px;}
.h2{height:16.920000px;}
.h13{height:34.020000px;}
.h12{height:34.056000px;}
.h11{height:34.200000px;}
.h14{height:35.100000px;}
.hf{height:46.260000px;}
.hd{height:46.296000px;}
.he{height:46.440000px;}
.h10{height:47.520000px;}
.h16{height:47.556000px;}
.h15{height:47.700000px;}
.ha{height:50.273438px;}
.h6{height:50.800781px;}
.h8{height:54.878906px;}
.h18{height:65.010937px;}
.h5{height:65.884219px;}
.h3{height:66.757500px;}
.h7{height:70.628906px;}
.h9{height:70.664062px;}
.h4{height:72.562500px;}
.h17{height:74.004654px;}
.hb{height:74.704922px;}
.hc{height:74.824922px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:43.056000px;}
.w6{width:222.330000px;}
.w9{width:222.510000px;}
.w5{width:236.010000px;}
.w4{width:236.190000px;}
.w8{width:236.370000px;}
.w7{width:236.550000px;}
.w3{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:9.180000px;}
.x2f{left:15.660000px;}
.x28{left:17.640000px;}
.x2e{left:20.700000px;}
.x2d{left:23.760000px;}
.x2c{left:33.480000px;}
.x14{left:34.920000px;}
.x29{left:36.000000px;}
.x1e{left:41.400000px;}
.x2a{left:42.654000px;}
.x16{left:47.385000px;}
.x27{left:48.414000px;}
.x12{left:51.294000px;}
.x1a{left:56.334000px;}
.x17{left:58.314000px;}
.x1b{left:59.394000px;}
.x22{left:62.994000px;}
.x1c{left:66.465000px;}
.x20{left:68.040000px;}
.x21{left:72.765000px;}
.x1d{left:73.974000px;}
.x2b{left:81.900000px;}
.x23{left:87.120000px;}
.x1f{left:91.665000px;}
.x19{left:102.105000px;}
.x18{left:109.110000px;}
.x26{left:118.254000px;}
.x11{left:119.916000px;}
.xf{left:127.655987px;}
.x31{left:138.275987px;}
.x6{left:153.389987px;}
.x3{left:159.689987px;}
.xa{left:162.929987px;}
.x30{left:170.129987px;}
.xe{left:180.749987px;}
.x9{left:274.394987px;}
.x25{left:281.774987px;}
.xd{left:327.674987px;}
.x13{left:356.835000px;}
.x8{left:376.634987px;}
.xb{left:392.654987px;}
.x7{left:418.934987px;}
.xc{left:431.534987px;}
.x1{left:439.815000px;}
.x10{left:446.294987px;}
.x5{left:478.544987px;}
.x15{left:593.565000px;}
.x24{left:812.129987px;}
.x4{left:829.439987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls3{letter-spacing:-0.832000pt;}
.ls17{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls13{letter-spacing:-0.128000pt;}
.lsb{letter-spacing:-0.064000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.426667pt;}
.lse{letter-spacing:0.640000pt;}
.lsf{letter-spacing:0.960000pt;}
.ls8{letter-spacing:3.200000pt;}
.ls12{letter-spacing:6.400000pt;}
.ls11{letter-spacing:8.320000pt;}
.lsd{letter-spacing:11.520000pt;}
.ls16{letter-spacing:15.488000pt;}
.ls1{letter-spacing:24.960000pt;}
.ls0{letter-spacing:29.440000pt;}
.lsc{letter-spacing:39.680000pt;}
.ls14{letter-spacing:43.520000pt;}
.ls15{letter-spacing:47.488000pt;}
.ls10{letter-spacing:58.880000pt;}
.ls9{letter-spacing:138.240000pt;}
.ws3{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.936000pt;}
.ws9{word-spacing:-15.872000pt;}
.ws4{word-spacing:-15.744000pt;}
.wsa{word-spacing:-15.360000pt;}
.ws2{word-spacing:-15.168000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws8{word-spacing:-11.680000pt;}
.ws6{word-spacing:-10.400000pt;}
.ws5{word-spacing:0.000000pt;}
._29{margin-left:-10.933333pt;}
._2c{margin-left:-6.773333pt;}
._31{margin-left:-5.269333pt;}
._2{margin-left:-2.208000pt;}
._1{margin-left:-1.088000pt;}
._0{width:1.088000pt;}
._22{width:2.197333pt;}
._25{width:3.904000pt;}
._27{width:4.874667pt;}
._24{width:5.824000pt;}
._1e{width:6.720000pt;}
._6{width:7.872000pt;}
._7{width:8.768000pt;}
._4{width:9.856000pt;}
._3{width:11.296000pt;}
._9{width:12.864000pt;}
._8{width:13.760000pt;}
._f{width:14.762667pt;}
._10{width:17.472000pt;}
._14{width:18.442667pt;}
._5{width:19.904000pt;}
._26{width:20.928000pt;}
._1f{width:21.888000pt;}
._15{width:22.848000pt;}
._b{width:24.512000pt;}
._1b{width:25.856000pt;}
._1c{width:26.816000pt;}
._e{width:28.064000pt;}
._1d{width:29.034667pt;}
._a{width:30.016000pt;}
._2d{width:31.296000pt;}
._28{width:32.704000pt;}
._1a{width:33.920000pt;}
._2a{width:35.360000pt;}
._d{width:36.256000pt;}
._c{width:37.184000pt;}
._21{width:38.720000pt;}
._23{width:40.266667pt;}
._2e{width:41.344000pt;}
._2f{width:42.336000pt;}
._2b{width:44.874667pt;}
._30{width:46.922667pt;}
._36{width:49.344000pt;}
._33{width:50.496000pt;}
._34{width:51.392000pt;}
._12{width:54.656000pt;}
._13{width:55.616000pt;}
._11{width:57.024000pt;}
._18{width:60.800000pt;}
._19{width:62.144000pt;}
._16{width:79.616000pt;}
._17{width:80.768000pt;}
._20{width:84.448000pt;}
._35{width:129.824000pt;}
._32{width:167.594667pt;}
.fs2{font-size:42.880000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:1.440000pt;}
.y4f{bottom:6.240000pt;}
.y57{bottom:6.400000pt;}
.y36{bottom:14.880000pt;}
.y34{bottom:14.906667pt;}
.y3e{bottom:15.360000pt;}
.y3c{bottom:15.400000pt;}
.y39{bottom:15.520000pt;}
.y40{bottom:16.320000pt;}
.y52{bottom:16.800000pt;}
.y59{bottom:16.826667pt;}
.y50{bottom:16.960000pt;}
.y53{bottom:27.360000pt;}
.y5a{bottom:27.386667pt;}
.y56{bottom:27.514667pt;}
.y4e{bottom:27.520000pt;}
.y5{bottom:51.040000pt;}
.y1{bottom:61.280000pt;}
.y4{bottom:68.960000pt;}
.y32{bottom:100.992000pt;}
.y4c{bottom:104.512000pt;}
.y55{bottom:113.152000pt;}
.y84{bottom:120.832000pt;}
.y31{bottom:122.112000pt;}
.y4b{bottom:125.792000pt;}
.y83{bottom:141.946667pt;}
.y30{bottom:143.226667pt;}
.y4a{bottom:146.906667pt;}
.y54{bottom:156.186667pt;}
.y82{bottom:163.066667pt;}
.y2f{bottom:164.506667pt;}
.y49{bottom:168.026667pt;}
.y81{bottom:184.346667pt;}
.y2e{bottom:185.626667pt;}
.y48{bottom:189.146667pt;}
.y51{bottom:199.226667pt;}
.y80{bottom:205.466667pt;}
.y2d{bottom:206.746667pt;}
.y47{bottom:210.426667pt;}
.y7f{bottom:226.586667pt;}
.y2c{bottom:227.866667pt;}
.y46{bottom:231.546667pt;}
.y4d{bottom:242.106667pt;}
.y7e{bottom:247.706667pt;}
.y2b{bottom:249.146667pt;}
.y45{bottom:252.666667pt;}
.y7d{bottom:268.986667pt;}
.y2a{bottom:270.266667pt;}
.y44{bottom:273.786667pt;}
.y7c{bottom:290.106667pt;}
.y29{bottom:291.386667pt;}
.y43{bottom:295.066667pt;}
.y7b{bottom:311.226667pt;}
.y28{bottom:312.506667pt;}
.y7a{bottom:332.386667pt;}
.y27{bottom:333.826667pt;}
.y79{bottom:353.666667pt;}
.y26{bottom:354.946667pt;}
.y78{bottom:374.786667pt;}
.y25{bottom:376.066667pt;}
.y77{bottom:395.906667pt;}
.y24{bottom:397.186667pt;}
.y76{bottom:417.026667pt;}
.y23{bottom:418.466667pt;}
.y75{bottom:438.146667pt;}
.y22{bottom:439.586667pt;}
.y74{bottom:459.426667pt;}
.y21{bottom:460.706667pt;}
.y73{bottom:480.546667pt;}
.y20{bottom:481.826667pt;}
.y72{bottom:501.666667pt;}
.y1f{bottom:503.106667pt;}
.y71{bottom:522.786667pt;}
.y1e{bottom:524.226667pt;}
.y70{bottom:544.066667pt;}
.y1d{bottom:545.346667pt;}
.y6f{bottom:565.213333pt;}
.y1c{bottom:566.493333pt;}
.y6e{bottom:586.333333pt;}
.y1b{bottom:587.613333pt;}
.y85{bottom:588.893333pt;}
.y6d{bottom:607.453333pt;}
.y1a{bottom:608.893333pt;}
.y6c{bottom:628.733333pt;}
.y19{bottom:630.013333pt;}
.y6b{bottom:649.853333pt;}
.y18{bottom:651.133333pt;}
.y6a{bottom:670.973333pt;}
.y17{bottom:672.253333pt;}
.y42{bottom:673.853333pt;}
.y69{bottom:692.093333pt;}
.y16{bottom:693.533333pt;}
.y41{bottom:694.973333pt;}
.y3f{bottom:710.493333pt;}
.y68{bottom:713.373333pt;}
.y15{bottom:714.653333pt;}
.y67{bottom:734.493333pt;}
.y14{bottom:735.773333pt;}
.y3d{bottom:742.333333pt;}
.y66{bottom:755.613333pt;}
.y13{bottom:756.893333pt;}
.y3b{bottom:773.373333pt;}
.y65{bottom:776.733333pt;}
.y12{bottom:778.173333pt;}
.y64{bottom:798.053333pt;}
.y11{bottom:799.333333pt;}
.y3a{bottom:804.293333pt;}
.y63{bottom:819.173333pt;}
.y10{bottom:820.453333pt;}
.y62{bottom:840.293333pt;}
.yf{bottom:841.573333pt;}
.y61{bottom:861.413333pt;}
.ye{bottom:862.853333pt;}
.y38{bottom:878.373333pt;}
.y60{bottom:882.533333pt;}
.yd{bottom:883.973333pt;}
.y5f{bottom:903.813333pt;}
.yc{bottom:905.093333pt;}
.y37{bottom:921.413333pt;}
.y5e{bottom:924.933333pt;}
.yb{bottom:926.213333pt;}
.y5d{bottom:946.053333pt;}
.ya{bottom:947.493333pt;}
.y35{bottom:963.173333pt;}
.y5c{bottom:967.173333pt;}
.y9{bottom:968.613333pt;}
.y5b{bottom:988.453333pt;}
.y8{bottom:989.733333pt;}
.y58{bottom:1003.973333pt;}
.y33{bottom:1005.093333pt;}
.y7{bottom:1010.853333pt;}
.y6{bottom:1032.160000pt;}
.y3{bottom:1060.480000pt;}
.h2{height:15.040000pt;}
.h13{height:30.240000pt;}
.h12{height:30.272000pt;}
.h11{height:30.400000pt;}
.h14{height:31.200000pt;}
.hf{height:41.120000pt;}
.hd{height:41.152000pt;}
.he{height:41.280000pt;}
.h10{height:42.240000pt;}
.h16{height:42.272000pt;}
.h15{height:42.400000pt;}
.ha{height:44.687500pt;}
.h6{height:45.156250pt;}
.h8{height:48.781250pt;}
.h18{height:57.787500pt;}
.h5{height:58.563750pt;}
.h3{height:59.340000pt;}
.h7{height:62.781250pt;}
.h9{height:62.812500pt;}
.h4{height:64.500000pt;}
.h17{height:65.781915pt;}
.hb{height:66.404375pt;}
.hc{height:66.511042pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:38.272000pt;}
.w6{width:197.626667pt;}
.w9{width:197.786667pt;}
.w5{width:209.786667pt;}
.w4{width:209.946667pt;}
.w8{width:210.106667pt;}
.w7{width:210.266667pt;}
.w3{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:8.160000pt;}
.x2f{left:13.920000pt;}
.x28{left:15.680000pt;}
.x2e{left:18.400000pt;}
.x2d{left:21.120000pt;}
.x2c{left:29.760000pt;}
.x14{left:31.040000pt;}
.x29{left:32.000000pt;}
.x1e{left:36.800000pt;}
.x2a{left:37.914667pt;}
.x16{left:42.120000pt;}
.x27{left:43.034667pt;}
.x12{left:45.594667pt;}
.x1a{left:50.074667pt;}
.x17{left:51.834667pt;}
.x1b{left:52.794667pt;}
.x22{left:55.994667pt;}
.x1c{left:59.080000pt;}
.x20{left:60.480000pt;}
.x21{left:64.680000pt;}
.x1d{left:65.754667pt;}
.x2b{left:72.800000pt;}
.x23{left:77.440000pt;}
.x1f{left:81.480000pt;}
.x19{left:90.760000pt;}
.x18{left:96.986667pt;}
.x26{left:105.114667pt;}
.x11{left:106.592000pt;}
.xf{left:113.471988pt;}
.x31{left:122.911988pt;}
.x6{left:136.346655pt;}
.x3{left:141.946655pt;}
.xa{left:144.826655pt;}
.x30{left:151.226655pt;}
.xe{left:160.666655pt;}
.x9{left:243.906655pt;}
.x25{left:250.466655pt;}
.xd{left:291.266655pt;}
.x13{left:317.186667pt;}
.x8{left:334.786655pt;}
.xb{left:349.026655pt;}
.x7{left:372.386655pt;}
.xc{left:383.586655pt;}
.x1{left:390.946667pt;}
.x10{left:396.706655pt;}
.x5{left:425.373322pt;}
.x15{left:527.613333pt;}
.x24{left:721.893322pt;}
.x4{left:737.279988pt;}
}




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