
    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_871235b3e6cd762d5e3960ed.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_992572c9c3516500e430139a.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c27acfefdfb53f7297afea12.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_0ea6db763d43a3a6c91f4e75.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.372070;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_97de6f32edbf34effeb29b93.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_0f985b5acaeeccb1c43b1d94.woff2')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_718913027fca67fdf08edc80.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.853027;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_d4d6e9a7749989fc71572860.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.003906;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_d4d6e9a7749989fc71572860.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.003906;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_8ebce7f0183a0c96527a409c.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_dda6aa4c44aa339a1e850301.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_0dd2a0d07d0b7c4ac2338810.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_dda02156448dcd135cf4c471.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_d4d6e9a7749989fc71572860.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.003906;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_594da11868b6d8b2dc29ef2a.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_13713d9a1eddb05926177ae3.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_d4d6e9a7749989fc71572860.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.003906;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:ff12;src:url('chunks/assets/font_89d36476ed99a2bc60ca7ef0.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_278d481c57c22857e674c4c0.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_13713d9a1eddb05926177ae3.woff2')format("woff");}.ff14{font-family:ff14;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;}
.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;}
.v1{vertical-align:27.000000px;}
.lse{letter-spacing:-0.432000px;}
.ls7{letter-spacing:-0.360000px;}
.ls13{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.216000px;}
.ls9{letter-spacing:-0.144000px;}
.ls3{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.072000px;}
.ls17{letter-spacing:0.090000px;}
.ls8{letter-spacing:0.120000px;}
.ls1{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.216000px;}
.lsb{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.504000px;}
.ls10{letter-spacing:0.720000px;}
.lsf{letter-spacing:1.080000px;}
.ls16{letter-spacing:2.751120px;}
.ls12{letter-spacing:6.480000px;}
.ls14{letter-spacing:7.560000px;}
.lsd{letter-spacing:8.280000px;}
.ls11{letter-spacing:8.640000px;}
.ls4{letter-spacing:33.984000px;}
.ls15{letter-spacing:51.480000px;}
.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;}
}
.ws9{word-spacing:-72.000000px;}
.ws6{word-spacing:-18.216000px;}
.ws2{word-spacing:-18.144000px;}
.ws4{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.928000px;}
.ws5{word-spacing:-17.856000px;}
.ws8{word-spacing:-17.784000px;}
.ws7{word-spacing:-17.568000px;}
.wsa{word-spacing:-0.072000px;}
.ws1{word-spacing:0.000000px;}
._23{margin-left:-8.928000px;}
._22{margin-left:-5.112000px;}
._21{margin-left:-2.592000px;}
._1{margin-left:-1.008000px;}
._2{width:1.152000px;}
._0{width:2.376000px;}
._9{width:4.320000px;}
._f{width:5.904000px;}
._4{width:7.488000px;}
._3{width:8.496000px;}
._6{width:10.224000px;}
._5{width:11.448000px;}
._a{width:12.456000px;}
._8{width:13.752000px;}
._7{width:14.904000px;}
._10{width:16.848000px;}
._e{width:19.512000px;}
._c{width:20.808000px;}
._b{width:21.960000px;}
._d{width:23.280000px;}
._13{width:24.504000px;}
._14{width:26.352000px;}
._11{width:28.152000px;}
._26{width:29.160000px;}
._1c{width:30.168000px;}
._1b{width:31.464000px;}
._1d{width:32.544000px;}
._20{width:34.344000px;}
._25{width:35.856000px;}
._18{width:37.440000px;}
._17{width:38.520000px;}
._28{width:39.528000px;}
._16{width:40.608000px;}
._15{width:41.976000px;}
._1a{width:43.272000px;}
._1e{width:44.400000px;}
._12{width:45.504000px;}
._1f{width:51.480000px;}
._24{width:52.488000px;}
._19{width:53.712000px;}
._27{width:62.424000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:47.880000px;}
.fs2{font-size:65.880000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y81{bottom:135.900000px;}
.y8a{bottom:141.930000px;}
.y4b{bottom:142.560000px;}
.y17{bottom:147.870000px;}
.y68{bottom:154.530000px;}
.y97{bottom:159.840000px;}
.y54{bottom:159.930000px;}
.yd5{bottom:165.690000px;}
.yd8{bottom:166.500000px;}
.yb7{bottom:171.810000px;}
.y3f{bottom:171.900000px;}
.y80{bottom:177.300000px;}
.y89{bottom:183.330000px;}
.yab{bottom:183.690000px;}
.y2d{bottom:183.870000px;}
.y4a{bottom:183.960000px;}
.y16{bottom:189.360000px;}
.y67{bottom:195.930000px;}
.ya3{bottom:201.240000px;}
.y53{bottom:201.330000px;}
.yd4{bottom:207.090000px;}
.ybd{bottom:207.900000px;}
.y3e{bottom:213.300000px;}
.y7f{bottom:218.700000px;}
.y88{bottom:224.760000px;}
.y2c{bottom:225.390000px;}
.y92{bottom:230.700000px;}
.yaa{bottom:237.270000px;}
.y66{bottom:237.360000px;}
.y15{bottom:242.670000px;}
.y52{bottom:242.760000px;}
.yd3{bottom:248.520000px;}
.yd7{bottom:248.880000px;}
.yb5{bottom:249.240000px;}
.ybc{bottom:249.330000px;}
.y3d{bottom:254.730000px;}
.y7e{bottom:260.130000px;}
.y87{bottom:266.160000px;}
.y2b{bottom:266.790000px;}
.y91{bottom:272.190000px;}
.y65{bottom:278.760000px;}
.ya0{bottom:284.070000px;}
.y14{bottom:284.160000px;}
.yd2{bottom:289.920000px;}
.yb4{bottom:290.730000px;}
.y96{bottom:296.040000px;}
.y3c{bottom:296.130000px;}
.y7d{bottom:301.530000px;}
.y86{bottom:307.560000px;}
.y6b{bottom:308.100000px;}
.y2a{bottom:308.190000px;}
.y90{bottom:313.590000px;}
.ya9{bottom:320.070000px;}
.y64{bottom:320.160000px;}
.y13{bottom:325.560000px;}
.yd1{bottom:331.320000px;}
.ybb{bottom:332.040000px;}
.yb3{bottom:332.130000px;}
.y3b{bottom:337.530000px;}
.y29{bottom:349.590000px;}
.y7c{bottom:354.810000px;}
.yb9{bottom:361.290000px;}
.y63{bottom:361.560000px;}
.y85{bottom:366.870000px;}
.y12{bottom:366.960000px;}
.yd0{bottom:372.720000px;}
.yba{bottom:373.440000px;}
.yb2{bottom:373.530000px;}
.y95{bottom:378.840000px;}
.y3a{bottom:378.930000px;}
.yb6{bottom:390.630000px;}
.y6d{bottom:390.720000px;}
.y28{bottom:390.900000px;}
.y7b{bottom:396.300000px;}
.y9a{bottom:402.870000px;}
.y62{bottom:402.960000px;}
.y11{bottom:408.360000px;}
.ycf{bottom:414.120000px;}
.yb8{bottom:414.840000px;}
.yb1{bottom:414.930000px;}
.y84{bottom:420.240000px;}
.y39{bottom:420.330000px;}
.ya7{bottom:432.210000px;}
.y27{bottom:432.300000px;}
.y7a{bottom:437.700000px;}
.y49{bottom:444.270000px;}
.y61{bottom:444.360000px;}
.y10{bottom:449.760000px;}
.yce{bottom:455.520000px;}
.yb0{bottom:456.330000px;}
.ye7{bottom:457.140000px;}
.y38{bottom:461.730000px;}
.ya5{bottom:473.610000px;}
.y26{bottom:473.700000px;}
.y79{bottom:479.100000px;}
.y48{bottom:485.760000px;}
.yf0{bottom:487.200000px;}
.ye6{bottom:488.820000px;}
.yf{bottom:491.160000px;}
.ycd{bottom:496.920000px;}
.yaf{bottom:497.730000px;}
.y37{bottom:503.130000px;}
.y25{bottom:515.100000px;}
.y78{bottom:520.500000px;}
.yef{bottom:523.020000px;}
.ye5{bottom:524.640000px;}
.y47{bottom:527.160000px;}
.ye{bottom:532.560000px;}
.ycc{bottom:538.320000px;}
.yae{bottom:539.130000px;}
.y36{bottom:544.530000px;}
.yee{bottom:546.780000px;}
.ye4{bottom:548.400000px;}
.ydd{bottom:550.200000px;}
.y94{bottom:556.410000px;}
.y24{bottom:556.500000px;}
.y77{bottom:561.900000px;}
.yed{bottom:567.570000px;}
.y46{bottom:568.560000px;}
.ye3{bottom:569.190000px;}
.yd{bottom:573.960000px;}
.ycb{bottom:579.720000px;}
.yad{bottom:580.530000px;}
.y9f{bottom:585.660000px;}
.y35{bottom:585.930000px;}
.yec{bottom:588.270000px;}
.ye2{bottom:589.890000px;}
.y23{bottom:597.900000px;}
.y76{bottom:603.300000px;}
.yeb{bottom:608.970000px;}
.ydc{bottom:609.690000px;}
.y45{bottom:609.960000px;}
.ye1{bottom:610.590000px;}
.yc{bottom:615.360000px;}
.yca{bottom:621.120000px;}
.y60{bottom:621.840000px;}
.yac{bottom:621.930000px;}
.ya2{bottom:627.240000px;}
.y34{bottom:627.330000px;}
.yea{bottom:629.670000px;}
.ydb{bottom:630.480000px;}
.ye0{bottom:631.290000px;}
.y83{bottom:639.210000px;}
.y22{bottom:639.300000px;}
.y75{bottom:644.700000px;}
.y6a{bottom:651.210000px;}
.y93{bottom:651.300000px;}
.y44{bottom:651.390000px;}
.yb{bottom:656.790000px;}
.yc9{bottom:662.550000px;}
.y5f{bottom:663.360000px;}
.ye9{bottom:668.310000px;}
.y9e{bottom:668.760000px;}
.ydf{bottom:670.020000px;}
.yda{bottom:671.910000px;}
.y33{bottom:680.640000px;}
.y21{bottom:680.730000px;}
.y74{bottom:686.130000px;}
.y6e{bottom:692.700000px;}
.y43{bottom:692.790000px;}
.ya{bottom:698.190000px;}
.yd9{bottom:702.060000px;}
.yc8{bottom:703.950000px;}
.y69{bottom:704.670000px;}
.y5e{bottom:704.760000px;}
.y51{bottom:709.980000px;}
.y8f{bottom:710.070000px;}
.y9d{bottom:710.160000px;}
.y32{bottom:722.130000px;}
.y20{bottom:734.100000px;}
.y42{bottom:734.190000px;}
.y73{bottom:739.410000px;}
.y9{bottom:739.500000px;}
.yc7{bottom:745.350000px;}
.ya8{bottom:746.070000px;}
.y5d{bottom:746.160000px;}
.y8e{bottom:751.560000px;}
.y9c{bottom:763.350000px;}
.y50{bottom:763.440000px;}
.y31{bottom:763.530000px;}
.y1f{bottom:775.500000px;}
.y8{bottom:780.900000px;}
.yc6{bottom:786.750000px;}
.y5c{bottom:787.560000px;}
.y8d{bottom:792.960000px;}
.y30{bottom:804.930000px;}
.y9b{bottom:816.810000px;}
.y1e{bottom:816.900000px;}
.y7{bottom:822.300000px;}
.yc5{bottom:828.150000px;}
.y99{bottom:828.870000px;}
.y5b{bottom:828.960000px;}
.y8c{bottom:834.360000px;}
.y4f{bottom:846.330000px;}
.y2f{bottom:858.210000px;}
.y1d{bottom:858.300000px;}
.y72{bottom:863.700000px;}
.yc4{bottom:869.550000px;}
.y98{bottom:870.270000px;}
.y5a{bottom:870.360000px;}
.y6{bottom:875.670000px;}
.y8b{bottom:887.640000px;}
.y4e{bottom:887.730000px;}
.ya6{bottom:899.430000px;}
.ya1{bottom:899.610000px;}
.y1c{bottom:899.700000px;}
.yc3{bottom:910.950000px;}
.yd6{bottom:911.670000px;}
.y59{bottom:911.760000px;}
.y71{bottom:916.980000px;}
.y5{bottom:928.950000px;}
.y4d{bottom:929.130000px;}
.ya4{bottom:941.010000px;}
.y1b{bottom:941.100000px;}
.yc2{bottom:952.350000px;}
.y6c{bottom:953.070000px;}
.y58{bottom:953.160000px;}
.y70{bottom:970.260000px;}
.y4{bottom:970.530000px;}
.y1a{bottom:982.500000px;}
.yc1{bottom:993.750000px;}
.y82{bottom:994.470000px;}
.y57{bottom:994.560000px;}
.y3{bottom:1023.630000px;}
.y4c{bottom:1023.720000px;}
.y6f{bottom:1023.810000px;}
.y19{bottom:1023.900000px;}
.yc0{bottom:1035.150000px;}
.y56{bottom:1035.960000px;}
.y2e{bottom:1065.300000px;}
.ybf{bottom:1076.580000px;}
.y2{bottom:1077.120000px;}
.y18{bottom:1077.210000px;}
.y41{bottom:1077.300000px;}
.y55{bottom:1077.390000px;}
.ybe{bottom:1118.250000px;}
.y1{bottom:1118.520000px;}
.y40{bottom:1118.700000px;}
.yde{bottom:1139.940000px;}
.ye8{bottom:1140.930000px;}
.h8{height:59.343750px;}
.h6{height:64.546875px;}
.h9{height:65.526152px;}
.h4{height:70.628906px;}
.h3{height:70.664062px;}
.h5{height:71.824219px;}
.h2{height:72.562500px;}
.h7{height:73.991602px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:127.649987px;}
.x1{left:142.769987px;}
.x4{left:152.669987px;}
.x7{left:170.219987px;}
.x8{left:180.749987px;}
.x3{left:185.609987px;}
.x2{left:186.779987px;}
.x5{left:397.589987px;}
.xa{left:755.459987px;}
.x9{left:765.449987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.000000pt;}
.lse{letter-spacing:-0.384000pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls13{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.192000pt;}
.ls9{letter-spacing:-0.128000pt;}
.ls3{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.064000pt;}
.ls17{letter-spacing:0.080000pt;}
.ls8{letter-spacing:0.106667pt;}
.ls1{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.192000pt;}
.lsb{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.448000pt;}
.ls10{letter-spacing:0.640000pt;}
.lsf{letter-spacing:0.960000pt;}
.ls16{letter-spacing:2.445440pt;}
.ls12{letter-spacing:5.760000pt;}
.ls14{letter-spacing:6.720000pt;}
.lsd{letter-spacing:7.360000pt;}
.ls11{letter-spacing:7.680000pt;}
.ls4{letter-spacing:30.208000pt;}
.ls15{letter-spacing:45.760000pt;}
.ws9{word-spacing:-64.000000pt;}
.ws6{word-spacing:-16.192000pt;}
.ws2{word-spacing:-16.128000pt;}
.ws4{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.936000pt;}
.ws5{word-spacing:-15.872000pt;}
.ws8{word-spacing:-15.808000pt;}
.ws7{word-spacing:-15.616000pt;}
.wsa{word-spacing:-0.064000pt;}
.ws1{word-spacing:0.000000pt;}
._23{margin-left:-7.936000pt;}
._22{margin-left:-4.544000pt;}
._21{margin-left:-2.304000pt;}
._1{margin-left:-0.896000pt;}
._2{width:1.024000pt;}
._0{width:2.112000pt;}
._9{width:3.840000pt;}
._f{width:5.248000pt;}
._4{width:6.656000pt;}
._3{width:7.552000pt;}
._6{width:9.088000pt;}
._5{width:10.176000pt;}
._a{width:11.072000pt;}
._8{width:12.224000pt;}
._7{width:13.248000pt;}
._10{width:14.976000pt;}
._e{width:17.344000pt;}
._c{width:18.496000pt;}
._b{width:19.520000pt;}
._d{width:20.693333pt;}
._13{width:21.781333pt;}
._14{width:23.424000pt;}
._11{width:25.024000pt;}
._26{width:25.920000pt;}
._1c{width:26.816000pt;}
._1b{width:27.968000pt;}
._1d{width:28.928000pt;}
._20{width:30.528000pt;}
._25{width:31.872000pt;}
._18{width:33.280000pt;}
._17{width:34.240000pt;}
._28{width:35.136000pt;}
._16{width:36.096000pt;}
._15{width:37.312000pt;}
._1a{width:38.464000pt;}
._1e{width:39.466667pt;}
._12{width:40.448000pt;}
._1f{width:45.760000pt;}
._24{width:46.656000pt;}
._19{width:47.744000pt;}
._27{width:55.488000pt;}
.fs1{font-size:42.560000pt;}
.fs2{font-size:58.560000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y81{bottom:120.800000pt;}
.y8a{bottom:126.160000pt;}
.y4b{bottom:126.720000pt;}
.y17{bottom:131.440000pt;}
.y68{bottom:137.360000pt;}
.y97{bottom:142.080000pt;}
.y54{bottom:142.160000pt;}
.yd5{bottom:147.280000pt;}
.yd8{bottom:148.000000pt;}
.yb7{bottom:152.720000pt;}
.y3f{bottom:152.800000pt;}
.y80{bottom:157.600000pt;}
.y89{bottom:162.960000pt;}
.yab{bottom:163.280000pt;}
.y2d{bottom:163.440000pt;}
.y4a{bottom:163.520000pt;}
.y16{bottom:168.320000pt;}
.y67{bottom:174.160000pt;}
.ya3{bottom:178.880000pt;}
.y53{bottom:178.960000pt;}
.yd4{bottom:184.080000pt;}
.ybd{bottom:184.800000pt;}
.y3e{bottom:189.600000pt;}
.y7f{bottom:194.400000pt;}
.y88{bottom:199.786667pt;}
.y2c{bottom:200.346667pt;}
.y92{bottom:205.066667pt;}
.yaa{bottom:210.906667pt;}
.y66{bottom:210.986667pt;}
.y15{bottom:215.706667pt;}
.y52{bottom:215.786667pt;}
.yd3{bottom:220.906667pt;}
.yd7{bottom:221.226667pt;}
.yb5{bottom:221.546667pt;}
.ybc{bottom:221.626667pt;}
.y3d{bottom:226.426667pt;}
.y7e{bottom:231.226667pt;}
.y87{bottom:236.586667pt;}
.y2b{bottom:237.146667pt;}
.y91{bottom:241.946667pt;}
.y65{bottom:247.786667pt;}
.ya0{bottom:252.506667pt;}
.y14{bottom:252.586667pt;}
.yd2{bottom:257.706667pt;}
.yb4{bottom:258.426667pt;}
.y96{bottom:263.146667pt;}
.y3c{bottom:263.226667pt;}
.y7d{bottom:268.026667pt;}
.y86{bottom:273.386667pt;}
.y6b{bottom:273.866667pt;}
.y2a{bottom:273.946667pt;}
.y90{bottom:278.746667pt;}
.ya9{bottom:284.506667pt;}
.y64{bottom:284.586667pt;}
.y13{bottom:289.386667pt;}
.yd1{bottom:294.506667pt;}
.ybb{bottom:295.146667pt;}
.yb3{bottom:295.226667pt;}
.y3b{bottom:300.026667pt;}
.y29{bottom:310.746667pt;}
.y7c{bottom:315.386667pt;}
.yb9{bottom:321.146667pt;}
.y63{bottom:321.386667pt;}
.y85{bottom:326.106667pt;}
.y12{bottom:326.186667pt;}
.yd0{bottom:331.306667pt;}
.yba{bottom:331.946667pt;}
.yb2{bottom:332.026667pt;}
.y95{bottom:336.746667pt;}
.y3a{bottom:336.826667pt;}
.yb6{bottom:347.226667pt;}
.y6d{bottom:347.306667pt;}
.y28{bottom:347.466667pt;}
.y7b{bottom:352.266667pt;}
.y9a{bottom:358.106667pt;}
.y62{bottom:358.186667pt;}
.y11{bottom:362.986667pt;}
.ycf{bottom:368.106667pt;}
.yb8{bottom:368.746667pt;}
.yb1{bottom:368.826667pt;}
.y84{bottom:373.546667pt;}
.y39{bottom:373.626667pt;}
.ya7{bottom:384.186667pt;}
.y27{bottom:384.266667pt;}
.y7a{bottom:389.066667pt;}
.y49{bottom:394.906667pt;}
.y61{bottom:394.986667pt;}
.y10{bottom:399.786667pt;}
.yce{bottom:404.906667pt;}
.yb0{bottom:405.626667pt;}
.ye7{bottom:406.346667pt;}
.y38{bottom:410.426667pt;}
.ya5{bottom:420.986667pt;}
.y26{bottom:421.066667pt;}
.y79{bottom:425.866667pt;}
.y48{bottom:431.786667pt;}
.yf0{bottom:433.066667pt;}
.ye6{bottom:434.506667pt;}
.yf{bottom:436.586667pt;}
.ycd{bottom:441.706667pt;}
.yaf{bottom:442.426667pt;}
.y37{bottom:447.226667pt;}
.y25{bottom:457.866667pt;}
.y78{bottom:462.666667pt;}
.yef{bottom:464.906667pt;}
.ye5{bottom:466.346667pt;}
.y47{bottom:468.586667pt;}
.ye{bottom:473.386667pt;}
.ycc{bottom:478.506667pt;}
.yae{bottom:479.226667pt;}
.y36{bottom:484.026667pt;}
.yee{bottom:486.026667pt;}
.ye4{bottom:487.466667pt;}
.ydd{bottom:489.066667pt;}
.y94{bottom:494.586667pt;}
.y24{bottom:494.666667pt;}
.y77{bottom:499.466667pt;}
.yed{bottom:504.506667pt;}
.y46{bottom:505.386667pt;}
.ye3{bottom:505.946667pt;}
.yd{bottom:510.186667pt;}
.ycb{bottom:515.306667pt;}
.yad{bottom:516.026667pt;}
.y9f{bottom:520.586667pt;}
.y35{bottom:520.826667pt;}
.yec{bottom:522.906667pt;}
.ye2{bottom:524.346667pt;}
.y23{bottom:531.466667pt;}
.y76{bottom:536.266667pt;}
.yeb{bottom:541.306667pt;}
.ydc{bottom:541.946667pt;}
.y45{bottom:542.186667pt;}
.ye1{bottom:542.746667pt;}
.yc{bottom:546.986667pt;}
.yca{bottom:552.106667pt;}
.y60{bottom:552.746667pt;}
.yac{bottom:552.826667pt;}
.ya2{bottom:557.546667pt;}
.y34{bottom:557.626667pt;}
.yea{bottom:559.706667pt;}
.ydb{bottom:560.426667pt;}
.ye0{bottom:561.146667pt;}
.y83{bottom:568.186667pt;}
.y22{bottom:568.266667pt;}
.y75{bottom:573.066667pt;}
.y6a{bottom:578.853333pt;}
.y93{bottom:578.933333pt;}
.y44{bottom:579.013333pt;}
.yb{bottom:583.813333pt;}
.yc9{bottom:588.933333pt;}
.y5f{bottom:589.653333pt;}
.ye9{bottom:594.053333pt;}
.y9e{bottom:594.453333pt;}
.ydf{bottom:595.573333pt;}
.yda{bottom:597.253333pt;}
.y33{bottom:605.013333pt;}
.y21{bottom:605.093333pt;}
.y74{bottom:609.893333pt;}
.y6e{bottom:615.733333pt;}
.y43{bottom:615.813333pt;}
.ya{bottom:620.613333pt;}
.yd9{bottom:624.053333pt;}
.yc8{bottom:625.733333pt;}
.y69{bottom:626.373333pt;}
.y5e{bottom:626.453333pt;}
.y51{bottom:631.093333pt;}
.y8f{bottom:631.173333pt;}
.y9d{bottom:631.253333pt;}
.y32{bottom:641.893333pt;}
.y20{bottom:652.533333pt;}
.y42{bottom:652.613333pt;}
.y73{bottom:657.253333pt;}
.y9{bottom:657.333333pt;}
.yc7{bottom:662.533333pt;}
.ya8{bottom:663.173333pt;}
.y5d{bottom:663.253333pt;}
.y8e{bottom:668.053333pt;}
.y9c{bottom:678.533333pt;}
.y50{bottom:678.613333pt;}
.y31{bottom:678.693333pt;}
.y1f{bottom:689.333333pt;}
.y8{bottom:694.133333pt;}
.yc6{bottom:699.333333pt;}
.y5c{bottom:700.053333pt;}
.y8d{bottom:704.853333pt;}
.y30{bottom:715.493333pt;}
.y9b{bottom:726.053333pt;}
.y1e{bottom:726.133333pt;}
.y7{bottom:730.933333pt;}
.yc5{bottom:736.133333pt;}
.y99{bottom:736.773333pt;}
.y5b{bottom:736.853333pt;}
.y8c{bottom:741.653333pt;}
.y4f{bottom:752.293333pt;}
.y2f{bottom:762.853333pt;}
.y1d{bottom:762.933333pt;}
.y72{bottom:767.733333pt;}
.yc4{bottom:772.933333pt;}
.y98{bottom:773.573333pt;}
.y5a{bottom:773.653333pt;}
.y6{bottom:778.373333pt;}
.y8b{bottom:789.013333pt;}
.y4e{bottom:789.093333pt;}
.ya6{bottom:799.493333pt;}
.ya1{bottom:799.653333pt;}
.y1c{bottom:799.733333pt;}
.yc3{bottom:809.733333pt;}
.yd6{bottom:810.373333pt;}
.y59{bottom:810.453333pt;}
.y71{bottom:815.093333pt;}
.y5{bottom:825.733333pt;}
.y4d{bottom:825.893333pt;}
.ya4{bottom:836.453333pt;}
.y1b{bottom:836.533333pt;}
.yc2{bottom:846.533333pt;}
.y6c{bottom:847.173333pt;}
.y58{bottom:847.253333pt;}
.y70{bottom:862.453333pt;}
.y4{bottom:862.693333pt;}
.y1a{bottom:873.333333pt;}
.yc1{bottom:883.333333pt;}
.y82{bottom:883.973333pt;}
.y57{bottom:884.053333pt;}
.y3{bottom:909.893333pt;}
.y4c{bottom:909.973333pt;}
.y6f{bottom:910.053333pt;}
.y19{bottom:910.133333pt;}
.yc0{bottom:920.133333pt;}
.y56{bottom:920.853333pt;}
.y2e{bottom:946.933333pt;}
.ybf{bottom:956.960000pt;}
.y2{bottom:957.440000pt;}
.y18{bottom:957.520000pt;}
.y41{bottom:957.600000pt;}
.y55{bottom:957.680000pt;}
.ybe{bottom:994.000000pt;}
.y1{bottom:994.240000pt;}
.y40{bottom:994.400000pt;}
.yde{bottom:1013.280000pt;}
.ye8{bottom:1014.160000pt;}
.h8{height:52.750000pt;}
.h6{height:57.375000pt;}
.h9{height:58.245469pt;}
.h4{height:62.781250pt;}
.h3{height:62.812500pt;}
.h5{height:63.843750pt;}
.h2{height:64.500000pt;}
.h7{height:65.770312pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:113.466655pt;}
.x1{left:126.906655pt;}
.x4{left:135.706655pt;}
.x7{left:151.306655pt;}
.x8{left:160.666655pt;}
.x3{left:164.986655pt;}
.x2{left:166.026655pt;}
.x5{left:353.413322pt;}
.xa{left:671.519988pt;}
.x9{left:680.399988pt;}
}




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