
    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_6ec95fb58182c56ec8bbd1b7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.064941;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_ed6d2102d2894f4f262eb3f2.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_db9ea0c3eaa4da3b357d2b26.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.977539;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_5ee8c55c5b7f27896ce0667c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.729492;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_5148b14250e071b88be41704.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.056152;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_45e7618138b7abe1cc83780f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.059082;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_c947541d9c061a066f524e27.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.311035;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_453bea3547687227f128eea8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.982422;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_624b37994e8809471aaa4328.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284668;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_f98cf03277c4ad8be98d919c.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.035156;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_fabc398057f982c0b2cd106f.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284180;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_c5f2fbfde38602ce901be1c4.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.064941;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_872156aeaef801c526247c28.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.977539;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:ffe;src:url('chunks/assets/font_8b7025dd430484eb4a1c123d.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.688477;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:fff;src:url('chunks/assets/font_771509f0ee3ef7845c108544.woff2')format("woff");}.fff{font-family:fff;line-height:1.049805;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:ff10;src:url('chunks/assets/font_1b3d8fcc8d65c8c722e7fb1a.woff2')format("woff");}.ff10{font-family:ff10;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;}
.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;}
.lsc{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.281400px;}
.lsb{letter-spacing:-0.216000px;}
.ls3{letter-spacing:-0.190200px;}
.ls5{letter-spacing:-0.140400px;}
.ls4{letter-spacing:-0.034560px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.012960px;}
.lsd{letter-spacing:0.072000px;}
.lsf{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.216000px;}
.ls7{letter-spacing:0.252600px;}
.ls0{letter-spacing:0.403200px;}
.ls9{letter-spacing:0.432000px;}
.lsa{letter-spacing:0.504000px;}
.lse{letter-spacing:0.720000px;}
.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:-18.342600px;}
.wsd{word-spacing:-18.216000px;}
.wsb{word-spacing:-18.072000px;}
.wsc{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.784000px;}
.ws8{word-spacing:-17.712000px;}
.wsa{word-spacing:-17.280000px;}
.ws2{word-spacing:-17.107200px;}
.ws1{word-spacing:-14.935680px;}
.ws7{word-spacing:-10.865400px;}
.ws5{word-spacing:-10.472400px;}
.ws6{word-spacing:-10.331400px;}
.ws3{word-spacing:-9.937440px;}
.ws4{word-spacing:0.000000px;}
._13{margin-left:-2.735760px;}
._0{margin-left:-1.134000px;}
._1{width:1.639920px;}
._6{width:3.121200px;}
._f{width:4.255200px;}
._7{width:5.630400px;}
._5{width:6.764400px;}
._9{width:8.015040px;}
._a{width:9.089280px;}
._8{width:10.929600px;}
._11{width:11.952000px;}
._12{width:13.464000px;}
._c{width:15.235200px;}
._10{width:16.480800px;}
._b{width:18.017280px;}
._d{width:19.350000px;}
._14{width:20.952000px;}
._15{width:22.051920px;}
._16{width:23.112000px;}
._1c{width:24.236400px;}
._1b{width:26.208000px;}
._17{width:27.792000px;}
._18{width:29.046000px;}
._3{width:30.870000px;}
._1d{width:32.004000px;}
._e{width:33.120000px;}
._19{width:34.776000px;}
._1a{width:36.216000px;}
._1e{width:37.656000px;}
._21{width:39.113520px;}
._1f{width:40.156080px;}
._20{width:41.341440px;}
._27{width:42.375120px;}
._24{width:43.974000px;}
._28{width:45.216000px;}
._22{width:47.952000px;}
._23{width:49.152000px;}
._26{width:50.226000px;}
._25{width:51.246000px;}
._4{width:1091.557200px;}
._2{width:2098.266000px;}
.fc4{color:rgb(0,112,192);}
.fc3{color:rgb(238,78,60);}
.fc6{color:rgb(128,128,128);}
.fc5{color:rgb(166,166,166);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(38,38,38);}
.fs8{font-size:36.000000px;}
.fs0{font-size:45.360000px;}
.fs2{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs7{font-size:77.760000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y7{bottom:1.260000px;}
.y37{bottom:1.590000px;}
.y35{bottom:2.670000px;}
.y39{bottom:2.850000px;}
.y4{bottom:4.320000px;}
.y3{bottom:4.500000px;}
.y6d{bottom:4.680000px;}
.y9b{bottom:4.860000px;}
.y9f{bottom:13.500000px;}
.y98{bottom:14.580000px;}
.y6c{bottom:14.760000px;}
.y99{bottom:14.940000px;}
.y9e{bottom:16.200000px;}
.ya3{bottom:16.380000px;}
.y40{bottom:22.680000px;}
.y2{bottom:24.660000px;}
.y5{bottom:37.440000px;}
.y3b{bottom:41.940000px;}
.y1{bottom:42.660000px;}
.y6{bottom:62.640000px;}
.y97{bottom:114.840000px;}
.y33{bottom:126.180000px;}
.y6b{bottom:131.400000px;}
.y96{bottom:138.600000px;}
.y32{bottom:146.340000px;}
.y6a{bottom:155.160000px;}
.y95{bottom:162.360000px;}
.y31{bottom:166.500000px;}
.y69{bottom:178.920000px;}
.y94{bottom:186.120000px;}
.y30{bottom:187.020000px;}
.y68{bottom:202.680000px;}
.y2f{bottom:206.850000px;}
.y93{bottom:210.090000px;}
.y67{bottom:226.650000px;}
.y2e{bottom:228.270000px;}
.y92{bottom:233.850000px;}
.y66{bottom:250.410000px;}
.y2d{bottom:252.930000px;}
.y91{bottom:257.610000px;}
.y2c{bottom:273.450000px;}
.y65{bottom:274.170000px;}
.y90{bottom:281.370000px;}
.y2b{bottom:295.230000px;}
.y64{bottom:297.930000px;}
.y8f{bottom:305.310000px;}
.y2a{bottom:317.190000px;}
.y63{bottom:321.870000px;}
.y8e{bottom:329.070000px;}
.y29{bottom:338.970000px;}
.y62{bottom:345.630000px;}
.ya2{bottom:352.470000px;}
.y8d{bottom:352.830000px;}
.y28{bottom:360.750000px;}
.y61{bottom:369.390000px;}
.y8c{bottom:376.590000px;}
.y27{bottom:382.530000px;}
.y60{bottom:393.150000px;}
.y9a{bottom:400.170000px;}
.y8b{bottom:400.530000px;}
.y26{bottom:404.490000px;}
.y5f{bottom:417.090000px;}
.y8a{bottom:424.290000px;}
.y25{bottom:426.270000px;}
.y5e{bottom:440.895000px;}
.y24{bottom:448.095000px;}
.y5d{bottom:464.655000px;}
.y23{bottom:469.875000px;}
.y89{bottom:471.855000px;}
.y5c{bottom:488.415000px;}
.y22{bottom:491.655000px;}
.y88{bottom:495.795000px;}
.y5b{bottom:512.355000px;}
.y21{bottom:513.615000px;}
.y87{bottom:519.555000px;}
.y20{bottom:535.395000px;}
.y5a{bottom:536.115000px;}
.y86{bottom:543.315000px;}
.y1f{bottom:557.175000px;}
.y59{bottom:559.875000px;}
.y85{bottom:567.075000px;}
.y1e{bottom:578.955000px;}
.y58{bottom:583.635000px;}
.y84{bottom:591.015000px;}
.y1d{bottom:600.915000px;}
.y57{bottom:607.575000px;}
.ya1{bottom:614.415000px;}
.y83{bottom:614.775000px;}
.y1c{bottom:622.695000px;}
.y56{bottom:631.335000px;}
.y82{bottom:638.535000px;}
.y1b{bottom:644.475000px;}
.y55{bottom:655.095000px;}
.y81{bottom:662.295000px;}
.y1a{bottom:666.255000px;}
.y54{bottom:678.885000px;}
.y80{bottom:686.085000px;}
.y19{bottom:688.065000px;}
.y53{bottom:702.645000px;}
.y18{bottom:710.025000px;}
.y52{bottom:726.585000px;}
.y7f{bottom:733.785000px;}
.y17{bottom:740.805000px;}
.y51{bottom:750.345000px;}
.y7e{bottom:757.545000px;}
.y16{bottom:762.405000px;}
.y50{bottom:774.105000px;}
.y7d{bottom:781.305000px;}
.y15{bottom:789.945000px;}
.y4f{bottom:797.865000px;}
.y7c{bottom:805.245000px;}
.y14{bottom:813.165000px;}
.y4e{bottom:821.805000px;}
.y7b{bottom:829.005000px;}
.y13{bottom:836.385000px;}
.y4d{bottom:845.565000px;}
.ya0{bottom:852.405000px;}
.y7a{bottom:852.765000px;}
.y12{bottom:855.105000px;}
.y4c{bottom:869.325000px;}
.y79{bottom:876.525000px;}
.y11{bottom:882.645000px;}
.y4b{bottom:893.085000px;}
.y78{bottom:900.465000px;}
.y10{bottom:901.005000px;}
.y4a{bottom:917.070000px;}
.yf{bottom:922.290000px;}
.y77{bottom:924.270000px;}
.y49{bottom:940.830000px;}
.y76{bottom:948.030000px;}
.ye{bottom:950.550000px;}
.y48{bottom:964.590000px;}
.y75{bottom:971.790000px;}
.yd{bottom:973.590000px;}
.y38{bottom:985.500000px;}
.y34{bottom:986.760000px;}
.y47{bottom:988.350000px;}
.y36{bottom:988.380000px;}
.yc{bottom:993.390000px;}
.y9c{bottom:995.370000px;}
.y74{bottom:995.730000px;}
.y46{bottom:1012.290000px;}
.y73{bottom:1019.490000px;}
.yb{bottom:1027.590000px;}
.y45{bottom:1036.050000px;}
.y9d{bottom:1042.890000px;}
.y72{bottom:1043.250000px;}
.y44{bottom:1059.810000px;}
.ya{bottom:1062.870000px;}
.y71{bottom:1067.010000px;}
.y43{bottom:1083.570000px;}
.y70{bottom:1090.950000px;}
.y9{bottom:1101.030000px;}
.y42{bottom:1107.510000px;}
.y6f{bottom:1114.710000px;}
.y41{bottom:1138.110000px;}
.y6e{bottom:1138.470000px;}
.y8{bottom:1139.190000px;}
.y3f{bottom:1183.500000px;}
.y3e{bottom:1197.540000px;}
.y3a{bottom:1207.980000px;}
.y3d{bottom:1218.960000px;}
.y3c{bottom:1235.880000px;}
.h17{height:13.500000px;}
.h15{height:14.580000px;}
.h19{height:14.760000px;}
.h1d{height:18.000000px;}
.h1e{height:18.180000px;}
.h1a{height:24.380859px;}
.h6{height:24.840000px;}
.h2{height:38.405391px;}
.h16{height:38.464805px;}
.h8{height:38.469727px;}
.h1b{height:40.843828px;}
.h9{height:42.573164px;}
.h5{height:43.057617px;}
.h18{height:47.650430px;}
.h4{height:49.680000px;}
.h14{height:50.597578px;}
.h7{height:53.709961px;}
.hc{height:54.421875px;}
.h11{height:58.651172px;}
.h1f{height:60.046875px;}
.h10{height:65.010937px;}
.hf{height:65.534063px;}
.h12{height:65.837812px;}
.h3{height:65.884219px;}
.he{height:67.824844px;}
.h13{height:70.628906px;}
.hd{height:70.664062px;}
.ha{height:70.995234px;}
.hb{height:71.324297px;}
.h1c{height:72.562500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:77.400000px;}
.w9{width:77.580000px;}
.w2{width:90.000000px;}
.w7{width:107.100000px;}
.w4{width:109.800000px;}
.w5{width:143.280000px;}
.w6{width:221.400000px;}
.w3{width:626.400000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:10.836000px;}
.x12{left:14.940000px;}
.x3{left:16.530000px;}
.x11{left:44.715000px;}
.x4{left:93.960000px;}
.x1{left:108.036000px;}
.xe{left:122.400000px;}
.x13{left:124.416000px;}
.x6{left:129.996000px;}
.x20{left:166.890000px;}
.xb{left:198.390000px;}
.x14{left:214.050000px;}
.x15{left:222.870000px;}
.x7{left:246.450000px;}
.x17{left:252.210000px;}
.xc{left:280.830000px;}
.x10{left:347.220000px;}
.xa{left:384.195000px;}
.x8{left:402.555000px;}
.x5{left:454.965000px;}
.xd{left:683.460000px;}
.x22{left:711.360000px;}
.x1e{left:714.240000px;}
.x1f{left:718.200000px;}
.x1d{left:719.640000px;}
.x1c{left:721.260000px;}
.x1a{left:722.520000px;}
.x18{left:723.960000px;}
.x16{left:725.220000px;}
.x1b{left:726.840000px;}
.x19{left:732.420000px;}
.x21{left:740.880000px;}
.x9{left:785.130000px;}
.x2{left:802.980000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.250133pt;}
.lsb{letter-spacing:-0.192000pt;}
.ls3{letter-spacing:-0.169067pt;}
.ls5{letter-spacing:-0.124800pt;}
.ls4{letter-spacing:-0.030720pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.011520pt;}
.lsd{letter-spacing:0.064000pt;}
.lsf{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.192000pt;}
.ls7{letter-spacing:0.224533pt;}
.ls0{letter-spacing:0.358400pt;}
.ls9{letter-spacing:0.384000pt;}
.lsa{letter-spacing:0.448000pt;}
.lse{letter-spacing:0.640000pt;}
.ws0{word-spacing:-16.304533pt;}
.wsd{word-spacing:-16.192000pt;}
.wsb{word-spacing:-16.064000pt;}
.wsc{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.808000pt;}
.ws8{word-spacing:-15.744000pt;}
.wsa{word-spacing:-15.360000pt;}
.ws2{word-spacing:-15.206400pt;}
.ws1{word-spacing:-13.276160pt;}
.ws7{word-spacing:-9.658133pt;}
.ws5{word-spacing:-9.308800pt;}
.ws6{word-spacing:-9.183467pt;}
.ws3{word-spacing:-8.833280pt;}
.ws4{word-spacing:0.000000pt;}
._13{margin-left:-2.431787pt;}
._0{margin-left:-1.008000pt;}
._1{width:1.457707pt;}
._6{width:2.774400pt;}
._f{width:3.782400pt;}
._7{width:5.004800pt;}
._5{width:6.012800pt;}
._9{width:7.124480pt;}
._a{width:8.079360pt;}
._8{width:9.715200pt;}
._11{width:10.624000pt;}
._12{width:11.968000pt;}
._c{width:13.542400pt;}
._10{width:14.649600pt;}
._b{width:16.015360pt;}
._d{width:17.200000pt;}
._14{width:18.624000pt;}
._15{width:19.601707pt;}
._16{width:20.544000pt;}
._1c{width:21.543467pt;}
._1b{width:23.296000pt;}
._17{width:24.704000pt;}
._18{width:25.818667pt;}
._3{width:27.440000pt;}
._1d{width:28.448000pt;}
._e{width:29.440000pt;}
._19{width:30.912000pt;}
._1a{width:32.192000pt;}
._1e{width:33.472000pt;}
._21{width:34.767573pt;}
._1f{width:35.694293pt;}
._20{width:36.747947pt;}
._27{width:37.666773pt;}
._24{width:39.088000pt;}
._28{width:40.192000pt;}
._22{width:42.624000pt;}
._23{width:43.690667pt;}
._26{width:44.645333pt;}
._25{width:45.552000pt;}
._4{width:970.273067pt;}
._2{width:1865.125333pt;}
.fs8{font-size:32.000000pt;}
.fs0{font-size:40.320000pt;}
.fs2{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs7{font-size:69.120000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:1.120000pt;}
.y37{bottom:1.413333pt;}
.y35{bottom:2.373333pt;}
.y39{bottom:2.533333pt;}
.y4{bottom:3.840000pt;}
.y3{bottom:4.000000pt;}
.y6d{bottom:4.160000pt;}
.y9b{bottom:4.320000pt;}
.y9f{bottom:12.000000pt;}
.y98{bottom:12.960000pt;}
.y6c{bottom:13.120000pt;}
.y99{bottom:13.280000pt;}
.y9e{bottom:14.400000pt;}
.ya3{bottom:14.560000pt;}
.y40{bottom:20.160000pt;}
.y2{bottom:21.920000pt;}
.y5{bottom:33.280000pt;}
.y3b{bottom:37.280000pt;}
.y1{bottom:37.920000pt;}
.y6{bottom:55.680000pt;}
.y97{bottom:102.080000pt;}
.y33{bottom:112.160000pt;}
.y6b{bottom:116.800000pt;}
.y96{bottom:123.200000pt;}
.y32{bottom:130.080000pt;}
.y6a{bottom:137.920000pt;}
.y95{bottom:144.320000pt;}
.y31{bottom:148.000000pt;}
.y69{bottom:159.040000pt;}
.y94{bottom:165.440000pt;}
.y30{bottom:166.240000pt;}
.y68{bottom:180.160000pt;}
.y2f{bottom:183.866667pt;}
.y93{bottom:186.746667pt;}
.y67{bottom:201.466667pt;}
.y2e{bottom:202.906667pt;}
.y92{bottom:207.866667pt;}
.y66{bottom:222.586667pt;}
.y2d{bottom:224.826667pt;}
.y91{bottom:228.986667pt;}
.y2c{bottom:243.066667pt;}
.y65{bottom:243.706667pt;}
.y90{bottom:250.106667pt;}
.y2b{bottom:262.426667pt;}
.y64{bottom:264.826667pt;}
.y8f{bottom:271.386667pt;}
.y2a{bottom:281.946667pt;}
.y63{bottom:286.106667pt;}
.y8e{bottom:292.506667pt;}
.y29{bottom:301.306667pt;}
.y62{bottom:307.226667pt;}
.ya2{bottom:313.306667pt;}
.y8d{bottom:313.626667pt;}
.y28{bottom:320.666667pt;}
.y61{bottom:328.346667pt;}
.y8c{bottom:334.746667pt;}
.y27{bottom:340.026667pt;}
.y60{bottom:349.466667pt;}
.y9a{bottom:355.706667pt;}
.y8b{bottom:356.026667pt;}
.y26{bottom:359.546667pt;}
.y5f{bottom:370.746667pt;}
.y8a{bottom:377.146667pt;}
.y25{bottom:378.906667pt;}
.y5e{bottom:391.906667pt;}
.y24{bottom:398.306667pt;}
.y5d{bottom:413.026667pt;}
.y23{bottom:417.666667pt;}
.y89{bottom:419.426667pt;}
.y5c{bottom:434.146667pt;}
.y22{bottom:437.026667pt;}
.y88{bottom:440.706667pt;}
.y5b{bottom:455.426667pt;}
.y21{bottom:456.546667pt;}
.y87{bottom:461.826667pt;}
.y20{bottom:475.906667pt;}
.y5a{bottom:476.546667pt;}
.y86{bottom:482.946667pt;}
.y1f{bottom:495.266667pt;}
.y59{bottom:497.666667pt;}
.y85{bottom:504.066667pt;}
.y1e{bottom:514.626667pt;}
.y58{bottom:518.786667pt;}
.y84{bottom:525.346667pt;}
.y1d{bottom:534.146667pt;}
.y57{bottom:540.066667pt;}
.ya1{bottom:546.146667pt;}
.y83{bottom:546.466667pt;}
.y1c{bottom:553.506667pt;}
.y56{bottom:561.186667pt;}
.y82{bottom:567.586667pt;}
.y1b{bottom:572.866667pt;}
.y55{bottom:582.306667pt;}
.y81{bottom:588.706667pt;}
.y1a{bottom:592.226667pt;}
.y54{bottom:603.453333pt;}
.y80{bottom:609.853333pt;}
.y19{bottom:611.613333pt;}
.y53{bottom:624.573333pt;}
.y18{bottom:631.133333pt;}
.y52{bottom:645.853333pt;}
.y7f{bottom:652.253333pt;}
.y17{bottom:658.493333pt;}
.y51{bottom:666.973333pt;}
.y7e{bottom:673.373333pt;}
.y16{bottom:677.693333pt;}
.y50{bottom:688.093333pt;}
.y7d{bottom:694.493333pt;}
.y15{bottom:702.173333pt;}
.y4f{bottom:709.213333pt;}
.y7c{bottom:715.773333pt;}
.y14{bottom:722.813333pt;}
.y4e{bottom:730.493333pt;}
.y7b{bottom:736.893333pt;}
.y13{bottom:743.453333pt;}
.y4d{bottom:751.613333pt;}
.ya0{bottom:757.693333pt;}
.y7a{bottom:758.013333pt;}
.y12{bottom:760.093333pt;}
.y4c{bottom:772.733333pt;}
.y79{bottom:779.133333pt;}
.y11{bottom:784.573333pt;}
.y4b{bottom:793.853333pt;}
.y78{bottom:800.413333pt;}
.y10{bottom:800.893333pt;}
.y4a{bottom:815.173333pt;}
.yf{bottom:819.813333pt;}
.y77{bottom:821.573333pt;}
.y49{bottom:836.293333pt;}
.y76{bottom:842.693333pt;}
.ye{bottom:844.933333pt;}
.y48{bottom:857.413333pt;}
.y75{bottom:863.813333pt;}
.yd{bottom:865.413333pt;}
.y38{bottom:876.000000pt;}
.y34{bottom:877.120000pt;}
.y47{bottom:878.533333pt;}
.y36{bottom:878.560000pt;}
.yc{bottom:883.013333pt;}
.y9c{bottom:884.773333pt;}
.y74{bottom:885.093333pt;}
.y46{bottom:899.813333pt;}
.y73{bottom:906.213333pt;}
.yb{bottom:913.413333pt;}
.y45{bottom:920.933333pt;}
.y9d{bottom:927.013333pt;}
.y72{bottom:927.333333pt;}
.y44{bottom:942.053333pt;}
.ya{bottom:944.773333pt;}
.y71{bottom:948.453333pt;}
.y43{bottom:963.173333pt;}
.y70{bottom:969.733333pt;}
.y9{bottom:978.693333pt;}
.y42{bottom:984.453333pt;}
.y6f{bottom:990.853333pt;}
.y41{bottom:1011.653333pt;}
.y6e{bottom:1011.973333pt;}
.y8{bottom:1012.613333pt;}
.y3f{bottom:1052.000000pt;}
.y3e{bottom:1064.480000pt;}
.y3a{bottom:1073.760000pt;}
.y3d{bottom:1083.520000pt;}
.y3c{bottom:1098.560000pt;}
.h17{height:12.000000pt;}
.h15{height:12.960000pt;}
.h19{height:13.120000pt;}
.h1d{height:16.000000pt;}
.h1e{height:16.160000pt;}
.h1a{height:21.671875pt;}
.h6{height:22.080000pt;}
.h2{height:34.138125pt;}
.h16{height:34.190937pt;}
.h8{height:34.195312pt;}
.h1b{height:36.305625pt;}
.h9{height:37.842813pt;}
.h5{height:38.273438pt;}
.h18{height:42.355937pt;}
.h4{height:44.160000pt;}
.h14{height:44.975625pt;}
.h7{height:47.742188pt;}
.hc{height:48.375000pt;}
.h11{height:52.134375pt;}
.h1f{height:53.375000pt;}
.h10{height:57.787500pt;}
.hf{height:58.252500pt;}
.h12{height:58.522500pt;}
.h3{height:58.563750pt;}
.he{height:60.288750pt;}
.h13{height:62.781250pt;}
.hd{height:62.812500pt;}
.ha{height:63.106875pt;}
.hb{height:63.399375pt;}
.h1c{height:64.500000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:68.800000pt;}
.w9{width:68.960000pt;}
.w2{width:80.000000pt;}
.w7{width:95.200000pt;}
.w4{width:97.600000pt;}
.w5{width:127.360000pt;}
.w6{width:196.800000pt;}
.w3{width:556.800000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:9.632000pt;}
.x12{left:13.280000pt;}
.x3{left:14.693333pt;}
.x11{left:39.746667pt;}
.x4{left:83.520000pt;}
.x1{left:96.032000pt;}
.xe{left:108.800000pt;}
.x13{left:110.592000pt;}
.x6{left:115.552000pt;}
.x20{left:148.346667pt;}
.xb{left:176.346667pt;}
.x14{left:190.266667pt;}
.x15{left:198.106667pt;}
.x7{left:219.066667pt;}
.x17{left:224.186667pt;}
.xc{left:249.626667pt;}
.x10{left:308.640000pt;}
.xa{left:341.506667pt;}
.x8{left:357.826667pt;}
.x5{left:404.413333pt;}
.xd{left:607.520000pt;}
.x22{left:632.320000pt;}
.x1e{left:634.880000pt;}
.x1f{left:638.400000pt;}
.x1d{left:639.680000pt;}
.x1c{left:641.120000pt;}
.x1a{left:642.240000pt;}
.x18{left:643.520000pt;}
.x16{left:644.640000pt;}
.x1b{left:646.080000pt;}
.x19{left:651.040000pt;}
.x21{left:658.560000pt;}
.x9{left:697.893333pt;}
.x2{left:713.760000pt;}
}




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