
    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_1faf1dff05f1fb04bbda2436.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_c1ab2e3f0c020550c57b9c51.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_f6d9c79cda98092924aa5168.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.983398;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_f30d808d4429885d6496ea16.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_9555f3d3271594c8ed0ca7be.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_5071c93095aa2758b8f1b193.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.970215;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_b293accf3f3ced9306d5fd9c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.970215;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_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.750000;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_fa4e1475811b1f08ccb3fce7.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.958008;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_a19783223cd86544dee6bdb0.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.202148;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_b9b09e87e575ee98dbb06489.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.851562;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_062f7ec4a47554d4f263478f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.934082;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_f830a8ca74d43f9e4e67d145.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_7fed9392254d5dffb314a1d8.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_e0584cc2b3ae3d81c1c74013.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_c400eb345c717fcbccb19184.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.938965;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:ff11;src:url('chunks/assets/font_2792b55b9a7def87c6924d9e.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.938965;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:ff12;src:url('chunks/assets/font_f324f983fb5c9ae2dd6a498c.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.934082;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:ff13;src:url('chunks/assets/font_4382e39f0a69fe49619addd6.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_897d2deed83396923af9c48a.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.739746;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.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.127200px;}
.lsc{letter-spacing:-0.053280px;}
.ls8{letter-spacing:-0.018000px;}
.ls7{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.lsb{letter-spacing:0.087600px;}
.ls1{letter-spacing:0.132600px;}
.lsf{letter-spacing:0.180000px;}
.lse{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.lsd{letter-spacing:0.298800px;}
.ls5{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.786240px;}
.ls6{letter-spacing:0.894240px;}
.ls4{letter-spacing:1.080000px;}
.ls11{letter-spacing:16.506720px;}
.ls10{letter-spacing:46.026720px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.ws3{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.238800px;}
.ws4{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.886720px;}
.ws5{word-spacing:-14.580000px;}
.ws6{word-spacing:-13.505760px;}
.ws0{word-spacing:-12.186000px;}
.ws7{word-spacing:0.000000px;}
._12{margin-left:-6.673920px;}
._4{margin-left:-5.557680px;}
._d{margin-left:-3.974400px;}
._2{margin-left:-2.831760px;}
._0{margin-left:-1.296000px;}
._1{width:1.110000px;}
._3{width:2.316000px;}
._b{width:3.369600px;}
._a{width:4.601520px;}
._11{width:6.419760px;}
._13{width:8.272320px;}
._f{width:9.416640px;}
._e{width:10.483440px;}
._15{width:11.568000px;}
._14{width:13.034400px;}
._c{width:16.664640px;}
._9{width:17.819760px;}
._5{width:19.316640px;}
._6{width:20.466480px;}
._8{width:32.543760px;}
._10{width:33.591840px;}
._7{width:34.805760px;}
.fc6{color:transparent;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs6{font-size:36.000000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs7{font-size:56.920429px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y1a{bottom:0.180000px;}
.y41{bottom:3.240000px;}
.yb3{bottom:3.285000px;}
.y3{bottom:3.600000px;}
.y46{bottom:3.960000px;}
.y18{bottom:4.860000px;}
.ye{bottom:9.360000px;}
.yc6{bottom:9.900000px;}
.y44{bottom:10.620000px;}
.y1b{bottom:12.600000px;}
.yc{bottom:13.860000px;}
.y91{bottom:17.280000px;}
.yb4{bottom:17.325000px;}
.y4{bottom:17.496000px;}
.y2{bottom:20.196000px;}
.y40{bottom:20.520000px;}
.y45{bottom:22.320000px;}
.y43{bottom:25.200000px;}
.y17{bottom:25.920000px;}
.yb{bottom:30.240000px;}
.y3f{bottom:37.800000px;}
.y5{bottom:41.940000px;}
.y16{bottom:43.425000px;}
.ya{bottom:46.620000px;}
.y3e{bottom:55.080000px;}
.y15{bottom:63.585000px;}
.y1{bottom:64.440000px;}
.y3d{bottom:72.360000px;}
.y9{bottom:73.440000px;}
.y14{bottom:74.565000px;}
.y3c{bottom:89.640000px;}
.y8{bottom:93.090000px;}
.y13{bottom:93.645000px;}
.y3b{bottom:106.740000px;}
.y7{bottom:111.450000px;}
.y12{bottom:112.545000px;}
.yac{bottom:117.036000px;}
.y8d{bottom:118.116000px;}
.ycc{bottom:120.096000px;}
.y3a{bottom:124.020000px;}
.y50{bottom:124.056000px;}
.yab{bottom:134.316000px;}
.ycb{bottom:134.856000px;}
.y8c{bottom:135.396000px;}
.y11{bottom:138.285000px;}
.y4f{bottom:141.156000px;}
.y39{bottom:141.300000px;}
.y2a{bottom:147.780000px;}
.yaa{bottom:148.356000px;}
.y8b{bottom:152.670000px;}
.y4e{bottom:158.430000px;}
.y38{bottom:158.580000px;}
.yca{bottom:159.510000px;}
.y10{bottom:162.765000px;}
.y29{bottom:163.080000px;}
.y8a{bottom:169.770000px;}
.y4d{bottom:175.710000px;}
.y37{bottom:175.860000px;}
.y28{bottom:180.720000px;}
.yc9{bottom:184.170000px;}
.y89{bottom:187.050000px;}
.y4c{bottom:192.990000px;}
.y36{bottom:193.170000px;}
.y27{bottom:198.030000px;}
.y88{bottom:204.330000px;}
.yc8{bottom:208.830000px;}
.y35{bottom:210.270000px;}
.y26{bottom:215.310000px;}
.y87{bottom:221.610000px;}
.y34{bottom:227.550000px;}
.y25{bottom:233.130000px;}
.yc7{bottom:233.490000px;}
.y86{bottom:238.890000px;}
.y4b{bottom:244.650000px;}
.y33{bottom:244.830000px;}
.y24{bottom:250.410000px;}
.y85{bottom:256.170000px;}
.yc5{bottom:258.150000px;}
.y4a{bottom:261.930000px;}
.y32{bottom:262.110000px;}
.y23{bottom:267.870000px;}
.y84{bottom:273.270000px;}
.y49{bottom:279.210000px;}
.y31{bottom:279.390000px;}
.y22{bottom:285.330000px;}
.yc4{bottom:286.050000px;}
.y83{bottom:290.550000px;}
.y30{bottom:296.490000px;}
.y21{bottom:302.610000px;}
.yc3{bottom:303.330000px;}
.y82{bottom:307.830000px;}
.y2f{bottom:313.770000px;}
.y20{bottom:320.070000px;}
.yc2{bottom:320.610000px;}
.y81{bottom:325.110000px;}
.y2e{bottom:331.050000px;}
.yc1{bottom:337.935000px;}
.y1f{bottom:340.230000px;}
.y80{bottom:342.435000px;}
.y48{bottom:348.195000px;}
.y2d{bottom:348.330000px;}
.yc0{bottom:355.035000px;}
.y7f{bottom:359.715000px;}
.y47{bottom:365.475000px;}
.y2c{bottom:365.610000px;}
.y1e{bottom:367.770000px;}
.ybf{bottom:372.315000px;}
.y7e{bottom:376.815000px;}
.y42{bottom:379.515000px;}
.y2b{bottom:382.890000px;}
.y1d{bottom:385.410000px;}
.ybe{bottom:389.595000px;}
.y7d{bottom:394.095000px;}
.ybd{bottom:406.875000px;}
.y7c{bottom:411.375000px;}
.ya9{bottom:413.715000px;}
.y1c{bottom:416.055000px;}
.ybc{bottom:424.155000px;}
.ya8{bottom:428.475000px;}
.y7b{bottom:428.655000px;}
.ybb{bottom:441.435000px;}
.y7a{bottom:445.935000px;}
.ya7{bottom:446.295000px;}
.yba{bottom:455.295000px;}
.y79{bottom:463.035000px;}
.ya6{bottom:464.295000px;}
.y78{bottom:480.315000px;}
.ya5{bottom:482.295000px;}
.y77{bottom:497.595000px;}
.ya4{bottom:500.295000px;}
.y76{bottom:514.875000px;}
.ya3{bottom:521.535000px;}
.y75{bottom:532.155000px;}
.ya2{bottom:538.815000px;}
.y74{bottom:549.435000px;}
.ya1{bottom:556.095000px;}
.y73{bottom:566.535000px;}
.ya0{bottom:573.375000px;}
.y72{bottom:583.815000px;}
.y9f{bottom:590.655000px;}
.y71{bottom:601.095000px;}
.y9e{bottom:607.965000px;}
.y70{bottom:618.405000px;}
.y9d{bottom:625.065000px;}
.y6f{bottom:635.685000px;}
.y9c{bottom:642.345000px;}
.y6e{bottom:652.965000px;}
.y9b{bottom:657.105000px;}
.y6d{bottom:670.065000px;}
.y9a{bottom:675.105000px;}
.y6c{bottom:687.345000px;}
.y99{bottom:693.105000px;}
.y6b{bottom:704.625000px;}
.y98{bottom:711.105000px;}
.y6a{bottom:721.905000px;}
.y97{bottom:729.105000px;}
.y69{bottom:739.185000px;}
.y96{bottom:747.105000px;}
.y68{bottom:756.465000px;}
.y95{bottom:765.105000px;}
.y67{bottom:773.565000px;}
.yb9{bottom:782.565000px;}
.y94{bottom:783.105000px;}
.y66{bottom:790.845000px;}
.yb8{bottom:797.325000px;}
.y93{bottom:801.105000px;}
.y65{bottom:808.125000px;}
.y19{bottom:812.805000px;}
.yb7{bottom:815.325000px;}
.y92{bottom:819.105000px;}
.y64{bottom:825.405000px;}
.yb6{bottom:833.325000px;}
.y90{bottom:837.105000px;}
.yf{bottom:842.505000px;}
.y63{bottom:842.685000px;}
.yb5{bottom:851.325000px;}
.y8f{bottom:855.105000px;}
.y62{bottom:859.785000px;}
.yb2{bottom:869.325000px;}
.y8e{bottom:873.150000px;}
.y61{bottom:877.110000px;}
.yb1{bottom:887.370000px;}
.y60{bottom:894.390000px;}
.yb0{bottom:905.370000px;}
.y5f{bottom:911.670000px;}
.yaf{bottom:923.370000px;}
.y5e{bottom:928.950000px;}
.yae{bottom:941.370000px;}
.y5d{bottom:946.230000px;}
.yad{bottom:959.370000px;}
.y5c{bottom:963.330000px;}
.y5b{bottom:980.610000px;}
.y5a{bottom:997.890000px;}
.y59{bottom:1015.170000px;}
.yd{bottom:1020.390000px;}
.y58{bottom:1032.450000px;}
.y6{bottom:1045.590000px;}
.y57{bottom:1049.730000px;}
.y56{bottom:1066.830000px;}
.y55{bottom:1084.110000px;}
.y54{bottom:1101.390000px;}
.y53{bottom:1118.670000px;}
.y52{bottom:1135.950000px;}
.y51{bottom:1153.260000px;}
.h22{height:17.100000px;}
.h20{height:17.280000px;}
.h21{height:17.316000px;}
.h24{height:23.940000px;}
.hb{height:24.840000px;}
.h14{height:29.700000px;}
.h2{height:32.976000px;}
.h23{height:34.560000px;}
.h11{height:35.806641px;}
.h8{height:36.180000px;}
.h1d{height:36.540000px;}
.h1b{height:38.818125px;}
.h1f{height:42.164648px;}
.h1c{height:43.215117px;}
.h13{height:43.453125px;}
.h25{height:43.506914px;}
.h1a{height:43.681992px;}
.hd{height:44.002969px;}
.ha{height:44.820000px;}
.h19{height:45.770625px;}
.h12{height:46.025503px;}
.h17{height:47.980898px;}
.h1e{height:48.088125px;}
.h4{height:53.709961px;}
.h9{height:54.000000px;}
.h3{height:55.291992px;}
.h18{height:56.574492px;}
.hf{height:59.439023px;}
.h10{height:61.189805px;}
.he{height:63.180000px;}
.h5{height:67.824844px;}
.h6{height:71.613281px;}
.h15{height:73.722656px;}
.h7{height:121.536000px;}
.hc{height:177.870000px;}
.h16{height:396.750000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:73.080000px;}
.w11{width:148.716000px;}
.w5{width:151.950000px;}
.wc{width:188.670000px;}
.wf{width:202.710000px;}
.w8{width:216.075000px;}
.we{width:220.890000px;}
.w14{width:226.110000px;}
.w13{width:246.810000px;}
.wa{width:268.635000px;}
.w12{width:269.535000px;}
.wb{width:270.930000px;}
.wd{width:304.455000px;}
.w10{width:376.815000px;}
.w9{width:515.055000px;}
.w6{width:579.165000px;}
.w2{width:658.050000px;}
.w7{width:731.130000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:7.560000px;}
.x2{left:8.676000px;}
.xb{left:9.756000px;}
.x12{left:12.600000px;}
.xe{left:20.376000px;}
.xf{left:27.396000px;}
.x21{left:74.520000px;}
.x1{left:81.000000px;}
.x4{left:98.130000px;}
.x24{left:108.035987px;}
.x1e{left:111.995987px;}
.x25{left:135.035987px;}
.xc{left:176.610000px;}
.xd{left:212.655000px;}
.x10{left:215.175000px;}
.x5{left:232.950000px;}
.x1a{left:240.149987px;}
.x13{left:248.789987px;}
.x15{left:250.229987px;}
.x1f{left:268.589987px;}
.x8{left:272.235000px;}
.x20{left:284.114987px;}
.x11{left:297.075000px;}
.x6{left:331.995000px;}
.x22{left:344.775000px;}
.x7{left:351.255000px;}
.xa{left:365.475000px;}
.x16{left:387.075000px;}
.x9{left:439.500000px;}
.x1c{left:446.474987px;}
.x1b{left:459.255000px;}
.x23{left:592.305000px;}
.x18{left:608.685000px;}
.x14{left:622.725000px;}
.x19{left:670.469987px;}
.x1d{left:707.549987px;}
.x3{left:739.050000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.113067pt;}
.lsc{letter-spacing:-0.047360pt;}
.ls8{letter-spacing:-0.016000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.lsb{letter-spacing:0.077867pt;}
.ls1{letter-spacing:0.117867pt;}
.lsf{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.lsd{letter-spacing:0.265600pt;}
.ls5{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.698880pt;}
.ls6{letter-spacing:0.794880pt;}
.ls4{letter-spacing:0.960000pt;}
.ls11{letter-spacing:14.672640pt;}
.ls10{letter-spacing:40.912640pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.ws3{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.545600pt;}
.ws4{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.232640pt;}
.ws5{word-spacing:-12.960000pt;}
.ws6{word-spacing:-12.005120pt;}
.ws0{word-spacing:-10.832000pt;}
.ws7{word-spacing:0.000000pt;}
._12{margin-left:-5.932373pt;}
._4{margin-left:-4.940160pt;}
._d{margin-left:-3.532800pt;}
._2{margin-left:-2.517120pt;}
._0{margin-left:-1.152000pt;}
._1{width:0.986667pt;}
._3{width:2.058667pt;}
._b{width:2.995200pt;}
._a{width:4.090240pt;}
._11{width:5.706453pt;}
._13{width:7.353173pt;}
._f{width:8.370347pt;}
._e{width:9.318613pt;}
._15{width:10.282667pt;}
._14{width:11.586133pt;}
._c{width:14.813013pt;}
._9{width:15.839787pt;}
._5{width:17.170347pt;}
._6{width:18.192427pt;}
._8{width:28.927787pt;}
._10{width:29.859413pt;}
._7{width:30.938453pt;}
.fs6{font-size:32.000000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs7{font-size:50.595937pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y1a{bottom:0.160000pt;}
.y41{bottom:2.880000pt;}
.yb3{bottom:2.920000pt;}
.y3{bottom:3.200000pt;}
.y46{bottom:3.520000pt;}
.y18{bottom:4.320000pt;}
.ye{bottom:8.320000pt;}
.yc6{bottom:8.800000pt;}
.y44{bottom:9.440000pt;}
.y1b{bottom:11.200000pt;}
.yc{bottom:12.320000pt;}
.y91{bottom:15.360000pt;}
.yb4{bottom:15.400000pt;}
.y4{bottom:15.552000pt;}
.y2{bottom:17.952000pt;}
.y40{bottom:18.240000pt;}
.y45{bottom:19.840000pt;}
.y43{bottom:22.400000pt;}
.y17{bottom:23.040000pt;}
.yb{bottom:26.880000pt;}
.y3f{bottom:33.600000pt;}
.y5{bottom:37.280000pt;}
.y16{bottom:38.600000pt;}
.ya{bottom:41.440000pt;}
.y3e{bottom:48.960000pt;}
.y15{bottom:56.520000pt;}
.y1{bottom:57.280000pt;}
.y3d{bottom:64.320000pt;}
.y9{bottom:65.280000pt;}
.y14{bottom:66.280000pt;}
.y3c{bottom:79.680000pt;}
.y8{bottom:82.746667pt;}
.y13{bottom:83.240000pt;}
.y3b{bottom:94.880000pt;}
.y7{bottom:99.066667pt;}
.y12{bottom:100.040000pt;}
.yac{bottom:104.032000pt;}
.y8d{bottom:104.992000pt;}
.ycc{bottom:106.752000pt;}
.y3a{bottom:110.240000pt;}
.y50{bottom:110.272000pt;}
.yab{bottom:119.392000pt;}
.ycb{bottom:119.872000pt;}
.y8c{bottom:120.352000pt;}
.y11{bottom:122.920000pt;}
.y4f{bottom:125.472000pt;}
.y39{bottom:125.600000pt;}
.y2a{bottom:131.360000pt;}
.yaa{bottom:131.872000pt;}
.y8b{bottom:135.706667pt;}
.y4e{bottom:140.826667pt;}
.y38{bottom:140.960000pt;}
.yca{bottom:141.786667pt;}
.y10{bottom:144.680000pt;}
.y29{bottom:144.960000pt;}
.y8a{bottom:150.906667pt;}
.y4d{bottom:156.186667pt;}
.y37{bottom:156.320000pt;}
.y28{bottom:160.640000pt;}
.yc9{bottom:163.706667pt;}
.y89{bottom:166.266667pt;}
.y4c{bottom:171.546667pt;}
.y36{bottom:171.706667pt;}
.y27{bottom:176.026667pt;}
.y88{bottom:181.626667pt;}
.yc8{bottom:185.626667pt;}
.y35{bottom:186.906667pt;}
.y26{bottom:191.386667pt;}
.y87{bottom:196.986667pt;}
.y34{bottom:202.266667pt;}
.y25{bottom:207.226667pt;}
.yc7{bottom:207.546667pt;}
.y86{bottom:212.346667pt;}
.y4b{bottom:217.466667pt;}
.y33{bottom:217.626667pt;}
.y24{bottom:222.586667pt;}
.y85{bottom:227.706667pt;}
.yc5{bottom:229.466667pt;}
.y4a{bottom:232.826667pt;}
.y32{bottom:232.986667pt;}
.y23{bottom:238.106667pt;}
.y84{bottom:242.906667pt;}
.y49{bottom:248.186667pt;}
.y31{bottom:248.346667pt;}
.y22{bottom:253.626667pt;}
.yc4{bottom:254.266667pt;}
.y83{bottom:258.266667pt;}
.y30{bottom:263.546667pt;}
.y21{bottom:268.986667pt;}
.yc3{bottom:269.626667pt;}
.y82{bottom:273.626667pt;}
.y2f{bottom:278.906667pt;}
.y20{bottom:284.506667pt;}
.yc2{bottom:284.986667pt;}
.y81{bottom:288.986667pt;}
.y2e{bottom:294.266667pt;}
.yc1{bottom:300.386667pt;}
.y1f{bottom:302.426667pt;}
.y80{bottom:304.386667pt;}
.y48{bottom:309.506667pt;}
.y2d{bottom:309.626667pt;}
.yc0{bottom:315.586667pt;}
.y7f{bottom:319.746667pt;}
.y47{bottom:324.866667pt;}
.y2c{bottom:324.986667pt;}
.y1e{bottom:326.906667pt;}
.ybf{bottom:330.946667pt;}
.y7e{bottom:334.946667pt;}
.y42{bottom:337.346667pt;}
.y2b{bottom:340.346667pt;}
.y1d{bottom:342.586667pt;}
.ybe{bottom:346.306667pt;}
.y7d{bottom:350.306667pt;}
.ybd{bottom:361.666667pt;}
.y7c{bottom:365.666667pt;}
.ya9{bottom:367.746667pt;}
.y1c{bottom:369.826667pt;}
.ybc{bottom:377.026667pt;}
.ya8{bottom:380.866667pt;}
.y7b{bottom:381.026667pt;}
.ybb{bottom:392.386667pt;}
.y7a{bottom:396.386667pt;}
.ya7{bottom:396.706667pt;}
.yba{bottom:404.706667pt;}
.y79{bottom:411.586667pt;}
.ya6{bottom:412.706667pt;}
.y78{bottom:426.946667pt;}
.ya5{bottom:428.706667pt;}
.y77{bottom:442.306667pt;}
.ya4{bottom:444.706667pt;}
.y76{bottom:457.666667pt;}
.ya3{bottom:463.586667pt;}
.y75{bottom:473.026667pt;}
.ya2{bottom:478.946667pt;}
.y74{bottom:488.386667pt;}
.ya1{bottom:494.306667pt;}
.y73{bottom:503.586667pt;}
.ya0{bottom:509.666667pt;}
.y72{bottom:518.946667pt;}
.y9f{bottom:525.026667pt;}
.y71{bottom:534.306667pt;}
.y9e{bottom:540.413333pt;}
.y70{bottom:549.693333pt;}
.y9d{bottom:555.613333pt;}
.y6f{bottom:565.053333pt;}
.y9c{bottom:570.973333pt;}
.y6e{bottom:580.413333pt;}
.y9b{bottom:584.093333pt;}
.y6d{bottom:595.613333pt;}
.y9a{bottom:600.093333pt;}
.y6c{bottom:610.973333pt;}
.y99{bottom:616.093333pt;}
.y6b{bottom:626.333333pt;}
.y98{bottom:632.093333pt;}
.y6a{bottom:641.693333pt;}
.y97{bottom:648.093333pt;}
.y69{bottom:657.053333pt;}
.y96{bottom:664.093333pt;}
.y68{bottom:672.413333pt;}
.y95{bottom:680.093333pt;}
.y67{bottom:687.613333pt;}
.yb9{bottom:695.613333pt;}
.y94{bottom:696.093333pt;}
.y66{bottom:702.973333pt;}
.yb8{bottom:708.733333pt;}
.y93{bottom:712.093333pt;}
.y65{bottom:718.333333pt;}
.y19{bottom:722.493333pt;}
.yb7{bottom:724.733333pt;}
.y92{bottom:728.093333pt;}
.y64{bottom:733.693333pt;}
.yb6{bottom:740.733333pt;}
.y90{bottom:744.093333pt;}
.yf{bottom:748.893333pt;}
.y63{bottom:749.053333pt;}
.yb5{bottom:756.733333pt;}
.y8f{bottom:760.093333pt;}
.y62{bottom:764.253333pt;}
.yb2{bottom:772.733333pt;}
.y8e{bottom:776.133333pt;}
.y61{bottom:779.653333pt;}
.yb1{bottom:788.773333pt;}
.y60{bottom:795.013333pt;}
.yb0{bottom:804.773333pt;}
.y5f{bottom:810.373333pt;}
.yaf{bottom:820.773333pt;}
.y5e{bottom:825.733333pt;}
.yae{bottom:836.773333pt;}
.y5d{bottom:841.093333pt;}
.yad{bottom:852.773333pt;}
.y5c{bottom:856.293333pt;}
.y5b{bottom:871.653333pt;}
.y5a{bottom:887.013333pt;}
.y59{bottom:902.373333pt;}
.yd{bottom:907.013333pt;}
.y58{bottom:917.733333pt;}
.y6{bottom:929.413333pt;}
.y57{bottom:933.093333pt;}
.y56{bottom:948.293333pt;}
.y55{bottom:963.653333pt;}
.y54{bottom:979.013333pt;}
.y53{bottom:994.373333pt;}
.y52{bottom:1009.733333pt;}
.y51{bottom:1025.120000pt;}
.h22{height:15.200000pt;}
.h20{height:15.360000pt;}
.h21{height:15.392000pt;}
.h24{height:21.280000pt;}
.hb{height:22.080000pt;}
.h14{height:26.400000pt;}
.h2{height:29.312000pt;}
.h23{height:30.720000pt;}
.h11{height:31.828125pt;}
.h8{height:32.160000pt;}
.h1d{height:32.480000pt;}
.h1b{height:34.505000pt;}
.h1f{height:37.479688pt;}
.h1c{height:38.413438pt;}
.h13{height:38.625000pt;}
.h25{height:38.672812pt;}
.h1a{height:38.828437pt;}
.hd{height:39.113750pt;}
.ha{height:39.840000pt;}
.h19{height:40.685000pt;}
.h12{height:40.911558pt;}
.h17{height:42.649687pt;}
.h1e{height:42.745000pt;}
.h4{height:47.742188pt;}
.h9{height:48.000000pt;}
.h3{height:49.148438pt;}
.h18{height:50.288438pt;}
.hf{height:52.834688pt;}
.h10{height:54.390938pt;}
.he{height:56.160000pt;}
.h5{height:60.288750pt;}
.h6{height:63.656250pt;}
.h15{height:65.531250pt;}
.h7{height:108.032000pt;}
.hc{height:158.106667pt;}
.h16{height:352.666667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:64.960000pt;}
.w11{width:132.192000pt;}
.w5{width:135.066667pt;}
.wc{width:167.706667pt;}
.wf{width:180.186667pt;}
.w8{width:192.066667pt;}
.we{width:196.346667pt;}
.w14{width:200.986667pt;}
.w13{width:219.386667pt;}
.wa{width:238.786667pt;}
.w12{width:239.586667pt;}
.wb{width:240.826667pt;}
.wd{width:270.626667pt;}
.w10{width:334.946667pt;}
.w9{width:457.826667pt;}
.w6{width:514.813333pt;}
.w2{width:584.933333pt;}
.w7{width:649.893333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:6.720000pt;}
.x2{left:7.712000pt;}
.xb{left:8.672000pt;}
.x12{left:11.200000pt;}
.xe{left:18.112000pt;}
.xf{left:24.352000pt;}
.x21{left:66.240000pt;}
.x1{left:72.000000pt;}
.x4{left:87.226667pt;}
.x24{left:96.031988pt;}
.x1e{left:99.551988pt;}
.x25{left:120.031988pt;}
.xc{left:156.986667pt;}
.xd{left:189.026667pt;}
.x10{left:191.266667pt;}
.x5{left:207.066667pt;}
.x1a{left:213.466655pt;}
.x13{left:221.146655pt;}
.x15{left:222.426655pt;}
.x1f{left:238.746655pt;}
.x8{left:241.986667pt;}
.x20{left:252.546655pt;}
.x11{left:264.066667pt;}
.x6{left:295.106667pt;}
.x22{left:306.466667pt;}
.x7{left:312.226667pt;}
.xa{left:324.866667pt;}
.x16{left:344.066667pt;}
.x9{left:390.666667pt;}
.x1c{left:396.866655pt;}
.x1b{left:408.226667pt;}
.x23{left:526.493333pt;}
.x18{left:541.053333pt;}
.x14{left:553.533333pt;}
.x19{left:595.973322pt;}
.x1d{left:628.933322pt;}
.x3{left:656.933333pt;}
}




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