
    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_c27bd0da0534f5d94825c107.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_fa7e3ee1884248bfa01a4aa9.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_09fb572e5d0e1fbf462a8f75.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_15ef2d4974537fd824499523.woff2')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_773e82ce0dfc75c745a411ea.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.201172;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_842890cdc3958d2913b39137.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_2adb0348d9abf49261df7f79.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_63405d25b5ebef6c879096ad.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;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_c3a1a644e8a04c89d8a465c2.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.978027;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);}
.v3{vertical-align:-82.800000px;}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:29.880000px;}
.ls7{letter-spacing:-1.872000px;}
.ls1e{letter-spacing:-0.630000px;}
.ls1c{letter-spacing:-0.413400px;}
.ls15{letter-spacing:-0.360000px;}
.ls26{letter-spacing:-0.288000px;}
.ls5{letter-spacing:-0.270000px;}
.ls29{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.180000px;}
.ls24{letter-spacing:-0.144000px;}
.lsd{letter-spacing:-0.072000px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.048000px;}
.ls17{letter-spacing:0.066720px;}
.ls12{letter-spacing:0.072000px;}
.lsa{letter-spacing:0.078600px;}
.ls1d{letter-spacing:0.090000px;}
.ls3{letter-spacing:0.140040px;}
.ls10{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.192000px;}
.ls25{letter-spacing:0.216000px;}
.ls8{letter-spacing:0.262800px;}
.ls18{letter-spacing:0.360000px;}
.ls1f{letter-spacing:4.410000px;}
.ls14{letter-spacing:4.530000px;}
.ls13{letter-spacing:6.690000px;}
.ls28{letter-spacing:6.840000px;}
.ls23{letter-spacing:8.730000px;}
.ls19{letter-spacing:11.280000px;}
.ls1a{letter-spacing:12.330000px;}
.ls1b{letter-spacing:12.690000px;}
.ls16{letter-spacing:14.970000px;}
.ls2{letter-spacing:16.290000px;}
.ls20{letter-spacing:17.730000px;}
.lse{letter-spacing:34.380000px;}
.ls11{letter-spacing:37.224000px;}
.ls21{letter-spacing:53.820000px;}
.ls22{letter-spacing:54.180000px;}
.lsf{letter-spacing:109.560000px;}
.lsc{letter-spacing:109.920000px;}
.ls9{letter-spacing:526.671120px;}
.ls27{letter-spacing:698.760000px;}
.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;}
}
.wse{word-spacing:-18.216000px;}
.wsa{word-spacing:-18.144000px;}
.ws9{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws10{word-spacing:-17.928000px;}
.wsd{word-spacing:-17.856000px;}
.ws12{word-spacing:-17.784000px;}
.ws11{word-spacing:-17.712000px;}
.wsf{word-spacing:-17.640000px;}
.wsb{word-spacing:-15.210000px;}
.ws3{word-spacing:-15.030000px;}
.ws8{word-spacing:-14.967480px;}
.ws4{word-spacing:-14.850000px;}
.wsc{word-spacing:-14.616600px;}
.ws0{word-spacing:-14.238000px;}
.ws2{word-spacing:-14.220000px;}
.ws5{word-spacing:-12.204000px;}
.ws6{word-spacing:-9.720000px;}
.ws7{word-spacing:0.000000px;}
._e{margin-left:-2.334360px;}
._3{margin-left:-1.067640px;}
._5{width:1.213920px;}
._8{width:2.870040px;}
._4{width:3.918720px;}
._2{width:5.385000px;}
._f{width:6.588000px;}
._a{width:7.668000px;}
._9{width:8.775000px;}
._6{width:10.340640px;}
._17{width:11.619360px;}
._b{width:13.414080px;}
._13{width:14.499840px;}
._14{width:15.545280px;}
._7{width:16.593120px;}
._c{width:18.464880px;}
._1b{width:20.448000px;}
._16{width:21.888000px;}
._12{width:23.159640px;}
._11{width:24.240000px;}
._d{width:25.272000px;}
._19{width:26.424000px;}
._18{width:27.720000px;}
._22{width:29.160000px;}
._1e{width:30.888000px;}
._15{width:32.544000px;}
._1c{width:34.274640px;}
._23{width:35.394720px;}
._25{width:36.620520px;}
._2f{width:38.448000px;}
._2c{width:39.600000px;}
._2b{width:40.680000px;}
._21{width:41.976000px;}
._20{width:42.984000px;}
._24{width:44.112000px;}
._2d{width:45.360000px;}
._2a{width:46.584000px;}
._31{width:48.024000px;}
._32{width:49.464000px;}
._27{width:50.507640px;}
._26{width:51.552000px;}
._2e{width:53.760000px;}
._29{width:60.192000px;}
._30{width:61.272000px;}
._28{width:62.424000px;}
._1f{width:63.864000px;}
._1d{width:71.208000px;}
._10{width:243.156000px;}
._0{width:805.620000px;}
._1a{width:1475.031840px;}
._1{width:1748.700000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fs8{font-size:47.880000px;}
.fs1{font-size:54.000000px;}
.fs5{font-size:56.880000px;}
.fs6{font-size:60.120000px;}
.fs3{font-size:63.000000px;}
.fs0{font-size:65.880000px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:96.120000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000092px;}
.y5{bottom:45.359908px;}
.y4{bottom:60.869908px;}
.y3{bottom:76.439908px;}
.y2f{bottom:96.689908px;}
.y8c{bottom:98.039908px;}
.yb1{bottom:101.909908px;}
.y2e{bottom:113.969908px;}
.y8b{bottom:116.669908px;}
.yb6{bottom:118.739908px;}
.ya5{bottom:119.189908px;}
.y2d{bottom:131.159908px;}
.y8a{bottom:135.299908px;}
.y59{bottom:136.379908px;}
.yb5{bottom:139.439908px;}
.y2c{bottom:148.439908px;}
.ya4{bottom:148.799908px;}
.y9b{bottom:153.659908px;}
.y89{bottom:153.839908px;}
.yb4{bottom:160.139908px;}
.y58{bottom:165.719908px;}
.y2b{bottom:170.939908px;}
.y88{bottom:172.469908px;}
.ya2{bottom:180.839908px;}
.y57{bottom:182.909908px;}
.y2a{bottom:183.359908px;}
.ya3{bottom:187.589908px;}
.ya8{bottom:188.129908px;}
.y87{bottom:191.099908px;}
.y56{bottom:200.189908px;}
.ybb{bottom:200.549908px;}
.ya1{bottom:201.539908px;}
.yba{bottom:205.409908px;}
.y29{bottom:208.739908px;}
.y86{bottom:209.729908px;}
.y85{bottom:214.949908px;}
.y55{bottom:217.469908px;}
.ya0{bottom:222.239908px;}
.y54{bottom:222.689908px;}
.y28{bottom:225.209908px;}
.y84{bottom:227.009908px;}
.y53{bottom:234.659908px;}
.yb9{bottom:235.019908px;}
.yb0{bottom:239.879908px;}
.y27{bottom:241.679908px;}
.y9f{bottom:242.939908px;}
.y83{bottom:244.289908px;}
.y52{bottom:251.939908px;}
.y26{bottom:258.149908px;}
.y82{bottom:261.479908px;}
.y9e{bottom:263.639908px;}
.y81{bottom:266.699908px;}
.y51{bottom:269.219908px;}
.ya7{bottom:269.579908px;}
.y50{bottom:274.439908px;}
.y25{bottom:274.619908px;}
.y80{bottom:278.759908px;}
.y9d{bottom:284.339908px;}
.y9a{bottom:286.409908px;}
.y4f{bottom:286.769908px;}
.y24{bottom:291.089908px;}
.ybf{bottom:291.629908px;}
.y7f{bottom:296.039908px;}
.y99{bottom:303.689908px;}
.ybe{bottom:304.049908px;}
.y77{bottom:305.039908px;}
.y23{bottom:307.559908px;}
.ya9{bottom:308.909908px;}
.y7e{bottom:313.229908px;}
.y7d{bottom:318.449908px;}
.y4d{bottom:320.159908px;}
.y98{bottom:320.969908px;}
.y22{bottom:324.029908px;}
.y76{bottom:325.739908px;}
.y4e{bottom:326.909908px;}
.y7c{bottom:330.869908px;}
.y97{bottom:338.159908px;}
.y21{bottom:340.499908px;}
.y4c{bottom:340.859908px;}
.y75{bottom:346.439908px;}
.y96{bottom:355.439908px;}
.y20{bottom:357.059908px;}
.y4b{bottom:361.559908px;}
.y74{bottom:367.139908px;}
.y95{bottom:372.719908px;}
.y1f{bottom:373.529908px;}
.yb3{bottom:377.939908px;}
.y4a{bottom:382.259908px;}
.y73{bottom:387.839908px;}
.y94{bottom:389.909908px;}
.y1e{bottom:389.999908px;}
.yb2{bottom:390.269908px;}
.y7b{bottom:394.589908px;}
.y93{bottom:395.129908px;}
.y49{bottom:402.959908px;}
.y1d{bottom:406.469908px;}
.yad{bottom:407.189908px;}
.y92{bottom:407.549908px;}
.y72{bottom:408.539908px;}
.yb8{bottom:415.289908px;}
.y1c{bottom:422.939908px;}
.y48{bottom:423.659908px;}
.yac{bottom:424.829908px;}
.y70{bottom:429.239908px;}
.y91{bottom:430.949908px;}
.y71{bottom:435.989908px;}
.y1b{bottom:439.409908px;}
.y47{bottom:444.359908px;}
.y6f{bottom:449.969908px;}
.y90{bottom:451.679908px;}
.y1a{bottom:455.909908px;}
.y7a{bottom:456.719908px;}
.y46{bottom:465.089908px;}
.y6e{bottom:470.669908px;}
.y8f{bottom:472.109908px;}
.y19{bottom:472.379908px;}
.yab{bottom:477.419908px;}
.y45{bottom:485.789908px;}
.y18{bottom:488.849908px;}
.y6d{bottom:491.369908px;}
.y17{bottom:504.959908px;}
.y44{bottom:506.489908px;}
.y6c{bottom:512.069908px;}
.yaf{bottom:518.819908px;}
.y16{bottom:522.239908px;}
.y43{bottom:527.189908px;}
.y6b{bottom:532.769908px;}
.y15{bottom:539.519908px;}
.y42{bottom:547.889908px;}
.y6a{bottom:553.469908px;}
.y14{bottom:556.709908px;}
.y41{bottom:568.589908px;}
.y13{bottom:573.989908px;}
.y69{bottom:574.169908px;}
.yae{bottom:580.919908px;}
.y40{bottom:589.289908px;}
.y12{bottom:591.269908px;}
.y68{bottom:594.869908px;}
.y8e{bottom:601.619908px;}
.y11{bottom:608.459908px;}
.y3f{bottom:609.989908px;}
.y67{bottom:615.569908px;}
.ybd{bottom:622.319908px;}
.y10{bottom:625.739908px;}
.y3d{bottom:630.689908px;}
.y66{bottom:636.269908px;}
.y3e{bottom:637.439908px;}
.yf{bottom:643.019908px;}
.y3c{bottom:651.389908px;}
.y79{bottom:656.969908px;}
.ye{bottom:660.209908px;}
.y3b{bottom:672.089908px;}
.yd{bottom:677.489908px;}
.y65{bottom:677.669908px;}
.y3a{bottom:692.789908px;}
.yc{bottom:695.399908px;}
.y64{bottom:698.369908px;}
.y8d{bottom:705.119908px;}
.y39{bottom:713.489908px;}
.y63{bottom:719.069908px;}
.yb{bottom:732.119908px;}
.y62{bottom:739.769908px;}
.y38{bottom:754.889908px;}
.y61{bottom:760.469908px;}
.ya{bottom:761.459908px;}
.ya6{bottom:767.219908px;}
.y37{bottom:775.589908px;}
.y60{bottom:781.169908px;}
.y9{bottom:790.799908px;}
.y36{bottom:796.199908px;}
.y5f{bottom:801.869908px;}
.yb7{bottom:808.619908px;}
.y8{bottom:820.049908px;}
.y5e{bottom:822.569908px;}
.y35{bottom:822.659908px;}
.ybc{bottom:829.319908px;}
.y34{bottom:839.159908px;}
.y5d{bottom:843.299908px;}
.y7{bottom:849.419908px;}
.yaa{bottom:850.049908px;}
.y33{bottom:855.629908px;}
.y5c{bottom:863.999908px;}
.y9c{bottom:870.749908px;}
.y32{bottom:872.189908px;}
.y6{bottom:878.669908px;}
.y5b{bottom:884.699908px;}
.y31{bottom:888.659908px;}
.y78{bottom:891.449908px;}
.y5a{bottom:916.739908px;}
.y30{bottom:917.099908px;}
.y2{bottom:936.809908px;}
.ha{height:38.158594px;}
.he{height:46.991602px;}
.h4{height:52.998047px;}
.h9{height:53.709961px;}
.hb{height:53.896641px;}
.h8{height:55.291992px;}
.h10{height:58.975137px;}
.h7{height:59.004492px;}
.h13{height:60.589687px;}
.h12{height:64.546875px;}
.hc{height:64.657617px;}
.h3{height:65.526152px;}
.h11{height:70.628906px;}
.h6{height:70.664062px;}
.hd{height:72.562500px;}
.hf{height:74.004654px;}
.h5{height:95.603730px;}
.h2{height:1020.599908px;}
.h0{height:1020.600000px;}
.h1{height:1020.750000px;}
.w3{width:722.879978px;}
.w2{width:722.879989px;}
.w0{width:722.880000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1{left:95.669989px;}
.x8{left:100.529989px;}
.x1a{left:105.419989px;}
.xf{left:127.559989px;}
.x2{left:128.639978px;}
.x3{left:134.669989px;}
.x1f{left:144.659978px;}
.xa{left:149.699989px;}
.x20{left:156.719989px;}
.x37{left:174.629978px;}
.x9{left:181.559989px;}
.x38{left:186.689989px;}
.x18{left:188.669978px;}
.x19{left:200.729989px;}
.x23{left:285.959978px;}
.x24{left:298.019989px;}
.x35{left:301.169978px;}
.x36{left:313.229989px;}
.x31{left:338.099978px;}
.x3a{left:344.129978px;}
.x32{left:350.159989px;}
.x3b{left:356.189989px;}
.x1b{left:380.669978px;}
.x1c{left:392.729989px;}
.xb{left:399.569978px;}
.xc{left:405.599989px;}
.x39{left:407.759978px;}
.x10{left:420.179978px;}
.x11{left:426.209989px;}
.x34{left:432.419989px;}
.x12{left:439.349978px;}
.x13{left:445.379989px;}
.x2e{left:452.579978px;}
.x2f{left:464.639989px;}
.x21{left:473.549978px;}
.x26{left:479.579978px;}
.x1d{left:482.099978px;}
.x22{left:485.609989px;}
.x27{left:491.639989px;}
.x1e{left:494.159989px;}
.xd{left:505.139978px;}
.xe{left:511.169989px;}
.x25{left:527.639978px;}
.x4{left:534.689978px;}
.x16{left:537.839978px;}
.x5{left:540.719989px;}
.x33{left:546.029989px;}
.x17{left:549.899989px;}
.x28{left:551.069978px;}
.x3c{left:552.779989px;}
.x29{left:563.129989px;}
.x2a{left:572.489978px;}
.x2b{left:584.549989px;}
.x2c{left:586.079978px;}
.x2d{left:598.139989px;}
.x14{left:607.139978px;}
.x30{left:610.739978px;}
.x15{left:613.169989px;}
.x6{left:616.769978px;}
.x7{left:622.799989px;}
@media print{
.v3{vertical-align:-73.600000pt;}
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.560000pt;}
.ls7{letter-spacing:-1.664000pt;}
.ls1e{letter-spacing:-0.560000pt;}
.ls1c{letter-spacing:-0.367467pt;}
.ls15{letter-spacing:-0.320000pt;}
.ls26{letter-spacing:-0.256000pt;}
.ls5{letter-spacing:-0.240000pt;}
.ls29{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.160000pt;}
.ls24{letter-spacing:-0.128000pt;}
.lsd{letter-spacing:-0.064000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.042667pt;}
.ls17{letter-spacing:0.059307pt;}
.ls12{letter-spacing:0.064000pt;}
.lsa{letter-spacing:0.069867pt;}
.ls1d{letter-spacing:0.080000pt;}
.ls3{letter-spacing:0.124480pt;}
.ls10{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.170667pt;}
.ls25{letter-spacing:0.192000pt;}
.ls8{letter-spacing:0.233600pt;}
.ls18{letter-spacing:0.320000pt;}
.ls1f{letter-spacing:3.920000pt;}
.ls14{letter-spacing:4.026667pt;}
.ls13{letter-spacing:5.946667pt;}
.ls28{letter-spacing:6.080000pt;}
.ls23{letter-spacing:7.760000pt;}
.ls19{letter-spacing:10.026667pt;}
.ls1a{letter-spacing:10.960000pt;}
.ls1b{letter-spacing:11.280000pt;}
.ls16{letter-spacing:13.306667pt;}
.ls2{letter-spacing:14.480000pt;}
.ls20{letter-spacing:15.760000pt;}
.lse{letter-spacing:30.560000pt;}
.ls11{letter-spacing:33.088000pt;}
.ls21{letter-spacing:47.840000pt;}
.ls22{letter-spacing:48.160000pt;}
.lsf{letter-spacing:97.386667pt;}
.lsc{letter-spacing:97.706667pt;}
.ls9{letter-spacing:468.152107pt;}
.ls27{letter-spacing:621.120000pt;}
.wse{word-spacing:-16.192000pt;}
.wsa{word-spacing:-16.128000pt;}
.ws9{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws10{word-spacing:-15.936000pt;}
.wsd{word-spacing:-15.872000pt;}
.ws12{word-spacing:-15.808000pt;}
.ws11{word-spacing:-15.744000pt;}
.wsf{word-spacing:-15.680000pt;}
.wsb{word-spacing:-13.520000pt;}
.ws3{word-spacing:-13.360000pt;}
.ws8{word-spacing:-13.304427pt;}
.ws4{word-spacing:-13.200000pt;}
.wsc{word-spacing:-12.992533pt;}
.ws0{word-spacing:-12.656000pt;}
.ws2{word-spacing:-12.640000pt;}
.ws5{word-spacing:-10.848000pt;}
.ws6{word-spacing:-8.640000pt;}
.ws7{word-spacing:0.000000pt;}
._e{margin-left:-2.074987pt;}
._3{margin-left:-0.949013pt;}
._5{width:1.079040pt;}
._8{width:2.551147pt;}
._4{width:3.483307pt;}
._2{width:4.786667pt;}
._f{width:5.856000pt;}
._a{width:6.816000pt;}
._9{width:7.800000pt;}
._6{width:9.191680pt;}
._17{width:10.328320pt;}
._b{width:11.923627pt;}
._13{width:12.888747pt;}
._14{width:13.818027pt;}
._7{width:14.749440pt;}
._c{width:16.413227pt;}
._1b{width:18.176000pt;}
._16{width:19.456000pt;}
._12{width:20.586347pt;}
._11{width:21.546667pt;}
._d{width:22.464000pt;}
._19{width:23.488000pt;}
._18{width:24.640000pt;}
._22{width:25.920000pt;}
._1e{width:27.456000pt;}
._15{width:28.928000pt;}
._1c{width:30.466347pt;}
._23{width:31.461973pt;}
._25{width:32.551573pt;}
._2f{width:34.176000pt;}
._2c{width:35.200000pt;}
._2b{width:36.160000pt;}
._21{width:37.312000pt;}
._20{width:38.208000pt;}
._24{width:39.210667pt;}
._2d{width:40.320000pt;}
._2a{width:41.408000pt;}
._31{width:42.688000pt;}
._32{width:43.968000pt;}
._27{width:44.895680pt;}
._26{width:45.824000pt;}
._2e{width:47.786667pt;}
._29{width:53.504000pt;}
._30{width:54.464000pt;}
._28{width:55.488000pt;}
._1f{width:56.768000pt;}
._1d{width:63.296000pt;}
._10{width:216.138667pt;}
._0{width:716.106667pt;}
._1a{width:1311.139413pt;}
._1{width:1554.400000pt;}
.fs7{font-size:34.560000pt;}
.fs8{font-size:42.560000pt;}
.fs1{font-size:48.000000pt;}
.fs5{font-size:50.560000pt;}
.fs6{font-size:53.440000pt;}
.fs3{font-size:56.000000pt;}
.fs0{font-size:58.560000pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:85.440000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000081pt;}
.y5{bottom:40.319919pt;}
.y4{bottom:54.106585pt;}
.y3{bottom:67.946585pt;}
.y2f{bottom:85.946585pt;}
.y8c{bottom:87.146585pt;}
.yb1{bottom:90.586585pt;}
.y2e{bottom:101.306585pt;}
.y8b{bottom:103.706585pt;}
.yb6{bottom:105.546585pt;}
.ya5{bottom:105.946585pt;}
.y2d{bottom:116.586585pt;}
.y8a{bottom:120.266585pt;}
.y59{bottom:121.226585pt;}
.yb5{bottom:123.946585pt;}
.y2c{bottom:131.946585pt;}
.ya4{bottom:132.266585pt;}
.y9b{bottom:136.586585pt;}
.y89{bottom:136.746585pt;}
.yb4{bottom:142.346585pt;}
.y58{bottom:147.306585pt;}
.y2b{bottom:151.946585pt;}
.y88{bottom:153.306585pt;}
.ya2{bottom:160.746585pt;}
.y57{bottom:162.586585pt;}
.y2a{bottom:162.986585pt;}
.ya3{bottom:166.746585pt;}
.ya8{bottom:167.226585pt;}
.y87{bottom:169.866585pt;}
.y56{bottom:177.946585pt;}
.ybb{bottom:178.266585pt;}
.ya1{bottom:179.146585pt;}
.yba{bottom:182.586585pt;}
.y29{bottom:185.546585pt;}
.y86{bottom:186.426585pt;}
.y85{bottom:191.066585pt;}
.y55{bottom:193.306585pt;}
.ya0{bottom:197.546585pt;}
.y54{bottom:197.946585pt;}
.y28{bottom:200.186585pt;}
.y84{bottom:201.786585pt;}
.y53{bottom:208.586585pt;}
.yb9{bottom:208.906585pt;}
.yb0{bottom:213.226585pt;}
.y27{bottom:214.826585pt;}
.y9f{bottom:215.946585pt;}
.y83{bottom:217.146585pt;}
.y52{bottom:223.946585pt;}
.y26{bottom:229.466585pt;}
.y82{bottom:232.426585pt;}
.y9e{bottom:234.346585pt;}
.y81{bottom:237.066585pt;}
.y51{bottom:239.306585pt;}
.ya7{bottom:239.626585pt;}
.y50{bottom:243.946585pt;}
.y25{bottom:244.106585pt;}
.y80{bottom:247.786585pt;}
.y9d{bottom:252.746585pt;}
.y9a{bottom:254.586585pt;}
.y4f{bottom:254.906585pt;}
.y24{bottom:258.746585pt;}
.ybf{bottom:259.226585pt;}
.y7f{bottom:263.146585pt;}
.y99{bottom:269.946585pt;}
.ybe{bottom:270.266585pt;}
.y77{bottom:271.146585pt;}
.y23{bottom:273.386585pt;}
.ya9{bottom:274.586585pt;}
.y7e{bottom:278.426585pt;}
.y7d{bottom:283.066585pt;}
.y4d{bottom:284.586585pt;}
.y98{bottom:285.306585pt;}
.y22{bottom:288.026585pt;}
.y76{bottom:289.546585pt;}
.y4e{bottom:290.586585pt;}
.y7c{bottom:294.106585pt;}
.y97{bottom:300.586585pt;}
.y21{bottom:302.666585pt;}
.y4c{bottom:302.986585pt;}
.y75{bottom:307.946585pt;}
.y96{bottom:315.946585pt;}
.y20{bottom:317.386585pt;}
.y4b{bottom:321.386585pt;}
.y74{bottom:326.346585pt;}
.y95{bottom:331.306585pt;}
.y1f{bottom:332.026585pt;}
.yb3{bottom:335.946585pt;}
.y4a{bottom:339.786585pt;}
.y73{bottom:344.746585pt;}
.y94{bottom:346.586585pt;}
.y1e{bottom:346.666585pt;}
.yb2{bottom:346.906585pt;}
.y7b{bottom:350.746585pt;}
.y93{bottom:351.226585pt;}
.y49{bottom:358.186585pt;}
.y1d{bottom:361.306585pt;}
.yad{bottom:361.946585pt;}
.y92{bottom:362.266585pt;}
.y72{bottom:363.146585pt;}
.yb8{bottom:369.146585pt;}
.y1c{bottom:375.946585pt;}
.y48{bottom:376.586585pt;}
.yac{bottom:377.626585pt;}
.y70{bottom:381.546585pt;}
.y91{bottom:383.066585pt;}
.y71{bottom:387.546585pt;}
.y1b{bottom:390.586585pt;}
.y47{bottom:394.986585pt;}
.y6f{bottom:399.973252pt;}
.y90{bottom:401.493252pt;}
.y1a{bottom:405.253252pt;}
.y7a{bottom:405.973252pt;}
.y46{bottom:413.413252pt;}
.y6e{bottom:418.373252pt;}
.y8f{bottom:419.653252pt;}
.y19{bottom:419.893252pt;}
.yab{bottom:424.373252pt;}
.y45{bottom:431.813252pt;}
.y18{bottom:434.533252pt;}
.y6d{bottom:436.773252pt;}
.y17{bottom:448.853252pt;}
.y44{bottom:450.213252pt;}
.y6c{bottom:455.173252pt;}
.yaf{bottom:461.173252pt;}
.y16{bottom:464.213252pt;}
.y43{bottom:468.613252pt;}
.y6b{bottom:473.573252pt;}
.y15{bottom:479.573252pt;}
.y42{bottom:487.013252pt;}
.y6a{bottom:491.973252pt;}
.y14{bottom:494.853252pt;}
.y41{bottom:505.413252pt;}
.y13{bottom:510.213252pt;}
.y69{bottom:510.373252pt;}
.yae{bottom:516.373252pt;}
.y40{bottom:523.813252pt;}
.y12{bottom:525.573252pt;}
.y68{bottom:528.773252pt;}
.y8e{bottom:534.773252pt;}
.y11{bottom:540.853252pt;}
.y3f{bottom:542.213252pt;}
.y67{bottom:547.173252pt;}
.ybd{bottom:553.173252pt;}
.y10{bottom:556.213252pt;}
.y3d{bottom:560.613252pt;}
.y66{bottom:565.573252pt;}
.y3e{bottom:566.613252pt;}
.yf{bottom:571.573252pt;}
.y3c{bottom:579.013252pt;}
.y79{bottom:583.973252pt;}
.ye{bottom:586.853252pt;}
.y3b{bottom:597.413252pt;}
.yd{bottom:602.213252pt;}
.y65{bottom:602.373252pt;}
.y3a{bottom:615.813252pt;}
.yc{bottom:618.133252pt;}
.y64{bottom:620.773252pt;}
.y8d{bottom:626.773252pt;}
.y39{bottom:634.213252pt;}
.y63{bottom:639.173252pt;}
.yb{bottom:650.773252pt;}
.y62{bottom:657.573252pt;}
.y38{bottom:671.013252pt;}
.y61{bottom:675.973252pt;}
.ya{bottom:676.853252pt;}
.ya6{bottom:681.973252pt;}
.y37{bottom:689.413252pt;}
.y60{bottom:694.373252pt;}
.y9{bottom:702.933252pt;}
.y36{bottom:707.733252pt;}
.y5f{bottom:712.773252pt;}
.yb7{bottom:718.773252pt;}
.y8{bottom:728.933252pt;}
.y5e{bottom:731.173252pt;}
.y35{bottom:731.253252pt;}
.ybc{bottom:737.173252pt;}
.y34{bottom:745.919919pt;}
.y5d{bottom:749.599919pt;}
.y7{bottom:755.039919pt;}
.yaa{bottom:755.599919pt;}
.y33{bottom:760.559919pt;}
.y5c{bottom:767.999919pt;}
.y9c{bottom:773.999919pt;}
.y32{bottom:775.279919pt;}
.y6{bottom:781.039919pt;}
.y5b{bottom:786.399919pt;}
.y31{bottom:789.919919pt;}
.y78{bottom:792.399919pt;}
.y5a{bottom:814.879919pt;}
.y30{bottom:815.199919pt;}
.y2{bottom:832.719919pt;}
.ha{height:33.918750pt;}
.he{height:41.770312pt;}
.h4{height:47.109375pt;}
.h9{height:47.742188pt;}
.hb{height:47.908125pt;}
.h8{height:49.148438pt;}
.h10{height:52.422344pt;}
.h7{height:52.448437pt;}
.h13{height:53.857500pt;}
.h12{height:57.375000pt;}
.hc{height:57.473437pt;}
.h3{height:58.245469pt;}
.h11{height:62.781250pt;}
.h6{height:62.812500pt;}
.hd{height:64.500000pt;}
.hf{height:65.781915pt;}
.h5{height:84.981094pt;}
.h2{height:907.199919pt;}
.h0{height:907.200000pt;}
.h1{height:907.333333pt;}
.w3{width:642.559981pt;}
.w2{width:642.559990pt;}
.w0{width:642.560000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1{left:85.039990pt;}
.x8{left:89.359990pt;}
.x1a{left:93.706657pt;}
.xf{left:113.386657pt;}
.x2{left:114.346648pt;}
.x3{left:119.706657pt;}
.x1f{left:128.586648pt;}
.xa{left:133.066657pt;}
.x20{left:139.306657pt;}
.x37{left:155.226648pt;}
.x9{left:161.386657pt;}
.x38{left:165.946657pt;}
.x18{left:167.706648pt;}
.x19{left:178.426657pt;}
.x23{left:254.186648pt;}
.x24{left:264.906657pt;}
.x35{left:267.706648pt;}
.x36{left:278.426657pt;}
.x31{left:300.533314pt;}
.x3a{left:305.893314pt;}
.x32{left:311.253324pt;}
.x3b{left:316.613324pt;}
.x1b{left:338.373314pt;}
.x1c{left:349.093324pt;}
.xb{left:355.173314pt;}
.xc{left:360.533324pt;}
.x39{left:362.453314pt;}
.x10{left:373.493314pt;}
.x11{left:378.853324pt;}
.x34{left:384.373324pt;}
.x12{left:390.533314pt;}
.x13{left:395.893324pt;}
.x2e{left:402.293314pt;}
.x2f{left:413.013324pt;}
.x21{left:420.933314pt;}
.x26{left:426.293314pt;}
.x1d{left:428.533314pt;}
.x22{left:431.653324pt;}
.x27{left:437.013324pt;}
.x1e{left:439.253324pt;}
.xd{left:449.013314pt;}
.xe{left:454.373324pt;}
.x25{left:469.013314pt;}
.x4{left:475.279981pt;}
.x16{left:478.079981pt;}
.x5{left:480.639990pt;}
.x33{left:485.359990pt;}
.x17{left:488.799990pt;}
.x28{left:489.839981pt;}
.x3c{left:491.359990pt;}
.x29{left:500.559990pt;}
.x2a{left:508.879981pt;}
.x2b{left:519.599990pt;}
.x2c{left:520.959981pt;}
.x2d{left:531.679990pt;}
.x14{left:539.679981pt;}
.x30{left:542.879981pt;}
.x15{left:545.039990pt;}
.x6{left:548.239981pt;}
.x7{left:553.599990pt;}
}




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