
    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_9519302fe0c908f1bf611d2d.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_f8f8ca25e5c7374720d846cf.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_bfc66348b6ffa43190947e8b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.106934;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_e4202a4df9203fe646ae74b6.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_66bb782ff358c574128e5d15.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_50c719d8150abde5bf8cbb33.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.700000;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_0aec3138c42c53159d9ae8a9.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_6311c15cd0d12515107cd617.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.914551;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_fd87757a9ea1190c86faf894.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_1b98e5db45d0877e8638110f.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_20896fce4eee9d26d3b61d17.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_b94c506e75bbab2359ed365a.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_20896fce4eee9d26d3b61d17.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_44bb7d39012a6fa113418d9b.woff2')format("woff");}.ffe{font-family:ffe;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;}
.v5{vertical-align:15.970800px;}
.v1{vertical-align:17.982000px;}
.ls1b{letter-spacing:-4.752000px;}
.ls28{letter-spacing:-4.128000px;}
.ls20{letter-spacing:-4.032000px;}
.ls1c{letter-spacing:-3.072000px;}
.ls2b{letter-spacing:-2.016000px;}
.ls26{letter-spacing:-1.920000px;}
.ls18{letter-spacing:-1.872000px;}
.ls24{letter-spacing:-1.632000px;}
.ls13{letter-spacing:-1.584000px;}
.ls27{letter-spacing:-1.344000px;}
.ls1f{letter-spacing:-1.152000px;}
.ls2d{letter-spacing:-1.104000px;}
.ls1d{letter-spacing:-0.960000px;}
.ls1a{letter-spacing:-0.864000px;}
.ls2e{letter-spacing:-0.768000px;}
.ls9{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.480000px;}
.ls11{letter-spacing:-0.450000px;}
.ls29{letter-spacing:-0.432000px;}
.ls1e{letter-spacing:-0.384000px;}
.ls10{letter-spacing:-0.378000px;}
.ls6{letter-spacing:-0.270000px;}
.lsc{letter-spacing:-0.240000px;}
.ls8{letter-spacing:-0.189000px;}
.ls12{letter-spacing:-0.132000px;}
.ls5{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.004800px;}
.ls1{letter-spacing:0.005400px;}
.ls2{letter-spacing:0.006000px;}
.ls15{letter-spacing:0.096000px;}
.ls21{letter-spacing:0.144000px;}
.ls2a{letter-spacing:0.192000px;}
.ls17{letter-spacing:0.240000px;}
.ls19{letter-spacing:0.384000px;}
.ls4{letter-spacing:0.480000px;}
.ls16{letter-spacing:0.528000px;}
.ls14{letter-spacing:0.576000px;}
.ls23{letter-spacing:0.624000px;}
.ls22{letter-spacing:0.672000px;}
.ls2c{letter-spacing:1.152000px;}
.ls25{letter-spacing:2.640000px;}
.ls3{letter-spacing:9.696000px;}
.ls0{letter-spacing:11.988000px;}
.lsd{letter-spacing:53.798400px;}
.lse{letter-spacing:80.448000px;}
.lsf{letter-spacing:144.384000px;}
.ls7{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;}
}
.wsac{word-spacing:-18.546000px;}
.wsb3{word-spacing:-15.984000px;}
.ws2{word-spacing:-15.012000px;}
.ws2a{word-spacing:-14.742000px;}
.ws89{word-spacing:-14.472000px;}
.wsaf{word-spacing:-13.920000px;}
.wsae{word-spacing:-13.872000px;}
.wsad{word-spacing:-13.824000px;}
.wsb4{word-spacing:-13.536000px;}
.wsb2{word-spacing:-13.488000px;}
.ws58{word-spacing:-13.344000px;}
.wsb5{word-spacing:-12.576000px;}
.wsb0{word-spacing:-12.480000px;}
.wsb1{word-spacing:-12.192000px;}
.ws1{word-spacing:-10.508400px;}
.ws2b{word-spacing:-10.319400px;}
.ws8a{word-spacing:-10.130400px;}
.ws8d{word-spacing:-9.340800px;}
.ws24{word-spacing:-2.970000px;}
.ws92{word-spacing:-2.916000px;}
.ws9b{word-spacing:-2.862000px;}
.ws3e{word-spacing:-2.538000px;}
.ws64{word-spacing:-2.496000px;}
.wsce{word-spacing:-2.256000px;}
.ws77{word-spacing:-2.214000px;}
.ws85{word-spacing:-2.106000px;}
.ws93{word-spacing:-2.052000px;}
.wsa9{word-spacing:-1.944000px;}
.ws2f{word-spacing:-1.890000px;}
.ws9a{word-spacing:-1.836000px;}
.wsf{word-spacing:-1.782000px;}
.wsb8{word-spacing:-1.674000px;}
.ws48{word-spacing:-1.620000px;}
.ws7c{word-spacing:-1.458000px;}
.wscc{word-spacing:-1.440000px;}
.wsbe{word-spacing:-1.248000px;}
.wsaa{word-spacing:-1.242000px;}
.wsd9{word-spacing:-1.152000px;}
.ws1a{word-spacing:-1.080000px;}
.ws50{word-spacing:-1.026000px;}
.ws2e{word-spacing:-0.864000px;}
.ws36{word-spacing:-0.810000px;}
.ws40{word-spacing:-0.756000px;}
.wsd6{word-spacing:-0.720000px;}
.ws15{word-spacing:-0.702000px;}
.wscf{word-spacing:-0.624000px;}
.wsc0{word-spacing:-0.576000px;}
.wsd2{word-spacing:-0.528000px;}
.ws26{word-spacing:-0.480000px;}
.ws13{word-spacing:-0.432000px;}
.wsc3{word-spacing:-0.384000px;}
.ws91{word-spacing:-0.378000px;}
.wsc1{word-spacing:-0.240000px;}
.ws5a{word-spacing:-0.192000px;}
.wsab{word-spacing:-0.144000px;}
.ws68{word-spacing:-0.096000px;}
.ws4{word-spacing:0.000000px;}
.ws6{word-spacing:0.054000px;}
.ws67{word-spacing:0.144000px;}
.ws34{word-spacing:0.189000px;}
.ws62{word-spacing:0.240000px;}
.ws29{word-spacing:0.270000px;}
.wse{word-spacing:0.432000px;}
.wsb9{word-spacing:0.450000px;}
.ws59{word-spacing:0.480000px;}
.wsd{word-spacing:0.540000px;}
.ws69{word-spacing:0.576000px;}
.ws97{word-spacing:0.648000px;}
.ws20{word-spacing:0.702000px;}
.ws3b{word-spacing:0.810000px;}
.wsca{word-spacing:0.864000px;}
.wsc7{word-spacing:0.960000px;}
.ws9{word-spacing:1.026000px;}
.wsb{word-spacing:1.080000px;}
.wsdc{word-spacing:1.104000px;}
.wsda{word-spacing:1.152000px;}
.ws2c{word-spacing:1.188000px;}
.wsd4{word-spacing:1.344000px;}
.ws84{word-spacing:1.350000px;}
.ws94{word-spacing:1.404000px;}
.ws66{word-spacing:1.440000px;}
.ws3a{word-spacing:1.458000px;}
.ws28{word-spacing:1.488000px;}
.ws53{word-spacing:1.512000px;}
.ws76{word-spacing:1.566000px;}
.wsbb{word-spacing:1.584000px;}
.wsd0{word-spacing:1.632000px;}
.ws5{word-spacing:1.782000px;}
.wsa2{word-spacing:1.836000px;}
.wsc2{word-spacing:1.872000px;}
.ws1b{word-spacing:1.890000px;}
.wsd3{word-spacing:1.920000px;}
.ws12{word-spacing:1.944000px;}
.ws88{word-spacing:1.998000px;}
.wsd8{word-spacing:2.016000px;}
.ws54{word-spacing:2.052000px;}
.wscd{word-spacing:2.064000px;}
.wsa6{word-spacing:2.106000px;}
.ws32{word-spacing:2.160000px;}
.ws52{word-spacing:2.214000px;}
.wsc8{word-spacing:2.256000px;}
.ws90{word-spacing:2.430000px;}
.ws51{word-spacing:2.538000px;}
.ws33{word-spacing:2.592000px;}
.ws27{word-spacing:2.688000px;}
.ws7b{word-spacing:2.700000px;}
.ws65{word-spacing:2.736000px;}
.ws1f{word-spacing:2.754000px;}
.wsd7{word-spacing:2.784000px;}
.wsc6{word-spacing:2.976000px;}
.wsc5{word-spacing:3.072000px;}
.ws80{word-spacing:3.078000px;}
.wsa4{word-spacing:3.132000px;}
.ws30{word-spacing:3.240000px;}
.wsdb{word-spacing:3.312000px;}
.ws7d{word-spacing:3.348000px;}
.ws63{word-spacing:3.456000px;}
.ws11{word-spacing:3.564000px;}
.ws14{word-spacing:3.888000px;}
.wscb{word-spacing:4.032000px;}
.ws95{word-spacing:4.104000px;}
.wsd5{word-spacing:4.128000px;}
.ws21{word-spacing:4.158000px;}
.ws1d{word-spacing:4.266000px;}
.wsa{word-spacing:4.374000px;}
.ws9f{word-spacing:4.428000px;}
.ws3f{word-spacing:4.482000px;}
.ws4b{word-spacing:4.536000px;}
.ws86{word-spacing:4.590000px;}
.ws4a{word-spacing:4.752000px;}
.ws3c{word-spacing:4.860000px;}
.ws7f{word-spacing:4.914000px;}
.ws45{word-spacing:5.076000px;}
.ws4e{word-spacing:5.130000px;}
.ws1c{word-spacing:5.184000px;}
.ws44{word-spacing:5.238000px;}
.wsbf{word-spacing:5.280000px;}
.ws75{word-spacing:5.292000px;}
.ws8{word-spacing:5.508000px;}
.ws3d{word-spacing:5.616000px;}
.ws98{word-spacing:5.670000px;}
.wsba{word-spacing:5.712000px;}
.ws42{word-spacing:5.994000px;}
.ws55{word-spacing:6.048000px;}
.wsa1{word-spacing:6.102000px;}
.ws23{word-spacing:6.156000px;}
.wsc9{word-spacing:6.192000px;}
.ws18{word-spacing:6.264000px;}
.ws2d{word-spacing:6.426000px;}
.wsc4{word-spacing:6.480000px;}
.ws7{word-spacing:6.588000px;}
.ws41{word-spacing:6.642000px;}
.wsd1{word-spacing:6.960000px;}
.ws17{word-spacing:7.020000px;}
.ws96{word-spacing:7.074000px;}
.ws9c{word-spacing:7.290000px;}
.ws79{word-spacing:7.344000px;}
.wsa3{word-spacing:7.398000px;}
.wsa7{word-spacing:7.452000px;}
.ws72{word-spacing:7.560000px;}
.ws99{word-spacing:7.668000px;}
.wsb6{word-spacing:7.722000px;}
.ws73{word-spacing:7.938000px;}
.wsa8{word-spacing:7.992000px;}
.ws7e{word-spacing:8.154000px;}
.ws37{word-spacing:8.208000px;}
.ws87{word-spacing:8.316000px;}
.wsc{word-spacing:8.532000px;}
.ws1e{word-spacing:8.586000px;}
.ws4c{word-spacing:8.640000px;}
.ws4f{word-spacing:8.694000px;}
.ws4d{word-spacing:9.018000px;}
.ws43{word-spacing:9.072000px;}
.ws16{word-spacing:9.180000px;}
.ws25{word-spacing:9.216000px;}
.ws47{word-spacing:9.504000px;}
.ws7a{word-spacing:9.720000px;}
.ws49{word-spacing:9.774000px;}
.ws19{word-spacing:9.990000px;}
.ws83{word-spacing:10.044000px;}
.ws31{word-spacing:10.098000px;}
.ws38{word-spacing:10.206000px;}
.ws78{word-spacing:10.368000px;}
.wsa5{word-spacing:10.746000px;}
.ws74{word-spacing:10.908000px;}
.ws39{word-spacing:10.962000px;}
.ws46{word-spacing:11.556000px;}
.ws22{word-spacing:11.718000px;}
.wsb7{word-spacing:12.042000px;}
.ws82{word-spacing:12.474000px;}
.wsbc{word-spacing:13.248000px;}
.ws9d{word-spacing:13.338000px;}
.ws70{word-spacing:14.094000px;}
.ws10{word-spacing:15.066000px;}
.ws35{word-spacing:16.470000px;}
.ws9e{word-spacing:17.550000px;}
.wsa0{word-spacing:17.604000px;}
.ws8f{word-spacing:18.090000px;}
.ws81{word-spacing:18.522000px;}
.wsbd{word-spacing:19.584000px;}
.ws71{word-spacing:20.412000px;}
.ws8b{word-spacing:64.992000px;}
.ws8c{word-spacing:96.720000px;}
.ws8e{word-spacing:99.360000px;}
.ws3{word-spacing:105.456000px;}
.ws5f{word-spacing:255.408000px;}
.ws5e{word-spacing:263.424000px;}
.ws6e{word-spacing:286.752000px;}
.ws6a{word-spacing:316.080000px;}
.ws61{word-spacing:330.048000px;}
.ws60{word-spacing:340.752000px;}
.ws6d{word-spacing:351.840000px;}
.ws6c{word-spacing:356.112000px;}
.ws6f{word-spacing:382.848000px;}
.ws5c{word-spacing:383.376000px;}
.ws5d{word-spacing:386.064000px;}
.ws6b{word-spacing:448.368000px;}
.ws56{word-spacing:577.968000px;}
.ws57{word-spacing:606.912000px;}
.ws5b{word-spacing:634.176000px;}
.ws0{word-spacing:1242.054000px;}
._a{margin-left:-29.343600px;}
._b{margin-left:-19.915200px;}
._e{margin-left:-5.918400px;}
._8{margin-left:-4.347000px;}
._1{margin-left:-2.883600px;}
._9{margin-left:-1.123200px;}
._3{width:1.393200px;}
._5{width:2.678400px;}
._10{width:3.715200px;}
._7{width:4.725000px;}
._2{width:6.145200px;}
._6{width:8.100000px;}
._4{width:9.590400px;}
._0{width:10.908000px;}
._f{width:12.355200px;}
._2c{width:13.564800px;}
._45{width:14.782800px;}
._11{width:16.313400px;}
._47{width:25.344000px;}
._3d{width:27.129600px;}
._49{width:29.134800px;}
._4b{width:30.909600px;}
._4a{width:34.923600px;}
._4c{width:36.073800px;}
._19{width:49.344000px;}
._46{width:54.624000px;}
._44{width:56.398800px;}
._43{width:59.163600px;}
._48{width:60.412800px;}
._25{width:90.672000px;}
._24{width:145.920000px;}
._1a{width:152.352000px;}
._3f{width:158.208000px;}
._1e{width:185.424000px;}
._1d{width:198.720000px;}
._c{width:200.988000px;}
._32{width:206.688000px;}
._33{width:233.376000px;}
._1c{width:236.112000px;}
._23{width:239.328000px;}
._29{width:268.752000px;}
._2f{width:282.816000px;}
._1b{width:297.504000px;}
._3e{width:311.712000px;}
._2a{width:320.256000px;}
._30{width:336.288000px;}
._40{width:340.656000px;}
._2e{width:361.488000px;}
._1f{width:364.176000px;}
._34{width:369.594000px;}
._28{width:378.960000px;}
._37{width:381.408000px;}
._36{width:396.192000px;}
._3a{width:408.288000px;}
._39{width:409.344000px;}
._31{width:421.680000px;}
._3c{width:422.832000px;}
._15{width:428.064000px;}
._42{width:432.611400px;}
._17{width:480.480000px;}
._3b{width:497.424000px;}
._2b{width:507.024000px;}
._16{width:519.168000px;}
._35{width:550.752000px;}
._38{width:556.080000px;}
._18{width:559.200000px;}
._22{width:572.352000px;}
._41{width:610.608000px;}
._14{width:624.720000px;}
._2d{width:696.768000px;}
._26{width:763.056000px;}
._13{width:771.168000px;}
._27{width:789.696000px;}
._21{width:845.712000px;}
._20{width:883.152000px;}
._12{width:943.429800px;}
._d{width:1361.538600px;}
.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);}
.fs8{font-size:33.600000px;}
.fs5{font-size:37.800000px;}
.fs7{font-size:42.000000px;}
.fs9{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;}
.y41{bottom:17.301750px;}
.y3c{bottom:41.074650px;}
.y47{bottom:46.967550px;}
.y48{bottom:47.167950px;}
.yaa{bottom:47.171700px;}
.ya9{bottom:47.916000px;}
.y3b{bottom:59.074650px;}
.y40{bottom:59.194650px;}
.y3a{bottom:77.074650px;}
.y3f{bottom:77.194650px;}
.y138{bottom:87.440100px;}
.y19b{bottom:90.397800px;}
.ye5{bottom:90.702150px;}
.ya8{bottom:92.289750px;}
.y7a{bottom:92.292750px;}
.y39{bottom:95.074650px;}
.y3e{bottom:95.194650px;}
.y137{bottom:103.940100px;}
.ye4{bottom:107.202150px;}
.ya7{bottom:111.041250px;}
.y79{bottom:111.044250px;}
.y19a{bottom:111.133800px;}
.y198{bottom:111.134100px;}
.y111{bottom:111.315450px;}
.y38{bottom:113.074650px;}
.y3d{bottom:113.194650px;}
.y136{bottom:120.440100px;}
.ye3{bottom:123.702150px;}
.y199{bottom:127.633800px;}
.y197{bottom:127.634100px;}
.y110{bottom:127.815450px;}
.ya6{bottom:129.792750px;}
.y78{bottom:129.795750px;}
.y135{bottom:136.940100px;}
.ye2{bottom:140.205450px;}
.y10f{bottom:144.315450px;}
.y196{bottom:148.370100px;}
.ya5{bottom:148.544250px;}
.y77{bottom:148.547250px;}
.y134{bottom:153.440100px;}
.y1f5{bottom:153.840300px;}
.ye1{bottom:156.705450px;}
.y2d{bottom:159.373050px;}
.y10e{bottom:160.815450px;}
.y195{bottom:164.870100px;}
.ya4{bottom:167.295750px;}
.y76{bottom:167.298750px;}
.y1f4{bottom:170.340300px;}
.y1c9{bottom:170.829900px;}
.ye0{bottom:173.205450px;}
.y133{bottom:174.176100px;}
.y10d{bottom:177.315450px;}
.y194{bottom:181.370100px;}
.ya3{bottom:186.047250px;}
.y75{bottom:186.050250px;}
.y1f3{bottom:186.840300px;}
.y1c8{bottom:187.329900px;}
.y33{bottom:187.813050px;}
.y6{bottom:187.814400px;}
.y10c{bottom:193.815450px;}
.ydf{bottom:193.941450px;}
.y132{bottom:194.912100px;}
.y193{bottom:197.870400px;}
.y1f2{bottom:203.340300px;}
.y1c7{bottom:203.829900px;}
.y32{bottom:204.313050px;}
.y5{bottom:204.314400px;}
.ya2{bottom:204.798750px;}
.y74{bottom:204.801750px;}
.y10b{bottom:210.315450px;}
.yde{bottom:210.441450px;}
.y131{bottom:215.648100px;}
.y192{bottom:218.606400px;}
.y1f1{bottom:219.840300px;}
.y1c6{bottom:220.329900px;}
.y31{bottom:220.813050px;}
.y4{bottom:220.814400px;}
.ya1{bottom:223.550250px;}
.y10a{bottom:226.815450px;}
.ydd{bottom:226.941450px;}
.y191{bottom:235.106400px;}
.y1f0{bottom:236.340300px;}
.y130{bottom:236.384100px;}
.y1c5{bottom:236.829900px;}
.y30{bottom:237.313050px;}
.y3{bottom:237.314400px;}
.y73{bottom:242.273250px;}
.ya0{bottom:242.301750px;}
.y109{bottom:243.315450px;}
.ydc{bottom:243.441450px;}
.y190{bottom:251.606400px;}
.y1ef{bottom:252.840300px;}
.y1c4{bottom:253.329900px;}
.y2f{bottom:253.813050px;}
.y2{bottom:253.814400px;}
.y12f{bottom:257.121450px;}
.y108{bottom:259.815450px;}
.ydb{bottom:259.941450px;}
.y72{bottom:261.024750px;}
.y18f{bottom:268.106700px;}
.y1ee{bottom:269.340300px;}
.y1c3{bottom:269.829900px;}
.y2e{bottom:270.313050px;}
.y1{bottom:270.314400px;}
.y107{bottom:276.315450px;}
.yda{bottom:276.441450px;}
.y12e{bottom:277.857450px;}
.y71{bottom:279.776250px;}
.y9f{bottom:279.801750px;}
.y1ed{bottom:285.840300px;}
.y1c2{bottom:286.329900px;}
.y18e{bottom:288.842700px;}
.y106{bottom:292.815450px;}
.yd9{bottom:292.941450px;}
.y70{bottom:298.527750px;}
.y12d{bottom:298.593450px;}
.y1ec{bottom:302.340300px;}
.y1c1{bottom:302.829900px;}
.y18d{bottom:305.342700px;}
.y37{bottom:309.273450px;}
.yd8{bottom:309.441450px;}
.y6f{bottom:317.279250px;}
.y1eb{bottom:318.840300px;}
.y12c{bottom:319.329450px;}
.y1c0{bottom:319.329900px;}
.y18c{bottom:321.842700px;}
.y36{bottom:325.473450px;}
.yd7{bottom:325.941450px;}
.y1ea{bottom:335.340300px;}
.y1bf{bottom:335.829900px;}
.y6e{bottom:336.030750px;}
.y9e{bottom:336.036750px;}
.y18b{bottom:338.342700px;}
.y12b{bottom:340.065450px;}
.yd6{bottom:346.677450px;}
.y1e9{bottom:351.840300px;}
.y1be{bottom:352.329900px;}
.y6d{bottom:354.782250px;}
.y9d{bottom:354.788250px;}
.y18a{bottom:354.843450px;}
.yd5{bottom:363.177450px;}
.y1e8{bottom:368.340300px;}
.y1bd{bottom:368.829900px;}
.y6c{bottom:373.533750px;}
.y9c{bottom:373.539750px;}
.y189{bottom:375.579450px;}
.yd4{bottom:379.677450px;}
.y105{bottom:383.565450px;}
.y1e7{bottom:384.840300px;}
.y1bc{bottom:385.329900px;}
.y12a{bottom:392.258250px;}
.y6b{bottom:392.285250px;}
.y9b{bottom:392.291250px;}
.y153{bottom:392.295750px;}
.yd3{bottom:396.177450px;}
.y188{bottom:396.315450px;}
.y46{bottom:401.217900px;}
.y1e6{bottom:401.340300px;}
.y1bb{bottom:401.829900px;}
.y129{bottom:411.009750px;}
.y6a{bottom:411.036750px;}
.y9a{bottom:411.042750px;}
.y152{bottom:411.047250px;}
.yd2{bottom:412.677450px;}
.y45{bottom:416.217900px;}
.y1e5{bottom:417.840300px;}
.y1ba{bottom:418.329900px;}
.y44{bottom:426.723900px;}
.yd1{bottom:429.177450px;}
.y128{bottom:429.761250px;}
.y69{bottom:429.788250px;}
.y151{bottom:429.798750px;}
.y1e4{bottom:434.340300px;}
.y104{bottom:434.625450px;}
.y1b9{bottom:434.829900px;}
.yd0{bottom:445.677450px;}
.y43{bottom:446.217900px;}
.y127{bottom:448.512750px;}
.y68{bottom:448.539750px;}
.y16c{bottom:448.544250px;}
.y99{bottom:448.545750px;}
.y150{bottom:448.550250px;}
.y1e3{bottom:450.840300px;}
.y103{bottom:451.125450px;}
.y1b8{bottom:451.329900px;}
.y42{bottom:461.217900px;}
.ycf{bottom:466.413450px;}
.y126{bottom:467.264250px;}
.y67{bottom:467.291250px;}
.y16b{bottom:467.295750px;}
.y98{bottom:467.297250px;}
.y14f{bottom:467.300250px;}
.y187{bottom:467.301750px;}
.y1e2{bottom:467.340300px;}
.y102{bottom:467.625450px;}
.y1b7{bottom:467.829900px;}
.yce{bottom:482.913450px;}
.y1e1{bottom:483.840300px;}
.y101{bottom:484.125450px;}
.y1b6{bottom:484.329900px;}
.y66{bottom:486.042750px;}
.y14e{bottom:486.047250px;}
.y97{bottom:486.048750px;}
.y22{bottom:498.763950px;}
.ycd{bottom:499.413450px;}
.y1e0{bottom:500.340300px;}
.y100{bottom:500.625450px;}
.y1b5{bottom:500.829900px;}
.y125{bottom:504.767250px;}
.y65{bottom:504.794250px;}
.y14d{bottom:504.798750px;}
.y96{bottom:504.800250px;}
.y186{bottom:504.801750px;}
.y21{bottom:513.762450px;}
.ycc{bottom:515.913450px;}
.y1df{bottom:516.840300px;}
.yff{bottom:517.125450px;}
.y1b4{bottom:517.329900px;}
.y124{bottom:523.518750px;}
.y95{bottom:523.542750px;}
.y64{bottom:523.545750px;}
.y14c{bottom:523.550250px;}
.y20{bottom:528.760950px;}
.ycb{bottom:532.413450px;}
.y1de{bottom:533.340300px;}
.y1b3{bottom:533.829900px;}
.yfe{bottom:537.861450px;}
.y123{bottom:542.270250px;}
.y16a{bottom:542.289750px;}
.y94{bottom:542.294250px;}
.y63{bottom:542.297250px;}
.y14b{bottom:542.301750px;}
.y1f{bottom:543.759450px;}
.yca{bottom:548.913450px;}
.y1dd{bottom:549.840300px;}
.y1b2{bottom:550.329900px;}
.yfd{bottom:558.597450px;}
.y1e{bottom:558.757950px;}
.y185{bottom:561.011250px;}
.y122{bottom:561.021750px;}
.y169{bottom:561.041250px;}
.y93{bottom:561.045750px;}
.y62{bottom:561.048750px;}
.y1dc{bottom:566.340300px;}
.y1b1{bottom:566.829900px;}
.yc9{bottom:569.649450px;}
.y1d{bottom:573.756450px;}
.yfc{bottom:579.333450px;}
.y184{bottom:579.762750px;}
.y121{bottom:579.773250px;}
.y168{bottom:579.792750px;}
.y14a{bottom:579.795750px;}
.y92{bottom:579.797250px;}
.y61{bottom:579.800250px;}
.y1db{bottom:582.840300px;}
.y1b0{bottom:583.329900px;}
.yc8{bottom:586.149450px;}
.y1c{bottom:588.754950px;}
.y183{bottom:598.514250px;}
.y167{bottom:598.544250px;}
.y149{bottom:598.547250px;}
.y60{bottom:598.548750px;}
.y1da{bottom:599.340300px;}
.y1af{bottom:599.829900px;}
.yc7{bottom:602.649450px;}
.y1b{bottom:603.753450px;}
.yfb{bottom:611.061450px;}
.y1d9{bottom:615.840300px;}
.y1ae{bottom:616.329900px;}
.y182{bottom:617.265750px;}
.y120{bottom:617.276250px;}
.y166{bottom:617.295750px;}
.y148{bottom:617.298750px;}
.y5f{bottom:617.300250px;}
.y1a{bottom:618.751950px;}
.yc6{bottom:619.149450px;}
.yfa{bottom:627.561450px;}
.y1d8{bottom:632.340300px;}
.y1ad{bottom:632.829900px;}
.y19{bottom:633.750450px;}
.yc5{bottom:635.649450px;}
.y181{bottom:636.017250px;}
.y11f{bottom:636.027750px;}
.y91{bottom:636.044250px;}
.y165{bottom:636.047250px;}
.y147{bottom:636.050250px;}
.y5e{bottom:636.051750px;}
.yf9{bottom:648.297450px;}
.y18{bottom:648.748950px;}
.y1d7{bottom:648.840300px;}
.y1ac{bottom:649.329900px;}
.yc4{bottom:652.149450px;}
.y180{bottom:654.768750px;}
.y11e{bottom:654.779250px;}
.y90{bottom:654.795750px;}
.y164{bottom:654.798750px;}
.y17{bottom:663.747450px;}
.yf8{bottom:664.797450px;}
.y1d6{bottom:665.340300px;}
.y1ab{bottom:665.829900px;}
.yc3{bottom:668.649450px;}
.y17f{bottom:673.520250px;}
.y11d{bottom:673.530750px;}
.y5d{bottom:673.545750px;}
.y8f{bottom:673.547250px;}
.y163{bottom:673.550250px;}
.y16{bottom:678.745950px;}
.y1d5{bottom:681.840300px;}
.y1aa{bottom:682.329900px;}
.yc2{bottom:685.149450px;}
.yf7{bottom:685.533450px;}
.y17e{bottom:692.271750px;}
.y11c{bottom:692.282250px;}
.y5c{bottom:692.297250px;}
.y8e{bottom:692.298750px;}
.y162{bottom:692.301750px;}
.y15{bottom:693.744450px;}
.y1d4{bottom:698.340300px;}
.y1a9{bottom:698.829900px;}
.yc1{bottom:701.649450px;}
.yf6{bottom:706.269450px;}
.y14{bottom:708.742950px;}
.y17d{bottom:711.023250px;}
.y11b{bottom:711.033750px;}
.y5b{bottom:711.048750px;}
.y146{bottom:711.050250px;}
.y1d3{bottom:714.840300px;}
.y1a8{bottom:715.329900px;}
.yc0{bottom:718.149450px;}
.y13{bottom:723.741450px;}
.yf5{bottom:727.005450px;}
.y17c{bottom:729.774750px;}
.y11a{bottom:729.785250px;}
.y161{bottom:729.791250px;}
.y8d{bottom:729.794250px;}
.y5a{bottom:729.800250px;}
.y145{bottom:729.801750px;}
.y1d2{bottom:731.340300px;}
.y1a7{bottom:731.829900px;}
.ybf{bottom:734.649450px;}
.y12{bottom:738.739950px;}
.yf4{bottom:747.741450px;}
.y1d1{bottom:747.840300px;}
.y1a6{bottom:748.329900px;}
.y17b{bottom:748.526250px;}
.y119{bottom:748.536750px;}
.y160{bottom:748.542750px;}
.y8c{bottom:748.545750px;}
.y59{bottom:748.551750px;}
.ybe{bottom:751.149450px;}
.y11{bottom:753.738450px;}
.yf3{bottom:764.241450px;}
.y1d0{bottom:764.340300px;}
.y1a5{bottom:764.829900px;}
.y118{bottom:767.288250px;}
.y144{bottom:767.291250px;}
.y15f{bottom:767.294250px;}
.y8b{bottom:767.297250px;}
.ybd{bottom:767.649450px;}
.y10{bottom:768.736950px;}
.y1cf{bottom:780.840300px;}
.y1a4{bottom:781.329900px;}
.yf{bottom:783.735450px;}
.ybc{bottom:784.149450px;}
.yf2{bottom:784.977450px;}
.y17a{bottom:786.029250px;}
.y117{bottom:786.039750px;}
.y143{bottom:786.042750px;}
.y58{bottom:786.044250px;}
.y15e{bottom:786.045750px;}
.y8a{bottom:786.048750px;}
.y1ce{bottom:797.340300px;}
.y1a3{bottom:797.829900px;}
.ye{bottom:798.733950px;}
.ybb{bottom:800.649450px;}
.y179{bottom:804.780750px;}
.y116{bottom:804.791250px;}
.y142{bottom:804.794250px;}
.y57{bottom:804.795750px;}
.y15d{bottom:804.797250px;}
.y89{bottom:804.800250px;}
.yf1{bottom:805.713450px;}
.yd{bottom:813.732450px;}
.y1cd{bottom:813.840300px;}
.y1a2{bottom:814.329900px;}
.yba{bottom:821.385450px;}
.yf0{bottom:822.213450px;}
.y178{bottom:823.532250px;}
.y115{bottom:823.542750px;}
.y141{bottom:823.545750px;}
.y56{bottom:823.547250px;}
.y15c{bottom:823.548750px;}
.y88{bottom:823.551750px;}
.yc{bottom:828.730950px;}
.y1cc{bottom:830.340300px;}
.y1a1{bottom:830.829900px;}
.yb9{bottom:837.885450px;}
.yef{bottom:838.713450px;}
.y177{bottom:842.283750px;}
.y114{bottom:842.294250px;}
.y140{bottom:842.297250px;}
.y55{bottom:842.298750px;}
.y15b{bottom:842.300250px;}
.yb{bottom:843.729450px;}
.y1cb{bottom:846.840300px;}
.yb8{bottom:854.385450px;}
.ya{bottom:858.727950px;}
.yee{bottom:859.449450px;}
.y15a{bottom:861.033750px;}
.y176{bottom:861.035250px;}
.y87{bottom:861.045750px;}
.y13f{bottom:861.048750px;}
.y54{bottom:861.050250px;}
.y1ca{bottom:863.340300px;}
.y1a0{bottom:863.829900px;}
.yb7{bottom:870.885450px;}
.y9{bottom:873.726450px;}
.y159{bottom:879.785250px;}
.y175{bottom:879.786750px;}
.y53{bottom:879.788250px;}
.y86{bottom:879.797250px;}
.y13e{bottom:879.800250px;}
.yed{bottom:880.185450px;}
.yb6{bottom:887.385450px;}
.y8{bottom:888.724950px;}
.y158{bottom:898.536750px;}
.y174{bottom:898.538250px;}
.y52{bottom:898.539750px;}
.y85{bottom:898.548750px;}
.y13d{bottom:898.551750px;}
.y7{bottom:903.723450px;}
.yb5{bottom:903.885450px;}
.yec{bottom:911.913450px;}
.y157{bottom:917.288250px;}
.y173{bottom:917.289750px;}
.y51{bottom:917.291250px;}
.y84{bottom:917.300250px;}
.y23{bottom:923.289300px;}
.yb4{bottom:924.621450px;}
.yeb{bottom:928.413450px;}
.y83{bottom:936.029250px;}
.y156{bottom:936.039750px;}
.y172{bottom:936.041250px;}
.y50{bottom:936.042750px;}
.y13c{bottom:936.051750px;}
.y19f{bottom:936.293850px;}
.yb3{bottom:941.121450px;}
.yea{bottom:949.149450px;}
.y19e{bottom:952.793850px;}
.y82{bottom:954.780750px;}
.y155{bottom:954.791250px;}
.y171{bottom:954.792750px;}
.y4f{bottom:954.794250px;}
.yb2{bottom:957.621450px;}
.y2c{bottom:965.976300px;}
.y19d{bottom:969.293850px;}
.ye9{bottom:969.885450px;}
.y81{bottom:973.532250px;}
.y154{bottom:973.542750px;}
.y170{bottom:973.544250px;}
.y4e{bottom:973.545750px;}
.yb1{bottom:978.357450px;}
.y2b{bottom:982.473300px;}
.y19c{bottom:985.793850px;}
.ye8{bottom:986.385450px;}
.y80{bottom:992.283750px;}
.y13b{bottom:992.294250px;}
.y16f{bottom:992.295750px;}
.y4d{bottom:992.297250px;}
.yb0{bottom:994.857450px;}
.ye7{bottom:1007.121450px;}
.y7f{bottom:1011.035250px;}
.y13a{bottom:1011.045750px;}
.y4c{bottom:1011.048750px;}
.yaf{bottom:1011.357450px;}
.y35{bottom:1021.700700px;}
.ye6{bottom:1027.857450px;}
.y7e{bottom:1029.786750px;}
.y139{bottom:1029.797250px;}
.y16e{bottom:1029.798750px;}
.y4b{bottom:1029.800250px;}
.yae{bottom:1032.093450px;}
.y34{bottom:1043.300700px;}
.y7d{bottom:1048.538250px;}
.y113{bottom:1048.548750px;}
.y16d{bottom:1048.550250px;}
.y4a{bottom:1048.551750px;}
.yad{bottom:1048.593450px;}
.y7c{bottom:1067.289750px;}
.y112{bottom:1067.300250px;}
.y27{bottom:1068.409650px;}
.yac{bottom:1069.329450px;}
.y2a{bottom:1082.937000px;}
.y7b{bottom:1086.041250px;}
.y49{bottom:1086.051750px;}
.yab{bottom:1090.065450px;}
.y29{bottom:1097.937000px;}
.y26{bottom:1100.809650px;}
.y28{bottom:1112.937000px;}
.y25{bottom:1133.209650px;}
.y24{bottom:1165.609650px;}
.hf{height:30.428156px;}
.h2{height:34.945312px;}
.h3{height:34.968750px;}
.hd{height:35.616000px;}
.hc{height:36.336000px;}
.he{height:37.652344px;}
.h5{height:39.339844px;}
.h10{height:39.385444px;}
.h1d{height:40.448925px;}
.h27{height:40.460925px;}
.h1c{height:42.317044px;}
.h26{height:43.030050px;}
.ha{height:43.031250px;}
.h8{height:44.520000px;}
.h9{height:45.507891px;}
.h22{height:45.525891px;}
.h15{height:45.531891px;}
.h14{height:45.543891px;}
.h13{height:45.549891px;}
.h12{height:45.573891px;}
.h25{height:46.102875px;}
.h1e{height:46.105275px;}
.h6{height:47.244141px;}
.h4{height:48.410156px;}
.h1f{height:48.422156px;}
.h1a{height:48.440156px;}
.h21{height:51.887109px;}
.h18{height:51.893109px;}
.h19{height:51.899109px;}
.h1b{height:51.905109px;}
.h20{height:51.911109px;}
.h24{height:51.917109px;}
.h23{height:51.941109px;}
.h28{height:51.942000px;}
.h17{height:51.959109px;}
.h16{height:51.983109px;}
.hb{height:54.504000px;}
.h11{height:56.664000px;}
.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;}
.x16{left:88.365900px;}
.x17{left:89.559000px;}
.x1c{left:91.601850px;}
.x20{left:95.853750px;}
.x24{left:103.039350px;}
.x18{left:107.559000px;}
.x28{left:112.039350px;}
.x14{left:139.339200px;}
.xe{left:144.335700px;}
.x21{left:223.053750px;}
.x27{left:231.354600px;}
.xd{left:243.276900px;}
.x12{left:263.394600px;}
.x7{left:270.660900px;}
.x1e{left:280.661850px;}
.x13{left:283.278600px;}
.x11{left:295.722600px;}
.x3{left:305.488200px;}
.xf{left:315.263700px;}
.x10{left:322.290600px;}
.x4{left:338.615700px;}
.xa{left:340.656900px;}
.x8{left:356.676900px;}
.xb{left:365.388900px;}
.xc{left:380.712900px;}
.x9{left:384.720900px;}
.x1b{left:451.325100px;}
.x5{left:453.554700px;}
.x15{left:455.592300px;}
.x1f{left:463.493850px;}
.x1{left:469.770150px;}
.x6{left:471.077700px;}
.x19{left:474.097500px;}
.x25{left:487.842450px;}
.x1a{left:492.094500px;}
.x29{left:496.842450px;}
.x26{left:503.322750px;}
.x22{left:529.197750px;}
.x23{left:542.125950px;}
.x1d{left:646.337850px;}
@media print{
.v3{vertical-align:-15.984000pt;}
.v2{vertical-align:-2.858667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.646400pt;}
.v5{vertical-align:14.196267pt;}
.v1{vertical-align:15.984000pt;}
.ls1b{letter-spacing:-4.224000pt;}
.ls28{letter-spacing:-3.669333pt;}
.ls20{letter-spacing:-3.584000pt;}
.ls1c{letter-spacing:-2.730667pt;}
.ls2b{letter-spacing:-1.792000pt;}
.ls26{letter-spacing:-1.706667pt;}
.ls18{letter-spacing:-1.664000pt;}
.ls24{letter-spacing:-1.450667pt;}
.ls13{letter-spacing:-1.408000pt;}
.ls27{letter-spacing:-1.194667pt;}
.ls1f{letter-spacing:-1.024000pt;}
.ls2d{letter-spacing:-0.981333pt;}
.ls1d{letter-spacing:-0.853333pt;}
.ls1a{letter-spacing:-0.768000pt;}
.ls2e{letter-spacing:-0.682667pt;}
.ls9{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.426667pt;}
.ls11{letter-spacing:-0.400000pt;}
.ls29{letter-spacing:-0.384000pt;}
.ls1e{letter-spacing:-0.341333pt;}
.ls10{letter-spacing:-0.336000pt;}
.ls6{letter-spacing:-0.240000pt;}
.lsc{letter-spacing:-0.213333pt;}
.ls8{letter-spacing:-0.168000pt;}
.ls12{letter-spacing:-0.117333pt;}
.ls5{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.004267pt;}
.ls1{letter-spacing:0.004800pt;}
.ls2{letter-spacing:0.005333pt;}
.ls15{letter-spacing:0.085333pt;}
.ls21{letter-spacing:0.128000pt;}
.ls2a{letter-spacing:0.170667pt;}
.ls17{letter-spacing:0.213333pt;}
.ls19{letter-spacing:0.341333pt;}
.ls4{letter-spacing:0.426667pt;}
.ls16{letter-spacing:0.469333pt;}
.ls14{letter-spacing:0.512000pt;}
.ls23{letter-spacing:0.554667pt;}
.ls22{letter-spacing:0.597333pt;}
.ls2c{letter-spacing:1.024000pt;}
.ls25{letter-spacing:2.346667pt;}
.ls3{letter-spacing:8.618667pt;}
.ls0{letter-spacing:10.656000pt;}
.lsd{letter-spacing:47.820800pt;}
.lse{letter-spacing:71.509333pt;}
.lsf{letter-spacing:128.341333pt;}
.ls7{letter-spacing:244.850133pt;}
.wsac{word-spacing:-16.485333pt;}
.wsb3{word-spacing:-14.208000pt;}
.ws2{word-spacing:-13.344000pt;}
.ws2a{word-spacing:-13.104000pt;}
.ws89{word-spacing:-12.864000pt;}
.wsaf{word-spacing:-12.373333pt;}
.wsae{word-spacing:-12.330667pt;}
.wsad{word-spacing:-12.288000pt;}
.wsb4{word-spacing:-12.032000pt;}
.wsb2{word-spacing:-11.989333pt;}
.ws58{word-spacing:-11.861333pt;}
.wsb5{word-spacing:-11.178667pt;}
.wsb0{word-spacing:-11.093333pt;}
.wsb1{word-spacing:-10.837333pt;}
.ws1{word-spacing:-9.340800pt;}
.ws2b{word-spacing:-9.172800pt;}
.ws8a{word-spacing:-9.004800pt;}
.ws8d{word-spacing:-8.302933pt;}
.ws24{word-spacing:-2.640000pt;}
.ws92{word-spacing:-2.592000pt;}
.ws9b{word-spacing:-2.544000pt;}
.ws3e{word-spacing:-2.256000pt;}
.ws64{word-spacing:-2.218667pt;}
.wsce{word-spacing:-2.005333pt;}
.ws77{word-spacing:-1.968000pt;}
.ws85{word-spacing:-1.872000pt;}
.ws93{word-spacing:-1.824000pt;}
.wsa9{word-spacing:-1.728000pt;}
.ws2f{word-spacing:-1.680000pt;}
.ws9a{word-spacing:-1.632000pt;}
.wsf{word-spacing:-1.584000pt;}
.wsb8{word-spacing:-1.488000pt;}
.ws48{word-spacing:-1.440000pt;}
.ws7c{word-spacing:-1.296000pt;}
.wscc{word-spacing:-1.280000pt;}
.wsbe{word-spacing:-1.109333pt;}
.wsaa{word-spacing:-1.104000pt;}
.wsd9{word-spacing:-1.024000pt;}
.ws1a{word-spacing:-0.960000pt;}
.ws50{word-spacing:-0.912000pt;}
.ws2e{word-spacing:-0.768000pt;}
.ws36{word-spacing:-0.720000pt;}
.ws40{word-spacing:-0.672000pt;}
.wsd6{word-spacing:-0.640000pt;}
.ws15{word-spacing:-0.624000pt;}
.wscf{word-spacing:-0.554667pt;}
.wsc0{word-spacing:-0.512000pt;}
.wsd2{word-spacing:-0.469333pt;}
.ws26{word-spacing:-0.426667pt;}
.ws13{word-spacing:-0.384000pt;}
.wsc3{word-spacing:-0.341333pt;}
.ws91{word-spacing:-0.336000pt;}
.wsc1{word-spacing:-0.213333pt;}
.ws5a{word-spacing:-0.170667pt;}
.wsab{word-spacing:-0.128000pt;}
.ws68{word-spacing:-0.085333pt;}
.ws4{word-spacing:0.000000pt;}
.ws6{word-spacing:0.048000pt;}
.ws67{word-spacing:0.128000pt;}
.ws34{word-spacing:0.168000pt;}
.ws62{word-spacing:0.213333pt;}
.ws29{word-spacing:0.240000pt;}
.wse{word-spacing:0.384000pt;}
.wsb9{word-spacing:0.400000pt;}
.ws59{word-spacing:0.426667pt;}
.wsd{word-spacing:0.480000pt;}
.ws69{word-spacing:0.512000pt;}
.ws97{word-spacing:0.576000pt;}
.ws20{word-spacing:0.624000pt;}
.ws3b{word-spacing:0.720000pt;}
.wsca{word-spacing:0.768000pt;}
.wsc7{word-spacing:0.853333pt;}
.ws9{word-spacing:0.912000pt;}
.wsb{word-spacing:0.960000pt;}
.wsdc{word-spacing:0.981333pt;}
.wsda{word-spacing:1.024000pt;}
.ws2c{word-spacing:1.056000pt;}
.wsd4{word-spacing:1.194667pt;}
.ws84{word-spacing:1.200000pt;}
.ws94{word-spacing:1.248000pt;}
.ws66{word-spacing:1.280000pt;}
.ws3a{word-spacing:1.296000pt;}
.ws28{word-spacing:1.322667pt;}
.ws53{word-spacing:1.344000pt;}
.ws76{word-spacing:1.392000pt;}
.wsbb{word-spacing:1.408000pt;}
.wsd0{word-spacing:1.450667pt;}
.ws5{word-spacing:1.584000pt;}
.wsa2{word-spacing:1.632000pt;}
.wsc2{word-spacing:1.664000pt;}
.ws1b{word-spacing:1.680000pt;}
.wsd3{word-spacing:1.706667pt;}
.ws12{word-spacing:1.728000pt;}
.ws88{word-spacing:1.776000pt;}
.wsd8{word-spacing:1.792000pt;}
.ws54{word-spacing:1.824000pt;}
.wscd{word-spacing:1.834667pt;}
.wsa6{word-spacing:1.872000pt;}
.ws32{word-spacing:1.920000pt;}
.ws52{word-spacing:1.968000pt;}
.wsc8{word-spacing:2.005333pt;}
.ws90{word-spacing:2.160000pt;}
.ws51{word-spacing:2.256000pt;}
.ws33{word-spacing:2.304000pt;}
.ws27{word-spacing:2.389333pt;}
.ws7b{word-spacing:2.400000pt;}
.ws65{word-spacing:2.432000pt;}
.ws1f{word-spacing:2.448000pt;}
.wsd7{word-spacing:2.474667pt;}
.wsc6{word-spacing:2.645333pt;}
.wsc5{word-spacing:2.730667pt;}
.ws80{word-spacing:2.736000pt;}
.wsa4{word-spacing:2.784000pt;}
.ws30{word-spacing:2.880000pt;}
.wsdb{word-spacing:2.944000pt;}
.ws7d{word-spacing:2.976000pt;}
.ws63{word-spacing:3.072000pt;}
.ws11{word-spacing:3.168000pt;}
.ws14{word-spacing:3.456000pt;}
.wscb{word-spacing:3.584000pt;}
.ws95{word-spacing:3.648000pt;}
.wsd5{word-spacing:3.669333pt;}
.ws21{word-spacing:3.696000pt;}
.ws1d{word-spacing:3.792000pt;}
.wsa{word-spacing:3.888000pt;}
.ws9f{word-spacing:3.936000pt;}
.ws3f{word-spacing:3.984000pt;}
.ws4b{word-spacing:4.032000pt;}
.ws86{word-spacing:4.080000pt;}
.ws4a{word-spacing:4.224000pt;}
.ws3c{word-spacing:4.320000pt;}
.ws7f{word-spacing:4.368000pt;}
.ws45{word-spacing:4.512000pt;}
.ws4e{word-spacing:4.560000pt;}
.ws1c{word-spacing:4.608000pt;}
.ws44{word-spacing:4.656000pt;}
.wsbf{word-spacing:4.693333pt;}
.ws75{word-spacing:4.704000pt;}
.ws8{word-spacing:4.896000pt;}
.ws3d{word-spacing:4.992000pt;}
.ws98{word-spacing:5.040000pt;}
.wsba{word-spacing:5.077333pt;}
.ws42{word-spacing:5.328000pt;}
.ws55{word-spacing:5.376000pt;}
.wsa1{word-spacing:5.424000pt;}
.ws23{word-spacing:5.472000pt;}
.wsc9{word-spacing:5.504000pt;}
.ws18{word-spacing:5.568000pt;}
.ws2d{word-spacing:5.712000pt;}
.wsc4{word-spacing:5.760000pt;}
.ws7{word-spacing:5.856000pt;}
.ws41{word-spacing:5.904000pt;}
.wsd1{word-spacing:6.186667pt;}
.ws17{word-spacing:6.240000pt;}
.ws96{word-spacing:6.288000pt;}
.ws9c{word-spacing:6.480000pt;}
.ws79{word-spacing:6.528000pt;}
.wsa3{word-spacing:6.576000pt;}
.wsa7{word-spacing:6.624000pt;}
.ws72{word-spacing:6.720000pt;}
.ws99{word-spacing:6.816000pt;}
.wsb6{word-spacing:6.864000pt;}
.ws73{word-spacing:7.056000pt;}
.wsa8{word-spacing:7.104000pt;}
.ws7e{word-spacing:7.248000pt;}
.ws37{word-spacing:7.296000pt;}
.ws87{word-spacing:7.392000pt;}
.wsc{word-spacing:7.584000pt;}
.ws1e{word-spacing:7.632000pt;}
.ws4c{word-spacing:7.680000pt;}
.ws4f{word-spacing:7.728000pt;}
.ws4d{word-spacing:8.016000pt;}
.ws43{word-spacing:8.064000pt;}
.ws16{word-spacing:8.160000pt;}
.ws25{word-spacing:8.192000pt;}
.ws47{word-spacing:8.448000pt;}
.ws7a{word-spacing:8.640000pt;}
.ws49{word-spacing:8.688000pt;}
.ws19{word-spacing:8.880000pt;}
.ws83{word-spacing:8.928000pt;}
.ws31{word-spacing:8.976000pt;}
.ws38{word-spacing:9.072000pt;}
.ws78{word-spacing:9.216000pt;}
.wsa5{word-spacing:9.552000pt;}
.ws74{word-spacing:9.696000pt;}
.ws39{word-spacing:9.744000pt;}
.ws46{word-spacing:10.272000pt;}
.ws22{word-spacing:10.416000pt;}
.wsb7{word-spacing:10.704000pt;}
.ws82{word-spacing:11.088000pt;}
.wsbc{word-spacing:11.776000pt;}
.ws9d{word-spacing:11.856000pt;}
.ws70{word-spacing:12.528000pt;}
.ws10{word-spacing:13.392000pt;}
.ws35{word-spacing:14.640000pt;}
.ws9e{word-spacing:15.600000pt;}
.wsa0{word-spacing:15.648000pt;}
.ws8f{word-spacing:16.080000pt;}
.ws81{word-spacing:16.464000pt;}
.wsbd{word-spacing:17.408000pt;}
.ws71{word-spacing:18.144000pt;}
.ws8b{word-spacing:57.770667pt;}
.ws8c{word-spacing:85.973333pt;}
.ws8e{word-spacing:88.320000pt;}
.ws3{word-spacing:93.738667pt;}
.ws5f{word-spacing:227.029333pt;}
.ws5e{word-spacing:234.154667pt;}
.ws6e{word-spacing:254.890667pt;}
.ws6a{word-spacing:280.960000pt;}
.ws61{word-spacing:293.376000pt;}
.ws60{word-spacing:302.890667pt;}
.ws6d{word-spacing:312.746667pt;}
.ws6c{word-spacing:316.544000pt;}
.ws6f{word-spacing:340.309333pt;}
.ws5c{word-spacing:340.778667pt;}
.ws5d{word-spacing:343.168000pt;}
.ws6b{word-spacing:398.549333pt;}
.ws56{word-spacing:513.749333pt;}
.ws57{word-spacing:539.477333pt;}
.ws5b{word-spacing:563.712000pt;}
.ws0{word-spacing:1104.048000pt;}
._a{margin-left:-26.083200pt;}
._b{margin-left:-17.702400pt;}
._e{margin-left:-5.260800pt;}
._8{margin-left:-3.864000pt;}
._1{margin-left:-2.563200pt;}
._9{margin-left:-0.998400pt;}
._3{width:1.238400pt;}
._5{width:2.380800pt;}
._10{width:3.302400pt;}
._7{width:4.200000pt;}
._2{width:5.462400pt;}
._6{width:7.200000pt;}
._4{width:8.524800pt;}
._0{width:9.696000pt;}
._f{width:10.982400pt;}
._2c{width:12.057600pt;}
._45{width:13.140267pt;}
._11{width:14.500800pt;}
._47{width:22.528000pt;}
._3d{width:24.115200pt;}
._49{width:25.897600pt;}
._4b{width:27.475200pt;}
._4a{width:31.043200pt;}
._4c{width:32.065600pt;}
._19{width:43.861333pt;}
._46{width:48.554667pt;}
._44{width:50.132267pt;}
._43{width:52.589867pt;}
._48{width:53.700267pt;}
._25{width:80.597333pt;}
._24{width:129.706667pt;}
._1a{width:135.424000pt;}
._3f{width:140.629333pt;}
._1e{width:164.821333pt;}
._1d{width:176.640000pt;}
._c{width:178.656000pt;}
._32{width:183.722667pt;}
._33{width:207.445333pt;}
._1c{width:209.877333pt;}
._23{width:212.736000pt;}
._29{width:238.890667pt;}
._2f{width:251.392000pt;}
._1b{width:264.448000pt;}
._3e{width:277.077333pt;}
._2a{width:284.672000pt;}
._30{width:298.922667pt;}
._40{width:302.805333pt;}
._2e{width:321.322667pt;}
._1f{width:323.712000pt;}
._34{width:328.528000pt;}
._28{width:336.853333pt;}
._37{width:339.029333pt;}
._36{width:352.170667pt;}
._3a{width:362.922667pt;}
._39{width:363.861333pt;}
._31{width:374.826667pt;}
._3c{width:375.850667pt;}
._15{width:380.501333pt;}
._42{width:384.543467pt;}
._17{width:427.093333pt;}
._3b{width:442.154667pt;}
._2b{width:450.688000pt;}
._16{width:461.482667pt;}
._35{width:489.557333pt;}
._38{width:494.293333pt;}
._18{width:497.066667pt;}
._22{width:508.757333pt;}
._41{width:542.762667pt;}
._14{width:555.306667pt;}
._2d{width:619.349333pt;}
._26{width:678.272000pt;}
._13{width:685.482667pt;}
._27{width:701.952000pt;}
._21{width:751.744000pt;}
._20{width:785.024000pt;}
._12{width:838.604267pt;}
._d{width:1210.256533pt;}
.fs8{font-size:29.866667pt;}
.fs5{font-size:33.600000pt;}
.fs7{font-size:37.333333pt;}
.fs9{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;}
.y41{bottom:15.379333pt;}
.y3c{bottom:36.510800pt;}
.y47{bottom:41.748933pt;}
.y48{bottom:41.927067pt;}
.yaa{bottom:41.930400pt;}
.ya9{bottom:42.592000pt;}
.y3b{bottom:52.510800pt;}
.y40{bottom:52.617467pt;}
.y3a{bottom:68.510800pt;}
.y3f{bottom:68.617467pt;}
.y138{bottom:77.724533pt;}
.y19b{bottom:80.353600pt;}
.ye5{bottom:80.624133pt;}
.ya8{bottom:82.035333pt;}
.y7a{bottom:82.038000pt;}
.y39{bottom:84.510800pt;}
.y3e{bottom:84.617467pt;}
.y137{bottom:92.391200pt;}
.ye4{bottom:95.290800pt;}
.ya7{bottom:98.703333pt;}
.y79{bottom:98.706000pt;}
.y19a{bottom:98.785600pt;}
.y198{bottom:98.785867pt;}
.y111{bottom:98.947067pt;}
.y38{bottom:100.510800pt;}
.y3d{bottom:100.617467pt;}
.y136{bottom:107.057867pt;}
.ye3{bottom:109.957467pt;}
.y199{bottom:113.452267pt;}
.y197{bottom:113.452533pt;}
.y110{bottom:113.613733pt;}
.ya6{bottom:115.371333pt;}
.y78{bottom:115.374000pt;}
.y135{bottom:121.724533pt;}
.ye2{bottom:124.627067pt;}
.y10f{bottom:128.280400pt;}
.y196{bottom:131.884533pt;}
.ya5{bottom:132.039333pt;}
.y77{bottom:132.042000pt;}
.y134{bottom:136.391200pt;}
.y1f5{bottom:136.746933pt;}
.ye1{bottom:139.293733pt;}
.y2d{bottom:141.664933pt;}
.y10e{bottom:142.947067pt;}
.y195{bottom:146.551200pt;}
.ya4{bottom:148.707333pt;}
.y76{bottom:148.710000pt;}
.y1f4{bottom:151.413600pt;}
.y1c9{bottom:151.848800pt;}
.ye0{bottom:153.960400pt;}
.y133{bottom:154.823200pt;}
.y10d{bottom:157.613733pt;}
.y194{bottom:161.217867pt;}
.ya3{bottom:165.375333pt;}
.y75{bottom:165.378000pt;}
.y1f3{bottom:166.080267pt;}
.y1c8{bottom:166.515467pt;}
.y33{bottom:166.944933pt;}
.y6{bottom:166.946133pt;}
.y10c{bottom:172.280400pt;}
.ydf{bottom:172.392400pt;}
.y132{bottom:173.255200pt;}
.y193{bottom:175.884800pt;}
.y1f2{bottom:180.746933pt;}
.y1c7{bottom:181.182133pt;}
.y32{bottom:181.611600pt;}
.y5{bottom:181.612800pt;}
.ya2{bottom:182.043333pt;}
.y74{bottom:182.046000pt;}
.y10b{bottom:186.947067pt;}
.yde{bottom:187.059067pt;}
.y131{bottom:191.687200pt;}
.y192{bottom:194.316800pt;}
.y1f1{bottom:195.413600pt;}
.y1c6{bottom:195.848800pt;}
.y31{bottom:196.278267pt;}
.y4{bottom:196.279467pt;}
.ya1{bottom:198.711333pt;}
.y10a{bottom:201.613733pt;}
.ydd{bottom:201.725733pt;}
.y191{bottom:208.983467pt;}
.y1f0{bottom:210.080267pt;}
.y130{bottom:210.119200pt;}
.y1c5{bottom:210.515467pt;}
.y30{bottom:210.944933pt;}
.y3{bottom:210.946133pt;}
.y73{bottom:215.354000pt;}
.ya0{bottom:215.379333pt;}
.y109{bottom:216.280400pt;}
.ydc{bottom:216.392400pt;}
.y190{bottom:223.650133pt;}
.y1ef{bottom:224.746933pt;}
.y1c4{bottom:225.182133pt;}
.y2f{bottom:225.611600pt;}
.y2{bottom:225.612800pt;}
.y12f{bottom:228.552400pt;}
.y108{bottom:230.947067pt;}
.ydb{bottom:231.059067pt;}
.y72{bottom:232.022000pt;}
.y18f{bottom:238.317067pt;}
.y1ee{bottom:239.413600pt;}
.y1c3{bottom:239.848800pt;}
.y2e{bottom:240.278267pt;}
.y1{bottom:240.279467pt;}
.y107{bottom:245.613733pt;}
.yda{bottom:245.725733pt;}
.y12e{bottom:246.984400pt;}
.y71{bottom:248.690000pt;}
.y9f{bottom:248.712667pt;}
.y1ed{bottom:254.080267pt;}
.y1c2{bottom:254.515467pt;}
.y18e{bottom:256.749067pt;}
.y106{bottom:260.280400pt;}
.yd9{bottom:260.392400pt;}
.y70{bottom:265.358000pt;}
.y12d{bottom:265.416400pt;}
.y1ec{bottom:268.746933pt;}
.y1c1{bottom:269.182133pt;}
.y18d{bottom:271.415733pt;}
.y37{bottom:274.909733pt;}
.yd8{bottom:275.059067pt;}
.y6f{bottom:282.026000pt;}
.y1eb{bottom:283.413600pt;}
.y12c{bottom:283.848400pt;}
.y1c0{bottom:283.848800pt;}
.y18c{bottom:286.082400pt;}
.y36{bottom:289.309733pt;}
.yd7{bottom:289.725733pt;}
.y1ea{bottom:298.080267pt;}
.y1bf{bottom:298.515467pt;}
.y6e{bottom:298.694000pt;}
.y9e{bottom:298.699333pt;}
.y18b{bottom:300.749067pt;}
.y12b{bottom:302.280400pt;}
.yd6{bottom:308.157733pt;}
.y1e9{bottom:312.746933pt;}
.y1be{bottom:313.182133pt;}
.y6d{bottom:315.362000pt;}
.y9d{bottom:315.367333pt;}
.y18a{bottom:315.416400pt;}
.yd5{bottom:322.824400pt;}
.y1e8{bottom:327.413600pt;}
.y1bd{bottom:327.848800pt;}
.y6c{bottom:332.030000pt;}
.y9c{bottom:332.035333pt;}
.y189{bottom:333.848400pt;}
.yd4{bottom:337.491067pt;}
.y105{bottom:340.947067pt;}
.y1e7{bottom:342.080267pt;}
.y1bc{bottom:342.515467pt;}
.y12a{bottom:348.674000pt;}
.y6b{bottom:348.698000pt;}
.y9b{bottom:348.703333pt;}
.y153{bottom:348.707333pt;}
.yd3{bottom:352.157733pt;}
.y188{bottom:352.280400pt;}
.y46{bottom:356.638133pt;}
.y1e6{bottom:356.746933pt;}
.y1bb{bottom:357.182133pt;}
.y129{bottom:365.342000pt;}
.y6a{bottom:365.366000pt;}
.y9a{bottom:365.371333pt;}
.y152{bottom:365.375333pt;}
.yd2{bottom:366.824400pt;}
.y45{bottom:369.971467pt;}
.y1e5{bottom:371.413600pt;}
.y1ba{bottom:371.848800pt;}
.y44{bottom:379.310133pt;}
.yd1{bottom:381.491067pt;}
.y128{bottom:382.010000pt;}
.y69{bottom:382.034000pt;}
.y151{bottom:382.043333pt;}
.y1e4{bottom:386.080267pt;}
.y104{bottom:386.333733pt;}
.y1b9{bottom:386.515467pt;}
.yd0{bottom:396.157733pt;}
.y43{bottom:396.638133pt;}
.y127{bottom:398.678000pt;}
.y68{bottom:398.702000pt;}
.y16c{bottom:398.706000pt;}
.y99{bottom:398.707333pt;}
.y150{bottom:398.711333pt;}
.y1e3{bottom:400.746933pt;}
.y103{bottom:401.000400pt;}
.y1b8{bottom:401.182133pt;}
.y42{bottom:409.971467pt;}
.ycf{bottom:414.589733pt;}
.y126{bottom:415.346000pt;}
.y67{bottom:415.370000pt;}
.y16b{bottom:415.374000pt;}
.y98{bottom:415.375333pt;}
.y14f{bottom:415.378000pt;}
.y187{bottom:415.379333pt;}
.y1e2{bottom:415.413600pt;}
.y102{bottom:415.667067pt;}
.y1b7{bottom:415.848800pt;}
.yce{bottom:429.256400pt;}
.y1e1{bottom:430.080267pt;}
.y101{bottom:430.333733pt;}
.y1b6{bottom:430.515467pt;}
.y66{bottom:432.038000pt;}
.y14e{bottom:432.042000pt;}
.y97{bottom:432.043333pt;}
.y22{bottom:443.345733pt;}
.ycd{bottom:443.923067pt;}
.y1e0{bottom:444.746933pt;}
.y100{bottom:445.000400pt;}
.y1b5{bottom:445.182133pt;}
.y125{bottom:448.682000pt;}
.y65{bottom:448.706000pt;}
.y14d{bottom:448.710000pt;}
.y96{bottom:448.711333pt;}
.y186{bottom:448.712667pt;}
.y21{bottom:456.677733pt;}
.ycc{bottom:458.589733pt;}
.y1df{bottom:459.413600pt;}
.yff{bottom:459.667067pt;}
.y1b4{bottom:459.848800pt;}
.y124{bottom:465.350000pt;}
.y95{bottom:465.371333pt;}
.y64{bottom:465.374000pt;}
.y14c{bottom:465.378000pt;}
.y20{bottom:470.009733pt;}
.ycb{bottom:473.256400pt;}
.y1de{bottom:474.080267pt;}
.y1b3{bottom:474.515467pt;}
.yfe{bottom:478.099067pt;}
.y123{bottom:482.018000pt;}
.y16a{bottom:482.035333pt;}
.y94{bottom:482.039333pt;}
.y63{bottom:482.042000pt;}
.y14b{bottom:482.046000pt;}
.y1f{bottom:483.341733pt;}
.yca{bottom:487.923067pt;}
.y1dd{bottom:488.746933pt;}
.y1b2{bottom:489.182133pt;}
.yfd{bottom:496.531067pt;}
.y1e{bottom:496.673733pt;}
.y185{bottom:498.676667pt;}
.y122{bottom:498.686000pt;}
.y169{bottom:498.703333pt;}
.y93{bottom:498.707333pt;}
.y62{bottom:498.710000pt;}
.y1dc{bottom:503.413600pt;}
.y1b1{bottom:503.848800pt;}
.yc9{bottom:506.355067pt;}
.y1d{bottom:510.005733pt;}
.yfc{bottom:514.963067pt;}
.y184{bottom:515.344667pt;}
.y121{bottom:515.354000pt;}
.y168{bottom:515.371333pt;}
.y14a{bottom:515.374000pt;}
.y92{bottom:515.375333pt;}
.y61{bottom:515.378000pt;}
.y1db{bottom:518.080267pt;}
.y1b0{bottom:518.515467pt;}
.yc8{bottom:521.021733pt;}
.y1c{bottom:523.337733pt;}
.y183{bottom:532.012667pt;}
.y167{bottom:532.039333pt;}
.y149{bottom:532.042000pt;}
.y60{bottom:532.043333pt;}
.y1da{bottom:532.746933pt;}
.y1af{bottom:533.182133pt;}
.yc7{bottom:535.688400pt;}
.y1b{bottom:536.669733pt;}
.yfb{bottom:543.165733pt;}
.y1d9{bottom:547.413600pt;}
.y1ae{bottom:547.848800pt;}
.y182{bottom:548.680667pt;}
.y120{bottom:548.690000pt;}
.y166{bottom:548.707333pt;}
.y148{bottom:548.710000pt;}
.y5f{bottom:548.711333pt;}
.y1a{bottom:550.001733pt;}
.yc6{bottom:550.355067pt;}
.yfa{bottom:557.832400pt;}
.y1d8{bottom:562.080267pt;}
.y1ad{bottom:562.515467pt;}
.y19{bottom:563.333733pt;}
.yc5{bottom:565.021733pt;}
.y181{bottom:565.348667pt;}
.y11f{bottom:565.358000pt;}
.y91{bottom:565.372667pt;}
.y165{bottom:565.375333pt;}
.y147{bottom:565.378000pt;}
.y5e{bottom:565.379333pt;}
.yf9{bottom:576.264400pt;}
.y18{bottom:576.665733pt;}
.y1d7{bottom:576.746933pt;}
.y1ac{bottom:577.182133pt;}
.yc4{bottom:579.688400pt;}
.y180{bottom:582.016667pt;}
.y11e{bottom:582.026000pt;}
.y90{bottom:582.040667pt;}
.y164{bottom:582.043333pt;}
.y17{bottom:589.997733pt;}
.yf8{bottom:590.931067pt;}
.y1d6{bottom:591.413600pt;}
.y1ab{bottom:591.848800pt;}
.yc3{bottom:594.355067pt;}
.y17f{bottom:598.684667pt;}
.y11d{bottom:598.694000pt;}
.y5d{bottom:598.707333pt;}
.y8f{bottom:598.708667pt;}
.y163{bottom:598.711333pt;}
.y16{bottom:603.329733pt;}
.y1d5{bottom:606.080267pt;}
.y1aa{bottom:606.515467pt;}
.yc2{bottom:609.021733pt;}
.yf7{bottom:609.363067pt;}
.y17e{bottom:615.352667pt;}
.y11c{bottom:615.362000pt;}
.y5c{bottom:615.375333pt;}
.y8e{bottom:615.376667pt;}
.y162{bottom:615.379333pt;}
.y15{bottom:616.661733pt;}
.y1d4{bottom:620.746933pt;}
.y1a9{bottom:621.182133pt;}
.yc1{bottom:623.688400pt;}
.yf6{bottom:627.795067pt;}
.y14{bottom:629.993733pt;}
.y17d{bottom:632.020667pt;}
.y11b{bottom:632.030000pt;}
.y5b{bottom:632.043333pt;}
.y146{bottom:632.044667pt;}
.y1d3{bottom:635.413600pt;}
.y1a8{bottom:635.848800pt;}
.yc0{bottom:638.355067pt;}
.y13{bottom:643.325733pt;}
.yf5{bottom:646.227067pt;}
.y17c{bottom:648.688667pt;}
.y11a{bottom:648.698000pt;}
.y161{bottom:648.703333pt;}
.y8d{bottom:648.706000pt;}
.y5a{bottom:648.711333pt;}
.y145{bottom:648.712667pt;}
.y1d2{bottom:650.080267pt;}
.y1a7{bottom:650.515467pt;}
.ybf{bottom:653.021733pt;}
.y12{bottom:656.657733pt;}
.yf4{bottom:664.659067pt;}
.y1d1{bottom:664.746933pt;}
.y1a6{bottom:665.182133pt;}
.y17b{bottom:665.356667pt;}
.y119{bottom:665.366000pt;}
.y160{bottom:665.371333pt;}
.y8c{bottom:665.374000pt;}
.y59{bottom:665.379333pt;}
.ybe{bottom:667.688400pt;}
.y11{bottom:669.989733pt;}
.yf3{bottom:679.325733pt;}
.y1d0{bottom:679.413600pt;}
.y1a5{bottom:679.848800pt;}
.y118{bottom:682.034000pt;}
.y144{bottom:682.036667pt;}
.y15f{bottom:682.039333pt;}
.y8b{bottom:682.042000pt;}
.ybd{bottom:682.355067pt;}
.y10{bottom:683.321733pt;}
.y1cf{bottom:694.080267pt;}
.y1a4{bottom:694.515467pt;}
.yf{bottom:696.653733pt;}
.ybc{bottom:697.021733pt;}
.yf2{bottom:697.757733pt;}
.y17a{bottom:698.692667pt;}
.y117{bottom:698.702000pt;}
.y143{bottom:698.704667pt;}
.y58{bottom:698.706000pt;}
.y15e{bottom:698.707333pt;}
.y8a{bottom:698.710000pt;}
.y1ce{bottom:708.746933pt;}
.y1a3{bottom:709.182133pt;}
.ye{bottom:709.985733pt;}
.ybb{bottom:711.688400pt;}
.y179{bottom:715.360667pt;}
.y116{bottom:715.370000pt;}
.y142{bottom:715.372667pt;}
.y57{bottom:715.374000pt;}
.y15d{bottom:715.375333pt;}
.y89{bottom:715.378000pt;}
.yf1{bottom:716.189733pt;}
.yd{bottom:723.317733pt;}
.y1cd{bottom:723.413600pt;}
.y1a2{bottom:723.848800pt;}
.yba{bottom:730.120400pt;}
.yf0{bottom:730.856400pt;}
.y178{bottom:732.028667pt;}
.y115{bottom:732.038000pt;}
.y141{bottom:732.040667pt;}
.y56{bottom:732.042000pt;}
.y15c{bottom:732.043333pt;}
.y88{bottom:732.046000pt;}
.yc{bottom:736.649733pt;}
.y1cc{bottom:738.080267pt;}
.y1a1{bottom:738.515467pt;}
.yb9{bottom:744.787067pt;}
.yef{bottom:745.523067pt;}
.y177{bottom:748.696667pt;}
.y114{bottom:748.706000pt;}
.y140{bottom:748.708667pt;}
.y55{bottom:748.710000pt;}
.y15b{bottom:748.711333pt;}
.yb{bottom:749.981733pt;}
.y1cb{bottom:752.746933pt;}
.yb8{bottom:759.453733pt;}
.ya{bottom:763.313733pt;}
.yee{bottom:763.955067pt;}
.y15a{bottom:765.363333pt;}
.y176{bottom:765.364667pt;}
.y87{bottom:765.374000pt;}
.y13f{bottom:765.376667pt;}
.y54{bottom:765.378000pt;}
.y1ca{bottom:767.413600pt;}
.y1a0{bottom:767.848800pt;}
.yb7{bottom:774.120400pt;}
.y9{bottom:776.645733pt;}
.y159{bottom:782.031333pt;}
.y175{bottom:782.032667pt;}
.y53{bottom:782.034000pt;}
.y86{bottom:782.042000pt;}
.y13e{bottom:782.044667pt;}
.yed{bottom:782.387067pt;}
.yb6{bottom:788.787067pt;}
.y8{bottom:789.977733pt;}
.y158{bottom:798.699333pt;}
.y174{bottom:798.700667pt;}
.y52{bottom:798.702000pt;}
.y85{bottom:798.710000pt;}
.y13d{bottom:798.712667pt;}
.y7{bottom:803.309733pt;}
.yb5{bottom:803.453733pt;}
.yec{bottom:810.589733pt;}
.y157{bottom:815.367333pt;}
.y173{bottom:815.368667pt;}
.y51{bottom:815.370000pt;}
.y84{bottom:815.378000pt;}
.y23{bottom:820.701600pt;}
.yb4{bottom:821.885733pt;}
.yeb{bottom:825.256400pt;}
.y83{bottom:832.026000pt;}
.y156{bottom:832.035333pt;}
.y172{bottom:832.036667pt;}
.y50{bottom:832.038000pt;}
.y13c{bottom:832.046000pt;}
.y19f{bottom:832.261200pt;}
.yb3{bottom:836.552400pt;}
.yea{bottom:843.688400pt;}
.y19e{bottom:846.927867pt;}
.y82{bottom:848.694000pt;}
.y155{bottom:848.703333pt;}
.y171{bottom:848.704667pt;}
.y4f{bottom:848.706000pt;}
.yb2{bottom:851.219067pt;}
.y2c{bottom:858.645600pt;}
.y19d{bottom:861.594533pt;}
.ye9{bottom:862.120400pt;}
.y81{bottom:865.362000pt;}
.y154{bottom:865.371333pt;}
.y170{bottom:865.372667pt;}
.y4e{bottom:865.374000pt;}
.yb1{bottom:869.651067pt;}
.y2b{bottom:873.309600pt;}
.y19c{bottom:876.261200pt;}
.ye8{bottom:876.787067pt;}
.y80{bottom:882.030000pt;}
.y13b{bottom:882.039333pt;}
.y16f{bottom:882.040667pt;}
.y4d{bottom:882.042000pt;}
.yb0{bottom:884.317733pt;}
.ye7{bottom:895.219067pt;}
.y7f{bottom:898.698000pt;}
.y13a{bottom:898.707333pt;}
.y4c{bottom:898.710000pt;}
.yaf{bottom:898.984400pt;}
.y35{bottom:908.178400pt;}
.ye6{bottom:913.651067pt;}
.y7e{bottom:915.366000pt;}
.y139{bottom:915.375333pt;}
.y16e{bottom:915.376667pt;}
.y4b{bottom:915.378000pt;}
.yae{bottom:917.416400pt;}
.y34{bottom:927.378400pt;}
.y7d{bottom:932.034000pt;}
.y113{bottom:932.043333pt;}
.y16d{bottom:932.044667pt;}
.y4a{bottom:932.046000pt;}
.yad{bottom:932.083067pt;}
.y7c{bottom:948.702000pt;}
.y112{bottom:948.711333pt;}
.y27{bottom:949.697467pt;}
.yac{bottom:950.515067pt;}
.y2a{bottom:962.610667pt;}
.y7b{bottom:965.370000pt;}
.y49{bottom:965.379333pt;}
.yab{bottom:968.947067pt;}
.y29{bottom:975.944000pt;}
.y26{bottom:978.497467pt;}
.y28{bottom:989.277333pt;}
.y25{bottom:1007.297467pt;}
.y24{bottom:1036.097467pt;}
.hf{height:27.047250pt;}
.h2{height:31.062500pt;}
.h3{height:31.083333pt;}
.hd{height:31.658667pt;}
.hc{height:32.298667pt;}
.he{height:33.468750pt;}
.h5{height:34.968750pt;}
.h10{height:35.009283pt;}
.h1d{height:35.954600pt;}
.h27{height:35.965267pt;}
.h1c{height:37.615150pt;}
.h26{height:38.248933pt;}
.ha{height:38.250000pt;}
.h8{height:39.573333pt;}
.h9{height:40.451458pt;}
.h22{height:40.467458pt;}
.h15{height:40.472792pt;}
.h14{height:40.483458pt;}
.h13{height:40.488792pt;}
.h12{height:40.510125pt;}
.h25{height:40.980333pt;}
.h1e{height:40.982467pt;}
.h6{height:41.994792pt;}
.h4{height:43.031250pt;}
.h1f{height:43.041917pt;}
.h1a{height:43.057917pt;}
.h21{height:46.121875pt;}
.h18{height:46.127208pt;}
.h19{height:46.132542pt;}
.h1b{height:46.137875pt;}
.h20{height:46.143208pt;}
.h24{height:46.148542pt;}
.h23{height:46.169875pt;}
.h28{height:46.170667pt;}
.h17{height:46.185875pt;}
.h16{height:46.207208pt;}
.hb{height:48.448000pt;}
.h11{height:50.368000pt;}
.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;}
.x16{left:78.547467pt;}
.x17{left:79.608000pt;}
.x1c{left:81.423867pt;}
.x20{left:85.203333pt;}
.x24{left:91.590533pt;}
.x18{left:95.608000pt;}
.x28{left:99.590533pt;}
.x14{left:123.857067pt;}
.xe{left:128.298400pt;}
.x21{left:198.270000pt;}
.x27{left:205.648533pt;}
.xd{left:216.246133pt;}
.x12{left:234.128533pt;}
.x7{left:240.587467pt;}
.x1e{left:249.477200pt;}
.x13{left:251.803200pt;}
.x11{left:262.864533pt;}
.x3{left:271.545067pt;}
.xf{left:280.234400pt;}
.x10{left:286.480533pt;}
.x4{left:300.991733pt;}
.xa{left:302.806133pt;}
.x8{left:317.046133pt;}
.xb{left:324.790133pt;}
.xc{left:338.411467pt;}
.x9{left:341.974133pt;}
.x1b{left:401.177867pt;}
.x5{left:403.159733pt;}
.x15{left:404.970933pt;}
.x1f{left:411.994533pt;}
.x1{left:417.573467pt;}
.x6{left:418.735733pt;}
.x19{left:421.420000pt;}
.x25{left:433.637733pt;}
.x1a{left:437.417333pt;}
.x29{left:441.637733pt;}
.x26{left:447.398000pt;}
.x22{left:470.398000pt;}
.x23{left:481.889733pt;}
.x1d{left:574.522533pt;}
}




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