
    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_dbe82bdc5edb870521a5c16f.woff')format("woff");}.ff1{font-family:ff1;line-height:1.104492;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_b3652f0e7d9cf15e8d2e1a65.woff')format("woff");}.ff2{font-family:ff2;line-height:0.718262;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_458176eaf1071c33a6732dd8.woff')format("woff");}.ff3{font-family:ff3;line-height:0.943359;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_6ae838e7d5779fbc937f0b90.woff')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_bc269500befdd96a5866a290.woff')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_1fddc8d6d3ac5137459c16b2.woff')format("woff");}.ff6{font-family:ff6;line-height:0.728027;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_3a31655d68de1d42e060ae45.woff')format("woff");}.ff7{font-family:ff7;line-height:1.104492;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:33.000000px;}
.v2{vertical-align:66.000000px;}
.lsc{letter-spacing:-4.440000px;}
.ls7{letter-spacing:-1.320000px;}
.lsb{letter-spacing:-1.200000px;}
.ls8{letter-spacing:-0.660000px;}
.ls2{letter-spacing:-0.600000px;}
.ls3{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.000600px;}
.lsa{letter-spacing:1.188000px;}
.ls0{letter-spacing:1.500000px;}
.ls6{letter-spacing:2.100000px;}
.ls5{letter-spacing:2.310000px;}
.ls1{letter-spacing:2.940000px;}
.ls9{letter-spacing:10.612200px;}
.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;}
}
.ws6{word-spacing:-20.658000px;}
.ws0{word-spacing:-16.680000px;}
.ws18{word-spacing:-15.480000px;}
.ws5{word-spacing:-2.940000px;}
.ws8{word-spacing:-2.310000px;}
.ws7{word-spacing:-2.100000px;}
.ws2{word-spacing:-1.500000px;}
.ws19{word-spacing:-1.188000px;}
.ws1{word-spacing:-0.060000px;}
.ws4{word-spacing:0.000000px;}
.ws3{word-spacing:0.600000px;}
.wsa{word-spacing:0.660000px;}
.ws1a{word-spacing:1.200000px;}
.ws9{word-spacing:1.320000px;}
.ws1b{word-spacing:4.380000px;}
.wsc{word-spacing:225.933600px;}
.wsb{word-spacing:300.981000px;}
.wsf{word-spacing:369.181800px;}
.ws11{word-spacing:385.857600px;}
.wse{word-spacing:402.541800px;}
.ws16{word-spacing:419.217000px;}
.ws13{word-spacing:435.892200px;}
.wsd{word-spacing:437.469600px;}
.ws15{word-spacing:454.154400px;}
.ws12{word-spacing:470.839200px;}
.ws14{word-spacing:1202.555400px;}
.ws10{word-spacing:1217.417400px;}
.ws17{word-spacing:1221.215400px;}
._33{margin-left:-18.374400px;}
._e{margin-left:-17.196000px;}
._14{margin-left:-12.440400px;}
._7{margin-left:-9.963000px;}
._34{margin-left:-8.642400px;}
._6{margin-left:-7.639800px;}
._1c{margin-left:-6.410400px;}
._2{margin-left:-5.394000px;}
._5{margin-left:-3.804000px;}
._0{margin-left:-2.280000px;}
._1{margin-left:-1.056000px;}
._3{width:1.496400px;}
._4{width:3.008400px;}
._a{width:4.287600px;}
._c{width:5.535600px;}
._b{width:7.242000px;}
._d{width:8.364000px;}
._8{width:9.618000px;}
._9{width:10.992000px;}
._10{width:12.550200px;}
._17{width:13.668600px;}
._15{width:15.034800px;}
._f{width:16.841400px;}
._26{width:18.692400px;}
._1d{width:19.773600px;}
._1a{width:21.674400px;}
._1e{width:22.692000px;}
._11{width:23.753400px;}
._12{width:25.411200px;}
._16{width:26.782800px;}
._1f{width:28.409400px;}
._1b{width:29.429400px;}
._18{width:30.495000px;}
._21{width:31.944600px;}
._19{width:33.319200px;}
._20{width:35.979600px;}
._13{width:38.559600px;}
._28{width:354.615000px;}
._22{width:405.886800px;}
._29{width:412.059000px;}
._32{width:419.221800px;}
._25{width:420.845400px;}
._2f{width:435.897000px;}
._31{width:437.529600px;}
._2b{width:452.572200px;}
._2e{width:454.214400px;}
._2a{width:470.899200px;}
._2d{width:523.239000px;}
._23{width:673.151400px;}
._30{width:689.495400px;}
._27{width:783.875400px;}
._2c{width:905.255400px;}
._24{width:1153.655400px;}
.fc3{color:rgb(32,33,34);}
.fc1{color:rgb(128,128,130);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs4{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y34{bottom:31.872000px;}
.y2{bottom:32.214000px;}
.y33{bottom:66.488850px;}
.yf6{bottom:68.349750px;}
.y6f{bottom:74.550600px;}
.ya9{bottom:75.542700px;}
.yd0{bottom:82.499400px;}
.y32{bottom:84.488850px;}
.yf5{bottom:86.349750px;}
.y6e{bottom:94.050600px;}
.ya8{bottom:95.042700px;}
.ycf{bottom:101.999400px;}
.y31{bottom:102.488850px;}
.yf4{bottom:104.349750px;}
.y6d{bottom:113.550600px;}
.ya7{bottom:114.542700px;}
.y30{bottom:120.488850px;}
.yce{bottom:121.499400px;}
.yf3{bottom:122.349750px;}
.y6c{bottom:133.050600px;}
.ya6{bottom:134.042700px;}
.y2f{bottom:138.488850px;}
.yf2{bottom:140.349750px;}
.ycd{bottom:140.999400px;}
.y6b{bottom:152.550600px;}
.ya5{bottom:153.542700px;}
.yf1{bottom:158.349750px;}
.ycc{bottom:160.499400px;}
.y6a{bottom:172.050600px;}
.ya4{bottom:173.042700px;}
.yf0{bottom:176.349750px;}
.y2e{bottom:177.748650px;}
.ycb{bottom:179.999400px;}
.y69{bottom:191.550600px;}
.ya3{bottom:192.542700px;}
.yef{bottom:194.349750px;}
.y2d{bottom:197.000700px;}
.yca{bottom:199.499400px;}
.y68{bottom:211.050600px;}
.ya2{bottom:212.042700px;}
.yee{bottom:212.349750px;}
.y2c{bottom:216.252750px;}
.yc9{bottom:218.999400px;}
.yed{bottom:230.349750px;}
.y67{bottom:230.550600px;}
.ya1{bottom:231.542700px;}
.y2b{bottom:235.504650px;}
.yc8{bottom:238.499400px;}
.yec{bottom:248.349750px;}
.y66{bottom:250.050600px;}
.ya0{bottom:251.042700px;}
.yc7{bottom:257.999400px;}
.yeb{bottom:266.349750px;}
.y65{bottom:269.550600px;}
.y9f{bottom:270.542700px;}
.y2a{bottom:273.264450px;}
.yc6{bottom:277.499400px;}
.yea{bottom:284.349750px;}
.y64{bottom:289.050600px;}
.y9e{bottom:290.042700px;}
.y29{bottom:292.516500px;}
.yc5{bottom:296.999400px;}
.ye9{bottom:302.349750px;}
.y63{bottom:308.550600px;}
.y9d{bottom:309.542700px;}
.y28{bottom:311.768400px;}
.yc4{bottom:316.499400px;}
.ye8{bottom:320.349750px;}
.y62{bottom:328.050600px;}
.y9c{bottom:329.042700px;}
.y27{bottom:331.020450px;}
.yc3{bottom:335.999400px;}
.ye7{bottom:338.349750px;}
.y61{bottom:347.550600px;}
.y9b{bottom:348.542700px;}
.y26{bottom:350.272350px;}
.yc2{bottom:355.499400px;}
.ye6{bottom:356.349750px;}
.y60{bottom:367.050600px;}
.y9a{bottom:368.042700px;}
.y25{bottom:369.524250px;}
.ye5{bottom:374.349750px;}
.yc1{bottom:374.999400px;}
.y5f{bottom:386.550600px;}
.y99{bottom:387.542700px;}
.ye4{bottom:392.349750px;}
.yc0{bottom:394.499400px;}
.y5e{bottom:406.050600px;}
.y98{bottom:407.042700px;}
.y24{bottom:407.284200px;}
.ybf{bottom:413.999400px;}
.ye3{bottom:414.601800px;}
.y5d{bottom:425.550600px;}
.y23{bottom:426.536100px;}
.y97{bottom:426.542700px;}
.ybe{bottom:433.499400px;}
.y5c{bottom:445.050600px;}
.y22{bottom:445.788150px;}
.y96{bottom:446.042700px;}
.ybd{bottom:452.999400px;}
.y5b{bottom:464.550600px;}
.y21{bottom:465.040050px;}
.y95{bottom:465.542700px;}
.ybc{bottom:472.499400px;}
.y5a{bottom:484.050600px;}
.y20{bottom:484.292100px;}
.y94{bottom:485.042700px;}
.ybb{bottom:491.999400px;}
.y1f{bottom:503.544000px;}
.y93{bottom:504.542700px;}
.yba{bottom:511.499400px;}
.y59{bottom:513.630900px;}
.y92{bottom:524.042700px;}
.yb9{bottom:530.999400px;}
.y58{bottom:531.630900px;}
.y1e{bottom:541.303950px;}
.y91{bottom:543.542700px;}
.y57{bottom:549.630900px;}
.yb8{bottom:550.499400px;}
.y1d{bottom:560.555850px;}
.y90{bottom:563.042700px;}
.y56{bottom:567.630900px;}
.yb7{bottom:569.999400px;}
.y1c{bottom:579.807750px;}
.y8f{bottom:582.542700px;}
.y55{bottom:585.630900px;}
.yb6{bottom:589.499400px;}
.y1b{bottom:599.059800px;}
.y8e{bottom:602.042700px;}
.y54{bottom:603.630900px;}
.yb5{bottom:608.999400px;}
.y1a{bottom:618.311700px;}
.y8d{bottom:621.542700px;}
.y53{bottom:621.630900px;}
.yb4{bottom:628.499400px;}
.y52{bottom:639.630900px;}
.y8c{bottom:641.042700px;}
.yb3{bottom:647.999400px;}
.y19{bottom:656.071650px;}
.y51{bottom:657.630900px;}
.y8b{bottom:660.542700px;}
.yb2{bottom:667.499400px;}
.y18{bottom:675.323550px;}
.y50{bottom:675.630900px;}
.y8a{bottom:680.042700px;}
.yb1{bottom:686.999400px;}
.y4f{bottom:693.630900px;}
.y17{bottom:694.575600px;}
.y89{bottom:699.542700px;}
.yb0{bottom:706.499400px;}
.y4e{bottom:711.630900px;}
.y16{bottom:713.827500px;}
.y88{bottom:719.042700px;}
.yaf{bottom:725.999400px;}
.y4d{bottom:729.630900px;}
.y15{bottom:733.079400px;}
.y87{bottom:738.542700px;}
.yae{bottom:745.499400px;}
.y4c{bottom:747.630900px;}
.y14{bottom:752.331450px;}
.y86{bottom:758.042700px;}
.yad{bottom:764.999400px;}
.y4b{bottom:765.630900px;}
.y13{bottom:771.583350px;}
.y85{bottom:777.542700px;}
.y4a{bottom:783.630750px;}
.yac{bottom:784.499400px;}
.y84{bottom:797.042700px;}
.y49{bottom:801.630750px;}
.yab{bottom:803.999400px;}
.y12{bottom:809.343150px;}
.y83{bottom:816.542700px;}
.y48{bottom:819.630750px;}
.yaa{bottom:823.499400px;}
.yfa{bottom:828.134700px;}
.y11{bottom:828.595200px;}
.y82{bottom:836.042700px;}
.y47{bottom:837.630750px;}
.yf9{bottom:846.134700px;}
.y10{bottom:847.847100px;}
.ye2{bottom:853.621800px;}
.y81{bottom:855.542700px;}
.y46{bottom:855.630750px;}
.yf8{bottom:864.134700px;}
.yf{bottom:867.099150px;}
.y45{bottom:873.630750px;}
.ye1{bottom:874.500600px;}
.y80{bottom:875.042700px;}
.yf7{bottom:882.134700px;}
.ye{bottom:886.351200px;}
.ye0{bottom:893.925000px;}
.y7f{bottom:894.542700px;}
.y44{bottom:900.134700px;}
.yd{bottom:905.603100px;}
.ydf{bottom:910.425000px;}
.y7e{bottom:914.042700px;}
.y43{bottom:918.134700px;}
.yc{bottom:924.855150px;}
.yde{bottom:929.849250px;}
.y7d{bottom:933.542700px;}
.y42{bottom:936.134700px;}
.ydd{bottom:949.273650px;}
.y7c{bottom:953.042700px;}
.y41{bottom:954.134700px;}
.yb{bottom:958.363050px;}
.ydc{bottom:968.698050px;}
.y40{bottom:972.134700px;}
.y7b{bottom:972.542700px;}
.ya{bottom:982.363050px;}
.ydb{bottom:988.122300px;}
.y3f{bottom:990.134700px;}
.y7a{bottom:992.042700px;}
.y9{bottom:1006.363050px;}
.yda{bottom:1007.546700px;}
.y3e{bottom:1008.134700px;}
.y79{bottom:1011.542700px;}
.y3d{bottom:1026.134700px;}
.yd9{bottom:1026.970950px;}
.y8{bottom:1030.363050px;}
.y78{bottom:1031.042700px;}
.y3c{bottom:1044.134700px;}
.yd8{bottom:1046.395350px;}
.y77{bottom:1050.542700px;}
.y3b{bottom:1062.134700px;}
.yd7{bottom:1062.895350px;}
.y76{bottom:1070.042700px;}
.y7{bottom:1079.874900px;}
.y3a{bottom:1080.134700px;}
.yd6{bottom:1082.319750px;}
.y75{bottom:1089.542700px;}
.y39{bottom:1098.134700px;}
.yd5{bottom:1101.744150px;}
.y6{bottom:1103.874900px;}
.y74{bottom:1109.042700px;}
.y38{bottom:1116.134700px;}
.yd4{bottom:1121.168400px;}
.y5{bottom:1127.874900px;}
.y73{bottom:1128.542700px;}
.yd3{bottom:1129.418400px;}
.y37{bottom:1134.134700px;}
.y72{bottom:1148.042700px;}
.y36{bottom:1152.134700px;}
.yd2{bottom:1163.467950px;}
.y71{bottom:1167.542700px;}
.y4{bottom:1168.882650px;}
.y35{bottom:1170.134700px;}
.y70{bottom:1187.042700px;}
.yd1{bottom:1187.219850px;}
.y3{bottom:1188.134700px;}
.y1{bottom:1219.638300px;}
.hd{height:39.313477px;}
.h6{height:43.681641px;}
.h3{height:43.974609px;}
.h9{height:48.049805px;}
.h8{height:48.372070px;}
.h2{height:53.642578px;}
.h5{height:59.006836px;}
.h7{height:64.371094px;}
.h4{height:75.099609px;}
.hc{height:76.974609px;}
.ha{height:86.642578px;}
.hb{height:119.642578px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:63.779550px;}
.x2{left:65.480250px;}
.x2a{left:68.831700px;}
.x23{left:69.996000px;}
.x24{left:85.329450px;}
.x5{left:92.891700px;}
.x1{left:94.980300px;}
.x4{left:113.481600px;}
.x28{left:143.379900px;}
.x9{left:149.698350px;}
.x8{left:168.888600px;}
.x7{left:175.302450px;}
.x6{left:290.863950px;}
.xa{left:305.086050px;}
.x2b{left:324.865800px;}
.x29{left:388.897950px;}
.x20{left:410.584050px;}
.x25{left:457.086600px;}
.xf{left:462.344250px;}
.x1a{left:465.603450px;}
.x26{left:478.636500px;}
.x22{left:498.130350px;}
.xe{left:525.186000px;}
.x15{left:529.353450px;}
.xd{left:530.408250px;}
.x1b{left:536.479950px;}
.x14{left:551.963400px;}
.x1c{left:556.240650px;}
.x19{left:557.353950px;}
.x1f{left:562.349100px;}
.xc{left:573.481950px;}
.x13{left:578.630850px;}
.x16{left:622.341750px;}
.x11{left:624.004350px;}
.x10{left:664.331550px;}
.x21{left:666.808650px;}
.x1e{left:673.253850px;}
.x1d{left:688.523400px;}
.x18{left:690.962400px;}
.xb{left:693.580800px;}
.x17{left:710.080800px;}
.x12{left:719.071950px;}
.x27{left:751.256550px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.333333pt;}
.v2{vertical-align:58.666667pt;}
.lsc{letter-spacing:-3.946667pt;}
.ls7{letter-spacing:-1.173333pt;}
.lsb{letter-spacing:-1.066667pt;}
.ls8{letter-spacing:-0.586667pt;}
.ls2{letter-spacing:-0.533333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.000533pt;}
.lsa{letter-spacing:1.056000pt;}
.ls0{letter-spacing:1.333333pt;}
.ls6{letter-spacing:1.866667pt;}
.ls5{letter-spacing:2.053333pt;}
.ls1{letter-spacing:2.613333pt;}
.ls9{letter-spacing:9.433067pt;}
.ws6{word-spacing:-18.362667pt;}
.ws0{word-spacing:-14.826667pt;}
.ws18{word-spacing:-13.760000pt;}
.ws5{word-spacing:-2.613333pt;}
.ws8{word-spacing:-2.053333pt;}
.ws7{word-spacing:-1.866667pt;}
.ws2{word-spacing:-1.333333pt;}
.ws19{word-spacing:-1.056000pt;}
.ws1{word-spacing:-0.053333pt;}
.ws4{word-spacing:0.000000pt;}
.ws3{word-spacing:0.533333pt;}
.wsa{word-spacing:0.586667pt;}
.ws1a{word-spacing:1.066667pt;}
.ws9{word-spacing:1.173333pt;}
.ws1b{word-spacing:3.893333pt;}
.wsc{word-spacing:200.829867pt;}
.wsb{word-spacing:267.538667pt;}
.wsf{word-spacing:328.161600pt;}
.ws11{word-spacing:342.984533pt;}
.wse{word-spacing:357.814933pt;}
.ws16{word-spacing:372.637333pt;}
.ws13{word-spacing:387.459733pt;}
.wsd{word-spacing:388.861867pt;}
.ws15{word-spacing:403.692800pt;}
.ws12{word-spacing:418.523733pt;}
.ws14{word-spacing:1068.938133pt;}
.ws10{word-spacing:1082.148800pt;}
.ws17{word-spacing:1085.524800pt;}
._33{margin-left:-16.332800pt;}
._e{margin-left:-15.285333pt;}
._14{margin-left:-11.058133pt;}
._7{margin-left:-8.856000pt;}
._34{margin-left:-7.682133pt;}
._6{margin-left:-6.790933pt;}
._1c{margin-left:-5.698133pt;}
._2{margin-left:-4.794667pt;}
._5{margin-left:-3.381333pt;}
._0{margin-left:-2.026667pt;}
._1{margin-left:-0.938667pt;}
._3{width:1.330133pt;}
._4{width:2.674133pt;}
._a{width:3.811200pt;}
._c{width:4.920533pt;}
._b{width:6.437333pt;}
._d{width:7.434667pt;}
._8{width:8.549333pt;}
._9{width:9.770667pt;}
._10{width:11.155733pt;}
._17{width:12.149867pt;}
._15{width:13.364267pt;}
._f{width:14.970133pt;}
._26{width:16.615467pt;}
._1d{width:17.576533pt;}
._1a{width:19.266133pt;}
._1e{width:20.170667pt;}
._11{width:21.114133pt;}
._12{width:22.587733pt;}
._16{width:23.806933pt;}
._1f{width:25.252800pt;}
._1b{width:26.159467pt;}
._18{width:27.106667pt;}
._21{width:28.395200pt;}
._19{width:29.617067pt;}
._20{width:31.981867pt;}
._13{width:34.275200pt;}
._28{width:315.213333pt;}
._22{width:360.788267pt;}
._29{width:366.274667pt;}
._32{width:372.641600pt;}
._25{width:374.084800pt;}
._2f{width:387.464000pt;}
._31{width:388.915200pt;}
._2b{width:402.286400pt;}
._2e{width:403.746133pt;}
._2a{width:418.577067pt;}
._2d{width:465.101333pt;}
._23{width:598.356800pt;}
._30{width:612.884800pt;}
._27{width:696.778133pt;}
._2c{width:804.671467pt;}
._24{width:1025.471467pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:28.330667pt;}
.y2{bottom:28.634667pt;}
.y33{bottom:59.101200pt;}
.yf6{bottom:60.755333pt;}
.y6f{bottom:66.267200pt;}
.ya9{bottom:67.149067pt;}
.yd0{bottom:73.332800pt;}
.y32{bottom:75.101200pt;}
.yf5{bottom:76.755333pt;}
.y6e{bottom:83.600533pt;}
.ya8{bottom:84.482400pt;}
.ycf{bottom:90.666133pt;}
.y31{bottom:91.101200pt;}
.yf4{bottom:92.755333pt;}
.y6d{bottom:100.933867pt;}
.ya7{bottom:101.815733pt;}
.y30{bottom:107.101200pt;}
.yce{bottom:107.999467pt;}
.yf3{bottom:108.755333pt;}
.y6c{bottom:118.267200pt;}
.ya6{bottom:119.149067pt;}
.y2f{bottom:123.101200pt;}
.yf2{bottom:124.755333pt;}
.ycd{bottom:125.332800pt;}
.y6b{bottom:135.600533pt;}
.ya5{bottom:136.482400pt;}
.yf1{bottom:140.755333pt;}
.ycc{bottom:142.666133pt;}
.y6a{bottom:152.933867pt;}
.ya4{bottom:153.815733pt;}
.yf0{bottom:156.755333pt;}
.y2e{bottom:157.998800pt;}
.ycb{bottom:159.999467pt;}
.y69{bottom:170.267200pt;}
.ya3{bottom:171.149067pt;}
.yef{bottom:172.755333pt;}
.y2d{bottom:175.111733pt;}
.yca{bottom:177.332800pt;}
.y68{bottom:187.600533pt;}
.ya2{bottom:188.482400pt;}
.yee{bottom:188.755333pt;}
.y2c{bottom:192.224667pt;}
.yc9{bottom:194.666133pt;}
.yed{bottom:204.755333pt;}
.y67{bottom:204.933867pt;}
.ya1{bottom:205.815733pt;}
.y2b{bottom:209.337467pt;}
.yc8{bottom:211.999467pt;}
.yec{bottom:220.755333pt;}
.y66{bottom:222.267200pt;}
.ya0{bottom:223.149067pt;}
.yc7{bottom:229.332800pt;}
.yeb{bottom:236.755333pt;}
.y65{bottom:239.600533pt;}
.y9f{bottom:240.482400pt;}
.y2a{bottom:242.901733pt;}
.yc6{bottom:246.666133pt;}
.yea{bottom:252.755333pt;}
.y64{bottom:256.933867pt;}
.y9e{bottom:257.815733pt;}
.y29{bottom:260.014667pt;}
.yc5{bottom:263.999467pt;}
.ye9{bottom:268.755333pt;}
.y63{bottom:274.267200pt;}
.y9d{bottom:275.149067pt;}
.y28{bottom:277.127467pt;}
.yc4{bottom:281.332800pt;}
.ye8{bottom:284.755333pt;}
.y62{bottom:291.600533pt;}
.y9c{bottom:292.482400pt;}
.y27{bottom:294.240400pt;}
.yc3{bottom:298.666133pt;}
.ye7{bottom:300.755333pt;}
.y61{bottom:308.933867pt;}
.y9b{bottom:309.815733pt;}
.y26{bottom:311.353200pt;}
.yc2{bottom:315.999467pt;}
.ye6{bottom:316.755333pt;}
.y60{bottom:326.267200pt;}
.y9a{bottom:327.149067pt;}
.y25{bottom:328.466000pt;}
.ye5{bottom:332.755333pt;}
.yc1{bottom:333.332800pt;}
.y5f{bottom:343.600533pt;}
.y99{bottom:344.482400pt;}
.ye4{bottom:348.755333pt;}
.yc0{bottom:350.666133pt;}
.y5e{bottom:360.933867pt;}
.y98{bottom:361.815733pt;}
.y24{bottom:362.030400pt;}
.ybf{bottom:367.999467pt;}
.ye3{bottom:368.534933pt;}
.y5d{bottom:378.267200pt;}
.y23{bottom:379.143200pt;}
.y97{bottom:379.149067pt;}
.ybe{bottom:385.332800pt;}
.y5c{bottom:395.600533pt;}
.y22{bottom:396.256133pt;}
.y96{bottom:396.482400pt;}
.ybd{bottom:402.666133pt;}
.y5b{bottom:412.933867pt;}
.y21{bottom:413.368933pt;}
.y95{bottom:413.815733pt;}
.ybc{bottom:419.999467pt;}
.y5a{bottom:430.267200pt;}
.y20{bottom:430.481867pt;}
.y94{bottom:431.149067pt;}
.ybb{bottom:437.332800pt;}
.y1f{bottom:447.594667pt;}
.y93{bottom:448.482400pt;}
.yba{bottom:454.666133pt;}
.y59{bottom:456.560800pt;}
.y92{bottom:465.815733pt;}
.yb9{bottom:471.999467pt;}
.y58{bottom:472.560800pt;}
.y1e{bottom:481.159067pt;}
.y91{bottom:483.149067pt;}
.y57{bottom:488.560800pt;}
.yb8{bottom:489.332800pt;}
.y1d{bottom:498.271867pt;}
.y90{bottom:500.482400pt;}
.y56{bottom:504.560800pt;}
.yb7{bottom:506.666133pt;}
.y1c{bottom:515.384667pt;}
.y8f{bottom:517.815733pt;}
.y55{bottom:520.560800pt;}
.yb6{bottom:523.999467pt;}
.y1b{bottom:532.497600pt;}
.y8e{bottom:535.149067pt;}
.y54{bottom:536.560800pt;}
.yb5{bottom:541.332800pt;}
.y1a{bottom:549.610400pt;}
.y8d{bottom:552.482400pt;}
.y53{bottom:552.560800pt;}
.yb4{bottom:558.666133pt;}
.y52{bottom:568.560800pt;}
.y8c{bottom:569.815733pt;}
.yb3{bottom:575.999467pt;}
.y19{bottom:583.174800pt;}
.y51{bottom:584.560800pt;}
.y8b{bottom:587.149067pt;}
.yb2{bottom:593.332800pt;}
.y18{bottom:600.287600pt;}
.y50{bottom:600.560800pt;}
.y8a{bottom:604.482400pt;}
.yb1{bottom:610.666133pt;}
.y4f{bottom:616.560800pt;}
.y17{bottom:617.400533pt;}
.y89{bottom:621.815733pt;}
.yb0{bottom:627.999467pt;}
.y4e{bottom:632.560800pt;}
.y16{bottom:634.513333pt;}
.y88{bottom:639.149067pt;}
.yaf{bottom:645.332800pt;}
.y4d{bottom:648.560800pt;}
.y15{bottom:651.626133pt;}
.y87{bottom:656.482400pt;}
.yae{bottom:662.666133pt;}
.y4c{bottom:664.560800pt;}
.y14{bottom:668.739067pt;}
.y86{bottom:673.815733pt;}
.yad{bottom:679.999467pt;}
.y4b{bottom:680.560800pt;}
.y13{bottom:685.851867pt;}
.y85{bottom:691.149067pt;}
.y4a{bottom:696.560667pt;}
.yac{bottom:697.332800pt;}
.y84{bottom:708.482400pt;}
.y49{bottom:712.560667pt;}
.yab{bottom:714.666133pt;}
.y12{bottom:719.416133pt;}
.y83{bottom:725.815733pt;}
.y48{bottom:728.560667pt;}
.yaa{bottom:731.999467pt;}
.yfa{bottom:736.119733pt;}
.y11{bottom:736.529067pt;}
.y82{bottom:743.149067pt;}
.y47{bottom:744.560667pt;}
.yf9{bottom:752.119733pt;}
.y10{bottom:753.641867pt;}
.ye2{bottom:758.774933pt;}
.y81{bottom:760.482400pt;}
.y46{bottom:760.560667pt;}
.yf8{bottom:768.119733pt;}
.yf{bottom:770.754800pt;}
.y45{bottom:776.560667pt;}
.ye1{bottom:777.333867pt;}
.y80{bottom:777.815733pt;}
.yf7{bottom:784.119733pt;}
.ye{bottom:787.867733pt;}
.ye0{bottom:794.600000pt;}
.y7f{bottom:795.149067pt;}
.y44{bottom:800.119733pt;}
.yd{bottom:804.980533pt;}
.ydf{bottom:809.266667pt;}
.y7e{bottom:812.482400pt;}
.y43{bottom:816.119733pt;}
.yc{bottom:822.093467pt;}
.yde{bottom:826.532667pt;}
.y7d{bottom:829.815733pt;}
.y42{bottom:832.119733pt;}
.ydd{bottom:843.798800pt;}
.y7c{bottom:847.149067pt;}
.y41{bottom:848.119733pt;}
.yb{bottom:851.878267pt;}
.ydc{bottom:861.064933pt;}
.y40{bottom:864.119733pt;}
.y7b{bottom:864.482400pt;}
.ya{bottom:873.211600pt;}
.ydb{bottom:878.330933pt;}
.y3f{bottom:880.119733pt;}
.y7a{bottom:881.815733pt;}
.y9{bottom:894.544933pt;}
.yda{bottom:895.597067pt;}
.y3e{bottom:896.119733pt;}
.y79{bottom:899.149067pt;}
.y3d{bottom:912.119733pt;}
.yd9{bottom:912.863067pt;}
.y8{bottom:915.878267pt;}
.y78{bottom:916.482400pt;}
.y3c{bottom:928.119733pt;}
.yd8{bottom:930.129200pt;}
.y77{bottom:933.815733pt;}
.y3b{bottom:944.119733pt;}
.yd7{bottom:944.795867pt;}
.y76{bottom:951.149067pt;}
.y7{bottom:959.888800pt;}
.y3a{bottom:960.119733pt;}
.yd6{bottom:962.062000pt;}
.y75{bottom:968.482400pt;}
.y39{bottom:976.119733pt;}
.yd5{bottom:979.328133pt;}
.y6{bottom:981.222133pt;}
.y74{bottom:985.815733pt;}
.y38{bottom:992.119733pt;}
.yd4{bottom:996.594133pt;}
.y5{bottom:1002.555467pt;}
.y73{bottom:1003.149067pt;}
.yd3{bottom:1003.927467pt;}
.y37{bottom:1008.119733pt;}
.y72{bottom:1020.482400pt;}
.y36{bottom:1024.119733pt;}
.yd2{bottom:1034.193733pt;}
.y71{bottom:1037.815733pt;}
.y4{bottom:1039.006800pt;}
.y35{bottom:1040.119733pt;}
.y70{bottom:1055.149067pt;}
.yd1{bottom:1055.306533pt;}
.y3{bottom:1056.119733pt;}
.y1{bottom:1084.122933pt;}
.hd{height:34.945312pt;}
.h6{height:38.828125pt;}
.h3{height:39.088542pt;}
.h9{height:42.710938pt;}
.h8{height:42.997396pt;}
.h2{height:47.682292pt;}
.h5{height:52.450521pt;}
.h7{height:57.218750pt;}
.h4{height:66.755208pt;}
.hc{height:68.421875pt;}
.ha{height:77.015625pt;}
.hb{height:106.348958pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:56.692933pt;}
.x2{left:58.204667pt;}
.x2a{left:61.183733pt;}
.x23{left:62.218667pt;}
.x24{left:75.848400pt;}
.x5{left:82.570400pt;}
.x1{left:84.426933pt;}
.x4{left:100.872533pt;}
.x28{left:127.448800pt;}
.x9{left:133.065200pt;}
.x8{left:150.123200pt;}
.x7{left:155.824400pt;}
.x6{left:258.545733pt;}
.xa{left:271.187600pt;}
.x2b{left:288.769600pt;}
.x29{left:345.687067pt;}
.x20{left:364.963600pt;}
.x25{left:406.299200pt;}
.xf{left:410.972667pt;}
.x1a{left:413.869733pt;}
.x26{left:425.454667pt;}
.x22{left:442.782533pt;}
.xe{left:466.832000pt;}
.x15{left:470.536400pt;}
.xd{left:471.474000pt;}
.x1b{left:476.871067pt;}
.x14{left:490.634133pt;}
.x1c{left:494.436133pt;}
.x19{left:495.425733pt;}
.x1f{left:499.865867pt;}
.xc{left:509.761733pt;}
.x13{left:514.338533pt;}
.x16{left:553.192667pt;}
.x11{left:554.670533pt;}
.x10{left:590.516933pt;}
.x21{left:592.718800pt;}
.x1e{left:598.447867pt;}
.x1d{left:612.020800pt;}
.x18{left:614.188800pt;}
.xb{left:616.516267pt;}
.x17{left:631.182933pt;}
.x12{left:639.175067pt;}
.x27{left:667.783600pt;}
}




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