
    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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_08437dca84d6930043b5c1e1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_9bdcd60c78520a1902936d9a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_5780c1962a070907226d5428.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_664a5a5f8c7585ca122d27b8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff6{font-family:ff6;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);}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.120000px;}
.ls2{letter-spacing:-0.774000px;}
.ls7{letter-spacing:-0.541200px;}
.ls3{letter-spacing:-0.334200px;}
.lsd{letter-spacing:-0.282000px;}
.ls8{letter-spacing:-0.259200px;}
.ls5{letter-spacing:-0.166800px;}
.lse{letter-spacing:-0.034560px;}
.ls4{letter-spacing:-0.028800px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.097920px;}
.ls6{letter-spacing:0.178800px;}
.ls9{letter-spacing:0.184200px;}
.ls10{letter-spacing:0.276600px;}
.lsf{letter-spacing:0.351600px;}
.lsc{letter-spacing:6.865920px;}
.lsa{letter-spacing:26.380800px;}
.lsb{letter-spacing:42.145920px;}
.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;}
}
.wsa{word-spacing:-14.215800px;}
.ws7{word-spacing:-14.123400px;}
.ws3{word-spacing:-14.118000px;}
.ws2{word-spacing:-13.939200px;}
.ws9{word-spacing:-13.904640px;}
.ws8{word-spacing:-13.657200px;}
.ws1{word-spacing:-13.605000px;}
.ws5{word-spacing:-13.398000px;}
.ws0{word-spacing:-13.165200px;}
.ws4{word-spacing:-9.187200px;}
.ws6{word-spacing:0.000000px;}
._5{margin-left:-11.279040px;}
._0{margin-left:-1.267200px;}
._2{width:1.233600px;}
._8{width:3.168000px;}
._9{width:4.181760px;}
._b{width:6.047040px;}
._a{width:7.286400px;}
._10{width:8.616960px;}
._6{width:9.884160px;}
._7{width:11.531520px;}
._11{width:12.672000px;}
._d{width:15.903360px;}
._c{width:17.677440px;}
._13{width:19.014480px;}
._4{width:20.268720px;}
._3{width:21.438720px;}
._12{width:23.506560px;}
._1{width:25.060800px;}
._e{width:26.484480px;}
._14{width:27.498240px;}
._f{width:150.144960px;}
._15{width:181.087680px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:30.240000px;}
.fs5{font-size:41.760000px;}
.fs0{font-size:54.000000px;}
.fs1{font-size:63.360000px;}
.fs3{font-size:66.240000px;}
.fs4{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:3.420000px;}
.y5{bottom:21.960000px;}
.y4{bottom:40.350000px;}
.y9{bottom:55.440000px;}
.y8{bottom:58.320000px;}
.y3{bottom:58.890000px;}
.y3e{bottom:87.840000px;}
.y98{bottom:88.020000px;}
.ycc{bottom:93.240000px;}
.y76{bottom:100.260000px;}
.y3d{bottom:106.200000px;}
.y97{bottom:106.560000px;}
.ycb{bottom:111.600000px;}
.y75{bottom:118.800000px;}
.y3c{bottom:124.740000px;}
.yca{bottom:130.140000px;}
.y96{bottom:135.360000px;}
.y74{bottom:137.160000px;}
.y3b{bottom:143.280000px;}
.yc9{bottom:148.500000px;}
.y95{bottom:153.900000px;}
.y73{bottom:155.700000px;}
.y3a{bottom:161.640000px;}
.yc8{bottom:167.040000px;}
.y94{bottom:172.440000px;}
.y72{bottom:174.240000px;}
.y39{bottom:180.180000px;}
.yc7{bottom:185.400000px;}
.y71{bottom:192.600000px;}
.y38{bottom:198.540000px;}
.y93{bottom:201.420000px;}
.yc6{bottom:203.940000px;}
.y70{bottom:211.170000px;}
.y37{bottom:217.110000px;}
.y92{bottom:219.990000px;}
.yc5{bottom:222.510000px;}
.y6f{bottom:229.530000px;}
.y36{bottom:235.470000px;}
.yc4{bottom:240.870000px;}
.y6e{bottom:248.070000px;}
.y91{bottom:248.790000px;}
.y35{bottom:254.010000px;}
.yc3{bottom:259.410000px;}
.y6d{bottom:266.430000px;}
.y90{bottom:267.330000px;}
.y34{bottom:272.550000px;}
.yc2{bottom:277.770000px;}
.y6c{bottom:284.970000px;}
.y8f{bottom:285.870000px;}
.y33{bottom:290.910000px;}
.yc1{bottom:296.310000px;}
.y6b{bottom:303.510000px;}
.y32{bottom:309.450000px;}
.y8e{bottom:314.670000px;}
.yc0{bottom:314.850000px;}
.y6a{bottom:321.870000px;}
.y31{bottom:327.810000px;}
.y8d{bottom:333.210000px;}
.y69{bottom:340.410000px;}
.y30{bottom:346.350000px;}
.ybf{bottom:351.750000px;}
.y68{bottom:358.770000px;}
.y8c{bottom:362.190000px;}
.y2f{bottom:364.890000px;}
.ybe{bottom:370.110000px;}
.y67{bottom:377.310000px;}
.y8b{bottom:380.730000px;}
.y2e{bottom:383.250000px;}
.ybd{bottom:388.650000px;}
.y66{bottom:395.850000px;}
.y2d{bottom:401.790000px;}
.ybc{bottom:407.010000px;}
.y8a{bottom:409.530000px;}
.y65{bottom:414.210000px;}
.y2c{bottom:420.150000px;}
.ybb{bottom:425.550000px;}
.y89{bottom:428.070000px;}
.y64{bottom:432.750000px;}
.y2b{bottom:438.690000px;}
.yba{bottom:444.090000px;}
.y63{bottom:451.155000px;}
.y2a{bottom:457.095000px;}
.yb9{bottom:462.495000px;}
.y62{bottom:469.695000px;}
.y29{bottom:475.635000px;}
.yb8{bottom:481.035000px;}
.y61{bottom:488.055000px;}
.y28{bottom:494.175000px;}
.yb7{bottom:499.395000px;}
.y88{bottom:504.435000px;}
.y60{bottom:506.595000px;}
.y27{bottom:512.535000px;}
.yb6{bottom:517.935000px;}
.y5f{bottom:522.435000px;}
.y87{bottom:522.975000px;}
.y26{bottom:531.075000px;}
.yb5{bottom:536.475000px;}
.y86{bottom:541.515000px;}
.y5e{bottom:541.695000px;}
.y25{bottom:549.435000px;}
.yb4{bottom:554.835000px;}
.y5d{bottom:560.775000px;}
.y24{bottom:567.975000px;}
.y85{bottom:570.315000px;}
.yb3{bottom:573.375000px;}
.y5c{bottom:580.035000px;}
.y84{bottom:588.855000px;}
.y23{bottom:590.295000px;}
.yb2{bottom:591.735000px;}
.y5b{bottom:599.295000px;}
.y22{bottom:608.655000px;}
.yb1{bottom:610.275000px;}
.y83{bottom:617.835000px;}
.y5a{bottom:618.555000px;}
.y21{bottom:627.195000px;}
.yb0{bottom:628.635000px;}
.y82{bottom:636.375000px;}
.y59{bottom:637.635000px;}
.y20{bottom:645.555000px;}
.yaf{bottom:647.175000px;}
.y58{bottom:660.315000px;}
.y1f{bottom:664.095000px;}
.y81{bottom:665.175000px;}
.yae{bottom:665.715000px;}
.y57{bottom:678.855000px;}
.y1e{bottom:682.485000px;}
.y80{bottom:683.745000px;}
.yad{bottom:684.105000px;}
.y56{bottom:694.545000px;}
.y1d{bottom:701.025000px;}
.yac{bottom:702.645000px;}
.y7f{bottom:712.725000px;}
.y55{bottom:713.805000px;}
.y1c{bottom:719.385000px;}
.yab{bottom:721.005000px;}
.y7e{bottom:731.265000px;}
.y54{bottom:733.065000px;}
.y1b{bottom:737.925000px;}
.yaa{bottom:739.545000px;}
.y53{bottom:752.325000px;}
.y1a{bottom:756.465000px;}
.ya9{bottom:758.085000px;}
.y7d{bottom:760.065000px;}
.y19{bottom:774.825000px;}
.ya8{bottom:776.445000px;}
.y7c{bottom:778.605000px;}
.y18{bottom:793.365000px;}
.ya7{bottom:794.985000px;}
.y7b{bottom:797.145000px;}
.y52{bottom:809.205000px;}
.y17{bottom:811.725000px;}
.y7a{bottom:815.505000px;}
.ya6{bottom:823.785000px;}
.y51{bottom:828.285000px;}
.y16{bottom:830.265000px;}
.y79{bottom:834.045000px;}
.y50{bottom:847.545000px;}
.y15{bottom:850.965000px;}
.y78{bottom:852.585000px;}
.ya5{bottom:852.765000px;}
.y4f{bottom:866.805000px;}
.y14{bottom:869.505000px;}
.y77{bottom:870.945000px;}
.ya4{bottom:881.745000px;}
.y13{bottom:887.865000px;}
.y4e{bottom:889.485000px;}
.ya3{bottom:900.285000px;}
.y12{bottom:906.405000px;}
.y4d{bottom:907.845000px;}
.y11{bottom:924.810000px;}
.y4c{bottom:926.430000px;}
.ya2{bottom:929.310000px;}
.y4b{bottom:944.790000px;}
.y10{bottom:947.130000px;}
.ya1{bottom:947.850000px;}
.yf{bottom:961.890000px;}
.y4a{bottom:963.330000px;}
.ya0{bottom:976.650000px;}
.ye{bottom:980.250000px;}
.y49{bottom:981.870000px;}
.y9f{bottom:995.190000px;}
.yd{bottom:998.790000px;}
.y48{bottom:1000.230000px;}
.yc{bottom:1018.770000px;}
.y9e{bottom:1024.170000px;}
.y47{bottom:1037.130000px;}
.y9d{bottom:1042.710000px;}
.yb{bottom:1045.230000px;}
.y46{bottom:1055.670000px;}
.y9c{bottom:1071.510000px;}
.y45{bottom:1074.210000px;}
.ya{bottom:1081.950000px;}
.y44{bottom:1092.570000px;}
.y9b{bottom:1100.490000px;}
.y7{bottom:1110.930000px;}
.y43{bottom:1111.110000px;}
.y2{bottom:1118.130000px;}
.y9a{bottom:1119.030000px;}
.y42{bottom:1129.470000px;}
.y99{bottom:1147.830000px;}
.y41{bottom:1148.010000px;}
.y40{bottom:1166.400000px;}
.y1{bottom:1191.960000px;}
.y3f{bottom:1193.400000px;}
.h7{height:18.360000px;}
.ha{height:18.540000px;}
.h5{height:30.077578px;}
.h9{height:38.525625px;}
.h4{height:53.645625px;}
.h2{height:53.709961px;}
.h6{height:65.884219px;}
.h3{height:73.836000px;}
.h8{height:76.201172px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w5{width:17.496000px;}
.w6{width:88.740000px;}
.wf{width:107.136000px;}
.we{width:138.456000px;}
.w9{width:201.675000px;}
.w8{width:211.890000px;}
.w7{width:213.870000px;}
.wc{width:214.815000px;}
.wa{width:230.430000px;}
.wd{width:258.690000px;}
.wb{width:271.650000px;}
.w3{width:364.605000px;}
.w4{width:366.735000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:7.740000px;}
.x26{left:11.880000px;}
.x14{left:12.960000px;}
.x29{left:18.000000px;}
.x6{left:23.220000px;}
.x2b{left:34.380000px;}
.x16{left:45.180000px;}
.x2d{left:49.140000px;}
.x20{left:50.805000px;}
.x2a{left:60.525000px;}
.x2c{left:64.845000px;}
.x1e{left:69.120000px;}
.x2{left:81.000000px;}
.x1b{left:86.085000px;}
.x11{left:87.516000px;}
.x19{left:90.405000px;}
.x23{left:92.745000px;}
.x1a{left:93.825000px;}
.x8{left:94.895987px;}
.x18{left:98.145000px;}
.x4{left:102.420000px;}
.x2e{left:107.855987px;}
.x5{left:119.880000px;}
.x21{left:127.110000px;}
.x22{left:131.430000px;}
.x13{left:176.970000px;}
.xd{left:234.209987px;}
.x9{left:242.669987px;}
.x10{left:307.514987px;}
.x1d{left:318.675000px;}
.x24{left:322.454987px;}
.x1c{left:339.734987px;}
.xb{left:341.174987px;}
.x25{left:346.935000px;}
.xe{left:381.494987px;}
.x15{left:391.575000px;}
.xc{left:421.994987px;}
.x3{left:445.605000px;}
.xa{left:446.684987px;}
.x27{left:559.545000px;}
.x1f{left:591.045000px;}
.x17{left:604.185000px;}
.x28{left:698.730000px;}
.xf{left:785.309987px;}
.x7{left:794.850000px;}
.x1{left:812.339987px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440000pt;}
.ls2{letter-spacing:-0.688000pt;}
.ls7{letter-spacing:-0.481067pt;}
.ls3{letter-spacing:-0.297067pt;}
.lsd{letter-spacing:-0.250667pt;}
.ls8{letter-spacing:-0.230400pt;}
.ls5{letter-spacing:-0.148267pt;}
.lse{letter-spacing:-0.030720pt;}
.ls4{letter-spacing:-0.025600pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.087040pt;}
.ls6{letter-spacing:0.158933pt;}
.ls9{letter-spacing:0.163733pt;}
.ls10{letter-spacing:0.245867pt;}
.lsf{letter-spacing:0.312533pt;}
.lsc{letter-spacing:6.103040pt;}
.lsa{letter-spacing:23.449600pt;}
.lsb{letter-spacing:37.463040pt;}
.wsa{word-spacing:-12.636267pt;}
.ws7{word-spacing:-12.554133pt;}
.ws3{word-spacing:-12.549333pt;}
.ws2{word-spacing:-12.390400pt;}
.ws9{word-spacing:-12.359680pt;}
.ws8{word-spacing:-12.139733pt;}
.ws1{word-spacing:-12.093333pt;}
.ws5{word-spacing:-11.909333pt;}
.ws0{word-spacing:-11.702400pt;}
.ws4{word-spacing:-8.166400pt;}
.ws6{word-spacing:0.000000pt;}
._5{margin-left:-10.025813pt;}
._0{margin-left:-1.126400pt;}
._2{width:1.096533pt;}
._8{width:2.816000pt;}
._9{width:3.717120pt;}
._b{width:5.375147pt;}
._a{width:6.476800pt;}
._10{width:7.659520pt;}
._6{width:8.785920pt;}
._7{width:10.250240pt;}
._11{width:11.264000pt;}
._d{width:14.136320pt;}
._c{width:15.713280pt;}
._13{width:16.901760pt;}
._4{width:18.016640pt;}
._3{width:19.056640pt;}
._12{width:20.894720pt;}
._1{width:22.276267pt;}
._e{width:23.541760pt;}
._14{width:24.442880pt;}
._f{width:133.462187pt;}
._15{width:160.966827pt;}
.fs2{font-size:26.880000pt;}
.fs5{font-size:37.120000pt;}
.fs0{font-size:48.000000pt;}
.fs1{font-size:56.320000pt;}
.fs3{font-size:58.880000pt;}
.fs4{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:3.040000pt;}
.y5{bottom:19.520000pt;}
.y4{bottom:35.866667pt;}
.y9{bottom:49.280000pt;}
.y8{bottom:51.840000pt;}
.y3{bottom:52.346667pt;}
.y3e{bottom:78.080000pt;}
.y98{bottom:78.240000pt;}
.ycc{bottom:82.880000pt;}
.y76{bottom:89.120000pt;}
.y3d{bottom:94.400000pt;}
.y97{bottom:94.720000pt;}
.ycb{bottom:99.200000pt;}
.y75{bottom:105.600000pt;}
.y3c{bottom:110.880000pt;}
.yca{bottom:115.680000pt;}
.y96{bottom:120.320000pt;}
.y74{bottom:121.920000pt;}
.y3b{bottom:127.360000pt;}
.yc9{bottom:132.000000pt;}
.y95{bottom:136.800000pt;}
.y73{bottom:138.400000pt;}
.y3a{bottom:143.680000pt;}
.yc8{bottom:148.480000pt;}
.y94{bottom:153.280000pt;}
.y72{bottom:154.880000pt;}
.y39{bottom:160.160000pt;}
.yc7{bottom:164.800000pt;}
.y71{bottom:171.200000pt;}
.y38{bottom:176.480000pt;}
.y93{bottom:179.040000pt;}
.yc6{bottom:181.280000pt;}
.y70{bottom:187.706667pt;}
.y37{bottom:192.986667pt;}
.y92{bottom:195.546667pt;}
.yc5{bottom:197.786667pt;}
.y6f{bottom:204.026667pt;}
.y36{bottom:209.306667pt;}
.yc4{bottom:214.106667pt;}
.y6e{bottom:220.506667pt;}
.y91{bottom:221.146667pt;}
.y35{bottom:225.786667pt;}
.yc3{bottom:230.586667pt;}
.y6d{bottom:236.826667pt;}
.y90{bottom:237.626667pt;}
.y34{bottom:242.266667pt;}
.yc2{bottom:246.906667pt;}
.y6c{bottom:253.306667pt;}
.y8f{bottom:254.106667pt;}
.y33{bottom:258.586667pt;}
.yc1{bottom:263.386667pt;}
.y6b{bottom:269.786667pt;}
.y32{bottom:275.066667pt;}
.y8e{bottom:279.706667pt;}
.yc0{bottom:279.866667pt;}
.y6a{bottom:286.106667pt;}
.y31{bottom:291.386667pt;}
.y8d{bottom:296.186667pt;}
.y69{bottom:302.586667pt;}
.y30{bottom:307.866667pt;}
.ybf{bottom:312.666667pt;}
.y68{bottom:318.906667pt;}
.y8c{bottom:321.946667pt;}
.y2f{bottom:324.346667pt;}
.ybe{bottom:328.986667pt;}
.y67{bottom:335.386667pt;}
.y8b{bottom:338.426667pt;}
.y2e{bottom:340.666667pt;}
.ybd{bottom:345.466667pt;}
.y66{bottom:351.866667pt;}
.y2d{bottom:357.146667pt;}
.ybc{bottom:361.786667pt;}
.y8a{bottom:364.026667pt;}
.y65{bottom:368.186667pt;}
.y2c{bottom:373.466667pt;}
.ybb{bottom:378.266667pt;}
.y89{bottom:380.506667pt;}
.y64{bottom:384.666667pt;}
.y2b{bottom:389.946667pt;}
.yba{bottom:394.746667pt;}
.y63{bottom:401.026667pt;}
.y2a{bottom:406.306667pt;}
.yb9{bottom:411.106667pt;}
.y62{bottom:417.506667pt;}
.y29{bottom:422.786667pt;}
.yb8{bottom:427.586667pt;}
.y61{bottom:433.826667pt;}
.y28{bottom:439.266667pt;}
.yb7{bottom:443.906667pt;}
.y88{bottom:448.386667pt;}
.y60{bottom:450.306667pt;}
.y27{bottom:455.586667pt;}
.yb6{bottom:460.386667pt;}
.y5f{bottom:464.386667pt;}
.y87{bottom:464.866667pt;}
.y26{bottom:472.066667pt;}
.yb5{bottom:476.866667pt;}
.y86{bottom:481.346667pt;}
.y5e{bottom:481.506667pt;}
.y25{bottom:488.386667pt;}
.yb4{bottom:493.186667pt;}
.y5d{bottom:498.466667pt;}
.y24{bottom:504.866667pt;}
.y85{bottom:506.946667pt;}
.yb3{bottom:509.666667pt;}
.y5c{bottom:515.586667pt;}
.y84{bottom:523.426667pt;}
.y23{bottom:524.706667pt;}
.yb2{bottom:525.986667pt;}
.y5b{bottom:532.706667pt;}
.y22{bottom:541.026667pt;}
.yb1{bottom:542.466667pt;}
.y83{bottom:549.186667pt;}
.y5a{bottom:549.826667pt;}
.y21{bottom:557.506667pt;}
.yb0{bottom:558.786667pt;}
.y82{bottom:565.666667pt;}
.y59{bottom:566.786667pt;}
.y20{bottom:573.826667pt;}
.yaf{bottom:575.266667pt;}
.y58{bottom:586.946667pt;}
.y1f{bottom:590.306667pt;}
.y81{bottom:591.266667pt;}
.yae{bottom:591.746667pt;}
.y57{bottom:603.426667pt;}
.y1e{bottom:606.653333pt;}
.y80{bottom:607.773333pt;}
.yad{bottom:608.093333pt;}
.y56{bottom:617.373333pt;}
.y1d{bottom:623.133333pt;}
.yac{bottom:624.573333pt;}
.y7f{bottom:633.533333pt;}
.y55{bottom:634.493333pt;}
.y1c{bottom:639.453333pt;}
.yab{bottom:640.893333pt;}
.y7e{bottom:650.013333pt;}
.y54{bottom:651.613333pt;}
.y1b{bottom:655.933333pt;}
.yaa{bottom:657.373333pt;}
.y53{bottom:668.733333pt;}
.y1a{bottom:672.413333pt;}
.ya9{bottom:673.853333pt;}
.y7d{bottom:675.613333pt;}
.y19{bottom:688.733333pt;}
.ya8{bottom:690.173333pt;}
.y7c{bottom:692.093333pt;}
.y18{bottom:705.213333pt;}
.ya7{bottom:706.653333pt;}
.y7b{bottom:708.573333pt;}
.y52{bottom:719.293333pt;}
.y17{bottom:721.533333pt;}
.y7a{bottom:724.893333pt;}
.ya6{bottom:732.253333pt;}
.y51{bottom:736.253333pt;}
.y16{bottom:738.013333pt;}
.y79{bottom:741.373333pt;}
.y50{bottom:753.373333pt;}
.y15{bottom:756.413333pt;}
.y78{bottom:757.853333pt;}
.ya5{bottom:758.013333pt;}
.y4f{bottom:770.493333pt;}
.y14{bottom:772.893333pt;}
.y77{bottom:774.173333pt;}
.ya4{bottom:783.773333pt;}
.y13{bottom:789.213333pt;}
.y4e{bottom:790.653333pt;}
.ya3{bottom:800.253333pt;}
.y12{bottom:805.693333pt;}
.y4d{bottom:806.973333pt;}
.y11{bottom:822.053333pt;}
.y4c{bottom:823.493333pt;}
.ya2{bottom:826.053333pt;}
.y4b{bottom:839.813333pt;}
.y10{bottom:841.893333pt;}
.ya1{bottom:842.533333pt;}
.yf{bottom:855.013333pt;}
.y4a{bottom:856.293333pt;}
.ya0{bottom:868.133333pt;}
.ye{bottom:871.333333pt;}
.y49{bottom:872.773333pt;}
.y9f{bottom:884.613333pt;}
.yd{bottom:887.813333pt;}
.y48{bottom:889.093333pt;}
.yc{bottom:905.573333pt;}
.y9e{bottom:910.373333pt;}
.y47{bottom:921.893333pt;}
.y9d{bottom:926.853333pt;}
.yb{bottom:929.093333pt;}
.y46{bottom:938.373333pt;}
.y9c{bottom:952.453333pt;}
.y45{bottom:954.853333pt;}
.ya{bottom:961.733333pt;}
.y44{bottom:971.173333pt;}
.y9b{bottom:978.213333pt;}
.y7{bottom:987.493333pt;}
.y43{bottom:987.653333pt;}
.y2{bottom:993.893333pt;}
.y9a{bottom:994.693333pt;}
.y42{bottom:1003.973333pt;}
.y99{bottom:1020.293333pt;}
.y41{bottom:1020.453333pt;}
.y40{bottom:1036.800000pt;}
.y1{bottom:1059.520000pt;}
.y3f{bottom:1060.800000pt;}
.h7{height:16.320000pt;}
.ha{height:16.480000pt;}
.h5{height:26.735625pt;}
.h9{height:34.245000pt;}
.h4{height:47.685000pt;}
.h2{height:47.742188pt;}
.h6{height:58.563750pt;}
.h3{height:65.632000pt;}
.h8{height:67.734375pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w5{width:15.552000pt;}
.w6{width:78.880000pt;}
.wf{width:95.232000pt;}
.we{width:123.072000pt;}
.w9{width:179.266667pt;}
.w8{width:188.346667pt;}
.w7{width:190.106667pt;}
.wc{width:190.946667pt;}
.wa{width:204.826667pt;}
.wd{width:229.946667pt;}
.wb{width:241.466667pt;}
.w3{width:324.093333pt;}
.w4{width:325.986667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:6.880000pt;}
.x26{left:10.560000pt;}
.x14{left:11.520000pt;}
.x29{left:16.000000pt;}
.x6{left:20.640000pt;}
.x2b{left:30.560000pt;}
.x16{left:40.160000pt;}
.x2d{left:43.680000pt;}
.x20{left:45.160000pt;}
.x2a{left:53.800000pt;}
.x2c{left:57.640000pt;}
.x1e{left:61.440000pt;}
.x2{left:72.000000pt;}
.x1b{left:76.520000pt;}
.x11{left:77.792000pt;}
.x19{left:80.360000pt;}
.x23{left:82.440000pt;}
.x1a{left:83.400000pt;}
.x8{left:84.351988pt;}
.x18{left:87.240000pt;}
.x4{left:91.040000pt;}
.x2e{left:95.871988pt;}
.x5{left:106.560000pt;}
.x21{left:112.986667pt;}
.x22{left:116.826667pt;}
.x13{left:157.306667pt;}
.xd{left:208.186655pt;}
.x9{left:215.706655pt;}
.x10{left:273.346655pt;}
.x1d{left:283.266667pt;}
.x24{left:286.626655pt;}
.x1c{left:301.986655pt;}
.xb{left:303.266655pt;}
.x25{left:308.386667pt;}
.xe{left:339.106655pt;}
.x15{left:348.066667pt;}
.xc{left:375.106655pt;}
.x3{left:396.093333pt;}
.xa{left:397.053322pt;}
.x27{left:497.373333pt;}
.x1f{left:525.373333pt;}
.x17{left:537.053333pt;}
.x28{left:621.093333pt;}
.xf{left:698.053322pt;}
.x7{left:706.533333pt;}
.x1{left:722.079988pt;}
}




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