
    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_945d4d39b762b143e1bc21aa.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.854004;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_1a4d2271b696b7ef3c83f705.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.119629;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_be914ebf1ce2073474d07dd1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.106934;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_a20c3e0662769f0f297c6627.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.106934;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_651a5599d09da4ae5e6acff7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.119629;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_58a09be7a3390443db400c91.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.101562;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_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.758789;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_c3b92b2f505d3909a53a25a0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.682617;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_b317afdc02d3b11072c45472.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.114258;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;}
.ls11{letter-spacing:-0.600000px;}
.ls1b{letter-spacing:-0.384000px;}
.ls16{letter-spacing:-0.222000px;}
.ls6{letter-spacing:-0.216000px;}
.ls1a{letter-spacing:-0.192000px;}
.ls19{letter-spacing:-0.048000px;}
.ls4{letter-spacing:-0.024000px;}
.ls5{letter-spacing:-0.018000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.006000px;}
.ls9{letter-spacing:0.024000px;}
.ls2{letter-spacing:0.048000px;}
.lsb{letter-spacing:0.120000px;}
.ls3{letter-spacing:0.168000px;}
.ls14{letter-spacing:0.216000px;}
.ls15{letter-spacing:0.222000px;}
.ls1c{letter-spacing:0.324000px;}
.ls8{letter-spacing:0.384000px;}
.ls17{letter-spacing:8.184000px;}
.ls18{letter-spacing:16.644000px;}
.lsf{letter-spacing:17.784000px;}
.lse{letter-spacing:18.384000px;}
.lsd{letter-spacing:27.954000px;}
.ls7{letter-spacing:27.984000px;}
.ls10{letter-spacing:33.984000px;}
.ls12{letter-spacing:54.954000px;}
.ls13{letter-spacing:55.320000px;}
.lsc{letter-spacing:63.690000px;}
.lsa{letter-spacing:159.354000px;}
.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:-60.000000px;}
.ws9{word-spacing:-20.232000px;}
.ws3{word-spacing:-20.184000px;}
.ws2{word-spacing:-20.016000px;}
.ws5{word-spacing:-19.992000px;}
.wsa{word-spacing:-19.824000px;}
.ws8{word-spacing:-19.800000px;}
.wsb{word-spacing:-19.632000px;}
.ws7{word-spacing:-18.348000px;}
.ws4{word-spacing:-16.680000px;}
.ws1{word-spacing:-15.012000px;}
.ws0{word-spacing:0.000000px;}
._29{margin-left:-8.568000px;}
._1c{margin-left:-7.362000px;}
._4{margin-left:-5.400000px;}
._2{margin-left:-4.212000px;}
._1{margin-left:-3.024000px;}
._3{margin-left:-1.998000px;}
._5{width:1.062000px;}
._d{width:2.232000px;}
._1d{width:3.528000px;}
._22{width:4.740000px;}
._10{width:5.760000px;}
._9{width:7.488000px;}
._8{width:8.712000px;}
._14{width:10.368000px;}
._13{width:11.736000px;}
._1e{width:12.816000px;}
._20{width:13.956000px;}
._c{width:15.078000px;}
._b{width:16.272000px;}
._6{width:17.640000px;}
._25{width:19.008000px;}
._19{width:20.472000px;}
._17{width:22.032000px;}
._18{width:23.286000px;}
._12{width:25.128000px;}
._28{width:26.208000px;}
._e{width:27.576000px;}
._f{width:29.436000px;}
._27{width:30.534000px;}
._23{width:31.536000px;}
._a{width:33.504000px;}
._7{width:35.424000px;}
._26{width:36.936000px;}
._1b{width:38.616000px;}
._1a{width:39.720000px;}
._24{width:40.980000px;}
._21{width:42.162000px;}
._1f{width:43.848000px;}
._16{width:45.000000px;}
._15{width:46.152000px;}
._2d{width:51.264000px;}
._2c{width:52.488000px;}
._2b{width:53.856000px;}
._2a{width:54.864000px;}
._11{width:56.274000px;}
._0{width:844.014000px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:39.000000px;}
.fs2{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y45{bottom:3.450000px;}
.y43{bottom:3.465000px;}
.y48{bottom:3.600000px;}
.y7{bottom:55.837500px;}
.y6{bottom:71.437500px;}
.y5{bottom:86.887500px;}
.y34{bottom:120.037500px;}
.y41{bottom:121.687500px;}
.y67{bottom:126.937500px;}
.y46{bottom:133.687500px;}
.y33{bottom:137.287500px;}
.y80{bottom:144.637500px;}
.y40{bottom:152.745000px;}
.y32{bottom:154.545000px;}
.y44{bottom:156.045000px;}
.y66{bottom:157.995000px;}
.y31{bottom:171.795000px;}
.y30{bottom:177.045000px;}
.y7f{bottom:177.345000px;}
.y42{bottom:178.380000px;}
.y3f{bottom:183.795000px;}
.y65{bottom:189.045000px;}
.y2f{bottom:190.995000px;}
.y7e{bottom:198.045000px;}
.y3e{bottom:214.845000px;}
.y7d{bottom:218.745000px;}
.y64{bottom:220.080000px;}
.y2e{bottom:225.195000px;}
.y2d{bottom:245.880000px;}
.y63{bottom:251.145000px;}
.y7c{bottom:257.445000px;}
.y2c{bottom:266.580000px;}
.y3d{bottom:276.795000px;}
.y62{bottom:282.195000px;}
.y2b{bottom:287.130000px;}
.y7b{bottom:296.145000px;}
.y2a{bottom:307.830000px;}
.y61{bottom:313.245000px;}
.y7a{bottom:316.845000px;}
.y29{bottom:328.545000px;}
.y3c{bottom:338.895000px;}
.y60{bottom:344.295000px;}
.y28{bottom:349.245000px;}
.y79{bottom:355.545000px;}
.y27{bottom:369.945000px;}
.y5f{bottom:375.330000px;}
.y78{bottom:376.245000px;}
.y26{bottom:390.675000px;}
.y3b{bottom:401.025000px;}
.y5e{bottom:406.425000px;}
.y25{bottom:411.375000px;}
.y77{bottom:414.975000px;}
.y24{bottom:432.075000px;}
.y76{bottom:435.675000px;}
.y5d{bottom:437.475000px;}
.y23{bottom:452.775000px;}
.y3a{bottom:463.125000px;}
.y5c{bottom:468.525000px;}
.y22{bottom:473.475000px;}
.y75{bottom:474.375000px;}
.y21{bottom:494.175000px;}
.y5b{bottom:499.575000px;}
.y74{bottom:513.075000px;}
.y20{bottom:514.875000px;}
.y39{bottom:525.225000px;}
.y5a{bottom:530.625000px;}
.y1f{bottom:535.575000px;}
.y73{bottom:551.775000px;}
.y1e{bottom:556.275000px;}
.y59{bottom:561.675000px;}
.y72{bottom:572.475000px;}
.y1d{bottom:576.975000px;}
.y38{bottom:587.325000px;}
.y58{bottom:592.725000px;}
.y1c{bottom:597.675000px;}
.y71{bottom:611.175000px;}
.y1b{bottom:618.375000px;}
.y57{bottom:623.775000px;}
.y70{bottom:631.875000px;}
.y1a{bottom:639.075000px;}
.y37{bottom:649.425000px;}
.y56{bottom:654.825000px;}
.y19{bottom:659.775000px;}
.y6f{bottom:670.575000px;}
.y18{bottom:680.475000px;}
.y55{bottom:685.875000px;}
.y6e{bottom:691.275000px;}
.y17{bottom:701.175000px;}
.y36{bottom:711.525000px;}
.y54{bottom:716.925000px;}
.y16{bottom:721.875000px;}
.y6d{bottom:729.975000px;}
.y15{bottom:742.620000px;}
.y53{bottom:748.020000px;}
.y6c{bottom:750.720000px;}
.y14{bottom:763.320000px;}
.y35{bottom:773.670000px;}
.y52{bottom:779.070000px;}
.y13{bottom:784.020000px;}
.y6b{bottom:789.420000px;}
.y12{bottom:804.720000px;}
.y51{bottom:810.120000px;}
.y11{bottom:835.770000px;}
.y50{bottom:841.170000px;}
.y6a{bottom:848.820000px;}
.yf{bottom:866.820000px;}
.y69{bottom:869.520000px;}
.y4f{bottom:872.220000px;}
.y10{bottom:872.820000px;}
.ye{bottom:897.870000px;}
.y4e{bottom:903.270000px;}
.y68{bottom:908.220000px;}
.yd{bottom:928.920000px;}
.y4d{bottom:934.320000px;}
.yc{bottom:959.970000px;}
.y4c{bottom:965.370000px;}
.yb{bottom:991.020000px;}
.y4b{bottom:996.420000px;}
.ya{bottom:1022.070000px;}
.y4a{bottom:1027.470000px;}
.y9{bottom:1053.120000px;}
.y49{bottom:1058.520000px;}
.y3{bottom:1067.370000px;}
.y47{bottom:1078.770000px;}
.y8{bottom:1084.170000px;}
.y2{bottom:1104.900000px;}
.y4{bottom:1106.400000px;}
.y1{bottom:1126.950000px;}
.h9{height:18.900000px;}
.hb{height:19.087500px;}
.h7{height:34.962891px;}
.h6{height:43.031250px;}
.h5{height:48.410156px;}
.h8{height:53.789062px;}
.ha{height:59.167969px;}
.h2{height:60.855469px;}
.h4{height:64.546875px;}
.h3{height:65.144531px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w6{width:68.137500px;}
.w5{width:85.650000px;}
.w4{width:86.850000px;}
.w8{width:423.030000px;}
.w7{width:424.695000px;}
.w3{width:892.949973px;}
.w2{width:892.949987px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x16{left:14.400000px;}
.x13{left:17.250000px;}
.x1c{left:30.000000px;}
.x1a{left:31.350000px;}
.x19{left:38.857500px;}
.x1e{left:51.300000px;}
.x1{left:127.687487px;}
.x12{left:130.987500px;}
.xf{left:133.087487px;}
.x3{left:135.787487px;}
.x8{left:144.637487px;}
.x1d{left:147.450000px;}
.x1b{left:151.800000px;}
.x10{left:154.679987px;}
.x6{left:160.244987px;}
.x11{left:180.779987px;}
.x9{left:181.979987px;}
.x5{left:185.729987px;}
.x18{left:211.500000px;}
.x14{left:221.145000px;}
.x15{left:310.095000px;}
.x7{left:316.244987px;}
.xa{left:322.394987px;}
.xe{left:343.694987px;}
.x17{left:381.525000px;}
.xb{left:467.924987px;}
.xc{left:622.274987px;}
.x4{left:724.919987px;}
.xd{left:801.404973px;}
.x2{left:808.154987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls11{letter-spacing:-0.533333pt;}
.ls1b{letter-spacing:-0.341333pt;}
.ls16{letter-spacing:-0.197333pt;}
.ls6{letter-spacing:-0.192000pt;}
.ls1a{letter-spacing:-0.170667pt;}
.ls19{letter-spacing:-0.042667pt;}
.ls4{letter-spacing:-0.021333pt;}
.ls5{letter-spacing:-0.016000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.005333pt;}
.ls9{letter-spacing:0.021333pt;}
.ls2{letter-spacing:0.042667pt;}
.lsb{letter-spacing:0.106667pt;}
.ls3{letter-spacing:0.149333pt;}
.ls14{letter-spacing:0.192000pt;}
.ls15{letter-spacing:0.197333pt;}
.ls1c{letter-spacing:0.288000pt;}
.ls8{letter-spacing:0.341333pt;}
.ls17{letter-spacing:7.274667pt;}
.ls18{letter-spacing:14.794667pt;}
.lsf{letter-spacing:15.808000pt;}
.lse{letter-spacing:16.341333pt;}
.lsd{letter-spacing:24.848000pt;}
.ls7{letter-spacing:24.874667pt;}
.ls10{letter-spacing:30.208000pt;}
.ls12{letter-spacing:48.848000pt;}
.ls13{letter-spacing:49.173333pt;}
.lsc{letter-spacing:56.613333pt;}
.lsa{letter-spacing:141.648000pt;}
.ws6{word-spacing:-53.333333pt;}
.ws9{word-spacing:-17.984000pt;}
.ws3{word-spacing:-17.941333pt;}
.ws2{word-spacing:-17.792000pt;}
.ws5{word-spacing:-17.770667pt;}
.wsa{word-spacing:-17.621333pt;}
.ws8{word-spacing:-17.600000pt;}
.wsb{word-spacing:-17.450667pt;}
.ws7{word-spacing:-16.309333pt;}
.ws4{word-spacing:-14.826667pt;}
.ws1{word-spacing:-13.344000pt;}
.ws0{word-spacing:0.000000pt;}
._29{margin-left:-7.616000pt;}
._1c{margin-left:-6.544000pt;}
._4{margin-left:-4.800000pt;}
._2{margin-left:-3.744000pt;}
._1{margin-left:-2.688000pt;}
._3{margin-left:-1.776000pt;}
._5{width:0.944000pt;}
._d{width:1.984000pt;}
._1d{width:3.136000pt;}
._22{width:4.213333pt;}
._10{width:5.120000pt;}
._9{width:6.656000pt;}
._8{width:7.744000pt;}
._14{width:9.216000pt;}
._13{width:10.432000pt;}
._1e{width:11.392000pt;}
._20{width:12.405333pt;}
._c{width:13.402667pt;}
._b{width:14.464000pt;}
._6{width:15.680000pt;}
._25{width:16.896000pt;}
._19{width:18.197333pt;}
._17{width:19.584000pt;}
._18{width:20.698667pt;}
._12{width:22.336000pt;}
._28{width:23.296000pt;}
._e{width:24.512000pt;}
._f{width:26.165333pt;}
._27{width:27.141333pt;}
._23{width:28.032000pt;}
._a{width:29.781333pt;}
._7{width:31.488000pt;}
._26{width:32.832000pt;}
._1b{width:34.325333pt;}
._1a{width:35.306667pt;}
._24{width:36.426667pt;}
._21{width:37.477333pt;}
._1f{width:38.976000pt;}
._16{width:40.000000pt;}
._15{width:41.024000pt;}
._2d{width:45.568000pt;}
._2c{width:46.656000pt;}
._2b{width:47.872000pt;}
._2a{width:48.768000pt;}
._11{width:50.021333pt;}
._0{width:750.234667pt;}
.fs3{font-size:34.666667pt;}
.fs2{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y45{bottom:3.066667pt;}
.y43{bottom:3.080000pt;}
.y48{bottom:3.200000pt;}
.y7{bottom:49.633333pt;}
.y6{bottom:63.500000pt;}
.y5{bottom:77.233333pt;}
.y34{bottom:106.700000pt;}
.y41{bottom:108.166667pt;}
.y67{bottom:112.833333pt;}
.y46{bottom:118.833333pt;}
.y33{bottom:122.033333pt;}
.y80{bottom:128.566667pt;}
.y40{bottom:135.773333pt;}
.y32{bottom:137.373333pt;}
.y44{bottom:138.706667pt;}
.y66{bottom:140.440000pt;}
.y31{bottom:152.706667pt;}
.y30{bottom:157.373333pt;}
.y7f{bottom:157.640000pt;}
.y42{bottom:158.560000pt;}
.y3f{bottom:163.373333pt;}
.y65{bottom:168.040000pt;}
.y2f{bottom:169.773333pt;}
.y7e{bottom:176.040000pt;}
.y3e{bottom:190.973333pt;}
.y7d{bottom:194.440000pt;}
.y64{bottom:195.626667pt;}
.y2e{bottom:200.173333pt;}
.y2d{bottom:218.560000pt;}
.y63{bottom:223.240000pt;}
.y7c{bottom:228.840000pt;}
.y2c{bottom:236.960000pt;}
.y3d{bottom:246.040000pt;}
.y62{bottom:250.840000pt;}
.y2b{bottom:255.226667pt;}
.y7b{bottom:263.240000pt;}
.y2a{bottom:273.626667pt;}
.y61{bottom:278.440000pt;}
.y7a{bottom:281.640000pt;}
.y29{bottom:292.040000pt;}
.y3c{bottom:301.240000pt;}
.y60{bottom:306.040000pt;}
.y28{bottom:310.440000pt;}
.y79{bottom:316.040000pt;}
.y27{bottom:328.840000pt;}
.y5f{bottom:333.626667pt;}
.y78{bottom:334.440000pt;}
.y26{bottom:347.266667pt;}
.y3b{bottom:356.466667pt;}
.y5e{bottom:361.266667pt;}
.y25{bottom:365.666667pt;}
.y77{bottom:368.866667pt;}
.y24{bottom:384.066667pt;}
.y76{bottom:387.266667pt;}
.y5d{bottom:388.866667pt;}
.y23{bottom:402.466667pt;}
.y3a{bottom:411.666667pt;}
.y5c{bottom:416.466667pt;}
.y22{bottom:420.866667pt;}
.y75{bottom:421.666667pt;}
.y21{bottom:439.266667pt;}
.y5b{bottom:444.066667pt;}
.y74{bottom:456.066667pt;}
.y20{bottom:457.666667pt;}
.y39{bottom:466.866667pt;}
.y5a{bottom:471.666667pt;}
.y1f{bottom:476.066667pt;}
.y73{bottom:490.466667pt;}
.y1e{bottom:494.466667pt;}
.y59{bottom:499.266667pt;}
.y72{bottom:508.866667pt;}
.y1d{bottom:512.866667pt;}
.y38{bottom:522.066667pt;}
.y58{bottom:526.866667pt;}
.y1c{bottom:531.266667pt;}
.y71{bottom:543.266667pt;}
.y1b{bottom:549.666667pt;}
.y57{bottom:554.466667pt;}
.y70{bottom:561.666667pt;}
.y1a{bottom:568.066667pt;}
.y37{bottom:577.266667pt;}
.y56{bottom:582.066667pt;}
.y19{bottom:586.466667pt;}
.y6f{bottom:596.066667pt;}
.y18{bottom:604.866667pt;}
.y55{bottom:609.666667pt;}
.y6e{bottom:614.466667pt;}
.y17{bottom:623.266667pt;}
.y36{bottom:632.466667pt;}
.y54{bottom:637.266667pt;}
.y16{bottom:641.666667pt;}
.y6d{bottom:648.866667pt;}
.y15{bottom:660.106667pt;}
.y53{bottom:664.906667pt;}
.y6c{bottom:667.306667pt;}
.y14{bottom:678.506667pt;}
.y35{bottom:687.706667pt;}
.y52{bottom:692.506667pt;}
.y13{bottom:696.906667pt;}
.y6b{bottom:701.706667pt;}
.y12{bottom:715.306667pt;}
.y51{bottom:720.106667pt;}
.y11{bottom:742.906667pt;}
.y50{bottom:747.706667pt;}
.y6a{bottom:754.506667pt;}
.yf{bottom:770.506667pt;}
.y69{bottom:772.906667pt;}
.y4f{bottom:775.306667pt;}
.y10{bottom:775.840000pt;}
.ye{bottom:798.106667pt;}
.y4e{bottom:802.906667pt;}
.y68{bottom:807.306667pt;}
.yd{bottom:825.706667pt;}
.y4d{bottom:830.506667pt;}
.yc{bottom:853.306667pt;}
.y4c{bottom:858.106667pt;}
.yb{bottom:880.906667pt;}
.y4b{bottom:885.706667pt;}
.ya{bottom:908.506667pt;}
.y4a{bottom:913.306667pt;}
.y9{bottom:936.106667pt;}
.y49{bottom:940.906667pt;}
.y3{bottom:948.773333pt;}
.y47{bottom:958.906667pt;}
.y8{bottom:963.706667pt;}
.y2{bottom:982.133333pt;}
.y4{bottom:983.466667pt;}
.y1{bottom:1001.733333pt;}
.h9{height:16.800000pt;}
.hb{height:16.966667pt;}
.h7{height:31.078125pt;}
.h6{height:38.250000pt;}
.h5{height:43.031250pt;}
.h8{height:47.812500pt;}
.ha{height:52.593750pt;}
.h2{height:54.093750pt;}
.h4{height:57.375000pt;}
.h3{height:57.906250pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w6{width:60.566667pt;}
.w5{width:76.133333pt;}
.w4{width:77.200000pt;}
.w8{width:376.026667pt;}
.w7{width:377.506667pt;}
.w3{width:793.733310pt;}
.w2{width:793.733322pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x16{left:12.800000pt;}
.x13{left:15.333333pt;}
.x1c{left:26.666667pt;}
.x1a{left:27.866667pt;}
.x19{left:34.540000pt;}
.x1e{left:45.600000pt;}
.x1{left:113.499988pt;}
.x12{left:116.433333pt;}
.xf{left:118.299988pt;}
.x3{left:120.699988pt;}
.x8{left:128.566655pt;}
.x1d{left:131.066667pt;}
.x1b{left:134.933333pt;}
.x10{left:137.493322pt;}
.x6{left:142.439988pt;}
.x11{left:160.693322pt;}
.x9{left:161.759988pt;}
.x5{left:165.093322pt;}
.x18{left:188.000000pt;}
.x14{left:196.573333pt;}
.x15{left:275.640000pt;}
.x7{left:281.106655pt;}
.xa{left:286.573322pt;}
.xe{left:305.506655pt;}
.x17{left:339.133333pt;}
.xb{left:415.933322pt;}
.xc{left:553.133322pt;}
.x4{left:644.373322pt;}
.xd{left:712.359976pt;}
.x2{left:718.359988pt;}
}




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