
    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_36b7453b1741e5819546deb1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_d968bf24133be2c270e6b19b.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_6d7d7d4871d30ef544a93c94.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_ebc4e2ade41c2ac15cd69302.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.728027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_bf4eac8d5a1f0bb97e198353.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.957000;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_883cd6fb5d1ab79b453cd164.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.941000;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_2cff123a0129c2486245989b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.765000;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_72d21ea100dbf69cd164fd68.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.727000;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_6830d27eda5e1421c5da0d81.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_663bb93c5452c76a763625cd.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.799000;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_080c02dee6b460a8fdc6420c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.727539;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_6830d27eda5e1421c5da0d81.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_51acbb0f40f48b3239ca712c.woff2')format("woff");}.ffd{font-family:ffd;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;}
.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);}
.v3{vertical-align:-17.982000px;}
.v2{vertical-align:-3.216000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.977200px;}
.v1{vertical-align:17.982000px;}
.v5{vertical-align:32.976000px;}
.lsf{letter-spacing:-4.992000px;}
.ls1b{letter-spacing:-4.272000px;}
.ls15{letter-spacing:-4.032000px;}
.lsd{letter-spacing:-3.792000px;}
.ls1d{letter-spacing:-2.304000px;}
.ls1e{letter-spacing:-2.160000px;}
.ls9{letter-spacing:-2.064000px;}
.ls19{letter-spacing:-1.920000px;}
.ls18{letter-spacing:-1.632000px;}
.ls14{letter-spacing:-1.584000px;}
.ls1a{letter-spacing:-1.344000px;}
.ls1c{letter-spacing:-1.152000px;}
.ls10{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.540000px;}
.lsa{letter-spacing:-0.480000px;}
.ls17{letter-spacing:-0.384000px;}
.lsc{letter-spacing:-0.240000px;}
.ls13{letter-spacing:-0.192000px;}
.ls8{letter-spacing:-0.132000px;}
.ls11{letter-spacing:-0.096000px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.005400px;}
.ls3{letter-spacing:0.006000px;}
.ls16{letter-spacing:0.048000px;}
.ls12{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.240000px;}
.ls7{letter-spacing:0.270000px;}
.ls2{letter-spacing:0.480000px;}
.lse{letter-spacing:0.624000px;}
.ls1{letter-spacing:4.704000px;}
.ls6{letter-spacing:275.456400px;}
.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;}
}
.ws7f{word-spacing:-18.546000px;}
.ws0{word-spacing:-15.012000px;}
.ws80{word-spacing:-13.968000px;}
.wsb5{word-spacing:-11.184000px;}
.ws2{word-spacing:-10.508400px;}
.wsb4{word-spacing:-5.760000px;}
.wsa3{word-spacing:-4.704000px;}
.ws67{word-spacing:-4.050000px;}
.wsbe{word-spacing:-4.032000px;}
.ws88{word-spacing:-3.294000px;}
.wsae{word-spacing:-3.024000px;}
.ws85{word-spacing:-2.970000px;}
.ws54{word-spacing:-2.592000px;}
.ws35{word-spacing:-2.430000px;}
.ws2f{word-spacing:-2.256000px;}
.ws1a{word-spacing:-2.214000px;}
.ws84{word-spacing:-2.106000px;}
.ws97{word-spacing:-2.016000px;}
.ws9f{word-spacing:-1.920000px;}
.wsb7{word-spacing:-1.872000px;}
.ws33{word-spacing:-1.836000px;}
.ws56{word-spacing:-1.728000px;}
.ws3e{word-spacing:-1.674000px;}
.ws91{word-spacing:-1.632000px;}
.wscd{word-spacing:-1.488000px;}
.ws57{word-spacing:-1.458000px;}
.ws99{word-spacing:-1.440000px;}
.wsa5{word-spacing:-1.392000px;}
.ws23{word-spacing:-1.350000px;}
.ws11{word-spacing:-1.296000px;}
.wsc2{word-spacing:-1.248000px;}
.ws83{word-spacing:-1.188000px;}
.ws1b{word-spacing:-1.080000px;}
.wsc3{word-spacing:-1.056000px;}
.wscf{word-spacing:-1.008000px;}
.ws81{word-spacing:-0.972000px;}
.wsf{word-spacing:-0.918000px;}
.ws7a{word-spacing:-0.810000px;}
.ws22{word-spacing:-0.756000px;}
.ws92{word-spacing:-0.720000px;}
.ws7{word-spacing:-0.702000px;}
.ws61{word-spacing:-0.648000px;}
.wsa4{word-spacing:-0.624000px;}
.ws1c{word-spacing:-0.594000px;}
.ws2d{word-spacing:-0.480000px;}
.ws77{word-spacing:-0.432000px;}
.wsc8{word-spacing:-0.384000px;}
.ws18{word-spacing:-0.378000px;}
.ws52{word-spacing:-0.324000px;}
.ws4c{word-spacing:-0.270000px;}
.wsa7{word-spacing:-0.192000px;}
.ws6d{word-spacing:-0.162000px;}
.wsa2{word-spacing:-0.144000px;}
.ws65{word-spacing:-0.048000px;}
.ws4{word-spacing:0.000000px;}
.ws9a{word-spacing:0.048000px;}
.ws36{word-spacing:0.054000px;}
.ws9e{word-spacing:0.096000px;}
.ws29{word-spacing:0.162000px;}
.wsa9{word-spacing:0.192000px;}
.ws2a{word-spacing:0.216000px;}
.ws98{word-spacing:0.240000px;}
.ws13{word-spacing:0.270000px;}
.ws4f{word-spacing:0.378000px;}
.wsb2{word-spacing:0.384000px;}
.ws75{word-spacing:0.432000px;}
.ws93{word-spacing:0.480000px;}
.ws14{word-spacing:0.486000px;}
.ws8{word-spacing:0.540000px;}
.ws24{word-spacing:0.594000px;}
.wsba{word-spacing:0.624000px;}
.ws16{word-spacing:0.648000px;}
.wsc6{word-spacing:0.720000px;}
.ws44{word-spacing:0.756000px;}
.wsb6{word-spacing:0.816000px;}
.ws50{word-spacing:0.864000px;}
.ws28{word-spacing:0.918000px;}
.ws4e{word-spacing:0.972000px;}
.wsc1{word-spacing:1.152000px;}
.wsb{word-spacing:1.188000px;}
.wse{word-spacing:1.296000px;}
.wsbb{word-spacing:1.344000px;}
.ws5b{word-spacing:1.350000px;}
.ws5c{word-spacing:1.404000px;}
.ws8f{word-spacing:1.536000px;}
.ws15{word-spacing:1.566000px;}
.wsaa{word-spacing:1.584000px;}
.ws21{word-spacing:1.620000px;}
.wsb3{word-spacing:1.632000px;}
.wsc0{word-spacing:1.680000px;}
.ws19{word-spacing:1.782000px;}
.wsbf{word-spacing:1.872000px;}
.ws6{word-spacing:1.890000px;}
.wsb8{word-spacing:1.920000px;}
.ws40{word-spacing:1.944000px;}
.wsb9{word-spacing:1.968000px;}
.wsbc{word-spacing:2.016000px;}
.ws90{word-spacing:2.064000px;}
.ws62{word-spacing:2.160000px;}
.ws4d{word-spacing:2.214000px;}
.wsca{word-spacing:2.304000px;}
.ws1d{word-spacing:2.322000px;}
.ws8d{word-spacing:2.352000px;}
.ws8e{word-spacing:2.448000px;}
.wsd{word-spacing:2.592000px;}
.ws59{word-spacing:2.646000px;}
.wsb0{word-spacing:2.688000px;}
.ws7d{word-spacing:2.754000px;}
.wsa6{word-spacing:2.784000px;}
.ws64{word-spacing:3.024000px;}
.ws2b{word-spacing:3.132000px;}
.wsac{word-spacing:3.312000px;}
.ws74{word-spacing:3.348000px;}
.ws79{word-spacing:3.402000px;}
.ws1e{word-spacing:3.456000px;}
.ws58{word-spacing:3.510000px;}
.ws8c{word-spacing:3.564000px;}
.ws26{word-spacing:3.618000px;}
.ws3f{word-spacing:3.726000px;}
.wsbd{word-spacing:3.744000px;}
.ws8a{word-spacing:3.780000px;}
.ws9b{word-spacing:3.792000px;}
.ws51{word-spacing:3.888000px;}
.wsb1{word-spacing:3.936000px;}
.wsaf{word-spacing:4.032000px;}
.ws3d{word-spacing:4.050000px;}
.ws94{word-spacing:4.080000px;}
.ws76{word-spacing:4.104000px;}
.ws3b{word-spacing:4.158000px;}
.ws2c{word-spacing:4.272000px;}
.ws9d{word-spacing:4.368000px;}
.ws95{word-spacing:4.416000px;}
.ws25{word-spacing:4.428000px;}
.ws6a{word-spacing:4.536000px;}
.ws5d{word-spacing:4.590000px;}
.ws41{word-spacing:4.698000px;}
.ws68{word-spacing:4.752000px;}
.ws72{word-spacing:4.806000px;}
.ws96{word-spacing:4.944000px;}
.wsa1{word-spacing:4.992000px;}
.ws12{word-spacing:5.130000px;}
.ws69{word-spacing:5.184000px;}
.ws5f{word-spacing:5.346000px;}
.ws1f{word-spacing:5.400000px;}
.ws63{word-spacing:5.424000px;}
.ws3c{word-spacing:5.454000px;}
.ws73{word-spacing:5.562000px;}
.ws6e{word-spacing:5.670000px;}
.ws20{word-spacing:5.832000px;}
.wsa8{word-spacing:5.856000px;}
.ws10{word-spacing:6.048000px;}
.ws53{word-spacing:6.102000px;}
.ws17{word-spacing:6.426000px;}
.ws9c{word-spacing:6.480000px;}
.ws42{word-spacing:6.588000px;}
.ws9{word-spacing:6.804000px;}
.wsce{word-spacing:6.864000px;}
.ws34{word-spacing:6.912000px;}
.ws2e{word-spacing:7.104000px;}
.ws38{word-spacing:7.344000px;}
.wsa0{word-spacing:7.392000px;}
.ws5e{word-spacing:7.398000px;}
.ws45{word-spacing:7.506000px;}
.ws3a{word-spacing:7.560000px;}
.ws37{word-spacing:7.722000px;}
.wsc7{word-spacing:7.920000px;}
.wsc4{word-spacing:7.968000px;}
.ws55{word-spacing:8.046000px;}
.ws60{word-spacing:8.208000px;}
.wsa{word-spacing:8.316000px;}
.wsad{word-spacing:8.352000px;}
.ws47{word-spacing:8.478000px;}
.ws32{word-spacing:8.586000px;}
.ws86{word-spacing:8.640000px;}
.ws82{word-spacing:8.748000px;}
.ws7c{word-spacing:9.018000px;}
.ws7b{word-spacing:9.072000px;}
.ws78{word-spacing:9.450000px;}
.ws71{word-spacing:9.504000px;}
.ws27{word-spacing:9.558000px;}
.ws6f{word-spacing:9.774000px;}
.wsc5{word-spacing:9.792000px;}
.ws49{word-spacing:9.990000px;}
.ws6b{word-spacing:10.152000px;}
.ws8b{word-spacing:10.260000px;}
.ws48{word-spacing:10.422000px;}
.ws4a{word-spacing:10.530000px;}
.ws5a{word-spacing:10.746000px;}
.ws66{word-spacing:10.752000px;}
.ws39{word-spacing:11.286000px;}
.wscb{word-spacing:11.808000px;}
.wsc{word-spacing:12.042000px;}
.ws30{word-spacing:12.096000px;}
.ws5{word-spacing:12.258000px;}
.wscc{word-spacing:12.480000px;}
.ws46{word-spacing:12.798000px;}
.ws89{word-spacing:12.906000px;}
.wsab{word-spacing:12.912000px;}
.wsc9{word-spacing:14.208000px;}
.ws4b{word-spacing:15.228000px;}
.ws70{word-spacing:15.552000px;}
.ws87{word-spacing:16.794000px;}
.ws43{word-spacing:19.008000px;}
.ws6c{word-spacing:19.278000px;}
.ws31{word-spacing:23.490000px;}
.ws3{word-spacing:105.456000px;}
.ws7e{word-spacing:181.440000px;}
.ws1{word-spacing:1242.054000px;}
._6{margin-left:-28.614600px;}
._e{margin-left:-23.706000px;}
._7{margin-left:-19.823400px;}
._1{margin-left:-5.994000px;}
._3{margin-left:-3.958200px;}
._4{margin-left:-2.953800px;}
._0{margin-left:-1.117800px;}
._2{width:1.722600px;}
._5{width:3.159000px;}
._9{width:4.800000px;}
._1d{width:5.832000px;}
._a{width:7.584000px;}
._8{width:11.988000px;}
._f{width:16.167600px;}
._c{width:18.954000px;}
._24{width:26.213400px;}
._22{width:27.946800px;}
._21{width:29.386800px;}
._1f{width:30.965400px;}
._23{width:33.125400px;}
._20{width:35.150400px;}
._1c{width:55.584000px;}
._1b{width:57.029400px;}
._1e{width:59.808000px;}
._16{width:108.720000px;}
._19{width:194.784000px;}
._15{width:226.800000px;}
._12{width:229.440000px;}
._18{width:232.752000px;}
._11{width:242.784000px;}
._14{width:272.784000px;}
._1a{width:304.800000px;}
._17{width:443.520000px;}
._10{width:483.552000px;}
._13{width:622.080000px;}
._d{width:943.429800px;}
._b{width:1361.538600px;}
.fc8{color:rgb(16,15,13);}
.fc7{color:rgb(35,73,74);}
.fc6{color:rgb(31,83,88);}
.fc5{color:rgb(59,75,167);}
.fc4{color:rgb(45,118,97);}
.fc2{color:rgb(26,83,79);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(79,76,77);}
.fs5{font-size:37.800000px;}
.fs7{font-size:42.000000px;}
.fs8{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y37{bottom:17.301750px;}
.y3b{bottom:46.967550px;}
.y3c{bottom:47.167950px;}
.y8d{bottom:47.171700px;}
.y8c{bottom:47.916000px;}
.y32{bottom:59.074650px;}
.y36{bottom:59.194650px;}
.y31{bottom:77.074650px;}
.y35{bottom:77.194650px;}
.y8b{bottom:85.815450px;}
.yfd{bottom:86.079900px;}
.y113{bottom:86.115900px;}
.y6e{bottom:92.276250px;}
.yc0{bottom:92.295750px;}
.ya1{bottom:92.300250px;}
.y30{bottom:95.074650px;}
.y34{bottom:95.194650px;}
.y8a{bottom:102.315450px;}
.yfc{bottom:102.579900px;}
.y112{bottom:102.615900px;}
.y6d{bottom:111.027750px;}
.ya0{bottom:111.047250px;}
.y2f{bottom:113.074650px;}
.y33{bottom:113.194650px;}
.yfb{bottom:119.079900px;}
.y111{bottom:119.115900px;}
.y6c{bottom:129.779250px;}
.y9f{bottom:129.798750px;}
.yfa{bottom:135.579900px;}
.y110{bottom:135.615900px;}
.y6b{bottom:148.530750px;}
.y9e{bottom:148.550250px;}
.yf9{bottom:152.079900px;}
.y10f{bottom:152.115900px;}
.y27{bottom:159.373050px;}
.y6a{bottom:167.282250px;}
.y9d{bottom:167.301750px;}
.yf8{bottom:168.579900px;}
.y10e{bottom:168.615900px;}
.yf7{bottom:185.079900px;}
.y10d{bottom:185.115900px;}
.y69{bottom:186.033750px;}
.ybf{bottom:186.042750px;}
.yf6{bottom:201.579900px;}
.y10c{bottom:201.615900px;}
.y68{bottom:204.785250px;}
.ybe{bottom:204.794250px;}
.y9c{bottom:204.801750px;}
.yf5{bottom:218.079900px;}
.y10b{bottom:218.115900px;}
.y2b{bottom:220.813050px;}
.y4{bottom:220.814400px;}
.y67{bottom:223.536750px;}
.ybd{bottom:223.545750px;}
.yf4{bottom:234.579900px;}
.y10a{bottom:234.615900px;}
.y2a{bottom:237.313050px;}
.y3{bottom:237.314400px;}
.y66{bottom:242.288250px;}
.ybc{bottom:242.297250px;}
.yf3{bottom:251.079900px;}
.y109{bottom:251.115900px;}
.y29{bottom:253.813050px;}
.y2{bottom:253.814400px;}
.y65{bottom:261.039750px;}
.yf2{bottom:267.579900px;}
.y108{bottom:267.615900px;}
.y28{bottom:270.313050px;}
.y1{bottom:270.314400px;}
.y97{bottom:271.065450px;}
.y64{bottom:279.791250px;}
.ybb{bottom:279.800250px;}
.yf1{bottom:284.079900px;}
.y107{bottom:284.115900px;}
.y63{bottom:298.542750px;}
.yba{bottom:298.547250px;}
.yf0{bottom:300.579900px;}
.y106{bottom:300.615900px;}
.yef{bottom:317.079900px;}
.y105{bottom:317.115900px;}
.y62{bottom:317.294250px;}
.yb9{bottom:317.298750px;}
.y2e{bottom:325.473450px;}
.y89{bottom:327.315450px;}
.yee{bottom:333.579900px;}
.y104{bottom:333.615900px;}
.y61{bottom:336.045750px;}
.yb8{bottom:336.050250px;}
.yed{bottom:350.079900px;}
.y103{bottom:350.115900px;}
.yb7{bottom:354.795750px;}
.y60{bottom:354.797250px;}
.yec{bottom:366.579900px;}
.y102{bottom:366.615900px;}
.yb6{bottom:373.547250px;}
.y5f{bottom:373.548750px;}
.yeb{bottom:383.079900px;}
.y101{bottom:383.115900px;}
.y88{bottom:385.815450px;}
.yb5{bottom:392.298750px;}
.y5e{bottom:392.300250px;}
.yea{bottom:399.579900px;}
.y100{bottom:399.615900px;}
.y87{bottom:402.315450px;}
.yb4{bottom:411.050250px;}
.y5d{bottom:411.051750px;}
.yff{bottom:416.115900px;}
.yb3{bottom:429.797250px;}
.y3a{bottom:431.217900px;}
.ye9{bottom:432.579900px;}
.yfe{bottom:432.615900px;}
.y39{bottom:441.723900px;}
.yb2{bottom:448.548750px;}
.y5c{bottom:448.551750px;}
.y38{bottom:461.217900px;}
.yb1{bottom:467.300250px;}
.yb0{bottom:486.033750px;}
.y96{bottom:496.065450px;}
.yda{bottom:503.865450px;}
.yaf{bottom:504.785250px;}
.y5b{bottom:504.795750px;}
.yd9{bottom:512.121450px;}
.yae{bottom:523.536750px;}
.y5a{bottom:523.547250px;}
.y1e{bottom:528.760950px;}
.y95{bottom:535.821450px;}
.yd8{bottom:541.113450px;}
.yad{bottom:542.288250px;}
.y59{bottom:542.298750px;}
.y1d{bottom:543.759450px;}
.yd7{bottom:549.369450px;}
.y94{bottom:552.321450px;}
.y1c{bottom:558.757950px;}
.yac{bottom:561.039750px;}
.y58{bottom:561.050250px;}
.y1b{bottom:573.756450px;}
.yd6{bottom:578.361450px;}
.yab{bottom:579.791250px;}
.y57{bottom:579.797250px;}
.yd5{bottom:586.617450px;}
.y1a{bottom:588.754950px;}
.yaa{bottom:598.542750px;}
.y56{bottom:598.548750px;}
.y19{bottom:603.753450px;}
.yd4{bottom:615.609450px;}
.ya9{bottom:617.294250px;}
.y55{bottom:617.300250px;}
.y18{bottom:618.751950px;}
.yd3{bottom:623.865450px;}
.y86{bottom:627.315450px;}
.y17{bottom:633.750450px;}
.ya8{bottom:636.045750px;}
.y54{bottom:636.047250px;}
.y16{bottom:648.748950px;}
.yd2{bottom:652.857450px;}
.ya7{bottom:654.797250px;}
.y53{bottom:654.798750px;}
.y15{bottom:663.747450px;}
.y85{bottom:673.491750px;}
.ya6{bottom:673.548750px;}
.y52{bottom:673.550250px;}
.yd1{bottom:673.593450px;}
.y14{bottom:678.745950px;}
.y84{bottom:692.243250px;}
.y51{bottom:692.300250px;}
.y13{bottom:693.744450px;}
.yd0{bottom:694.329450px;}
.y12{bottom:708.742950px;}
.y83{bottom:710.994750px;}
.y50{bottom:711.047250px;}
.ya5{bottom:711.050250px;}
.ycf{bottom:715.065450px;}
.y11{bottom:723.741450px;}
.y82{bottom:729.746250px;}
.y4f{bottom:729.798750px;}
.ya4{bottom:729.800250px;}
.y10{bottom:738.739950px;}
.y81{bottom:748.497750px;}
.ya3{bottom:748.548750px;}
.y4e{bottom:748.550250px;}
.yf{bottom:753.738450px;}
.y80{bottom:767.249250px;}
.yce{bottom:767.297250px;}
.y4d{bottom:767.300250px;}
.ye{bottom:768.736950px;}
.ye8{bottom:769.793850px;}
.y93{bottom:779.565450px;}
.yd{bottom:783.735450px;}
.y7f{bottom:786.000750px;}
.y4c{bottom:786.045750px;}
.ycd{bottom:786.048750px;}
.ya2{bottom:786.051750px;}
.ye7{bottom:786.293850px;}
.y92{bottom:796.065450px;}
.yc{bottom:798.733950px;}
.y125{bottom:799.065450px;}
.ye6{bottom:802.793850px;}
.y7e{bottom:804.752250px;}
.y4b{bottom:804.797250px;}
.ycc{bottom:804.800250px;}
.yb{bottom:813.732450px;}
.y124{bottom:815.565450px;}
.ye5{bottom:819.293850px;}
.y7d{bottom:823.503750px;}
.y4a{bottom:823.548750px;}
.ycb{bottom:823.551750px;}
.ya{bottom:828.730950px;}
.y123{bottom:832.065450px;}
.ye4{bottom:835.793850px;}
.y9b{bottom:838.065300px;}
.y91{bottom:838.065450px;}
.y7c{bottom:842.255250px;}
.y49{bottom:842.300250px;}
.y9{bottom:843.729450px;}
.y122{bottom:848.565450px;}
.y9a{bottom:854.565300px;}
.y90{bottom:854.565450px;}
.y8{bottom:858.727950px;}
.y7b{bottom:861.006750px;}
.y48{bottom:861.048750px;}
.yca{bottom:861.051750px;}
.y121{bottom:865.065450px;}
.y99{bottom:871.065300px;}
.y8f{bottom:871.065450px;}
.y7{bottom:873.726450px;}
.y7a{bottom:879.758250px;}
.y47{bottom:879.800250px;}
.y120{bottom:881.565450px;}
.y6{bottom:888.724950px;}
.y11f{bottom:898.065450px;}
.y79{bottom:898.509750px;}
.ye3{bottom:898.536750px;}
.y46{bottom:898.550250px;}
.y5{bottom:903.723450px;}
.y11e{bottom:914.565450px;}
.y78{bottom:917.261250px;}
.ye2{bottom:917.288250px;}
.yc9{bottom:917.289750px;}
.y45{bottom:917.291250px;}
.y1f{bottom:923.289300px;}
.y11d{bottom:931.065450px;}
.y77{bottom:936.012750px;}
.ye1{bottom:936.039750px;}
.yc8{bottom:936.041250px;}
.y44{bottom:936.042750px;}
.y11c{bottom:947.565450px;}
.y76{bottom:954.764250px;}
.ye0{bottom:954.791250px;}
.yc7{bottom:954.792750px;}
.y43{bottom:954.794250px;}
.y11b{bottom:964.065450px;}
.y75{bottom:973.515750px;}
.ydf{bottom:973.542750px;}
.yc6{bottom:973.544250px;}
.y42{bottom:973.545750px;}
.y11a{bottom:980.565450px;}
.y26{bottom:982.473300px;}
.y74{bottom:992.267250px;}
.yde{bottom:992.294250px;}
.yc5{bottom:992.295750px;}
.y41{bottom:992.297250px;}
.y119{bottom:997.065450px;}
.y73{bottom:1011.018750px;}
.ydd{bottom:1011.045750px;}
.yc4{bottom:1011.047250px;}
.y40{bottom:1011.048750px;}
.y118{bottom:1013.565450px;}
.y2d{bottom:1021.700700px;}
.y72{bottom:1029.770250px;}
.ydc{bottom:1029.797250px;}
.yc3{bottom:1029.798750px;}
.y3f{bottom:1029.800250px;}
.y117{bottom:1030.065450px;}
.y2c{bottom:1043.300700px;}
.y116{bottom:1046.565450px;}
.y71{bottom:1048.521750px;}
.ydb{bottom:1048.548750px;}
.yc2{bottom:1048.550250px;}
.y3e{bottom:1048.551750px;}
.y115{bottom:1063.065450px;}
.y70{bottom:1067.273250px;}
.yc1{bottom:1067.300250px;}
.y114{bottom:1079.565450px;}
.y22{bottom:1080.481800px;}
.y25{bottom:1082.937000px;}
.y6f{bottom:1086.024750px;}
.y3d{bottom:1086.051750px;}
.y98{bottom:1096.065300px;}
.y8e{bottom:1096.065450px;}
.y24{bottom:1097.937000px;}
.y21{bottom:1112.881800px;}
.y23{bottom:1112.937000px;}
.y20{bottom:1145.281800px;}
.hf{height:27.537891px;}
.he{height:34.320000px;}
.h2{height:34.945312px;}
.h3{height:34.968750px;}
.hd{height:35.616000px;}
.hc{height:36.336000px;}
.h5{height:39.313477px;}
.h4{height:39.339844px;}
.h16{height:39.357844px;}
.h10{height:39.385444px;}
.h18{height:42.317044px;}
.h8{height:44.520000px;}
.hb{height:45.519291px;}
.h9{height:45.519891px;}
.h13{height:45.525891px;}
.h14{height:45.531891px;}
.h17{height:45.537891px;}
.h15{height:45.543891px;}
.h1a{height:45.555891px;}
.h12{height:45.561891px;}
.h19{height:45.591891px;}
.h6{height:47.244141px;}
.h1c{height:51.942000px;}
.ha{height:54.504000px;}
.h11{height:56.664000px;}
.h1b{height:67.944750px;}
.h7{height:81.756000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:914.173500px;}
.w1{width:914.250000px;}
.x0{left:0.000000px;}
.x2{left:85.039500px;}
.x12{left:88.365900px;}
.x13{left:89.425200px;}
.x1a{left:95.853900px;}
.x18{left:103.039350px;}
.x14{left:107.425200px;}
.x1d{left:112.039350px;}
.x1b{left:116.291250px;}
.x10{left:139.339200px;}
.x6{left:270.660900px;}
.x8{left:285.312900px;}
.xe{left:291.762600px;}
.xa{left:293.988900px;}
.xd{left:322.290600px;}
.x4{left:328.963950px;}
.x9{left:342.024900px;}
.x7{left:356.676900px;}
.x3{left:358.366950px;}
.xf{left:363.666600px;}
.xb{left:375.866100px;}
.x5{left:409.666950px;}
.xc{left:416.312100px;}
.x17{left:451.325100px;}
.x11{left:455.592300px;}
.x1{left:469.770150px;}
.x16{left:474.098700px;}
.x19{left:487.834050px;}
.x15{left:492.094200px;}
.x1e{left:496.831350px;}
.x1c{left:501.095250px;}
@media print{
.v3{vertical-align:-15.984000pt;}
.v2{vertical-align:-2.858667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.646400pt;}
.v1{vertical-align:15.984000pt;}
.v5{vertical-align:29.312000pt;}
.lsf{letter-spacing:-4.437333pt;}
.ls1b{letter-spacing:-3.797333pt;}
.ls15{letter-spacing:-3.584000pt;}
.lsd{letter-spacing:-3.370667pt;}
.ls1d{letter-spacing:-2.048000pt;}
.ls1e{letter-spacing:-1.920000pt;}
.ls9{letter-spacing:-1.834667pt;}
.ls19{letter-spacing:-1.706667pt;}
.ls18{letter-spacing:-1.450667pt;}
.ls14{letter-spacing:-1.408000pt;}
.ls1a{letter-spacing:-1.194667pt;}
.ls1c{letter-spacing:-1.024000pt;}
.ls10{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.480000pt;}
.lsa{letter-spacing:-0.426667pt;}
.ls17{letter-spacing:-0.341333pt;}
.lsc{letter-spacing:-0.213333pt;}
.ls13{letter-spacing:-0.170667pt;}
.ls8{letter-spacing:-0.117333pt;}
.ls11{letter-spacing:-0.085333pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.004800pt;}
.ls3{letter-spacing:0.005333pt;}
.ls16{letter-spacing:0.042667pt;}
.ls12{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.213333pt;}
.ls7{letter-spacing:0.240000pt;}
.ls2{letter-spacing:0.426667pt;}
.lse{letter-spacing:0.554667pt;}
.ls1{letter-spacing:4.181333pt;}
.ls6{letter-spacing:244.850133pt;}
.ws7f{word-spacing:-16.485333pt;}
.ws0{word-spacing:-13.344000pt;}
.ws80{word-spacing:-12.416000pt;}
.wsb5{word-spacing:-9.941333pt;}
.ws2{word-spacing:-9.340800pt;}
.wsb4{word-spacing:-5.120000pt;}
.wsa3{word-spacing:-4.181333pt;}
.ws67{word-spacing:-3.600000pt;}
.wsbe{word-spacing:-3.584000pt;}
.ws88{word-spacing:-2.928000pt;}
.wsae{word-spacing:-2.688000pt;}
.ws85{word-spacing:-2.640000pt;}
.ws54{word-spacing:-2.304000pt;}
.ws35{word-spacing:-2.160000pt;}
.ws2f{word-spacing:-2.005333pt;}
.ws1a{word-spacing:-1.968000pt;}
.ws84{word-spacing:-1.872000pt;}
.ws97{word-spacing:-1.792000pt;}
.ws9f{word-spacing:-1.706667pt;}
.wsb7{word-spacing:-1.664000pt;}
.ws33{word-spacing:-1.632000pt;}
.ws56{word-spacing:-1.536000pt;}
.ws3e{word-spacing:-1.488000pt;}
.ws91{word-spacing:-1.450667pt;}
.wscd{word-spacing:-1.322667pt;}
.ws57{word-spacing:-1.296000pt;}
.ws99{word-spacing:-1.280000pt;}
.wsa5{word-spacing:-1.237333pt;}
.ws23{word-spacing:-1.200000pt;}
.ws11{word-spacing:-1.152000pt;}
.wsc2{word-spacing:-1.109333pt;}
.ws83{word-spacing:-1.056000pt;}
.ws1b{word-spacing:-0.960000pt;}
.wsc3{word-spacing:-0.938667pt;}
.wscf{word-spacing:-0.896000pt;}
.ws81{word-spacing:-0.864000pt;}
.wsf{word-spacing:-0.816000pt;}
.ws7a{word-spacing:-0.720000pt;}
.ws22{word-spacing:-0.672000pt;}
.ws92{word-spacing:-0.640000pt;}
.ws7{word-spacing:-0.624000pt;}
.ws61{word-spacing:-0.576000pt;}
.wsa4{word-spacing:-0.554667pt;}
.ws1c{word-spacing:-0.528000pt;}
.ws2d{word-spacing:-0.426667pt;}
.ws77{word-spacing:-0.384000pt;}
.wsc8{word-spacing:-0.341333pt;}
.ws18{word-spacing:-0.336000pt;}
.ws52{word-spacing:-0.288000pt;}
.ws4c{word-spacing:-0.240000pt;}
.wsa7{word-spacing:-0.170667pt;}
.ws6d{word-spacing:-0.144000pt;}
.wsa2{word-spacing:-0.128000pt;}
.ws65{word-spacing:-0.042667pt;}
.ws4{word-spacing:0.000000pt;}
.ws9a{word-spacing:0.042667pt;}
.ws36{word-spacing:0.048000pt;}
.ws9e{word-spacing:0.085333pt;}
.ws29{word-spacing:0.144000pt;}
.wsa9{word-spacing:0.170667pt;}
.ws2a{word-spacing:0.192000pt;}
.ws98{word-spacing:0.213333pt;}
.ws13{word-spacing:0.240000pt;}
.ws4f{word-spacing:0.336000pt;}
.wsb2{word-spacing:0.341333pt;}
.ws75{word-spacing:0.384000pt;}
.ws93{word-spacing:0.426667pt;}
.ws14{word-spacing:0.432000pt;}
.ws8{word-spacing:0.480000pt;}
.ws24{word-spacing:0.528000pt;}
.wsba{word-spacing:0.554667pt;}
.ws16{word-spacing:0.576000pt;}
.wsc6{word-spacing:0.640000pt;}
.ws44{word-spacing:0.672000pt;}
.wsb6{word-spacing:0.725333pt;}
.ws50{word-spacing:0.768000pt;}
.ws28{word-spacing:0.816000pt;}
.ws4e{word-spacing:0.864000pt;}
.wsc1{word-spacing:1.024000pt;}
.wsb{word-spacing:1.056000pt;}
.wse{word-spacing:1.152000pt;}
.wsbb{word-spacing:1.194667pt;}
.ws5b{word-spacing:1.200000pt;}
.ws5c{word-spacing:1.248000pt;}
.ws8f{word-spacing:1.365333pt;}
.ws15{word-spacing:1.392000pt;}
.wsaa{word-spacing:1.408000pt;}
.ws21{word-spacing:1.440000pt;}
.wsb3{word-spacing:1.450667pt;}
.wsc0{word-spacing:1.493333pt;}
.ws19{word-spacing:1.584000pt;}
.wsbf{word-spacing:1.664000pt;}
.ws6{word-spacing:1.680000pt;}
.wsb8{word-spacing:1.706667pt;}
.ws40{word-spacing:1.728000pt;}
.wsb9{word-spacing:1.749333pt;}
.wsbc{word-spacing:1.792000pt;}
.ws90{word-spacing:1.834667pt;}
.ws62{word-spacing:1.920000pt;}
.ws4d{word-spacing:1.968000pt;}
.wsca{word-spacing:2.048000pt;}
.ws1d{word-spacing:2.064000pt;}
.ws8d{word-spacing:2.090667pt;}
.ws8e{word-spacing:2.176000pt;}
.wsd{word-spacing:2.304000pt;}
.ws59{word-spacing:2.352000pt;}
.wsb0{word-spacing:2.389333pt;}
.ws7d{word-spacing:2.448000pt;}
.wsa6{word-spacing:2.474667pt;}
.ws64{word-spacing:2.688000pt;}
.ws2b{word-spacing:2.784000pt;}
.wsac{word-spacing:2.944000pt;}
.ws74{word-spacing:2.976000pt;}
.ws79{word-spacing:3.024000pt;}
.ws1e{word-spacing:3.072000pt;}
.ws58{word-spacing:3.120000pt;}
.ws8c{word-spacing:3.168000pt;}
.ws26{word-spacing:3.216000pt;}
.ws3f{word-spacing:3.312000pt;}
.wsbd{word-spacing:3.328000pt;}
.ws8a{word-spacing:3.360000pt;}
.ws9b{word-spacing:3.370667pt;}
.ws51{word-spacing:3.456000pt;}
.wsb1{word-spacing:3.498667pt;}
.wsaf{word-spacing:3.584000pt;}
.ws3d{word-spacing:3.600000pt;}
.ws94{word-spacing:3.626667pt;}
.ws76{word-spacing:3.648000pt;}
.ws3b{word-spacing:3.696000pt;}
.ws2c{word-spacing:3.797333pt;}
.ws9d{word-spacing:3.882667pt;}
.ws95{word-spacing:3.925333pt;}
.ws25{word-spacing:3.936000pt;}
.ws6a{word-spacing:4.032000pt;}
.ws5d{word-spacing:4.080000pt;}
.ws41{word-spacing:4.176000pt;}
.ws68{word-spacing:4.224000pt;}
.ws72{word-spacing:4.272000pt;}
.ws96{word-spacing:4.394667pt;}
.wsa1{word-spacing:4.437333pt;}
.ws12{word-spacing:4.560000pt;}
.ws69{word-spacing:4.608000pt;}
.ws5f{word-spacing:4.752000pt;}
.ws1f{word-spacing:4.800000pt;}
.ws63{word-spacing:4.821333pt;}
.ws3c{word-spacing:4.848000pt;}
.ws73{word-spacing:4.944000pt;}
.ws6e{word-spacing:5.040000pt;}
.ws20{word-spacing:5.184000pt;}
.wsa8{word-spacing:5.205333pt;}
.ws10{word-spacing:5.376000pt;}
.ws53{word-spacing:5.424000pt;}
.ws17{word-spacing:5.712000pt;}
.ws9c{word-spacing:5.760000pt;}
.ws42{word-spacing:5.856000pt;}
.ws9{word-spacing:6.048000pt;}
.wsce{word-spacing:6.101333pt;}
.ws34{word-spacing:6.144000pt;}
.ws2e{word-spacing:6.314667pt;}
.ws38{word-spacing:6.528000pt;}
.wsa0{word-spacing:6.570667pt;}
.ws5e{word-spacing:6.576000pt;}
.ws45{word-spacing:6.672000pt;}
.ws3a{word-spacing:6.720000pt;}
.ws37{word-spacing:6.864000pt;}
.wsc7{word-spacing:7.040000pt;}
.wsc4{word-spacing:7.082667pt;}
.ws55{word-spacing:7.152000pt;}
.ws60{word-spacing:7.296000pt;}
.wsa{word-spacing:7.392000pt;}
.wsad{word-spacing:7.424000pt;}
.ws47{word-spacing:7.536000pt;}
.ws32{word-spacing:7.632000pt;}
.ws86{word-spacing:7.680000pt;}
.ws82{word-spacing:7.776000pt;}
.ws7c{word-spacing:8.016000pt;}
.ws7b{word-spacing:8.064000pt;}
.ws78{word-spacing:8.400000pt;}
.ws71{word-spacing:8.448000pt;}
.ws27{word-spacing:8.496000pt;}
.ws6f{word-spacing:8.688000pt;}
.wsc5{word-spacing:8.704000pt;}
.ws49{word-spacing:8.880000pt;}
.ws6b{word-spacing:9.024000pt;}
.ws8b{word-spacing:9.120000pt;}
.ws48{word-spacing:9.264000pt;}
.ws4a{word-spacing:9.360000pt;}
.ws5a{word-spacing:9.552000pt;}
.ws66{word-spacing:9.557333pt;}
.ws39{word-spacing:10.032000pt;}
.wscb{word-spacing:10.496000pt;}
.wsc{word-spacing:10.704000pt;}
.ws30{word-spacing:10.752000pt;}
.ws5{word-spacing:10.896000pt;}
.wscc{word-spacing:11.093333pt;}
.ws46{word-spacing:11.376000pt;}
.ws89{word-spacing:11.472000pt;}
.wsab{word-spacing:11.477333pt;}
.wsc9{word-spacing:12.629333pt;}
.ws4b{word-spacing:13.536000pt;}
.ws70{word-spacing:13.824000pt;}
.ws87{word-spacing:14.928000pt;}
.ws43{word-spacing:16.896000pt;}
.ws6c{word-spacing:17.136000pt;}
.ws31{word-spacing:20.880000pt;}
.ws3{word-spacing:93.738667pt;}
.ws7e{word-spacing:161.280000pt;}
.ws1{word-spacing:1104.048000pt;}
._6{margin-left:-25.435200pt;}
._e{margin-left:-21.072000pt;}
._7{margin-left:-17.620800pt;}
._1{margin-left:-5.328000pt;}
._3{margin-left:-3.518400pt;}
._4{margin-left:-2.625600pt;}
._0{margin-left:-0.993600pt;}
._2{width:1.531200pt;}
._5{width:2.808000pt;}
._9{width:4.266667pt;}
._1d{width:5.184000pt;}
._a{width:6.741333pt;}
._8{width:10.656000pt;}
._f{width:14.371200pt;}
._c{width:16.848000pt;}
._24{width:23.300800pt;}
._22{width:24.841600pt;}
._21{width:26.121600pt;}
._1f{width:27.524800pt;}
._23{width:29.444800pt;}
._20{width:31.244800pt;}
._1c{width:49.408000pt;}
._1b{width:50.692800pt;}
._1e{width:53.162667pt;}
._16{width:96.640000pt;}
._19{width:173.141333pt;}
._15{width:201.600000pt;}
._12{width:203.946667pt;}
._18{width:206.890667pt;}
._11{width:215.808000pt;}
._14{width:242.474667pt;}
._1a{width:270.933333pt;}
._17{width:394.240000pt;}
._10{width:429.824000pt;}
._13{width:552.960000pt;}
._d{width:838.604267pt;}
._b{width:1210.256533pt;}
.fs5{font-size:33.600000pt;}
.fs7{font-size:37.333333pt;}
.fs8{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y37{bottom:15.379333pt;}
.y3b{bottom:41.748933pt;}
.y3c{bottom:41.927067pt;}
.y8d{bottom:41.930400pt;}
.y8c{bottom:42.592000pt;}
.y32{bottom:52.510800pt;}
.y36{bottom:52.617467pt;}
.y31{bottom:68.510800pt;}
.y35{bottom:68.617467pt;}
.y8b{bottom:76.280400pt;}
.yfd{bottom:76.515467pt;}
.y113{bottom:76.547467pt;}
.y6e{bottom:82.023333pt;}
.yc0{bottom:82.040667pt;}
.ya1{bottom:82.044667pt;}
.y30{bottom:84.510800pt;}
.y34{bottom:84.617467pt;}
.y8a{bottom:90.947067pt;}
.yfc{bottom:91.182133pt;}
.y112{bottom:91.214133pt;}
.y6d{bottom:98.691333pt;}
.ya0{bottom:98.708667pt;}
.y2f{bottom:100.510800pt;}
.y33{bottom:100.617467pt;}
.yfb{bottom:105.848800pt;}
.y111{bottom:105.880800pt;}
.y6c{bottom:115.359333pt;}
.y9f{bottom:115.376667pt;}
.yfa{bottom:120.515467pt;}
.y110{bottom:120.547467pt;}
.y6b{bottom:132.027333pt;}
.y9e{bottom:132.044667pt;}
.yf9{bottom:135.182133pt;}
.y10f{bottom:135.214133pt;}
.y27{bottom:141.664933pt;}
.y6a{bottom:148.695333pt;}
.y9d{bottom:148.712667pt;}
.yf8{bottom:149.848800pt;}
.y10e{bottom:149.880800pt;}
.yf7{bottom:164.515467pt;}
.y10d{bottom:164.547467pt;}
.y69{bottom:165.363333pt;}
.ybf{bottom:165.371333pt;}
.yf6{bottom:179.182133pt;}
.y10c{bottom:179.214133pt;}
.y68{bottom:182.031333pt;}
.ybe{bottom:182.039333pt;}
.y9c{bottom:182.046000pt;}
.yf5{bottom:193.848800pt;}
.y10b{bottom:193.880800pt;}
.y2b{bottom:196.278267pt;}
.y4{bottom:196.279467pt;}
.y67{bottom:198.699333pt;}
.ybd{bottom:198.707333pt;}
.yf4{bottom:208.515467pt;}
.y10a{bottom:208.547467pt;}
.y2a{bottom:210.944933pt;}
.y3{bottom:210.946133pt;}
.y66{bottom:215.367333pt;}
.ybc{bottom:215.375333pt;}
.yf3{bottom:223.182133pt;}
.y109{bottom:223.214133pt;}
.y29{bottom:225.611600pt;}
.y2{bottom:225.612800pt;}
.y65{bottom:232.035333pt;}
.yf2{bottom:237.848800pt;}
.y108{bottom:237.880800pt;}
.y28{bottom:240.278267pt;}
.y1{bottom:240.279467pt;}
.y97{bottom:240.947067pt;}
.y64{bottom:248.703333pt;}
.ybb{bottom:248.711333pt;}
.yf1{bottom:252.515467pt;}
.y107{bottom:252.547467pt;}
.y63{bottom:265.371333pt;}
.yba{bottom:265.375333pt;}
.yf0{bottom:267.182133pt;}
.y106{bottom:267.214133pt;}
.yef{bottom:281.848800pt;}
.y105{bottom:281.880800pt;}
.y62{bottom:282.039333pt;}
.yb9{bottom:282.043333pt;}
.y2e{bottom:289.309733pt;}
.y89{bottom:290.947067pt;}
.yee{bottom:296.515467pt;}
.y104{bottom:296.547467pt;}
.y61{bottom:298.707333pt;}
.yb8{bottom:298.711333pt;}
.yed{bottom:311.182133pt;}
.y103{bottom:311.214133pt;}
.yb7{bottom:315.374000pt;}
.y60{bottom:315.375333pt;}
.yec{bottom:325.848800pt;}
.y102{bottom:325.880800pt;}
.yb6{bottom:332.042000pt;}
.y5f{bottom:332.043333pt;}
.yeb{bottom:340.515467pt;}
.y101{bottom:340.547467pt;}
.y88{bottom:342.947067pt;}
.yb5{bottom:348.710000pt;}
.y5e{bottom:348.711333pt;}
.yea{bottom:355.182133pt;}
.y100{bottom:355.214133pt;}
.y87{bottom:357.613733pt;}
.yb4{bottom:365.378000pt;}
.y5d{bottom:365.379333pt;}
.yff{bottom:369.880800pt;}
.yb3{bottom:382.042000pt;}
.y3a{bottom:383.304800pt;}
.ye9{bottom:384.515467pt;}
.yfe{bottom:384.547467pt;}
.y39{bottom:392.643467pt;}
.yb2{bottom:398.710000pt;}
.y5c{bottom:398.712667pt;}
.y38{bottom:409.971467pt;}
.yb1{bottom:415.378000pt;}
.yb0{bottom:432.030000pt;}
.y96{bottom:440.947067pt;}
.yda{bottom:447.880400pt;}
.yaf{bottom:448.698000pt;}
.y5b{bottom:448.707333pt;}
.yd9{bottom:455.219067pt;}
.yae{bottom:465.366000pt;}
.y5a{bottom:465.375333pt;}
.y1e{bottom:470.009733pt;}
.y95{bottom:476.285733pt;}
.yd8{bottom:480.989733pt;}
.yad{bottom:482.034000pt;}
.y59{bottom:482.043333pt;}
.y1d{bottom:483.341733pt;}
.yd7{bottom:488.328400pt;}
.y94{bottom:490.952400pt;}
.y1c{bottom:496.673733pt;}
.yac{bottom:498.702000pt;}
.y58{bottom:498.711333pt;}
.y1b{bottom:510.005733pt;}
.yd6{bottom:514.099067pt;}
.yab{bottom:515.370000pt;}
.y57{bottom:515.375333pt;}
.yd5{bottom:521.437733pt;}
.y1a{bottom:523.337733pt;}
.yaa{bottom:532.038000pt;}
.y56{bottom:532.043333pt;}
.y19{bottom:536.669733pt;}
.yd4{bottom:547.208400pt;}
.ya9{bottom:548.706000pt;}
.y55{bottom:548.711333pt;}
.y18{bottom:550.001733pt;}
.yd3{bottom:554.547067pt;}
.y86{bottom:557.613733pt;}
.y17{bottom:563.333733pt;}
.ya8{bottom:565.374000pt;}
.y54{bottom:565.375333pt;}
.y16{bottom:576.665733pt;}
.yd2{bottom:580.317733pt;}
.ya7{bottom:582.042000pt;}
.y53{bottom:582.043333pt;}
.y15{bottom:589.997733pt;}
.y85{bottom:598.659333pt;}
.ya6{bottom:598.710000pt;}
.y52{bottom:598.711333pt;}
.yd1{bottom:598.749733pt;}
.y14{bottom:603.329733pt;}
.y84{bottom:615.327333pt;}
.y51{bottom:615.378000pt;}
.y13{bottom:616.661733pt;}
.yd0{bottom:617.181733pt;}
.y12{bottom:629.993733pt;}
.y83{bottom:631.995333pt;}
.y50{bottom:632.042000pt;}
.ya5{bottom:632.044667pt;}
.ycf{bottom:635.613733pt;}
.y11{bottom:643.325733pt;}
.y82{bottom:648.663333pt;}
.y4f{bottom:648.710000pt;}
.ya4{bottom:648.711333pt;}
.y10{bottom:656.657733pt;}
.y81{bottom:665.331333pt;}
.ya3{bottom:665.376667pt;}
.y4e{bottom:665.378000pt;}
.yf{bottom:669.989733pt;}
.y80{bottom:681.999333pt;}
.yce{bottom:682.042000pt;}
.y4d{bottom:682.044667pt;}
.ye{bottom:683.321733pt;}
.ye8{bottom:684.261200pt;}
.y93{bottom:692.947067pt;}
.yd{bottom:696.653733pt;}
.y7f{bottom:698.667333pt;}
.y4c{bottom:698.707333pt;}
.ycd{bottom:698.710000pt;}
.ya2{bottom:698.712667pt;}
.ye7{bottom:698.927867pt;}
.y92{bottom:707.613733pt;}
.yc{bottom:709.985733pt;}
.y125{bottom:710.280400pt;}
.ye6{bottom:713.594533pt;}
.y7e{bottom:715.335333pt;}
.y4b{bottom:715.375333pt;}
.ycc{bottom:715.378000pt;}
.yb{bottom:723.317733pt;}
.y124{bottom:724.947067pt;}
.ye5{bottom:728.261200pt;}
.y7d{bottom:732.003333pt;}
.y4a{bottom:732.043333pt;}
.ycb{bottom:732.046000pt;}
.ya{bottom:736.649733pt;}
.y123{bottom:739.613733pt;}
.ye4{bottom:742.927867pt;}
.y9b{bottom:744.946933pt;}
.y91{bottom:744.947067pt;}
.y7c{bottom:748.671333pt;}
.y49{bottom:748.711333pt;}
.y9{bottom:749.981733pt;}
.y122{bottom:754.280400pt;}
.y9a{bottom:759.613600pt;}
.y90{bottom:759.613733pt;}
.y8{bottom:763.313733pt;}
.y7b{bottom:765.339333pt;}
.y48{bottom:765.376667pt;}
.yca{bottom:765.379333pt;}
.y121{bottom:768.947067pt;}
.y99{bottom:774.280267pt;}
.y8f{bottom:774.280400pt;}
.y7{bottom:776.645733pt;}
.y7a{bottom:782.007333pt;}
.y47{bottom:782.044667pt;}
.y120{bottom:783.613733pt;}
.y6{bottom:789.977733pt;}
.y11f{bottom:798.280400pt;}
.y79{bottom:798.675333pt;}
.ye3{bottom:798.699333pt;}
.y46{bottom:798.711333pt;}
.y5{bottom:803.309733pt;}
.y11e{bottom:812.947067pt;}
.y78{bottom:815.343333pt;}
.ye2{bottom:815.367333pt;}
.yc9{bottom:815.368667pt;}
.y45{bottom:815.370000pt;}
.y1f{bottom:820.701600pt;}
.y11d{bottom:827.613733pt;}
.y77{bottom:832.011333pt;}
.ye1{bottom:832.035333pt;}
.yc8{bottom:832.036667pt;}
.y44{bottom:832.038000pt;}
.y11c{bottom:842.280400pt;}
.y76{bottom:848.679333pt;}
.ye0{bottom:848.703333pt;}
.yc7{bottom:848.704667pt;}
.y43{bottom:848.706000pt;}
.y11b{bottom:856.947067pt;}
.y75{bottom:865.347333pt;}
.ydf{bottom:865.371333pt;}
.yc6{bottom:865.372667pt;}
.y42{bottom:865.374000pt;}
.y11a{bottom:871.613733pt;}
.y26{bottom:873.309600pt;}
.y74{bottom:882.015333pt;}
.yde{bottom:882.039333pt;}
.yc5{bottom:882.040667pt;}
.y41{bottom:882.042000pt;}
.y119{bottom:886.280400pt;}
.y73{bottom:898.683333pt;}
.ydd{bottom:898.707333pt;}
.yc4{bottom:898.708667pt;}
.y40{bottom:898.710000pt;}
.y118{bottom:900.947067pt;}
.y2d{bottom:908.178400pt;}
.y72{bottom:915.351333pt;}
.ydc{bottom:915.375333pt;}
.yc3{bottom:915.376667pt;}
.y3f{bottom:915.378000pt;}
.y117{bottom:915.613733pt;}
.y2c{bottom:927.378400pt;}
.y116{bottom:930.280400pt;}
.y71{bottom:932.019333pt;}
.ydb{bottom:932.043333pt;}
.yc2{bottom:932.044667pt;}
.y3e{bottom:932.046000pt;}
.y115{bottom:944.947067pt;}
.y70{bottom:948.687333pt;}
.yc1{bottom:948.711333pt;}
.y114{bottom:959.613733pt;}
.y22{bottom:960.428267pt;}
.y25{bottom:962.610667pt;}
.y6f{bottom:965.355333pt;}
.y3d{bottom:965.379333pt;}
.y98{bottom:974.280267pt;}
.y8e{bottom:974.280400pt;}
.y24{bottom:975.944000pt;}
.y21{bottom:989.228267pt;}
.y23{bottom:989.277333pt;}
.y20{bottom:1018.028267pt;}
.hf{height:24.478125pt;}
.he{height:30.506667pt;}
.h2{height:31.062500pt;}
.h3{height:31.083333pt;}
.hd{height:31.658667pt;}
.hc{height:32.298667pt;}
.h5{height:34.945312pt;}
.h4{height:34.968750pt;}
.h16{height:34.984750pt;}
.h10{height:35.009283pt;}
.h18{height:37.615150pt;}
.h8{height:39.573333pt;}
.hb{height:40.461592pt;}
.h9{height:40.462125pt;}
.h13{height:40.467458pt;}
.h14{height:40.472792pt;}
.h17{height:40.478125pt;}
.h15{height:40.483458pt;}
.h1a{height:40.494125pt;}
.h12{height:40.499458pt;}
.h19{height:40.526125pt;}
.h6{height:41.994792pt;}
.h1c{height:46.170667pt;}
.ha{height:48.448000pt;}
.h11{height:50.368000pt;}
.h1b{height:60.395333pt;}
.h7{height:72.672000pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:812.598667pt;}
.w1{width:812.666667pt;}
.x0{left:0.000000pt;}
.x2{left:75.590667pt;}
.x12{left:78.547467pt;}
.x13{left:79.489067pt;}
.x1a{left:85.203467pt;}
.x18{left:91.590533pt;}
.x14{left:95.489067pt;}
.x1d{left:99.590533pt;}
.x1b{left:103.370000pt;}
.x10{left:123.857067pt;}
.x6{left:240.587467pt;}
.x8{left:253.611467pt;}
.xe{left:259.344533pt;}
.xa{left:261.323467pt;}
.xd{left:286.480533pt;}
.x4{left:292.412400pt;}
.x9{left:304.022133pt;}
.x7{left:317.046133pt;}
.x3{left:318.548400pt;}
.xf{left:323.259200pt;}
.xb{left:334.103200pt;}
.x5{left:364.148400pt;}
.xc{left:370.055200pt;}
.x17{left:401.177867pt;}
.x11{left:404.970933pt;}
.x1{left:417.573467pt;}
.x16{left:421.421067pt;}
.x19{left:433.630267pt;}
.x15{left:437.417067pt;}
.x1e{left:441.627867pt;}
.x1c{left:445.418000pt;}
}




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