
    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_7815aa440abc59f9bad4480b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.767578;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_07029253d5a2051bfbfcc036.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_239ea8c9502bf9edf8a7ccdd.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_c43d0c2cc82ee30134a86de6.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_144b94a611725d0203ef4767.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_06db282cf0b5d7b9b316d649.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_edc47ea999c3f3de13667439.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_cf859549e2d2cadc91b163d8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.914062;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_2c87d70034de48282d0a8740.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_359d01edf130577d36b3965b.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.035156;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_2a3752594d604d30f5fe3158.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.061035;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_58985701b4c755d552b4c977.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_544b3a0f9728e8e09232c324.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.m2{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);}
.v1{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.lsa{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.567600px;}
.ls8{letter-spacing:-0.274800px;}
.ls4{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.005754px;}
.ls6{letter-spacing:0.036000px;}
.lsd{letter-spacing:0.109200px;}
.ls3{letter-spacing:0.109440px;}
.ls0{letter-spacing:0.150000px;}
.lsb{letter-spacing:0.152400px;}
.ls1{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.720000px;}
.lse{letter-spacing:39.905280px;}
.ls7{letter-spacing:59.345280px;}
.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;}
}
.wsa{word-spacing:-66.240000px;}
.ws9{word-spacing:-28.712400px;}
.ws0{word-spacing:-18.000000px;}
.wsb{word-spacing:-16.712400px;}
.wsd{word-spacing:-16.669200px;}
.wsc{word-spacing:-16.565754px;}
.ws5{word-spacing:-16.560000px;}
.ws2{word-spacing:-15.300000px;}
.ws1{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.572800px;}
.ws7{word-spacing:-13.500000px;}
.ws4{word-spacing:-10.800000px;}
.ws3{word-spacing:-10.440000px;}
.ws6{word-spacing:0.000000px;}
._0{margin-left:-1.152000px;}
._1{width:1.380000px;}
._5{width:2.776800px;}
._17{width:3.974400px;}
._1c{width:5.100480px;}
._3{width:6.955200px;}
._4{width:8.150880px;}
._16{width:10.065120px;}
._23{width:11.658240px;}
._6{width:13.115520px;}
._7{width:14.267520px;}
._2{width:15.523200px;}
._9{width:18.120480px;}
._10{width:19.596000px;}
._8{width:20.931840px;}
._11{width:22.124160px;}
._f{width:24.203520px;}
._e{width:25.476480px;}
._1a{width:26.547840px;}
._12{width:27.887040px;}
._13{width:29.064960px;}
._19{width:30.919680px;}
._26{width:32.218560px;}
._18{width:33.517440px;}
._1f{width:35.265600px;}
._21{width:36.299520px;}
._22{width:37.716480px;}
._2a{width:40.049280px;}
._1d{width:41.146560px;}
._2b{width:42.592320px;}
._15{width:43.724160px;}
._24{width:45.008640px;}
._20{width:46.765440px;}
._b{width:48.421440px;}
._a{width:49.639680px;}
._d{width:51.269760px;}
._25{width:53.190720px;}
._2f{width:58.622400px;}
._1e{width:60.543360px;}
._14{width:63.838080px;}
._c{width:65.908800px;}
._28{width:70.744320px;}
._29{width:76.242240px;}
._2c{width:81.276480px;}
._2d{width:82.825920px;}
._31{width:84.058560px;}
._30{width:85.343040px;}
._1b{width:104.195520px;}
._27{width:146.615040px;}
._2e{width:147.913920px;}
.fc7{color:transparent;}
.fc6{color:rgb(255,255,0);}
.fc4{color:rgb(112,48,160);}
.fc3{color:rgb(51,51,204);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc5{color:rgb(0,0,0);}
.fc0{color:rgb(0,176,80);}
.fs3{font-size:41.760000px;}
.fs4{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:131.760000px;}
.yd{bottom:-13.140000px;}
.y0{bottom:0.000000px;}
.yc{bottom:4.140000px;}
.y34{bottom:10.080000px;}
.y38{bottom:10.794000px;}
.y9{bottom:10.800000px;}
.y80{bottom:13.500000px;}
.yac{bottom:13.545000px;}
.y83{bottom:13.680000px;}
.yb{bottom:21.240000px;}
.y33{bottom:26.460000px;}
.y7{bottom:32.760000px;}
.y32{bottom:42.660000px;}
.y35{bottom:48.420000px;}
.y36{bottom:48.600000px;}
.y6{bottom:50.220000px;}
.y8{bottom:53.280000px;}
.y31{bottom:58.500000px;}
.yae{bottom:63.000000px;}
.yb2{bottom:63.030000px;}
.ya8{bottom:63.225000px;}
.y9f{bottom:87.876000px;}
.yc4{bottom:94.356000px;}
.yc8{bottom:104.796000px;}
.y2f{bottom:108.936000px;}
.y9e{bottom:119.736000px;}
.yc3{bottom:122.796000px;}
.y7c{bottom:126.216000px;}
.y5b{bottom:133.236000px;}
.y2c{bottom:137.376000px;}
.y37{bottom:142.056000px;}
.yc2{bottom:151.230000px;}
.y9d{bottom:151.590000px;}
.y7b{bottom:154.650000px;}
.y5a{bottom:161.670000px;}
.y2b{bottom:165.810000px;}
.yc1{bottom:179.670000px;}
.y7a{bottom:183.090000px;}
.y59{bottom:190.110000px;}
.y2a{bottom:194.430000px;}
.y9c{bottom:195.330000px;}
.yc0{bottom:208.290000px;}
.y79{bottom:211.530000px;}
.y58{bottom:218.730000px;}
.y29{bottom:222.870000px;}
.y9b{bottom:223.770000px;}
.ybf{bottom:236.730000px;}
.y78{bottom:239.970000px;}
.y57{bottom:246.810000px;}
.yc7{bottom:247.170000px;}
.y28{bottom:251.310000px;}
.y9a{bottom:251.850000px;}
.ybe{bottom:265.170000px;}
.y77{bottom:268.410000px;}
.y99{bottom:269.130000px;}
.y56{bottom:275.610000px;}
.y27{bottom:279.750000px;}
.ybd{bottom:293.610000px;}
.y76{bottom:296.850000px;}
.y98{bottom:300.990000px;}
.yc6{bottom:303.690000px;}
.y55{bottom:304.050000px;}
.y26{bottom:308.190000px;}
.ybc{bottom:322.095000px;}
.y75{bottom:325.515000px;}
.y54{bottom:332.535000px;}
.y97{bottom:332.895000px;}
.y25{bottom:336.675000px;}
.ybb{bottom:350.535000px;}
.y74{bottom:353.595000px;}
.y53{bottom:360.975000px;}
.y96{bottom:364.575000px;}
.y24{bottom:365.115000px;}
.yba{bottom:378.975000px;}
.y73{bottom:382.395000px;}
.y52{bottom:389.415000px;}
.y23{bottom:393.555000px;}
.y95{bottom:396.435000px;}
.yb9{bottom:407.415000px;}
.y72{bottom:410.835000px;}
.y51{bottom:417.855000px;}
.y22{bottom:421.995000px;}
.yb8{bottom:435.855000px;}
.y71{bottom:439.275000px;}
.y94{bottom:440.355000px;}
.y50{bottom:446.295000px;}
.y21{bottom:450.615000px;}
.yb7{bottom:464.475000px;}
.y70{bottom:467.715000px;}
.y93{bottom:468.795000px;}
.y4f{bottom:474.915000px;}
.y20{bottom:479.055000px;}
.yb6{bottom:492.555000px;}
.yc5{bottom:492.915000px;}
.y6f{bottom:496.155000px;}
.y92{bottom:496.875000px;}
.y4e{bottom:503.355000px;}
.y1f{bottom:507.495000px;}
.yb1{bottom:508.575000px;}
.y91{bottom:514.155000px;}
.y6e{bottom:524.595000px;}
.y4d{bottom:531.795000px;}
.y1e{bottom:535.935000px;}
.yb5{bottom:541.515000px;}
.y90{bottom:545.835000px;}
.y6d{bottom:553.035000px;}
.y4c{bottom:560.235000px;}
.y2e{bottom:564.015000px;}
.y1d{bottom:564.375000px;}
.yb4{bottom:574.665000px;}
.y8f{bottom:577.725000px;}
.y6c{bottom:581.685000px;}
.y4b{bottom:588.705000px;}
.y1c{bottom:592.845000px;}
.yb3{bottom:607.605000px;}
.y8e{bottom:609.585000px;}
.y6b{bottom:610.125000px;}
.y4a{bottom:617.145000px;}
.y1b{bottom:621.285000px;}
.y6a{bottom:638.565000px;}
.yad{bottom:640.725000px;}
.y8d{bottom:641.445000px;}
.y49{bottom:645.585000px;}
.y1a{bottom:649.725000px;}
.y69{bottom:667.005000px;}
.yb0{bottom:673.845000px;}
.y48{bottom:674.025000px;}
.y19{bottom:678.345000px;}
.y8c{bottom:685.365000px;}
.y68{bottom:695.445000px;}
.y47{bottom:702.465000px;}
.y18{bottom:706.425000px;}
.y2d{bottom:706.785000px;}
.y8b{bottom:713.805000px;}
.y67{bottom:723.885000px;}
.y46{bottom:731.085000px;}
.y17{bottom:737.385000px;}
.yaf{bottom:739.905000px;}
.y8a{bottom:742.245000px;}
.y66{bottom:752.325000px;}
.y45{bottom:759.525000px;}
.y16{bottom:765.825000px;}
.y89{bottom:770.325000px;}
.ya7{bottom:772.845000px;}
.y65{bottom:780.945000px;}
.y44{bottom:787.965000px;}
.y15{bottom:794.265000px;}
.y88{bottom:799.125000px;}
.yab{bottom:805.965000px;}
.y64{bottom:810.645000px;}
.y43{bottom:816.405000px;}
.y14{bottom:822.930000px;}
.y87{bottom:827.610000px;}
.yaa{bottom:838.950000px;}
.y63{bottom:840.210000px;}
.y42{bottom:844.890000px;}
.y13{bottom:851.370000px;}
.y86{bottom:856.050000px;}
.y62{bottom:869.370000px;}
.ya9{bottom:872.070000px;}
.y85{bottom:872.970000px;}
.y41{bottom:873.330000px;}
.y12{bottom:879.810000px;}
.y61{bottom:898.170000px;}
.y40{bottom:901.770000px;}
.y84{bottom:904.830000px;}
.ya6{bottom:905.010000px;}
.y11{bottom:914.190000px;}
.y60{bottom:926.790000px;}
.y3f{bottom:930.210000px;}
.y82{bottom:936.510000px;}
.y10{bottom:942.630000px;}
.ya5{bottom:951.630000px;}
.y5f{bottom:956.310000px;}
.yca{bottom:958.290000px;}
.y3e{bottom:958.650000px;}
.yf{bottom:964.770000px;}
.y81{bottom:968.370000px;}
.ya4{bottom:980.070000px;}
.y5e{bottom:984.930000px;}
.yc9{bottom:986.910000px;}
.y3d{bottom:987.270000px;}
.ye{bottom:993.210000px;}
.y7f{bottom:1000.230000px;}
.ya3{bottom:1008.510000px;}
.y5{bottom:1014.270000px;}
.y5d{bottom:1014.630000px;}
.y3c{bottom:1015.710000px;}
.y4{bottom:1034.250000px;}
.ya2{bottom:1036.950000px;}
.y5c{bottom:1043.790000px;}
.y3b{bottom:1044.150000px;}
.ya1{bottom:1053.870000px;}
.y3{bottom:1054.050000px;}
.y2{bottom:1072.080000px;}
.y7e{bottom:1072.260000px;}
.y3a{bottom:1072.620000px;}
.ya0{bottom:1085.580000px;}
.y1{bottom:1088.640000px;}
.y7d{bottom:1100.700000px;}
.y39{bottom:1101.060000px;}
.ya{bottom:1122.300000px;}
.y30{bottom:1131.480000px;}
.h14{height:28.440000px;}
.h16{height:28.476000px;}
.h15{height:28.620000px;}
.h19{height:28.656000px;}
.h6{height:35.100000px;}
.h9{height:41.250937px;}
.ha{height:42.997500px;}
.h1{height:50.229844px;}
.hd{height:52.971680px;}
.hc{height:53.709961px;}
.he{height:55.291992px;}
.h3{height:58.621992px;}
.h7{height:60.226875px;}
.h12{height:60.679688px;}
.hb{height:65.010937px;}
.h8{height:66.757500px;}
.h13{height:68.084282px;}
.h2{height:72.562500px;}
.h5{height:72.562518px;}
.h11{height:109.800000px;}
.h10{height:111.043849px;}
.h18{height:127.620000px;}
.h17{height:127.656000px;}
.h4{height:167.250000px;}
.hf{height:268.635000px;}
.h0{height:1188.000000px;}
.w6{width:21.600000px;}
.w2{width:23.940000px;}
.w5{width:39.600000px;}
.w4{width:39.780000px;}
.w18{width:93.096000px;}
.w1c{width:101.736000px;}
.w17{width:105.480000px;}
.w19{width:106.200000px;}
.w1b{width:110.556000px;}
.w1a{width:119.916000px;}
.wd{width:135.000000px;}
.w10{width:140.076000px;}
.w15{width:142.920000px;}
.w14{width:142.956000px;}
.wc{width:146.376000px;}
.w11{width:149.076000px;}
.w9{width:160.200000px;}
.w1d{width:173.370000px;}
.wf{width:204.870000px;}
.w13{width:209.190000px;}
.wb{width:214.590000px;}
.w8{width:231.195000px;}
.w16{width:275.835000px;}
.wa{width:314.535000px;}
.w12{width:317.595000px;}
.we{width:323.175000px;}
.w3{width:333.795000px;}
.w7{width:408.855000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xd{left:1.260000px;}
.x17{left:7.740000px;}
.x7{left:10.800000px;}
.x1e{left:12.600000px;}
.x5{left:16.920000px;}
.xa{left:31.680000px;}
.xc{left:52.740000px;}
.x3{left:53.999986px;}
.x1f{left:80.999986px;}
.x1{left:144.215986px;}
.x1d{left:156.810000px;}
.x2{left:174.809986px;}
.x18{left:330.915000px;}
.x10{left:367.635000px;}
.x15{left:371.955000px;}
.x13{left:376.275000px;}
.x19{left:437.115000px;}
.xe{left:461.775000px;}
.x8{left:488.984986px;}
.xb{left:515.984986px;}
.x1a{left:530.925000px;}
.x6{left:547.845000px;}
.x11{left:582.405000px;}
.x1b{left:637.845000px;}
.xf{left:693.150000px;}
.x14{left:721.770000px;}
.x16{left:724.830000px;}
.x12{left:729.150000px;}
.x1c{left:758.490000px;}
.x9{left:871.200000px;}
.x4{left:876.060000px;}
@media print{
.v1{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.lsa{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.504533pt;}
.ls8{letter-spacing:-0.244267pt;}
.ls4{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.005115pt;}
.ls6{letter-spacing:0.032000pt;}
.lsd{letter-spacing:0.097067pt;}
.ls3{letter-spacing:0.097280pt;}
.ls0{letter-spacing:0.133333pt;}
.lsb{letter-spacing:0.135467pt;}
.ls1{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.640000pt;}
.lse{letter-spacing:35.471360pt;}
.ls7{letter-spacing:52.751360pt;}
.wsa{word-spacing:-58.880000pt;}
.ws9{word-spacing:-25.522133pt;}
.ws0{word-spacing:-16.000000pt;}
.wsb{word-spacing:-14.855467pt;}
.wsd{word-spacing:-14.817067pt;}
.wsc{word-spacing:-14.725115pt;}
.ws5{word-spacing:-14.720000pt;}
.ws2{word-spacing:-13.600000pt;}
.ws1{word-spacing:-13.280000pt;}
.ws8{word-spacing:-12.953600pt;}
.ws7{word-spacing:-12.000000pt;}
.ws4{word-spacing:-9.600000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws6{word-spacing:0.000000pt;}
._0{margin-left:-1.024000pt;}
._1{width:1.226667pt;}
._5{width:2.468267pt;}
._17{width:3.532800pt;}
._1c{width:4.533760pt;}
._3{width:6.182400pt;}
._4{width:7.245227pt;}
._16{width:8.946773pt;}
._23{width:10.362880pt;}
._6{width:11.658240pt;}
._7{width:12.682240pt;}
._2{width:13.798400pt;}
._9{width:16.107093pt;}
._10{width:17.418667pt;}
._8{width:18.606080pt;}
._11{width:19.665920pt;}
._f{width:21.514240pt;}
._e{width:22.645760pt;}
._1a{width:23.598080pt;}
._12{width:24.788480pt;}
._13{width:25.835520pt;}
._19{width:27.484160pt;}
._26{width:28.638720pt;}
._18{width:29.793280pt;}
._1f{width:31.347200pt;}
._21{width:32.266240pt;}
._22{width:33.525760pt;}
._2a{width:35.599360pt;}
._1d{width:36.574720pt;}
._2b{width:37.859840pt;}
._15{width:38.865920pt;}
._24{width:40.007680pt;}
._20{width:41.569280pt;}
._b{width:43.041280pt;}
._a{width:44.124160pt;}
._d{width:45.573120pt;}
._25{width:47.280640pt;}
._2f{width:52.108800pt;}
._1e{width:53.816320pt;}
._14{width:56.744960pt;}
._c{width:58.585600pt;}
._28{width:62.883840pt;}
._29{width:67.770880pt;}
._2c{width:72.245760pt;}
._2d{width:73.623040pt;}
._31{width:74.718720pt;}
._30{width:75.860480pt;}
._1b{width:92.618240pt;}
._27{width:130.324480pt;}
._2e{width:131.479040pt;}
.fs3{font-size:37.120000pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:117.120000pt;}
.yd{bottom:-11.680000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:3.680000pt;}
.y34{bottom:8.960000pt;}
.y38{bottom:9.594667pt;}
.y9{bottom:9.600000pt;}
.y80{bottom:12.000000pt;}
.yac{bottom:12.040000pt;}
.y83{bottom:12.160000pt;}
.yb{bottom:18.880000pt;}
.y33{bottom:23.520000pt;}
.y7{bottom:29.120000pt;}
.y32{bottom:37.920000pt;}
.y35{bottom:43.040000pt;}
.y36{bottom:43.200000pt;}
.y6{bottom:44.640000pt;}
.y8{bottom:47.360000pt;}
.y31{bottom:52.000000pt;}
.yae{bottom:56.000000pt;}
.yb2{bottom:56.026667pt;}
.ya8{bottom:56.200000pt;}
.y9f{bottom:78.112000pt;}
.yc4{bottom:83.872000pt;}
.yc8{bottom:93.152000pt;}
.y2f{bottom:96.832000pt;}
.y9e{bottom:106.432000pt;}
.yc3{bottom:109.152000pt;}
.y7c{bottom:112.192000pt;}
.y5b{bottom:118.432000pt;}
.y2c{bottom:122.112000pt;}
.y37{bottom:126.272000pt;}
.yc2{bottom:134.426667pt;}
.y9d{bottom:134.746667pt;}
.y7b{bottom:137.466667pt;}
.y5a{bottom:143.706667pt;}
.y2b{bottom:147.386667pt;}
.yc1{bottom:159.706667pt;}
.y7a{bottom:162.746667pt;}
.y59{bottom:168.986667pt;}
.y2a{bottom:172.826667pt;}
.y9c{bottom:173.626667pt;}
.yc0{bottom:185.146667pt;}
.y79{bottom:188.026667pt;}
.y58{bottom:194.426667pt;}
.y29{bottom:198.106667pt;}
.y9b{bottom:198.906667pt;}
.ybf{bottom:210.426667pt;}
.y78{bottom:213.306667pt;}
.y57{bottom:219.386667pt;}
.yc7{bottom:219.706667pt;}
.y28{bottom:223.386667pt;}
.y9a{bottom:223.866667pt;}
.ybe{bottom:235.706667pt;}
.y77{bottom:238.586667pt;}
.y99{bottom:239.226667pt;}
.y56{bottom:244.986667pt;}
.y27{bottom:248.666667pt;}
.ybd{bottom:260.986667pt;}
.y76{bottom:263.866667pt;}
.y98{bottom:267.546667pt;}
.yc6{bottom:269.946667pt;}
.y55{bottom:270.266667pt;}
.y26{bottom:273.946667pt;}
.ybc{bottom:286.306667pt;}
.y75{bottom:289.346667pt;}
.y54{bottom:295.586667pt;}
.y97{bottom:295.906667pt;}
.y25{bottom:299.266667pt;}
.ybb{bottom:311.586667pt;}
.y74{bottom:314.306667pt;}
.y53{bottom:320.866667pt;}
.y96{bottom:324.066667pt;}
.y24{bottom:324.546667pt;}
.yba{bottom:336.866667pt;}
.y73{bottom:339.906667pt;}
.y52{bottom:346.146667pt;}
.y23{bottom:349.826667pt;}
.y95{bottom:352.386667pt;}
.yb9{bottom:362.146667pt;}
.y72{bottom:365.186667pt;}
.y51{bottom:371.426667pt;}
.y22{bottom:375.106667pt;}
.yb8{bottom:387.426667pt;}
.y71{bottom:390.466667pt;}
.y94{bottom:391.426667pt;}
.y50{bottom:396.706667pt;}
.y21{bottom:400.546667pt;}
.yb7{bottom:412.866667pt;}
.y70{bottom:415.746667pt;}
.y93{bottom:416.706667pt;}
.y4f{bottom:422.146667pt;}
.y20{bottom:425.826667pt;}
.yb6{bottom:437.826667pt;}
.yc5{bottom:438.146667pt;}
.y6f{bottom:441.026667pt;}
.y92{bottom:441.666667pt;}
.y4e{bottom:447.426667pt;}
.y1f{bottom:451.106667pt;}
.yb1{bottom:452.066667pt;}
.y91{bottom:457.026667pt;}
.y6e{bottom:466.306667pt;}
.y4d{bottom:472.706667pt;}
.y1e{bottom:476.386667pt;}
.yb5{bottom:481.346667pt;}
.y90{bottom:485.186667pt;}
.y6d{bottom:491.586667pt;}
.y4c{bottom:497.986667pt;}
.y2e{bottom:501.346667pt;}
.y1d{bottom:501.666667pt;}
.yb4{bottom:510.813333pt;}
.y8f{bottom:513.533333pt;}
.y6c{bottom:517.053333pt;}
.y4b{bottom:523.293333pt;}
.y1c{bottom:526.973333pt;}
.yb3{bottom:540.093333pt;}
.y8e{bottom:541.853333pt;}
.y6b{bottom:542.333333pt;}
.y4a{bottom:548.573333pt;}
.y1b{bottom:552.253333pt;}
.y6a{bottom:567.613333pt;}
.yad{bottom:569.533333pt;}
.y8d{bottom:570.173333pt;}
.y49{bottom:573.853333pt;}
.y1a{bottom:577.533333pt;}
.y69{bottom:592.893333pt;}
.yb0{bottom:598.973333pt;}
.y48{bottom:599.133333pt;}
.y19{bottom:602.973333pt;}
.y8c{bottom:609.213333pt;}
.y68{bottom:618.173333pt;}
.y47{bottom:624.413333pt;}
.y18{bottom:627.933333pt;}
.y2d{bottom:628.253333pt;}
.y8b{bottom:634.493333pt;}
.y67{bottom:643.453333pt;}
.y46{bottom:649.853333pt;}
.y17{bottom:655.453333pt;}
.yaf{bottom:657.693333pt;}
.y8a{bottom:659.773333pt;}
.y66{bottom:668.733333pt;}
.y45{bottom:675.133333pt;}
.y16{bottom:680.733333pt;}
.y89{bottom:684.733333pt;}
.ya7{bottom:686.973333pt;}
.y65{bottom:694.173333pt;}
.y44{bottom:700.413333pt;}
.y15{bottom:706.013333pt;}
.y88{bottom:710.333333pt;}
.yab{bottom:716.413333pt;}
.y64{bottom:720.573333pt;}
.y43{bottom:725.693333pt;}
.y14{bottom:731.493333pt;}
.y87{bottom:735.653333pt;}
.yaa{bottom:745.733333pt;}
.y63{bottom:746.853333pt;}
.y42{bottom:751.013333pt;}
.y13{bottom:756.773333pt;}
.y86{bottom:760.933333pt;}
.y62{bottom:772.773333pt;}
.ya9{bottom:775.173333pt;}
.y85{bottom:775.973333pt;}
.y41{bottom:776.293333pt;}
.y12{bottom:782.053333pt;}
.y61{bottom:798.373333pt;}
.y40{bottom:801.573333pt;}
.y84{bottom:804.293333pt;}
.ya6{bottom:804.453333pt;}
.y11{bottom:812.613333pt;}
.y60{bottom:823.813333pt;}
.y3f{bottom:826.853333pt;}
.y82{bottom:832.453333pt;}
.y10{bottom:837.893333pt;}
.ya5{bottom:845.893333pt;}
.y5f{bottom:850.053333pt;}
.yca{bottom:851.813333pt;}
.y3e{bottom:852.133333pt;}
.yf{bottom:857.573333pt;}
.y81{bottom:860.773333pt;}
.ya4{bottom:871.173333pt;}
.y5e{bottom:875.493333pt;}
.yc9{bottom:877.253333pt;}
.y3d{bottom:877.573333pt;}
.ye{bottom:882.853333pt;}
.y7f{bottom:889.093333pt;}
.ya3{bottom:896.453333pt;}
.y5{bottom:901.573333pt;}
.y5d{bottom:901.893333pt;}
.y3c{bottom:902.853333pt;}
.y4{bottom:919.333333pt;}
.ya2{bottom:921.733333pt;}
.y5c{bottom:927.813333pt;}
.y3b{bottom:928.133333pt;}
.ya1{bottom:936.773333pt;}
.y3{bottom:936.933333pt;}
.y2{bottom:952.960000pt;}
.y7e{bottom:953.120000pt;}
.y3a{bottom:953.440000pt;}
.ya0{bottom:964.960000pt;}
.y1{bottom:967.680000pt;}
.y7d{bottom:978.400000pt;}
.y39{bottom:978.720000pt;}
.ya{bottom:997.600000pt;}
.y30{bottom:1005.760000pt;}
.h14{height:25.280000pt;}
.h16{height:25.312000pt;}
.h15{height:25.440000pt;}
.h19{height:25.472000pt;}
.h6{height:31.200000pt;}
.h9{height:36.667500pt;}
.ha{height:38.220000pt;}
.h1{height:44.648750pt;}
.hd{height:47.085938pt;}
.hc{height:47.742188pt;}
.he{height:49.148438pt;}
.h3{height:52.108438pt;}
.h7{height:53.535000pt;}
.h12{height:53.937500pt;}
.hb{height:57.787500pt;}
.h8{height:59.340000pt;}
.h13{height:60.519362pt;}
.h2{height:64.500000pt;}
.h5{height:64.500016pt;}
.h11{height:97.600000pt;}
.h10{height:98.705644pt;}
.h18{height:113.440000pt;}
.h17{height:113.472000pt;}
.h4{height:148.666667pt;}
.hf{height:238.786667pt;}
.h0{height:1056.000000pt;}
.w6{width:19.200000pt;}
.w2{width:21.280000pt;}
.w5{width:35.200000pt;}
.w4{width:35.360000pt;}
.w18{width:82.752000pt;}
.w1c{width:90.432000pt;}
.w17{width:93.760000pt;}
.w19{width:94.400000pt;}
.w1b{width:98.272000pt;}
.w1a{width:106.592000pt;}
.wd{width:120.000000pt;}
.w10{width:124.512000pt;}
.w15{width:127.040000pt;}
.w14{width:127.072000pt;}
.wc{width:130.112000pt;}
.w11{width:132.512000pt;}
.w9{width:142.400000pt;}
.w1d{width:154.106667pt;}
.wf{width:182.106667pt;}
.w13{width:185.946667pt;}
.wb{width:190.746667pt;}
.w8{width:205.506667pt;}
.w16{width:245.186667pt;}
.wa{width:279.586667pt;}
.w12{width:282.306667pt;}
.we{width:287.266667pt;}
.w3{width:296.706667pt;}
.w7{width:363.426667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xd{left:1.120000pt;}
.x17{left:6.880000pt;}
.x7{left:9.600000pt;}
.x1e{left:11.200000pt;}
.x5{left:15.040000pt;}
.xa{left:28.160000pt;}
.xc{left:46.880000pt;}
.x3{left:47.999988pt;}
.x1f{left:71.999988pt;}
.x1{left:128.191988pt;}
.x1d{left:139.386667pt;}
.x2{left:155.386655pt;}
.x18{left:294.146667pt;}
.x10{left:326.786667pt;}
.x15{left:330.626667pt;}
.x13{left:334.466667pt;}
.x19{left:388.546667pt;}
.xe{left:410.466667pt;}
.x8{left:434.653321pt;}
.xb{left:458.653321pt;}
.x1a{left:471.933333pt;}
.x6{left:486.973333pt;}
.x11{left:517.693333pt;}
.x1b{left:566.973333pt;}
.xf{left:616.133333pt;}
.x14{left:641.573333pt;}
.x16{left:644.293333pt;}
.x12{left:648.133333pt;}
.x1c{left:674.213333pt;}
.x9{left:774.400000pt;}
.x4{left:778.720000pt;}
}




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