
    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_32f42f1145615faf05e738d3.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a70cf64b2d3758a8de599e30.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_40728b4776b5b7473c687635.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_989d616e0040297e7bf6843e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_6193fc93719873dbca485474.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_ae27f3e12dc66581c4cd352d.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_8c05518ddb57065abd0e4188.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.202148;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;}
.ls9{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.463800px;}
.lsa{letter-spacing:-0.414000px;}
.lse{letter-spacing:-0.186600px;}
.lsb{letter-spacing:-0.058320px;}
.ls13{letter-spacing:-0.018000px;}
.ls4{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.036000px;}
.ls8{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.256200px;}
.ls12{letter-spacing:0.306000px;}
.ls14{letter-spacing:0.342000px;}
.ls3{letter-spacing:0.417000px;}
.lsc{letter-spacing:0.617760px;}
.ls7{letter-spacing:0.690000px;}
.ls2{letter-spacing:1.258560px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:2.016000px;}
.ls10{letter-spacing:12.186720px;}
.lsd{letter-spacing:26.586720px;}
.lsf{letter-spacing:42.426720px;}
.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;}
}
.ws0{word-spacing:-41.040000px;}
.ws3{word-spacing:-15.226440px;}
.ws2{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.506440px;}
.ws4{word-spacing:-13.505760px;}
.ws6{word-spacing:-13.447440px;}
.ws7{word-spacing:-13.319160px;}
.wsa{word-spacing:-12.546000px;}
.ws8{word-spacing:-12.204000px;}
.ws9{word-spacing:-12.186000px;}
.ws5{word-spacing:0.000000px;}
._4{margin-left:-1451.376240px;}
._2{margin-left:-1329.557760px;}
._3{margin-left:-1009.684800px;}
._5{margin-left:-582.156960px;}
._a{margin-left:-4.464960px;}
._6{margin-left:-3.312000px;}
._16{margin-left:-2.270880px;}
._1{margin-left:-1.258560px;}
._0{width:1.394400px;}
._b{width:3.103200px;}
._13{width:4.119600px;}
._8{width:5.355360px;}
._7{width:6.415920px;}
._9{width:7.455840px;}
._e{width:8.838720px;}
._d{width:10.338480px;}
._c{width:11.533680px;}
._12{width:15.127440px;}
._11{width:16.553520px;}
._10{width:18.286560px;}
._15{width:19.983360px;}
._14{width:157.397040px;}
._f{width:202.638240px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(33,33,33);}
.fs6{font-size:2.880000px;}
.fs4{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y6b{bottom:6.660000px;}
.y6d{bottom:6.705000px;}
.yc4{bottom:7.020000px;}
.y7d{bottom:7.380000px;}
.y8c{bottom:7.560000px;}
.yc3{bottom:28.080000px;}
.yc0{bottom:35.460000px;}
.yc2{bottom:49.500000px;}
.y6{bottom:61.200000px;}
.yc1{bottom:70.590000px;}
.yaf{bottom:93.600000px;}
.y31{bottom:94.320000px;}
.ybf{bottom:97.560000px;}
.y65{bottom:103.320000px;}
.y7b{bottom:104.760000px;}
.yae{bottom:114.660000px;}
.y30{bottom:115.380000px;}
.y64{bottom:124.380000px;}
.y7a{bottom:125.820000px;}
.yad{bottom:135.720000px;}
.y2f{bottom:136.440000px;}
.y63{bottom:145.440000px;}
.y79{bottom:146.880000px;}
.yac{bottom:156.810000px;}
.y2e{bottom:157.530000px;}
.y62{bottom:166.530000px;}
.y78{bottom:167.970000px;}
.yab{bottom:177.870000px;}
.y2d{bottom:178.590000px;}
.y61{bottom:187.590000px;}
.y77{bottom:189.030000px;}
.ybe{bottom:189.210000px;}
.yaa{bottom:198.930000px;}
.y2c{bottom:199.650000px;}
.y60{bottom:208.650000px;}
.y76{bottom:210.090000px;}
.ybd{bottom:210.270000px;}
.ya9{bottom:219.990000px;}
.y2b{bottom:220.710000px;}
.y5f{bottom:229.710000px;}
.y75{bottom:231.150000px;}
.ybc{bottom:231.330000px;}
.ya8{bottom:241.050000px;}
.y2a{bottom:241.770000px;}
.y5e{bottom:250.770000px;}
.y74{bottom:252.210000px;}
.ybb{bottom:252.390000px;}
.ya7{bottom:262.110000px;}
.y29{bottom:262.830000px;}
.y73{bottom:267.330000px;}
.y5d{bottom:271.830000px;}
.yba{bottom:273.450000px;}
.ya6{bottom:283.170000px;}
.y28{bottom:283.890000px;}
.y72{bottom:289.110000px;}
.y5c{bottom:292.890000px;}
.yb9{bottom:294.510000px;}
.ya5{bottom:304.230000px;}
.y27{bottom:304.950000px;}
.y71{bottom:311.070000px;}
.y5b{bottom:313.950000px;}
.yb8{bottom:315.570000px;}
.ya4{bottom:325.290000px;}
.y26{bottom:326.010000px;}
.y70{bottom:332.850000px;}
.y5a{bottom:335.010000px;}
.yb7{bottom:336.630000px;}
.ya3{bottom:346.350000px;}
.y25{bottom:347.070000px;}
.y6f{bottom:354.630000px;}
.y59{bottom:356.070000px;}
.yb6{bottom:357.690000px;}
.ya2{bottom:367.410000px;}
.y24{bottom:370.470000px;}
.y6e{bottom:376.410000px;}
.y58{bottom:377.130000px;}
.yb5{bottom:378.750000px;}
.ya1{bottom:388.470000px;}
.y57{bottom:398.190000px;}
.yb4{bottom:399.810000px;}
.y23{bottom:400.350000px;}
.ya0{bottom:409.575000px;}
.yb3{bottom:418.215000px;}
.y56{bottom:419.295000px;}
.y6c{bottom:420.015000px;}
.y22{bottom:421.455000px;}
.y9f{bottom:430.635000px;}
.yb2{bottom:436.575000px;}
.y55{bottom:440.355000px;}
.y6a{bottom:441.795000px;}
.y21{bottom:442.515000px;}
.y9e{bottom:451.695000px;}
.yb1{bottom:454.755000px;}
.y54{bottom:461.415000px;}
.y20{bottom:463.575000px;}
.y69{bottom:470.415000px;}
.y9d{bottom:472.755000px;}
.yb0{bottom:473.115000px;}
.y53{bottom:482.475000px;}
.y1f{bottom:484.635000px;}
.y68{bottom:491.475000px;}
.y9c{bottom:493.635000px;}
.y52{bottom:503.535000px;}
.y1e{bottom:505.695000px;}
.y67{bottom:512.535000px;}
.y9b{bottom:514.695000px;}
.y51{bottom:524.595000px;}
.y1d{bottom:526.755000px;}
.y66{bottom:533.595000px;}
.y9a{bottom:535.755000px;}
.y1c{bottom:547.815000px;}
.y50{bottom:554.655000px;}
.y99{bottom:556.815000px;}
.y1b{bottom:568.875000px;}
.y4f{bottom:575.715000px;}
.y98{bottom:577.875000px;}
.y1a{bottom:589.935000px;}
.y4e{bottom:596.775000px;}
.y97{bottom:598.935000px;}
.y19{bottom:610.995000px;}
.y4d{bottom:617.835000px;}
.y96{bottom:619.995000px;}
.y18{bottom:632.055000px;}
.y4c{bottom:638.895000px;}
.y95{bottom:641.055000px;}
.y17{bottom:653.145000px;}
.y4b{bottom:659.805000px;}
.y94{bottom:662.145000px;}
.y16{bottom:674.205000px;}
.y4a{bottom:680.865000px;}
.y93{bottom:683.205000px;}
.y15{bottom:695.265000px;}
.y92{bottom:698.505000px;}
.y49{bottom:701.925000px;}
.y14{bottom:716.325000px;}
.y91{bottom:721.005000px;}
.y48{bottom:722.985000px;}
.y13{bottom:737.385000px;}
.y90{bottom:742.965000px;}
.y47{bottom:744.045000px;}
.y12{bottom:758.445000px;}
.y46{bottom:765.105000px;}
.y8f{bottom:765.465000px;}
.y11{bottom:779.505000px;}
.y45{bottom:786.165000px;}
.y8e{bottom:787.965000px;}
.y10{bottom:800.565000px;}
.y44{bottom:807.225000px;}
.y8d{bottom:810.645000px;}
.yf{bottom:821.625000px;}
.y43{bottom:828.285000px;}
.y8b{bottom:833.145000px;}
.ye{bottom:842.685000px;}
.y42{bottom:849.345000px;}
.y8a{bottom:855.825000px;}
.yd{bottom:863.745000px;}
.y41{bottom:870.405000px;}
.y89{bottom:884.985000px;}
.yc{bottom:886.965000px;}
.y40{bottom:891.465000px;}
.y88{bottom:906.090000px;}
.yb{bottom:908.070000px;}
.y3f{bottom:912.570000px;}
.y87{bottom:927.150000px;}
.ya{bottom:930.030000px;}
.y3e{bottom:933.630000px;}
.y86{bottom:948.210000px;}
.y9{bottom:952.350000px;}
.y3d{bottom:954.690000px;}
.y85{bottom:969.270000px;}
.y3c{bottom:975.750000px;}
.y8{bottom:977.550000px;}
.y84{bottom:990.330000px;}
.y3b{bottom:996.810000px;}
.y7{bottom:1011.210000px;}
.y83{bottom:1011.390000px;}
.y3a{bottom:1017.870000px;}
.y82{bottom:1032.450000px;}
.y39{bottom:1038.930000px;}
.y81{bottom:1053.510000px;}
.y38{bottom:1059.990000px;}
.y5{bottom:1060.350000px;}
.y80{bottom:1068.630000px;}
.y37{bottom:1081.050000px;}
.y7f{bottom:1091.130000px;}
.y4{bottom:1092.570000px;}
.y36{bottom:1102.110000px;}
.y7e{bottom:1113.630000px;}
.y35{bottom:1123.170000px;}
.y3{bottom:1124.610000px;}
.y7c{bottom:1136.130000px;}
.y34{bottom:1144.230000px;}
.y2{bottom:1156.860000px;}
.y33{bottom:1165.320000px;}
.y1{bottom:1191.420000px;}
.y32{bottom:1193.220000px;}
.hf{height:2.864531px;}
.h8{height:21.060000px;}
.h9{height:21.096000px;}
.hb{height:21.780000px;}
.ha{height:21.816000px;}
.hc{height:21.960000px;}
.hd{height:45.637031px;}
.h2{height:56.146289px;}
.h7{height:59.439023px;}
.h5{height:61.189805px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.he{height:84.996000px;}
.h4{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.we{width:67.860000px;}
.w7{width:96.840000px;}
.w5{width:105.300000px;}
.w6{width:122.976000px;}
.w8{width:133.056000px;}
.wd{width:143.496000px;}
.w4{width:168.870000px;}
.w9{width:195.690000px;}
.wa{width:200.730000px;}
.w10{width:210.810000px;}
.wb{width:221.835000px;}
.w3{width:254.055000px;}
.wf{width:283.035000px;}
.wc{width:292.575000px;}
.w11{width:581.010000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.740000px;}
.x1{left:53.999987px;}
.x9{left:69.840000px;}
.x3{left:75.599987px;}
.x10{left:80.999987px;}
.x2{left:108.035987px;}
.x11{left:191.370000px;}
.xa{left:203.610000px;}
.x12{left:264.810000px;}
.x5{left:309.495000px;}
.xd{left:348.015000px;}
.xb{left:400.035000px;}
.x6{left:479.085000px;}
.xe{left:492.405000px;}
.xf{left:560.985000px;}
.x7{left:585.105000px;}
.xc{left:601.485000px;}
.x8{left:708.810000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.412267pt;}
.lsa{letter-spacing:-0.368000pt;}
.lse{letter-spacing:-0.165867pt;}
.lsb{letter-spacing:-0.051840pt;}
.ls13{letter-spacing:-0.016000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.032000pt;}
.ls8{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.227733pt;}
.ls12{letter-spacing:0.272000pt;}
.ls14{letter-spacing:0.304000pt;}
.ls3{letter-spacing:0.370667pt;}
.lsc{letter-spacing:0.549120pt;}
.ls7{letter-spacing:0.613333pt;}
.ls2{letter-spacing:1.118720pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.792000pt;}
.ls10{letter-spacing:10.832640pt;}
.lsd{letter-spacing:23.632640pt;}
.lsf{letter-spacing:37.712640pt;}
.ws0{word-spacing:-36.480000pt;}
.ws3{word-spacing:-13.534613pt;}
.ws2{word-spacing:-13.306880pt;}
.ws1{word-spacing:-12.894613pt;}
.ws4{word-spacing:-12.005120pt;}
.ws6{word-spacing:-11.953280pt;}
.ws7{word-spacing:-11.839253pt;}
.wsa{word-spacing:-11.152000pt;}
.ws8{word-spacing:-10.848000pt;}
.ws9{word-spacing:-10.832000pt;}
.ws5{word-spacing:0.000000pt;}
._4{margin-left:-1290.112213pt;}
._2{margin-left:-1181.829120pt;}
._3{margin-left:-897.497600pt;}
._5{margin-left:-517.472853pt;}
._a{margin-left:-3.968853pt;}
._6{margin-left:-2.944000pt;}
._16{margin-left:-2.018560pt;}
._1{margin-left:-1.118720pt;}
._0{width:1.239467pt;}
._b{width:2.758400pt;}
._13{width:3.661867pt;}
._8{width:4.760320pt;}
._7{width:5.703040pt;}
._9{width:6.627413pt;}
._e{width:7.856640pt;}
._d{width:9.189760pt;}
._c{width:10.252160pt;}
._12{width:13.446613pt;}
._11{width:14.714240pt;}
._10{width:16.254720pt;}
._15{width:17.762987pt;}
._14{width:139.908480pt;}
._f{width:180.122880pt;}
.fs6{font-size:2.560000pt;}
.fs4{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y6b{bottom:5.920000pt;}
.y6d{bottom:5.960000pt;}
.yc4{bottom:6.240000pt;}
.y7d{bottom:6.560000pt;}
.y8c{bottom:6.720000pt;}
.yc3{bottom:24.960000pt;}
.yc0{bottom:31.520000pt;}
.yc2{bottom:44.000000pt;}
.y6{bottom:54.400000pt;}
.yc1{bottom:62.746667pt;}
.yaf{bottom:83.200000pt;}
.y31{bottom:83.840000pt;}
.ybf{bottom:86.720000pt;}
.y65{bottom:91.840000pt;}
.y7b{bottom:93.120000pt;}
.yae{bottom:101.920000pt;}
.y30{bottom:102.560000pt;}
.y64{bottom:110.560000pt;}
.y7a{bottom:111.840000pt;}
.yad{bottom:120.640000pt;}
.y2f{bottom:121.280000pt;}
.y63{bottom:129.280000pt;}
.y79{bottom:130.560000pt;}
.yac{bottom:139.386667pt;}
.y2e{bottom:140.026667pt;}
.y62{bottom:148.026667pt;}
.y78{bottom:149.306667pt;}
.yab{bottom:158.106667pt;}
.y2d{bottom:158.746667pt;}
.y61{bottom:166.746667pt;}
.y77{bottom:168.026667pt;}
.ybe{bottom:168.186667pt;}
.yaa{bottom:176.826667pt;}
.y2c{bottom:177.466667pt;}
.y60{bottom:185.466667pt;}
.y76{bottom:186.746667pt;}
.ybd{bottom:186.906667pt;}
.ya9{bottom:195.546667pt;}
.y2b{bottom:196.186667pt;}
.y5f{bottom:204.186667pt;}
.y75{bottom:205.466667pt;}
.ybc{bottom:205.626667pt;}
.ya8{bottom:214.266667pt;}
.y2a{bottom:214.906667pt;}
.y5e{bottom:222.906667pt;}
.y74{bottom:224.186667pt;}
.ybb{bottom:224.346667pt;}
.ya7{bottom:232.986667pt;}
.y29{bottom:233.626667pt;}
.y73{bottom:237.626667pt;}
.y5d{bottom:241.626667pt;}
.yba{bottom:243.066667pt;}
.ya6{bottom:251.706667pt;}
.y28{bottom:252.346667pt;}
.y72{bottom:256.986667pt;}
.y5c{bottom:260.346667pt;}
.yb9{bottom:261.786667pt;}
.ya5{bottom:270.426667pt;}
.y27{bottom:271.066667pt;}
.y71{bottom:276.506667pt;}
.y5b{bottom:279.066667pt;}
.yb8{bottom:280.506667pt;}
.ya4{bottom:289.146667pt;}
.y26{bottom:289.786667pt;}
.y70{bottom:295.866667pt;}
.y5a{bottom:297.786667pt;}
.yb7{bottom:299.226667pt;}
.ya3{bottom:307.866667pt;}
.y25{bottom:308.506667pt;}
.y6f{bottom:315.226667pt;}
.y59{bottom:316.506667pt;}
.yb6{bottom:317.946667pt;}
.ya2{bottom:326.586667pt;}
.y24{bottom:329.306667pt;}
.y6e{bottom:334.586667pt;}
.y58{bottom:335.226667pt;}
.yb5{bottom:336.666667pt;}
.ya1{bottom:345.306667pt;}
.y57{bottom:353.946667pt;}
.yb4{bottom:355.386667pt;}
.y23{bottom:355.866667pt;}
.ya0{bottom:364.066667pt;}
.yb3{bottom:371.746667pt;}
.y56{bottom:372.706667pt;}
.y6c{bottom:373.346667pt;}
.y22{bottom:374.626667pt;}
.y9f{bottom:382.786667pt;}
.yb2{bottom:388.066667pt;}
.y55{bottom:391.426667pt;}
.y6a{bottom:392.706667pt;}
.y21{bottom:393.346667pt;}
.y9e{bottom:401.506667pt;}
.yb1{bottom:404.226667pt;}
.y54{bottom:410.146667pt;}
.y20{bottom:412.066667pt;}
.y69{bottom:418.146667pt;}
.y9d{bottom:420.226667pt;}
.yb0{bottom:420.546667pt;}
.y53{bottom:428.866667pt;}
.y1f{bottom:430.786667pt;}
.y68{bottom:436.866667pt;}
.y9c{bottom:438.786667pt;}
.y52{bottom:447.586667pt;}
.y1e{bottom:449.506667pt;}
.y67{bottom:455.586667pt;}
.y9b{bottom:457.506667pt;}
.y51{bottom:466.306667pt;}
.y1d{bottom:468.226667pt;}
.y66{bottom:474.306667pt;}
.y9a{bottom:476.226667pt;}
.y1c{bottom:486.946667pt;}
.y50{bottom:493.026667pt;}
.y99{bottom:494.946667pt;}
.y1b{bottom:505.666667pt;}
.y4f{bottom:511.746667pt;}
.y98{bottom:513.666667pt;}
.y1a{bottom:524.386667pt;}
.y4e{bottom:530.466667pt;}
.y97{bottom:532.386667pt;}
.y19{bottom:543.106667pt;}
.y4d{bottom:549.186667pt;}
.y96{bottom:551.106667pt;}
.y18{bottom:561.826667pt;}
.y4c{bottom:567.906667pt;}
.y95{bottom:569.826667pt;}
.y17{bottom:580.573333pt;}
.y4b{bottom:586.493333pt;}
.y94{bottom:588.573333pt;}
.y16{bottom:599.293333pt;}
.y4a{bottom:605.213333pt;}
.y93{bottom:607.293333pt;}
.y15{bottom:618.013333pt;}
.y92{bottom:620.893333pt;}
.y49{bottom:623.933333pt;}
.y14{bottom:636.733333pt;}
.y91{bottom:640.893333pt;}
.y48{bottom:642.653333pt;}
.y13{bottom:655.453333pt;}
.y90{bottom:660.413333pt;}
.y47{bottom:661.373333pt;}
.y12{bottom:674.173333pt;}
.y46{bottom:680.093333pt;}
.y8f{bottom:680.413333pt;}
.y11{bottom:692.893333pt;}
.y45{bottom:698.813333pt;}
.y8e{bottom:700.413333pt;}
.y10{bottom:711.613333pt;}
.y44{bottom:717.533333pt;}
.y8d{bottom:720.573333pt;}
.yf{bottom:730.333333pt;}
.y43{bottom:736.253333pt;}
.y8b{bottom:740.573333pt;}
.ye{bottom:749.053333pt;}
.y42{bottom:754.973333pt;}
.y8a{bottom:760.733333pt;}
.yd{bottom:767.773333pt;}
.y41{bottom:773.693333pt;}
.y89{bottom:786.653333pt;}
.yc{bottom:788.413333pt;}
.y40{bottom:792.413333pt;}
.y88{bottom:805.413333pt;}
.yb{bottom:807.173333pt;}
.y3f{bottom:811.173333pt;}
.y87{bottom:824.133333pt;}
.ya{bottom:826.693333pt;}
.y3e{bottom:829.893333pt;}
.y86{bottom:842.853333pt;}
.y9{bottom:846.533333pt;}
.y3d{bottom:848.613333pt;}
.y85{bottom:861.573333pt;}
.y3c{bottom:867.333333pt;}
.y8{bottom:868.933333pt;}
.y84{bottom:880.293333pt;}
.y3b{bottom:886.053333pt;}
.y7{bottom:898.853333pt;}
.y83{bottom:899.013333pt;}
.y3a{bottom:904.773333pt;}
.y82{bottom:917.733333pt;}
.y39{bottom:923.493333pt;}
.y81{bottom:936.453333pt;}
.y38{bottom:942.213333pt;}
.y5{bottom:942.533333pt;}
.y80{bottom:949.893333pt;}
.y37{bottom:960.933333pt;}
.y7f{bottom:969.893333pt;}
.y4{bottom:971.173333pt;}
.y36{bottom:979.653333pt;}
.y7e{bottom:989.893333pt;}
.y35{bottom:998.373333pt;}
.y3{bottom:999.653333pt;}
.y7c{bottom:1009.893333pt;}
.y34{bottom:1017.093333pt;}
.y2{bottom:1028.320000pt;}
.y33{bottom:1035.840000pt;}
.y1{bottom:1059.040000pt;}
.y32{bottom:1060.640000pt;}
.hf{height:2.546250pt;}
.h8{height:18.720000pt;}
.h9{height:18.752000pt;}
.hb{height:19.360000pt;}
.ha{height:19.392000pt;}
.hc{height:19.520000pt;}
.hd{height:40.566250pt;}
.h2{height:49.907812pt;}
.h7{height:52.834688pt;}
.h5{height:54.390938pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.he{height:75.552000pt;}
.h4{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.we{width:60.320000pt;}
.w7{width:86.080000pt;}
.w5{width:93.600000pt;}
.w6{width:109.312000pt;}
.w8{width:118.272000pt;}
.wd{width:127.552000pt;}
.w4{width:150.106667pt;}
.w9{width:173.946667pt;}
.wa{width:178.426667pt;}
.w10{width:187.386667pt;}
.wb{width:197.186667pt;}
.w3{width:225.826667pt;}
.wf{width:251.586667pt;}
.wc{width:260.066667pt;}
.w11{width:516.453333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.880000pt;}
.x1{left:47.999988pt;}
.x9{left:62.080000pt;}
.x3{left:67.199988pt;}
.x10{left:71.999988pt;}
.x2{left:96.031988pt;}
.x11{left:170.106667pt;}
.xa{left:180.986667pt;}
.x12{left:235.386667pt;}
.x5{left:275.106667pt;}
.xd{left:309.346667pt;}
.xb{left:355.586667pt;}
.x6{left:425.853333pt;}
.xe{left:437.693333pt;}
.xf{left:498.653333pt;}
.x7{left:520.093333pt;}
.xc{left:534.653333pt;}
.x8{left:630.053333pt;}
}




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