
    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_dd0972433e4c8a3d02aeab8a.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_c6eaafd7d236454bd8a8b375.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_6f131469699b99e490702c49.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_2c87d70034de48282d0a8740.woff2')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_d5e268cf3ba6159188ffb041.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_4ac45ffb1c73b1686485e80e.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_db5ba0c1212ca1c8fb0ee9bf.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.946777;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_14b91b66c1c97d55e82398df.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.946777;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_b520d9b6d1afc90540351ed9.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_6ca070eef69136e4ff3e8538.woff2')format("woff");}.ffa{font-family:ffa;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-1.440000px;}
.ls6{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.466800px;}
.ls4{letter-spacing:0.504000px;}
.ls3{letter-spacing:0.720000px;}
.ls7{letter-spacing:1.152000px;}
.ls12{letter-spacing:1.440000px;}
.ls14{letter-spacing:1.584000px;}
.ls9{letter-spacing:9.360000px;}
.ls5{letter-spacing:12.240000px;}
.lsf{letter-spacing:16.560000px;}
.ls13{letter-spacing:17.424000px;}
.ls8{letter-spacing:23.760000px;}
.lsb{letter-spacing:30.960000px;}
.ls11{letter-spacing:32.400000px;}
.lse{letter-spacing:32.580000px;}
.lsa{letter-spacing:46.800000px;}
.ls2{letter-spacing:49.680000px;}
.ls10{letter-spacing:53.424000px;}
.ls1{letter-spacing:75.749760px;}
.ls0{letter-spacing:111.869760px;}
.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;}
}
.ws6{word-spacing:-19.584000px;}
.ws5{word-spacing:-19.440000px;}
.ws0{word-spacing:-18.000000px;}
.ws3{word-spacing:-16.560000px;}
.ws4{word-spacing:-15.586800px;}
.ws2{word-spacing:-15.120000px;}
.ws1{word-spacing:0.000000px;}
._28{margin-left:-3.707040px;}
._2{margin-left:-2.639520px;}
._1{margin-left:-1.422720px;}
._0{width:1.189920px;}
._3{width:2.503200px;}
._e{width:3.582720px;}
._25{width:4.951680px;}
._6{width:5.958720px;}
._d{width:7.110720px;}
._c{width:8.124000px;}
._20{width:9.682080px;}
._18{width:10.810560px;}
._17{width:12.338400px;}
._16{width:13.543200px;}
._7{width:14.904000px;}
._8{width:16.090080px;}
._1e{width:19.826400px;}
._1f{width:21.207840px;}
._21{width:22.692960px;}
._1a{width:24.296160px;}
._19{width:25.751520px;}
._12{width:27.585600px;}
._11{width:28.828800px;}
._13{width:29.868960px;}
._14{width:30.974400px;}
._24{width:32.022720px;}
._22{width:33.468000px;}
._23{width:34.503840px;}
._1b{width:36.504960px;}
._1d{width:37.668960px;}
._1c{width:38.800320px;}
._4{width:40.020000px;}
._5{width:41.238720px;}
._9{width:43.289280px;}
._15{width:44.721120px;}
._10{width:45.826080px;}
._f{width:47.651520px;}
._a{width:49.464000px;}
._b{width:51.690240px;}
._26{width:72.719520px;}
._27{width:73.880640px;}
.fc4{color:rgb(192,0,0);}
.fc3{color:rgb(112,48,160);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc5{color:rgb(5,99,193);}
.fc0{color:rgb(47,84,150);}
.fs3{font-size:5.760000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:47.520000px;}
.fs0{font-size:54.720000px;}
.fs7{font-size:60.480000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.y4{bottom:10.800000px;}
.y5{bottom:11.520000px;}
.y6{bottom:55.476000px;}
.y3{bottom:57.276000px;}
.y6d{bottom:99.396000px;}
.y6c{bottom:104.796000px;}
.y6b{bottom:116.676000px;}
.y6a{bottom:122.076000px;}
.y69{bottom:133.992000px;}
.y31{bottom:135.072000px;}
.y68{bottom:139.392000px;}
.y67{bottom:151.275000px;}
.y66{bottom:156.675000px;}
.y30{bottom:158.835000px;}
.y65{bottom:168.195000px;}
.y64{bottom:173.595000px;}
.y2f{bottom:182.595000px;}
.y63{bottom:185.475000px;}
.y84{bottom:186.195000px;}
.y62{bottom:190.875000px;}
.y61{bottom:202.755000px;}
.y2e{bottom:206.355000px;}
.y60{bottom:208.155000px;}
.y7b{bottom:220.035000px;}
.y5f{bottom:220.755000px;}
.y83{bottom:222.555000px;}
.y7a{bottom:225.435000px;}
.y2d{bottom:230.475000px;}
.y79{bottom:237.315000px;}
.y82{bottom:246.315000px;}
.y2c{bottom:254.235000px;}
.y78{bottom:254.595000px;}
.y77{bottom:259.995000px;}
.y5e{bottom:270.105000px;}
.y76{bottom:272.625000px;}
.y2b{bottom:278.025000px;}
.y5d{bottom:293.865000px;}
.y2a{bottom:301.785000px;}
.y5c{bottom:317.625000px;}
.y29{bottom:325.545000px;}
.y5a{bottom:341.385000px;}
.y5b{bottom:348.225000px;}
.y28{bottom:349.305000px;}
.y59{bottom:365.145000px;}
.y27{bottom:373.065000px;}
.y58{bottom:388.905000px;}
.y75{bottom:395.790000px;}
.y26{bottom:396.870000px;}
.y57{bottom:412.710000px;}
.y74{bottom:419.550000px;}
.y25{bottom:420.990000px;}
.y81{bottom:436.470000px;}
.y56{bottom:436.830000px;}
.y24{bottom:444.750000px;}
.y80{bottom:460.230000px;}
.y54{bottom:460.590000px;}
.y55{bottom:467.430000px;}
.y23{bottom:468.510000px;}
.y53{bottom:484.350000px;}
.y22{bottom:492.270000px;}
.y52{bottom:508.110000px;}
.y21{bottom:516.030000px;}
.y51{bottom:531.900000px;}
.y20{bottom:539.820000px;}
.y4f{bottom:555.660000px;}
.y50{bottom:562.500000px;}
.y1f{bottom:563.580000px;}
.y73{bottom:579.060000px;}
.y4e{bottom:579.420000px;}
.y1e{bottom:586.980000px;}
.y4d{bottom:603.180000px;}
.y1d{bottom:611.100000px;}
.y4b{bottom:627.300000px;}
.y4c{bottom:634.140000px;}
.y1c{bottom:635.220000px;}
.y4a{bottom:651.060000px;}
.y1b{bottom:658.980000px;}
.y49{bottom:674.850000px;}
.y1a{bottom:682.770000px;}
.y47{bottom:698.610000px;}
.y48{bottom:705.450000px;}
.y19{bottom:706.530000px;}
.y46{bottom:722.370000px;}
.y18{bottom:730.290000px;}
.y45{bottom:746.130000px;}
.y17{bottom:754.050000px;}
.y44{bottom:769.890000px;}
.y72{bottom:776.730000px;}
.y16{bottom:777.810000px;}
.y43{bottom:793.650000px;}
.y71{bottom:800.535000px;}
.y15{bottom:801.615000px;}
.y42{bottom:817.455000px;}
.y14{bottom:825.735000px;}
.y41{bottom:841.575000px;}
.y13{bottom:849.495000px;}
.y3f{bottom:865.335000px;}
.y40{bottom:872.175000px;}
.y12{bottom:873.255000px;}
.y7f{bottom:888.735000px;}
.y3e{bottom:889.095000px;}
.y11{bottom:897.015000px;}
.y3d{bottom:912.855000px;}
.y10{bottom:920.775000px;}
.y3c{bottom:936.645000px;}
.yf{bottom:944.565000px;}
.y3b{bottom:960.405000px;}
.y7e{bottom:967.245000px;}
.ye{bottom:968.325000px;}
.y3a{bottom:984.165000px;}
.y7d{bottom:991.005000px;}
.yd{bottom:992.085000px;}
.y39{bottom:1007.925000px;}
.yc{bottom:1015.485000px;}
.y38{bottom:1031.685000px;}
.y70{bottom:1032.045000px;}
.y7c{bottom:1038.885000px;}
.yb{bottom:1039.965000px;}
.y37{bottom:1055.805000px;}
.y6f{bottom:1062.690000px;}
.ya{bottom:1063.410000px;}
.y35{bottom:1079.610000px;}
.y36{bottom:1086.450000px;}
.y9{bottom:1087.170000px;}
.y34{bottom:1103.370000px;}
.y8{bottom:1113.090000px;}
.y33{bottom:1127.130000px;}
.y7{bottom:1144.770000px;}
.y32{bottom:1150.890000px;}
.y6e{bottom:1157.730000px;}
.y2{bottom:1194.090000px;}
.y1{bottom:1212.120000px;}
.h6{height:4.021875px;}
.h3{height:27.000000px;}
.hc{height:27.147656px;}
.hb{height:33.180469px;}
.h2{height:38.608594px;}
.hd{height:42.229688px;}
.h4{height:50.273438px;}
.h8{height:50.800781px;}
.h9{height:51.996094px;}
.he{height:52.417969px;}
.ha{height:52.628906px;}
.h5{height:65.884219px;}
.h7{height:68.073047px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:105.516000px;}
.w5{width:305.430000px;}
.w3{width:305.745000px;}
.w1{width:892.500000px;}
.w6{width:892.799973px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x6{left:7.560000px;}
.x3{left:87.516000px;}
.x8{left:95.795987px;}
.x9{left:96.875987px;}
.x20{left:100.835987px;}
.x2d{left:105.875987px;}
.x2{left:120.275987px;}
.x1{left:124.235987px;}
.x36{left:127.835987px;}
.x10{left:138.275987px;}
.xa{left:145.511987px;}
.xf{left:149.111987px;}
.x2a{left:158.114987px;}
.x29{left:160.994987px;}
.x30{left:168.914973px;}
.x31{left:181.154987px;}
.x1d{left:193.754973px;}
.x1e{left:199.874987px;}
.x19{left:219.314973px;}
.x1a{left:225.434987px;}
.xe{left:296.024987px;}
.x4{left:297.834000px;}
.xc{left:306.824987px;}
.x1f{left:311.864987px;}
.xd{left:323.384987px;}
.x1b{left:370.229973px;}
.x1c{left:376.349987px;}
.x5{left:393.990000px;}
.x11{left:396.509973px;}
.x12{left:402.629987px;}
.x34{left:410.549973px;}
.x35{left:422.819987px;}
.xb{left:446.579987px;}
.x2b{left:463.859973px;}
.x2c{left:476.099987px;}
.x15{left:497.699973px;}
.x7{left:500.220000px;}
.x16{left:503.819987px;}
.x21{left:562.889973px;}
.x25{left:564.329973px;}
.x22{left:569.009987px;}
.x26{left:576.569987px;}
.x27{left:583.409973px;}
.x28{left:595.649987px;}
.x17{left:629.174973px;}
.x18{left:635.294987px;}
.x23{left:639.254973px;}
.x24{left:645.374987px;}
.x2e{left:652.934973px;}
.x2f{left:665.174987px;}
.x32{left:734.684973px;}
.x33{left:746.924987px;}
.x13{left:786.884973px;}
.x14{left:793.049987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-1.280000pt;}
.ls6{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.414933pt;}
.ls4{letter-spacing:0.448000pt;}
.ls3{letter-spacing:0.640000pt;}
.ls7{letter-spacing:1.024000pt;}
.ls12{letter-spacing:1.280000pt;}
.ls14{letter-spacing:1.408000pt;}
.ls9{letter-spacing:8.320000pt;}
.ls5{letter-spacing:10.880000pt;}
.lsf{letter-spacing:14.720000pt;}
.ls13{letter-spacing:15.488000pt;}
.ls8{letter-spacing:21.120000pt;}
.lsb{letter-spacing:27.520000pt;}
.ls11{letter-spacing:28.800000pt;}
.lse{letter-spacing:28.960000pt;}
.lsa{letter-spacing:41.600000pt;}
.ls2{letter-spacing:44.160000pt;}
.ls10{letter-spacing:47.488000pt;}
.ls1{letter-spacing:67.333120pt;}
.ls0{letter-spacing:99.439787pt;}
.ws6{word-spacing:-17.408000pt;}
.ws5{word-spacing:-17.280000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws3{word-spacing:-14.720000pt;}
.ws4{word-spacing:-13.854933pt;}
.ws2{word-spacing:-13.440000pt;}
.ws1{word-spacing:0.000000pt;}
._28{margin-left:-3.295147pt;}
._2{margin-left:-2.346240pt;}
._1{margin-left:-1.264640pt;}
._0{width:1.057707pt;}
._3{width:2.225067pt;}
._e{width:3.184640pt;}
._25{width:4.401493pt;}
._6{width:5.296640pt;}
._d{width:6.320640pt;}
._c{width:7.221333pt;}
._20{width:8.606293pt;}
._18{width:9.609387pt;}
._17{width:10.967467pt;}
._16{width:12.038400pt;}
._7{width:13.248000pt;}
._8{width:14.302293pt;}
._1e{width:17.623467pt;}
._1f{width:18.851413pt;}
._21{width:20.171520pt;}
._1a{width:21.596587pt;}
._19{width:22.890240pt;}
._12{width:24.520533pt;}
._11{width:25.625600pt;}
._13{width:26.550187pt;}
._14{width:27.532800pt;}
._24{width:28.464640pt;}
._22{width:29.749333pt;}
._23{width:30.670080pt;}
._1b{width:32.448853pt;}
._1d{width:33.483520pt;}
._1c{width:34.489173pt;}
._4{width:35.573333pt;}
._5{width:36.656640pt;}
._9{width:38.479360pt;}
._15{width:39.752107pt;}
._10{width:40.734293pt;}
._f{width:42.356907pt;}
._a{width:43.968000pt;}
._b{width:45.946880pt;}
._26{width:64.639573pt;}
._27{width:65.671680pt;}
.fs3{font-size:5.120000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:42.240000pt;}
.fs0{font-size:48.640000pt;}
.fs7{font-size:53.760000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:9.600000pt;}
.y5{bottom:10.240000pt;}
.y6{bottom:49.312000pt;}
.y3{bottom:50.912000pt;}
.y6d{bottom:88.352000pt;}
.y6c{bottom:93.152000pt;}
.y6b{bottom:103.712000pt;}
.y6a{bottom:108.512000pt;}
.y69{bottom:119.104000pt;}
.y31{bottom:120.064000pt;}
.y68{bottom:123.904000pt;}
.y67{bottom:134.466667pt;}
.y66{bottom:139.266667pt;}
.y30{bottom:141.186667pt;}
.y65{bottom:149.506667pt;}
.y64{bottom:154.306667pt;}
.y2f{bottom:162.306667pt;}
.y63{bottom:164.866667pt;}
.y84{bottom:165.506667pt;}
.y62{bottom:169.666667pt;}
.y61{bottom:180.226667pt;}
.y2e{bottom:183.426667pt;}
.y60{bottom:185.026667pt;}
.y7b{bottom:195.586667pt;}
.y5f{bottom:196.226667pt;}
.y83{bottom:197.826667pt;}
.y7a{bottom:200.386667pt;}
.y2d{bottom:204.866667pt;}
.y79{bottom:210.946667pt;}
.y82{bottom:218.946667pt;}
.y2c{bottom:225.986667pt;}
.y78{bottom:226.306667pt;}
.y77{bottom:231.106667pt;}
.y5e{bottom:240.093333pt;}
.y76{bottom:242.333333pt;}
.y2b{bottom:247.133333pt;}
.y5d{bottom:261.213333pt;}
.y2a{bottom:268.253333pt;}
.y5c{bottom:282.333333pt;}
.y29{bottom:289.373333pt;}
.y5a{bottom:303.453333pt;}
.y5b{bottom:309.533333pt;}
.y28{bottom:310.493333pt;}
.y59{bottom:324.573333pt;}
.y27{bottom:331.613333pt;}
.y58{bottom:345.693333pt;}
.y75{bottom:351.813333pt;}
.y26{bottom:352.773333pt;}
.y57{bottom:366.853333pt;}
.y74{bottom:372.933333pt;}
.y25{bottom:374.213333pt;}
.y81{bottom:387.973333pt;}
.y56{bottom:388.293333pt;}
.y24{bottom:395.333333pt;}
.y80{bottom:409.093333pt;}
.y54{bottom:409.413333pt;}
.y55{bottom:415.493333pt;}
.y23{bottom:416.453333pt;}
.y53{bottom:430.533333pt;}
.y22{bottom:437.573333pt;}
.y52{bottom:451.653333pt;}
.y21{bottom:458.693333pt;}
.y51{bottom:472.800000pt;}
.y20{bottom:479.840000pt;}
.y4f{bottom:493.920000pt;}
.y50{bottom:500.000000pt;}
.y1f{bottom:500.960000pt;}
.y73{bottom:514.720000pt;}
.y4e{bottom:515.040000pt;}
.y1e{bottom:521.760000pt;}
.y4d{bottom:536.160000pt;}
.y1d{bottom:543.200000pt;}
.y4b{bottom:557.600000pt;}
.y4c{bottom:563.680000pt;}
.y1c{bottom:564.640000pt;}
.y4a{bottom:578.720000pt;}
.y1b{bottom:585.760000pt;}
.y49{bottom:599.866667pt;}
.y1a{bottom:606.906667pt;}
.y47{bottom:620.986667pt;}
.y48{bottom:627.066667pt;}
.y19{bottom:628.026667pt;}
.y46{bottom:642.106667pt;}
.y18{bottom:649.146667pt;}
.y45{bottom:663.226667pt;}
.y17{bottom:670.266667pt;}
.y44{bottom:684.346667pt;}
.y72{bottom:690.426667pt;}
.y16{bottom:691.386667pt;}
.y43{bottom:705.466667pt;}
.y71{bottom:711.586667pt;}
.y15{bottom:712.546667pt;}
.y42{bottom:726.626667pt;}
.y14{bottom:733.986667pt;}
.y41{bottom:748.066667pt;}
.y13{bottom:755.106667pt;}
.y3f{bottom:769.186667pt;}
.y40{bottom:775.266667pt;}
.y12{bottom:776.226667pt;}
.y7f{bottom:789.986667pt;}
.y3e{bottom:790.306667pt;}
.y11{bottom:797.346667pt;}
.y3d{bottom:811.426667pt;}
.y10{bottom:818.466667pt;}
.y3c{bottom:832.573333pt;}
.yf{bottom:839.613333pt;}
.y3b{bottom:853.693333pt;}
.y7e{bottom:859.773333pt;}
.ye{bottom:860.733333pt;}
.y3a{bottom:874.813333pt;}
.y7d{bottom:880.893333pt;}
.yd{bottom:881.853333pt;}
.y39{bottom:895.933333pt;}
.yc{bottom:902.653333pt;}
.y38{bottom:917.053333pt;}
.y70{bottom:917.373333pt;}
.y7c{bottom:923.453333pt;}
.yb{bottom:924.413333pt;}
.y37{bottom:938.493333pt;}
.y6f{bottom:944.613333pt;}
.ya{bottom:945.253333pt;}
.y35{bottom:959.653333pt;}
.y36{bottom:965.733333pt;}
.y9{bottom:966.373333pt;}
.y34{bottom:980.773333pt;}
.y8{bottom:989.413333pt;}
.y33{bottom:1001.893333pt;}
.y7{bottom:1017.573333pt;}
.y32{bottom:1023.013333pt;}
.y6e{bottom:1029.093333pt;}
.y2{bottom:1061.413333pt;}
.y1{bottom:1077.440000pt;}
.h6{height:3.575000pt;}
.h3{height:24.000000pt;}
.hc{height:24.131250pt;}
.hb{height:29.493750pt;}
.h2{height:34.318750pt;}
.hd{height:37.537500pt;}
.h4{height:44.687500pt;}
.h8{height:45.156250pt;}
.h9{height:46.218750pt;}
.he{height:46.593750pt;}
.ha{height:46.781250pt;}
.h5{height:58.563750pt;}
.h7{height:60.509375pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:93.792000pt;}
.w5{width:271.493333pt;}
.w3{width:271.773333pt;}
.w1{width:793.333333pt;}
.w6{width:793.599976pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x6{left:6.720000pt;}
.x3{left:77.792000pt;}
.x8{left:85.151988pt;}
.x9{left:86.111988pt;}
.x20{left:89.631988pt;}
.x2d{left:94.111988pt;}
.x2{left:106.911988pt;}
.x1{left:110.431988pt;}
.x36{left:113.631988pt;}
.x10{left:122.911988pt;}
.xa{left:129.343988pt;}
.xf{left:132.543988pt;}
.x2a{left:140.546655pt;}
.x29{left:143.106655pt;}
.x30{left:150.146643pt;}
.x31{left:161.026655pt;}
.x1d{left:172.226643pt;}
.x1e{left:177.666655pt;}
.x19{left:194.946643pt;}
.x1a{left:200.386655pt;}
.xe{left:263.133322pt;}
.x4{left:264.741333pt;}
.xc{left:272.733322pt;}
.x1f{left:277.213322pt;}
.xd{left:287.453322pt;}
.x1b{left:329.093310pt;}
.x1c{left:334.533322pt;}
.x5{left:350.213333pt;}
.x11{left:352.453310pt;}
.x12{left:357.893322pt;}
.x34{left:364.933310pt;}
.x35{left:375.839988pt;}
.xb{left:396.959988pt;}
.x2b{left:412.319976pt;}
.x2c{left:423.199988pt;}
.x15{left:442.399976pt;}
.x7{left:444.640000pt;}
.x16{left:447.839988pt;}
.x21{left:500.346643pt;}
.x25{left:501.626643pt;}
.x22{left:505.786655pt;}
.x26{left:512.506655pt;}
.x27{left:518.586643pt;}
.x28{left:529.466655pt;}
.x17{left:559.266643pt;}
.x18{left:564.706655pt;}
.x23{left:568.226643pt;}
.x24{left:573.666655pt;}
.x2e{left:580.386643pt;}
.x2f{left:591.266655pt;}
.x32{left:653.053310pt;}
.x33{left:663.933322pt;}
.x13{left:699.453310pt;}
.x14{left:704.933322pt;}
}




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