
    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_35c5c22e444c08f9bc93419d.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_3d1af5b6f0319c37723b0bfa.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c1212e2b80e2e255e46253fc.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_3a2778027a75c6e3d43ad360.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_dd736774b448ba598673ba94.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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_d71abf7a096d273a05aadc62.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.104492;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_c07477de53713dd387542f45.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.104492;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_371806be9ad4578494ca3a35.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.776855;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);}
.v1{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-0.720000px;}
.lsc{letter-spacing:-0.576000px;}
.ls3{letter-spacing:-0.288000px;}
.ls9{letter-spacing:-0.144000px;}
.ls7{letter-spacing:-0.072000px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.216000px;}
.ls0{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.576000px;}
.lsa{letter-spacing:5.760000px;}
.ls5{letter-spacing:125.597280px;}
.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;}
.ws7{word-spacing:-59.760000px;}
.ws4{word-spacing:-21.420000px;}
.ws0{word-spacing:-18.216000px;}
.ws5{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.928000px;}
.ws9{word-spacing:-17.856000px;}
.ws6{word-spacing:-17.712000px;}
.wsa{word-spacing:-17.280000px;}
.ws3{word-spacing:0.000000px;}
._1d{margin-left:-8.016000px;}
._1e{margin-left:-6.897600px;}
._1f{margin-left:-5.568000px;}
._1a{margin-left:-4.536000px;}
._a{margin-left:-3.168000px;}
._0{margin-left:-1.457280px;}
._1{width:1.125600px;}
._4{width:2.934000px;}
._10{width:4.340400px;}
._f{width:5.688000px;}
._7{width:7.248000px;}
._9{width:8.556000px;}
._8{width:9.600000px;}
._e{width:10.608000px;}
._19{width:11.801280px;}
._15{width:12.888000px;}
._17{width:13.968000px;}
._14{width:14.976000px;}
._18{width:16.608000px;}
._11{width:19.394400px;}
._6{width:21.067200px;}
._1b{width:22.075680px;}
._12{width:23.284800px;}
._13{width:25.142880px;}
._1c{width:26.523360px;}
._23{width:27.633120px;}
._3{width:28.655760px;}
._16{width:30.024000px;}
._20{width:31.176000px;}
._21{width:33.624000px;}
._22{width:34.949280px;}
._c{width:38.712000px;}
._d{width:40.248000px;}
._5{width:42.325920px;}
._b{width:48.672000px;}
._24{width:57.254400px;}
._2{width:163.462320px;}
.fc3{color:rgb(68,84,106);}
.fc2{color:rgb(33,33,33);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,10);}
.fs3{font-size:48.240000px;}
.fs5{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y6{bottom:82.116000px;}
.y5{bottom:102.816000px;}
.y4{bottom:129.096000px;}
.y3{bottom:148.176000px;}
.y2{bottom:167.250000px;}
.yef{bottom:191.730000px;}
.ya5{bottom:193.350000px;}
.yc9{bottom:196.410000px;}
.y31{bottom:200.730000px;}
.yee{bottom:212.430000px;}
.y56{bottom:212.790000px;}
.y4f{bottom:212.970000px;}
.y6b{bottom:214.770000px;}
.y30{bottom:221.430000px;}
.yc8{bottom:223.050000px;}
.ya4{bottom:224.310000px;}
.y92{bottom:231.150000px;}
.yed{bottom:233.130000px;}
.y2f{bottom:242.130000px;}
.y4e{bottom:243.030000px;}
.y77{bottom:243.570000px;}
.y6a{bottom:245.730000px;}
.yc7{bottom:249.870000px;}
.ya3{bottom:255.450000px;}
.yec{bottom:259.950000px;}
.y91{bottom:262.110000px;}
.y2e{bottom:262.830000px;}
.yc6{bottom:270.570000px;}
.y4d{bottom:273.270000px;}
.y76{bottom:274.710000px;}
.y69{bottom:276.870000px;}
.yeb{bottom:280.650000px;}
.y2d{bottom:283.530000px;}
.ya2{bottom:286.410000px;}
.yc5{bottom:291.270000px;}
.y90{bottom:293.250000px;}
.yea{bottom:301.350000px;}
.y4c{bottom:303.510000px;}
.y2c{bottom:304.230000px;}
.y75{bottom:305.670000px;}
.y68{bottom:307.830000px;}
.ya1{bottom:317.550000px;}
.yc4{bottom:317.910000px;}
.ye9{bottom:322.050000px;}
.y8f{bottom:324.210000px;}
.y2b{bottom:324.930000px;}
.y4b{bottom:333.570000px;}
.y74{bottom:335.910000px;}
.y67{bottom:339.015000px;}
.yc3{bottom:344.595000px;}
.y2a{bottom:345.675000px;}
.ya0{bottom:348.555000px;}
.ye8{bottom:348.735000px;}
.y8e{bottom:355.395000px;}
.y4a{bottom:363.855000px;}
.yc2{bottom:365.295000px;}
.y29{bottom:366.375000px;}
.y73{bottom:368.715000px;}
.y66{bottom:369.975000px;}
.ye7{bottom:375.375000px;}
.y9f{bottom:379.695000px;}
.yc1{bottom:385.995000px;}
.y8d{bottom:386.355000px;}
.y28{bottom:387.075000px;}
.y49{bottom:394.095000px;}
.y72{bottom:394.635000px;}
.ye6{bottom:396.075000px;}
.y65{bottom:401.115000px;}
.y27{bottom:407.775000px;}
.y9e{bottom:410.655000px;}
.y71{bottom:411.915000px;}
.yc0{bottom:412.815000px;}
.ye5{bottom:416.775000px;}
.y8c{bottom:417.495000px;}
.y48{bottom:424.155000px;}
.y26{bottom:428.475000px;}
.y64{bottom:432.075000px;}
.ye4{bottom:437.475000px;}
.ybf{bottom:439.455000px;}
.y9d{bottom:441.795000px;}
.y70{bottom:442.155000px;}
.y8b{bottom:448.455000px;}
.y25{bottom:449.175000px;}
.y47{bottom:454.395000px;}
.ybe{bottom:460.155000px;}
.y63{bottom:463.215000px;}
.ye3{bottom:464.295000px;}
.y24{bottom:469.875000px;}
.y9c{bottom:472.755000px;}
.y8a{bottom:479.595000px;}
.ybd{bottom:480.855000px;}
.y46{bottom:484.635000px;}
.y23{bottom:490.575000px;}
.ye2{bottom:490.935000px;}
.y62{bottom:494.175000px;}
.ybc{bottom:501.555000px;}
.y9b{bottom:503.895000px;}
.y22{bottom:511.275000px;}
.ye1{bottom:511.635000px;}
.y55{bottom:514.695000px;}
.y45{bottom:514.875000px;}
.y89{bottom:516.495000px;}
.y61{bottom:525.135000px;}
.ybb{bottom:528.195000px;}
.y21{bottom:531.975000px;}
.ye0{bottom:532.335000px;}
.y9a{bottom:534.855000px;}
.y44{bottom:544.935000px;}
.y88{bottom:547.635000px;}
.y20{bottom:552.675000px;}
.ydf{bottom:553.035000px;}
.yba{bottom:555.015000px;}
.y60{bottom:556.275000px;}
.y99{bottom:565.815000px;}
.y1f{bottom:573.375000px;}
.y43{bottom:575.175000px;}
.yb9{bottom:575.715000px;}
.y87{bottom:578.595000px;}
.yde{bottom:579.675000px;}
.y5f{bottom:587.235000px;}
.y1e{bottom:594.075000px;}
.yb8{bottom:596.415000px;}
.y98{bottom:596.955000px;}
.y54{bottom:605.265000px;}
.y42{bottom:605.445000px;}
.ydd{bottom:606.345000px;}
.y86{bottom:609.765000px;}
.y1d{bottom:614.805000px;}
.y5e{bottom:618.405000px;}
.yb7{bottom:623.085000px;}
.ydc{bottom:627.045000px;}
.y97{bottom:627.945000px;}
.y1c{bottom:635.505000px;}
.y85{bottom:640.725000px;}
.ydb{bottom:647.745000px;}
.y5d{bottom:649.365000px;}
.yb6{bottom:649.725000px;}
.y1b{bottom:656.205000px;}
.y41{bottom:665.745000px;}
.yda{bottom:668.445000px;}
.y96{bottom:670.245000px;}
.yb5{bottom:670.425000px;}
.y84{bottom:671.865000px;}
.y1a{bottom:676.905000px;}
.y5c{bottom:680.505000px;}
.yd9{bottom:689.145000px;}
.yb4{bottom:691.125000px;}
.y40{bottom:695.985000px;}
.y19{bottom:697.605000px;}
.y83{bottom:702.825000px;}
.yd8{bottom:709.845000px;}
.y5b{bottom:711.465000px;}
.yb3{bottom:717.945000px;}
.y18{bottom:718.305000px;}
.y3f{bottom:726.045000px;}
.yd7{bottom:730.545000px;}
.y82{bottom:733.965000px;}
.y17{bottom:739.005000px;}
.y95{bottom:739.905000px;}
.y5a{bottom:742.605000px;}
.yb2{bottom:744.585000px;}
.yd6{bottom:751.245000px;}
.y3e{bottom:756.285000px;}
.y16{bottom:759.705000px;}
.y81{bottom:764.925000px;}
.yb1{bottom:765.285000px;}
.y94{bottom:771.045000px;}
.y59{bottom:773.565000px;}
.yd5{bottom:778.065000px;}
.y15{bottom:780.405000px;}
.yb0{bottom:785.985000px;}
.y3d{bottom:786.525000px;}
.y80{bottom:796.065000px;}
.y14{bottom:801.105000px;}
.y93{bottom:802.005000px;}
.y58{bottom:804.705000px;}
.yaf{bottom:806.685000px;}
.y53{bottom:816.585000px;}
.y3c{bottom:816.765000px;}
.y13{bottom:821.805000px;}
.yd4{bottom:825.405000px;}
.y7f{bottom:833.145000px;}
.yae{bottom:833.325000px;}
.y57{bottom:834.945000px;}
.yd3{bottom:846.105000px;}
.y3b{bottom:846.825000px;}
.y12{bottom:849.345000px;}
.yad{bottom:860.145000px;}
.y11{bottom:863.205000px;}
.y7e{bottom:864.105000px;}
.yd2{bottom:872.790000px;}
.y3a{bottom:877.110000px;}
.yac{bottom:880.890000px;}
.y10{bottom:883.950000px;}
.y7d{bottom:895.290000px;}
.yd1{bottom:899.610000px;}
.yab{bottom:901.590000px;}
.yf{bottom:904.650000px;}
.y52{bottom:907.170000px;}
.y39{bottom:907.350000px;}
.yd0{bottom:920.310000px;}
.y7c{bottom:926.250000px;}
.ye{bottom:926.610000px;}
.yaa{bottom:928.230000px;}
.y38{bottom:937.410000px;}
.ycf{bottom:941.010000px;}
.yd{bottom:954.330000px;}
.ya9{bottom:954.870000px;}
.y7b{bottom:957.210000px;}
.yce{bottom:961.710000px;}
.y37{bottom:967.650000px;}
.ya8{bottom:975.570000px;}
.yc{bottom:981.870000px;}
.y7a{bottom:988.350000px;}
.y6f{bottom:994.110000px;}
.y51{bottom:997.710000px;}
.y36{bottom:997.890000px;}
.ya7{bottom:1002.210000px;}
.yb{bottom:1008.150000px;}
.ycd{bottom:1009.050000px;}
.y79{bottom:1019.310000px;}
.y6e{bottom:1025.430000px;}
.y35{bottom:1027.950000px;}
.ycc{bottom:1029.750000px;}
.ya{bottom:1030.110000px;}
.ya6{bottom:1032.630000px;}
.y78{bottom:1050.450000px;}
.y6d{bottom:1056.390000px;}
.y9{bottom:1057.830000px;}
.y34{bottom:1058.190000px;}
.ycb{bottom:1077.090000px;}
.y8{bottom:1085.370000px;}
.y6c{bottom:1087.530000px;}
.y33{bottom:1088.430000px;}
.yca{bottom:1097.790000px;}
.y7{bottom:1112.910000px;}
.y32{bottom:1115.610000px;}
.y50{bottom:1118.490000px;}
.y1{bottom:1233.900000px;}
.h6{height:43.246406px;}
.h8{height:52.417969px;}
.h5{height:52.628906px;}
.h9{height:53.428008px;}
.h3{height:59.383125px;}
.h2{height:64.546875px;}
.h7{height:74.820586px;}
.h4{height:85.052461px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:127.655987px;}
.xb{left:139.535987px;}
.x7{left:159.689987px;}
.x5{left:161.309987px;}
.x8{left:170.129987px;}
.xd{left:180.749987px;}
.x4{left:231.329987px;}
.x6{left:284.294987px;}
.xc{left:421.094987px;}
.x9{left:467.924987px;}
.x1{left:489.164987px;}
.xa{left:736.709987px;}
.x3{left:808.169987px;}
@media print{
.v1{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-0.640000pt;}
.lsc{letter-spacing:-0.512000pt;}
.ls3{letter-spacing:-0.256000pt;}
.ls9{letter-spacing:-0.128000pt;}
.ls7{letter-spacing:-0.064000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.192000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.512000pt;}
.lsa{letter-spacing:5.120000pt;}
.ls5{letter-spacing:111.642027pt;}
.ws2{word-spacing:-64.000000pt;}
.ws7{word-spacing:-53.120000pt;}
.ws4{word-spacing:-19.040000pt;}
.ws0{word-spacing:-16.192000pt;}
.ws5{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.936000pt;}
.ws9{word-spacing:-15.872000pt;}
.ws6{word-spacing:-15.744000pt;}
.wsa{word-spacing:-15.360000pt;}
.ws3{word-spacing:0.000000pt;}
._1d{margin-left:-7.125333pt;}
._1e{margin-left:-6.131200pt;}
._1f{margin-left:-4.949333pt;}
._1a{margin-left:-4.032000pt;}
._a{margin-left:-2.816000pt;}
._0{margin-left:-1.295360pt;}
._1{width:1.000533pt;}
._4{width:2.608000pt;}
._10{width:3.858133pt;}
._f{width:5.056000pt;}
._7{width:6.442667pt;}
._9{width:7.605333pt;}
._8{width:8.533333pt;}
._e{width:9.429333pt;}
._19{width:10.490027pt;}
._15{width:11.456000pt;}
._17{width:12.416000pt;}
._14{width:13.312000pt;}
._18{width:14.762667pt;}
._11{width:17.239467pt;}
._6{width:18.726400pt;}
._1b{width:19.622827pt;}
._12{width:20.697600pt;}
._13{width:22.349227pt;}
._1c{width:23.576320pt;}
._23{width:24.562773pt;}
._3{width:25.471787pt;}
._16{width:26.688000pt;}
._20{width:27.712000pt;}
._21{width:29.888000pt;}
._22{width:31.066027pt;}
._c{width:34.410667pt;}
._d{width:35.776000pt;}
._5{width:37.623040pt;}
._b{width:43.264000pt;}
._24{width:50.892800pt;}
._2{width:145.299840pt;}
.fs3{font-size:42.880000pt;}
.fs5{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:72.992000pt;}
.y5{bottom:91.392000pt;}
.y4{bottom:114.752000pt;}
.y3{bottom:131.712000pt;}
.y2{bottom:148.666667pt;}
.yef{bottom:170.426667pt;}
.ya5{bottom:171.866667pt;}
.yc9{bottom:174.586667pt;}
.y31{bottom:178.426667pt;}
.yee{bottom:188.826667pt;}
.y56{bottom:189.146667pt;}
.y4f{bottom:189.306667pt;}
.y6b{bottom:190.906667pt;}
.y30{bottom:196.826667pt;}
.yc8{bottom:198.266667pt;}
.ya4{bottom:199.386667pt;}
.y92{bottom:205.466667pt;}
.yed{bottom:207.226667pt;}
.y2f{bottom:215.226667pt;}
.y4e{bottom:216.026667pt;}
.y77{bottom:216.506667pt;}
.y6a{bottom:218.426667pt;}
.yc7{bottom:222.106667pt;}
.ya3{bottom:227.066667pt;}
.yec{bottom:231.066667pt;}
.y91{bottom:232.986667pt;}
.y2e{bottom:233.626667pt;}
.yc6{bottom:240.506667pt;}
.y4d{bottom:242.906667pt;}
.y76{bottom:244.186667pt;}
.y69{bottom:246.106667pt;}
.yeb{bottom:249.466667pt;}
.y2d{bottom:252.026667pt;}
.ya2{bottom:254.586667pt;}
.yc5{bottom:258.906667pt;}
.y90{bottom:260.666667pt;}
.yea{bottom:267.866667pt;}
.y4c{bottom:269.786667pt;}
.y2c{bottom:270.426667pt;}
.y75{bottom:271.706667pt;}
.y68{bottom:273.626667pt;}
.ya1{bottom:282.266667pt;}
.yc4{bottom:282.586667pt;}
.ye9{bottom:286.266667pt;}
.y8f{bottom:288.186667pt;}
.y2b{bottom:288.826667pt;}
.y4b{bottom:296.506667pt;}
.y74{bottom:298.586667pt;}
.y67{bottom:301.346667pt;}
.yc3{bottom:306.306667pt;}
.y2a{bottom:307.266667pt;}
.ya0{bottom:309.826667pt;}
.ye8{bottom:309.986667pt;}
.y8e{bottom:315.906667pt;}
.y4a{bottom:323.426667pt;}
.yc2{bottom:324.706667pt;}
.y29{bottom:325.666667pt;}
.y73{bottom:327.746667pt;}
.y66{bottom:328.866667pt;}
.ye7{bottom:333.666667pt;}
.y9f{bottom:337.506667pt;}
.yc1{bottom:343.106667pt;}
.y8d{bottom:343.426667pt;}
.y28{bottom:344.066667pt;}
.y49{bottom:350.306667pt;}
.y72{bottom:350.786667pt;}
.ye6{bottom:352.066667pt;}
.y65{bottom:356.546667pt;}
.y27{bottom:362.466667pt;}
.y9e{bottom:365.026667pt;}
.y71{bottom:366.146667pt;}
.yc0{bottom:366.946667pt;}
.ye5{bottom:370.466667pt;}
.y8c{bottom:371.106667pt;}
.y48{bottom:377.026667pt;}
.y26{bottom:380.866667pt;}
.y64{bottom:384.066667pt;}
.ye4{bottom:388.866667pt;}
.ybf{bottom:390.626667pt;}
.y9d{bottom:392.706667pt;}
.y70{bottom:393.026667pt;}
.y8b{bottom:398.626667pt;}
.y25{bottom:399.266667pt;}
.y47{bottom:403.906667pt;}
.ybe{bottom:409.026667pt;}
.y63{bottom:411.746667pt;}
.ye3{bottom:412.706667pt;}
.y24{bottom:417.666667pt;}
.y9c{bottom:420.226667pt;}
.y8a{bottom:426.306667pt;}
.ybd{bottom:427.426667pt;}
.y46{bottom:430.786667pt;}
.y23{bottom:436.066667pt;}
.ye2{bottom:436.386667pt;}
.y62{bottom:439.266667pt;}
.ybc{bottom:445.826667pt;}
.y9b{bottom:447.906667pt;}
.y22{bottom:454.466667pt;}
.ye1{bottom:454.786667pt;}
.y55{bottom:457.506667pt;}
.y45{bottom:457.666667pt;}
.y89{bottom:459.106667pt;}
.y61{bottom:466.786667pt;}
.ybb{bottom:469.506667pt;}
.y21{bottom:472.866667pt;}
.ye0{bottom:473.186667pt;}
.y9a{bottom:475.426667pt;}
.y44{bottom:484.386667pt;}
.y88{bottom:486.786667pt;}
.y20{bottom:491.266667pt;}
.ydf{bottom:491.586667pt;}
.yba{bottom:493.346667pt;}
.y60{bottom:494.466667pt;}
.y99{bottom:502.946667pt;}
.y1f{bottom:509.666667pt;}
.y43{bottom:511.266667pt;}
.yb9{bottom:511.746667pt;}
.y87{bottom:514.306667pt;}
.yde{bottom:515.266667pt;}
.y5f{bottom:521.986667pt;}
.y1e{bottom:528.066667pt;}
.yb8{bottom:530.146667pt;}
.y98{bottom:530.626667pt;}
.y54{bottom:538.013333pt;}
.y42{bottom:538.173333pt;}
.ydd{bottom:538.973333pt;}
.y86{bottom:542.013333pt;}
.y1d{bottom:546.493333pt;}
.y5e{bottom:549.693333pt;}
.yb7{bottom:553.853333pt;}
.ydc{bottom:557.373333pt;}
.y97{bottom:558.173333pt;}
.y1c{bottom:564.893333pt;}
.y85{bottom:569.533333pt;}
.ydb{bottom:575.773333pt;}
.y5d{bottom:577.213333pt;}
.yb6{bottom:577.533333pt;}
.y1b{bottom:583.293333pt;}
.y41{bottom:591.773333pt;}
.yda{bottom:594.173333pt;}
.y96{bottom:595.773333pt;}
.yb5{bottom:595.933333pt;}
.y84{bottom:597.213333pt;}
.y1a{bottom:601.693333pt;}
.y5c{bottom:604.893333pt;}
.yd9{bottom:612.573333pt;}
.yb4{bottom:614.333333pt;}
.y40{bottom:618.653333pt;}
.y19{bottom:620.093333pt;}
.y83{bottom:624.733333pt;}
.yd8{bottom:630.973333pt;}
.y5b{bottom:632.413333pt;}
.yb3{bottom:638.173333pt;}
.y18{bottom:638.493333pt;}
.y3f{bottom:645.373333pt;}
.yd7{bottom:649.373333pt;}
.y82{bottom:652.413333pt;}
.y17{bottom:656.893333pt;}
.y95{bottom:657.693333pt;}
.y5a{bottom:660.093333pt;}
.yb2{bottom:661.853333pt;}
.yd6{bottom:667.773333pt;}
.y3e{bottom:672.253333pt;}
.y16{bottom:675.293333pt;}
.y81{bottom:679.933333pt;}
.yb1{bottom:680.253333pt;}
.y94{bottom:685.373333pt;}
.y59{bottom:687.613333pt;}
.yd5{bottom:691.613333pt;}
.y15{bottom:693.693333pt;}
.yb0{bottom:698.653333pt;}
.y3d{bottom:699.133333pt;}
.y80{bottom:707.613333pt;}
.y14{bottom:712.093333pt;}
.y93{bottom:712.893333pt;}
.y58{bottom:715.293333pt;}
.yaf{bottom:717.053333pt;}
.y53{bottom:725.853333pt;}
.y3c{bottom:726.013333pt;}
.y13{bottom:730.493333pt;}
.yd4{bottom:733.693333pt;}
.y7f{bottom:740.573333pt;}
.yae{bottom:740.733333pt;}
.y57{bottom:742.173333pt;}
.yd3{bottom:752.093333pt;}
.y3b{bottom:752.733333pt;}
.y12{bottom:754.973333pt;}
.yad{bottom:764.573333pt;}
.y11{bottom:767.293333pt;}
.y7e{bottom:768.093333pt;}
.yd2{bottom:775.813333pt;}
.y3a{bottom:779.653333pt;}
.yac{bottom:783.013333pt;}
.y10{bottom:785.733333pt;}
.y7d{bottom:795.813333pt;}
.yd1{bottom:799.653333pt;}
.yab{bottom:801.413333pt;}
.yf{bottom:804.133333pt;}
.y52{bottom:806.373333pt;}
.y39{bottom:806.533333pt;}
.yd0{bottom:818.053333pt;}
.y7c{bottom:823.333333pt;}
.ye{bottom:823.653333pt;}
.yaa{bottom:825.093333pt;}
.y38{bottom:833.253333pt;}
.ycf{bottom:836.453333pt;}
.yd{bottom:848.293333pt;}
.ya9{bottom:848.773333pt;}
.y7b{bottom:850.853333pt;}
.yce{bottom:854.853333pt;}
.y37{bottom:860.133333pt;}
.ya8{bottom:867.173333pt;}
.yc{bottom:872.773333pt;}
.y7a{bottom:878.533333pt;}
.y6f{bottom:883.653333pt;}
.y51{bottom:886.853333pt;}
.y36{bottom:887.013333pt;}
.ya7{bottom:890.853333pt;}
.yb{bottom:896.133333pt;}
.ycd{bottom:896.933333pt;}
.y79{bottom:906.053333pt;}
.y6e{bottom:911.493333pt;}
.y35{bottom:913.733333pt;}
.ycc{bottom:915.333333pt;}
.ya{bottom:915.653333pt;}
.ya6{bottom:917.893333pt;}
.y78{bottom:933.733333pt;}
.y6d{bottom:939.013333pt;}
.y9{bottom:940.293333pt;}
.y34{bottom:940.613333pt;}
.ycb{bottom:957.413333pt;}
.y8{bottom:964.773333pt;}
.y6c{bottom:966.693333pt;}
.y33{bottom:967.493333pt;}
.yca{bottom:975.813333pt;}
.y7{bottom:989.253333pt;}
.y32{bottom:991.653333pt;}
.y50{bottom:994.213333pt;}
.y1{bottom:1096.800000pt;}
.h6{height:38.441250pt;}
.h8{height:46.593750pt;}
.h5{height:46.781250pt;}
.h9{height:47.491563pt;}
.h3{height:52.785000pt;}
.h2{height:57.375000pt;}
.h7{height:66.507188pt;}
.h4{height:75.602187pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:113.471988pt;}
.xb{left:124.031988pt;}
.x7{left:141.946655pt;}
.x5{left:143.386655pt;}
.x8{left:151.226655pt;}
.xd{left:160.666655pt;}
.x4{left:205.626655pt;}
.x6{left:252.706655pt;}
.xc{left:374.306655pt;}
.x9{left:415.933322pt;}
.x1{left:434.813322pt;}
.xa{left:654.853322pt;}
.x3{left:718.373322pt;}
}




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