
    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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_cd73dbfd47bb0ce791002efd.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.933594;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_5a92f2a6d3e60cd13d2fb9ff.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_a3a7bc66d0c5dc10ce7d9016.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.084961;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_946aaf27b04e015e6cb18f17.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.946777;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_fb2b9a8b405ef7ad40498892.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.912109;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_d9af95326acec84bd6cd9094.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.933594;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_781033f901a92c6603e225d0.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.966309;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_ea0baa122346eacb6c56961b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.892578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_f54648abf07f248f9166f358.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.892578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_c117acf386d9483de0471303.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.912109;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;}
.lsd{letter-spacing:-1.260000px;}
.lsb{letter-spacing:-0.924000px;}
.lsc{letter-spacing:-0.540000px;}
.lse{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.226200px;}
.lsa{letter-spacing:-0.108000px;}
.ls7{letter-spacing:-0.089400px;}
.ls9{letter-spacing:-0.072000px;}
.ls5{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.018000px;}
.ls3{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.493800px;}
.ls0{letter-spacing:599.885760px;}
.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:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.ws2{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.580000px;}
.ws9{word-spacing:-13.860000px;}
.ws6{word-spacing:-13.500000px;}
.ws8{word-spacing:-13.392000px;}
.ws5{word-spacing:-10.933800px;}
.ws4{word-spacing:-10.440000px;}
.ws3{word-spacing:-10.213800px;}
.ws7{word-spacing:-8.928000px;}
.wsb{word-spacing:-0.059760px;}
.wsa{word-spacing:0.000000px;}
._2{margin-left:-2.288880px;}
._0{margin-left:-1.093680px;}
._1{width:1.195200px;}
._8{width:2.769840px;}
._4{width:4.063680px;}
._3{width:5.258880px;}
._5{width:6.775200px;}
._7{width:8.179920px;}
._6{width:9.264240px;}
._b{width:10.851840px;}
._d{width:12.047760px;}
._a{width:15.912000px;}
._11{width:16.968240px;}
._10{width:18.340560px;}
._f{width:19.619280px;}
._9{width:37.530000px;}
._c{width:62.770320px;}
._e{width:530.478960px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:5.760000px;}
.fs9{font-size:30.240000px;}
.fs8{font-size:36.000000px;}
.fs6{font-size:41.760000px;}
.fs7{font-size:54.000000px;}
.fs4{font-size:56.880000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y5{bottom:3.780000px;}
.y4c{bottom:4.140000px;}
.y62{bottom:4.320000px;}
.y64{bottom:5.010000px;}
.y2{bottom:9.930000px;}
.y61{bottom:19.980000px;}
.y6a{bottom:20.880000px;}
.y6d{bottom:21.060000px;}
.y4b{bottom:21.240000px;}
.y4{bottom:22.710000px;}
.y56{bottom:32.754000px;}
.y60{bottom:35.454000px;}
.y73{bottom:37.620000px;}
.y70{bottom:37.665000px;}
.y76{bottom:37.800000px;}
.y4a{bottom:40.005000px;}
.y55{bottom:41.394000px;}
.y3{bottom:47.910000px;}
.y54{bottom:50.034000px;}
.y5f{bottom:53.274000px;}
.y49{bottom:58.545000px;}
.y53{bottom:59.034000px;}
.y5e{bottom:68.754000px;}
.y52{bottom:69.654000px;}
.ya{bottom:71.820000px;}
.y48{bottom:77.265000px;}
.y51{bottom:81.714000px;}
.y5d{bottom:84.234000px;}
.y9{bottom:90.756000px;}
.y50{bottom:93.774000px;}
.y47{bottom:95.805000px;}
.y5c{bottom:102.054000px;}
.y46{bottom:114.345000px;}
.y5b{bottom:117.534000px;}
.y2c{bottom:117.945000px;}
.y91{bottom:118.656000px;}
.y4d{bottom:119.376000px;}
.yc1{bottom:121.896000px;}
.y5a{bottom:133.014000px;}
.y45{bottom:133.065000px;}
.y90{bottom:137.196000px;}
.y2b{bottom:140.085000px;}
.yc0{bottom:140.616000px;}
.y59{bottom:148.674000px;}
.y44{bottom:151.605000px;}
.y2a{bottom:153.945000px;}
.y4f{bottom:154.794000px;}
.y8f{bottom:155.910000px;}
.ybf{bottom:159.150000px;}
.y58{bottom:164.154000px;}
.y4e{bottom:164.514000px;}
.y29{bottom:167.805000px;}
.y43{bottom:170.325000px;}
.y8e{bottom:174.450000px;}
.ybe{bottom:177.690000px;}
.y57{bottom:179.634000px;}
.y28{bottom:181.665000px;}
.y42{bottom:188.865000px;}
.y8d{bottom:193.170000px;}
.y27{bottom:195.525000px;}
.ybd{bottom:196.410000px;}
.y41{bottom:207.405000px;}
.y26{bottom:209.385000px;}
.y8c{bottom:211.710000px;}
.ybc{bottom:214.950000px;}
.y25{bottom:223.245000px;}
.y8b{bottom:230.250000px;}
.y40{bottom:235.125000px;}
.y24{bottom:237.105000px;}
.ybb{bottom:242.670000px;}
.y8a{bottom:248.970000px;}
.y23{bottom:250.965000px;}
.y3f{bottom:253.665000px;}
.yba{bottom:261.210000px;}
.y22{bottom:264.825000px;}
.y89{bottom:267.510000px;}
.y21{bottom:269.505000px;}
.y3e{bottom:272.385000px;}
.yb9{bottom:279.930000px;}
.y88{bottom:286.230000px;}
.y3d{bottom:290.955000px;}
.y20{bottom:293.655000px;}
.yb8{bottom:298.470000px;}
.y87{bottom:304.770000px;}
.y3c{bottom:309.675000px;}
.y13{bottom:313.950000px;}
.yb7{bottom:317.010000px;}
.y1f{bottom:317.955000px;}
.y86{bottom:323.490000px;}
.y3b{bottom:328.215000px;}
.yb6{bottom:335.730000px;}
.y1e{bottom:342.075000px;}
.y3a{bottom:346.755000px;}
.yb5{bottom:354.315000px;}
.y85{bottom:360.615000px;}
.y39{bottom:365.475000px;}
.y1d{bottom:366.195000px;}
.yb4{bottom:373.035000px;}
.y84{bottom:379.335000px;}
.y38{bottom:384.015000px;}
.y1c{bottom:390.315000px;}
.yb3{bottom:391.575000px;}
.y83{bottom:397.875000px;}
.y37{bottom:402.735000px;}
.yb2{bottom:410.115000px;}
.y1b{bottom:414.435000px;}
.y82{bottom:416.595000px;}
.yb1{bottom:428.835000px;}
.y36{bottom:429.915000px;}
.y1a{bottom:438.555000px;}
.y81{bottom:444.135000px;}
.y35{bottom:446.655000px;}
.yb0{bottom:447.375000px;}
.y80{bottom:462.675000px;}
.y19{bottom:462.855000px;}
.y34{bottom:463.395000px;}
.yaf{bottom:466.095000px;}
.y33{bottom:480.135000px;}
.y7f{bottom:481.395000px;}
.yae{bottom:484.635000px;}
.y18{bottom:486.975000px;}
.y32{bottom:496.875000px;}
.y7e{bottom:499.935000px;}
.yad{bottom:503.175000px;}
.y17{bottom:511.095000px;}
.y31{bottom:513.615000px;}
.y7d{bottom:518.655000px;}
.yac{bottom:521.895000px;}
.y30{bottom:530.355000px;}
.y16{bottom:535.215000px;}
.y7c{bottom:537.195000px;}
.yab{bottom:540.435000px;}
.y2f{bottom:547.095000px;}
.y7b{bottom:555.735000px;}
.yaa{bottom:559.155000px;}
.y15{bottom:559.380000px;}
.y2e{bottom:563.880000px;}
.y7a{bottom:574.455000px;}
.ya9{bottom:577.695000px;}
.y2d{bottom:580.620000px;}
.y14{bottom:583.500000px;}
.y79{bottom:592.995000px;}
.ya8{bottom:596.415000px;}
.y78{bottom:611.745000px;}
.ya7{bottom:614.985000px;}
.y77{bottom:630.285000px;}
.ya6{bottom:633.525000px;}
.y75{bottom:645.045000px;}
.ya5{bottom:661.245000px;}
.ya4{bottom:679.785000px;}
.y74{bottom:696.165000px;}
.ya3{bottom:698.505000px;}
.ya2{bottom:717.045000px;}
.ya1{bottom:735.585000px;}
.y72{bottom:747.105000px;}
.ya0{bottom:754.305000px;}
.y9f{bottom:772.845000px;}
.y9e{bottom:791.565000px;}
.y71{bottom:798.045000px;}
.y9d{bottom:810.105000px;}
.y9c{bottom:828.645000px;}
.y6f{bottom:832.425000px;}
.y9b{bottom:847.365000px;}
.y9a{bottom:865.905000px;}
.y6e{bottom:883.410000px;}
.y99{bottom:884.670000px;}
.y98{bottom:903.210000px;}
.y12{bottom:912.750000px;}
.y6c{bottom:917.610000px;}
.y97{bottom:921.930000px;}
.y11{bottom:931.290000px;}
.y96{bottom:940.470000px;}
.y10{bottom:949.830000px;}
.y6b{bottom:951.990000px;}
.y95{bottom:959.010000px;}
.yf{bottom:968.550000px;}
.y94{bottom:977.730000px;}
.y69{bottom:986.190000px;}
.ye{bottom:987.090000px;}
.y93{bottom:996.270000px;}
.yd{bottom:1007.610000px;}
.y92{bottom:1014.990000px;}
.y68{bottom:1020.390000px;}
.yc2{bottom:1033.530000px;}
.yc{bottom:1033.710000px;}
.y67{bottom:1042.530000px;}
.y66{bottom:1061.070000px;}
.yb{bottom:1062.330000px;}
.y63{bottom:1065.600000px;}
.y65{bottom:1079.790000px;}
.y8{bottom:1106.070000px;}
.y7{bottom:1120.110000px;}
.y6{bottom:1122.090000px;}
.y1{bottom:1123.530000px;}
.hd{height:4.134375px;}
.h6{height:5.729063px;}
.h16{height:16.740000px;}
.h13{height:21.705469px;}
.h12{height:25.839844px;}
.h14{height:27.720000px;}
.h11{height:29.464453px;}
.hc{height:29.974219px;}
.h18{height:33.480000px;}
.h1a{height:33.660000px;}
.h17{height:38.100586px;}
.h19{height:38.759766px;}
.hf{height:39.471680px;}
.h8{height:40.132617px;}
.h1e{height:41.172539px;}
.ha{height:42.164648px;}
.h7{height:42.894141px;}
.he{height:43.822266px;}
.h5{height:47.545312px;}
.h1c{height:50.220000px;}
.h1b{height:50.256000px;}
.h1d{height:50.400000px;}
.h9{height:59.436914px;}
.h15{height:64.002656px;}
.h3{height:65.884219px;}
.h2{height:84.996000px;}
.h4{height:117.180000px;}
.h10{height:193.860000px;}
.hb{height:593.205000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:104.076000px;}
.w9{width:117.720000px;}
.w5{width:131.940000px;}
.w8{width:162.900000px;}
.wa{width:236.055000px;}
.wb{width:312.375000px;}
.w6{width:593.430000px;}
.w7{width:594.150000px;}
.w3{width:622.410000px;}
.w4{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1d{left:7.056000px;}
.x18{left:8.100000px;}
.x4{left:12.780000px;}
.x16{left:18.180000px;}
.x6{left:19.260000px;}
.x10{left:25.560000px;}
.x11{left:28.980000px;}
.xf{left:31.140000px;}
.x21{left:32.399987px;}
.x15{left:37.260000px;}
.x14{left:40.320000px;}
.x13{left:42.480000px;}
.x1b{left:47.340000px;}
.x1c{left:56.700000px;}
.x19{left:62.145000px;}
.x12{left:65.874000px;}
.x1{left:78.300000px;}
.x7{left:86.435987px;}
.x2{left:95.790000px;}
.x1a{left:106.374000px;}
.x1e{left:112.896000px;}
.x5{left:141.345000px;}
.x3{left:182.370000px;}
.x17{left:218.370000px;}
.x1f{left:231.330000px;}
.x20{left:468.105000px;}
.xb{left:497.624987px;}
.xc{left:542.444987px;}
.xd{left:601.169987px;}
.xa{left:669.749987px;}
.x9{left:766.049987px;}
.x8{left:784.439987px;}
.xe{left:806.939987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-1.120000pt;}
.lsb{letter-spacing:-0.821333pt;}
.lsc{letter-spacing:-0.480000pt;}
.lse{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.201067pt;}
.lsa{letter-spacing:-0.096000pt;}
.ls7{letter-spacing:-0.079467pt;}
.ls9{letter-spacing:-0.064000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.016000pt;}
.ls3{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.438933pt;}
.ls0{letter-spacing:533.231787pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws2{word-spacing:-13.280000pt;}
.wsc{word-spacing:-12.960000pt;}
.ws9{word-spacing:-12.320000pt;}
.ws6{word-spacing:-12.000000pt;}
.ws8{word-spacing:-11.904000pt;}
.ws5{word-spacing:-9.718933pt;}
.ws4{word-spacing:-9.280000pt;}
.ws3{word-spacing:-9.078933pt;}
.ws7{word-spacing:-7.936000pt;}
.wsb{word-spacing:-0.053120pt;}
.wsa{word-spacing:0.000000pt;}
._2{margin-left:-2.034560pt;}
._0{margin-left:-0.972160pt;}
._1{width:1.062400pt;}
._8{width:2.462080pt;}
._4{width:3.612160pt;}
._3{width:4.674560pt;}
._5{width:6.022400pt;}
._7{width:7.271040pt;}
._6{width:8.234880pt;}
._b{width:9.646080pt;}
._d{width:10.709120pt;}
._a{width:14.144000pt;}
._11{width:15.082880pt;}
._10{width:16.302720pt;}
._f{width:17.439360pt;}
._9{width:33.360000pt;}
._c{width:55.795840pt;}
._e{width:471.536853pt;}
.fs2{font-size:5.120000pt;}
.fs9{font-size:26.880000pt;}
.fs8{font-size:32.000000pt;}
.fs6{font-size:37.120000pt;}
.fs7{font-size:48.000000pt;}
.fs4{font-size:50.560000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:3.360000pt;}
.y4c{bottom:3.680000pt;}
.y62{bottom:3.840000pt;}
.y64{bottom:4.453333pt;}
.y2{bottom:8.826667pt;}
.y61{bottom:17.760000pt;}
.y6a{bottom:18.560000pt;}
.y6d{bottom:18.720000pt;}
.y4b{bottom:18.880000pt;}
.y4{bottom:20.186667pt;}
.y56{bottom:29.114667pt;}
.y60{bottom:31.514667pt;}
.y73{bottom:33.440000pt;}
.y70{bottom:33.480000pt;}
.y76{bottom:33.600000pt;}
.y4a{bottom:35.560000pt;}
.y55{bottom:36.794667pt;}
.y3{bottom:42.586667pt;}
.y54{bottom:44.474667pt;}
.y5f{bottom:47.354667pt;}
.y49{bottom:52.040000pt;}
.y53{bottom:52.474667pt;}
.y5e{bottom:61.114667pt;}
.y52{bottom:61.914667pt;}
.ya{bottom:63.840000pt;}
.y48{bottom:68.680000pt;}
.y51{bottom:72.634667pt;}
.y5d{bottom:74.874667pt;}
.y9{bottom:80.672000pt;}
.y50{bottom:83.354667pt;}
.y47{bottom:85.160000pt;}
.y5c{bottom:90.714667pt;}
.y46{bottom:101.640000pt;}
.y5b{bottom:104.474667pt;}
.y2c{bottom:104.840000pt;}
.y91{bottom:105.472000pt;}
.y4d{bottom:106.112000pt;}
.yc1{bottom:108.352000pt;}
.y5a{bottom:118.234667pt;}
.y45{bottom:118.280000pt;}
.y90{bottom:121.952000pt;}
.y2b{bottom:124.520000pt;}
.yc0{bottom:124.992000pt;}
.y59{bottom:132.154667pt;}
.y44{bottom:134.760000pt;}
.y2a{bottom:136.840000pt;}
.y4f{bottom:137.594667pt;}
.y8f{bottom:138.586667pt;}
.ybf{bottom:141.466667pt;}
.y58{bottom:145.914667pt;}
.y4e{bottom:146.234667pt;}
.y29{bottom:149.160000pt;}
.y43{bottom:151.400000pt;}
.y8e{bottom:155.066667pt;}
.ybe{bottom:157.946667pt;}
.y57{bottom:159.674667pt;}
.y28{bottom:161.480000pt;}
.y42{bottom:167.880000pt;}
.y8d{bottom:171.706667pt;}
.y27{bottom:173.800000pt;}
.ybd{bottom:174.586667pt;}
.y41{bottom:184.360000pt;}
.y26{bottom:186.120000pt;}
.y8c{bottom:188.186667pt;}
.ybc{bottom:191.066667pt;}
.y25{bottom:198.440000pt;}
.y8b{bottom:204.666667pt;}
.y40{bottom:209.000000pt;}
.y24{bottom:210.760000pt;}
.ybb{bottom:215.706667pt;}
.y8a{bottom:221.306667pt;}
.y23{bottom:223.080000pt;}
.y3f{bottom:225.480000pt;}
.yba{bottom:232.186667pt;}
.y22{bottom:235.400000pt;}
.y89{bottom:237.786667pt;}
.y21{bottom:239.560000pt;}
.y3e{bottom:242.120000pt;}
.yb9{bottom:248.826667pt;}
.y88{bottom:254.426667pt;}
.y3d{bottom:258.626667pt;}
.y20{bottom:261.026667pt;}
.yb8{bottom:265.306667pt;}
.y87{bottom:270.906667pt;}
.y3c{bottom:275.266667pt;}
.y13{bottom:279.066667pt;}
.yb7{bottom:281.786667pt;}
.y1f{bottom:282.626667pt;}
.y86{bottom:287.546667pt;}
.y3b{bottom:291.746667pt;}
.yb6{bottom:298.426667pt;}
.y1e{bottom:304.066667pt;}
.y3a{bottom:308.226667pt;}
.yb5{bottom:314.946667pt;}
.y85{bottom:320.546667pt;}
.y39{bottom:324.866667pt;}
.y1d{bottom:325.506667pt;}
.yb4{bottom:331.586667pt;}
.y84{bottom:337.186667pt;}
.y38{bottom:341.346667pt;}
.y1c{bottom:346.946667pt;}
.yb3{bottom:348.066667pt;}
.y83{bottom:353.666667pt;}
.y37{bottom:357.986667pt;}
.yb2{bottom:364.546667pt;}
.y1b{bottom:368.386667pt;}
.y82{bottom:370.306667pt;}
.yb1{bottom:381.186667pt;}
.y36{bottom:382.146667pt;}
.y1a{bottom:389.826667pt;}
.y81{bottom:394.786667pt;}
.y35{bottom:397.026667pt;}
.yb0{bottom:397.666667pt;}
.y80{bottom:411.266667pt;}
.y19{bottom:411.426667pt;}
.y34{bottom:411.906667pt;}
.yaf{bottom:414.306667pt;}
.y33{bottom:426.786667pt;}
.y7f{bottom:427.906667pt;}
.yae{bottom:430.786667pt;}
.y18{bottom:432.866667pt;}
.y32{bottom:441.666667pt;}
.y7e{bottom:444.386667pt;}
.yad{bottom:447.266667pt;}
.y17{bottom:454.306667pt;}
.y31{bottom:456.546667pt;}
.y7d{bottom:461.026667pt;}
.yac{bottom:463.906667pt;}
.y30{bottom:471.426667pt;}
.y16{bottom:475.746667pt;}
.y7c{bottom:477.506667pt;}
.yab{bottom:480.386667pt;}
.y2f{bottom:486.306667pt;}
.y7b{bottom:493.986667pt;}
.yaa{bottom:497.026667pt;}
.y15{bottom:497.226667pt;}
.y2e{bottom:501.226667pt;}
.y7a{bottom:510.626667pt;}
.ya9{bottom:513.506667pt;}
.y2d{bottom:516.106667pt;}
.y14{bottom:518.666667pt;}
.y79{bottom:527.106667pt;}
.ya8{bottom:530.146667pt;}
.y78{bottom:543.773333pt;}
.ya7{bottom:546.653333pt;}
.y77{bottom:560.253333pt;}
.ya6{bottom:563.133333pt;}
.y75{bottom:573.373333pt;}
.ya5{bottom:587.773333pt;}
.ya4{bottom:604.253333pt;}
.y74{bottom:618.813333pt;}
.ya3{bottom:620.893333pt;}
.ya2{bottom:637.373333pt;}
.ya1{bottom:653.853333pt;}
.y72{bottom:664.093333pt;}
.ya0{bottom:670.493333pt;}
.y9f{bottom:686.973333pt;}
.y9e{bottom:703.613333pt;}
.y71{bottom:709.373333pt;}
.y9d{bottom:720.093333pt;}
.y9c{bottom:736.573333pt;}
.y6f{bottom:739.933333pt;}
.y9b{bottom:753.213333pt;}
.y9a{bottom:769.693333pt;}
.y6e{bottom:785.253333pt;}
.y99{bottom:786.373333pt;}
.y98{bottom:802.853333pt;}
.y12{bottom:811.333333pt;}
.y6c{bottom:815.653333pt;}
.y97{bottom:819.493333pt;}
.y11{bottom:827.813333pt;}
.y96{bottom:835.973333pt;}
.y10{bottom:844.293333pt;}
.y6b{bottom:846.213333pt;}
.y95{bottom:852.453333pt;}
.yf{bottom:860.933333pt;}
.y94{bottom:869.093333pt;}
.y69{bottom:876.613333pt;}
.ye{bottom:877.413333pt;}
.y93{bottom:885.573333pt;}
.yd{bottom:895.653333pt;}
.y92{bottom:902.213333pt;}
.y68{bottom:907.013333pt;}
.yc2{bottom:918.693333pt;}
.yc{bottom:918.853333pt;}
.y67{bottom:926.693333pt;}
.y66{bottom:943.173333pt;}
.yb{bottom:944.293333pt;}
.y63{bottom:947.200000pt;}
.y65{bottom:959.813333pt;}
.y8{bottom:983.173333pt;}
.y7{bottom:995.653333pt;}
.y6{bottom:997.413333pt;}
.y1{bottom:998.693333pt;}
.hd{height:3.675000pt;}
.h6{height:5.092500pt;}
.h16{height:14.880000pt;}
.h13{height:19.293750pt;}
.h12{height:22.968750pt;}
.h14{height:24.640000pt;}
.h11{height:26.190625pt;}
.hc{height:26.643750pt;}
.h18{height:29.760000pt;}
.h1a{height:29.920000pt;}
.h17{height:33.867188pt;}
.h19{height:34.453125pt;}
.hf{height:35.085938pt;}
.h8{height:35.673437pt;}
.h1e{height:36.597812pt;}
.ha{height:37.479688pt;}
.h7{height:38.128125pt;}
.he{height:38.953125pt;}
.h5{height:42.262500pt;}
.h1c{height:44.640000pt;}
.h1b{height:44.672000pt;}
.h1d{height:44.800000pt;}
.h9{height:52.832812pt;}
.h15{height:56.891250pt;}
.h3{height:58.563750pt;}
.h2{height:75.552000pt;}
.h4{height:104.160000pt;}
.h10{height:172.320000pt;}
.hb{height:527.293333pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:92.512000pt;}
.w9{width:104.640000pt;}
.w5{width:117.280000pt;}
.w8{width:144.800000pt;}
.wa{width:209.826667pt;}
.wb{width:277.666667pt;}
.w6{width:527.493333pt;}
.w7{width:528.133333pt;}
.w3{width:553.253333pt;}
.w4{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:6.272000pt;}
.x18{left:7.200000pt;}
.x4{left:11.360000pt;}
.x16{left:16.160000pt;}
.x6{left:17.120000pt;}
.x10{left:22.720000pt;}
.x11{left:25.760000pt;}
.xf{left:27.680000pt;}
.x21{left:28.799988pt;}
.x15{left:33.120000pt;}
.x14{left:35.840000pt;}
.x13{left:37.760000pt;}
.x1b{left:42.080000pt;}
.x1c{left:50.400000pt;}
.x19{left:55.240000pt;}
.x12{left:58.554667pt;}
.x1{left:69.600000pt;}
.x7{left:76.831988pt;}
.x2{left:85.146667pt;}
.x1a{left:94.554667pt;}
.x1e{left:100.352000pt;}
.x5{left:125.640000pt;}
.x3{left:162.106667pt;}
.x17{left:194.106667pt;}
.x1f{left:205.626667pt;}
.x20{left:416.093333pt;}
.xb{left:442.333322pt;}
.xc{left:482.173322pt;}
.xd{left:534.373322pt;}
.xa{left:595.333322pt;}
.x9{left:680.933322pt;}
.x8{left:697.279988pt;}
.xe{left:717.279988pt;}
}




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