
    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_f13f92e44dbed9970a495971.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.079000;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_de0b31fcf813991c1af0d524.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.969000;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_f13f92e44dbed9970a495971.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.079000;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_cabd39a7d9e9b6381155bfbd.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.075000;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_de0b31fcf813991c1af0d524.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.969000;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_fe66261e2a11a7c10b126ce5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.947000;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_de0b31fcf813991c1af0d524.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.969000;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_f13f92e44dbed9970a495971.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.079000;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_7ac68258ebcf739445a7471a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.710000;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_949cf68fb3363882ca78f034.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666000;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_8f9bc2162785bad8e5069f74.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.894000;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_e712aac77b533f097cb60ba9.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.693000;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_6a07d30ced0e1c355f801ef7.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.947000;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_974b3e04bd639e7ef9a6383e.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_843418dd617763812abca1ea.woff2')format("woff");}.fff{font-family:fff;line-height:0.689000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_ce283135663d44aee2e2db22.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_fc3129adaa3dce0ad7c5317e.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.861000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_34213ee8139334817b6959a3.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.689000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_7fe1d1c8224e74d62a8b7c61.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.894000;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;}
.m2{transform:matrix(0.167849,-0.185274,0.185274,0.167849,0,0);-ms-transform:matrix(0.167849,-0.185274,0.185274,0.167849,0,0);-webkit-transform:matrix(0.167849,-0.185274,0.185274,0.167849,0,0);}
.m1{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.248424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248424,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-49.925158px;}
.v6{vertical-align:-34.769400px;}
.v7{vertical-align:-28.050000px;}
.v3{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:15.984000px;}
.v1{vertical-align:17.982000px;}
.v2{vertical-align:23.976000px;}
.ls3f{letter-spacing:-1.782000px;}
.ls40{letter-spacing:-1.674000px;}
.lsb{letter-spacing:-1.566000px;}
.ls61{letter-spacing:-1.488000px;}
.ls3c{letter-spacing:-1.296000px;}
.ls5e{letter-spacing:-1.200000px;}
.ls41{letter-spacing:-1.080000px;}
.ls3d{letter-spacing:-0.972000px;}
.ls3b{letter-spacing:-0.918000px;}
.ls24{letter-spacing:-0.864000px;}
.ls2b{letter-spacing:-0.810000px;}
.ls5d{letter-spacing:-0.720000px;}
.ls2c{letter-spacing:-0.702000px;}
.ls19{letter-spacing:-0.672000px;}
.ls18{letter-spacing:-0.648000px;}
.ls4e{letter-spacing:-0.624000px;}
.ls28{letter-spacing:-0.594000px;}
.ls35{letter-spacing:-0.576000px;}
.ls2a{letter-spacing:-0.540000px;}
.ls62{letter-spacing:-0.528000px;}
.lse{letter-spacing:-0.486000px;}
.ls37{letter-spacing:-0.480000px;}
.ls7{letter-spacing:-0.432000px;}
.lsc{letter-spacing:-0.378000px;}
.ls2d{letter-spacing:-0.336000px;}
.ls26{letter-spacing:-0.324000px;}
.ls15{letter-spacing:-0.270000px;}
.ls16{letter-spacing:-0.216000px;}
.ls33{letter-spacing:-0.192000px;}
.lsd{letter-spacing:-0.162000px;}
.ls36{letter-spacing:-0.144000px;}
.ls34{letter-spacing:-0.111936px;}
.ls17{letter-spacing:-0.108000px;}
.ls6{letter-spacing:-0.096000px;}
.ls53{letter-spacing:-0.083952px;}
.ls27{letter-spacing:-0.062964px;}
.lsa{letter-spacing:-0.054000px;}
.ls5{letter-spacing:0.000000px;}
.ls55{letter-spacing:0.048000px;}
.ls12{letter-spacing:0.054000px;}
.ls47{letter-spacing:0.096000px;}
.ls2{letter-spacing:0.108000px;}
.ls5a{letter-spacing:0.144000px;}
.ls1f{letter-spacing:0.162000px;}
.ls0{letter-spacing:0.172800px;}
.ls23{letter-spacing:0.216000px;}
.ls3e{letter-spacing:0.220374px;}
.ls49{letter-spacing:0.240000px;}
.ls13{letter-spacing:0.270000px;}
.ls4a{letter-spacing:0.288000px;}
.ls8{letter-spacing:0.324000px;}
.ls45{letter-spacing:0.336000px;}
.ls3{letter-spacing:0.378000px;}
.ls46{letter-spacing:0.384000px;}
.ls9{letter-spacing:0.432000px;}
.ls5b{letter-spacing:0.480000px;}
.ls39{letter-spacing:0.486000px;}
.ls4b{letter-spacing:0.528000px;}
.ls1e{letter-spacing:0.540000px;}
.ls1{letter-spacing:0.550800px;}
.ls56{letter-spacing:0.576000px;}
.ls11{letter-spacing:0.594000px;}
.ls60{letter-spacing:0.624000px;}
.ls25{letter-spacing:0.648000px;}
.ls48{letter-spacing:0.672000px;}
.ls2f{letter-spacing:0.702000px;}
.ls14{letter-spacing:0.810000px;}
.ls4d{letter-spacing:0.864000px;}
.ls63{letter-spacing:0.912000px;}
.ls10{letter-spacing:0.918000px;}
.ls64{letter-spacing:0.979440px;}
.ls52{letter-spacing:1.008000px;}
.lsf{letter-spacing:1.026000px;}
.ls54{letter-spacing:1.056000px;}
.ls29{letter-spacing:1.080000px;}
.ls4f{letter-spacing:1.104000px;}
.ls22{letter-spacing:1.134000px;}
.ls32{letter-spacing:1.188000px;}
.ls59{letter-spacing:1.200000px;}
.ls30{letter-spacing:1.242000px;}
.ls3a{letter-spacing:1.296000px;}
.ls20{letter-spacing:1.350000px;}
.ls38{letter-spacing:1.458000px;}
.ls44{letter-spacing:1.469370px;}
.ls58{letter-spacing:1.488000px;}
.ls65{letter-spacing:1.536000px;}
.ls50{letter-spacing:1.680000px;}
.ls51{letter-spacing:1.776000px;}
.ls31{letter-spacing:1.836000px;}
.ls1b{letter-spacing:1.890007px;}
.ls5f{letter-spacing:1.920000px;}
.ls4c{letter-spacing:1.968000px;}
.ls1a{letter-spacing:2.520000px;}
.ls5c{letter-spacing:2.592000px;}
.ls57{letter-spacing:2.640000px;}
.ls4{letter-spacing:2.970000px;}
.ls21{letter-spacing:4.098600px;}
.ls42{letter-spacing:39.285706px;}
.ls43{letter-spacing:42.524598px;}
.ls2e{letter-spacing:47.056597px;}
.ls1c{letter-spacing:265.584000px;}
.ls1d{letter-spacing:569.424000px;}
.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;}
}
.ws33{word-spacing:-15.390055px;}
.ws32{word-spacing:-13.500000px;}
.ws35{word-spacing:-12.798000px;}
.ws5a{word-spacing:-12.474000px;}
.wsb8{word-spacing:-12.432000px;}
.ws78{word-spacing:-12.366000px;}
.ws2{word-spacing:-12.258000px;}
.ws3b{word-spacing:-12.150000px;}
.ws4{word-spacing:-12.096000px;}
.ws75{word-spacing:-12.042000px;}
.ws39{word-spacing:-11.988000px;}
.ws95{word-spacing:-11.964870px;}
.ws37{word-spacing:-11.934000px;}
.ws74{word-spacing:-11.880000px;}
.ws77{word-spacing:-11.826000px;}
.ws3a{word-spacing:-11.772000px;}
.ws0{word-spacing:-11.718000px;}
.ws3d{word-spacing:-11.664000px;}
.ws3c{word-spacing:-11.556000px;}
.ws36{word-spacing:-11.502000px;}
.ws7a{word-spacing:-11.394000px;}
.ws7c{word-spacing:-11.286000px;}
.ws7b{word-spacing:-11.016000px;}
.ws98{word-spacing:-10.896000px;}
.ws1{word-spacing:-10.800000px;}
.ws9a{word-spacing:-10.752000px;}
.ws79{word-spacing:-10.584000px;}
.ws5c{word-spacing:-10.560000px;}
.wsb2{word-spacing:-10.512000px;}
.ws96{word-spacing:-10.495500px;}
.wsb3{word-spacing:-10.416000px;}
.ws97{word-spacing:-10.368000px;}
.wsb4{word-spacing:-10.272000px;}
.wsb5{word-spacing:-9.792000px;}
.wsb6{word-spacing:-9.504000px;}
.ws5{word-spacing:-9.108792px;}
.ws76{word-spacing:-7.366788px;}
.wsb7{word-spacing:-7.331808px;}
.ws3{word-spacing:-7.146414px;}
.ws38{word-spacing:-7.083450px;}
.ws99{word-spacing:-6.352368px;}
.ws9b{word-spacing:-6.268416px;}
.ws5b{word-spacing:-6.240432px;}
.ws81{word-spacing:-4.698000px;}
.ws24{word-spacing:-3.132000px;}
.wse{word-spacing:-3.078000px;}
.ws1f{word-spacing:-3.024000px;}
.ws61{word-spacing:-2.970000px;}
.ws86{word-spacing:-2.916000px;}
.ws7e{word-spacing:-2.808000px;}
.wsc0{word-spacing:-2.784000px;}
.ws83{word-spacing:-2.754000px;}
.ws8{word-spacing:-2.736000px;}
.ws69{word-spacing:-2.688000px;}
.ws4e{word-spacing:-2.646000px;}
.wsa4{word-spacing:-2.640000px;}
.wsc2{word-spacing:-2.592000px;}
.wsa8{word-spacing:-2.496000px;}
.ws8a{word-spacing:-2.484000px;}
.ws6c{word-spacing:-2.448000px;}
.ws8f{word-spacing:-2.430000px;}
.ws9{word-spacing:-2.400000px;}
.ws11{word-spacing:-2.322000px;}
.ws62{word-spacing:-2.268000px;}
.ws4b{word-spacing:-2.160000px;}
.ws88{word-spacing:-2.052000px;}
.wsc7{word-spacing:-2.016000px;}
.ws47{word-spacing:-1.998000px;}
.ws49{word-spacing:-1.944000px;}
.ws68{word-spacing:-1.920000px;}
.ws8d{word-spacing:-1.890000px;}
.ws89{word-spacing:-1.836000px;}
.ws4a{word-spacing:-1.782000px;}
.ws22{word-spacing:-1.728000px;}
.ws5e{word-spacing:-1.620000px;}
.wsa0{word-spacing:-1.584000px;}
.ws53{word-spacing:-1.512000px;}
.wsbf{word-spacing:-1.488000px;}
.ws9c{word-spacing:-1.458000px;}
.ws6f{word-spacing:-1.440000px;}
.ws8c{word-spacing:-1.404000px;}
.wsb1{word-spacing:-1.392000px;}
.ws2f{word-spacing:-1.350000px;}
.ws80{word-spacing:-1.296000px;}
.wsac{word-spacing:-1.248000px;}
.ws66{word-spacing:-1.134000px;}
.ws87{word-spacing:-1.080000px;}
.ws2e{word-spacing:-0.972000px;}
.ws57{word-spacing:-0.918000px;}
.wsc9{word-spacing:-0.816000px;}
.ws64{word-spacing:-0.810000px;}
.wsab{word-spacing:-0.768000px;}
.ws6e{word-spacing:-0.720000px;}
.ws85{word-spacing:-0.702000px;}
.wsa2{word-spacing:-0.624000px;}
.ws26{word-spacing:-0.594000px;}
.wsa3{word-spacing:-0.576000px;}
.ws42{word-spacing:-0.540000px;}
.wsc8{word-spacing:-0.480000px;}
.ws71{word-spacing:-0.432000px;}
.ws94{word-spacing:-0.378000px;}
.ws93{word-spacing:-0.324000px;}
.ws15{word-spacing:-0.270000px;}
.wsa7{word-spacing:-0.240000px;}
.ws92{word-spacing:-0.216000px;}
.ws46{word-spacing:-0.162000px;}
.ws72{word-spacing:-0.096000px;}
.ws41{word-spacing:-0.054000px;}
.ws6{word-spacing:0.000000px;}
.ws70{word-spacing:0.048000px;}
.ws67{word-spacing:0.054000px;}
.ws73{word-spacing:0.096000px;}
.ws84{word-spacing:0.108000px;}
.wsa9{word-spacing:0.144000px;}
.ws1b{word-spacing:0.162000px;}
.ws14{word-spacing:0.216000px;}
.ws3f{word-spacing:0.270000px;}
.wsbb{word-spacing:0.288000px;}
.ws5d{word-spacing:0.324000px;}
.ws59{word-spacing:0.336000px;}
.ws4d{word-spacing:0.432000px;}
.ws19{word-spacing:0.486000px;}
.ws58{word-spacing:0.540000px;}
.ws6b{word-spacing:0.576000px;}
.ws29{word-spacing:0.594000px;}
.ws1a{word-spacing:0.648000px;}
.ws30{word-spacing:0.672000px;}
.ws1d{word-spacing:0.702000px;}
.wsad{word-spacing:0.720000px;}
.ws10{word-spacing:0.756000px;}
.ws6d{word-spacing:0.768000px;}
.ws54{word-spacing:0.810000px;}
.wsba{word-spacing:0.816000px;}
.ws8b{word-spacing:0.864000px;}
.ws9d{word-spacing:0.972000px;}
.wsae{word-spacing:1.008000px;}
.ws5f{word-spacing:1.026000px;}
.ws45{word-spacing:1.134000px;}
.ws48{word-spacing:1.188000px;}
.wsa5{word-spacing:1.248000px;}
.ws7f{word-spacing:1.296000px;}
.ws50{word-spacing:1.350000px;}
.wsb0{word-spacing:1.392000px;}
.ws6a{word-spacing:1.440000px;}
.ws91{word-spacing:1.458000px;}
.wsaf{word-spacing:1.536000px;}
.ws27{word-spacing:1.620000px;}
.wsbc{word-spacing:1.632000px;}
.ws1e{word-spacing:1.674000px;}
.wsa1{word-spacing:1.680000px;}
.wsc6{word-spacing:1.776000px;}
.ws55{word-spacing:1.782000px;}
.ws43{word-spacing:1.890000px;}
.ws4f{word-spacing:1.998000px;}
.ws65{word-spacing:2.052000px;}
.ws2d{word-spacing:2.106000px;}
.wsf{word-spacing:2.160000px;}
.wsbe{word-spacing:2.208000px;}
.ws60{word-spacing:2.214000px;}
.wsb9{word-spacing:2.256000px;}
.ws7d{word-spacing:2.268000px;}
.ws8e{word-spacing:2.322000px;}
.ws63{word-spacing:2.376000px;}
.ws2b{word-spacing:2.430000px;}
.ws17{word-spacing:2.484000px;}
.ws56{word-spacing:2.646000px;}
.ws9e{word-spacing:2.688000px;}
.ws51{word-spacing:2.700000px;}
.ws9f{word-spacing:2.736000px;}
.ws28{word-spacing:2.754000px;}
.wsaa{word-spacing:2.784000px;}
.ws44{word-spacing:2.808000px;}
.wsc1{word-spacing:2.880000px;}
.ws12{word-spacing:2.916000px;}
.ws52{word-spacing:2.970000px;}
.ws2c{word-spacing:3.024000px;}
.ws40{word-spacing:3.078000px;}
.ws16{word-spacing:3.132000px;}
.wsc3{word-spacing:3.168000px;}
.wsc5{word-spacing:3.216000px;}
.wsa6{word-spacing:3.264000px;}
.ws90{word-spacing:3.294000px;}
.ws13{word-spacing:3.348000px;}
.ws23{word-spacing:3.780000px;}
.ws2a{word-spacing:3.834000px;}
.ws25{word-spacing:3.996000px;}
.ws82{word-spacing:4.104000px;}
.wsbd{word-spacing:4.320000px;}
.wsc4{word-spacing:4.416000px;}
.ws4c{word-spacing:4.752000px;}
.ws18{word-spacing:4.914000px;}
.ws21{word-spacing:5.184000px;}
.wsb{word-spacing:5.724000px;}
.wsa{word-spacing:5.778000px;}
.ws1c{word-spacing:5.832000px;}
.wsd{word-spacing:6.102000px;}
.wsc{word-spacing:6.156000px;}
.ws20{word-spacing:6.210000px;}
.ws7{word-spacing:11.340000px;}
.ws3e{word-spacing:13.014000px;}
.ws34{word-spacing:107.088000px;}
.ws31{word-spacing:158.976000px;}
._e{margin-left:-7.494000px;}
._a{margin-left:-6.090600px;}
._9{margin-left:-4.797600px;}
._8{margin-left:-2.800800px;}
._0{margin-left:-1.620000px;}
._4{width:1.674000px;}
._d{width:2.808000px;}
._f{width:3.862200px;}
._5{width:5.454000px;}
._3{width:8.586000px;}
._7{width:9.612000px;}
._2{width:11.880000px;}
._6{width:15.552000px;}
._c{width:134.304000px;}
._b{width:146.976000px;}
._1{width:1927.206000px;}
.fc9{color:rgb(79,75,106);}
.fc7{color:rgb(255,0,0);}
.fc5{color:rgb(46,48,146);}
.fc4{color:rgb(237,29,36);}
.fc8{color:rgb(236,0,140);}
.fc3{color:rgb(0,0,3);}
.fc2{color:transparent;}
.fc6{color:rgb(255,255,255);}
.fc1{color:rgb(109,110,113);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:27.984000px;}
.fs2{font-size:31.482000px;}
.fs7{font-size:41.976000px;}
.fse{font-size:41.982000px;}
.fs4{font-size:42.000000px;}
.fs10{font-size:46.650000px;}
.fs1{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:54.000194px;}
.fsf{font-size:55.980000px;}
.fs3{font-size:59.400000px;}
.fs9{font-size:61.033200px;}
.fsc{font-size:66.000000px;}
.fsb{font-size:67.136400px;}
.fs6{font-size:72.000000px;}
.fsa{font-size:73.240200px;}
.fs5{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.065300px;}
.y3{bottom:46.136550px;}
.y5{bottom:78.368100px;}
.y4{bottom:92.768100px;}
.y6c{bottom:96.094500px;}
.y91{bottom:96.307050px;}
.ydd{bottom:96.442350px;}
.y14b{bottom:100.098150px;}
.y125{bottom:101.424150px;}
.y6b{bottom:112.294500px;}
.y90{bottom:112.507050px;}
.ydc{bottom:112.642350px;}
.y14a{bottom:114.498150px;}
.y124{bottom:115.824150px;}
.y6a{bottom:128.494500px;}
.y8f{bottom:128.707050px;}
.ydb{bottom:128.842350px;}
.y149{bottom:128.898150px;}
.y123{bottom:130.224150px;}
.y148{bottom:143.298150px;}
.y122{bottom:144.624150px;}
.y69{bottom:144.694500px;}
.y8e{bottom:144.907050px;}
.yda{bottom:145.042350px;}
.y147{bottom:157.698150px;}
.y121{bottom:159.024150px;}
.y68{bottom:160.894500px;}
.y8d{bottom:161.107050px;}
.yd9{bottom:161.242350px;}
.y29{bottom:162.779550px;}
.y146{bottom:172.098150px;}
.y120{bottom:173.424150px;}
.y67{bottom:177.094500px;}
.y8c{bottom:177.307050px;}
.yd8{bottom:177.442350px;}
.y28{bottom:178.979550px;}
.y145{bottom:186.498150px;}
.y11f{bottom:187.824150px;}
.y66{bottom:193.294500px;}
.y8b{bottom:193.507050px;}
.yd7{bottom:193.642350px;}
.y27{bottom:195.179550px;}
.y144{bottom:200.898150px;}
.y11e{bottom:202.224150px;}
.y65{bottom:209.494500px;}
.y8a{bottom:209.707050px;}
.ye2{bottom:209.842350px;}
.y2e{bottom:211.379550px;}
.y143{bottom:215.298150px;}
.y11d{bottom:216.624150px;}
.y64{bottom:225.694500px;}
.y89{bottom:225.907050px;}
.yd6{bottom:226.042350px;}
.y26{bottom:227.579550px;}
.y142{bottom:229.698150px;}
.y11c{bottom:231.024150px;}
.y63{bottom:241.894500px;}
.y88{bottom:242.107050px;}
.yd5{bottom:242.242350px;}
.y2d{bottom:243.779550px;}
.y141{bottom:244.098150px;}
.y11b{bottom:245.424150px;}
.y62{bottom:258.094500px;}
.y87{bottom:258.307050px;}
.yd4{bottom:258.442350px;}
.y140{bottom:258.498150px;}
.y2c{bottom:259.979550px;}
.y13f{bottom:272.898150px;}
.y61{bottom:274.294500px;}
.y98{bottom:274.507050px;}
.yd3{bottom:274.642350px;}
.y11a{bottom:276.028650px;}
.y25{bottom:276.179550px;}
.y13e{bottom:287.298150px;}
.y60{bottom:290.494500px;}
.y86{bottom:290.707050px;}
.yd2{bottom:290.842350px;}
.y24{bottom:292.379550px;}
.y13d{bottom:301.698150px;}
.y5f{bottom:306.694500px;}
.y97{bottom:306.907050px;}
.yd1{bottom:307.042350px;}
.y2b{bottom:308.579550px;}
.y13c{bottom:316.098150px;}
.y5e{bottom:322.894500px;}
.y96{bottom:323.107050px;}
.ye1{bottom:323.242350px;}
.y119{bottom:323.724150px;}
.y23{bottom:324.779550px;}
.y13b{bottom:330.498150px;}
.y5d{bottom:339.094500px;}
.y85{bottom:339.307050px;}
.yd0{bottom:339.442350px;}
.y118{bottom:339.924150px;}
.y22{bottom:340.979550px;}
.y13a{bottom:344.898150px;}
.y5c{bottom:355.294500px;}
.y84{bottom:355.507050px;}
.ye0{bottom:355.642350px;}
.y117{bottom:356.124150px;}
.y21{bottom:357.179550px;}
.y139{bottom:359.298150px;}
.y5b{bottom:371.494500px;}
.y83{bottom:371.707050px;}
.y116{bottom:372.324150px;}
.y20{bottom:373.379550px;}
.y138{bottom:373.698150px;}
.y5a{bottom:387.694500px;}
.y82{bottom:387.907050px;}
.ycf{bottom:388.042350px;}
.y137{bottom:388.098150px;}
.y115{bottom:388.524150px;}
.y1f{bottom:389.579550px;}
.y136{bottom:402.498150px;}
.y59{bottom:403.894500px;}
.y81{bottom:404.107050px;}
.yce{bottom:404.242350px;}
.y114{bottom:404.724150px;}
.y1e{bottom:405.779550px;}
.y135{bottom:416.898150px;}
.y58{bottom:420.094500px;}
.y80{bottom:420.307050px;}
.ycd{bottom:420.442350px;}
.y1d{bottom:421.979550px;}
.y134{bottom:431.298150px;}
.y57{bottom:436.294500px;}
.y7f{bottom:436.507050px;}
.ycc{bottom:436.642350px;}
.y113{bottom:437.124150px;}
.y1c{bottom:438.179550px;}
.y133{bottom:445.698150px;}
.y56{bottom:452.494500px;}
.y95{bottom:452.707050px;}
.ycb{bottom:452.842350px;}
.y1b{bottom:454.379550px;}
.y132{bottom:460.098150px;}
.y55{bottom:468.694500px;}
.y94{bottom:468.907050px;}
.yca{bottom:469.042350px;}
.y1a{bottom:470.579550px;}
.y131{bottom:474.498150px;}
.y54{bottom:484.894500px;}
.y93{bottom:485.107050px;}
.yc9{bottom:485.242350px;}
.y9d{bottom:485.441700px;}
.y19{bottom:486.779550px;}
.y130{bottom:488.898150px;}
.y173{bottom:495.332850px;}
.y9c{bottom:499.841700px;}
.y53{bottom:501.094500px;}
.y92{bottom:501.307050px;}
.yc8{bottom:501.442350px;}
.y112{bottom:501.924150px;}
.y18{bottom:502.979550px;}
.y12f{bottom:503.298150px;}
.y172{bottom:509.732850px;}
.y9b{bottom:514.241700px;}
.y52{bottom:517.294500px;}
.yc7{bottom:517.642350px;}
.y12e{bottom:517.698150px;}
.y111{bottom:518.124150px;}
.y17{bottom:519.179550px;}
.y171{bottom:524.132850px;}
.y9a{bottom:528.641700px;}
.y12d{bottom:532.098150px;}
.y51{bottom:533.494500px;}
.ydf{bottom:533.842350px;}
.y110{bottom:534.324150px;}
.y16{bottom:535.379550px;}
.y17b{bottom:538.532850px;}
.y99{bottom:543.041700px;}
.ya5{bottom:544.409700px;}
.y12c{bottom:546.498150px;}
.y50{bottom:549.694500px;}
.yc6{bottom:550.042350px;}
.y10f{bottom:550.524150px;}
.y15{bottom:551.579550px;}
.y17a{bottom:552.932850px;}
.ya4{bottom:558.809700px;}
.y12b{bottom:560.898150px;}
.y4f{bottom:565.894500px;}
.yc5{bottom:566.242350px;}
.y10e{bottom:566.724150px;}
.y179{bottom:567.332850px;}
.y14{bottom:567.779550px;}
.ya3{bottom:573.209700px;}
.y12a{bottom:575.298150px;}
.y178{bottom:581.732850px;}
.y4e{bottom:582.094500px;}
.yc4{bottom:582.442350px;}
.y10d{bottom:582.924150px;}
.y13{bottom:583.979550px;}
.ya2{bottom:587.609700px;}
.y129{bottom:589.698150px;}
.y177{bottom:596.132850px;}
.yc3{bottom:598.642350px;}
.y10c{bottom:599.124150px;}
.y12{bottom:600.179550px;}
.ya1{bottom:602.009700px;}
.y128{bottom:604.098150px;}
.y176{bottom:610.532850px;}
.yc2{bottom:614.842350px;}
.y10b{bottom:615.324150px;}
.y11{bottom:616.379550px;}
.ya0{bottom:616.409700px;}
.y127{bottom:618.498150px;}
.y175{bottom:624.932850px;}
.y6d{bottom:628.206750px;}
.y9f{bottom:630.809700px;}
.yc1{bottom:631.042350px;}
.y10a{bottom:631.524150px;}
.y10{bottom:632.579550px;}
.y126{bottom:632.898150px;}
.y174{bottom:639.332850px;}
.y9e{bottom:645.209700px;}
.yc0{bottom:647.242350px;}
.yf{bottom:648.779550px;}
.y39{bottom:651.310350px;}
.y170{bottom:653.732850px;}
.ybf{bottom:663.442350px;}
.ye{bottom:664.979550px;}
.y46{bottom:667.129350px;}
.y16f{bottom:668.132850px;}
.y47{bottom:670.135950px;}
.y48{bottom:670.495950px;}
.y43{bottom:675.523650px;}
.y151{bottom:677.766150px;}
.y72{bottom:679.574723px;}
.ybe{bottom:679.642350px;}
.yd{bottom:681.179550px;}
.y16e{bottom:682.532850px;}
.y150{bottom:692.166150px;}
.ybd{bottom:695.842350px;}
.y16d{bottom:696.932850px;}
.yc{bottom:697.379550px;}
.y14f{bottom:706.566150px;}
.y3b{bottom:710.615100px;}
.y16c{bottom:711.332850px;}
.ybc{bottom:712.042350px;}
.yb{bottom:713.579550px;}
.y3f{bottom:714.557100px;}
.y6f{bottom:720.479400px;}
.y14e{bottom:720.966150px;}
.y16b{bottom:725.732850px;}
.ybb{bottom:728.242350px;}
.ya{bottom:729.779550px;}
.y14d{bottom:735.366150px;}
.y40{bottom:736.791600px;}
.y16a{bottom:740.132850px;}
.y42{bottom:741.343650px;}
.yba{bottom:744.442350px;}
.y9{bottom:745.979550px;}
.y14c{bottom:749.766150px;}
.y3d{bottom:752.924100px;}
.y169{bottom:754.532850px;}
.y7a{bottom:757.497600px;}
.yb9{bottom:760.642350px;}
.y8{bottom:762.179550px;}
.y75{bottom:766.642045px;}
.y168{bottom:768.932850px;}
.ye4{bottom:771.756300px;}
.yb8{bottom:776.842350px;}
.y7{bottom:778.379550px;}
.y7d{bottom:778.964100px;}
.y167{bottom:783.332850px;}
.y3e{bottom:789.063600px;}
.ye3{bottom:789.273150px;}
.y7e{bottom:790.372800px;}
.yb7{bottom:793.042350px;}
.y2a{bottom:794.579550px;}
.y166{bottom:797.732850px;}
.ye7{bottom:800.996763px;}
.yf8{bottom:806.249400px;}
.y44{bottom:808.963650px;}
.yb6{bottom:809.242350px;}
.y6{bottom:810.779550px;}
.y3c{bottom:811.649100px;}
.y108{bottom:811.792533px;}
.y165{bottom:812.132850px;}
.y77{bottom:814.431040px;}
.y41{bottom:817.697100px;}
.y71{bottom:820.678652px;}
.yf3{bottom:823.412250px;}
.y45{bottom:825.403650px;}
.yb5{bottom:825.442350px;}
.y164{bottom:826.532850px;}
.y6e{bottom:836.595750px;}
.y163{bottom:840.932850px;}
.yb4{bottom:841.642350px;}
.y3a{bottom:845.368500px;}
.ye9{bottom:846.631197px;}
.yf9{bottom:846.825750px;}
.y162{bottom:855.332850px;}
.y38{bottom:857.409000px;}
.yb3{bottom:857.842350px;}
.y161{bottom:869.732850px;}
.y37{bottom:873.609000px;}
.yb2{bottom:874.042350px;}
.y4d{bottom:877.675350px;}
.y160{bottom:884.132850px;}
.ye5{bottom:889.421350px;}
.yb1{bottom:890.242350px;}
.y36{bottom:894.304500px;}
.y4c{bottom:897.601350px;}
.y15f{bottom:898.532850px;}
.y109{bottom:898.705769px;}
.yf1{bottom:899.892318px;}
.yed{bottom:904.132500px;}
.yf2{bottom:905.769798px;}
.y35{bottom:906.009000px;}
.yb0{bottom:906.442350px;}
.y107{bottom:911.846135px;}
.y15e{bottom:912.932850px;}
.y74{bottom:913.075950px;}
.y79{bottom:917.465100px;}
.yaf{bottom:922.642350px;}
.y76{bottom:925.664048px;}
.y34{bottom:926.704500px;}
.y7c{bottom:926.870100px;}
.y15d{bottom:927.332850px;}
.yeb{bottom:928.023799px;}
.yfd{bottom:929.418684px;}
.y106{bottom:936.688983px;}
.y103{bottom:938.393550px;}
.yae{bottom:938.842350px;}
.yfb{bottom:939.076050px;}
.y104{bottom:939.303225px;}
.y4b{bottom:941.503350px;}
.y15c{bottom:941.732850px;}
.yee{bottom:943.658553px;}
.yfe{bottom:947.177070px;}
.y100{bottom:947.785809px;}
.y105{bottom:949.010700px;}
.y33{bottom:954.609000px;}
.yad{bottom:955.042350px;}
.y15b{bottom:956.132850px;}
.y4a{bottom:961.429350px;}
.yfc{bottom:962.720906px;}
.ye6{bottom:966.689222px;}
.y15a{bottom:970.532850px;}
.yac{bottom:971.242350px;}
.yf0{bottom:973.066944px;}
.y73{bottom:981.355350px;}
.y102{bottom:983.722401px;}
.y159{bottom:984.932850px;}
.yab{bottom:987.442350px;}
.yf4{bottom:991.253550px;}
.yef{bottom:992.011321px;}
.yff{bottom:994.343847px;}
.y158{bottom:999.332850px;}
.yaa{bottom:1003.642350px;}
.y101{bottom:1004.576960px;}
.yf5{bottom:1007.805300px;}
.yea{bottom:1010.182573px;}
.y157{bottom:1013.732850px;}
.yfa{bottom:1014.267000px;}
.y32{bottom:1019.409000px;}
.yde{bottom:1019.842350px;}
.y156{bottom:1028.132850px;}
.yf6{bottom:1030.391250px;}
.yf7{bottom:1033.786950px;}
.ya9{bottom:1036.042350px;}
.y155{bottom:1042.532850px;}
.y31{bottom:1048.209000px;}
.ya8{bottom:1052.242350px;}
.ye8{bottom:1053.119664px;}
.y154{bottom:1056.932850px;}
.yec{bottom:1063.973250px;}
.y49{bottom:1065.271350px;}
.y7b{bottom:1068.176100px;}
.ya7{bottom:1068.442350px;}
.y70{bottom:1069.116900px;}
.y78{bottom:1070.123100px;}
.y153{bottom:1071.332850px;}
.ya6{bottom:1084.642350px;}
.y152{bottom:1085.732850px;}
.y2f{bottom:1126.325250px;}
.y30{bottom:1127.450250px;}
.y2{bottom:1133.770050px;}
.ha{height:22.415184px;}
.h17{height:29.177490px;}
.h19{height:31.628700px;}
.hb{height:33.360000px;}
.h10{height:33.936000px;}
.h7{height:34.818000px;}
.he{height:36.612000px;}
.hd{height:37.530000px;}
.hf{height:37.530135px;}
.h18{height:37.842480px;}
.h4{height:37.962000px;}
.h2{height:38.448000px;}
.h3{height:39.264000px;}
.h15{height:41.258443px;}
.h12{height:42.418074px;}
.h5{height:44.172000px;}
.h1{height:44.766000px;}
.h16{height:45.870000px;}
.h14{height:46.659798px;}
.h11{height:48.816000px;}
.h6{height:49.242600px;}
.hc{height:50.040000px;}
.h13{height:50.901939px;}
.h9{height:53.485128px;}
.h8{height:78.528000px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:63.779550px;}
.x6{left:69.525000px;}
.x1f{left:80.083950px;}
.x2{left:85.042050px;}
.x49{left:89.291550px;}
.x1e{left:95.378700px;}
.x22{left:97.168636px;}
.x1a{left:106.301850px;}
.x4c{left:110.555850px;}
.x39{left:113.491500px;}
.x29{left:118.195800px;}
.x24{left:124.328410px;}
.xb{left:129.064950px;}
.xc{left:130.563450px;}
.xd{left:138.582450px;}
.x9{left:142.234500px;}
.x48{left:166.916184px;}
.x3f{left:171.192932px;}
.x3e{left:184.847577px;}
.x38{left:188.800200px;}
.xa{left:190.189500px;}
.x3a{left:198.194850px;}
.xe{left:205.204950px;}
.x3b{left:207.749550px;}
.x1c{left:218.012100px;}
.x47{left:229.794725px;}
.xf{left:249.579450px;}
.x34{left:260.293650px;}
.x2e{left:287.414850px;}
.x43{left:289.336912px;}
.x1d{left:306.495450px;}
.x21{left:308.145150px;}
.x23{left:327.752066px;}
.x10{left:334.251450px;}
.x11{left:337.720950px;}
.x20{left:347.696400px;}
.x46{left:355.814193px;}
.x13{left:402.945300px;}
.x33{left:433.291805px;}
.x12{left:446.458650px;}
.x2f{left:447.660144px;}
.x8{left:452.614050px;}
.x3{left:463.256700px;}
.x4{left:484.519200px;}
.x4a{left:488.763750px;}
.x3d{left:496.364512px;}
.x25{left:503.400600px;}
.x1b{left:505.781850px;}
.x4b{left:510.023850px;}
.x32{left:520.845265px;}
.x17{left:524.118300px;}
.x3c{left:531.975744px;}
.x45{left:549.498150px;}
.x28{left:553.342950px;}
.x14{left:568.783500px;}
.x31{left:591.406512px;}
.x44{left:603.025200px;}
.x15{left:604.723500px;}
.x16{left:612.300300px;}
.x41{left:615.530419px;}
.x18{left:620.994300px;}
.x19{left:622.722300px;}
.x42{left:633.508950px;}
.x40{left:649.409893px;}
.x30{left:661.317037px;}
.x27{left:672.030600px;}
.x26{left:674.208600px;}
.x35{left:686.465850px;}
.x37{left:690.826650px;}
.x5{left:703.011000px;}
.x36{left:727.496550px;}
.x2a{left:743.891250px;}
.x2d{left:745.092900px;}
.x2b{left:784.561312px;}
.x2c{left:788.402666px;}
.x7{left:833.444550px;}
@media print{
.v4{vertical-align:-44.377918pt;}
.v6{vertical-align:-30.906133pt;}
.v7{vertical-align:-24.933333pt;}
.v3{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:14.208000pt;}
.v1{vertical-align:15.984000pt;}
.v2{vertical-align:21.312000pt;}
.ls3f{letter-spacing:-1.584000pt;}
.ls40{letter-spacing:-1.488000pt;}
.lsb{letter-spacing:-1.392000pt;}
.ls61{letter-spacing:-1.322667pt;}
.ls3c{letter-spacing:-1.152000pt;}
.ls5e{letter-spacing:-1.066667pt;}
.ls41{letter-spacing:-0.960000pt;}
.ls3d{letter-spacing:-0.864000pt;}
.ls3b{letter-spacing:-0.816000pt;}
.ls24{letter-spacing:-0.768000pt;}
.ls2b{letter-spacing:-0.720000pt;}
.ls5d{letter-spacing:-0.640000pt;}
.ls2c{letter-spacing:-0.624000pt;}
.ls19{letter-spacing:-0.597333pt;}
.ls18{letter-spacing:-0.576000pt;}
.ls4e{letter-spacing:-0.554667pt;}
.ls28{letter-spacing:-0.528000pt;}
.ls35{letter-spacing:-0.512000pt;}
.ls2a{letter-spacing:-0.480000pt;}
.ls62{letter-spacing:-0.469333pt;}
.lse{letter-spacing:-0.432000pt;}
.ls37{letter-spacing:-0.426667pt;}
.ls7{letter-spacing:-0.384000pt;}
.lsc{letter-spacing:-0.336000pt;}
.ls2d{letter-spacing:-0.298667pt;}
.ls26{letter-spacing:-0.288000pt;}
.ls15{letter-spacing:-0.240000pt;}
.ls16{letter-spacing:-0.192000pt;}
.ls33{letter-spacing:-0.170667pt;}
.lsd{letter-spacing:-0.144000pt;}
.ls36{letter-spacing:-0.128000pt;}
.ls34{letter-spacing:-0.099499pt;}
.ls17{letter-spacing:-0.096000pt;}
.ls6{letter-spacing:-0.085333pt;}
.ls53{letter-spacing:-0.074624pt;}
.ls27{letter-spacing:-0.055968pt;}
.lsa{letter-spacing:-0.048000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls55{letter-spacing:0.042667pt;}
.ls12{letter-spacing:0.048000pt;}
.ls47{letter-spacing:0.085333pt;}
.ls2{letter-spacing:0.096000pt;}
.ls5a{letter-spacing:0.128000pt;}
.ls1f{letter-spacing:0.144000pt;}
.ls0{letter-spacing:0.153600pt;}
.ls23{letter-spacing:0.192000pt;}
.ls3e{letter-spacing:0.195888pt;}
.ls49{letter-spacing:0.213333pt;}
.ls13{letter-spacing:0.240000pt;}
.ls4a{letter-spacing:0.256000pt;}
.ls8{letter-spacing:0.288000pt;}
.ls45{letter-spacing:0.298667pt;}
.ls3{letter-spacing:0.336000pt;}
.ls46{letter-spacing:0.341333pt;}
.ls9{letter-spacing:0.384000pt;}
.ls5b{letter-spacing:0.426667pt;}
.ls39{letter-spacing:0.432000pt;}
.ls4b{letter-spacing:0.469333pt;}
.ls1e{letter-spacing:0.480000pt;}
.ls1{letter-spacing:0.489600pt;}
.ls56{letter-spacing:0.512000pt;}
.ls11{letter-spacing:0.528000pt;}
.ls60{letter-spacing:0.554667pt;}
.ls25{letter-spacing:0.576000pt;}
.ls48{letter-spacing:0.597333pt;}
.ls2f{letter-spacing:0.624000pt;}
.ls14{letter-spacing:0.720000pt;}
.ls4d{letter-spacing:0.768000pt;}
.ls63{letter-spacing:0.810667pt;}
.ls10{letter-spacing:0.816000pt;}
.ls64{letter-spacing:0.870613pt;}
.ls52{letter-spacing:0.896000pt;}
.lsf{letter-spacing:0.912000pt;}
.ls54{letter-spacing:0.938667pt;}
.ls29{letter-spacing:0.960000pt;}
.ls4f{letter-spacing:0.981333pt;}
.ls22{letter-spacing:1.008000pt;}
.ls32{letter-spacing:1.056000pt;}
.ls59{letter-spacing:1.066667pt;}
.ls30{letter-spacing:1.104000pt;}
.ls3a{letter-spacing:1.152000pt;}
.ls20{letter-spacing:1.200000pt;}
.ls38{letter-spacing:1.296000pt;}
.ls44{letter-spacing:1.306107pt;}
.ls58{letter-spacing:1.322667pt;}
.ls65{letter-spacing:1.365333pt;}
.ls50{letter-spacing:1.493333pt;}
.ls51{letter-spacing:1.578667pt;}
.ls31{letter-spacing:1.632000pt;}
.ls1b{letter-spacing:1.680006pt;}
.ls5f{letter-spacing:1.706667pt;}
.ls4c{letter-spacing:1.749333pt;}
.ls1a{letter-spacing:2.240000pt;}
.ls5c{letter-spacing:2.304000pt;}
.ls57{letter-spacing:2.346667pt;}
.ls4{letter-spacing:2.640000pt;}
.ls21{letter-spacing:3.643200pt;}
.ls42{letter-spacing:34.920628pt;}
.ls43{letter-spacing:37.799643pt;}
.ls2e{letter-spacing:41.828086pt;}
.ls1c{letter-spacing:236.074667pt;}
.ls1d{letter-spacing:506.154667pt;}
.ws33{word-spacing:-13.680049pt;}
.ws32{word-spacing:-12.000000pt;}
.ws35{word-spacing:-11.376000pt;}
.ws5a{word-spacing:-11.088000pt;}
.wsb8{word-spacing:-11.050667pt;}
.ws78{word-spacing:-10.992000pt;}
.ws2{word-spacing:-10.896000pt;}
.ws3b{word-spacing:-10.800000pt;}
.ws4{word-spacing:-10.752000pt;}
.ws75{word-spacing:-10.704000pt;}
.ws39{word-spacing:-10.656000pt;}
.ws95{word-spacing:-10.635440pt;}
.ws37{word-spacing:-10.608000pt;}
.ws74{word-spacing:-10.560000pt;}
.ws77{word-spacing:-10.512000pt;}
.ws3a{word-spacing:-10.464000pt;}
.ws0{word-spacing:-10.416000pt;}
.ws3d{word-spacing:-10.368000pt;}
.ws3c{word-spacing:-10.272000pt;}
.ws36{word-spacing:-10.224000pt;}
.ws7a{word-spacing:-10.128000pt;}
.ws7c{word-spacing:-10.032000pt;}
.ws7b{word-spacing:-9.792000pt;}
.ws98{word-spacing:-9.685333pt;}
.ws1{word-spacing:-9.600000pt;}
.ws9a{word-spacing:-9.557333pt;}
.ws79{word-spacing:-9.408000pt;}
.ws5c{word-spacing:-9.386667pt;}
.wsb2{word-spacing:-9.344000pt;}
.ws96{word-spacing:-9.329333pt;}
.wsb3{word-spacing:-9.258667pt;}
.ws97{word-spacing:-9.216000pt;}
.wsb4{word-spacing:-9.130667pt;}
.wsb5{word-spacing:-8.704000pt;}
.wsb6{word-spacing:-8.448000pt;}
.ws5{word-spacing:-8.096704pt;}
.ws76{word-spacing:-6.548256pt;}
.wsb7{word-spacing:-6.517163pt;}
.ws3{word-spacing:-6.352368pt;}
.ws38{word-spacing:-6.296400pt;}
.ws99{word-spacing:-5.646549pt;}
.ws9b{word-spacing:-5.571925pt;}
.ws5b{word-spacing:-5.547051pt;}
.ws81{word-spacing:-4.176000pt;}
.ws24{word-spacing:-2.784000pt;}
.wse{word-spacing:-2.736000pt;}
.ws1f{word-spacing:-2.688000pt;}
.ws61{word-spacing:-2.640000pt;}
.ws86{word-spacing:-2.592000pt;}
.ws7e{word-spacing:-2.496000pt;}
.wsc0{word-spacing:-2.474667pt;}
.ws83{word-spacing:-2.448000pt;}
.ws8{word-spacing:-2.432000pt;}
.ws69{word-spacing:-2.389333pt;}
.ws4e{word-spacing:-2.352000pt;}
.wsa4{word-spacing:-2.346667pt;}
.wsc2{word-spacing:-2.304000pt;}
.wsa8{word-spacing:-2.218667pt;}
.ws8a{word-spacing:-2.208000pt;}
.ws6c{word-spacing:-2.176000pt;}
.ws8f{word-spacing:-2.160000pt;}
.ws9{word-spacing:-2.133333pt;}
.ws11{word-spacing:-2.064000pt;}
.ws62{word-spacing:-2.016000pt;}
.ws4b{word-spacing:-1.920000pt;}
.ws88{word-spacing:-1.824000pt;}
.wsc7{word-spacing:-1.792000pt;}
.ws47{word-spacing:-1.776000pt;}
.ws49{word-spacing:-1.728000pt;}
.ws68{word-spacing:-1.706667pt;}
.ws8d{word-spacing:-1.680000pt;}
.ws89{word-spacing:-1.632000pt;}
.ws4a{word-spacing:-1.584000pt;}
.ws22{word-spacing:-1.536000pt;}
.ws5e{word-spacing:-1.440000pt;}
.wsa0{word-spacing:-1.408000pt;}
.ws53{word-spacing:-1.344000pt;}
.wsbf{word-spacing:-1.322667pt;}
.ws9c{word-spacing:-1.296000pt;}
.ws6f{word-spacing:-1.280000pt;}
.ws8c{word-spacing:-1.248000pt;}
.wsb1{word-spacing:-1.237333pt;}
.ws2f{word-spacing:-1.200000pt;}
.ws80{word-spacing:-1.152000pt;}
.wsac{word-spacing:-1.109333pt;}
.ws66{word-spacing:-1.008000pt;}
.ws87{word-spacing:-0.960000pt;}
.ws2e{word-spacing:-0.864000pt;}
.ws57{word-spacing:-0.816000pt;}
.wsc9{word-spacing:-0.725333pt;}
.ws64{word-spacing:-0.720000pt;}
.wsab{word-spacing:-0.682667pt;}
.ws6e{word-spacing:-0.640000pt;}
.ws85{word-spacing:-0.624000pt;}
.wsa2{word-spacing:-0.554667pt;}
.ws26{word-spacing:-0.528000pt;}
.wsa3{word-spacing:-0.512000pt;}
.ws42{word-spacing:-0.480000pt;}
.wsc8{word-spacing:-0.426667pt;}
.ws71{word-spacing:-0.384000pt;}
.ws94{word-spacing:-0.336000pt;}
.ws93{word-spacing:-0.288000pt;}
.ws15{word-spacing:-0.240000pt;}
.wsa7{word-spacing:-0.213333pt;}
.ws92{word-spacing:-0.192000pt;}
.ws46{word-spacing:-0.144000pt;}
.ws72{word-spacing:-0.085333pt;}
.ws41{word-spacing:-0.048000pt;}
.ws6{word-spacing:0.000000pt;}
.ws70{word-spacing:0.042667pt;}
.ws67{word-spacing:0.048000pt;}
.ws73{word-spacing:0.085333pt;}
.ws84{word-spacing:0.096000pt;}
.wsa9{word-spacing:0.128000pt;}
.ws1b{word-spacing:0.144000pt;}
.ws14{word-spacing:0.192000pt;}
.ws3f{word-spacing:0.240000pt;}
.wsbb{word-spacing:0.256000pt;}
.ws5d{word-spacing:0.288000pt;}
.ws59{word-spacing:0.298667pt;}
.ws4d{word-spacing:0.384000pt;}
.ws19{word-spacing:0.432000pt;}
.ws58{word-spacing:0.480000pt;}
.ws6b{word-spacing:0.512000pt;}
.ws29{word-spacing:0.528000pt;}
.ws1a{word-spacing:0.576000pt;}
.ws30{word-spacing:0.597333pt;}
.ws1d{word-spacing:0.624000pt;}
.wsad{word-spacing:0.640000pt;}
.ws10{word-spacing:0.672000pt;}
.ws6d{word-spacing:0.682667pt;}
.ws54{word-spacing:0.720000pt;}
.wsba{word-spacing:0.725333pt;}
.ws8b{word-spacing:0.768000pt;}
.ws9d{word-spacing:0.864000pt;}
.wsae{word-spacing:0.896000pt;}
.ws5f{word-spacing:0.912000pt;}
.ws45{word-spacing:1.008000pt;}
.ws48{word-spacing:1.056000pt;}
.wsa5{word-spacing:1.109333pt;}
.ws7f{word-spacing:1.152000pt;}
.ws50{word-spacing:1.200000pt;}
.wsb0{word-spacing:1.237333pt;}
.ws6a{word-spacing:1.280000pt;}
.ws91{word-spacing:1.296000pt;}
.wsaf{word-spacing:1.365333pt;}
.ws27{word-spacing:1.440000pt;}
.wsbc{word-spacing:1.450667pt;}
.ws1e{word-spacing:1.488000pt;}
.wsa1{word-spacing:1.493333pt;}
.wsc6{word-spacing:1.578667pt;}
.ws55{word-spacing:1.584000pt;}
.ws43{word-spacing:1.680000pt;}
.ws4f{word-spacing:1.776000pt;}
.ws65{word-spacing:1.824000pt;}
.ws2d{word-spacing:1.872000pt;}
.wsf{word-spacing:1.920000pt;}
.wsbe{word-spacing:1.962667pt;}
.ws60{word-spacing:1.968000pt;}
.wsb9{word-spacing:2.005333pt;}
.ws7d{word-spacing:2.016000pt;}
.ws8e{word-spacing:2.064000pt;}
.ws63{word-spacing:2.112000pt;}
.ws2b{word-spacing:2.160000pt;}
.ws17{word-spacing:2.208000pt;}
.ws56{word-spacing:2.352000pt;}
.ws9e{word-spacing:2.389333pt;}
.ws51{word-spacing:2.400000pt;}
.ws9f{word-spacing:2.432000pt;}
.ws28{word-spacing:2.448000pt;}
.wsaa{word-spacing:2.474667pt;}
.ws44{word-spacing:2.496000pt;}
.wsc1{word-spacing:2.560000pt;}
.ws12{word-spacing:2.592000pt;}
.ws52{word-spacing:2.640000pt;}
.ws2c{word-spacing:2.688000pt;}
.ws40{word-spacing:2.736000pt;}
.ws16{word-spacing:2.784000pt;}
.wsc3{word-spacing:2.816000pt;}
.wsc5{word-spacing:2.858667pt;}
.wsa6{word-spacing:2.901333pt;}
.ws90{word-spacing:2.928000pt;}
.ws13{word-spacing:2.976000pt;}
.ws23{word-spacing:3.360000pt;}
.ws2a{word-spacing:3.408000pt;}
.ws25{word-spacing:3.552000pt;}
.ws82{word-spacing:3.648000pt;}
.wsbd{word-spacing:3.840000pt;}
.wsc4{word-spacing:3.925333pt;}
.ws4c{word-spacing:4.224000pt;}
.ws18{word-spacing:4.368000pt;}
.ws21{word-spacing:4.608000pt;}
.wsb{word-spacing:5.088000pt;}
.wsa{word-spacing:5.136000pt;}
.ws1c{word-spacing:5.184000pt;}
.wsd{word-spacing:5.424000pt;}
.wsc{word-spacing:5.472000pt;}
.ws20{word-spacing:5.520000pt;}
.ws7{word-spacing:10.080000pt;}
.ws3e{word-spacing:11.568000pt;}
.ws34{word-spacing:95.189333pt;}
.ws31{word-spacing:141.312000pt;}
._e{margin-left:-6.661333pt;}
._a{margin-left:-5.413867pt;}
._9{margin-left:-4.264533pt;}
._8{margin-left:-2.489600pt;}
._0{margin-left:-1.440000pt;}
._4{width:1.488000pt;}
._d{width:2.496000pt;}
._f{width:3.433067pt;}
._5{width:4.848000pt;}
._3{width:7.632000pt;}
._7{width:8.544000pt;}
._2{width:10.560000pt;}
._6{width:13.824000pt;}
._c{width:119.381333pt;}
._b{width:130.645333pt;}
._1{width:1713.072000pt;}
.fsd{font-size:24.874667pt;}
.fs2{font-size:27.984000pt;}
.fs7{font-size:37.312000pt;}
.fse{font-size:37.317333pt;}
.fs4{font-size:37.333333pt;}
.fs10{font-size:41.466667pt;}
.fs1{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:48.000172pt;}
.fsf{font-size:49.760000pt;}
.fs3{font-size:52.800000pt;}
.fs9{font-size:54.251733pt;}
.fsc{font-size:58.666667pt;}
.fsb{font-size:59.676800pt;}
.fs6{font-size:64.000000pt;}
.fsa{font-size:65.102400pt;}
.fs5{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:40.946933pt;}
.y3{bottom:41.010267pt;}
.y5{bottom:69.660533pt;}
.y4{bottom:82.460533pt;}
.y6c{bottom:85.417333pt;}
.y91{bottom:85.606267pt;}
.ydd{bottom:85.726533pt;}
.y14b{bottom:88.976133pt;}
.y125{bottom:90.154800pt;}
.y6b{bottom:99.817333pt;}
.y90{bottom:100.006267pt;}
.ydc{bottom:100.126533pt;}
.y14a{bottom:101.776133pt;}
.y124{bottom:102.954800pt;}
.y6a{bottom:114.217333pt;}
.y8f{bottom:114.406267pt;}
.ydb{bottom:114.526533pt;}
.y149{bottom:114.576133pt;}
.y123{bottom:115.754800pt;}
.y148{bottom:127.376133pt;}
.y122{bottom:128.554800pt;}
.y69{bottom:128.617333pt;}
.y8e{bottom:128.806267pt;}
.yda{bottom:128.926533pt;}
.y147{bottom:140.176133pt;}
.y121{bottom:141.354800pt;}
.y68{bottom:143.017333pt;}
.y8d{bottom:143.206267pt;}
.yd9{bottom:143.326533pt;}
.y29{bottom:144.692933pt;}
.y146{bottom:152.976133pt;}
.y120{bottom:154.154800pt;}
.y67{bottom:157.417333pt;}
.y8c{bottom:157.606267pt;}
.yd8{bottom:157.726533pt;}
.y28{bottom:159.092933pt;}
.y145{bottom:165.776133pt;}
.y11f{bottom:166.954800pt;}
.y66{bottom:171.817333pt;}
.y8b{bottom:172.006267pt;}
.yd7{bottom:172.126533pt;}
.y27{bottom:173.492933pt;}
.y144{bottom:178.576133pt;}
.y11e{bottom:179.754800pt;}
.y65{bottom:186.217333pt;}
.y8a{bottom:186.406267pt;}
.ye2{bottom:186.526533pt;}
.y2e{bottom:187.892933pt;}
.y143{bottom:191.376133pt;}
.y11d{bottom:192.554800pt;}
.y64{bottom:200.617333pt;}
.y89{bottom:200.806267pt;}
.yd6{bottom:200.926533pt;}
.y26{bottom:202.292933pt;}
.y142{bottom:204.176133pt;}
.y11c{bottom:205.354800pt;}
.y63{bottom:215.017333pt;}
.y88{bottom:215.206267pt;}
.yd5{bottom:215.326533pt;}
.y2d{bottom:216.692933pt;}
.y141{bottom:216.976133pt;}
.y11b{bottom:218.154800pt;}
.y62{bottom:229.417333pt;}
.y87{bottom:229.606267pt;}
.yd4{bottom:229.726533pt;}
.y140{bottom:229.776133pt;}
.y2c{bottom:231.092933pt;}
.y13f{bottom:242.576133pt;}
.y61{bottom:243.817333pt;}
.y98{bottom:244.006267pt;}
.yd3{bottom:244.126533pt;}
.y11a{bottom:245.358800pt;}
.y25{bottom:245.492933pt;}
.y13e{bottom:255.376133pt;}
.y60{bottom:258.217333pt;}
.y86{bottom:258.406267pt;}
.yd2{bottom:258.526533pt;}
.y24{bottom:259.892933pt;}
.y13d{bottom:268.176133pt;}
.y5f{bottom:272.617333pt;}
.y97{bottom:272.806267pt;}
.yd1{bottom:272.926533pt;}
.y2b{bottom:274.292933pt;}
.y13c{bottom:280.976133pt;}
.y5e{bottom:287.017333pt;}
.y96{bottom:287.206267pt;}
.ye1{bottom:287.326533pt;}
.y119{bottom:287.754800pt;}
.y23{bottom:288.692933pt;}
.y13b{bottom:293.776133pt;}
.y5d{bottom:301.417333pt;}
.y85{bottom:301.606267pt;}
.yd0{bottom:301.726533pt;}
.y118{bottom:302.154800pt;}
.y22{bottom:303.092933pt;}
.y13a{bottom:306.576133pt;}
.y5c{bottom:315.817333pt;}
.y84{bottom:316.006267pt;}
.ye0{bottom:316.126533pt;}
.y117{bottom:316.554800pt;}
.y21{bottom:317.492933pt;}
.y139{bottom:319.376133pt;}
.y5b{bottom:330.217333pt;}
.y83{bottom:330.406267pt;}
.y116{bottom:330.954800pt;}
.y20{bottom:331.892933pt;}
.y138{bottom:332.176133pt;}
.y5a{bottom:344.617333pt;}
.y82{bottom:344.806267pt;}
.ycf{bottom:344.926533pt;}
.y137{bottom:344.976133pt;}
.y115{bottom:345.354800pt;}
.y1f{bottom:346.292933pt;}
.y136{bottom:357.776133pt;}
.y59{bottom:359.017333pt;}
.y81{bottom:359.206267pt;}
.yce{bottom:359.326533pt;}
.y114{bottom:359.754800pt;}
.y1e{bottom:360.692933pt;}
.y135{bottom:370.576133pt;}
.y58{bottom:373.417333pt;}
.y80{bottom:373.606267pt;}
.ycd{bottom:373.726533pt;}
.y1d{bottom:375.092933pt;}
.y134{bottom:383.376133pt;}
.y57{bottom:387.817333pt;}
.y7f{bottom:388.006267pt;}
.ycc{bottom:388.126533pt;}
.y113{bottom:388.554800pt;}
.y1c{bottom:389.492933pt;}
.y133{bottom:396.176133pt;}
.y56{bottom:402.217333pt;}
.y95{bottom:402.406267pt;}
.ycb{bottom:402.526533pt;}
.y1b{bottom:403.892933pt;}
.y132{bottom:408.976133pt;}
.y55{bottom:416.617333pt;}
.y94{bottom:416.806267pt;}
.yca{bottom:416.926533pt;}
.y1a{bottom:418.292933pt;}
.y131{bottom:421.776133pt;}
.y54{bottom:431.017333pt;}
.y93{bottom:431.206267pt;}
.yc9{bottom:431.326533pt;}
.y9d{bottom:431.503733pt;}
.y19{bottom:432.692933pt;}
.y130{bottom:434.576133pt;}
.y173{bottom:440.295867pt;}
.y9c{bottom:444.303733pt;}
.y53{bottom:445.417333pt;}
.y92{bottom:445.606267pt;}
.yc8{bottom:445.726533pt;}
.y112{bottom:446.154800pt;}
.y18{bottom:447.092933pt;}
.y12f{bottom:447.376133pt;}
.y172{bottom:453.095867pt;}
.y9b{bottom:457.103733pt;}
.y52{bottom:459.817333pt;}
.yc7{bottom:460.126533pt;}
.y12e{bottom:460.176133pt;}
.y111{bottom:460.554800pt;}
.y17{bottom:461.492933pt;}
.y171{bottom:465.895867pt;}
.y9a{bottom:469.903733pt;}
.y12d{bottom:472.976133pt;}
.y51{bottom:474.217333pt;}
.ydf{bottom:474.526533pt;}
.y110{bottom:474.954800pt;}
.y16{bottom:475.892933pt;}
.y17b{bottom:478.695867pt;}
.y99{bottom:482.703733pt;}
.ya5{bottom:483.919733pt;}
.y12c{bottom:485.776133pt;}
.y50{bottom:488.617333pt;}
.yc6{bottom:488.926533pt;}
.y10f{bottom:489.354800pt;}
.y15{bottom:490.292933pt;}
.y17a{bottom:491.495867pt;}
.ya4{bottom:496.719733pt;}
.y12b{bottom:498.576133pt;}
.y4f{bottom:503.017333pt;}
.yc5{bottom:503.326533pt;}
.y10e{bottom:503.754800pt;}
.y179{bottom:504.295867pt;}
.y14{bottom:504.692933pt;}
.ya3{bottom:509.519733pt;}
.y12a{bottom:511.376133pt;}
.y178{bottom:517.095867pt;}
.y4e{bottom:517.417333pt;}
.yc4{bottom:517.726533pt;}
.y10d{bottom:518.154800pt;}
.y13{bottom:519.092933pt;}
.ya2{bottom:522.319733pt;}
.y129{bottom:524.176133pt;}
.y177{bottom:529.895867pt;}
.yc3{bottom:532.126533pt;}
.y10c{bottom:532.554800pt;}
.y12{bottom:533.492933pt;}
.ya1{bottom:535.119733pt;}
.y128{bottom:536.976133pt;}
.y176{bottom:542.695867pt;}
.yc2{bottom:546.526533pt;}
.y10b{bottom:546.954800pt;}
.y11{bottom:547.892933pt;}
.ya0{bottom:547.919733pt;}
.y127{bottom:549.776133pt;}
.y175{bottom:555.495867pt;}
.y6d{bottom:558.406000pt;}
.y9f{bottom:560.719733pt;}
.yc1{bottom:560.926533pt;}
.y10a{bottom:561.354800pt;}
.y10{bottom:562.292933pt;}
.y126{bottom:562.576133pt;}
.y174{bottom:568.295867pt;}
.y9e{bottom:573.519733pt;}
.yc0{bottom:575.326533pt;}
.yf{bottom:576.692933pt;}
.y39{bottom:578.942533pt;}
.y170{bottom:581.095867pt;}
.ybf{bottom:589.726533pt;}
.ye{bottom:591.092933pt;}
.y46{bottom:593.003867pt;}
.y16f{bottom:593.895867pt;}
.y47{bottom:595.676400pt;}
.y48{bottom:595.996400pt;}
.y43{bottom:600.465467pt;}
.y151{bottom:602.458800pt;}
.y72{bottom:604.066421pt;}
.ybe{bottom:604.126533pt;}
.yd{bottom:605.492933pt;}
.y16e{bottom:606.695867pt;}
.y150{bottom:615.258800pt;}
.ybd{bottom:618.526533pt;}
.y16d{bottom:619.495867pt;}
.yc{bottom:619.892933pt;}
.y14f{bottom:628.058800pt;}
.y3b{bottom:631.657867pt;}
.y16c{bottom:632.295867pt;}
.ybc{bottom:632.926533pt;}
.yb{bottom:634.292933pt;}
.y3f{bottom:635.161867pt;}
.y6f{bottom:640.426133pt;}
.y14e{bottom:640.858800pt;}
.y16b{bottom:645.095867pt;}
.ybb{bottom:647.326533pt;}
.ya{bottom:648.692933pt;}
.y14d{bottom:653.658800pt;}
.y40{bottom:654.925867pt;}
.y16a{bottom:657.895867pt;}
.y42{bottom:658.972133pt;}
.yba{bottom:661.726533pt;}
.y9{bottom:663.092933pt;}
.y14c{bottom:666.458800pt;}
.y3d{bottom:669.265867pt;}
.y169{bottom:670.695867pt;}
.y7a{bottom:673.331200pt;}
.yb9{bottom:676.126533pt;}
.y8{bottom:677.492933pt;}
.y75{bottom:681.459595pt;}
.y168{bottom:683.495867pt;}
.ye4{bottom:686.005600pt;}
.yb8{bottom:690.526533pt;}
.y7{bottom:691.892933pt;}
.y7d{bottom:692.412533pt;}
.y167{bottom:696.295867pt;}
.y3e{bottom:701.389867pt;}
.ye3{bottom:701.576133pt;}
.y7e{bottom:702.553600pt;}
.yb7{bottom:704.926533pt;}
.y2a{bottom:706.292933pt;}
.y166{bottom:709.095867pt;}
.ye7{bottom:711.997123pt;}
.yf8{bottom:716.666133pt;}
.y44{bottom:719.078800pt;}
.yb6{bottom:719.326533pt;}
.y6{bottom:720.692933pt;}
.y3c{bottom:721.465867pt;}
.y108{bottom:721.593363pt;}
.y165{bottom:721.895867pt;}
.y77{bottom:723.938703pt;}
.y41{bottom:726.841867pt;}
.y71{bottom:729.492135pt;}
.yf3{bottom:731.922000pt;}
.y45{bottom:733.692133pt;}
.yb5{bottom:733.726533pt;}
.y164{bottom:734.695867pt;}
.y6e{bottom:743.640667pt;}
.y163{bottom:747.495867pt;}
.yb4{bottom:748.126533pt;}
.y3a{bottom:751.438667pt;}
.ye9{bottom:752.561064pt;}
.yf9{bottom:752.734000pt;}
.y162{bottom:760.295867pt;}
.y38{bottom:762.141333pt;}
.yb3{bottom:762.526533pt;}
.y161{bottom:773.095867pt;}
.y37{bottom:776.541333pt;}
.yb2{bottom:776.926533pt;}
.y4d{bottom:780.155867pt;}
.y160{bottom:785.895867pt;}
.ye5{bottom:790.596756pt;}
.yb1{bottom:791.326533pt;}
.y36{bottom:794.937333pt;}
.y4c{bottom:797.867867pt;}
.y15f{bottom:798.695867pt;}
.y109{bottom:798.849572pt;}
.yf1{bottom:799.904283pt;}
.yed{bottom:803.673333pt;}
.yf2{bottom:805.128709pt;}
.y35{bottom:805.341333pt;}
.yb0{bottom:805.726533pt;}
.y107{bottom:810.529897pt;}
.y15e{bottom:811.495867pt;}
.y74{bottom:811.623067pt;}
.y79{bottom:815.524533pt;}
.yaf{bottom:820.126533pt;}
.y76{bottom:822.812487pt;}
.y34{bottom:823.737333pt;}
.y7c{bottom:823.884533pt;}
.y15d{bottom:824.295867pt;}
.yeb{bottom:824.910044pt;}
.yfd{bottom:826.149941pt;}
.y106{bottom:832.612429pt;}
.y103{bottom:834.127600pt;}
.yae{bottom:834.526533pt;}
.yfb{bottom:834.734267pt;}
.y104{bottom:834.936200pt;}
.y4b{bottom:836.891867pt;}
.y15c{bottom:837.095867pt;}
.yee{bottom:838.807603pt;}
.yfe{bottom:841.935173pt;}
.y100{bottom:842.476275pt;}
.y105{bottom:843.565067pt;}
.y33{bottom:848.541333pt;}
.yad{bottom:848.926533pt;}
.y15b{bottom:849.895867pt;}
.y4a{bottom:854.603867pt;}
.yfc{bottom:855.751916pt;}
.ye6{bottom:859.279308pt;}
.y15a{bottom:862.695867pt;}
.yac{bottom:863.326533pt;}
.yf0{bottom:864.948395pt;}
.y73{bottom:872.315867pt;}
.y102{bottom:874.419912pt;}
.y159{bottom:875.495867pt;}
.yab{bottom:877.726533pt;}
.yf4{bottom:881.114267pt;}
.yef{bottom:881.787841pt;}
.yff{bottom:883.861197pt;}
.y158{bottom:888.295867pt;}
.yaa{bottom:892.126533pt;}
.y101{bottom:892.957297pt;}
.yf5{bottom:895.826933pt;}
.yea{bottom:897.940065pt;}
.y157{bottom:901.095867pt;}
.yfa{bottom:901.570667pt;}
.y32{bottom:906.141333pt;}
.yde{bottom:906.526533pt;}
.y156{bottom:913.895867pt;}
.yf6{bottom:915.903333pt;}
.yf7{bottom:918.921733pt;}
.ya9{bottom:920.926533pt;}
.y155{bottom:926.695867pt;}
.y31{bottom:931.741333pt;}
.ya8{bottom:935.326533pt;}
.ye8{bottom:936.106368pt;}
.y154{bottom:939.495867pt;}
.yec{bottom:945.754000pt;}
.y49{bottom:946.907867pt;}
.y7b{bottom:949.489867pt;}
.ya7{bottom:949.726533pt;}
.y70{bottom:950.326133pt;}
.y78{bottom:951.220533pt;}
.y153{bottom:952.295867pt;}
.ya6{bottom:964.126533pt;}
.y152{bottom:965.095867pt;}
.y2f{bottom:1001.178000pt;}
.y30{bottom:1002.178000pt;}
.y2{bottom:1007.795600pt;}
.ha{height:19.924608pt;}
.h17{height:25.935547pt;}
.h19{height:28.114400pt;}
.hb{height:29.653333pt;}
.h10{height:30.165333pt;}
.h7{height:30.949333pt;}
.he{height:32.544000pt;}
.hd{height:33.360000pt;}
.hf{height:33.360120pt;}
.h18{height:33.637760pt;}
.h4{height:33.744000pt;}
.h2{height:34.176000pt;}
.h3{height:34.901333pt;}
.h15{height:36.674172pt;}
.h12{height:37.704955pt;}
.h5{height:39.264000pt;}
.h1{height:39.792000pt;}
.h16{height:40.773333pt;}
.h14{height:41.475376pt;}
.h11{height:43.392000pt;}
.h6{height:43.771200pt;}
.hc{height:44.480000pt;}
.h13{height:45.246168pt;}
.h9{height:47.542336pt;}
.h8{height:69.802667pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:56.692933pt;}
.x6{left:61.800000pt;}
.x1f{left:71.185733pt;}
.x2{left:75.592933pt;}
.x49{left:79.370267pt;}
.x1e{left:84.781067pt;}
.x22{left:86.372121pt;}
.x1a{left:94.490533pt;}
.x4c{left:98.271867pt;}
.x39{left:100.881333pt;}
.x29{left:105.062933pt;}
.x24{left:110.514142pt;}
.xb{left:114.724400pt;}
.xc{left:116.056400pt;}
.xd{left:123.184400pt;}
.x9{left:126.430667pt;}
.x48{left:148.369941pt;}
.x3f{left:152.171495pt;}
.x3e{left:164.308957pt;}
.x38{left:167.822400pt;}
.xa{left:169.057333pt;}
.x3a{left:176.173200pt;}
.xe{left:182.404400pt;}
.x3b{left:184.666267pt;}
.x1c{left:193.788533pt;}
.x47{left:204.261977pt;}
.xf{left:221.848400pt;}
.x34{left:231.372133pt;}
.x2e{left:255.479867pt;}
.x43{left:257.188367pt;}
.x1d{left:272.440400pt;}
.x21{left:273.906800pt;}
.x23{left:291.335169pt;}
.x10{left:297.112400pt;}
.x11{left:300.196400pt;}
.x20{left:309.063467pt;}
.x46{left:316.279283pt;}
.x13{left:358.173600pt;}
.x33{left:385.148271pt;}
.x12{left:396.852133pt;}
.x2f{left:397.920128pt;}
.x8{left:402.323600pt;}
.x3{left:411.783733pt;}
.x4{left:430.683733pt;}
.x4a{left:434.456667pt;}
.x3d{left:441.212900pt;}
.x25{left:447.467200pt;}
.x1b{left:449.583867pt;}
.x4b{left:453.354533pt;}
.x32{left:462.973569pt;}
.x17{left:465.882933pt;}
.x3c{left:472.867328pt;}
.x45{left:488.442800pt;}
.x28{left:491.860400pt;}
.x14{left:505.585333pt;}
.x31{left:525.694677pt;}
.x44{left:536.022400pt;}
.x15{left:537.532000pt;}
.x16{left:544.266933pt;}
.x41{left:547.138151pt;}
.x18{left:551.994933pt;}
.x19{left:553.530933pt;}
.x42{left:563.119067pt;}
.x40{left:577.253239pt;}
.x30{left:587.837367pt;}
.x27{left:597.360533pt;}
.x26{left:599.296533pt;}
.x35{left:610.191867pt;}
.x37{left:614.068133pt;}
.x5{left:624.898667pt;}
.x36{left:646.663600pt;}
.x2a{left:661.236667pt;}
.x2d{left:662.304800pt;}
.x2b{left:697.387833pt;}
.x2c{left:700.802369pt;}
.x7{left:740.839600pt;}
}




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