
    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_54b1c6ae25501b59f3b5a375.woff')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_5bae4ab9c83aa6057e74abd5.woff')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_60678731fcfe82bf332d4f4b.woff')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_91872d1fe7b7e157406f7fa7.woff')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_cb831bfc45030f6d94299355.woff')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_30bd01a2ae54e1724844d4e9.woff')format("woff");}.ff6{font-family:ff6;line-height:1.080566;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_83395a2649801fdce8dabffc.woff')format("woff");}.ff7{font-family:ff7;line-height:0.916992;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_e037ce2e474f6e3bdaeb536f.woff')format("woff");}.ff8{font-family:ff8;line-height:0.937988;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_20a74dd75b064b9d1ada4ebf.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_75d6e64854714e312d13b7bd.woff')format("woff");}.ffa{font-family:ffa;line-height:0.853027;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_c48eac4bc56397fa1deff521.woff')format("woff");}.ffb{font-family:ffb;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);}
.v3{vertical-align:-5.760000px;}
.v1{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:2.880000px;}
.v4{vertical-align:5.760000px;}
.v5{vertical-align:18.000000px;}
.ls3{letter-spacing:-2.520000px;}
.ls4{letter-spacing:-0.792000px;}
.ls5{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.288000px;}
.lsb{letter-spacing:-0.144000px;}
.ls2{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.072000px;}
.ls6{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.360000px;}
.lsa{letter-spacing:1.440000px;}
.ls0{letter-spacing:2.880000px;}
.ls9{letter-spacing:25.920000px;}
.lse{letter-spacing:28.080000px;}
.ls10{letter-spacing:30.384000px;}
.lsd{letter-spacing:40.500000px;}
.lsf{letter-spacing:44.640000px;}
.ls7{letter-spacing:118.440000px;}
.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;}
}
.ws5{word-spacing:-48.240000px;}
.ws2{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.856000px;}
.ws7{word-spacing:-17.712000px;}
.ws3{word-spacing:-17.208000px;}
.ws0{word-spacing:-16.560000px;}
.ws1{word-spacing:-12.060000px;}
.ws4{word-spacing:0.000000px;}
._2d{margin-left:-8.064000px;}
._21{margin-left:-6.420000px;}
._2a{margin-left:-5.184000px;}
._3{margin-left:-4.104000px;}
._1{margin-left:-3.024000px;}
._2{margin-left:-1.872000px;}
._0{width:1.224000px;}
._4{width:3.000000px;}
._e{width:4.320000px;}
._f{width:6.096000px;}
._19{width:8.100000px;}
._18{width:9.144000px;}
._1e{width:10.368000px;}
._d{width:11.448000px;}
._12{width:12.612000px;}
._8{width:13.968000px;}
._7{width:15.264000px;}
._15{width:16.632000px;}
._16{width:19.080000px;}
._17{width:20.088000px;}
._20{width:21.744000px;}
._22{width:23.544000px;}
._b{width:24.696000px;}
._a{width:25.704000px;}
._2b{width:27.144000px;}
._1b{width:28.728000px;}
._13{width:30.312000px;}
._14{width:31.908000px;}
._1d{width:33.192000px;}
._25{width:35.268000px;}
._26{width:36.792000px;}
._1f{width:38.448000px;}
._c{width:40.176000px;}
._1a{width:41.664000px;}
._9{width:43.200000px;}
._2c{width:44.964000px;}
._24{width:47.952000px;}
._23{width:49.464000px;}
._28{width:52.416000px;}
._29{width:54.300000px;}
._6{width:59.868000px;}
._5{width:61.236000px;}
._11{width:77.028000px;}
._10{width:78.408000px;}
._1c{width:161.076000px;}
._27{width:323.500080px;}
.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;}
.y69{bottom:4.500000px;}
.y6f{bottom:14.580000px;}
.y61{bottom:14.760000px;}
.y71{bottom:14.940000px;}
.y68{bottom:25.200000px;}
.y6e{bottom:35.280000px;}
.y70{bottom:35.640000px;}
.y6c{bottom:45.540000px;}
.y67{bottom:45.900000px;}
.y5{bottom:57.636000px;}
.y64{bottom:66.240000px;}
.y66{bottom:66.600000px;}
.y1{bottom:68.976000px;}
.y4{bottom:77.796000px;}
.y63{bottom:86.940000px;}
.y65{bottom:87.300000px;}
.y32{bottom:106.956000px;}
.y88{bottom:108.216000px;}
.y87{bottom:132.156000px;}
.y31{bottom:140.256000px;}
.y86{bottom:156.090000px;}
.y5c{bottom:160.230000px;}
.y30{bottom:164.190000px;}
.y85{bottom:179.670000px;}
.y2f{bottom:188.130000px;}
.y5b{bottom:193.170000px;}
.y84{bottom:203.970000px;}
.y2e{bottom:212.070000px;}
.y5a{bottom:217.110000px;}
.y83{bottom:228.090000px;}
.y2d{bottom:236.010000px;}
.y59{bottom:241.050000px;}
.y82{bottom:252.030000px;}
.y2c{bottom:260.130000px;}
.y58{bottom:264.990000px;}
.y81{bottom:275.970000px;}
.y2b{bottom:284.115000px;}
.y57{bottom:289.155000px;}
.y80{bottom:299.955000px;}
.y2a{bottom:307.695000px;}
.y56{bottom:313.095000px;}
.y7f{bottom:323.895000px;}
.y29{bottom:331.995000px;}
.y55{bottom:336.675000px;}
.y7e{bottom:348.015000px;}
.y28{bottom:355.935000px;}
.y54{bottom:360.975000px;}
.y7d{bottom:371.955000px;}
.y27{bottom:380.055000px;}
.y53{bottom:384.915000px;}
.y7c{bottom:395.895000px;}
.y26{bottom:403.995000px;}
.y52{bottom:409.035000px;}
.y7b{bottom:419.835000px;}
.y25{bottom:427.935000px;}
.y51{bottom:432.975000px;}
.y7a{bottom:443.775000px;}
.y24{bottom:451.875000px;}
.y50{bottom:456.915000px;}
.y79{bottom:467.895000px;}
.y23{bottom:475.815000px;}
.y4f{bottom:480.855000px;}
.y78{bottom:491.835000px;}
.y22{bottom:499.935000px;}
.y4e{bottom:504.795000px;}
.y77{bottom:515.775000px;}
.y21{bottom:523.875000px;}
.y4d{bottom:528.555000px;}
.y76{bottom:539.715000px;}
.y20{bottom:547.815000px;}
.y4c{bottom:552.855000px;}
.y75{bottom:563.685000px;}
.y1f{bottom:571.785000px;}
.y4b{bottom:576.825000px;}
.y74{bottom:587.805000px;}
.y1e{bottom:595.365000px;}
.y4a{bottom:600.765000px;}
.y73{bottom:611.385000px;}
.y1d{bottom:619.485000px;}
.y49{bottom:624.705000px;}
.y72{bottom:635.325000px;}
.y1c{bottom:643.785000px;}
.y48{bottom:648.825000px;}
.y6d{bottom:652.785000px;}
.y1b{bottom:667.725000px;}
.y47{bottom:672.765000px;}
.y1a{bottom:691.665000px;}
.y46{bottom:696.705000px;}
.y19{bottom:715.605000px;}
.y45{bottom:720.645000px;}
.y97{bottom:731.265000px;}
.y18{bottom:739.725000px;}
.y44{bottom:744.585000px;}
.y96{bottom:753.765000px;}
.y17{bottom:763.665000px;}
.y43{bottom:768.345000px;}
.y95{bottom:777.705000px;}
.y16{bottom:787.605000px;}
.y42{bottom:792.645000px;}
.y6b{bottom:799.125000px;}
.y94{bottom:801.825000px;}
.y15{bottom:811.545000px;}
.y41{bottom:816.585000px;}
.y93{bottom:825.765000px;}
.y14{bottom:835.485000px;}
.y40{bottom:840.525000px;}
.y92{bottom:849.750000px;}
.y13{bottom:859.650000px;}
.y6a{bottom:862.170000px;}
.y3f{bottom:864.510000px;}
.y91{bottom:873.690000px;}
.y12{bottom:883.590000px;}
.y3e{bottom:888.630000px;}
.y90{bottom:897.630000px;}
.y11{bottom:907.530000px;}
.y3d{bottom:912.570000px;}
.y8f{bottom:921.750000px;}
.y10{bottom:931.470000px;}
.y3c{bottom:936.510000px;}
.y62{bottom:945.690000px;}
.yf{bottom:955.410000px;}
.y3b{bottom:960.450000px;}
.y8e{bottom:969.630000px;}
.ye{bottom:979.530000px;}
.y3a{bottom:984.390000px;}
.y8d{bottom:993.570000px;}
.yd{bottom:1003.470000px;}
.y39{bottom:1008.150000px;}
.y8c{bottom:1017.150000px;}
.yc{bottom:1027.410000px;}
.y38{bottom:1032.450000px;}
.y8b{bottom:1041.270000px;}
.y60{bottom:1049.910000px;}
.yb{bottom:1050.990000px;}
.y37{bottom:1056.390000px;}
.y8a{bottom:1065.570000px;}
.ya{bottom:1075.290000px;}
.y36{bottom:1080.330000px;}
.y5f{bottom:1089.150000px;}
.y89{bottom:1089.510000px;}
.y9{bottom:1099.050000px;}
.y35{bottom:1104.270000px;}
.y5e{bottom:1113.450000px;}
.y8{bottom:1120.290000px;}
.y34{bottom:1128.210000px;}
.y5d{bottom:1137.420000px;}
.y7{bottom:1140.660000px;}
.y6{bottom:1161.360000px;}
.y33{bottom:1161.540000px;}
.y3{bottom:1193.580000px;}
.h2{height:16.920000px;}
.hb{height:31.320000px;}
.ha{height:50.484375px;}
.h9{height:54.878906px;}
.hf{height:62.100000px;}
.he{height:62.136000px;}
.h6{height:62.261719px;}
.h11{height:65.010937px;}
.h5{height:65.884219px;}
.h3{height:66.757500px;}
.h8{height:70.628906px;}
.h7{height:70.664062px;}
.h4{height:72.562500px;}
.h10{height:74.004654px;}
.hd{height:82.800000px;}
.hc{height:103.500000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:43.020000px;}
.w8{width:120.960000px;}
.w7{width:138.096000px;}
.w6{width:138.636000px;}
.w5{width:142.560000px;}
.w4{width:174.090000px;}
.w3{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:7.920000px;}
.x2f{left:9.180000px;}
.x28{left:10.260000px;}
.x21{left:11.520000px;}
.x2{left:13.320000px;}
.x1b{left:15.120000px;}
.x23{left:17.100000px;}
.x16{left:18.900000px;}
.x1e{left:20.160000px;}
.x22{left:21.240000px;}
.x1f{left:26.280000px;}
.x2a{left:27.720000px;}
.x25{left:29.880000px;}
.x2c{left:34.020000px;}
.x14{left:35.274000px;}
.x20{left:36.360000px;}
.x24{left:38.154000px;}
.x27{left:39.780000px;}
.x29{left:42.480000px;}
.x26{left:46.260000px;}
.x1d{left:50.580000px;}
.x2d{left:52.380000px;}
.x2e{left:58.320000px;}
.x2b{left:60.300000px;}
.x1c{left:66.414000px;}
.x13{left:119.916000px;}
.xc{left:127.655987px;}
.x33{left:154.649987px;}
.x3{left:159.689987px;}
.x7{left:164.189987px;}
.x6{left:175.529987px;}
.xb{left:180.749987px;}
.x15{left:294.735000px;}
.x12{left:319.394987px;}
.x32{left:321.734987px;}
.x8{left:324.794987px;}
.xa{left:327.674987px;}
.x30{left:328.934987px;}
.x31{left:330.014987px;}
.xd{left:340.094987px;}
.x9{left:346.934987px;}
.x10{left:350.354987px;}
.x11{left:354.674987px;}
.xe{left:369.974987px;}
.xf{left:371.414987px;}
.x17{left:438.015000px;}
.x1{left:439.815000px;}
.x5{left:478.514987px;}
.x19{left:577.365000px;}
.x1a{left:716.190000px;}
.x4{left:829.409987px;}
@media print{
.v3{vertical-align:-5.120000pt;}
.v1{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:2.560000pt;}
.v4{vertical-align:5.120000pt;}
.v5{vertical-align:16.000000pt;}
.ls3{letter-spacing:-2.240000pt;}
.ls4{letter-spacing:-0.704000pt;}
.ls5{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.256000pt;}
.lsb{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.064000pt;}
.ls6{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.320000pt;}
.lsa{letter-spacing:1.280000pt;}
.ls0{letter-spacing:2.560000pt;}
.ls9{letter-spacing:23.040000pt;}
.lse{letter-spacing:24.960000pt;}
.ls10{letter-spacing:27.008000pt;}
.lsd{letter-spacing:36.000000pt;}
.lsf{letter-spacing:39.680000pt;}
.ls7{letter-spacing:105.280000pt;}
.ws5{word-spacing:-42.880000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.872000pt;}
.ws7{word-spacing:-15.744000pt;}
.ws3{word-spacing:-15.296000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-10.720000pt;}
.ws4{word-spacing:0.000000pt;}
._2d{margin-left:-7.168000pt;}
._21{margin-left:-5.706667pt;}
._2a{margin-left:-4.608000pt;}
._3{margin-left:-3.648000pt;}
._1{margin-left:-2.688000pt;}
._2{margin-left:-1.664000pt;}
._0{width:1.088000pt;}
._4{width:2.666667pt;}
._e{width:3.840000pt;}
._f{width:5.418667pt;}
._19{width:7.200000pt;}
._18{width:8.128000pt;}
._1e{width:9.216000pt;}
._d{width:10.176000pt;}
._12{width:11.210667pt;}
._8{width:12.416000pt;}
._7{width:13.568000pt;}
._15{width:14.784000pt;}
._16{width:16.960000pt;}
._17{width:17.856000pt;}
._20{width:19.328000pt;}
._22{width:20.928000pt;}
._b{width:21.952000pt;}
._a{width:22.848000pt;}
._2b{width:24.128000pt;}
._1b{width:25.536000pt;}
._13{width:26.944000pt;}
._14{width:28.362667pt;}
._1d{width:29.504000pt;}
._25{width:31.349333pt;}
._26{width:32.704000pt;}
._1f{width:34.176000pt;}
._c{width:35.712000pt;}
._1a{width:37.034667pt;}
._9{width:38.400000pt;}
._2c{width:39.968000pt;}
._24{width:42.624000pt;}
._23{width:43.968000pt;}
._28{width:46.592000pt;}
._29{width:48.266667pt;}
._6{width:53.216000pt;}
._5{width:54.432000pt;}
._11{width:68.469333pt;}
._10{width:69.696000pt;}
._1c{width:143.178667pt;}
._27{width:287.555627pt;}
.fs2{font-size:42.880000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:1.440000pt;}
.y69{bottom:4.000000pt;}
.y6f{bottom:12.960000pt;}
.y61{bottom:13.120000pt;}
.y71{bottom:13.280000pt;}
.y68{bottom:22.400000pt;}
.y6e{bottom:31.360000pt;}
.y70{bottom:31.680000pt;}
.y6c{bottom:40.480000pt;}
.y67{bottom:40.800000pt;}
.y5{bottom:51.232000pt;}
.y64{bottom:58.880000pt;}
.y66{bottom:59.200000pt;}
.y1{bottom:61.312000pt;}
.y4{bottom:69.152000pt;}
.y63{bottom:77.280000pt;}
.y65{bottom:77.600000pt;}
.y32{bottom:95.072000pt;}
.y88{bottom:96.192000pt;}
.y87{bottom:117.472000pt;}
.y31{bottom:124.672000pt;}
.y86{bottom:138.746667pt;}
.y5c{bottom:142.426667pt;}
.y30{bottom:145.946667pt;}
.y85{bottom:159.706667pt;}
.y2f{bottom:167.226667pt;}
.y5b{bottom:171.706667pt;}
.y84{bottom:181.306667pt;}
.y2e{bottom:188.506667pt;}
.y5a{bottom:192.986667pt;}
.y83{bottom:202.746667pt;}
.y2d{bottom:209.786667pt;}
.y59{bottom:214.266667pt;}
.y82{bottom:224.026667pt;}
.y2c{bottom:231.226667pt;}
.y58{bottom:235.546667pt;}
.y81{bottom:245.306667pt;}
.y2b{bottom:252.546667pt;}
.y57{bottom:257.026667pt;}
.y80{bottom:266.626667pt;}
.y2a{bottom:273.506667pt;}
.y56{bottom:278.306667pt;}
.y7f{bottom:287.906667pt;}
.y29{bottom:295.106667pt;}
.y55{bottom:299.266667pt;}
.y7e{bottom:309.346667pt;}
.y28{bottom:316.386667pt;}
.y54{bottom:320.866667pt;}
.y7d{bottom:330.626667pt;}
.y27{bottom:337.826667pt;}
.y53{bottom:342.146667pt;}
.y7c{bottom:351.906667pt;}
.y26{bottom:359.106667pt;}
.y52{bottom:363.586667pt;}
.y7b{bottom:373.186667pt;}
.y25{bottom:380.386667pt;}
.y51{bottom:384.866667pt;}
.y7a{bottom:394.466667pt;}
.y24{bottom:401.666667pt;}
.y50{bottom:406.146667pt;}
.y79{bottom:415.906667pt;}
.y23{bottom:422.946667pt;}
.y4f{bottom:427.426667pt;}
.y78{bottom:437.186667pt;}
.y22{bottom:444.386667pt;}
.y4e{bottom:448.706667pt;}
.y77{bottom:458.466667pt;}
.y21{bottom:465.666667pt;}
.y4d{bottom:469.826667pt;}
.y76{bottom:479.746667pt;}
.y20{bottom:486.946667pt;}
.y4c{bottom:491.426667pt;}
.y75{bottom:501.053333pt;}
.y1f{bottom:508.253333pt;}
.y4b{bottom:512.733333pt;}
.y74{bottom:522.493333pt;}
.y1e{bottom:529.213333pt;}
.y4a{bottom:534.013333pt;}
.y73{bottom:543.453333pt;}
.y1d{bottom:550.653333pt;}
.y49{bottom:555.293333pt;}
.y72{bottom:564.733333pt;}
.y1c{bottom:572.253333pt;}
.y48{bottom:576.733333pt;}
.y6d{bottom:580.253333pt;}
.y1b{bottom:593.533333pt;}
.y47{bottom:598.013333pt;}
.y1a{bottom:614.813333pt;}
.y46{bottom:619.293333pt;}
.y19{bottom:636.093333pt;}
.y45{bottom:640.573333pt;}
.y97{bottom:650.013333pt;}
.y18{bottom:657.533333pt;}
.y44{bottom:661.853333pt;}
.y96{bottom:670.013333pt;}
.y17{bottom:678.813333pt;}
.y43{bottom:682.973333pt;}
.y95{bottom:691.293333pt;}
.y16{bottom:700.093333pt;}
.y42{bottom:704.573333pt;}
.y6b{bottom:710.333333pt;}
.y94{bottom:712.733333pt;}
.y15{bottom:721.373333pt;}
.y41{bottom:725.853333pt;}
.y93{bottom:734.013333pt;}
.y14{bottom:742.653333pt;}
.y40{bottom:747.133333pt;}
.y92{bottom:755.333333pt;}
.y13{bottom:764.133333pt;}
.y6a{bottom:766.373333pt;}
.y3f{bottom:768.453333pt;}
.y91{bottom:776.613333pt;}
.y12{bottom:785.413333pt;}
.y3e{bottom:789.893333pt;}
.y90{bottom:797.893333pt;}
.y11{bottom:806.693333pt;}
.y3d{bottom:811.173333pt;}
.y8f{bottom:819.333333pt;}
.y10{bottom:827.973333pt;}
.y3c{bottom:832.453333pt;}
.y62{bottom:840.613333pt;}
.yf{bottom:849.253333pt;}
.y3b{bottom:853.733333pt;}
.y8e{bottom:861.893333pt;}
.ye{bottom:870.693333pt;}
.y3a{bottom:875.013333pt;}
.y8d{bottom:883.173333pt;}
.yd{bottom:891.973333pt;}
.y39{bottom:896.133333pt;}
.y8c{bottom:904.133333pt;}
.yc{bottom:913.253333pt;}
.y38{bottom:917.733333pt;}
.y8b{bottom:925.573333pt;}
.y60{bottom:933.253333pt;}
.yb{bottom:934.213333pt;}
.y37{bottom:939.013333pt;}
.y8a{bottom:947.173333pt;}
.ya{bottom:955.813333pt;}
.y36{bottom:960.293333pt;}
.y5f{bottom:968.133333pt;}
.y89{bottom:968.453333pt;}
.y9{bottom:976.933333pt;}
.y35{bottom:981.573333pt;}
.y5e{bottom:989.733333pt;}
.y8{bottom:995.813333pt;}
.y34{bottom:1002.853333pt;}
.y5d{bottom:1011.040000pt;}
.y7{bottom:1013.920000pt;}
.y6{bottom:1032.320000pt;}
.y33{bottom:1032.480000pt;}
.y3{bottom:1060.960000pt;}
.h2{height:15.040000pt;}
.hb{height:27.840000pt;}
.ha{height:44.875000pt;}
.h9{height:48.781250pt;}
.hf{height:55.200000pt;}
.he{height:55.232000pt;}
.h6{height:55.343750pt;}
.h11{height:57.787500pt;}
.h5{height:58.563750pt;}
.h3{height:59.340000pt;}
.h8{height:62.781250pt;}
.h7{height:62.812500pt;}
.h4{height:64.500000pt;}
.h10{height:65.781915pt;}
.hd{height:73.600000pt;}
.hc{height:92.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:38.240000pt;}
.w8{width:107.520000pt;}
.w7{width:122.752000pt;}
.w6{width:123.232000pt;}
.w5{width:126.720000pt;}
.w4{width:154.746667pt;}
.w3{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:7.040000pt;}
.x2f{left:8.160000pt;}
.x28{left:9.120000pt;}
.x21{left:10.240000pt;}
.x2{left:11.840000pt;}
.x1b{left:13.440000pt;}
.x23{left:15.200000pt;}
.x16{left:16.800000pt;}
.x1e{left:17.920000pt;}
.x22{left:18.880000pt;}
.x1f{left:23.360000pt;}
.x2a{left:24.640000pt;}
.x25{left:26.560000pt;}
.x2c{left:30.240000pt;}
.x14{left:31.354667pt;}
.x20{left:32.320000pt;}
.x24{left:33.914667pt;}
.x27{left:35.360000pt;}
.x29{left:37.760000pt;}
.x26{left:41.120000pt;}
.x1d{left:44.960000pt;}
.x2d{left:46.560000pt;}
.x2e{left:51.840000pt;}
.x2b{left:53.600000pt;}
.x1c{left:59.034667pt;}
.x13{left:106.592000pt;}
.xc{left:113.471988pt;}
.x33{left:137.466655pt;}
.x3{left:141.946655pt;}
.x7{left:145.946655pt;}
.x6{left:156.026655pt;}
.xb{left:160.666655pt;}
.x15{left:261.986667pt;}
.x12{left:283.906655pt;}
.x32{left:285.986655pt;}
.x8{left:288.706655pt;}
.xa{left:291.266655pt;}
.x30{left:292.386655pt;}
.x31{left:293.346655pt;}
.xd{left:302.306655pt;}
.x9{left:308.386655pt;}
.x10{left:311.426655pt;}
.x11{left:315.266655pt;}
.xe{left:328.866655pt;}
.xf{left:330.146655pt;}
.x17{left:389.346667pt;}
.x1{left:390.946667pt;}
.x5{left:425.346655pt;}
.x19{left:513.213333pt;}
.x1a{left:636.613333pt;}
.x4{left:737.253322pt;}
}




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