
    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_3e49ecde410b661d44100532.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_3df7849e81c4304912a1a044.woff')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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_0b3ce510852cdcf3a473b1d9.woff')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_a48426409feb9f0a3beaaa1d.woff')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_e5a0301aa748ce3036f18129.woff')format("woff");}.ff7{font-family:ff7;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;}
.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;}
.v1{vertical-align:23.760000px;}
.lse{letter-spacing:-0.360000px;}
.ls4{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.106560px;}
.ls3{letter-spacing:0.108000px;}
.ls2{letter-spacing:0.119520px;}
.ls1{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.259800px;}
.ls8{letter-spacing:0.259920px;}
.ls0{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.540000px;}
.lsa{letter-spacing:9.540000px;}
.ls5{letter-spacing:13.860000px;}
.lsc{letter-spacing:41.682720px;}
.ls6{letter-spacing:46.002720px;}
.lsb{letter-spacing:201.036000px;}
.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;}
}
.ws1{word-spacing:-15.300000px;}
.ws4{word-spacing:-15.199800px;}
.ws0{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.580000px;}
.ws2{word-spacing:-13.500000px;}
.ws3{word-spacing:0.000000px;}
._d{margin-left:-2.254320px;}
._1{margin-left:-1.186320px;}
._0{width:1.322400px;}
._3{width:2.503920px;}
._2{width:3.960960px;}
._a{width:5.098080px;}
._6{width:6.573600px;}
._5{width:7.828560px;}
._b{width:8.829120px;}
._c{width:10.310640px;}
._9{width:11.476320px;}
._8{width:12.600480px;}
._7{width:13.864320px;}
._e{width:16.000320px;}
._f{width:17.054640px;}
._13{width:18.286560px;}
._11{width:19.354560px;}
._10{width:21.214080px;}
._12{width:23.176800px;}
._4{width:179.254320px;}
.fc6{color:rgb(17,85,204);}
.fc5{color:rgb(19,22,21);}
.fc4{color:rgb(43,131,19);}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(76,148,216);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.760000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yc{bottom:36.720000px;}
.yb{bottom:56.160000px;}
.ya{bottom:71.856000px;}
.y90{bottom:111.996000px;}
.yab{bottom:114.156000px;}
.yca{bottom:119.556000px;}
.y9c{bottom:120.096000px;}
.y3f{bottom:124.416000px;}
.y8f{bottom:126.036000px;}
.yaa{bottom:128.196000px;}
.y74{bottom:133.056000px;}
.y9b{bottom:134.136000px;}
.yc9{bottom:136.836000px;}
.y3e{bottom:141.696000px;}
.y73{bottom:150.330000px;}
.yc8{bottom:153.930000px;}
.y3d{bottom:158.970000px;}
.y72{bottom:167.610000px;}
.yc7{bottom:171.210000px;}
.y3c{bottom:176.250000px;}
.y71{bottom:184.710000px;}
.yc6{bottom:188.490000px;}
.y3b{bottom:193.530000px;}
.y70{bottom:201.990000px;}
.yc5{bottom:205.770000px;}
.y3a{bottom:210.810000px;}
.y6f{bottom:219.270000px;}
.yc4{bottom:223.050000px;}
.y39{bottom:227.910000px;}
.y6e{bottom:236.550000px;}
.yc3{bottom:240.330000px;}
.y38{bottom:247.530000px;}
.y6d{bottom:253.830000px;}
.yc2{bottom:257.430000px;}
.y37{bottom:264.810000px;}
.y6c{bottom:270.930000px;}
.yc1{bottom:274.710000px;}
.y36{bottom:281.910000px;}
.y6b{bottom:288.210000px;}
.yc0{bottom:291.990000px;}
.y35{bottom:299.190000px;}
.y6a{bottom:305.490000px;}
.ybf{bottom:309.270000px;}
.yb0{bottom:313.050000px;}
.y34{bottom:316.470000px;}
.y69{bottom:322.770000px;}
.ybe{bottom:326.550000px;}
.yaf{bottom:330.150000px;}
.y33{bottom:333.750000px;}
.y68{bottom:340.095000px;}
.ybd{bottom:343.875000px;}
.ya9{bottom:347.475000px;}
.y32{bottom:351.075000px;}
.y67{bottom:357.375000px;}
.ybc{bottom:360.975000px;}
.ya8{bottom:364.755000px;}
.y31{bottom:368.175000px;}
.y66{bottom:374.475000px;}
.y9a{bottom:378.255000px;}
.ya7{bottom:382.035000px;}
.y30{bottom:385.455000px;}
.y65{bottom:391.755000px;}
.y99{bottom:395.535000px;}
.ya6{bottom:399.315000px;}
.y2f{bottom:402.735000px;}
.y64{bottom:409.035000px;}
.y98{bottom:412.815000px;}
.yae{bottom:413.355000px;}
.ya5{bottom:416.595000px;}
.y2e{bottom:420.015000px;}
.y63{bottom:426.315000px;}
.y8e{bottom:428.475000px;}
.y97{bottom:430.095000px;}
.ya4{bottom:430.455000px;}
.y2d{bottom:437.295000px;}
.y62{bottom:443.595000px;}
.y8d{bottom:445.755000px;}
.y96{bottom:447.195000px;}
.y2c{bottom:454.575000px;}
.y61{bottom:460.875000px;}
.y8c{bottom:463.035000px;}
.y95{bottom:464.475000px;}
.y2b{bottom:471.675000px;}
.y60{bottom:477.975000px;}
.y8b{bottom:480.315000px;}
.y94{bottom:481.755000px;}
.y2a{bottom:488.955000px;}
.y5f{bottom:495.255000px;}
.y8a{bottom:497.595000px;}
.y93{bottom:499.035000px;}
.y29{bottom:506.235000px;}
.y5e{bottom:512.535000px;}
.y89{bottom:514.695000px;}
.y92{bottom:516.315000px;}
.y28{bottom:523.515000px;}
.y5d{bottom:529.815000px;}
.y91{bottom:530.355000px;}
.y88{bottom:531.975000px;}
.ybb{bottom:533.595000px;}
.y27{bottom:540.795000px;}
.y5c{bottom:547.095000px;}
.y87{bottom:549.255000px;}
.yba{bottom:550.695000px;}
.y26{bottom:558.075000px;}
.y5b{bottom:564.375000px;}
.y86{bottom:566.535000px;}
.yb9{bottom:567.975000px;}
.y25{bottom:575.175000px;}
.y5a{bottom:581.475000px;}
.y85{bottom:583.815000px;}
.yb8{bottom:585.255000px;}
.y24{bottom:592.455000px;}
.y59{bottom:598.755000px;}
.y84{bottom:601.095000px;}
.yb7{bottom:602.535000px;}
.y23{bottom:610.845000px;}
.y58{bottom:616.065000px;}
.y83{bottom:618.225000px;}
.yb6{bottom:619.845000px;}
.y22{bottom:628.485000px;}
.y57{bottom:633.345000px;}
.y82{bottom:635.505000px;}
.yad{bottom:637.125000px;}
.y21{bottom:647.565000px;}
.y56{bottom:650.625000px;}
.y81{bottom:652.785000px;}
.ya3{bottom:654.225000px;}
.y20{bottom:666.465000px;}
.y55{bottom:667.725000px;}
.y80{bottom:670.065000px;}
.ya2{bottom:671.505000px;}
.y54{bottom:685.005000px;}
.y1f{bottom:685.545000px;}
.y7f{bottom:687.345000px;}
.ya1{bottom:688.785000px;}
.y53{bottom:702.285000px;}
.y1e{bottom:704.445000px;}
.y7e{bottom:704.625000px;}
.ya0{bottom:706.065000px;}
.y52{bottom:719.565000px;}
.y7d{bottom:721.725000px;}
.y9f{bottom:723.345000px;}
.y1d{bottom:723.525000px;}
.y51{bottom:736.845000px;}
.yac{bottom:737.385000px;}
.y7c{bottom:739.005000px;}
.y9e{bottom:740.625000px;}
.y1c{bottom:742.425000px;}
.y50{bottom:754.125000px;}
.y9d{bottom:754.485000px;}
.y7b{bottom:756.285000px;}
.yb5{bottom:757.725000px;}
.y1b{bottom:761.325000px;}
.y4f{bottom:771.225000px;}
.y7a{bottom:773.565000px;}
.yb4{bottom:775.005000px;}
.y1a{bottom:780.405000px;}
.y4e{bottom:788.505000px;}
.y79{bottom:790.845000px;}
.yb3{bottom:792.285000px;}
.y19{bottom:799.305000px;}
.y4d{bottom:805.785000px;}
.y78{bottom:807.945000px;}
.yb2{bottom:809.565000px;}
.y18{bottom:818.385000px;}
.y4c{bottom:823.065000px;}
.yb1{bottom:823.605000px;}
.y77{bottom:825.225000px;}
.y17{bottom:837.285000px;}
.y4b{bottom:840.345000px;}
.y76{bottom:842.505000px;}
.y16{bottom:856.185000px;}
.y75{bottom:856.545000px;}
.y4a{bottom:857.625000px;}
.y49{bottom:874.770000px;}
.y15{bottom:875.310000px;}
.y48{bottom:892.050000px;}
.y14{bottom:894.210000px;}
.y47{bottom:909.330000px;}
.y13{bottom:913.290000px;}
.y46{bottom:926.610000px;}
.y12{bottom:932.190000px;}
.y45{bottom:943.890000px;}
.y11{bottom:951.090000px;}
.y44{bottom:961.170000px;}
.y10{bottom:970.170000px;}
.y43{bottom:978.270000px;}
.yf{bottom:988.710000px;}
.y42{bottom:995.550000px;}
.ye{bottom:1006.710000px;}
.y41{bottom:1012.830000px;}
.yd{bottom:1027.410000px;}
.y40{bottom:1030.110000px;}
.y9{bottom:1048.650000px;}
.y8{bottom:1068.270000px;}
.y7{bottom:1085.550000px;}
.y6{bottom:1103.190000px;}
.y5{bottom:1144.080000px;}
.y4{bottom:1163.160000px;}
.y3{bottom:1181.880000px;}
.y2{bottom:1199.340000px;}
.y1{bottom:1216.620000px;}
.h7{height:37.705078px;}
.h2{height:41.726953px;}
.h5{height:42.164648px;}
.hb{height:43.156758px;}
.ha{height:43.506914px;}
.h3{height:46.251562px;}
.h9{height:46.736719px;}
.hc{height:49.255313px;}
.h4{height:50.800781px;}
.h8{height:52.918594px;}
.h6{height:65.884219px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:108.035987px;}
.x1{left:128.015987px;}
.x13{left:135.035987px;}
.x9{left:140.255987px;}
.x8{left:158.069987px;}
.x14{left:162.029987px;}
.x5{left:166.889987px;}
.xe{left:178.769987px;}
.xc{left:190.109987px;}
.x1a{left:252.029987px;}
.x16{left:308.414987px;}
.x21{left:312.554987px;}
.xb{left:326.774987px;}
.x1d{left:330.374987px;}
.x18{left:344.234987px;}
.x19{left:346.394987px;}
.xd{left:355.754987px;}
.x22{left:362.414987px;}
.x20{left:369.794987px;}
.xf{left:373.934987px;}
.x1b{left:375.734987px;}
.xa{left:381.134987px;}
.x10{left:384.374987px;}
.x7{left:386.174987px;}
.x1e{left:390.314987px;}
.x1f{left:392.294987px;}
.x11{left:396.254987px;}
.x12{left:398.954987px;}
.x6{left:412.274987px;}
.x3{left:446.474987px;}
.x4{left:518.504987px;}
.x15{left:635.504987px;}
.x1c{left:662.549987px;}
.x17{left:686.129987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lse{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.094720pt;}
.ls3{letter-spacing:0.096000pt;}
.ls2{letter-spacing:0.106240pt;}
.ls1{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.230933pt;}
.ls8{letter-spacing:0.231040pt;}
.ls0{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.480000pt;}
.lsa{letter-spacing:8.480000pt;}
.ls5{letter-spacing:12.320000pt;}
.lsc{letter-spacing:37.051307pt;}
.ls6{letter-spacing:40.891307pt;}
.lsb{letter-spacing:178.698667pt;}
.ws1{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.510933pt;}
.ws0{word-spacing:-13.280000pt;}
.ws5{word-spacing:-12.960000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws3{word-spacing:0.000000pt;}
._d{margin-left:-2.003840pt;}
._1{margin-left:-1.054507pt;}
._0{width:1.175467pt;}
._3{width:2.225707pt;}
._2{width:3.520853pt;}
._a{width:4.531627pt;}
._6{width:5.843200pt;}
._5{width:6.958720pt;}
._b{width:7.848107pt;}
._c{width:9.165013pt;}
._9{width:10.201173pt;}
._8{width:11.200427pt;}
._7{width:12.323840pt;}
._e{width:14.222507pt;}
._f{width:15.159680pt;}
._13{width:16.254720pt;}
._11{width:17.204053pt;}
._10{width:18.856960pt;}
._12{width:20.601600pt;}
._4{width:159.337173pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:32.640000pt;}
.yb{bottom:49.920000pt;}
.ya{bottom:63.872000pt;}
.y90{bottom:99.552000pt;}
.yab{bottom:101.472000pt;}
.yca{bottom:106.272000pt;}
.y9c{bottom:106.752000pt;}
.y3f{bottom:110.592000pt;}
.y8f{bottom:112.032000pt;}
.yaa{bottom:113.952000pt;}
.y74{bottom:118.272000pt;}
.y9b{bottom:119.232000pt;}
.yc9{bottom:121.632000pt;}
.y3e{bottom:125.952000pt;}
.y73{bottom:133.626667pt;}
.yc8{bottom:136.826667pt;}
.y3d{bottom:141.306667pt;}
.y72{bottom:148.986667pt;}
.yc7{bottom:152.186667pt;}
.y3c{bottom:156.666667pt;}
.y71{bottom:164.186667pt;}
.yc6{bottom:167.546667pt;}
.y3b{bottom:172.026667pt;}
.y70{bottom:179.546667pt;}
.yc5{bottom:182.906667pt;}
.y3a{bottom:187.386667pt;}
.y6f{bottom:194.906667pt;}
.yc4{bottom:198.266667pt;}
.y39{bottom:202.586667pt;}
.y6e{bottom:210.266667pt;}
.yc3{bottom:213.626667pt;}
.y38{bottom:220.026667pt;}
.y6d{bottom:225.626667pt;}
.yc2{bottom:228.826667pt;}
.y37{bottom:235.386667pt;}
.y6c{bottom:240.826667pt;}
.yc1{bottom:244.186667pt;}
.y36{bottom:250.586667pt;}
.y6b{bottom:256.186667pt;}
.yc0{bottom:259.546667pt;}
.y35{bottom:265.946667pt;}
.y6a{bottom:271.546667pt;}
.ybf{bottom:274.906667pt;}
.yb0{bottom:278.266667pt;}
.y34{bottom:281.306667pt;}
.y69{bottom:286.906667pt;}
.ybe{bottom:290.266667pt;}
.yaf{bottom:293.466667pt;}
.y33{bottom:296.666667pt;}
.y68{bottom:302.306667pt;}
.ybd{bottom:305.666667pt;}
.ya9{bottom:308.866667pt;}
.y32{bottom:312.066667pt;}
.y67{bottom:317.666667pt;}
.ybc{bottom:320.866667pt;}
.ya8{bottom:324.226667pt;}
.y31{bottom:327.266667pt;}
.y66{bottom:332.866667pt;}
.y9a{bottom:336.226667pt;}
.ya7{bottom:339.586667pt;}
.y30{bottom:342.626667pt;}
.y65{bottom:348.226667pt;}
.y99{bottom:351.586667pt;}
.ya6{bottom:354.946667pt;}
.y2f{bottom:357.986667pt;}
.y64{bottom:363.586667pt;}
.y98{bottom:366.946667pt;}
.yae{bottom:367.426667pt;}
.ya5{bottom:370.306667pt;}
.y2e{bottom:373.346667pt;}
.y63{bottom:378.946667pt;}
.y8e{bottom:380.866667pt;}
.y97{bottom:382.306667pt;}
.ya4{bottom:382.626667pt;}
.y2d{bottom:388.706667pt;}
.y62{bottom:394.306667pt;}
.y8d{bottom:396.226667pt;}
.y96{bottom:397.506667pt;}
.y2c{bottom:404.066667pt;}
.y61{bottom:409.666667pt;}
.y8c{bottom:411.586667pt;}
.y95{bottom:412.866667pt;}
.y2b{bottom:419.266667pt;}
.y60{bottom:424.866667pt;}
.y8b{bottom:426.946667pt;}
.y94{bottom:428.226667pt;}
.y2a{bottom:434.626667pt;}
.y5f{bottom:440.226667pt;}
.y8a{bottom:442.306667pt;}
.y93{bottom:443.586667pt;}
.y29{bottom:449.986667pt;}
.y5e{bottom:455.586667pt;}
.y89{bottom:457.506667pt;}
.y92{bottom:458.946667pt;}
.y28{bottom:465.346667pt;}
.y5d{bottom:470.946667pt;}
.y91{bottom:471.426667pt;}
.y88{bottom:472.866667pt;}
.ybb{bottom:474.306667pt;}
.y27{bottom:480.706667pt;}
.y5c{bottom:486.306667pt;}
.y87{bottom:488.226667pt;}
.yba{bottom:489.506667pt;}
.y26{bottom:496.066667pt;}
.y5b{bottom:501.666667pt;}
.y86{bottom:503.586667pt;}
.yb9{bottom:504.866667pt;}
.y25{bottom:511.266667pt;}
.y5a{bottom:516.866667pt;}
.y85{bottom:518.946667pt;}
.yb8{bottom:520.226667pt;}
.y24{bottom:526.626667pt;}
.y59{bottom:532.226667pt;}
.y84{bottom:534.306667pt;}
.yb7{bottom:535.586667pt;}
.y23{bottom:542.973333pt;}
.y58{bottom:547.613333pt;}
.y83{bottom:549.533333pt;}
.yb6{bottom:550.973333pt;}
.y22{bottom:558.653333pt;}
.y57{bottom:562.973333pt;}
.y82{bottom:564.893333pt;}
.yad{bottom:566.333333pt;}
.y21{bottom:575.613333pt;}
.y56{bottom:578.333333pt;}
.y81{bottom:580.253333pt;}
.ya3{bottom:581.533333pt;}
.y20{bottom:592.413333pt;}
.y55{bottom:593.533333pt;}
.y80{bottom:595.613333pt;}
.ya2{bottom:596.893333pt;}
.y54{bottom:608.893333pt;}
.y1f{bottom:609.373333pt;}
.y7f{bottom:610.973333pt;}
.ya1{bottom:612.253333pt;}
.y53{bottom:624.253333pt;}
.y1e{bottom:626.173333pt;}
.y7e{bottom:626.333333pt;}
.ya0{bottom:627.613333pt;}
.y52{bottom:639.613333pt;}
.y7d{bottom:641.533333pt;}
.y9f{bottom:642.973333pt;}
.y1d{bottom:643.133333pt;}
.y51{bottom:654.973333pt;}
.yac{bottom:655.453333pt;}
.y7c{bottom:656.893333pt;}
.y9e{bottom:658.333333pt;}
.y1c{bottom:659.933333pt;}
.y50{bottom:670.333333pt;}
.y9d{bottom:670.653333pt;}
.y7b{bottom:672.253333pt;}
.yb5{bottom:673.533333pt;}
.y1b{bottom:676.733333pt;}
.y4f{bottom:685.533333pt;}
.y7a{bottom:687.613333pt;}
.yb4{bottom:688.893333pt;}
.y1a{bottom:693.693333pt;}
.y4e{bottom:700.893333pt;}
.y79{bottom:702.973333pt;}
.yb3{bottom:704.253333pt;}
.y19{bottom:710.493333pt;}
.y4d{bottom:716.253333pt;}
.y78{bottom:718.173333pt;}
.yb2{bottom:719.613333pt;}
.y18{bottom:727.453333pt;}
.y4c{bottom:731.613333pt;}
.yb1{bottom:732.093333pt;}
.y77{bottom:733.533333pt;}
.y17{bottom:744.253333pt;}
.y4b{bottom:746.973333pt;}
.y76{bottom:748.893333pt;}
.y16{bottom:761.053333pt;}
.y75{bottom:761.373333pt;}
.y4a{bottom:762.333333pt;}
.y49{bottom:777.573333pt;}
.y15{bottom:778.053333pt;}
.y48{bottom:792.933333pt;}
.y14{bottom:794.853333pt;}
.y47{bottom:808.293333pt;}
.y13{bottom:811.813333pt;}
.y46{bottom:823.653333pt;}
.y12{bottom:828.613333pt;}
.y45{bottom:839.013333pt;}
.y11{bottom:845.413333pt;}
.y44{bottom:854.373333pt;}
.y10{bottom:862.373333pt;}
.y43{bottom:869.573333pt;}
.yf{bottom:878.853333pt;}
.y42{bottom:884.933333pt;}
.ye{bottom:894.853333pt;}
.y41{bottom:900.293333pt;}
.yd{bottom:913.253333pt;}
.y40{bottom:915.653333pt;}
.y9{bottom:932.133333pt;}
.y8{bottom:949.573333pt;}
.y7{bottom:964.933333pt;}
.y6{bottom:980.613333pt;}
.y5{bottom:1016.960000pt;}
.y4{bottom:1033.920000pt;}
.y3{bottom:1050.560000pt;}
.y2{bottom:1066.080000pt;}
.y1{bottom:1081.440000pt;}
.h7{height:33.515625pt;}
.h2{height:37.090625pt;}
.h5{height:37.479688pt;}
.hb{height:38.361562pt;}
.ha{height:38.672812pt;}
.h3{height:41.112500pt;}
.h9{height:41.543750pt;}
.hc{height:43.782500pt;}
.h4{height:45.156250pt;}
.h8{height:47.038750pt;}
.h6{height:58.563750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:96.031988pt;}
.x1{left:113.791988pt;}
.x13{left:120.031988pt;}
.x9{left:124.671988pt;}
.x8{left:140.506655pt;}
.x14{left:144.026655pt;}
.x5{left:148.346655pt;}
.xe{left:158.906655pt;}
.xc{left:168.986655pt;}
.x1a{left:224.026655pt;}
.x16{left:274.146655pt;}
.x21{left:277.826655pt;}
.xb{left:290.466655pt;}
.x1d{left:293.666655pt;}
.x18{left:305.986655pt;}
.x19{left:307.906655pt;}
.xd{left:316.226655pt;}
.x22{left:322.146655pt;}
.x20{left:328.706655pt;}
.xf{left:332.386655pt;}
.x1b{left:333.986655pt;}
.xa{left:338.786655pt;}
.x10{left:341.666655pt;}
.x7{left:343.266655pt;}
.x1e{left:346.946655pt;}
.x1f{left:348.706655pt;}
.x11{left:352.226655pt;}
.x12{left:354.626655pt;}
.x6{left:366.466655pt;}
.x3{left:396.866655pt;}
.x4{left:460.893322pt;}
.x15{left:564.893322pt;}
.x1c{left:588.933322pt;}
.x17{left:609.893322pt;}
}




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