
    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_cab2580dacf52ef06559de43.woff')format("woff");}.ff1{font-family:ff1;line-height:1.090332;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_9f1aeab209d7227d58683b8b.woff')format("woff");}.ff2{font-family:ff2;line-height:1.090332;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_9058c53082b0d138e0b26894.woff')format("woff");}.ff3{font-family:ff3;line-height:0.921387;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_7e61ece33002f4e5b9ab55d4.woff')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_7d6b75423f4969bb22194cc5.woff')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_b6dff8a9415f322e8692ebb2.woff')format("woff");}.ff6{font-family:ff6;line-height:1.040039;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_43752e5db6cfb9b40fbaed66.woff')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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_8b5d22e8cfd4ee660af6a1c0.woff')format("woff");}.ff8{font-family:ff8;line-height:0.914062;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_a80655ff35a6a7857c91cc6b.woff')format("woff");}.ff9{font-family:ff9;line-height:0.914062;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_4f3fb4bb1e811996426f9846.woff')format("woff");}.ffa{font-family:ffa;line-height:0.969238;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_82fd5029fd3fca8698bc11bf.woff')format("woff");}.ffb{font-family:ffb;line-height:0.969238;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:ffc;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_cf9f6d16430008c58f469fb1.woff')format("woff");}.ffd{font-family:ffd;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-0.720000px;}
.ls4{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.216000px;}
.lsa{letter-spacing:-0.144000px;}
.ls0{letter-spacing:-0.092400px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.072000px;}
.ls6{letter-spacing:0.144000px;}
.ls8{letter-spacing:0.216000px;}
.ls3{letter-spacing:7.920000px;}
.ls5{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;}
}
.ws0{word-spacing:-66.147600px;}
.ws4{word-spacing:-59.760000px;}
.ws7{word-spacing:-18.216000px;}
.ws5{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.856000px;}
.ws8{word-spacing:-17.784000px;}
.ws6{word-spacing:-17.712000px;}
.ws2{word-spacing:0.000000px;}
._29{margin-left:-9.096000px;}
._15{margin-left:-8.064000px;}
._0{margin-left:-6.624000px;}
._1{margin-left:-5.616000px;}
._1a{margin-left:-4.512000px;}
._4{margin-left:-3.444000px;}
._2{margin-left:-1.800000px;}
._3{width:1.152000px;}
._14{width:2.232000px;}
._11{width:3.864000px;}
._12{width:5.040000px;}
._13{width:6.048000px;}
._22{width:7.056000px;}
._10{width:8.064000px;}
._e{width:9.504000px;}
._f{width:10.920000px;}
._18{width:12.480000px;}
._9{width:14.184000px;}
._a{width:15.912000px;}
._d{width:16.992000px;}
._7{width:19.368000px;}
._8{width:20.592000px;}
._1d{width:21.744000px;}
._1b{width:22.872000px;}
._1c{width:23.904000px;}
._b{width:24.912000px;}
._c{width:25.920000px;}
._23{width:27.288000px;}
._1e{width:28.296000px;}
._1f{width:29.712000px;}
._19{width:31.320000px;}
._16{width:32.400000px;}
._17{width:33.480000px;}
._6{width:35.064000px;}
._5{width:36.072000px;}
._21{width:37.080000px;}
._20{width:38.304000px;}
._2e{width:43.164000px;}
._2d{width:45.792000px;}
._2c{width:47.160000px;}
._24{width:48.744000px;}
._31{width:67.752000px;}
._32{width:69.300000px;}
._2a{width:79.776000px;}
._2b{width:80.940000px;}
._25{width:121.968000px;}
._26{width:123.192000px;}
._33{width:127.728000px;}
._34{width:128.736000px;}
._2f{width:168.192000px;}
._30{width:169.776000px;}
._28{width:186.984000px;}
._27{width:233.172000px;}
._35{width:846.156000px;}
.fc1{color:rgb(70,120,134);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y50{bottom:7.020000px;}
.y7e{bottom:7.065000px;}
.y52{bottom:7.200000px;}
.y5c{bottom:7.230000px;}
.y85{bottom:14.220000px;}
.y89{bottom:14.400000px;}
.y7a{bottom:30.780000px;}
.y74{bottom:30.810000px;}
.y70{bottom:30.960000px;}
.y84{bottom:45.180000px;}
.y2{bottom:46.980000px;}
.y71{bottom:54.720000px;}
.y1{bottom:67.140000px;}
.y86{bottom:76.320000px;}
.y4e{bottom:100.656000px;}
.yd7{bottom:101.556000px;}
.yad{bottom:103.716000px;}
.y2a{bottom:119.556000px;}
.yd6{bottom:125.496000px;}
.y6e{bottom:126.216000px;}
.ya4{bottom:127.116000px;}
.yac{bottom:127.476000px;}
.y4d{bottom:131.616000px;}
.yd5{bottom:149.256000px;}
.y29{bottom:150.690000px;}
.yab{bottom:151.230000px;}
.y6d{bottom:157.350000px;}
.ya3{bottom:158.250000px;}
.y4c{bottom:162.750000px;}
.yd4{bottom:173.010000px;}
.yaa{bottom:175.170000px;}
.y28{bottom:181.650000px;}
.y6c{bottom:188.310000px;}
.ya2{bottom:189.210000px;}
.y82{bottom:193.530000px;}
.y4b{bottom:193.710000px;}
.yd3{bottom:196.770000px;}
.ya9{bottom:198.930000px;}
.ydc{bottom:203.790000px;}
.y27{bottom:212.790000px;}
.y6b{bottom:219.450000px;}
.ya1{bottom:220.350000px;}
.yd2{bottom:220.710000px;}
.y81{bottom:222.150000px;}
.ya8{bottom:222.690000px;}
.y4a{bottom:224.850000px;}
.ydb{bottom:230.790000px;}
.y80{bottom:236.910000px;}
.y26{bottom:243.750000px;}
.yd1{bottom:244.470000px;}
.ya7{bottom:246.450000px;}
.y6a{bottom:250.410000px;}
.ya0{bottom:251.310000px;}
.y49{bottom:255.810000px;}
.yd0{bottom:268.230000px;}
.ya6{bottom:270.390000px;}
.y25{bottom:274.890000px;}
.y69{bottom:281.550000px;}
.y9f{bottom:282.450000px;}
.y48{bottom:286.950000px;}
.ycf{bottom:291.990000px;}
.ya5{bottom:294.150000px;}
.y24{bottom:305.850000px;}
.y7f{bottom:308.370000px;}
.y68{bottom:312.510000px;}
.y9e{bottom:313.410000px;}
.yce{bottom:315.930000px;}
.y47{bottom:317.910000px;}
.y23{bottom:329.610000px;}
.y7d{bottom:332.130000px;}
.ycd{bottom:339.735000px;}
.y67{bottom:343.695000px;}
.y9d{bottom:344.415000px;}
.y46{bottom:348.915000px;}
.y22{bottom:353.595000px;}
.y7c{bottom:355.935000px;}
.y66{bottom:361.155000px;}
.ycc{bottom:363.495000px;}
.y9c{bottom:375.555000px;}
.y7b{bottom:379.695000px;}
.y45{bottom:380.055000px;}
.y21{bottom:384.555000px;}
.y65{bottom:384.915000px;}
.ycb{bottom:387.255000px;}
.y79{bottom:403.635000px;}
.y9b{bottom:406.515000px;}
.y20{bottom:408.315000px;}
.y64{bottom:408.675000px;}
.y44{bottom:411.015000px;}
.y1f{bottom:432.255000px;}
.y63{bottom:432.615000px;}
.yca{bottom:434.955000px;}
.y9a{bottom:437.655000px;}
.y43{bottom:442.155000px;}
.y78{bottom:451.155000px;}
.y1e{bottom:456.015000px;}
.y62{bottom:456.375000px;}
.yc9{bottom:458.715000px;}
.y99{bottom:468.615000px;}
.y42{bottom:473.115000px;}
.y77{bottom:474.915000px;}
.y1d{bottom:479.775000px;}
.y61{bottom:480.135000px;}
.yc8{bottom:482.475000px;}
.y98{bottom:499.755000px;}
.y1c{bottom:503.535000px;}
.y60{bottom:503.895000px;}
.y41{bottom:504.255000px;}
.yc7{bottom:506.235000px;}
.y76{bottom:522.615000px;}
.y1b{bottom:527.475000px;}
.y5f{bottom:527.835000px;}
.yc6{bottom:530.175000px;}
.y97{bottom:530.715000px;}
.y40{bottom:535.215000px;}
.y75{bottom:546.375000px;}
.y1a{bottom:551.235000px;}
.y5e{bottom:551.595000px;}
.yc5{bottom:553.935000px;}
.y96{bottom:561.855000px;}
.y3f{bottom:566.355000px;}
.y19{bottom:574.995000px;}
.y5d{bottom:575.355000px;}
.yc4{bottom:577.695000px;}
.y95{bottom:592.815000px;}
.y73{bottom:594.075000px;}
.y3e{bottom:597.315000px;}
.y18{bottom:598.755000px;}
.y5b{bottom:599.115000px;}
.yc3{bottom:601.455000px;}
.y17{bottom:622.725000px;}
.y5a{bottom:623.085000px;}
.y94{bottom:623.985000px;}
.yc2{bottom:625.425000px;}
.y3d{bottom:628.485000px;}
.y72{bottom:641.625000px;}
.y16{bottom:646.485000px;}
.y59{bottom:646.845000px;}
.yc1{bottom:649.185000px;}
.y93{bottom:654.945000px;}
.y3c{bottom:659.445000px;}
.y6f{bottom:666.105000px;}
.y15{bottom:670.245000px;}
.y58{bottom:670.605000px;}
.yc0{bottom:672.945000px;}
.y92{bottom:686.085000px;}
.y3b{bottom:690.585000px;}
.y57{bottom:694.365000px;}
.ybf{bottom:696.705000px;}
.y14{bottom:701.385000px;}
.y91{bottom:703.545000px;}
.y56{bottom:718.125000px;}
.ybe{bottom:720.645000px;}
.y3a{bottom:721.545000px;}
.y13{bottom:732.345000px;}
.y90{bottom:734.505000px;}
.y55{bottom:742.065000px;}
.ybd{bottom:744.405000px;}
.y39{bottom:752.685000px;}
.y12{bottom:763.485000px;}
.y8f{bottom:765.645000px;}
.y54{bottom:765.825000px;}
.ybc{bottom:768.165000px;}
.y38{bottom:783.645000px;}
.y53{bottom:789.585000px;}
.ybb{bottom:791.925000px;}
.y11{bottom:794.445000px;}
.y8e{bottom:797.505000px;}
.y51{bottom:813.345000px;}
.y37{bottom:814.785000px;}
.yba{bottom:815.865000px;}
.y10{bottom:825.585000px;}
.y4f{bottom:838.005000px;}
.yb9{bottom:839.625000px;}
.yda{bottom:841.605000px;}
.y8d{bottom:843.585000px;}
.y36{bottom:845.745000px;}
.yf{bottom:856.545000px;}
.yb8{bottom:863.385000px;}
.yd9{bottom:872.790000px;}
.y8c{bottom:874.590000px;}
.y35{bottom:876.930000px;}
.yb7{bottom:887.190000px;}
.ye{bottom:887.550000px;}
.y8b{bottom:892.050000px;}
.yd8{bottom:903.750000px;}
.y34{bottom:907.890000px;}
.yb6{bottom:910.950000px;}
.yd{bottom:918.690000px;}
.y8a{bottom:923.190000px;}
.yb5{bottom:934.890000px;}
.y33{bottom:939.030000px;}
.yc{bottom:949.650000px;}
.y88{bottom:954.150000px;}
.yb4{bottom:958.650000px;}
.y32{bottom:969.990000px;}
.yb{bottom:980.790000px;}
.yb3{bottom:982.410000px;}
.y87{bottom:985.290000px;}
.y31{bottom:1001.130000px;}
.yb2{bottom:1006.170000px;}
.ya{bottom:1011.750000px;}
.y83{bottom:1017.150000px;}
.yb1{bottom:1030.110000px;}
.y30{bottom:1032.090000px;}
.y9{bottom:1042.890000px;}
.yb0{bottom:1053.870000px;}
.y2f{bottom:1063.230000px;}
.y8{bottom:1073.850000px;}
.yaf{bottom:1077.630000px;}
.y2e{bottom:1094.190000px;}
.y7{bottom:1097.790000px;}
.yae{bottom:1101.390000px;}
.y6{bottom:1121.550000px;}
.y2d{bottom:1125.330000px;}
.y5{bottom:1145.340000px;}
.y2c{bottom:1146.780000px;}
.y4{bottom:1169.100000px;}
.y2b{bottom:1169.280000px;}
.y3{bottom:1193.040000px;}
.h7{height:23.760000px;}
.he{height:23.796000px;}
.h8{height:23.940000px;}
.h9{height:23.976000px;}
.h11{height:30.960000px;}
.h12{height:31.140000px;}
.hf{height:42.164648px;}
.hd{height:47.520000px;}
.hb{height:47.556000px;}
.hc{height:47.700000px;}
.h5{height:50.273438px;}
.h3{height:50.800781px;}
.h6{height:54.246094px;}
.h2{height:57.410156px;}
.h4{height:59.343750px;}
.ha{height:71.460000px;}
.h10{height:93.060000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.we{width:62.640000px;}
.wb{width:74.880000px;}
.w12{width:76.140000px;}
.wd{width:80.640000px;}
.wa{width:88.416000px;}
.w14{width:90.180000px;}
.wc{width:93.636000px;}
.w8{width:102.456000px;}
.w9{width:104.940000px;}
.w13{width:106.596000px;}
.w11{width:108.036000px;}
.wf{width:115.236000px;}
.w10{width:118.260000px;}
.w7{width:131.940000px;}
.w5{width:134.100000px;}
.w6{width:146.016000px;}
.w4{width:190.830000px;}
.w3{width:206.130000px;}
.w15{width:313.950000px;}
.w16{width:363.135000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:8.100000px;}
.x2{left:108.035987px;}
.x11{left:135.035987px;}
.x9{left:141.875987px;}
.xa{left:145.475987px;}
.x18{left:150.329987px;}
.x12{left:162.029987px;}
.x1e{left:170.670000px;}
.xf{left:179.309987px;}
.x24{left:185.789987px;}
.x19{left:239.970000px;}
.x13{left:250.589987px;}
.x1d{left:252.389987px;}
.xd{left:274.709987px;}
.x1f{left:285.915000px;}
.x15{left:314.175000px;}
.xc{left:321.554987px;}
.xb{left:342.074987px;}
.x10{left:347.834987px;}
.x26{left:363.134987px;}
.x3{left:364.394987px;}
.xe{left:368.714987px;}
.x20{left:404.175000px;}
.x25{left:421.995000px;}
.x1{left:437.654987px;}
.x8{left:446.474987px;}
.x16{left:505.005000px;}
.x21{left:512.205000px;}
.x1a{left:535.785000px;}
.x7{left:577.904987px;}
.x22{left:588.345000px;}
.x6{left:608.504987px;}
.x1b{left:610.845000px;}
.x5{left:624.524987px;}
.x17{left:639.105000px;}
.x4{left:652.604987px;}
.x23{left:694.950000px;}
.x1c{left:704.490000px;}
.x27{left:751.649987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.640000pt;}
.ls4{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.192000pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:-0.082133pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.064000pt;}
.ls6{letter-spacing:0.128000pt;}
.ls8{letter-spacing:0.192000pt;}
.ls3{letter-spacing:7.040000pt;}
.ls5{letter-spacing:56.891307pt;}
.ws0{word-spacing:-58.797867pt;}
.ws4{word-spacing:-53.120000pt;}
.ws7{word-spacing:-16.192000pt;}
.ws5{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.872000pt;}
.ws8{word-spacing:-15.808000pt;}
.ws6{word-spacing:-15.744000pt;}
.ws2{word-spacing:0.000000pt;}
._29{margin-left:-8.085333pt;}
._15{margin-left:-7.168000pt;}
._0{margin-left:-5.888000pt;}
._1{margin-left:-4.992000pt;}
._1a{margin-left:-4.010667pt;}
._4{margin-left:-3.061333pt;}
._2{margin-left:-1.600000pt;}
._3{width:1.024000pt;}
._14{width:1.984000pt;}
._11{width:3.434667pt;}
._12{width:4.480000pt;}
._13{width:5.376000pt;}
._22{width:6.272000pt;}
._10{width:7.168000pt;}
._e{width:8.448000pt;}
._f{width:9.706667pt;}
._18{width:11.093333pt;}
._9{width:12.608000pt;}
._a{width:14.144000pt;}
._d{width:15.104000pt;}
._7{width:17.216000pt;}
._8{width:18.304000pt;}
._1d{width:19.328000pt;}
._1b{width:20.330667pt;}
._1c{width:21.248000pt;}
._b{width:22.144000pt;}
._c{width:23.040000pt;}
._23{width:24.256000pt;}
._1e{width:25.152000pt;}
._1f{width:26.410667pt;}
._19{width:27.840000pt;}
._16{width:28.800000pt;}
._17{width:29.760000pt;}
._6{width:31.168000pt;}
._5{width:32.064000pt;}
._21{width:32.960000pt;}
._20{width:34.048000pt;}
._2e{width:38.368000pt;}
._2d{width:40.704000pt;}
._2c{width:41.920000pt;}
._24{width:43.328000pt;}
._31{width:60.224000pt;}
._32{width:61.600000pt;}
._2a{width:70.912000pt;}
._2b{width:71.946667pt;}
._25{width:108.416000pt;}
._26{width:109.504000pt;}
._33{width:113.536000pt;}
._34{width:114.432000pt;}
._2f{width:149.504000pt;}
._30{width:150.912000pt;}
._28{width:166.208000pt;}
._27{width:207.264000pt;}
._35{width:752.138667pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y50{bottom:6.240000pt;}
.y7e{bottom:6.280000pt;}
.y52{bottom:6.400000pt;}
.y5c{bottom:6.426667pt;}
.y85{bottom:12.640000pt;}
.y89{bottom:12.800000pt;}
.y7a{bottom:27.360000pt;}
.y74{bottom:27.386667pt;}
.y70{bottom:27.520000pt;}
.y84{bottom:40.160000pt;}
.y2{bottom:41.760000pt;}
.y71{bottom:48.640000pt;}
.y1{bottom:59.680000pt;}
.y86{bottom:67.840000pt;}
.y4e{bottom:89.472000pt;}
.yd7{bottom:90.272000pt;}
.yad{bottom:92.192000pt;}
.y2a{bottom:106.272000pt;}
.yd6{bottom:111.552000pt;}
.y6e{bottom:112.192000pt;}
.ya4{bottom:112.992000pt;}
.yac{bottom:113.312000pt;}
.y4d{bottom:116.992000pt;}
.yd5{bottom:132.672000pt;}
.y29{bottom:133.946667pt;}
.yab{bottom:134.426667pt;}
.y6d{bottom:139.866667pt;}
.ya3{bottom:140.666667pt;}
.y4c{bottom:144.666667pt;}
.yd4{bottom:153.786667pt;}
.yaa{bottom:155.706667pt;}
.y28{bottom:161.466667pt;}
.y6c{bottom:167.386667pt;}
.ya2{bottom:168.186667pt;}
.y82{bottom:172.026667pt;}
.y4b{bottom:172.186667pt;}
.yd3{bottom:174.906667pt;}
.ya9{bottom:176.826667pt;}
.ydc{bottom:181.146667pt;}
.y27{bottom:189.146667pt;}
.y6b{bottom:195.066667pt;}
.ya1{bottom:195.866667pt;}
.yd2{bottom:196.186667pt;}
.y81{bottom:197.466667pt;}
.ya8{bottom:197.946667pt;}
.y4a{bottom:199.866667pt;}
.ydb{bottom:205.146667pt;}
.y80{bottom:210.586667pt;}
.y26{bottom:216.666667pt;}
.yd1{bottom:217.306667pt;}
.ya7{bottom:219.066667pt;}
.y6a{bottom:222.586667pt;}
.ya0{bottom:223.386667pt;}
.y49{bottom:227.386667pt;}
.yd0{bottom:238.426667pt;}
.ya6{bottom:240.346667pt;}
.y25{bottom:244.346667pt;}
.y69{bottom:250.266667pt;}
.y9f{bottom:251.066667pt;}
.y48{bottom:255.066667pt;}
.ycf{bottom:259.546667pt;}
.ya5{bottom:261.466667pt;}
.y24{bottom:271.866667pt;}
.y7f{bottom:274.106667pt;}
.y68{bottom:277.786667pt;}
.y9e{bottom:278.586667pt;}
.yce{bottom:280.826667pt;}
.y47{bottom:282.586667pt;}
.y23{bottom:292.986667pt;}
.y7d{bottom:295.226667pt;}
.ycd{bottom:301.986667pt;}
.y67{bottom:305.506667pt;}
.y9d{bottom:306.146667pt;}
.y46{bottom:310.146667pt;}
.y22{bottom:314.306667pt;}
.y7c{bottom:316.386667pt;}
.y66{bottom:321.026667pt;}
.ycc{bottom:323.106667pt;}
.y9c{bottom:333.826667pt;}
.y7b{bottom:337.506667pt;}
.y45{bottom:337.826667pt;}
.y21{bottom:341.826667pt;}
.y65{bottom:342.146667pt;}
.ycb{bottom:344.226667pt;}
.y79{bottom:358.786667pt;}
.y9b{bottom:361.346667pt;}
.y20{bottom:362.946667pt;}
.y64{bottom:363.266667pt;}
.y44{bottom:365.346667pt;}
.y1f{bottom:384.226667pt;}
.y63{bottom:384.546667pt;}
.yca{bottom:386.626667pt;}
.y9a{bottom:389.026667pt;}
.y43{bottom:393.026667pt;}
.y78{bottom:401.026667pt;}
.y1e{bottom:405.346667pt;}
.y62{bottom:405.666667pt;}
.yc9{bottom:407.746667pt;}
.y99{bottom:416.546667pt;}
.y42{bottom:420.546667pt;}
.y77{bottom:422.146667pt;}
.y1d{bottom:426.466667pt;}
.y61{bottom:426.786667pt;}
.yc8{bottom:428.866667pt;}
.y98{bottom:444.226667pt;}
.y1c{bottom:447.586667pt;}
.y60{bottom:447.906667pt;}
.y41{bottom:448.226667pt;}
.yc7{bottom:449.986667pt;}
.y76{bottom:464.546667pt;}
.y1b{bottom:468.866667pt;}
.y5f{bottom:469.186667pt;}
.yc6{bottom:471.266667pt;}
.y97{bottom:471.746667pt;}
.y40{bottom:475.746667pt;}
.y75{bottom:485.666667pt;}
.y1a{bottom:489.986667pt;}
.y5e{bottom:490.306667pt;}
.yc5{bottom:492.386667pt;}
.y96{bottom:499.426667pt;}
.y3f{bottom:503.426667pt;}
.y19{bottom:511.106667pt;}
.y5d{bottom:511.426667pt;}
.yc4{bottom:513.506667pt;}
.y95{bottom:526.946667pt;}
.y73{bottom:528.066667pt;}
.y3e{bottom:530.946667pt;}
.y18{bottom:532.226667pt;}
.y5b{bottom:532.546667pt;}
.yc3{bottom:534.626667pt;}
.y17{bottom:553.533333pt;}
.y5a{bottom:553.853333pt;}
.y94{bottom:554.653333pt;}
.yc2{bottom:555.933333pt;}
.y3d{bottom:558.653333pt;}
.y72{bottom:570.333333pt;}
.y16{bottom:574.653333pt;}
.y59{bottom:574.973333pt;}
.yc1{bottom:577.053333pt;}
.y93{bottom:582.173333pt;}
.y3c{bottom:586.173333pt;}
.y6f{bottom:592.093333pt;}
.y15{bottom:595.773333pt;}
.y58{bottom:596.093333pt;}
.yc0{bottom:598.173333pt;}
.y92{bottom:609.853333pt;}
.y3b{bottom:613.853333pt;}
.y57{bottom:617.213333pt;}
.ybf{bottom:619.293333pt;}
.y14{bottom:623.453333pt;}
.y91{bottom:625.373333pt;}
.y56{bottom:638.333333pt;}
.ybe{bottom:640.573333pt;}
.y3a{bottom:641.373333pt;}
.y13{bottom:650.973333pt;}
.y90{bottom:652.893333pt;}
.y55{bottom:659.613333pt;}
.ybd{bottom:661.693333pt;}
.y39{bottom:669.053333pt;}
.y12{bottom:678.653333pt;}
.y8f{bottom:680.573333pt;}
.y54{bottom:680.733333pt;}
.ybc{bottom:682.813333pt;}
.y38{bottom:696.573333pt;}
.y53{bottom:701.853333pt;}
.ybb{bottom:703.933333pt;}
.y11{bottom:706.173333pt;}
.y8e{bottom:708.893333pt;}
.y51{bottom:722.973333pt;}
.y37{bottom:724.253333pt;}
.yba{bottom:725.213333pt;}
.y10{bottom:733.853333pt;}
.y4f{bottom:744.893333pt;}
.yb9{bottom:746.333333pt;}
.yda{bottom:748.093333pt;}
.y8d{bottom:749.853333pt;}
.y36{bottom:751.773333pt;}
.yf{bottom:761.373333pt;}
.yb8{bottom:767.453333pt;}
.yd9{bottom:775.813333pt;}
.y8c{bottom:777.413333pt;}
.y35{bottom:779.493333pt;}
.yb7{bottom:788.613333pt;}
.ye{bottom:788.933333pt;}
.y8b{bottom:792.933333pt;}
.yd8{bottom:803.333333pt;}
.y34{bottom:807.013333pt;}
.yb6{bottom:809.733333pt;}
.yd{bottom:816.613333pt;}
.y8a{bottom:820.613333pt;}
.yb5{bottom:831.013333pt;}
.y33{bottom:834.693333pt;}
.yc{bottom:844.133333pt;}
.y88{bottom:848.133333pt;}
.yb4{bottom:852.133333pt;}
.y32{bottom:862.213333pt;}
.yb{bottom:871.813333pt;}
.yb3{bottom:873.253333pt;}
.y87{bottom:875.813333pt;}
.y31{bottom:889.893333pt;}
.yb2{bottom:894.373333pt;}
.ya{bottom:899.333333pt;}
.y83{bottom:904.133333pt;}
.yb1{bottom:915.653333pt;}
.y30{bottom:917.413333pt;}
.y9{bottom:927.013333pt;}
.yb0{bottom:936.773333pt;}
.y2f{bottom:945.093333pt;}
.y8{bottom:954.533333pt;}
.yaf{bottom:957.893333pt;}
.y2e{bottom:972.613333pt;}
.y7{bottom:975.813333pt;}
.yae{bottom:979.013333pt;}
.y6{bottom:996.933333pt;}
.y2d{bottom:1000.293333pt;}
.y5{bottom:1018.080000pt;}
.y2c{bottom:1019.360000pt;}
.y4{bottom:1039.200000pt;}
.y2b{bottom:1039.360000pt;}
.y3{bottom:1060.480000pt;}
.h7{height:21.120000pt;}
.he{height:21.152000pt;}
.h8{height:21.280000pt;}
.h9{height:21.312000pt;}
.h11{height:27.520000pt;}
.h12{height:27.680000pt;}
.hf{height:37.479688pt;}
.hd{height:42.240000pt;}
.hb{height:42.272000pt;}
.hc{height:42.400000pt;}
.h5{height:44.687500pt;}
.h3{height:45.156250pt;}
.h6{height:48.218750pt;}
.h2{height:51.031250pt;}
.h4{height:52.750000pt;}
.ha{height:63.520000pt;}
.h10{height:82.720000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.we{width:55.680000pt;}
.wb{width:66.560000pt;}
.w12{width:67.680000pt;}
.wd{width:71.680000pt;}
.wa{width:78.592000pt;}
.w14{width:80.160000pt;}
.wc{width:83.232000pt;}
.w8{width:91.072000pt;}
.w9{width:93.280000pt;}
.w13{width:94.752000pt;}
.w11{width:96.032000pt;}
.wf{width:102.432000pt;}
.w10{width:105.120000pt;}
.w7{width:117.280000pt;}
.w5{width:119.200000pt;}
.w6{width:129.792000pt;}
.w4{width:169.626667pt;}
.w3{width:183.226667pt;}
.w15{width:279.066667pt;}
.w16{width:322.786667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:7.200000pt;}
.x2{left:96.031988pt;}
.x11{left:120.031988pt;}
.x9{left:126.111988pt;}
.xa{left:129.311988pt;}
.x18{left:133.626655pt;}
.x12{left:144.026655pt;}
.x1e{left:151.706667pt;}
.xf{left:159.386655pt;}
.x24{left:165.146655pt;}
.x19{left:213.306667pt;}
.x13{left:222.746655pt;}
.x1d{left:224.346655pt;}
.xd{left:244.186655pt;}
.x1f{left:254.146667pt;}
.x15{left:279.266667pt;}
.xc{left:285.826655pt;}
.xb{left:304.066655pt;}
.x10{left:309.186655pt;}
.x26{left:322.786655pt;}
.x3{left:323.906655pt;}
.xe{left:327.746655pt;}
.x20{left:359.266667pt;}
.x25{left:375.106667pt;}
.x1{left:389.026655pt;}
.x8{left:396.866655pt;}
.x16{left:448.893333pt;}
.x21{left:455.293333pt;}
.x1a{left:476.253333pt;}
.x7{left:513.693322pt;}
.x22{left:522.973333pt;}
.x6{left:540.893322pt;}
.x1b{left:542.973333pt;}
.x5{left:555.133322pt;}
.x17{left:568.093333pt;}
.x4{left:580.093322pt;}
.x23{left:617.733333pt;}
.x1c{left:626.213333pt;}
.x27{left:668.133322pt;}
}




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