
    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_54aebb73c678e8d4e88569e8.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_c2e4903522d4f2c78209a731.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_5c5e0939a9878ce9691847f0.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_8747b824532cafc35780fbf3.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c75dcceca9647c4d9de4387d.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_287da114ffe72c743ce0ff3d.woff')format("woff");}.ff8{font-family:ff8;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:97.200000px;}
.ls2{letter-spacing:-0.144000px;}
.ls6{letter-spacing:-0.058320px;}
.ls1{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.256200px;}
.ls5{letter-spacing:0.576000px;}
.ls7{letter-spacing:7.200000px;}
.ls4{letter-spacing:23.760000px;}
.ls8{letter-spacing:33.984000px;}
.ls3{letter-spacing:64.026720px;}
.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;}
}
.ws4{word-spacing:-59.760000px;}
.ws5{word-spacing:-19.038240px;}
.ws6{word-spacing:-18.576000px;}
.ws8{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.000000px;}
.ws1{word-spacing:-17.856000px;}
.ws0{word-spacing:-15.226440px;}
.ws7{word-spacing:-13.505760px;}
.ws2{word-spacing:0.000000px;}
._17{margin-left:-4.752000px;}
._15{margin-left:-3.600000px;}
._a{margin-left:-2.232000px;}
._0{margin-left:-1.080000px;}
._1{width:1.632000px;}
._7{width:3.024000px;}
._6{width:4.608000px;}
._5{width:6.480000px;}
._4{width:8.136000px;}
._3{width:9.792000px;}
._2{width:10.872000px;}
._b{width:12.240000px;}
._12{width:13.464000px;}
._9{width:14.556000px;}
._8{width:15.768000px;}
._10{width:16.848000px;}
._16{width:19.584000px;}
._d{width:20.808000px;}
._14{width:22.104000px;}
._c{width:23.328000px;}
._11{width:24.408000px;}
._1a{width:25.992000px;}
._21{width:27.144000px;}
._13{width:28.224000px;}
._f{width:29.592000px;}
._1d{width:30.624000px;}
._1e{width:31.656000px;}
._20{width:33.048000px;}
._1f{width:34.560000px;}
._e{width:36.000000px;}
._23{width:40.176000px;}
._18{width:46.512000px;}
._19{width:47.568000px;}
._22{width:62.590560px;}
._1c{width:99.490800px;}
._1b{width:352.470000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:36.000000px;}
.fs3{font-size:59.760000px;}
.fs7{font-size:59.904000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs6{font-size:84.384000px;}
.fs4{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y64{bottom:3.960000px;}
.ye7{bottom:13.680000px;}
.yaf{bottom:13.755000px;}
.ya1{bottom:24.660000px;}
.ye6{bottom:32.010000px;}
.yae{bottom:32.040000px;}
.y82{bottom:45.360000px;}
.y83{bottom:46.590000px;}
.ydc{bottom:51.480000px;}
.ya7{bottom:51.555000px;}
.y2{bottom:58.320000px;}
.y81{bottom:70.020000px;}
.ydd{bottom:71.745000px;}
.ya8{bottom:77.655000px;}
.y1{bottom:78.516000px;}
.yde{bottom:91.980000px;}
.yb1{bottom:96.735000px;}
.y58{bottom:101.196000px;}
.ya9{bottom:103.785000px;}
.ya5{bottom:104.436000px;}
.yda{bottom:105.156000px;}
.y79{bottom:105.480000px;}
.ye9{bottom:109.410000px;}
.yfc{bottom:111.636000px;}
.y2e{bottom:112.176000px;}
.ydf{bottom:112.215000px;}
.ya4{bottom:113.436000px;}
.y80{bottom:115.230000px;}
.y76{bottom:118.116000px;}
.y57{bottom:121.896000px;}
.yb0{bottom:123.840000px;}
.yd9{bottom:125.856000px;}
.yaa{bottom:129.885000px;}
.y78{bottom:130.140000px;}
.yfb{bottom:132.156000px;}
.ye0{bottom:132.480000px;}
.y2d{bottom:132.876000px;}
.ya3{bottom:134.856000px;}
.ye8{bottom:136.545000px;}
.y7f{bottom:138.270000px;}
.y75{bottom:138.816000px;}
.y56{bottom:142.596000px;}
.yd8{bottom:146.556000px;}
.ye1{bottom:152.715000px;}
.yfa{bottom:152.850000px;}
.y2c{bottom:153.570000px;}
.yab{bottom:156.030000px;}
.ya2{bottom:156.270000px;}
.y74{bottom:159.510000px;}
.y7e{bottom:161.310000px;}
.y55{bottom:163.290000px;}
.y7b{bottom:165.600000px;}
.yd7{bottom:167.250000px;}
.ye2{bottom:172.950000px;}
.yf9{bottom:173.550000px;}
.y2b{bottom:174.270000px;}
.ya0{bottom:177.690000px;}
.y73{bottom:180.210000px;}
.yac{bottom:182.130000px;}
.y54{bottom:183.990000px;}
.yd6{bottom:187.950000px;}
.y7a{bottom:190.260000px;}
.ye3{bottom:193.215000px;}
.yf8{bottom:194.250000px;}
.y2a{bottom:194.970000px;}
.y72{bottom:200.910000px;}
.y53{bottom:204.690000px;}
.y7d{bottom:206.895000px;}
.yad{bottom:208.230000px;}
.yd5{bottom:208.650000px;}
.ye4{bottom:213.450000px;}
.yf7{bottom:214.950000px;}
.y29{bottom:215.670000px;}
.y71{bottom:221.610000px;}
.y9f{bottom:223.950000px;}
.y52{bottom:225.390000px;}
.yd4{bottom:229.350000px;}
.y7c{bottom:229.935000px;}
.ye5{bottom:233.670000px;}
.yf6{bottom:235.650000px;}
.y28{bottom:236.370000px;}
.y70{bottom:242.310000px;}
.y9e{bottom:242.670000px;}
.y51{bottom:246.090000px;}
.yd3{bottom:250.050000px;}
.y9d{bottom:254.910000px;}
.yf5{bottom:256.350000px;}
.y27{bottom:257.070000px;}
.y6f{bottom:263.010000px;}
.y50{bottom:266.790000px;}
.yd2{bottom:270.750000px;}
.y9c{bottom:275.610000px;}
.yf4{bottom:277.050000px;}
.y26{bottom:277.770000px;}
.y6e{bottom:283.710000px;}
.y4f{bottom:285.510000px;}
.yc7{bottom:287.490000px;}
.yd1{bottom:291.495000px;}
.y9b{bottom:296.355000px;}
.y4e{bottom:297.795000px;}
.y25{bottom:298.515000px;}
.y6d{bottom:304.455000px;}
.yc6{bottom:308.235000px;}
.yd0{bottom:312.195000px;}
.y9a{bottom:317.055000px;}
.y4d{bottom:318.495000px;}
.y24{bottom:319.215000px;}
.y6c{bottom:325.155000px;}
.yc5{bottom:328.935000px;}
.ycf{bottom:332.895000px;}
.y99{bottom:337.755000px;}
.y4c{bottom:339.195000px;}
.y23{bottom:339.915000px;}
.y6b{bottom:345.855000px;}
.yc4{bottom:349.635000px;}
.yce{bottom:353.595000px;}
.y98{bottom:358.455000px;}
.y4b{bottom:359.895000px;}
.y22{bottom:360.615000px;}
.y6a{bottom:366.555000px;}
.yc3{bottom:370.335000px;}
.ycd{bottom:372.495000px;}
.yf3{bottom:378.795000px;}
.y97{bottom:379.155000px;}
.y21{bottom:379.335000px;}
.y4a{bottom:380.595000px;}
.ycc{bottom:380.775000px;}
.ydb{bottom:380.880000px;}
.y69{bottom:385.275000px;}
.yc2{bottom:391.035000px;}
.y20{bottom:391.575000px;}
.y68{bottom:395.175000px;}
.y96{bottom:399.855000px;}
.y49{bottom:401.295000px;}
.yc1{bottom:411.735000px;}
.y1f{bottom:412.275000px;}
.y67{bottom:416.595000px;}
.y95{bottom:420.555000px;}
.y48{bottom:421.995000px;}
.y1e{bottom:431.175000px;}
.yc0{bottom:432.435000px;}
.y66{bottom:438.015000px;}
.y94{bottom:439.275000px;}
.y47{bottom:442.695000px;}
.y1d{bottom:443.415000px;}
.yfd{bottom:451.155000px;}
.y93{bottom:451.515000px;}
.ybf{bottom:453.135000px;}
.y65{bottom:459.435000px;}
.y46{bottom:463.395000px;}
.y1c{bottom:464.115000px;}
.y92{bottom:472.215000px;}
.ybe{bottom:473.835000px;}
.y63{bottom:480.855000px;}
.y45{bottom:484.095000px;}
.y1b{bottom:484.815000px;}
.y91{bottom:492.915000px;}
.ybd{bottom:494.535000px;}
.y44{bottom:504.795000px;}
.y1a{bottom:505.515000px;}
.y62{bottom:506.415000px;}
.y90{bottom:513.615000px;}
.ybc{bottom:515.235000px;}
.y43{bottom:525.525000px;}
.y19{bottom:526.245000px;}
.y61{bottom:527.145000px;}
.y8f{bottom:534.345000px;}
.ybb{bottom:535.965000px;}
.y42{bottom:546.225000px;}
.y18{bottom:546.945000px;}
.y60{bottom:547.665000px;}
.yba{bottom:554.685000px;}
.y8e{bottom:555.045000px;}
.yf2{bottom:556.665000px;}
.y41{bottom:566.925000px;}
.y17{bottom:567.645000px;}
.y5f{bottom:568.365000px;}
.y8d{bottom:575.745000px;}
.yf1{bottom:577.365000px;}
.y40{bottom:585.825000px;}
.yb9{bottom:587.625000px;}
.y16{bottom:588.345000px;}
.y5e{bottom:589.065000px;}
.y8c{bottom:596.445000px;}
.y3f{bottom:598.065000px;}
.yb8{bottom:608.325000px;}
.y15{bottom:609.045000px;}
.y5d{bottom:609.765000px;}
.y8b{bottom:617.145000px;}
.y3e{bottom:618.765000px;}
.yb7{bottom:629.025000px;}
.y14{bottom:629.745000px;}
.y5c{bottom:630.465000px;}
.y8a{bottom:637.845000px;}
.y3d{bottom:639.465000px;}
.yb6{bottom:649.725000px;}
.y13{bottom:650.445000px;}
.y5b{bottom:651.165000px;}
.y89{bottom:658.545000px;}
.y3c{bottom:660.165000px;}
.yb5{bottom:670.425000px;}
.y12{bottom:671.145000px;}
.y5a{bottom:671.865000px;}
.y88{bottom:679.245000px;}
.y3b{bottom:680.865000px;}
.y59{bottom:688.605000px;}
.y77{bottom:688.680000px;}
.yb4{bottom:691.125000px;}
.y11{bottom:691.845000px;}
.y87{bottom:699.945000px;}
.y3a{bottom:701.565000px;}
.yb3{bottom:711.825000px;}
.y10{bottom:712.545000px;}
.y86{bottom:720.645000px;}
.y39{bottom:722.265000px;}
.yb2{bottom:732.525000px;}
.yf{bottom:733.245000px;}
.y85{bottom:739.545000px;}
.y38{bottom:740.985000px;}
.ycb{bottom:742.965000px;}
.y84{bottom:747.825000px;}
.ya6{bottom:747.900000px;}
.y37{bottom:753.225000px;}
.ye{bottom:753.990000px;}
.yca{bottom:763.710000px;}
.y36{bottom:773.970000px;}
.yd{bottom:774.690000px;}
.yc9{bottom:784.410000px;}
.y35{bottom:794.670000px;}
.yc{bottom:795.390000px;}
.yc8{bottom:803.130000px;}
.yf0{bottom:805.110000px;}
.y34{bottom:815.370000px;}
.yb{bottom:815.910000px;}
.yef{bottom:825.810000px;}
.y33{bottom:836.070000px;}
.ya{bottom:836.610000px;}
.yee{bottom:846.510000px;}
.y9{bottom:855.510000px;}
.y32{bottom:856.770000px;}
.yed{bottom:867.210000px;}
.y8{bottom:872.610000px;}
.y31{bottom:877.470000px;}
.yec{bottom:887.910000px;}
.y7{bottom:893.310000px;}
.y30{bottom:898.170000px;}
.yeb{bottom:908.610000px;}
.y6{bottom:914.010000px;}
.y2f{bottom:918.870000px;}
.yea{bottom:927.330000px;}
.y5{bottom:939.570000px;}
.y4{bottom:960.270000px;}
.y3{bottom:980.970000px;}
.h6{height:20.700000px;}
.h5{height:25.400391px;}
.hb{height:41.400000px;}
.h3{height:50.800781px;}
.hd{height:59.439023px;}
.he{height:59.582250px;}
.h4{height:64.546875px;}
.h2{height:67.824844px;}
.h9{height:83.787539px;}
.h8{height:89.516602px;}
.ha{height:181.130766px;}
.hc{height:229.140000px;}
.hf{height:254.700000px;}
.h7{height:288.360000px;}
.h1{height:1092.750000px;}
.h0{height:1092.780000px;}
.w6{width:141.480000px;}
.w3{width:167.430000px;}
.w5{width:170.310000px;}
.w7{width:193.575000px;}
.w4{width:243.210000px;}
.w8{width:245.910000px;}
.w9{width:514.260000px;}
.wa{width:545.940000px;}
.w2{width:773.819988px;}
.w0{width:773.820000px;}
.w1{width:774.000000px;}
.x0{left:0.000000px;}
.xc{left:7.740000px;}
.x27{left:9.792000px;}
.x26{left:17.388000px;}
.x25{left:25.020000px;}
.x23{left:26.280000px;}
.x1d{left:28.305000px;}
.x2c{left:42.660000px;}
.x1b{left:43.740000px;}
.x21{left:52.200000px;}
.x20{left:70.380000px;}
.x1e{left:72.765000px;}
.x22{left:80.325000px;}
.x28{left:88.200000px;}
.x9{left:95.075988px;}
.x11{left:103.067988px;}
.x10{left:120.887988px;}
.xa{left:122.075988px;}
.x24{left:129.780000px;}
.x4{left:141.515988px;}
.xf{left:149.075988px;}
.x29{left:167.430000px;}
.x5{left:171.389988px;}
.x7{left:191.369988px;}
.x8{left:197.489988px;}
.x2d{left:224.280000px;}
.x1c{left:237.990000px;}
.xd{left:263.955000px;}
.x13{left:302.399988px;}
.x18{left:303.839988px;}
.x2a{left:314.310000px;}
.x6{left:322.274988px;}
.x2f{left:324.930000px;}
.x12{left:329.039988px;}
.x3{left:335.414988px;}
.x2e{left:342.255000px;}
.x1{left:378.614988px;}
.x2{left:386.894988px;}
.x1f{left:432.285000px;}
.x2b{left:442.590000px;}
.x30{left:474.300000px;}
.x14{left:495.644988px;}
.x19{left:501.404988px;}
.x17{left:503.609988px;}
.xe{left:507.885000px;}
.x16{left:513.869988px;}
.x15{left:519.089988px;}
.xb{left:641.849988px;}
.x1a{left:644.189988px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:86.400000pt;}
.ls2{letter-spacing:-0.128000pt;}
.ls6{letter-spacing:-0.051840pt;}
.ls1{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.227733pt;}
.ls5{letter-spacing:0.512000pt;}
.ls7{letter-spacing:6.400000pt;}
.ls4{letter-spacing:21.120000pt;}
.ls8{letter-spacing:30.208000pt;}
.ls3{letter-spacing:56.912640pt;}
.ws4{word-spacing:-53.120000pt;}
.ws5{word-spacing:-16.922880pt;}
.ws6{word-spacing:-16.512000pt;}
.ws8{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws1{word-spacing:-15.872000pt;}
.ws0{word-spacing:-13.534613pt;}
.ws7{word-spacing:-12.005120pt;}
.ws2{word-spacing:0.000000pt;}
._17{margin-left:-4.224000pt;}
._15{margin-left:-3.200000pt;}
._a{margin-left:-1.984000pt;}
._0{margin-left:-0.960000pt;}
._1{width:1.450667pt;}
._7{width:2.688000pt;}
._6{width:4.096000pt;}
._5{width:5.760000pt;}
._4{width:7.232000pt;}
._3{width:8.704000pt;}
._2{width:9.664000pt;}
._b{width:10.880000pt;}
._12{width:11.968000pt;}
._9{width:12.938667pt;}
._8{width:14.016000pt;}
._10{width:14.976000pt;}
._16{width:17.408000pt;}
._d{width:18.496000pt;}
._14{width:19.648000pt;}
._c{width:20.736000pt;}
._11{width:21.696000pt;}
._1a{width:23.104000pt;}
._21{width:24.128000pt;}
._13{width:25.088000pt;}
._f{width:26.304000pt;}
._1d{width:27.221333pt;}
._1e{width:28.138667pt;}
._20{width:29.376000pt;}
._1f{width:30.720000pt;}
._e{width:32.000000pt;}
._23{width:35.712000pt;}
._18{width:41.344000pt;}
._19{width:42.282667pt;}
._22{width:55.636053pt;}
._1c{width:88.436267pt;}
._1b{width:313.306667pt;}
.fs2{font-size:32.000000pt;}
.fs3{font-size:53.120000pt;}
.fs7{font-size:53.248000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs6{font-size:75.008000pt;}
.fs4{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y64{bottom:3.520000pt;}
.ye7{bottom:12.160000pt;}
.yaf{bottom:12.226667pt;}
.ya1{bottom:21.920000pt;}
.ye6{bottom:28.453333pt;}
.yae{bottom:28.480000pt;}
.y82{bottom:40.320000pt;}
.y83{bottom:41.413333pt;}
.ydc{bottom:45.760000pt;}
.ya7{bottom:45.826667pt;}
.y2{bottom:51.840000pt;}
.y81{bottom:62.240000pt;}
.ydd{bottom:63.773333pt;}
.ya8{bottom:69.026667pt;}
.y1{bottom:69.792000pt;}
.yde{bottom:81.760000pt;}
.yb1{bottom:85.986667pt;}
.y58{bottom:89.952000pt;}
.ya9{bottom:92.253333pt;}
.ya5{bottom:92.832000pt;}
.yda{bottom:93.472000pt;}
.y79{bottom:93.760000pt;}
.ye9{bottom:97.253333pt;}
.yfc{bottom:99.232000pt;}
.y2e{bottom:99.712000pt;}
.ydf{bottom:99.746667pt;}
.ya4{bottom:100.832000pt;}
.y80{bottom:102.426667pt;}
.y76{bottom:104.992000pt;}
.y57{bottom:108.352000pt;}
.yb0{bottom:110.080000pt;}
.yd9{bottom:111.872000pt;}
.yaa{bottom:115.453333pt;}
.y78{bottom:115.680000pt;}
.yfb{bottom:117.472000pt;}
.ye0{bottom:117.760000pt;}
.y2d{bottom:118.112000pt;}
.ya3{bottom:119.872000pt;}
.ye8{bottom:121.373333pt;}
.y7f{bottom:122.906667pt;}
.y75{bottom:123.392000pt;}
.y56{bottom:126.752000pt;}
.yd8{bottom:130.272000pt;}
.ye1{bottom:135.746667pt;}
.yfa{bottom:135.866667pt;}
.y2c{bottom:136.506667pt;}
.yab{bottom:138.693333pt;}
.ya2{bottom:138.906667pt;}
.y74{bottom:141.786667pt;}
.y7e{bottom:143.386667pt;}
.y55{bottom:145.146667pt;}
.y7b{bottom:147.200000pt;}
.yd7{bottom:148.666667pt;}
.ye2{bottom:153.733333pt;}
.yf9{bottom:154.266667pt;}
.y2b{bottom:154.906667pt;}
.ya0{bottom:157.946667pt;}
.y73{bottom:160.186667pt;}
.yac{bottom:161.893333pt;}
.y54{bottom:163.546667pt;}
.yd6{bottom:167.066667pt;}
.y7a{bottom:169.120000pt;}
.ye3{bottom:171.746667pt;}
.yf8{bottom:172.666667pt;}
.y2a{bottom:173.306667pt;}
.y72{bottom:178.586667pt;}
.y53{bottom:181.946667pt;}
.y7d{bottom:183.906667pt;}
.yad{bottom:185.093333pt;}
.yd5{bottom:185.466667pt;}
.ye4{bottom:189.733333pt;}
.yf7{bottom:191.066667pt;}
.y29{bottom:191.706667pt;}
.y71{bottom:196.986667pt;}
.y9f{bottom:199.066667pt;}
.y52{bottom:200.346667pt;}
.yd4{bottom:203.866667pt;}
.y7c{bottom:204.386667pt;}
.ye5{bottom:207.706667pt;}
.yf6{bottom:209.466667pt;}
.y28{bottom:210.106667pt;}
.y70{bottom:215.386667pt;}
.y9e{bottom:215.706667pt;}
.y51{bottom:218.746667pt;}
.yd3{bottom:222.266667pt;}
.y9d{bottom:226.586667pt;}
.yf5{bottom:227.866667pt;}
.y27{bottom:228.506667pt;}
.y6f{bottom:233.786667pt;}
.y50{bottom:237.146667pt;}
.yd2{bottom:240.666667pt;}
.y9c{bottom:244.986667pt;}
.yf4{bottom:246.266667pt;}
.y26{bottom:246.906667pt;}
.y6e{bottom:252.186667pt;}
.y4f{bottom:253.786667pt;}
.yc7{bottom:255.546667pt;}
.yd1{bottom:259.106667pt;}
.y9b{bottom:263.426667pt;}
.y4e{bottom:264.706667pt;}
.y25{bottom:265.346667pt;}
.y6d{bottom:270.626667pt;}
.yc6{bottom:273.986667pt;}
.yd0{bottom:277.506667pt;}
.y9a{bottom:281.826667pt;}
.y4d{bottom:283.106667pt;}
.y24{bottom:283.746667pt;}
.y6c{bottom:289.026667pt;}
.yc5{bottom:292.386667pt;}
.ycf{bottom:295.906667pt;}
.y99{bottom:300.226667pt;}
.y4c{bottom:301.506667pt;}
.y23{bottom:302.146667pt;}
.y6b{bottom:307.426667pt;}
.yc4{bottom:310.786667pt;}
.yce{bottom:314.306667pt;}
.y98{bottom:318.626667pt;}
.y4b{bottom:319.906667pt;}
.y22{bottom:320.546667pt;}
.y6a{bottom:325.826667pt;}
.yc3{bottom:329.186667pt;}
.ycd{bottom:331.106667pt;}
.yf3{bottom:336.706667pt;}
.y97{bottom:337.026667pt;}
.y21{bottom:337.186667pt;}
.y4a{bottom:338.306667pt;}
.ycc{bottom:338.466667pt;}
.ydb{bottom:338.560000pt;}
.y69{bottom:342.466667pt;}
.yc2{bottom:347.586667pt;}
.y20{bottom:348.066667pt;}
.y68{bottom:351.266667pt;}
.y96{bottom:355.426667pt;}
.y49{bottom:356.706667pt;}
.yc1{bottom:365.986667pt;}
.y1f{bottom:366.466667pt;}
.y67{bottom:370.306667pt;}
.y95{bottom:373.826667pt;}
.y48{bottom:375.106667pt;}
.y1e{bottom:383.266667pt;}
.yc0{bottom:384.386667pt;}
.y66{bottom:389.346667pt;}
.y94{bottom:390.466667pt;}
.y47{bottom:393.506667pt;}
.y1d{bottom:394.146667pt;}
.yfd{bottom:401.026667pt;}
.y93{bottom:401.346667pt;}
.ybf{bottom:402.786667pt;}
.y65{bottom:408.386667pt;}
.y46{bottom:411.906667pt;}
.y1c{bottom:412.546667pt;}
.y92{bottom:419.746667pt;}
.ybe{bottom:421.186667pt;}
.y63{bottom:427.426667pt;}
.y45{bottom:430.306667pt;}
.y1b{bottom:430.946667pt;}
.y91{bottom:438.146667pt;}
.ybd{bottom:439.586667pt;}
.y44{bottom:448.706667pt;}
.y1a{bottom:449.346667pt;}
.y62{bottom:450.146667pt;}
.y90{bottom:456.546667pt;}
.ybc{bottom:457.986667pt;}
.y43{bottom:467.133333pt;}
.y19{bottom:467.773333pt;}
.y61{bottom:468.573333pt;}
.y8f{bottom:474.973333pt;}
.ybb{bottom:476.413333pt;}
.y42{bottom:485.533333pt;}
.y18{bottom:486.173333pt;}
.y60{bottom:486.813333pt;}
.yba{bottom:493.053333pt;}
.y8e{bottom:493.373333pt;}
.yf2{bottom:494.813333pt;}
.y41{bottom:503.933333pt;}
.y17{bottom:504.573333pt;}
.y5f{bottom:505.213333pt;}
.y8d{bottom:511.773333pt;}
.yf1{bottom:513.213333pt;}
.y40{bottom:520.733333pt;}
.yb9{bottom:522.333333pt;}
.y16{bottom:522.973333pt;}
.y5e{bottom:523.613333pt;}
.y8c{bottom:530.173333pt;}
.y3f{bottom:531.613333pt;}
.yb8{bottom:540.733333pt;}
.y15{bottom:541.373333pt;}
.y5d{bottom:542.013333pt;}
.y8b{bottom:548.573333pt;}
.y3e{bottom:550.013333pt;}
.yb7{bottom:559.133333pt;}
.y14{bottom:559.773333pt;}
.y5c{bottom:560.413333pt;}
.y8a{bottom:566.973333pt;}
.y3d{bottom:568.413333pt;}
.yb6{bottom:577.533333pt;}
.y13{bottom:578.173333pt;}
.y5b{bottom:578.813333pt;}
.y89{bottom:585.373333pt;}
.y3c{bottom:586.813333pt;}
.yb5{bottom:595.933333pt;}
.y12{bottom:596.573333pt;}
.y5a{bottom:597.213333pt;}
.y88{bottom:603.773333pt;}
.y3b{bottom:605.213333pt;}
.y59{bottom:612.093333pt;}
.y77{bottom:612.160000pt;}
.yb4{bottom:614.333333pt;}
.y11{bottom:614.973333pt;}
.y87{bottom:622.173333pt;}
.y3a{bottom:623.613333pt;}
.yb3{bottom:632.733333pt;}
.y10{bottom:633.373333pt;}
.y86{bottom:640.573333pt;}
.y39{bottom:642.013333pt;}
.yb2{bottom:651.133333pt;}
.yf{bottom:651.773333pt;}
.y85{bottom:657.373333pt;}
.y38{bottom:658.653333pt;}
.ycb{bottom:660.413333pt;}
.y84{bottom:664.733333pt;}
.ya6{bottom:664.800000pt;}
.y37{bottom:669.533333pt;}
.ye{bottom:670.213333pt;}
.yca{bottom:678.853333pt;}
.y36{bottom:687.973333pt;}
.yd{bottom:688.613333pt;}
.yc9{bottom:697.253333pt;}
.y35{bottom:706.373333pt;}
.yc{bottom:707.013333pt;}
.yc8{bottom:713.893333pt;}
.yf0{bottom:715.653333pt;}
.y34{bottom:724.773333pt;}
.yb{bottom:725.253333pt;}
.yef{bottom:734.053333pt;}
.y33{bottom:743.173333pt;}
.ya{bottom:743.653333pt;}
.yee{bottom:752.453333pt;}
.y9{bottom:760.453333pt;}
.y32{bottom:761.573333pt;}
.yed{bottom:770.853333pt;}
.y8{bottom:775.653333pt;}
.y31{bottom:779.973333pt;}
.yec{bottom:789.253333pt;}
.y7{bottom:794.053333pt;}
.y30{bottom:798.373333pt;}
.yeb{bottom:807.653333pt;}
.y6{bottom:812.453333pt;}
.y2f{bottom:816.773333pt;}
.yea{bottom:824.293333pt;}
.y5{bottom:835.173333pt;}
.y4{bottom:853.573333pt;}
.y3{bottom:871.973333pt;}
.h6{height:18.400000pt;}
.h5{height:22.578125pt;}
.hb{height:36.800000pt;}
.h3{height:45.156250pt;}
.hd{height:52.834688pt;}
.he{height:52.962000pt;}
.h4{height:57.375000pt;}
.h2{height:60.288750pt;}
.h9{height:74.477812pt;}
.h8{height:79.570312pt;}
.ha{height:161.005125pt;}
.hc{height:203.680000pt;}
.hf{height:226.400000pt;}
.h7{height:256.320000pt;}
.h1{height:971.333333pt;}
.h0{height:971.360000pt;}
.w6{width:125.760000pt;}
.w3{width:148.826667pt;}
.w5{width:151.386667pt;}
.w7{width:172.066667pt;}
.w4{width:216.186667pt;}
.w8{width:218.586667pt;}
.w9{width:457.120000pt;}
.wa{width:485.280000pt;}
.w2{width:687.839990pt;}
.w0{width:687.840000pt;}
.w1{width:688.000000pt;}
.x0{left:0.000000pt;}
.xc{left:6.880000pt;}
.x27{left:8.704000pt;}
.x26{left:15.456000pt;}
.x25{left:22.240000pt;}
.x23{left:23.360000pt;}
.x1d{left:25.160000pt;}
.x2c{left:37.920000pt;}
.x1b{left:38.880000pt;}
.x21{left:46.400000pt;}
.x20{left:62.560000pt;}
.x1e{left:64.680000pt;}
.x22{left:71.400000pt;}
.x28{left:78.400000pt;}
.x9{left:84.511990pt;}
.x11{left:91.615990pt;}
.x10{left:107.455990pt;}
.xa{left:108.511990pt;}
.x24{left:115.360000pt;}
.x4{left:125.791990pt;}
.xf{left:132.511990pt;}
.x29{left:148.826667pt;}
.x5{left:152.346656pt;}
.x7{left:170.106656pt;}
.x8{left:175.546656pt;}
.x2d{left:199.360000pt;}
.x1c{left:211.546667pt;}
.xd{left:234.626667pt;}
.x13{left:268.799990pt;}
.x18{left:270.079990pt;}
.x2a{left:279.386667pt;}
.x6{left:286.466656pt;}
.x2f{left:288.826667pt;}
.x12{left:292.479990pt;}
.x3{left:298.146656pt;}
.x2e{left:304.226667pt;}
.x1{left:336.546656pt;}
.x2{left:343.906656pt;}
.x1f{left:384.253333pt;}
.x2b{left:393.413333pt;}
.x30{left:421.600000pt;}
.x14{left:440.573323pt;}
.x19{left:445.693323pt;}
.x17{left:447.653323pt;}
.xe{left:451.453333pt;}
.x16{left:456.773323pt;}
.x15{left:461.413323pt;}
.xb{left:570.533323pt;}
.x1a{left:572.613323pt;}
}




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