
    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_bf778b042c06a9691ec432dc.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_406e4baa5f7a4b55c272178c.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_d706b5f0e50a653289cab5d9.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_0ff7af3f02dd637cf39ecd6e.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_130301694ab792f9947e2b7d.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_1459b26715432701390686a7.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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_b1f694dbe924e21dd7572326.woff')format("woff");}.ffb{font-family:ffb;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;}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.880000px;}
.ls8{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.216000px;}
.ls2{letter-spacing:-0.058320px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.ls7{letter-spacing:0.072000px;}
.ls9{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.720000px;}
.lsa{letter-spacing:69.984000px;}
.ls4{letter-spacing:87.960000px;}
.ls3{letter-spacing:197.976000px;}
.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;}
}
.ws4{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws0{word-spacing:-13.447440px;}
.ws2{word-spacing:0.000000px;}
._11{margin-left:-5.040000px;}
._4{margin-left:-3.456000px;}
._a{margin-left:-2.376000px;}
._0{margin-left:-1.243142px;}
._1{width:1.238842px;}
._7{width:2.370317px;}
._8{width:3.547142px;}
._9{width:4.863131px;}
._c{width:5.950596px;}
._12{width:7.117369px;}
._1e{width:8.126120px;}
._13{width:9.247142px;}
._5{width:10.512000px;}
._6{width:11.649158px;}
._b{width:12.816000px;}
._1d{width:14.369049px;}
._17{width:15.499142px;}
._14{width:16.560000px;}
._15{width:19.747142px;}
._16{width:20.769716px;}
._f{width:22.320000px;}
._10{width:23.400000px;}
._26{width:24.768000px;}
._22{width:25.848000px;}
._e{width:26.928000px;}
._d{width:27.936000px;}
._1c{width:29.232000px;}
._1a{width:31.464000px;}
._23{width:32.509459px;}
._1b{width:34.200000px;}
._19{width:36.000000px;}
._18{width:37.008000px;}
._29{width:38.361158px;}
._25{width:41.760000px;}
._28{width:48.288000px;}
._27{width:49.536000px;}
._21{width:71.976000px;}
._24{width:77.760000px;}
._1f{width:80.280000px;}
._20{width:81.732000px;}
._2{width:146.082865px;}
._3{width:197.976000px;}
.fc7{color:transparent;}
.fc4{color:rgb(0,0,255);}
.fc5{color:rgb(68,114,196);}
.fc2{color:rgb(91,155,213);}
.fc3{color:rgb(14,16,26);}
.fc1{color:rgb(0,176,240);}
.fc6{color:rgb(0,176,80);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:48.240000px;}
.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;}
.y3c{bottom:3.960000px;}
.y3a{bottom:3.990000px;}
.y5a{bottom:14.220000px;}
.y56{bottom:14.400000px;}
.y82{bottom:20.700000px;}
.y54{bottom:24.660000px;}
.y38{bottom:24.690000px;}
.y6f{bottom:41.400000px;}
.y39{bottom:41.430000px;}
.y6d{bottom:45.360000px;}
.y4{bottom:68.580000px;}
.y80{bottom:124.416000px;}
.y52{bottom:126.756000px;}
.y36{bottom:128.916000px;}
.y7f{bottom:145.116000px;}
.y51{bottom:147.456000px;}
.y35{bottom:149.616000px;}
.y7e{bottom:165.810000px;}
.y50{bottom:168.150000px;}
.y34{bottom:170.310000px;}
.y7d{bottom:186.510000px;}
.y4f{bottom:188.850000px;}
.y33{bottom:191.010000px;}
.y7c{bottom:207.210000px;}
.y4e{bottom:209.550000px;}
.y32{bottom:211.710000px;}
.y7b{bottom:227.910000px;}
.yaa{bottom:228.270000px;}
.y4d{bottom:230.250000px;}
.y31{bottom:232.410000px;}
.y7a{bottom:248.610000px;}
.ya9{bottom:248.970000px;}
.y4c{bottom:250.950000px;}
.y30{bottom:253.110000px;}
.y79{bottom:269.310000px;}
.y4b{bottom:271.650000px;}
.y2f{bottom:273.810000px;}
.y78{bottom:290.010000px;}
.ya8{bottom:290.550000px;}
.y4a{bottom:292.350000px;}
.y2e{bottom:294.510000px;}
.y77{bottom:310.710000px;}
.ya7{bottom:311.250000px;}
.y49{bottom:313.050000px;}
.y2d{bottom:315.210000px;}
.y76{bottom:331.410000px;}
.y48{bottom:333.750000px;}
.y2c{bottom:335.910000px;}
.y75{bottom:352.155000px;}
.ya6{bottom:353.055000px;}
.y47{bottom:354.495000px;}
.y2b{bottom:356.655000px;}
.y74{bottom:372.855000px;}
.ya5{bottom:373.755000px;}
.y46{bottom:375.195000px;}
.y2a{bottom:377.355000px;}
.y73{bottom:393.555000px;}
.ya4{bottom:394.455000px;}
.y45{bottom:395.895000px;}
.y29{bottom:398.055000px;}
.y72{bottom:414.255000px;}
.y44{bottom:416.595000px;}
.y28{bottom:418.755000px;}
.y71{bottom:434.955000px;}
.ya3{bottom:436.215000px;}
.y43{bottom:437.295000px;}
.y27{bottom:439.455000px;}
.y70{bottom:452.415000px;}
.ya2{bottom:456.915000px;}
.y42{bottom:457.995000px;}
.y26{bottom:460.155000px;}
.y41{bottom:475.455000px;}
.y8b{bottom:478.695000px;}
.y25{bottom:480.855000px;}
.y40{bottom:496.155000px;}
.ya1{bottom:498.495000px;}
.y8a{bottom:499.395000px;}
.y24{bottom:501.555000px;}
.y6e{bottom:514.515000px;}
.y3f{bottom:516.855000px;}
.ya0{bottom:519.195000px;}
.y89{bottom:520.095000px;}
.y23{bottom:522.255000px;}
.y3e{bottom:537.555000px;}
.y88{bottom:540.795000px;}
.y22{bottom:542.955000px;}
.y6c{bottom:556.635000px;}
.y3d{bottom:558.255000px;}
.y9f{bottom:560.955000px;}
.y87{bottom:561.495000px;}
.y21{bottom:563.655000px;}
.y3b{bottom:578.955000px;}
.y9e{bottom:581.655000px;}
.y86{bottom:582.195000px;}
.y20{bottom:584.355000px;}
.y37{bottom:600.375000px;}
.y85{bottom:602.895000px;}
.y1f{bottom:605.085000px;}
.y9d{bottom:623.445000px;}
.y6b{bottom:623.625000px;}
.y1e{bottom:625.785000px;}
.y9c{bottom:644.145000px;}
.y6a{bottom:644.325000px;}
.y1d{bottom:646.485000px;}
.y9b{bottom:664.845000px;}
.y69{bottom:665.025000px;}
.y1c{bottom:667.185000px;}
.y68{bottom:685.725000px;}
.y1b{bottom:687.885000px;}
.y67{bottom:706.245000px;}
.y9a{bottom:706.425000px;}
.y1a{bottom:708.585000px;}
.y66{bottom:726.945000px;}
.yb3{bottom:727.125000px;}
.y19{bottom:729.285000px;}
.y65{bottom:747.645000px;}
.yb2{bottom:747.825000px;}
.y99{bottom:748.185000px;}
.y18{bottom:749.985000px;}
.y64{bottom:768.345000px;}
.y98{bottom:768.885000px;}
.y17{bottom:770.685000px;}
.y63{bottom:789.045000px;}
.yb1{bottom:789.585000px;}
.y16{bottom:791.385000px;}
.y62{bottom:809.745000px;}
.yb0{bottom:810.285000px;}
.y97{bottom:810.645000px;}
.y15{bottom:812.085000px;}
.y61{bottom:830.445000px;}
.y96{bottom:831.345000px;}
.y14{bottom:832.785000px;}
.y60{bottom:851.145000px;}
.yaf{bottom:852.045000px;}
.y13{bottom:853.485000px;}
.y5f{bottom:871.890000px;}
.yae{bottom:872.790000px;}
.y95{bottom:872.970000px;}
.y12{bottom:874.230000px;}
.y5e{bottom:892.590000px;}
.y94{bottom:893.670000px;}
.y11{bottom:894.930000px;}
.y5d{bottom:913.290000px;}
.y93{bottom:914.370000px;}
.y10{bottom:915.630000px;}
.y5c{bottom:930.930000px;}
.y84{bottom:933.990000px;}
.yf{bottom:936.330000px;}
.y5b{bottom:951.630000px;}
.y83{bottom:954.690000px;}
.y92{bottom:956.130000px;}
.ye{bottom:957.030000px;}
.y59{bottom:972.330000px;}
.y91{bottom:976.830000px;}
.yd{bottom:977.730000px;}
.yad{bottom:997.710000px;}
.yc{bottom:998.430000px;}
.y58{bottom:1013.730000px;}
.y90{bottom:1018.410000px;}
.yb{bottom:1019.130000px;}
.y57{bottom:1034.430000px;}
.y81{bottom:1035.150000px;}
.y8f{bottom:1039.110000px;}
.yac{bottom:1039.470000px;}
.ya{bottom:1039.830000px;}
.y55{bottom:1054.950000px;}
.yab{bottom:1060.170000px;}
.y9{bottom:1060.530000px;}
.y8e{bottom:1080.870000px;}
.y8{bottom:1081.230000px;}
.y53{bottom:1097.250000px;}
.y8d{bottom:1101.570000px;}
.y7{bottom:1101.930000px;}
.y6{bottom:1122.630000px;}
.y8c{bottom:1143.180000px;}
.y5{bottom:1143.360000px;}
.y3{bottom:1162.800000px;}
.y2{bottom:1180.260000px;}
.y1{bottom:1217.520000px;}
.hd{height:20.520000px;}
.ha{height:20.700000px;}
.h2{height:40.790039px;}
.hc{height:41.400000px;}
.h9{height:41.436000px;}
.h4{height:45.386260px;}
.h7{height:50.273438px;}
.h6{height:50.800781px;}
.h8{height:52.417969px;}
.h5{height:56.900391px;}
.h11{height:57.796523px;}
.hf{height:57.916523px;}
.hb{height:59.343750px;}
.h10{height:62.100000px;}
.he{height:62.136000px;}
.h3{height:70.802565px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w10{width:54.540000px;}
.w18{width:58.320000px;}
.w17{width:73.260000px;}
.wc{width:80.136000px;}
.wd{width:80.280000px;}
.w11{width:80.316000px;}
.w12{width:84.240000px;}
.w19{width:86.616000px;}
.w15{width:86.760000px;}
.w14{width:86.796000px;}
.wf{width:88.380000px;}
.w1a{width:91.260000px;}
.we{width:96.696000px;}
.w5{width:108.180000px;}
.wb{width:112.500000px;}
.w16{width:113.616000px;}
.w13{width:126.216000px;}
.w9{width:133.200000px;}
.w7{width:173.550000px;}
.w3{width:182.010000px;}
.wa{width:183.810000px;}
.w8{width:186.510000px;}
.w6{width:192.090000px;}
.w4{width:194.790000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:38.160000px;}
.x20{left:85.140000px;}
.x1{left:108.035987px;}
.x3{left:115.235987px;}
.x11{left:138.095987px;}
.x2{left:142.775987px;}
.x2a{left:162.029987px;}
.x12{left:174.089987px;}
.x28{left:198.029987px;}
.x4{left:199.109987px;}
.x21{left:211.350000px;}
.x2c{left:216.029987px;}
.x1a{left:220.530000px;}
.x2b{left:228.089987px;}
.x29{left:234.029987px;}
.x8{left:263.729987px;}
.x17{left:281.595000px;}
.x14{left:290.055000px;}
.x22{left:298.155000px;}
.x7{left:299.954987px;}
.xa{left:337.934987px;}
.x10{left:343.514987px;}
.x6{left:346.034987px;}
.xf{left:351.254987px;}
.xc{left:354.494987px;}
.xd{left:369.074987px;}
.x1b{left:380.955000px;}
.x23{left:384.915000px;}
.xb{left:396.974987px;}
.x9{left:401.114987px;}
.xe{left:430.094987px;}
.x5{left:446.474987px;}
.x18{left:468.105000px;}
.x1c{left:477.645000px;}
.x15{left:484.845000px;}
.x24{left:498.525000px;}
.x1d{left:566.025000px;}
.x25{left:571.785000px;}
.x16{left:593.025000px;}
.x19{left:601.305000px;}
.x1e{left:620.565000px;}
.x26{left:630.105000px;}
.x1f{left:700.890000px;}
.x27{left:716.730000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.226667pt;}
.ls8{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.192000pt;}
.ls2{letter-spacing:-0.051840pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.ls7{letter-spacing:0.064000pt;}
.ls9{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.640000pt;}
.lsa{letter-spacing:62.208000pt;}
.ls4{letter-spacing:78.186667pt;}
.ls3{letter-spacing:175.978667pt;}
.ws4{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws0{word-spacing:-11.953280pt;}
.ws2{word-spacing:0.000000pt;}
._11{margin-left:-4.480000pt;}
._4{margin-left:-3.072000pt;}
._a{margin-left:-2.112000pt;}
._0{margin-left:-1.105015pt;}
._1{width:1.101192pt;}
._7{width:2.106948pt;}
._8{width:3.153015pt;}
._9{width:4.322783pt;}
._c{width:5.289419pt;}
._12{width:6.326550pt;}
._1e{width:7.223217pt;}
._13{width:8.219682pt;}
._5{width:9.344000pt;}
._6{width:10.354808pt;}
._b{width:11.392000pt;}
._1d{width:12.772488pt;}
._17{width:13.777015pt;}
._14{width:14.720000pt;}
._15{width:17.553015pt;}
._16{width:18.461969pt;}
._f{width:19.840000pt;}
._10{width:20.800000pt;}
._26{width:22.016000pt;}
._22{width:22.976000pt;}
._e{width:23.936000pt;}
._d{width:24.832000pt;}
._1c{width:25.984000pt;}
._1a{width:27.968000pt;}
._23{width:28.897297pt;}
._1b{width:30.400000pt;}
._19{width:32.000000pt;}
._18{width:32.896000pt;}
._29{width:34.098808pt;}
._25{width:37.120000pt;}
._28{width:42.922667pt;}
._27{width:44.032000pt;}
._21{width:63.978667pt;}
._24{width:69.120000pt;}
._1f{width:71.360000pt;}
._20{width:72.650667pt;}
._2{width:129.851436pt;}
._3{width:175.978667pt;}
.fs5{font-size:42.880000pt;}
.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;}
.y3c{bottom:3.520000pt;}
.y3a{bottom:3.546667pt;}
.y5a{bottom:12.640000pt;}
.y56{bottom:12.800000pt;}
.y82{bottom:18.400000pt;}
.y54{bottom:21.920000pt;}
.y38{bottom:21.946667pt;}
.y6f{bottom:36.800000pt;}
.y39{bottom:36.826667pt;}
.y6d{bottom:40.320000pt;}
.y4{bottom:60.960000pt;}
.y80{bottom:110.592000pt;}
.y52{bottom:112.672000pt;}
.y36{bottom:114.592000pt;}
.y7f{bottom:128.992000pt;}
.y51{bottom:131.072000pt;}
.y35{bottom:132.992000pt;}
.y7e{bottom:147.386667pt;}
.y50{bottom:149.466667pt;}
.y34{bottom:151.386667pt;}
.y7d{bottom:165.786667pt;}
.y4f{bottom:167.866667pt;}
.y33{bottom:169.786667pt;}
.y7c{bottom:184.186667pt;}
.y4e{bottom:186.266667pt;}
.y32{bottom:188.186667pt;}
.y7b{bottom:202.586667pt;}
.yaa{bottom:202.906667pt;}
.y4d{bottom:204.666667pt;}
.y31{bottom:206.586667pt;}
.y7a{bottom:220.986667pt;}
.ya9{bottom:221.306667pt;}
.y4c{bottom:223.066667pt;}
.y30{bottom:224.986667pt;}
.y79{bottom:239.386667pt;}
.y4b{bottom:241.466667pt;}
.y2f{bottom:243.386667pt;}
.y78{bottom:257.786667pt;}
.ya8{bottom:258.266667pt;}
.y4a{bottom:259.866667pt;}
.y2e{bottom:261.786667pt;}
.y77{bottom:276.186667pt;}
.ya7{bottom:276.666667pt;}
.y49{bottom:278.266667pt;}
.y2d{bottom:280.186667pt;}
.y76{bottom:294.586667pt;}
.y48{bottom:296.666667pt;}
.y2c{bottom:298.586667pt;}
.y75{bottom:313.026667pt;}
.ya6{bottom:313.826667pt;}
.y47{bottom:315.106667pt;}
.y2b{bottom:317.026667pt;}
.y74{bottom:331.426667pt;}
.ya5{bottom:332.226667pt;}
.y46{bottom:333.506667pt;}
.y2a{bottom:335.426667pt;}
.y73{bottom:349.826667pt;}
.ya4{bottom:350.626667pt;}
.y45{bottom:351.906667pt;}
.y29{bottom:353.826667pt;}
.y72{bottom:368.226667pt;}
.y44{bottom:370.306667pt;}
.y28{bottom:372.226667pt;}
.y71{bottom:386.626667pt;}
.ya3{bottom:387.746667pt;}
.y43{bottom:388.706667pt;}
.y27{bottom:390.626667pt;}
.y70{bottom:402.146667pt;}
.ya2{bottom:406.146667pt;}
.y42{bottom:407.106667pt;}
.y26{bottom:409.026667pt;}
.y41{bottom:422.626667pt;}
.y8b{bottom:425.506667pt;}
.y25{bottom:427.426667pt;}
.y40{bottom:441.026667pt;}
.ya1{bottom:443.106667pt;}
.y8a{bottom:443.906667pt;}
.y24{bottom:445.826667pt;}
.y6e{bottom:457.346667pt;}
.y3f{bottom:459.426667pt;}
.ya0{bottom:461.506667pt;}
.y89{bottom:462.306667pt;}
.y23{bottom:464.226667pt;}
.y3e{bottom:477.826667pt;}
.y88{bottom:480.706667pt;}
.y22{bottom:482.626667pt;}
.y6c{bottom:494.786667pt;}
.y3d{bottom:496.226667pt;}
.y9f{bottom:498.626667pt;}
.y87{bottom:499.106667pt;}
.y21{bottom:501.026667pt;}
.y3b{bottom:514.626667pt;}
.y9e{bottom:517.026667pt;}
.y86{bottom:517.506667pt;}
.y20{bottom:519.426667pt;}
.y37{bottom:533.666667pt;}
.y85{bottom:535.906667pt;}
.y1f{bottom:537.853333pt;}
.y9d{bottom:554.173333pt;}
.y6b{bottom:554.333333pt;}
.y1e{bottom:556.253333pt;}
.y9c{bottom:572.573333pt;}
.y6a{bottom:572.733333pt;}
.y1d{bottom:574.653333pt;}
.y9b{bottom:590.973333pt;}
.y69{bottom:591.133333pt;}
.y1c{bottom:593.053333pt;}
.y68{bottom:609.533333pt;}
.y1b{bottom:611.453333pt;}
.y67{bottom:627.773333pt;}
.y9a{bottom:627.933333pt;}
.y1a{bottom:629.853333pt;}
.y66{bottom:646.173333pt;}
.yb3{bottom:646.333333pt;}
.y19{bottom:648.253333pt;}
.y65{bottom:664.573333pt;}
.yb2{bottom:664.733333pt;}
.y99{bottom:665.053333pt;}
.y18{bottom:666.653333pt;}
.y64{bottom:682.973333pt;}
.y98{bottom:683.453333pt;}
.y17{bottom:685.053333pt;}
.y63{bottom:701.373333pt;}
.yb1{bottom:701.853333pt;}
.y16{bottom:703.453333pt;}
.y62{bottom:719.773333pt;}
.yb0{bottom:720.253333pt;}
.y97{bottom:720.573333pt;}
.y15{bottom:721.853333pt;}
.y61{bottom:738.173333pt;}
.y96{bottom:738.973333pt;}
.y14{bottom:740.253333pt;}
.y60{bottom:756.573333pt;}
.yaf{bottom:757.373333pt;}
.y13{bottom:758.653333pt;}
.y5f{bottom:775.013333pt;}
.yae{bottom:775.813333pt;}
.y95{bottom:775.973333pt;}
.y12{bottom:777.093333pt;}
.y5e{bottom:793.413333pt;}
.y94{bottom:794.373333pt;}
.y11{bottom:795.493333pt;}
.y5d{bottom:811.813333pt;}
.y93{bottom:812.773333pt;}
.y10{bottom:813.893333pt;}
.y5c{bottom:827.493333pt;}
.y84{bottom:830.213333pt;}
.yf{bottom:832.293333pt;}
.y5b{bottom:845.893333pt;}
.y83{bottom:848.613333pt;}
.y92{bottom:849.893333pt;}
.ye{bottom:850.693333pt;}
.y59{bottom:864.293333pt;}
.y91{bottom:868.293333pt;}
.yd{bottom:869.093333pt;}
.yad{bottom:886.853333pt;}
.yc{bottom:887.493333pt;}
.y58{bottom:901.093333pt;}
.y90{bottom:905.253333pt;}
.yb{bottom:905.893333pt;}
.y57{bottom:919.493333pt;}
.y81{bottom:920.133333pt;}
.y8f{bottom:923.653333pt;}
.yac{bottom:923.973333pt;}
.ya{bottom:924.293333pt;}
.y55{bottom:937.733333pt;}
.yab{bottom:942.373333pt;}
.y9{bottom:942.693333pt;}
.y8e{bottom:960.773333pt;}
.y8{bottom:961.093333pt;}
.y53{bottom:975.333333pt;}
.y8d{bottom:979.173333pt;}
.y7{bottom:979.493333pt;}
.y6{bottom:997.893333pt;}
.y8c{bottom:1016.160000pt;}
.y5{bottom:1016.320000pt;}
.y3{bottom:1033.600000pt;}
.y2{bottom:1049.120000pt;}
.y1{bottom:1082.240000pt;}
.hd{height:18.240000pt;}
.ha{height:18.400000pt;}
.h2{height:36.257812pt;}
.hc{height:36.800000pt;}
.h9{height:36.832000pt;}
.h4{height:40.343342pt;}
.h7{height:44.687500pt;}
.h6{height:45.156250pt;}
.h8{height:46.593750pt;}
.h5{height:50.578125pt;}
.h11{height:51.374688pt;}
.hf{height:51.481354pt;}
.hb{height:52.750000pt;}
.h10{height:55.200000pt;}
.he{height:55.232000pt;}
.h3{height:62.935614pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w10{width:48.480000pt;}
.w18{width:51.840000pt;}
.w17{width:65.120000pt;}
.wc{width:71.232000pt;}
.wd{width:71.360000pt;}
.w11{width:71.392000pt;}
.w12{width:74.880000pt;}
.w19{width:76.992000pt;}
.w15{width:77.120000pt;}
.w14{width:77.152000pt;}
.wf{width:78.560000pt;}
.w1a{width:81.120000pt;}
.we{width:85.952000pt;}
.w5{width:96.160000pt;}
.wb{width:100.000000pt;}
.w16{width:100.992000pt;}
.w13{width:112.192000pt;}
.w9{width:118.400000pt;}
.w7{width:154.266667pt;}
.w3{width:161.786667pt;}
.wa{width:163.386667pt;}
.w8{width:165.786667pt;}
.w6{width:170.746667pt;}
.w4{width:173.146667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:33.920000pt;}
.x20{left:75.680000pt;}
.x1{left:96.031988pt;}
.x3{left:102.431988pt;}
.x11{left:122.751988pt;}
.x2{left:126.911988pt;}
.x2a{left:144.026655pt;}
.x12{left:154.746655pt;}
.x28{left:176.026655pt;}
.x4{left:176.986655pt;}
.x21{left:187.866667pt;}
.x2c{left:192.026655pt;}
.x1a{left:196.026667pt;}
.x2b{left:202.746655pt;}
.x29{left:208.026655pt;}
.x8{left:234.426655pt;}
.x17{left:250.306667pt;}
.x14{left:257.826667pt;}
.x22{left:265.026667pt;}
.x7{left:266.626655pt;}
.xa{left:300.386655pt;}
.x10{left:305.346655pt;}
.x6{left:307.586655pt;}
.xf{left:312.226655pt;}
.xc{left:315.106655pt;}
.xd{left:328.066655pt;}
.x1b{left:338.626667pt;}
.x23{left:342.146667pt;}
.xb{left:352.866655pt;}
.x9{left:356.546655pt;}
.xe{left:382.306655pt;}
.x5{left:396.866655pt;}
.x18{left:416.093333pt;}
.x1c{left:424.573333pt;}
.x15{left:430.973333pt;}
.x24{left:443.133333pt;}
.x1d{left:503.133333pt;}
.x25{left:508.253333pt;}
.x16{left:527.133333pt;}
.x19{left:534.493333pt;}
.x1e{left:551.613333pt;}
.x26{left:560.093333pt;}
.x1f{left:623.013333pt;}
.x27{left:637.093333pt;}
}




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