
    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_c9fcd381f5dc0c626cfde1fd.woff')format("woff");}.ff1{font-family:ff1;line-height:1.104004;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_3142150d33bf1ce7467ac777.woff')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_d075e7fde1523a442f890968.woff')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_8a2ffd513a2ebe3fa9879e9a.woff')format("woff");}.ff4{font-family:ff4;line-height:1.104004;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_bd032865099b391734f14993.woff')format("woff");}.ff5{font-family:ff5;line-height:1.093262;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_b21a26b76b60e3b748030c8e.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_264da8e425e7ff34fd6ef52e.woff')format("woff");}.ff7{font-family:ff7;line-height:0.783691;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_d33ae0a1c798b663873e79f0.woff')format("woff");}.ff9{font-family:ff9;line-height:0.978027;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:ffa;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ffa{font-family:ffa;line-height:0.910156;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:ffb;src:url('chunks/assets/font_5de35de065f050feb1726043.woff')format("woff");}.ffb{font-family:ffb;line-height:0.978027;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;}
.ls13{letter-spacing:-1.008000px;}
.ls3{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.216000px;}
.ls4{letter-spacing:-0.018000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.083520px;}
.ls0{letter-spacing:0.262080px;}
.ls7{letter-spacing:0.288000px;}
.ls6{letter-spacing:0.504000px;}
.ls12{letter-spacing:0.720000px;}
.ls9{letter-spacing:0.864000px;}
.lsf{letter-spacing:1.440000px;}
.lsb{letter-spacing:2.160000px;}
.ls10{letter-spacing:4.320000px;}
.ls11{letter-spacing:13.680000px;}
.lsa{letter-spacing:15.120000px;}
.lsc{letter-spacing:18.720000px;}
.ls14{letter-spacing:28.080000px;}
.ls8{letter-spacing:31.080000px;}
.lse{letter-spacing:33.960000px;}
.lsd{letter-spacing:64.002720px;}
.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;}
}
.ws7{word-spacing:-59.760000px;}
.ws3{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.784000px;}
.ws4{word-spacing:-16.560000px;}
.ws0{word-spacing:-15.840000px;}
.ws2{word-spacing:-12.186000px;}
.ws1{word-spacing:-10.902240px;}
.ws5{word-spacing:0.000000px;}
._16{margin-left:-3.761280px;}
._7{margin-left:-2.280960px;}
._2{margin-left:-1.177920px;}
._0{width:1.314720px;}
._1{width:3.260400px;}
._4{width:4.324800px;}
._15{width:5.328000px;}
._8{width:7.200000px;}
._9{width:8.621280px;}
._3{width:9.648000px;}
._10{width:11.106720px;}
._11{width:12.341280px;}
._17{width:13.405440px;}
._c{width:15.240000px;}
._d{width:16.776000px;}
._13{width:19.872000px;}
._14{width:21.160320px;}
._1a{width:22.680000px;}
._a{width:24.336000px;}
._e{width:25.469280px;}
._f{width:26.496000px;}
._1c{width:28.152000px;}
._12{width:29.952000px;}
._1b{width:31.464000px;}
._5{width:33.192000px;}
._6{width:34.704000px;}
._b{width:36.048000px;}
._24{width:37.836480px;}
._25{width:39.083040px;}
._21{width:48.240000px;}
._22{width:49.608000px;}
._18{width:90.288000px;}
._19{width:91.323840px;}
._1d{width:310.968000px;}
._1e{width:312.192000px;}
._20{width:1093.608000px;}
._1f{width:1094.857920px;}
._23{width:2313.936000px;}
.fc2{color:rgb(5,99,193);}
.fc3{color:rgb(128,128,128);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(189,3,34);}
.fs4{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y9{bottom:3.240000px;}
.y2b{bottom:3.600000px;}
.ya{bottom:17.280000px;}
.y8{bottom:17.820000px;}
.yb{bottom:30.960000px;}
.y7{bottom:32.580000px;}
.y6{bottom:57.420000px;}
.y2a{bottom:91.800000px;}
.y5{bottom:119.196000px;}
.y78{bottom:144.036000px;}
.y9f{bottom:154.110000px;}
.y28{bottom:160.410000px;}
.y8d{bottom:164.190000px;}
.yaf{bottom:165.090000px;}
.yd9{bottom:165.990000px;}
.y99{bottom:174.090000px;}
.y70{bottom:174.990000px;}
.ya3{bottom:185.070000px;}
.y27{bottom:191.370000px;}
.y8c{bottom:195.150000px;}
.yae{bottom:196.050000px;}
.yd8{bottom:196.950000px;}
.y98{bottom:205.230000px;}
.y6f{bottom:206.130000px;}
.y46{bottom:214.410000px;}
.ya2{bottom:216.210000px;}
.y5e{bottom:217.110000px;}
.y26{bottom:222.510000px;}
.yba{bottom:225.210000px;}
.y8b{bottom:226.290000px;}
.y77{bottom:227.190000px;}
.y6e{bottom:237.090000px;}
.yc3{bottom:245.370000px;}
.y45{bottom:245.550000px;}
.y5d{bottom:248.070000px;}
.yd7{bottom:248.970000px;}
.y25{bottom:253.470000px;}
.y8a{bottom:257.250000px;}
.yad{bottom:258.150000px;}
.y6d{bottom:268.230000px;}
.y44{bottom:276.510000px;}
.yb9{bottom:277.410000px;}
.y5c{bottom:279.210000px;}
.y24{bottom:284.610000px;}
.y89{bottom:288.210000px;}
.yb2{bottom:289.290000px;}
.yc2{bottom:297.390000px;}
.y6c{bottom:299.190000px;}
.yd6{bottom:300.990000px;}
.y43{bottom:307.650000px;}
.y97{bottom:309.270000px;}
.y5b{bottom:310.170000px;}
.y23{bottom:315.570000px;}
.ya8{bottom:320.250000px;}
.yb8{bottom:329.430000px;}
.y6b{bottom:330.330000px;}
.yd5{bottom:332.130000px;}
.y42{bottom:338.610000px;}
.y88{bottom:340.410000px;}
.y5a{bottom:341.310000px;}
.y22{bottom:346.710000px;}
.yc1{bottom:349.410000px;}
.ya1{bottom:351.210000px;}
.y96{bottom:361.290000px;}
.yac{bottom:362.190000px;}
.yd4{bottom:363.090000px;}
.y41{bottom:369.795000px;}
.y87{bottom:371.415000px;}
.y76{bottom:372.315000px;}
.y21{bottom:377.715000px;}
.yb7{bottom:381.495000px;}
.y6a{bottom:382.395000px;}
.y95{bottom:392.475000px;}
.y59{bottom:393.375000px;}
.yd3{bottom:394.275000px;}
.y40{bottom:400.755000px;}
.yc0{bottom:401.655000px;}
.y75{bottom:403.455000px;}
.y20{bottom:408.855000px;}
.y9e{bottom:413.355000px;}
.y86{bottom:423.435000px;}
.y58{bottom:424.335000px;}
.yd2{bottom:425.235000px;}
.y3f{bottom:431.895000px;}
.yb6{bottom:433.515000px;}
.y69{bottom:434.415000px;}
.y1f{bottom:439.815000px;}
.ya7{bottom:444.495000px;}
.yab{bottom:445.395000px;}
.ybf{bottom:453.675000px;}
.y57{bottom:455.475000px;}
.yd1{bottom:456.375000px;}
.y9d{bottom:465.555000px;}
.y1e{bottom:470.955000px;}
.y85{bottom:475.455000px;}
.yaa{bottom:476.355000px;}
.y3e{bottom:483.915000px;}
.yb5{bottom:485.535000px;}
.y56{bottom:486.435000px;}
.yd0{bottom:487.335000px;}
.ya0{bottom:496.515000px;}
.y1d{bottom:501.915000px;}
.ybe{bottom:505.695000px;}
.y84{bottom:506.595000px;}
.y74{bottom:507.495000px;}
.y55{bottom:517.575000px;}
.ycf{bottom:518.475000px;}
.ya6{bottom:527.655000px;}
.y3d{bottom:535.755000px;}
.y83{bottom:537.555000px;}
.ya9{bottom:538.455000px;}
.y68{bottom:548.535000px;}
.yce{bottom:549.435000px;}
.y1c{bottom:556.635000px;}
.ybd{bottom:557.715000px;}
.y73{bottom:559.515000px;}
.y82{bottom:568.695000px;}
.y54{bottom:569.595000px;}
.ya5{bottom:579.675000px;}
.ycd{bottom:580.575000px;}
.y1b{bottom:587.595000px;}
.yb4{bottom:589.755000px;}
.y3c{bottom:590.655000px;}
.y81{bottom:599.655000px;}
.y67{bottom:600.555000px;}
.ybc{bottom:609.735000px;}
.ycc{bottom:611.535000px;}
.y1a{bottom:618.735000px;}
.y94{bottom:620.715000px;}
.y53{bottom:621.615000px;}
.y66{bottom:631.725000px;}
.yb3{bottom:641.805000px;}
.y3b{bottom:642.705000px;}
.y19{bottom:649.725000px;}
.y80{bottom:651.885000px;}
.y52{bottom:652.785000px;}
.ybb{bottom:661.785000px;}
.y65{bottom:662.685000px;}
.ycb{bottom:673.665000px;}
.y18{bottom:680.865000px;}
.y7f{bottom:682.845000px;}
.y51{bottom:683.745000px;}
.y9c{bottom:693.825000px;}
.y3a{bottom:694.725000px;}
.y93{bottom:703.905000px;}
.yca{bottom:704.805000px;}
.y17{bottom:711.825000px;}
.y7e{bottom:713.805000px;}
.yb1{bottom:714.705000px;}
.y50{bottom:714.885000px;}
.y9b{bottom:724.785000px;}
.y39{bottom:725.685000px;}
.yc9{bottom:735.765000px;}
.y16{bottom:742.965000px;}
.y64{bottom:745.845000px;}
.y92{bottom:755.925000px;}
.y38{bottom:756.825000px;}
.y7d{bottom:766.005000px;}
.yb0{bottom:766.725000px;}
.y4f{bottom:766.905000px;}
.y15{bottom:773.925000px;}
.y63{bottom:776.805000px;}
.y91{bottom:786.885000px;}
.y37{bottom:787.785000px;}
.y4e{bottom:797.865000px;}
.y14{bottom:804.885000px;}
.y62{bottom:807.945000px;}
.y7c{bottom:818.025000px;}
.y36{bottom:818.925000px;}
.y4d{bottom:829.005000px;}
.y61{bottom:838.905000px;}
.y7b{bottom:848.985000px;}
.y35{bottom:849.885000px;}
.y13{bottom:857.085000px;}
.y4c{bottom:859.965000px;}
.y60{bottom:870.045000px;}
.yc8{bottom:870.945000px;}
.y7a{bottom:880.125000px;}
.y34{bottom:881.025000px;}
.y4b{bottom:891.150000px;}
.y72{bottom:901.050000px;}
.yc7{bottom:901.950000px;}
.y12{bottom:909.150000px;}
.y33{bottom:912.030000px;}
.y4a{bottom:922.110000px;}
.y79{bottom:932.190000px;}
.yc6{bottom:933.090000px;}
.y32{bottom:943.170000px;}
.y11{bottom:949.290000px;}
.y49{bottom:953.250000px;}
.y90{bottom:963.150000px;}
.yc5{bottom:964.050000px;}
.y31{bottom:974.130000px;}
.y10{bottom:982.590000px;}
.y5f{bottom:984.210000px;}
.yc4{bottom:995.190000px;}
.y30{bottom:1005.270000px;}
.y8f{bottom:1015.170000px;}
.ya4{bottom:1015.350000px;}
.yf{bottom:1018.770000px;}
.y9a{bottom:1026.150000px;}
.y2f{bottom:1036.230000px;}
.ye{bottom:1052.610000px;}
.y48{bottom:1057.290000px;}
.y8e{bottom:1067.190000px;}
.y2e{bottom:1067.370000px;}
.yd{bottom:1083.750000px;}
.y47{bottom:1088.250000px;}
.y71{bottom:1098.330000px;}
.yc{bottom:1114.710000px;}
.y2d{bottom:1119.390000px;}
.y4{bottom:1137.210000px;}
.y2c{bottom:1150.380000px;}
.y3{bottom:1156.500000px;}
.y2{bottom:1175.040000px;}
.y1{bottom:1193.040000px;}
.y29{bottom:1195.560000px;}
.hc{height:16.380000px;}
.h6{height:43.920000px;}
.h7{height:47.980898px;}
.h8{height:53.709961px;}
.hd{height:54.878906px;}
.h4{height:58.121719px;}
.h3{height:58.833281px;}
.hb{height:61.189805px;}
.ha{height:63.175781px;}
.h2{height:63.949219px;}
.h5{height:65.884219px;}
.h9{height:74.820586px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:39.600000px;}
.w6{width:332.850000px;}
.w5{width:347.475000px;}
.w3{width:640.725000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:8.640000px;}
.x7{left:10.440000px;}
.xd{left:83.879987px;}
.x1{left:106.415987px;}
.x9{left:108.035987px;}
.x11{left:133.415987px;}
.xc{left:141.875987px;}
.x5{left:144.354000px;}
.x12{left:160.409987px;}
.x2{left:241.589987px;}
.x10{left:303.705000px;}
.xb{left:320.834987px;}
.xa{left:327.314987px;}
.x4{left:447.404987px;}
.xf{left:453.885000px;}
.x8{left:534.344987px;}
.x3{left:696.389987px;}
.x6{left:747.150000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls13{letter-spacing:-0.896000pt;}
.ls3{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.192000pt;}
.ls4{letter-spacing:-0.016000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.074240pt;}
.ls0{letter-spacing:0.232960pt;}
.ls7{letter-spacing:0.256000pt;}
.ls6{letter-spacing:0.448000pt;}
.ls12{letter-spacing:0.640000pt;}
.ls9{letter-spacing:0.768000pt;}
.lsf{letter-spacing:1.280000pt;}
.lsb{letter-spacing:1.920000pt;}
.ls10{letter-spacing:3.840000pt;}
.ls11{letter-spacing:12.160000pt;}
.lsa{letter-spacing:13.440000pt;}
.lsc{letter-spacing:16.640000pt;}
.ls14{letter-spacing:24.960000pt;}
.ls8{letter-spacing:27.626667pt;}
.lse{letter-spacing:30.186667pt;}
.lsd{letter-spacing:56.891307pt;}
.ws7{word-spacing:-53.120000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.808000pt;}
.ws4{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.080000pt;}
.ws2{word-spacing:-10.832000pt;}
.ws1{word-spacing:-9.690880pt;}
.ws5{word-spacing:0.000000pt;}
._16{margin-left:-3.343360pt;}
._7{margin-left:-2.027520pt;}
._2{margin-left:-1.047040pt;}
._0{width:1.168640pt;}
._1{width:2.898133pt;}
._4{width:3.844267pt;}
._15{width:4.736000pt;}
._8{width:6.400000pt;}
._9{width:7.663360pt;}
._3{width:8.576000pt;}
._10{width:9.872640pt;}
._11{width:10.970027pt;}
._17{width:11.915947pt;}
._c{width:13.546667pt;}
._d{width:14.912000pt;}
._13{width:17.664000pt;}
._14{width:18.809173pt;}
._1a{width:20.160000pt;}
._a{width:21.632000pt;}
._e{width:22.639360pt;}
._f{width:23.552000pt;}
._1c{width:25.024000pt;}
._12{width:26.624000pt;}
._1b{width:27.968000pt;}
._5{width:29.504000pt;}
._6{width:30.848000pt;}
._b{width:32.042667pt;}
._24{width:33.632427pt;}
._25{width:34.740480pt;}
._21{width:42.880000pt;}
._22{width:44.096000pt;}
._18{width:80.256000pt;}
._19{width:81.176747pt;}
._1d{width:276.416000pt;}
._1e{width:277.504000pt;}
._20{width:972.096000pt;}
._1f{width:973.207040pt;}
._23{width:2056.832000pt;}
.fs4{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:2.880000pt;}
.y2b{bottom:3.200000pt;}
.ya{bottom:15.360000pt;}
.y8{bottom:15.840000pt;}
.yb{bottom:27.520000pt;}
.y7{bottom:28.960000pt;}
.y6{bottom:51.040000pt;}
.y2a{bottom:81.600000pt;}
.y5{bottom:105.952000pt;}
.y78{bottom:128.032000pt;}
.y9f{bottom:136.986667pt;}
.y28{bottom:142.586667pt;}
.y8d{bottom:145.946667pt;}
.yaf{bottom:146.746667pt;}
.yd9{bottom:147.546667pt;}
.y99{bottom:154.746667pt;}
.y70{bottom:155.546667pt;}
.ya3{bottom:164.506667pt;}
.y27{bottom:170.106667pt;}
.y8c{bottom:173.466667pt;}
.yae{bottom:174.266667pt;}
.yd8{bottom:175.066667pt;}
.y98{bottom:182.426667pt;}
.y6f{bottom:183.226667pt;}
.y46{bottom:190.586667pt;}
.ya2{bottom:192.186667pt;}
.y5e{bottom:192.986667pt;}
.y26{bottom:197.786667pt;}
.yba{bottom:200.186667pt;}
.y8b{bottom:201.146667pt;}
.y77{bottom:201.946667pt;}
.y6e{bottom:210.746667pt;}
.yc3{bottom:218.106667pt;}
.y45{bottom:218.266667pt;}
.y5d{bottom:220.506667pt;}
.yd7{bottom:221.306667pt;}
.y25{bottom:225.306667pt;}
.y8a{bottom:228.666667pt;}
.yad{bottom:229.466667pt;}
.y6d{bottom:238.426667pt;}
.y44{bottom:245.786667pt;}
.yb9{bottom:246.586667pt;}
.y5c{bottom:248.186667pt;}
.y24{bottom:252.986667pt;}
.y89{bottom:256.186667pt;}
.yb2{bottom:257.146667pt;}
.yc2{bottom:264.346667pt;}
.y6c{bottom:265.946667pt;}
.yd6{bottom:267.546667pt;}
.y43{bottom:273.466667pt;}
.y97{bottom:274.906667pt;}
.y5b{bottom:275.706667pt;}
.y23{bottom:280.506667pt;}
.ya8{bottom:284.666667pt;}
.yb8{bottom:292.826667pt;}
.y6b{bottom:293.626667pt;}
.yd5{bottom:295.226667pt;}
.y42{bottom:300.986667pt;}
.y88{bottom:302.586667pt;}
.y5a{bottom:303.386667pt;}
.y22{bottom:308.186667pt;}
.yc1{bottom:310.586667pt;}
.ya1{bottom:312.186667pt;}
.y96{bottom:321.146667pt;}
.yac{bottom:321.946667pt;}
.yd4{bottom:322.746667pt;}
.y41{bottom:328.706667pt;}
.y87{bottom:330.146667pt;}
.y76{bottom:330.946667pt;}
.y21{bottom:335.746667pt;}
.yb7{bottom:339.106667pt;}
.y6a{bottom:339.906667pt;}
.y95{bottom:348.866667pt;}
.y59{bottom:349.666667pt;}
.yd3{bottom:350.466667pt;}
.y40{bottom:356.226667pt;}
.yc0{bottom:357.026667pt;}
.y75{bottom:358.626667pt;}
.y20{bottom:363.426667pt;}
.y9e{bottom:367.426667pt;}
.y86{bottom:376.386667pt;}
.y58{bottom:377.186667pt;}
.yd2{bottom:377.986667pt;}
.y3f{bottom:383.906667pt;}
.yb6{bottom:385.346667pt;}
.y69{bottom:386.146667pt;}
.y1f{bottom:390.946667pt;}
.ya7{bottom:395.106667pt;}
.yab{bottom:395.906667pt;}
.ybf{bottom:403.266667pt;}
.y57{bottom:404.866667pt;}
.yd1{bottom:405.666667pt;}
.y9d{bottom:413.826667pt;}
.y1e{bottom:418.626667pt;}
.y85{bottom:422.626667pt;}
.yaa{bottom:423.426667pt;}
.y3e{bottom:430.146667pt;}
.yb5{bottom:431.586667pt;}
.y56{bottom:432.386667pt;}
.yd0{bottom:433.186667pt;}
.ya0{bottom:441.346667pt;}
.y1d{bottom:446.146667pt;}
.ybe{bottom:449.506667pt;}
.y84{bottom:450.306667pt;}
.y74{bottom:451.106667pt;}
.y55{bottom:460.066667pt;}
.ycf{bottom:460.866667pt;}
.ya6{bottom:469.026667pt;}
.y3d{bottom:476.226667pt;}
.y83{bottom:477.826667pt;}
.ya9{bottom:478.626667pt;}
.y68{bottom:487.586667pt;}
.yce{bottom:488.386667pt;}
.y1c{bottom:494.786667pt;}
.ybd{bottom:495.746667pt;}
.y73{bottom:497.346667pt;}
.y82{bottom:505.506667pt;}
.y54{bottom:506.306667pt;}
.ya5{bottom:515.266667pt;}
.ycd{bottom:516.066667pt;}
.y1b{bottom:522.306667pt;}
.yb4{bottom:524.226667pt;}
.y3c{bottom:525.026667pt;}
.y81{bottom:533.026667pt;}
.y67{bottom:533.826667pt;}
.ybc{bottom:541.986667pt;}
.ycc{bottom:543.586667pt;}
.y1a{bottom:549.986667pt;}
.y94{bottom:551.746667pt;}
.y53{bottom:552.546667pt;}
.y66{bottom:561.533333pt;}
.yb3{bottom:570.493333pt;}
.y3b{bottom:571.293333pt;}
.y19{bottom:577.533333pt;}
.y80{bottom:579.453333pt;}
.y52{bottom:580.253333pt;}
.ybb{bottom:588.253333pt;}
.y65{bottom:589.053333pt;}
.ycb{bottom:598.813333pt;}
.y18{bottom:605.213333pt;}
.y7f{bottom:606.973333pt;}
.y51{bottom:607.773333pt;}
.y9c{bottom:616.733333pt;}
.y3a{bottom:617.533333pt;}
.y93{bottom:625.693333pt;}
.yca{bottom:626.493333pt;}
.y17{bottom:632.733333pt;}
.y7e{bottom:634.493333pt;}
.yb1{bottom:635.293333pt;}
.y50{bottom:635.453333pt;}
.y9b{bottom:644.253333pt;}
.y39{bottom:645.053333pt;}
.yc9{bottom:654.013333pt;}
.y16{bottom:660.413333pt;}
.y64{bottom:662.973333pt;}
.y92{bottom:671.933333pt;}
.y38{bottom:672.733333pt;}
.y7d{bottom:680.893333pt;}
.yb0{bottom:681.533333pt;}
.y4f{bottom:681.693333pt;}
.y15{bottom:687.933333pt;}
.y63{bottom:690.493333pt;}
.y91{bottom:699.453333pt;}
.y37{bottom:700.253333pt;}
.y4e{bottom:709.213333pt;}
.y14{bottom:715.453333pt;}
.y62{bottom:718.173333pt;}
.y7c{bottom:727.133333pt;}
.y36{bottom:727.933333pt;}
.y4d{bottom:736.893333pt;}
.y61{bottom:745.693333pt;}
.y7b{bottom:754.653333pt;}
.y35{bottom:755.453333pt;}
.y13{bottom:761.853333pt;}
.y4c{bottom:764.413333pt;}
.y60{bottom:773.373333pt;}
.yc8{bottom:774.173333pt;}
.y7a{bottom:782.333333pt;}
.y34{bottom:783.133333pt;}
.y4b{bottom:792.133333pt;}
.y72{bottom:800.933333pt;}
.yc7{bottom:801.733333pt;}
.y12{bottom:808.133333pt;}
.y33{bottom:810.693333pt;}
.y4a{bottom:819.653333pt;}
.y79{bottom:828.613333pt;}
.yc6{bottom:829.413333pt;}
.y32{bottom:838.373333pt;}
.y11{bottom:843.813333pt;}
.y49{bottom:847.333333pt;}
.y90{bottom:856.133333pt;}
.yc5{bottom:856.933333pt;}
.y31{bottom:865.893333pt;}
.y10{bottom:873.413333pt;}
.y5f{bottom:874.853333pt;}
.yc4{bottom:884.613333pt;}
.y30{bottom:893.573333pt;}
.y8f{bottom:902.373333pt;}
.ya4{bottom:902.533333pt;}
.yf{bottom:905.573333pt;}
.y9a{bottom:912.133333pt;}
.y2f{bottom:921.093333pt;}
.ye{bottom:935.653333pt;}
.y48{bottom:939.813333pt;}
.y8e{bottom:948.613333pt;}
.y2e{bottom:948.773333pt;}
.yd{bottom:963.333333pt;}
.y47{bottom:967.333333pt;}
.y71{bottom:976.293333pt;}
.yc{bottom:990.853333pt;}
.y2d{bottom:995.013333pt;}
.y4{bottom:1010.853333pt;}
.y2c{bottom:1022.560000pt;}
.y3{bottom:1028.000000pt;}
.y2{bottom:1044.480000pt;}
.y1{bottom:1060.480000pt;}
.y29{bottom:1062.720000pt;}
.hc{height:14.560000pt;}
.h6{height:39.040000pt;}
.h7{height:42.649687pt;}
.h8{height:47.742188pt;}
.hd{height:48.781250pt;}
.h4{height:51.663750pt;}
.h3{height:52.296250pt;}
.hb{height:54.390938pt;}
.ha{height:56.156250pt;}
.h2{height:56.843750pt;}
.h5{height:58.563750pt;}
.h9{height:66.507188pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:35.200000pt;}
.w6{width:295.866667pt;}
.w5{width:308.866667pt;}
.w3{width:569.533333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:7.680000pt;}
.x7{left:9.280000pt;}
.xd{left:74.559988pt;}
.x1{left:94.591988pt;}
.x9{left:96.031988pt;}
.x11{left:118.591988pt;}
.xc{left:126.111988pt;}
.x5{left:128.314667pt;}
.x12{left:142.586655pt;}
.x2{left:214.746655pt;}
.x10{left:269.960000pt;}
.xb{left:285.186655pt;}
.xa{left:290.946655pt;}
.x4{left:397.693322pt;}
.xf{left:403.453333pt;}
.x8{left:474.973322pt;}
.x3{left:619.013322pt;}
.x6{left:664.133333pt;}
}




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