
    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_c716cc6fa95dc46ff335b4dd.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_aa839505a69d9bb23c85a717.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.091797;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_3602c3b2016b64e46cae8051.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.946777;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_8ff010a8374fb986ee9a1c4f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.946777;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.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_fa258496e71f44bd929cfd67.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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);}
.v0{vertical-align:0.000000px;}
.lse{letter-spacing:-2.880000px;}
.lsa{letter-spacing:-0.720000px;}
.ls3{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.144000px;}
.ls1{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.072000px;}
.ls4{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.432000px;}
.ls0{letter-spacing:0.720000px;}
.ls2{letter-spacing:0.756000px;}
.ls7{letter-spacing:0.864000px;}
.lsd{letter-spacing:4.320000px;}
.ls5{letter-spacing:64.397280px;}
.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;}
}
.ws2{word-spacing:-72.000000px;}
.ws0{word-spacing:-24.696000px;}
.ws4{word-spacing:-21.060000px;}
.ws9{word-spacing:-18.720000px;}
.wsa{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.856000px;}
.ws5{word-spacing:-17.784000px;}
.ws6{word-spacing:-17.280000px;}
.ws7{word-spacing:-15.300000px;}
.ws3{word-spacing:0.000000px;}
._19{margin-left:-4.464000px;}
._9{margin-left:-3.009600px;}
._0{margin-left:-1.324800px;}
._1{width:1.053360px;}
._6{width:2.298240px;}
._f{width:4.037760px;}
._13{width:5.112000px;}
._12{width:6.264000px;}
._7{width:7.992000px;}
._8{width:9.144000px;}
._18{width:10.296000px;}
._1e{width:11.520000px;}
._1d{width:12.600000px;}
._1a{width:14.068800px;}
._d{width:15.624000px;}
._e{width:16.668000px;}
._a{width:19.368000px;}
._2{width:20.779920px;}
._27{width:22.204080px;}
._24{width:23.400000px;}
._25{width:24.408000px;}
._22{width:25.948800px;}
._1b{width:27.000000px;}
._21{width:28.134960px;}
._1c{width:29.174640px;}
._23{width:30.648000px;}
._26{width:32.976000px;}
._11{width:36.033600px;}
._10{width:37.432800px;}
._2c{width:38.517600px;}
._2b{width:39.535200px;}
._16{width:44.064000px;}
._b{width:45.720000px;}
._c{width:46.944000px;}
._14{width:48.024000px;}
._15{width:49.176000px;}
._2d{width:50.256000px;}
._5{width:89.822880px;}
._4{width:91.259280px;}
._20{width:106.303440px;}
._1f{width:107.544000px;}
._3{width:112.126080px;}
._28{width:138.744000px;}
._29{width:139.824000px;}
._2a{width:412.920000px;}
._17{width:846.252000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,10);}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y98{bottom:6.840000px;}
.y9a{bottom:7.020000px;}
.y4{bottom:86.436000px;}
.y3{bottom:116.136000px;}
.y2{bottom:135.396000px;}
.y1{bottom:154.650000px;}
.y81{bottom:176.790000px;}
.y2e{bottom:183.630000px;}
.y90{bottom:183.810000px;}
.y6a{bottom:194.250000px;}
.ya3{bottom:196.050000px;}
.y3c{bottom:196.950000px;}
.ybe{bottom:203.790000px;}
.yaf{bottom:206.310000px;}
.y80{bottom:207.750000px;}
.y2d{bottom:214.590000px;}
.y8f{bottom:214.770000px;}
.y5a{bottom:218.010000px;}
.y3b{bottom:219.990000px;}
.ya2{bottom:227.010000px;}
.ybd{bottom:234.930000px;}
.y2c{bottom:235.290000px;}
.yae{bottom:237.270000px;}
.y7f{bottom:238.890000px;}
.y8e{bottom:245.910000px;}
.y59{bottom:249.150000px;}
.yd7{bottom:255.630000px;}
.y2b{bottom:255.990000px;}
.ya1{bottom:258.150000px;}
.ybc{bottom:265.890000px;}
.yad{bottom:268.410000px;}
.y7e{bottom:269.850000px;}
.yd6{bottom:276.330000px;}
.y2a{bottom:276.690000px;}
.y8d{bottom:276.870000px;}
.y58{bottom:280.110000px;}
.ya0{bottom:289.110000px;}
.ybb{bottom:297.030000px;}
.y29{bottom:297.390000px;}
.yac{bottom:299.370000px;}
.y7d{bottom:300.990000px;}
.y8c{bottom:307.830000px;}
.y57{bottom:311.250000px;}
.yd5{bottom:317.730000px;}
.y28{bottom:318.090000px;}
.y9f{bottom:320.250000px;}
.yba{bottom:327.990000px;}
.yab{bottom:330.510000px;}
.y7c{bottom:331.950000px;}
.yd4{bottom:338.475000px;}
.y27{bottom:338.835000px;}
.y8b{bottom:339.015000px;}
.y9e{bottom:340.275000px;}
.y56{bottom:342.255000px;}
.yb9{bottom:359.175000px;}
.y26{bottom:359.535000px;}
.yaa{bottom:361.515000px;}
.y7b{bottom:363.135000px;}
.y9d{bottom:363.315000px;}
.y8a{bottom:369.975000px;}
.y55{bottom:373.395000px;}
.yd3{bottom:379.875000px;}
.y25{bottom:380.235000px;}
.y9c{bottom:386.895000px;}
.yb8{bottom:390.135000px;}
.ya9{bottom:392.655000px;}
.y7a{bottom:394.095000px;}
.yd2{bottom:400.575000px;}
.y24{bottom:400.935000px;}
.y89{bottom:403.455000px;}
.y54{bottom:404.355000px;}
.y9b{bottom:410.475000px;}
.yb7{bottom:421.275000px;}
.y23{bottom:421.635000px;}
.ya8{bottom:423.615000px;}
.y79{bottom:425.235000px;}
.y99{bottom:434.055000px;}
.y53{bottom:435.495000px;}
.yd1{bottom:441.975000px;}
.y22{bottom:442.335000px;}
.ya7{bottom:443.595000px;}
.y88{bottom:446.295000px;}
.yb6{bottom:452.235000px;}
.y78{bottom:456.195000px;}
.y97{bottom:458.535000px;}
.yd0{bottom:462.675000px;}
.y21{bottom:463.035000px;}
.y52{bottom:466.455000px;}
.ya6{bottom:466.635000px;}
.yea{bottom:476.895000px;}
.y87{bottom:477.435000px;}
.yb5{bottom:483.375000px;}
.y20{bottom:483.735000px;}
.y96{bottom:486.075000px;}
.y77{bottom:487.335000px;}
.y51{bottom:497.595000px;}
.y95{bottom:503.355000px;}
.ycf{bottom:504.075000px;}
.y86{bottom:508.395000px;}
.yb4{bottom:514.335000px;}
.y1f{bottom:514.695000px;}
.y76{bottom:518.295000px;}
.yce{bottom:524.775000px;}
.y50{bottom:528.555000px;}
.y94{bottom:529.635000px;}
.y1e{bottom:535.395000px;}
.ye9{bottom:538.995000px;}
.y85{bottom:539.535000px;}
.yb3{bottom:545.475000px;}
.y75{bottom:549.435000px;}
.y93{bottom:552.675000px;}
.y1d{bottom:556.095000px;}
.y4f{bottom:559.695000px;}
.ycd{bottom:566.175000px;}
.y84{bottom:570.495000px;}
.yb2{bottom:576.435000px;}
.y1c{bottom:576.795000px;}
.y74{bottom:580.395000px;}
.ycc{bottom:586.875000px;}
.y4e{bottom:590.655000px;}
.y1b{bottom:597.495000px;}
.ye8{bottom:601.095000px;}
.y83{bottom:601.635000px;}
.y69{bottom:602.535000px;}
.yb1{bottom:607.605000px;}
.y73{bottom:611.565000px;}
.y1a{bottom:618.225000px;}
.y4d{bottom:621.645000px;}
.ycb{bottom:628.305000px;}
.y68{bottom:629.565000px;}
.y19{bottom:638.925000px;}
.yb0{bottom:640.905000px;}
.ye7{bottom:642.345000px;}
.y72{bottom:642.525000px;}
.y82{bottom:644.505000px;}
.yca{bottom:649.005000px;}
.y4c{bottom:652.785000px;}
.y18{bottom:659.625000px;}
.y67{bottom:660.705000px;}
.ye6{bottom:663.045000px;}
.yc9{bottom:669.705000px;}
.y71{bottom:673.665000px;}
.y17{bottom:680.325000px;}
.y4b{bottom:683.745000px;}
.yc8{bottom:690.405000px;}
.y66{bottom:691.665000px;}
.y16{bottom:701.025000px;}
.ye5{bottom:704.445000px;}
.y70{bottom:704.625000px;}
.yc7{bottom:711.105000px;}
.y4a{bottom:714.885000px;}
.y15{bottom:721.725000px;}
.y65{bottom:722.805000px;}
.ye4{bottom:725.145000px;}
.yc6{bottom:731.805000px;}
.y6f{bottom:735.765000px;}
.y14{bottom:742.425000px;}
.y49{bottom:745.845000px;}
.yc5{bottom:752.505000px;}
.y64{bottom:753.765000px;}
.y13{bottom:763.125000px;}
.y3a{bottom:765.465000px;}
.ye3{bottom:766.545000px;}
.y6e{bottom:766.725000px;}
.yc4{bottom:773.205000px;}
.y48{bottom:776.985000px;}
.y6d{bottom:783.465000px;}
.y12{bottom:783.825000px;}
.y63{bottom:784.905000px;}
.ye2{bottom:787.245000px;}
.yc3{bottom:793.905000px;}
.y39{bottom:802.905000px;}
.y11{bottom:804.525000px;}
.y47{bottom:807.945000px;}
.yc2{bottom:814.605000px;}
.y62{bottom:815.865000px;}
.ye1{bottom:828.645000px;}
.y38{bottom:833.865000px;}
.yc1{bottom:835.305000px;}
.y10{bottom:835.665000px;}
.y46{bottom:839.085000px;}
.y61{bottom:847.005000px;}
.ye0{bottom:849.345000px;}
.yc0{bottom:856.005000px;}
.yf{bottom:856.365000px;}
.y37{bottom:865.005000px;}
.y45{bottom:870.045000px;}
.ye{bottom:877.110000px;}
.y60{bottom:878.010000px;}
.ybf{bottom:889.350000px;}
.ydf{bottom:890.790000px;}
.y36{bottom:896.010000px;}
.yd{bottom:897.810000px;}
.y44{bottom:901.230000px;}
.ya5{bottom:908.790000px;}
.y5f{bottom:909.150000px;}
.yde{bottom:911.490000px;}
.yc{bottom:919.770000px;}
.ya4{bottom:926.070000px;}
.y35{bottom:927.150000px;}
.y43{bottom:932.190000px;}
.y5e{bottom:940.110000px;}
.yb{bottom:947.310000px;}
.ydd{bottom:952.890000px;}
.y34{bottom:958.110000px;}
.y42{bottom:963.330000px;}
.y5d{bottom:971.250000px;}
.ydc{bottom:973.590000px;}
.ya{bottom:975.030000px;}
.y33{bottom:989.250000px;}
.y41{bottom:994.290000px;}
.y5c{bottom:1002.210000px;}
.y9{bottom:1002.570000px;}
.ydb{bottom:1014.990000px;}
.y32{bottom:1020.210000px;}
.y40{bottom:1025.430000px;}
.y8{bottom:1030.110000px;}
.y92{bottom:1032.990000px;}
.y5b{bottom:1035.510000px;}
.yda{bottom:1035.690000px;}
.y91{bottom:1050.090000px;}
.y31{bottom:1051.350000px;}
.y3f{bottom:1056.390000px;}
.y7{bottom:1057.830000px;}
.yd9{bottom:1077.090000px;}
.y30{bottom:1082.310000px;}
.y6{bottom:1085.370000px;}
.y3e{bottom:1087.530000px;}
.y6c{bottom:1095.090000px;}
.yd8{bottom:1097.790000px;}
.y5{bottom:1112.910000px;}
.y2f{bottom:1115.610000px;}
.y3d{bottom:1118.490000px;}
.y6b{bottom:1121.190000px;}
.h9{height:23.580000px;}
.hb{height:23.760000px;}
.h6{height:52.628906px;}
.h8{height:53.573906px;}
.h3{height:59.383125px;}
.ha{height:63.949219px;}
.h2{height:64.546875px;}
.h5{height:69.996445px;}
.h7{height:74.820586px;}
.h4{height:85.052461px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:167.250000px;}
.w6{width:167.430000px;}
.w5{width:167.580000px;}
.w3{width:177.330000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x15{left:8.100000px;}
.x1c{left:44.460000px;}
.x1b{left:57.645000px;}
.x1d{left:60.300000px;}
.x17{left:63.900000px;}
.x19{left:74.520000px;}
.x1{left:127.655987px;}
.x10{left:129.275987px;}
.x13{left:134.135987px;}
.x1e{left:156.629987px;}
.xe{left:168.689987px;}
.x6{left:170.129987px;}
.x3{left:174.269987px;}
.x7{left:180.749987px;}
.xc{left:204.329987px;}
.x1f{left:206.849987px;}
.xa{left:234.569987px;}
.x4{left:272.909987px;}
.x8{left:277.634987px;}
.x11{left:291.134987px;}
.x16{left:305.715000px;}
.x14{left:350.714987px;}
.x2{left:467.924987px;}
.x18{left:472.965000px;}
.x1a{left:640.545000px;}
.x20{left:735.629987px;}
.xf{left:738.329987px;}
.x12{left:754.709987px;}
.xb{left:757.049987px;}
.xd{left:800.249987px;}
.x5{left:808.169987px;}
.x9{left:840.929987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-2.560000pt;}
.lsa{letter-spacing:-0.640000pt;}
.ls3{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.064000pt;}
.ls4{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.384000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls2{letter-spacing:0.672000pt;}
.ls7{letter-spacing:0.768000pt;}
.lsd{letter-spacing:3.840000pt;}
.ls5{letter-spacing:57.242027pt;}
.ws2{word-spacing:-64.000000pt;}
.ws0{word-spacing:-21.952000pt;}
.ws4{word-spacing:-18.720000pt;}
.ws9{word-spacing:-16.640000pt;}
.wsa{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.872000pt;}
.ws5{word-spacing:-15.808000pt;}
.ws6{word-spacing:-15.360000pt;}
.ws7{word-spacing:-13.600000pt;}
.ws3{word-spacing:0.000000pt;}
._19{margin-left:-3.968000pt;}
._9{margin-left:-2.675200pt;}
._0{margin-left:-1.177600pt;}
._1{width:0.936320pt;}
._6{width:2.042880pt;}
._f{width:3.589120pt;}
._13{width:4.544000pt;}
._12{width:5.568000pt;}
._7{width:7.104000pt;}
._8{width:8.128000pt;}
._18{width:9.152000pt;}
._1e{width:10.240000pt;}
._1d{width:11.200000pt;}
._1a{width:12.505600pt;}
._d{width:13.888000pt;}
._e{width:14.816000pt;}
._a{width:17.216000pt;}
._2{width:18.471040pt;}
._27{width:19.736960pt;}
._24{width:20.800000pt;}
._25{width:21.696000pt;}
._22{width:23.065600pt;}
._1b{width:24.000000pt;}
._21{width:25.008853pt;}
._1c{width:25.933013pt;}
._23{width:27.242667pt;}
._26{width:29.312000pt;}
._11{width:32.029867pt;}
._10{width:33.273600pt;}
._2c{width:34.237867pt;}
._2b{width:35.142400pt;}
._16{width:39.168000pt;}
._b{width:40.640000pt;}
._c{width:41.728000pt;}
._14{width:42.688000pt;}
._15{width:43.712000pt;}
._2d{width:44.672000pt;}
._5{width:79.842560pt;}
._4{width:81.119360pt;}
._20{width:94.491947pt;}
._1f{width:95.594667pt;}
._3{width:99.667627pt;}
._28{width:123.328000pt;}
._29{width:124.288000pt;}
._2a{width:367.040000pt;}
._17{width:752.224000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y98{bottom:6.080000pt;}
.y9a{bottom:6.240000pt;}
.y4{bottom:76.832000pt;}
.y3{bottom:103.232000pt;}
.y2{bottom:120.352000pt;}
.y1{bottom:137.466667pt;}
.y81{bottom:157.146667pt;}
.y2e{bottom:163.226667pt;}
.y90{bottom:163.386667pt;}
.y6a{bottom:172.666667pt;}
.ya3{bottom:174.266667pt;}
.y3c{bottom:175.066667pt;}
.ybe{bottom:181.146667pt;}
.yaf{bottom:183.386667pt;}
.y80{bottom:184.666667pt;}
.y2d{bottom:190.746667pt;}
.y8f{bottom:190.906667pt;}
.y5a{bottom:193.786667pt;}
.y3b{bottom:195.546667pt;}
.ya2{bottom:201.786667pt;}
.ybd{bottom:208.826667pt;}
.y2c{bottom:209.146667pt;}
.yae{bottom:210.906667pt;}
.y7f{bottom:212.346667pt;}
.y8e{bottom:218.586667pt;}
.y59{bottom:221.466667pt;}
.yd7{bottom:227.226667pt;}
.y2b{bottom:227.546667pt;}
.ya1{bottom:229.466667pt;}
.ybc{bottom:236.346667pt;}
.yad{bottom:238.586667pt;}
.y7e{bottom:239.866667pt;}
.yd6{bottom:245.626667pt;}
.y2a{bottom:245.946667pt;}
.y8d{bottom:246.106667pt;}
.y58{bottom:248.986667pt;}
.ya0{bottom:256.986667pt;}
.ybb{bottom:264.026667pt;}
.y29{bottom:264.346667pt;}
.yac{bottom:266.106667pt;}
.y7d{bottom:267.546667pt;}
.y8c{bottom:273.626667pt;}
.y57{bottom:276.666667pt;}
.yd5{bottom:282.426667pt;}
.y28{bottom:282.746667pt;}
.y9f{bottom:284.666667pt;}
.yba{bottom:291.546667pt;}
.yab{bottom:293.786667pt;}
.y7c{bottom:295.066667pt;}
.yd4{bottom:300.866667pt;}
.y27{bottom:301.186667pt;}
.y8b{bottom:301.346667pt;}
.y9e{bottom:302.466667pt;}
.y56{bottom:304.226667pt;}
.yb9{bottom:319.266667pt;}
.y26{bottom:319.586667pt;}
.yaa{bottom:321.346667pt;}
.y7b{bottom:322.786667pt;}
.y9d{bottom:322.946667pt;}
.y8a{bottom:328.866667pt;}
.y55{bottom:331.906667pt;}
.yd3{bottom:337.666667pt;}
.y25{bottom:337.986667pt;}
.y9c{bottom:343.906667pt;}
.yb8{bottom:346.786667pt;}
.ya9{bottom:349.026667pt;}
.y7a{bottom:350.306667pt;}
.yd2{bottom:356.066667pt;}
.y24{bottom:356.386667pt;}
.y89{bottom:358.626667pt;}
.y54{bottom:359.426667pt;}
.y9b{bottom:364.866667pt;}
.yb7{bottom:374.466667pt;}
.y23{bottom:374.786667pt;}
.ya8{bottom:376.546667pt;}
.y79{bottom:377.986667pt;}
.y99{bottom:385.826667pt;}
.y53{bottom:387.106667pt;}
.yd1{bottom:392.866667pt;}
.y22{bottom:393.186667pt;}
.ya7{bottom:394.306667pt;}
.y88{bottom:396.706667pt;}
.yb6{bottom:401.986667pt;}
.y78{bottom:405.506667pt;}
.y97{bottom:407.586667pt;}
.yd0{bottom:411.266667pt;}
.y21{bottom:411.586667pt;}
.y52{bottom:414.626667pt;}
.ya6{bottom:414.786667pt;}
.yea{bottom:423.906667pt;}
.y87{bottom:424.386667pt;}
.yb5{bottom:429.666667pt;}
.y20{bottom:429.986667pt;}
.y96{bottom:432.066667pt;}
.y77{bottom:433.186667pt;}
.y51{bottom:442.306667pt;}
.y95{bottom:447.426667pt;}
.ycf{bottom:448.066667pt;}
.y86{bottom:451.906667pt;}
.yb4{bottom:457.186667pt;}
.y1f{bottom:457.506667pt;}
.y76{bottom:460.706667pt;}
.yce{bottom:466.466667pt;}
.y50{bottom:469.826667pt;}
.y94{bottom:470.786667pt;}
.y1e{bottom:475.906667pt;}
.ye9{bottom:479.106667pt;}
.y85{bottom:479.586667pt;}
.yb3{bottom:484.866667pt;}
.y75{bottom:488.386667pt;}
.y93{bottom:491.266667pt;}
.y1d{bottom:494.306667pt;}
.y4f{bottom:497.506667pt;}
.ycd{bottom:503.266667pt;}
.y84{bottom:507.106667pt;}
.yb2{bottom:512.386667pt;}
.y1c{bottom:512.706667pt;}
.y74{bottom:515.906667pt;}
.ycc{bottom:521.666667pt;}
.y4e{bottom:525.026667pt;}
.y1b{bottom:531.106667pt;}
.ye8{bottom:534.306667pt;}
.y83{bottom:534.786667pt;}
.y69{bottom:535.586667pt;}
.yb1{bottom:540.093333pt;}
.y73{bottom:543.613333pt;}
.y1a{bottom:549.533333pt;}
.y4d{bottom:552.573333pt;}
.ycb{bottom:558.493333pt;}
.y68{bottom:559.613333pt;}
.y19{bottom:567.933333pt;}
.yb0{bottom:569.693333pt;}
.ye7{bottom:570.973333pt;}
.y72{bottom:571.133333pt;}
.y82{bottom:572.893333pt;}
.yca{bottom:576.893333pt;}
.y4c{bottom:580.253333pt;}
.y18{bottom:586.333333pt;}
.y67{bottom:587.293333pt;}
.ye6{bottom:589.373333pt;}
.yc9{bottom:595.293333pt;}
.y71{bottom:598.813333pt;}
.y17{bottom:604.733333pt;}
.y4b{bottom:607.773333pt;}
.yc8{bottom:613.693333pt;}
.y66{bottom:614.813333pt;}
.y16{bottom:623.133333pt;}
.ye5{bottom:626.173333pt;}
.y70{bottom:626.333333pt;}
.yc7{bottom:632.093333pt;}
.y4a{bottom:635.453333pt;}
.y15{bottom:641.533333pt;}
.y65{bottom:642.493333pt;}
.ye4{bottom:644.573333pt;}
.yc6{bottom:650.493333pt;}
.y6f{bottom:654.013333pt;}
.y14{bottom:659.933333pt;}
.y49{bottom:662.973333pt;}
.yc5{bottom:668.893333pt;}
.y64{bottom:670.013333pt;}
.y13{bottom:678.333333pt;}
.y3a{bottom:680.413333pt;}
.ye3{bottom:681.373333pt;}
.y6e{bottom:681.533333pt;}
.yc4{bottom:687.293333pt;}
.y48{bottom:690.653333pt;}
.y6d{bottom:696.413333pt;}
.y12{bottom:696.733333pt;}
.y63{bottom:697.693333pt;}
.ye2{bottom:699.773333pt;}
.yc3{bottom:705.693333pt;}
.y39{bottom:713.693333pt;}
.y11{bottom:715.133333pt;}
.y47{bottom:718.173333pt;}
.yc2{bottom:724.093333pt;}
.y62{bottom:725.213333pt;}
.ye1{bottom:736.573333pt;}
.y38{bottom:741.213333pt;}
.yc1{bottom:742.493333pt;}
.y10{bottom:742.813333pt;}
.y46{bottom:745.853333pt;}
.y61{bottom:752.893333pt;}
.ye0{bottom:754.973333pt;}
.yc0{bottom:760.893333pt;}
.yf{bottom:761.213333pt;}
.y37{bottom:768.893333pt;}
.y45{bottom:773.373333pt;}
.ye{bottom:779.653333pt;}
.y60{bottom:780.453333pt;}
.ybf{bottom:790.533333pt;}
.ydf{bottom:791.813333pt;}
.y36{bottom:796.453333pt;}
.yd{bottom:798.053333pt;}
.y44{bottom:801.093333pt;}
.ya5{bottom:807.813333pt;}
.y5f{bottom:808.133333pt;}
.yde{bottom:810.213333pt;}
.yc{bottom:817.573333pt;}
.ya4{bottom:823.173333pt;}
.y35{bottom:824.133333pt;}
.y43{bottom:828.613333pt;}
.y5e{bottom:835.653333pt;}
.yb{bottom:842.053333pt;}
.ydd{bottom:847.013333pt;}
.y34{bottom:851.653333pt;}
.y42{bottom:856.293333pt;}
.y5d{bottom:863.333333pt;}
.ydc{bottom:865.413333pt;}
.ya{bottom:866.693333pt;}
.y33{bottom:879.333333pt;}
.y41{bottom:883.813333pt;}
.y5c{bottom:890.853333pt;}
.y9{bottom:891.173333pt;}
.ydb{bottom:902.213333pt;}
.y32{bottom:906.853333pt;}
.y40{bottom:911.493333pt;}
.y8{bottom:915.653333pt;}
.y92{bottom:918.213333pt;}
.y5b{bottom:920.453333pt;}
.yda{bottom:920.613333pt;}
.y91{bottom:933.413333pt;}
.y31{bottom:934.533333pt;}
.y3f{bottom:939.013333pt;}
.y7{bottom:940.293333pt;}
.yd9{bottom:957.413333pt;}
.y30{bottom:962.053333pt;}
.y6{bottom:964.773333pt;}
.y3e{bottom:966.693333pt;}
.y6c{bottom:973.413333pt;}
.yd8{bottom:975.813333pt;}
.y5{bottom:989.253333pt;}
.y2f{bottom:991.653333pt;}
.y3d{bottom:994.213333pt;}
.y6b{bottom:996.613333pt;}
.h9{height:20.960000pt;}
.hb{height:21.120000pt;}
.h6{height:46.781250pt;}
.h8{height:47.621250pt;}
.h3{height:52.785000pt;}
.ha{height:56.843750pt;}
.h2{height:57.375000pt;}
.h5{height:62.219062pt;}
.h7{height:66.507188pt;}
.h4{height:75.602187pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:148.666667pt;}
.w6{width:148.826667pt;}
.w5{width:148.960000pt;}
.w3{width:157.626667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x15{left:7.200000pt;}
.x1c{left:39.520000pt;}
.x1b{left:51.240000pt;}
.x1d{left:53.600000pt;}
.x17{left:56.800000pt;}
.x19{left:66.240000pt;}
.x1{left:113.471988pt;}
.x10{left:114.911988pt;}
.x13{left:119.231988pt;}
.x1e{left:139.226655pt;}
.xe{left:149.946655pt;}
.x6{left:151.226655pt;}
.x3{left:154.906655pt;}
.x7{left:160.666655pt;}
.xc{left:181.626655pt;}
.x1f{left:183.866655pt;}
.xa{left:208.506655pt;}
.x4{left:242.586655pt;}
.x8{left:246.786655pt;}
.x11{left:258.786655pt;}
.x16{left:271.746667pt;}
.x14{left:311.746655pt;}
.x2{left:415.933322pt;}
.x18{left:420.413333pt;}
.x1a{left:569.373333pt;}
.x20{left:653.893322pt;}
.xf{left:656.293322pt;}
.x12{left:670.853322pt;}
.xb{left:672.933322pt;}
.xd{left:711.333322pt;}
.x5{left:718.373322pt;}
.x9{left:747.493322pt;}
}




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