
    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_1d58d2bc13f8a41d2f65ded3.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_0b2c68acc0e6914e6ac2edf7.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_27b58f9d81f8527809c55314.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_7eb764169904fb8d8b1376fb.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_96b0352031e24ca130ca3219.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_b400cb5820089a8ae038e8ea.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_96fee97e7e4c6de687f31d24.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_ce7f33e59c80e37206cc1a17.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.774902;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_4638c19201a302c34f2018c5.woff2')format("woff");}.ff9{font-family:ff9;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);}
.v3{vertical-align:-82.800000px;}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:27.000000px;}
.v1{vertical-align:29.880000px;}
.ls4{letter-spacing:-1.872000px;}
.ls12{letter-spacing:-0.513600px;}
.lsc{letter-spacing:-0.288000px;}
.ls17{letter-spacing:-0.270000px;}
.ls1f{letter-spacing:-0.220200px;}
.ls1d{letter-spacing:-0.216000px;}
.ls11{letter-spacing:-0.180000px;}
.ls2{letter-spacing:-0.153600px;}
.ls1{letter-spacing:-0.102000px;}
.ls13{letter-spacing:-0.072000px;}
.lse{letter-spacing:-0.053280px;}
.ls1c{letter-spacing:-0.013320px;}
.ls0{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.072000px;}
.ls5{letter-spacing:0.078600px;}
.ls3{letter-spacing:0.090000px;}
.ls16{letter-spacing:0.106680px;}
.lsd{letter-spacing:0.139800px;}
.lsf{letter-spacing:0.140040px;}
.ls19{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.192000px;}
.lsa{letter-spacing:0.360000px;}
.ls1b{letter-spacing:1.170000px;}
.ls10{letter-spacing:4.050000px;}
.ls18{letter-spacing:4.410000px;}
.ls1a{letter-spacing:4.770000px;}
.ls1e{letter-spacing:10.530000px;}
.ls15{letter-spacing:21.330000px;}
.ls14{letter-spacing:22.680000px;}
.ls7{letter-spacing:109.560000px;}
.ls8{letter-spacing:325.071120px;}
.ls20{letter-spacing:826.320000px;}
.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:-21.723120px;}
.ws10{word-spacing:-18.072000px;}
.ws8{word-spacing:-18.000000px;}
.wsf{word-spacing:-17.928000px;}
.ws11{word-spacing:-17.784000px;}
.ws9{word-spacing:-17.712000px;}
.wsc{word-spacing:-15.210000px;}
.wsa{word-spacing:-15.169800px;}
.ws2{word-spacing:-15.030000px;}
.wsb{word-spacing:-14.976720px;}
.ws6{word-spacing:-14.967480px;}
.wsd{word-spacing:-14.876400px;}
.wse{word-spacing:-14.850000px;}
.ws1{word-spacing:-14.238000px;}
.ws7{word-spacing:-14.220000px;}
.ws3{word-spacing:-12.204000px;}
.ws4{word-spacing:-9.720000px;}
.ws5{word-spacing:0.000000px;}
._15{margin-left:-5.114760px;}
._f{margin-left:-3.669240px;}
._9{margin-left:-2.584560px;}
._5{margin-left:-1.324200px;}
._d{width:1.083720px;}
._e{width:2.645280px;}
._10{width:4.104000px;}
._1b{width:5.113800px;}
._11{width:6.187680px;}
._a{width:8.176320px;}
._12{width:9.212520px;}
._2{width:10.284840px;}
._6{width:11.726640px;}
._1a{width:13.536000px;}
._16{width:14.976000px;}
._b{width:16.953840px;}
._c{width:18.036000px;}
._20{width:19.944000px;}
._17{width:21.240000px;}
._18{width:22.536000px;}
._1f{width:24.380640px;}
._1e{width:25.731360px;}
._1d{width:27.432000px;}
._19{width:28.512000px;}
._1c{width:30.312000px;}
._25{width:31.392000px;}
._29{width:32.475000px;}
._27{width:33.708600px;}
._22{width:35.483400px;}
._21{width:36.728400px;}
._7{width:37.775160px;}
._8{width:39.024720px;}
._24{width:40.104000px;}
._23{width:41.256000px;}
._26{width:43.312320px;}
._3{width:44.599680px;}
._4{width:46.233720px;}
._2a{width:56.160000px;}
._28{width:86.520000px;}
._13{width:243.156000px;}
._0{width:805.260000px;}
._14{width:1207.551840px;}
._1{width:1748.340000px;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(39,39,39);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fs9{font-size:42.120000px;}
.fs8{font-size:47.880000px;}
.fs1{font-size:54.000000px;}
.fs4{font-size:56.880000px;}
.fs6{font-size:60.120000px;}
.fs3{font-size:63.000000px;}
.fs0{font-size:65.880000px;}
.fs5{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;}
.y2d{bottom:96.689908px;}
.ya1{bottom:101.909908px;}
.y2c{bottom:113.969908px;}
.yb5{bottom:114.329908px;}
.ybe{bottom:118.739908px;}
.yb0{bottom:119.189908px;}
.y55{bottom:131.159908px;}
.yb9{bottom:131.609908px;}
.y2b{bottom:136.379908px;}
.yb4{bottom:139.439908px;}
.y54{bottom:148.439908px;}
.y2a{bottom:148.799908px;}
.y53{bottom:153.659908px;}
.yb3{bottom:160.139908px;}
.y7c{bottom:165.719908px;}
.y52{bottom:166.079908px;}
.y7b{bottom:170.939908px;}
.y9b{bottom:180.839908px;}
.y8a{bottom:182.909908px;}
.y29{bottom:183.089908px;}
.y7a{bottom:183.359908px;}
.yb2{bottom:187.589908px;}
.ya0{bottom:188.129908px;}
.y51{bottom:195.959908px;}
.y28{bottom:199.559908px;}
.y89{bottom:200.189908px;}
.yba{bottom:200.549908px;}
.y79{bottom:201.539908px;}
.y9f{bottom:205.409908px;}
.y27{bottom:216.029908px;}
.y50{bottom:216.659908px;}
.y88{bottom:217.469908px;}
.y9e{bottom:217.829908px;}
.y78{bottom:222.239908px;}
.y9a{bottom:222.689908px;}
.y26{bottom:232.499908px;}
.y87{bottom:234.659908px;}
.y4f{bottom:237.359908px;}
.ya8{bottom:239.879908px;}
.y77{bottom:242.939908px;}
.y25{bottom:248.969908px;}
.yaf{bottom:249.689908px;}
.y86{bottom:251.939908px;}
.ya7{bottom:252.299908px;}
.y85{bottom:257.159908px;}
.y4d{bottom:258.059908px;}
.y76{bottom:263.639908px;}
.y4e{bottom:264.809908px;}
.y24{bottom:265.439908px;}
.y84{bottom:269.219908px;}
.ybc{bottom:269.579908px;}
.yb6{bottom:270.389908px;}
.y4c{bottom:278.759908px;}
.y23{bottom:281.909908px;}
.y75{bottom:284.339908px;}
.y83{bottom:286.409908px;}
.y9d{bottom:291.089908px;}
.y82{bottom:291.629908px;}
.y22{bottom:298.469908px;}
.y4b{bottom:299.459908px;}
.y99{bottom:303.689908px;}
.y81{bottom:304.049908px;}
.y74{bottom:305.039908px;}
.yac{bottom:308.909908px;}
.yb8{bottom:311.789908px;}
.y21{bottom:314.939908px;}
.y4a{bottom:320.159908px;}
.y98{bottom:320.969908px;}
.yab{bottom:321.329908px;}
.y73{bottom:325.739908px;}
.y97{bottom:326.189908px;}
.y20{bottom:331.409908px;}
.y80{bottom:332.489908px;}
.y96{bottom:338.159908px;}
.y49{bottom:340.859908px;}
.y95{bottom:343.379908px;}
.y72{bottom:346.439908px;}
.y1f{bottom:347.879908px;}
.yaa{bottom:353.189908px;}
.y94{bottom:355.439908px;}
.y93{bottom:360.659908px;}
.y48{bottom:361.559908px;}
.y1e{bottom:364.349908px;}
.y71{bottom:367.139908px;}
.y92{bottom:372.719908px;}
.y1d{bottom:380.819908px;}
.y47{bottom:382.259908px;}
.y70{bottom:387.839908px;}
.y91{bottom:389.909908px;}
.ybb{bottom:394.589908px;}
.ya4{bottom:395.129908px;}
.y1c{bottom:397.289908px;}
.y46{bottom:402.959908px;}
.y90{bottom:407.189908px;}
.y6e{bottom:408.539908px;}
.ya3{bottom:412.409908px;}
.y1b{bottom:413.759908px;}
.y6f{bottom:415.289908px;}
.y45{bottom:423.659908px;}
.y8f{bottom:424.829908px;}
.y6d{bottom:429.239908px;}
.y1a{bottom:430.229908px;}
.yae{bottom:435.989908px;}
.y44{bottom:444.359908px;}
.y19{bottom:446.339908px;}
.y6c{bottom:449.969908px;}
.y8e{bottom:456.719908px;}
.y18{bottom:463.649908px;}
.y43{bottom:465.089908px;}
.y6b{bottom:470.669908px;}
.y17{bottom:480.929908px;}
.y42{bottom:485.789908px;}
.y6a{bottom:491.369908px;}
.y16{bottom:498.119908px;}
.y41{bottom:506.489908px;}
.y69{bottom:512.069908px;}
.y15{bottom:515.399908px;}
.y8d{bottom:518.819908px;}
.y40{bottom:527.189908px;}
.y14{bottom:532.679908px;}
.y68{bottom:532.769908px;}
.y3f{bottom:547.889908px;}
.y13{bottom:549.869908px;}
.y67{bottom:553.469908px;}
.ya9{bottom:560.219908px;}
.y12{bottom:567.149908px;}
.y3e{bottom:568.589908px;}
.y66{bottom:574.169908px;}
.ya6{bottom:580.919908px;}
.y11{bottom:584.429908px;}
.y3d{bottom:589.289908px;}
.y65{bottom:594.869908px;}
.y10{bottom:601.619908px;}
.y3c{bottom:609.989908px;}
.y63{bottom:615.569908px;}
.yf{bottom:618.899908px;}
.y64{bottom:622.319908px;}
.y3b{bottom:630.689908px;}
.y7f{bottom:636.269908px;}
.ye{bottom:636.809908px;}
.ya5{bottom:643.019908px;}
.y3a{bottom:651.389908px;}
.y62{bottom:656.969908px;}
.ya2{bottom:663.719908px;}
.y39{bottom:672.089908px;}
.yd{bottom:673.529908px;}
.y61{bottom:677.669908px;}
.y7e{bottom:684.419908px;}
.y38{bottom:692.789908px;}
.y60{bottom:698.369908px;}
.yc{bottom:702.869908px;}
.y9c{bottom:705.119908px;}
.y37{bottom:713.489908px;}
.y5f{bottom:719.069908px;}
.ybd{bottom:725.819908px;}
.yb{bottom:732.209908px;}
.y5e{bottom:739.769908px;}
.y36{bottom:754.889908px;}
.y5d{bottom:760.469908px;}
.ya{bottom:761.459908px;}
.yb1{bottom:767.219908px;}
.y35{bottom:775.589908px;}
.y5c{bottom:781.169908px;}
.yad{bottom:787.919908px;}
.y9{bottom:790.799908px;}
.y34{bottom:796.199908px;}
.y5b{bottom:801.869908px;}
.y8c{bottom:808.619908px;}
.y8{bottom:820.049908px;}
.y5a{bottom:822.569908px;}
.y33{bottom:822.659908px;}
.y32{bottom:839.159908px;}
.y59{bottom:843.299908px;}
.y7{bottom:849.419908px;}
.y8b{bottom:850.049908px;}
.y31{bottom:855.629908px;}
.y58{bottom:863.999908px;}
.y7d{bottom:870.749908px;}
.y30{bottom:872.189908px;}
.y6{bottom:878.669908px;}
.y57{bottom:884.699908px;}
.y2f{bottom:888.659908px;}
.yb7{bottom:891.449908px;}
.y2e{bottom:916.739908px;}
.y56{bottom:917.099908px;}
.y2{bottom:936.809908px;}
.ha{height:38.158594px;}
.h13{height:41.338477px;}
.hd{height:46.991602px;}
.h4{height:52.998047px;}
.h9{height:53.709961px;}
.h12{height:53.896641px;}
.h8{height:55.291992px;}
.h10{height:58.975137px;}
.h7{height:59.004492px;}
.h11{height:60.589687px;}
.h14{height:64.546875px;}
.he{height:64.657617px;}
.h3{height:65.526152px;}
.hc{height:70.628906px;}
.h6{height:70.664062px;}
.hb{height:72.562500px;}
.hf{height:73.991602px;}
.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;}
.x5{left:100.529989px;}
.x1b{left:105.419989px;}
.x22{left:124.139978px;}
.x2{left:127.559989px;}
.xa{left:133.679989px;}
.x23{left:134.759989px;}
.x66{left:139.709978px;}
.x47{left:142.679978px;}
.x67{left:151.769989px;}
.x48{left:154.739989px;}
.x5a{left:166.259989px;}
.xd{left:173.639978px;}
.xe{left:179.669989px;}
.x59{left:183.269989px;}
.x5d{left:186.689978px;}
.x31{left:192.179978px;}
.x5b{left:196.319989px;}
.x5e{left:198.749989px;}
.x57{left:203.159978px;}
.x32{left:204.239989px;}
.x1e{left:205.679978px;}
.x58{left:215.219989px;}
.x1f{left:216.299989px;}
.xf{left:222.689978px;}
.x10{left:228.719989px;}
.x62{left:233.579978px;}
.x28{left:241.229978px;}
.x63{left:245.639989px;}
.x29{left:251.849989px;}
.x60{left:260.669978px;}
.x3{left:262.199978px;}
.x4{left:268.229989px;}
.x61{left:272.729989px;}
.x26{left:281.189978px;}
.x39{left:285.059978px;}
.x27{left:291.809989px;}
.x2a{left:294.599978px;}
.x3a{left:295.679989px;}
.x44{left:298.199978px;}
.x5f{left:303.149989px;}
.xb{left:306.569978px;}
.x45{left:310.259989px;}
.xc{left:312.599989px;}
.x64{left:323.069978px;}
.x4a{left:325.679989px;}
.x2d{left:333.329978px;}
.x65{left:335.129989px;}
.x55{left:338.099978px;}
.x52{left:339.179978px;}
.x2e{left:343.949989px;}
.x56{left:348.719989px;}
.x50{left:349.979978px;}
.x53{left:351.239989px;}
.x46{left:356.189989px;}
.x51{left:362.039989px;}
.x4d{left:366.449978px;}
.x17{left:371.129978px;}
.x4e{left:377.069989px;}
.x8{left:380.759978px;}
.x18{left:383.189989px;}
.x3d{left:385.619978px;}
.x9{left:386.789989px;}
.x19{left:390.029978px;}
.x37{left:394.079978px;}
.x3e{left:397.679989px;}
.x1a{left:402.089989px;}
.x38{left:406.139989px;}
.x3f{left:408.029978px;}
.x11{left:419.639978px;}
.x12{left:425.669989px;}
.x24{left:435.569978px;}
.x25{left:447.629989px;}
.x33{left:461.669978px;}
.x20{left:466.259978px;}
.x35{left:467.519978px;}
.x34{left:473.729989px;}
.x21{left:476.879989px;}
.x36{left:479.579989px;}
.x2f{left:484.079978px;}
.x30{left:487.319989px;}
.x15{left:494.519978px;}
.x13{left:497.399978px;}
.x14{left:503.429989px;}
.x16{left:506.579989px;}
.x5c{left:515.669989px;}
.x4f{left:518.099989px;}
.x3b{left:537.029978px;}
.x3c{left:547.649989px;}
.x4b{left:558.089978px;}
.x4c{left:570.149989px;}
.x2b{left:576.539978px;}
.x40{left:579.959978px;}
.x2c{left:587.159989px;}
.x41{left:592.019989px;}
.x1c{left:595.529978px;}
.x54{left:597.689989px;}
.x42{left:600.569978px;}
.x6{left:601.649978px;}
.x1d{left:606.149989px;}
.x7{left:607.679989px;}
.x43{left:611.189989px;}
.x49{left:622.889989px;}
@media print{
.v3{vertical-align:-73.600000pt;}
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:24.000000pt;}
.v1{vertical-align:26.560000pt;}
.ls4{letter-spacing:-1.664000pt;}
.ls12{letter-spacing:-0.456533pt;}
.lsc{letter-spacing:-0.256000pt;}
.ls17{letter-spacing:-0.240000pt;}
.ls1f{letter-spacing:-0.195733pt;}
.ls1d{letter-spacing:-0.192000pt;}
.ls11{letter-spacing:-0.160000pt;}
.ls2{letter-spacing:-0.136533pt;}
.ls1{letter-spacing:-0.090667pt;}
.ls13{letter-spacing:-0.064000pt;}
.lse{letter-spacing:-0.047360pt;}
.ls1c{letter-spacing:-0.011840pt;}
.ls0{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.064000pt;}
.ls5{letter-spacing:0.069867pt;}
.ls3{letter-spacing:0.080000pt;}
.ls16{letter-spacing:0.094827pt;}
.lsd{letter-spacing:0.124267pt;}
.lsf{letter-spacing:0.124480pt;}
.ls19{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.170667pt;}
.lsa{letter-spacing:0.320000pt;}
.ls1b{letter-spacing:1.040000pt;}
.ls10{letter-spacing:3.600000pt;}
.ls18{letter-spacing:3.920000pt;}
.ls1a{letter-spacing:4.240000pt;}
.ls1e{letter-spacing:9.360000pt;}
.ls15{letter-spacing:18.960000pt;}
.ls14{letter-spacing:20.160000pt;}
.ls7{letter-spacing:97.386667pt;}
.ls8{letter-spacing:288.952107pt;}
.ls20{letter-spacing:734.506667pt;}
.ws0{word-spacing:-19.309440pt;}
.ws10{word-spacing:-16.064000pt;}
.ws8{word-spacing:-16.000000pt;}
.wsf{word-spacing:-15.936000pt;}
.ws11{word-spacing:-15.808000pt;}
.ws9{word-spacing:-15.744000pt;}
.wsc{word-spacing:-13.520000pt;}
.wsa{word-spacing:-13.484267pt;}
.ws2{word-spacing:-13.360000pt;}
.wsb{word-spacing:-13.312640pt;}
.ws6{word-spacing:-13.304427pt;}
.wsd{word-spacing:-13.223467pt;}
.wse{word-spacing:-13.200000pt;}
.ws1{word-spacing:-12.656000pt;}
.ws7{word-spacing:-12.640000pt;}
.ws3{word-spacing:-10.848000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws5{word-spacing:0.000000pt;}
._15{margin-left:-4.546453pt;}
._f{margin-left:-3.261547pt;}
._9{margin-left:-2.297387pt;}
._5{margin-left:-1.177067pt;}
._d{width:0.963307pt;}
._e{width:2.351360pt;}
._10{width:3.648000pt;}
._1b{width:4.545600pt;}
._11{width:5.500160pt;}
._a{width:7.267840pt;}
._12{width:8.188907pt;}
._2{width:9.142080pt;}
._6{width:10.423680pt;}
._1a{width:12.032000pt;}
._16{width:13.312000pt;}
._b{width:15.070080pt;}
._c{width:16.032000pt;}
._20{width:17.728000pt;}
._17{width:18.880000pt;}
._18{width:20.032000pt;}
._1f{width:21.671680pt;}
._1e{width:22.872320pt;}
._1d{width:24.384000pt;}
._19{width:25.344000pt;}
._1c{width:26.944000pt;}
._25{width:27.904000pt;}
._29{width:28.866667pt;}
._27{width:29.963200pt;}
._22{width:31.540800pt;}
._21{width:32.647467pt;}
._7{width:33.577920pt;}
._8{width:34.688640pt;}
._24{width:35.648000pt;}
._23{width:36.672000pt;}
._26{width:38.499840pt;}
._3{width:39.644160pt;}
._4{width:41.096640pt;}
._2a{width:49.920000pt;}
._28{width:76.906667pt;}
._13{width:216.138667pt;}
._0{width:715.786667pt;}
._14{width:1073.379413pt;}
._1{width:1554.080000pt;}
.fs7{font-size:34.560000pt;}
.fs9{font-size:37.440000pt;}
.fs8{font-size:42.560000pt;}
.fs1{font-size:48.000000pt;}
.fs4{font-size:50.560000pt;}
.fs6{font-size:53.440000pt;}
.fs3{font-size:56.000000pt;}
.fs0{font-size:58.560000pt;}
.fs5{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;}
.y2d{bottom:85.946585pt;}
.ya1{bottom:90.586585pt;}
.y2c{bottom:101.306585pt;}
.yb5{bottom:101.626585pt;}
.ybe{bottom:105.546585pt;}
.yb0{bottom:105.946585pt;}
.y55{bottom:116.586585pt;}
.yb9{bottom:116.986585pt;}
.y2b{bottom:121.226585pt;}
.yb4{bottom:123.946585pt;}
.y54{bottom:131.946585pt;}
.y2a{bottom:132.266585pt;}
.y53{bottom:136.586585pt;}
.yb3{bottom:142.346585pt;}
.y7c{bottom:147.306585pt;}
.y52{bottom:147.626585pt;}
.y7b{bottom:151.946585pt;}
.y9b{bottom:160.746585pt;}
.y8a{bottom:162.586585pt;}
.y29{bottom:162.746585pt;}
.y7a{bottom:162.986585pt;}
.yb2{bottom:166.746585pt;}
.ya0{bottom:167.226585pt;}
.y51{bottom:174.186585pt;}
.y28{bottom:177.386585pt;}
.y89{bottom:177.946585pt;}
.yba{bottom:178.266585pt;}
.y79{bottom:179.146585pt;}
.y9f{bottom:182.586585pt;}
.y27{bottom:192.026585pt;}
.y50{bottom:192.586585pt;}
.y88{bottom:193.306585pt;}
.y9e{bottom:193.626585pt;}
.y78{bottom:197.546585pt;}
.y9a{bottom:197.946585pt;}
.y26{bottom:206.666585pt;}
.y87{bottom:208.586585pt;}
.y4f{bottom:210.986585pt;}
.ya8{bottom:213.226585pt;}
.y77{bottom:215.946585pt;}
.y25{bottom:221.306585pt;}
.yaf{bottom:221.946585pt;}
.y86{bottom:223.946585pt;}
.ya7{bottom:224.266585pt;}
.y85{bottom:228.586585pt;}
.y4d{bottom:229.386585pt;}
.y76{bottom:234.346585pt;}
.y4e{bottom:235.386585pt;}
.y24{bottom:235.946585pt;}
.y84{bottom:239.306585pt;}
.ybc{bottom:239.626585pt;}
.yb6{bottom:240.346585pt;}
.y4c{bottom:247.786585pt;}
.y23{bottom:250.586585pt;}
.y75{bottom:252.746585pt;}
.y83{bottom:254.586585pt;}
.y9d{bottom:258.746585pt;}
.y82{bottom:259.226585pt;}
.y22{bottom:265.306585pt;}
.y4b{bottom:266.186585pt;}
.y99{bottom:269.946585pt;}
.y81{bottom:270.266585pt;}
.y74{bottom:271.146585pt;}
.yac{bottom:274.586585pt;}
.yb8{bottom:277.146585pt;}
.y21{bottom:279.946585pt;}
.y4a{bottom:284.586585pt;}
.y98{bottom:285.306585pt;}
.yab{bottom:285.626585pt;}
.y73{bottom:289.546585pt;}
.y97{bottom:289.946585pt;}
.y20{bottom:294.586585pt;}
.y80{bottom:295.546585pt;}
.y96{bottom:300.586585pt;}
.y49{bottom:302.986585pt;}
.y95{bottom:305.226585pt;}
.y72{bottom:307.946585pt;}
.y1f{bottom:309.226585pt;}
.yaa{bottom:313.946585pt;}
.y94{bottom:315.946585pt;}
.y93{bottom:320.586585pt;}
.y48{bottom:321.386585pt;}
.y1e{bottom:323.866585pt;}
.y71{bottom:326.346585pt;}
.y92{bottom:331.306585pt;}
.y1d{bottom:338.506585pt;}
.y47{bottom:339.786585pt;}
.y70{bottom:344.746585pt;}
.y91{bottom:346.586585pt;}
.ybb{bottom:350.746585pt;}
.ya4{bottom:351.226585pt;}
.y1c{bottom:353.146585pt;}
.y46{bottom:358.186585pt;}
.y90{bottom:361.946585pt;}
.y6e{bottom:363.146585pt;}
.ya3{bottom:366.586585pt;}
.y1b{bottom:367.786585pt;}
.y6f{bottom:369.146585pt;}
.y45{bottom:376.586585pt;}
.y8f{bottom:377.626585pt;}
.y6d{bottom:381.546585pt;}
.y1a{bottom:382.426585pt;}
.yae{bottom:387.546585pt;}
.y44{bottom:394.986585pt;}
.y19{bottom:396.746585pt;}
.y6c{bottom:399.973252pt;}
.y8e{bottom:405.973252pt;}
.y18{bottom:412.133252pt;}
.y43{bottom:413.413252pt;}
.y6b{bottom:418.373252pt;}
.y17{bottom:427.493252pt;}
.y42{bottom:431.813252pt;}
.y6a{bottom:436.773252pt;}
.y16{bottom:442.773252pt;}
.y41{bottom:450.213252pt;}
.y69{bottom:455.173252pt;}
.y15{bottom:458.133252pt;}
.y8d{bottom:461.173252pt;}
.y40{bottom:468.613252pt;}
.y14{bottom:473.493252pt;}
.y68{bottom:473.573252pt;}
.y3f{bottom:487.013252pt;}
.y13{bottom:488.773252pt;}
.y67{bottom:491.973252pt;}
.ya9{bottom:497.973252pt;}
.y12{bottom:504.133252pt;}
.y3e{bottom:505.413252pt;}
.y66{bottom:510.373252pt;}
.ya6{bottom:516.373252pt;}
.y11{bottom:519.493252pt;}
.y3d{bottom:523.813252pt;}
.y65{bottom:528.773252pt;}
.y10{bottom:534.773252pt;}
.y3c{bottom:542.213252pt;}
.y63{bottom:547.173252pt;}
.yf{bottom:550.133252pt;}
.y64{bottom:553.173252pt;}
.y3b{bottom:560.613252pt;}
.y7f{bottom:565.573252pt;}
.ye{bottom:566.053252pt;}
.ya5{bottom:571.573252pt;}
.y3a{bottom:579.013252pt;}
.y62{bottom:583.973252pt;}
.ya2{bottom:589.973252pt;}
.y39{bottom:597.413252pt;}
.yd{bottom:598.693252pt;}
.y61{bottom:602.373252pt;}
.y7e{bottom:608.373252pt;}
.y38{bottom:615.813252pt;}
.y60{bottom:620.773252pt;}
.yc{bottom:624.773252pt;}
.y9c{bottom:626.773252pt;}
.y37{bottom:634.213252pt;}
.y5f{bottom:639.173252pt;}
.ybd{bottom:645.173252pt;}
.yb{bottom:650.853252pt;}
.y5e{bottom:657.573252pt;}
.y36{bottom:671.013252pt;}
.y5d{bottom:675.973252pt;}
.ya{bottom:676.853252pt;}
.yb1{bottom:681.973252pt;}
.y35{bottom:689.413252pt;}
.y5c{bottom:694.373252pt;}
.yad{bottom:700.373252pt;}
.y9{bottom:702.933252pt;}
.y34{bottom:707.733252pt;}
.y5b{bottom:712.773252pt;}
.y8c{bottom:718.773252pt;}
.y8{bottom:728.933252pt;}
.y5a{bottom:731.173252pt;}
.y33{bottom:731.253252pt;}
.y32{bottom:745.919919pt;}
.y59{bottom:749.599919pt;}
.y7{bottom:755.039919pt;}
.y8b{bottom:755.599919pt;}
.y31{bottom:760.559919pt;}
.y58{bottom:767.999919pt;}
.y7d{bottom:773.999919pt;}
.y30{bottom:775.279919pt;}
.y6{bottom:781.039919pt;}
.y57{bottom:786.399919pt;}
.y2f{bottom:789.919919pt;}
.yb7{bottom:792.399919pt;}
.y2e{bottom:814.879919pt;}
.y56{bottom:815.199919pt;}
.y2{bottom:832.719919pt;}
.ha{height:33.918750pt;}
.h13{height:36.745312pt;}
.hd{height:41.770312pt;}
.h4{height:47.109375pt;}
.h9{height:47.742188pt;}
.h12{height:47.908125pt;}
.h8{height:49.148438pt;}
.h10{height:52.422344pt;}
.h7{height:52.448437pt;}
.h11{height:53.857500pt;}
.h14{height:57.375000pt;}
.he{height:57.473437pt;}
.h3{height:58.245469pt;}
.hc{height:62.781250pt;}
.h6{height:62.812500pt;}
.hb{height:64.500000pt;}
.hf{height:65.770312pt;}
.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;}
.x5{left:89.359990pt;}
.x1b{left:93.706657pt;}
.x22{left:110.346648pt;}
.x2{left:113.386657pt;}
.xa{left:118.826657pt;}
.x23{left:119.786657pt;}
.x66{left:124.186648pt;}
.x47{left:126.826648pt;}
.x67{left:134.906657pt;}
.x48{left:137.546657pt;}
.x5a{left:147.786657pt;}
.xd{left:154.346648pt;}
.xe{left:159.706657pt;}
.x59{left:162.906657pt;}
.x5d{left:165.946648pt;}
.x31{left:170.826648pt;}
.x5b{left:174.506657pt;}
.x5e{left:176.666657pt;}
.x57{left:180.586648pt;}
.x32{left:181.546657pt;}
.x1e{left:182.826648pt;}
.x58{left:191.306657pt;}
.x1f{left:192.266657pt;}
.xf{left:197.946648pt;}
.x10{left:203.306657pt;}
.x62{left:207.626648pt;}
.x28{left:214.426648pt;}
.x63{left:218.346657pt;}
.x29{left:223.866657pt;}
.x60{left:231.706648pt;}
.x3{left:233.066648pt;}
.x4{left:238.426657pt;}
.x61{left:242.426657pt;}
.x26{left:249.946648pt;}
.x39{left:253.386648pt;}
.x27{left:259.386657pt;}
.x2a{left:261.866648pt;}
.x3a{left:262.826657pt;}
.x44{left:265.066648pt;}
.x5f{left:269.466657pt;}
.xb{left:272.506648pt;}
.x45{left:275.786657pt;}
.xc{left:277.866657pt;}
.x64{left:287.173314pt;}
.x4a{left:289.493324pt;}
.x2d{left:296.293314pt;}
.x65{left:297.893324pt;}
.x55{left:300.533314pt;}
.x52{left:301.493314pt;}
.x2e{left:305.733324pt;}
.x56{left:309.973324pt;}
.x50{left:311.093314pt;}
.x53{left:312.213324pt;}
.x46{left:316.613324pt;}
.x51{left:321.813324pt;}
.x4d{left:325.733314pt;}
.x17{left:329.893314pt;}
.x4e{left:335.173324pt;}
.x8{left:338.453314pt;}
.x18{left:340.613324pt;}
.x3d{left:342.773314pt;}
.x9{left:343.813324pt;}
.x19{left:346.693314pt;}
.x37{left:350.293314pt;}
.x3e{left:353.493324pt;}
.x1a{left:357.413324pt;}
.x38{left:361.013324pt;}
.x3f{left:362.693314pt;}
.x11{left:373.013314pt;}
.x12{left:378.373324pt;}
.x24{left:387.173314pt;}
.x25{left:397.893324pt;}
.x33{left:410.373314pt;}
.x20{left:414.453314pt;}
.x35{left:415.573314pt;}
.x34{left:421.093324pt;}
.x21{left:423.893324pt;}
.x36{left:426.293324pt;}
.x2f{left:430.293314pt;}
.x30{left:433.173324pt;}
.x15{left:439.573314pt;}
.x13{left:442.133314pt;}
.x14{left:447.493324pt;}
.x16{left:450.293324pt;}
.x5c{left:458.373324pt;}
.x4f{left:460.533324pt;}
.x3b{left:477.359981pt;}
.x3c{left:486.799990pt;}
.x4b{left:496.079981pt;}
.x4c{left:506.799990pt;}
.x2b{left:512.479981pt;}
.x40{left:515.519981pt;}
.x2c{left:521.919990pt;}
.x41{left:526.239990pt;}
.x1c{left:529.359981pt;}
.x54{left:531.279990pt;}
.x42{left:533.839981pt;}
.x6{left:534.799981pt;}
.x1d{left:538.799990pt;}
.x7{left:540.159990pt;}
.x43{left:543.279990pt;}
.x49{left:553.679990pt;}
}




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