
    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_3427e578aeb600949f004c9e.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_5743f3d73d1c379b39f8354a.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_214592c717260feea16eacd4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_32619dc40454fa66ebc89c2d.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_dbe95a31183bc60cdc9c7020.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.939453;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_be24db07e24732a832fb4456.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_f4ea844075fb23eb44297806.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.093262;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_59566722d5dcbb37117976ff.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910645;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_abd61a80db2bd3e0445fece4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_65cec8941c24d14bf9e915d7.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.810000;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_28fb04298f95dceea4363aff.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.893555;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_17c0bff7083e42ba92dd5c16.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_d6f4721156af7105dd92be1f.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.740234;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.701400px;}
.v4{vertical-align:-11.724000px;}
.v3{vertical-align:-2.940000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.620000px;}
.v6{vertical-align:28.203000px;}
.v1{vertical-align:30.381600px;}
.ls8b{letter-spacing:-2.640000px;}
.ls4{letter-spacing:-0.780000px;}
.ls60{letter-spacing:-0.540000px;}
.ls5f{letter-spacing:-0.480000px;}
.ls5{letter-spacing:-0.450000px;}
.ls64{letter-spacing:-0.360000px;}
.ls61{letter-spacing:-0.300000px;}
.ls49{letter-spacing:-0.240000px;}
.ls55{letter-spacing:-0.180000px;}
.ls8d{letter-spacing:-0.144000px;}
.ls35{letter-spacing:-0.120000px;}
.ls89{letter-spacing:-0.096000px;}
.ls36{letter-spacing:-0.060000px;}
.ls4a{letter-spacing:-0.048000px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.004140px;}
.ls87{letter-spacing:0.048000px;}
.ls1e{letter-spacing:0.060000px;}
.ls40{letter-spacing:0.096000px;}
.ls25{letter-spacing:0.120000px;}
.ls83{letter-spacing:0.144000px;}
.ls2e{letter-spacing:0.180000px;}
.ls81{letter-spacing:0.192000px;}
.lsf{letter-spacing:0.240000px;}
.ls8f{letter-spacing:0.288000px;}
.ls13{letter-spacing:0.300000px;}
.ls74{letter-spacing:0.336000px;}
.ls48{letter-spacing:0.349800px;}
.ls8{letter-spacing:0.360000px;}
.ls91{letter-spacing:0.384000px;}
.lsd{letter-spacing:0.420000px;}
.ls75{letter-spacing:0.432000px;}
.ls9{letter-spacing:0.480000px;}
.ls7f{letter-spacing:0.528000px;}
.ls47{letter-spacing:0.528600px;}
.ls10{letter-spacing:0.540000px;}
.ls77{letter-spacing:0.576000px;}
.ls1d{letter-spacing:0.600000px;}
.ls3c{letter-spacing:0.624000px;}
.ls20{letter-spacing:0.660000px;}
.ls70{letter-spacing:0.672000px;}
.ls33{letter-spacing:0.720000px;}
.ls80{letter-spacing:0.768000px;}
.ls2d{letter-spacing:0.780000px;}
.ls41{letter-spacing:0.816000px;}
.ls14{letter-spacing:0.840000px;}
.ls4e{letter-spacing:0.858600px;}
.ls86{letter-spacing:0.864000px;}
.ls12{letter-spacing:0.900000px;}
.ls3f{letter-spacing:0.912000px;}
.ls7{letter-spacing:0.960000px;}
.ls7a{letter-spacing:1.008000px;}
.ls2b{letter-spacing:1.020000px;}
.ls8e{letter-spacing:1.056000px;}
.ls1c{letter-spacing:1.080000px;}
.ls72{letter-spacing:1.104000px;}
.ls6a{letter-spacing:1.132800px;}
.ls22{letter-spacing:1.140000px;}
.ls8a{letter-spacing:1.152000px;}
.ls16{letter-spacing:1.200000px;}
.lse{letter-spacing:1.260000px;}
.ls7b{letter-spacing:1.296000px;}
.ls2f{letter-spacing:1.320000px;}
.ls44{letter-spacing:1.322400px;}
.ls8c{letter-spacing:1.344000px;}
.ls42{letter-spacing:1.380000px;}
.ls19{letter-spacing:1.440000px;}
.ls84{letter-spacing:1.488000px;}
.ls15{letter-spacing:1.500000px;}
.ls88{letter-spacing:1.536000px;}
.lsa{letter-spacing:1.560000px;}
.ls7c{letter-spacing:1.584000px;}
.ls17{letter-spacing:1.620000px;}
.ls6f{letter-spacing:1.632000px;}
.ls54{letter-spacing:1.680000px;}
.ls79{letter-spacing:1.728000px;}
.ls3a{letter-spacing:1.740000px;}
.lsc{letter-spacing:1.800000px;}
.ls18{letter-spacing:1.860000px;}
.ls3e{letter-spacing:1.872000px;}
.ls1a{letter-spacing:1.920000px;}
.ls31{letter-spacing:1.980000px;}
.ls7e{letter-spacing:2.016000px;}
.ls34{letter-spacing:2.040000px;}
.ls78{letter-spacing:2.064000px;}
.ls2a{letter-spacing:2.100000px;}
.ls6{letter-spacing:2.160000px;}
.ls92{letter-spacing:2.208000px;}
.ls1b{letter-spacing:2.220000px;}
.ls21{letter-spacing:2.280000px;}
.ls3d{letter-spacing:2.340000px;}
.ls85{letter-spacing:2.352000px;}
.ls24{letter-spacing:2.400000px;}
.ls3b{letter-spacing:2.460000px;}
.ls4b{letter-spacing:2.520000px;}
.lsb{letter-spacing:2.580000px;}
.ls6e{letter-spacing:2.592000px;}
.ls1f{letter-spacing:2.640000px;}
.ls90{letter-spacing:2.688000px;}
.ls4c{letter-spacing:2.700000px;}
.ls71{letter-spacing:2.784000px;}
.ls39{letter-spacing:2.820000px;}
.ls82{letter-spacing:2.832000px;}
.ls45{letter-spacing:2.880000px;}
.ls4d{letter-spacing:2.940000px;}
.ls26{letter-spacing:3.000000px;}
.ls2c{letter-spacing:3.060000px;}
.ls59{letter-spacing:3.120000px;}
.ls69{letter-spacing:3.180000px;}
.ls11{letter-spacing:3.240000px;}
.ls93{letter-spacing:3.264000px;}
.ls23{letter-spacing:3.300000px;}
.ls58{letter-spacing:3.480000px;}
.ls37{letter-spacing:3.540000px;}
.ls6d{letter-spacing:3.552000px;}
.ls6c{letter-spacing:3.600000px;}
.ls4f{letter-spacing:3.660000px;}
.ls27{letter-spacing:3.720000px;}
.ls66{letter-spacing:3.840000px;}
.ls68{letter-spacing:3.900000px;}
.ls6b{letter-spacing:3.960000px;}
.ls56{letter-spacing:4.020000px;}
.ls76{letter-spacing:4.128000px;}
.ls43{letter-spacing:4.140000px;}
.ls5a{letter-spacing:4.200000px;}
.ls30{letter-spacing:4.320000px;}
.ls28{letter-spacing:4.440000px;}
.ls32{letter-spacing:4.500000px;}
.ls63{letter-spacing:4.560000px;}
.ls51{letter-spacing:4.620000px;}
.ls62{letter-spacing:4.680000px;}
.ls73{letter-spacing:4.704000px;}
.ls5d{letter-spacing:4.740000px;}
.ls5c{letter-spacing:4.800000px;}
.ls29{letter-spacing:5.160000px;}
.ls5e{letter-spacing:5.220000px;}
.ls7d{letter-spacing:5.232000px;}
.ls52{letter-spacing:5.400000px;}
.ls46{letter-spacing:5.460000px;}
.ls53{letter-spacing:5.520000px;}
.ls57{letter-spacing:5.580000px;}
.ls65{letter-spacing:5.760000px;}
.ls5b{letter-spacing:5.820000px;}
.ls38{letter-spacing:5.880000px;}
.ls50{letter-spacing:6.600000px;}
.ls67{letter-spacing:9.420000px;}
.ls0{letter-spacing:59.532876px;}
.ls1{letter-spacing:59.533476px;}
.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;}
}
.ws12{word-spacing:-60.000000px;}
.ws0{word-spacing:-35.194800px;}
.wsbc{word-spacing:-21.180000px;}
.ws8d{word-spacing:-20.820000px;}
.ws69{word-spacing:-20.460000px;}
.ws8e{word-spacing:-20.220000px;}
.ws65{word-spacing:-19.500000px;}
.ws8c{word-spacing:-19.200000px;}
.wsbb{word-spacing:-18.720000px;}
.wsa4{word-spacing:-18.480000px;}
.ws89{word-spacing:-18.120000px;}
.ws64{word-spacing:-17.820000px;}
.wsa8{word-spacing:-17.580000px;}
.ws2{word-spacing:-17.514000px;}
.wsa7{word-spacing:-17.400000px;}
.wsa6{word-spacing:-17.340000px;}
.ws11{word-spacing:-17.280000px;}
.wscf{word-spacing:-17.232000px;}
.ws63{word-spacing:-17.220000px;}
.wsa5{word-spacing:-17.100000px;}
.ws13{word-spacing:-16.980000px;}
.wse{word-spacing:-16.860000px;}
.ws91{word-spacing:-16.740000px;}
.ws3{word-spacing:-16.680000px;}
.ws40{word-spacing:-16.620000px;}
.ws3e{word-spacing:-16.560000px;}
.ws67{word-spacing:-16.500000px;}
.ws3d{word-spacing:-16.440000px;}
.wsa0{word-spacing:-16.380000px;}
.wsa2{word-spacing:-16.320000px;}
.wsa{word-spacing:-16.260000px;}
.wsd{word-spacing:-16.200000px;}
.ws41{word-spacing:-16.080000px;}
.wsba{word-spacing:-15.900000px;}
.wsbd{word-spacing:-15.780000px;}
.ws8f{word-spacing:-15.720000px;}
.ws10{word-spacing:-15.660000px;}
.ws68{word-spacing:-15.600000px;}
.wsc8{word-spacing:-15.552000px;}
.wsc{word-spacing:-15.540000px;}
.wsf{word-spacing:-15.480000px;}
.wsa3{word-spacing:-15.420000px;}
.wsb{word-spacing:-15.240000px;}
.wsa1{word-spacing:-15.180000px;}
.ws3f{word-spacing:-15.120000px;}
.ws90{word-spacing:-15.060000px;}
.ws3c{word-spacing:-15.000000px;}
.ws8b{word-spacing:-14.940000px;}
.ws66{word-spacing:-14.880000px;}
.ws8a{word-spacing:-14.520000px;}
.wsf5{word-spacing:-14.352000px;}
.wsd0{word-spacing:-13.872000px;}
.wsf9{word-spacing:-13.632000px;}
.wsf4{word-spacing:-13.536000px;}
.ws5{word-spacing:-13.344000px;}
.wscd{word-spacing:-13.200000px;}
.wsca{word-spacing:-13.152000px;}
.wscc{word-spacing:-13.104000px;}
.wsf8{word-spacing:-13.056000px;}
.wsf3{word-spacing:-12.912000px;}
.wsd2{word-spacing:-12.720000px;}
.wscb{word-spacing:-12.672000px;}
.wsf6{word-spacing:-12.624000px;}
.ws4{word-spacing:-12.510000px;}
.wsd1{word-spacing:-12.096000px;}
.wsf7{word-spacing:-12.048000px;}
.ws35{word-spacing:-12.000000px;}
.wsc9{word-spacing:-11.904000px;}
.wsd3{word-spacing:-11.856000px;}
.ws1{word-spacing:-10.210662px;}
.wsce{word-spacing:-9.360000px;}
.ws42{word-spacing:-9.094800px;}
.ws43{word-spacing:-8.745000px;}
.ws9b{word-spacing:-5.820000px;}
.ws59{word-spacing:-5.460000px;}
.ws2a{word-spacing:-5.160000px;}
.wsd9{word-spacing:-4.704000px;}
.ws6d{word-spacing:-4.500000px;}
.ws29{word-spacing:-4.440000px;}
.ws2f{word-spacing:-4.320000px;}
.ws58{word-spacing:-4.140000px;}
.wsde{word-spacing:-4.128000px;}
.wsc4{word-spacing:-4.080000px;}
.ws86{word-spacing:-4.020000px;}
.wsc3{word-spacing:-3.900000px;}
.ws104{word-spacing:-3.840000px;}
.ws28{word-spacing:-3.720000px;}
.ws9e{word-spacing:-3.660000px;}
.wsd4{word-spacing:-3.552000px;}
.ws85{word-spacing:-3.480000px;}
.ws23{word-spacing:-3.360000px;}
.ws2c{word-spacing:-3.300000px;}
.ws105{word-spacing:-3.264000px;}
.ws7d{word-spacing:-3.060000px;}
.ws27{word-spacing:-3.000000px;}
.ws6c{word-spacing:-2.940000px;}
.ws7{word-spacing:-2.886000px;}
.wse5{word-spacing:-2.832000px;}
.wsd8{word-spacing:-2.784000px;}
.ws103{word-spacing:-2.736000px;}
.ws1f{word-spacing:-2.700000px;}
.wsb2{word-spacing:-2.640000px;}
.wsd6{word-spacing:-2.592000px;}
.wsc7{word-spacing:-2.520000px;}
.ws39{word-spacing:-2.460000px;}
.ws96{word-spacing:-2.400000px;}
.wsee{word-spacing:-2.352000px;}
.ws46{word-spacing:-2.340000px;}
.ws8{word-spacing:-2.331000px;}
.wsaf{word-spacing:-2.280000px;}
.ws24{word-spacing:-2.220000px;}
.ws50{word-spacing:-2.160000px;}
.ws2b{word-spacing:-2.100000px;}
.wse0{word-spacing:-2.064000px;}
.ws16{word-spacing:-2.040000px;}
.ws60{word-spacing:-1.980000px;}
.ws9c{word-spacing:-1.920000px;}
.ws4a{word-spacing:-1.872000px;}
.ws19{word-spacing:-1.860000px;}
.ws32{word-spacing:-1.800000px;}
.ws9f{word-spacing:-1.740000px;}
.wsea{word-spacing:-1.728000px;}
.ws77{word-spacing:-1.680000px;}
.ws106{word-spacing:-1.632000px;}
.ws54{word-spacing:-1.620000px;}
.wsfb{word-spacing:-1.584000px;}
.ws51{word-spacing:-1.560000px;}
.wsff{word-spacing:-1.536000px;}
.wsed{word-spacing:-1.488000px;}
.ws4f{word-spacing:-1.440000px;}
.ws107{word-spacing:-1.392000px;}
.wsac{word-spacing:-1.380000px;}
.wse8{word-spacing:-1.344000px;}
.ws5b{word-spacing:-1.320000px;}
.wsfd{word-spacing:-1.296000px;}
.ws95{word-spacing:-1.260000px;}
.ws26{word-spacing:-1.200000px;}
.ws5a{word-spacing:-1.140000px;}
.ws55{word-spacing:-1.080000px;}
.wsfe{word-spacing:-1.056000px;}
.wsb8{word-spacing:-1.020000px;}
.wse6{word-spacing:-1.008000px;}
.ws38{word-spacing:-0.960000px;}
.ws4c{word-spacing:-0.912000px;}
.ws7b{word-spacing:-0.900000px;}
.ws4e{word-spacing:-0.864000px;}
.ws44{word-spacing:-0.840000px;}
.ws4d{word-spacing:-0.816000px;}
.ws20{word-spacing:-0.780000px;}
.wsf2{word-spacing:-0.768000px;}
.ws75{word-spacing:-0.720000px;}
.wse3{word-spacing:-0.672000px;}
.ws21{word-spacing:-0.660000px;}
.wseb{word-spacing:-0.624000px;}
.ws6e{word-spacing:-0.600000px;}
.ws102{word-spacing:-0.576000px;}
.wse2{word-spacing:-0.528000px;}
.ws1b{word-spacing:-0.480000px;}
.wsec{word-spacing:-0.432000px;}
.ws37{word-spacing:-0.420000px;}
.wsda{word-spacing:-0.384000px;}
.ws5c{word-spacing:-0.360000px;}
.ws72{word-spacing:-0.300000px;}
.ws22{word-spacing:-0.240000px;}
.wse4{word-spacing:-0.192000px;}
.ws2d{word-spacing:-0.180000px;}
.wse9{word-spacing:-0.144000px;}
.ws2e{word-spacing:-0.120000px;}
.ws1e{word-spacing:-0.060000px;}
.wsf1{word-spacing:-0.048000px;}
.ws6{word-spacing:0.000000px;}
.wsd7{word-spacing:0.048000px;}
.wsb3{word-spacing:0.060000px;}
.ws61{word-spacing:0.096000px;}
.ws1c{word-spacing:0.120000px;}
.wsf0{word-spacing:0.144000px;}
.ws7a{word-spacing:0.180000px;}
.wsdf{word-spacing:0.240000px;}
.ws6a{word-spacing:0.300000px;}
.wsb0{word-spacing:0.360000px;}
.ws98{word-spacing:0.420000px;}
.wsd5{word-spacing:0.432000px;}
.ws9{word-spacing:0.450000px;}
.ws93{word-spacing:0.480000px;}
.ws94{word-spacing:0.540000px;}
.ws3b{word-spacing:0.624000px;}
.ws101{word-spacing:0.768000px;}
.ws6b{word-spacing:0.780000px;}
.wsef{word-spacing:0.816000px;}
.wsb4{word-spacing:0.840000px;}
.wsbf{word-spacing:0.900000px;}
.ws25{word-spacing:1.080000px;}
.ws80{word-spacing:1.140000px;}
.wsdc{word-spacing:1.248000px;}
.wse7{word-spacing:1.296000px;}
.ws92{word-spacing:1.320000px;}
.ws36{word-spacing:1.344000px;}
.ws99{word-spacing:1.440000px;}
.ws97{word-spacing:1.500000px;}
.wsc0{word-spacing:1.620000px;}
.wsab{word-spacing:1.680000px;}
.ws30{word-spacing:1.740000px;}
.ws48{word-spacing:1.800000px;}
.wsbe{word-spacing:1.920000px;}
.ws78{word-spacing:1.980000px;}
.ws17{word-spacing:2.100000px;}
.ws1a{word-spacing:2.160000px;}
.wsb1{word-spacing:2.220000px;}
.ws108{word-spacing:2.256000px;}
.wsb5{word-spacing:2.280000px;}
.ws74{word-spacing:2.340000px;}
.wsfa{word-spacing:2.448000px;}
.ws33{word-spacing:2.460000px;}
.ws31{word-spacing:2.520000px;}
.ws100{word-spacing:2.544000px;}
.ws5f{word-spacing:2.580000px;}
.ws3a{word-spacing:2.688000px;}
.wsb9{word-spacing:2.700000px;}
.wsdd{word-spacing:2.736000px;}
.wsa9{word-spacing:2.880000px;}
.ws87{word-spacing:2.940000px;}
.ws9a{word-spacing:3.060000px;}
.ws73{word-spacing:3.120000px;}
.wse1{word-spacing:3.168000px;}
.ws9d{word-spacing:3.180000px;}
.wsb6{word-spacing:3.240000px;}
.ws62{word-spacing:3.264000px;}
.wsaa{word-spacing:3.300000px;}
.wsc1{word-spacing:3.480000px;}
.ws79{word-spacing:3.540000px;}
.wsfc{word-spacing:3.552000px;}
.ws34{word-spacing:3.600000px;}
.ws70{word-spacing:3.660000px;}
.ws5d{word-spacing:3.720000px;}
.wsdb{word-spacing:3.792000px;}
.ws6f{word-spacing:3.840000px;}
.ws49{word-spacing:3.936000px;}
.ws18{word-spacing:3.960000px;}
.ws4b{word-spacing:3.984000px;}
.wsc2{word-spacing:4.020000px;}
.ws76{word-spacing:4.080000px;}
.ws5e{word-spacing:4.140000px;}
.ws47{word-spacing:4.200000px;}
.wsb7{word-spacing:4.320000px;}
.ws1d{word-spacing:4.440000px;}
.wsc6{word-spacing:4.560000px;}
.ws7c{word-spacing:4.680000px;}
.ws88{word-spacing:4.800000px;}
.wsad{word-spacing:4.860000px;}
.ws14{word-spacing:4.920000px;}
.ws15{word-spacing:4.980000px;}
.ws52{word-spacing:5.040000px;}
.wsae{word-spacing:5.100000px;}
.wsc5{word-spacing:5.520000px;}
.ws7f{word-spacing:5.580000px;}
.ws45{word-spacing:5.760000px;}
.ws56{word-spacing:6.060000px;}
.ws53{word-spacing:6.540000px;}
.ws57{word-spacing:6.780000px;}
.ws71{word-spacing:7.200000px;}
.ws7e{word-spacing:8.040000px;}
.ws81{word-spacing:736.416000px;}
.ws82{word-spacing:784.368000px;}
.ws83{word-spacing:829.632000px;}
.ws84{word-spacing:876.768000px;}
._f{margin-left:-2898.096000px;}
._10{margin-left:-2874.288000px;}
._2{margin-left:-9.368400px;}
._7{margin-left:-7.380000px;}
._1{margin-left:-5.376000px;}
._5{margin-left:-4.170000px;}
._0{margin-left:-2.310000px;}
._6{margin-left:-1.290000px;}
._9{width:1.239600px;}
._4{width:2.326800px;}
._a{width:4.320000px;}
._b{width:5.400000px;}
._8{width:6.960000px;}
._c{width:8.400000px;}
._d{width:9.600000px;}
._e{width:10.620000px;}
._3{width:59.431614px;}
._12{width:671.574000px;}
._13{width:674.262000px;}
._14{width:752.832000px;}
._1b{width:780.918000px;}
._1a{width:783.558000px;}
._18{width:792.816000px;}
._15{width:810.198000px;}
._17{width:890.214000px;}
._16{width:914.214000px;}
._19{width:955.537200px;}
._11{width:1063.488000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:26.235000px;}
.fsa{font-size:34.980000px;}
.fs4{font-size:36.729000px;}
.fs7{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fs9{font-size:48.000000px;}
.fs8{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y2c{bottom:47.777250px;}
.yec{bottom:83.236050px;}
.ye9{bottom:83.566650px;}
.y8c{bottom:83.628600px;}
.y1d7{bottom:83.635350px;}
.ye7{bottom:83.770350px;}
.y61{bottom:83.772600px;}
.y1e9{bottom:83.785350px;}
.y98{bottom:84.298950px;}
.y117{bottom:84.497700px;}
.y1a9{bottom:84.512100px;}
.y17b{bottom:84.820350px;}
.y29{bottom:88.333800px;}
.y240{bottom:89.263500px;}
.y15a{bottom:89.391150px;}
.y280{bottom:95.263500px;}
.yc3{bottom:95.312100px;}
.yeb{bottom:98.980050px;}
.ye8{bottom:99.310650px;}
.y97{bottom:100.042950px;}
.y8b{bottom:101.628600px;}
.y1d6{bottom:101.635350px;}
.ye6{bottom:101.770350px;}
.y60{bottom:101.772600px;}
.y1e8{bottom:101.785350px;}
.y116{bottom:102.497700px;}
.y1a8{bottom:102.512100px;}
.y8f{bottom:102.806700px;}
.y17a{bottom:102.820350px;}
.y28{bottom:103.330050px;}
.y23f{bottom:104.263500px;}
.y159{bottom:105.891150px;}
.y27f{bottom:110.263500px;}
.yc2{bottom:113.312100px;}
.yea{bottom:114.724050px;}
.y96{bottom:115.786950px;}
.y27{bottom:118.330050px;}
.y8e{bottom:118.550700px;}
.y23e{bottom:119.263500px;}
.y8a{bottom:119.628600px;}
.y1d5{bottom:119.635350px;}
.ye5{bottom:119.770350px;}
.y5f{bottom:119.772600px;}
.y1e7{bottom:119.785350px;}
.y115{bottom:120.497700px;}
.y1a7{bottom:120.512100px;}
.y179{bottom:120.820350px;}
.y158{bottom:122.391150px;}
.y27e{bottom:125.263500px;}
.yc1{bottom:131.312100px;}
.y23d{bottom:134.263500px;}
.y89{bottom:137.628600px;}
.y1d4{bottom:137.635350px;}
.ye4{bottom:137.770350px;}
.y5e{bottom:137.772600px;}
.y1e6{bottom:137.785350px;}
.y1a6{bottom:138.512100px;}
.y157{bottom:138.639150px;}
.y178{bottom:138.820350px;}
.y27d{bottom:140.263500px;}
.y23c{bottom:149.263500px;}
.yc0{bottom:149.312100px;}
.y156{bottom:154.887150px;}
.y27c{bottom:155.263500px;}
.y88{bottom:155.628600px;}
.y1d3{bottom:155.635350px;}
.ye3{bottom:155.770350px;}
.y5d{bottom:155.772600px;}
.y1e5{bottom:155.785350px;}
.y114{bottom:156.092700px;}
.y1a5{bottom:156.512100px;}
.y23b{bottom:164.263500px;}
.ybf{bottom:167.312100px;}
.y27b{bottom:170.263500px;}
.y155{bottom:171.387150px;}
.y202{bottom:173.365350px;}
.y87{bottom:173.628600px;}
.y1d2{bottom:173.635350px;}
.ye2{bottom:173.770350px;}
.y5c{bottom:173.772600px;}
.y1e4{bottom:173.785350px;}
.y177{bottom:174.415350px;}
.y1a4{bottom:174.512100px;}
.y23a{bottom:179.263500px;}
.y27a{bottom:185.263500px;}
.ybe{bottom:185.312100px;}
.y154{bottom:187.635150px;}
.y1e3{bottom:191.380350px;}
.y86{bottom:191.628600px;}
.y1d1{bottom:191.635350px;}
.ye1{bottom:191.770350px;}
.y5b{bottom:191.772600px;}
.y113{bottom:192.347700px;}
.y1a3{bottom:192.512100px;}
.y239{bottom:194.263500px;}
.y279{bottom:200.263500px;}
.ybd{bottom:203.312100px;}
.y153{bottom:203.883150px;}
.y238{bottom:209.263500px;}
.y201{bottom:209.365350px;}
.y85{bottom:209.628600px;}
.y1d0{bottom:209.635350px;}
.ye0{bottom:209.770350px;}
.y5a{bottom:209.772600px;}
.y112{bottom:210.347700px;}
.y1a2{bottom:210.512100px;}
.y176{bottom:210.670350px;}
.y278{bottom:215.263500px;}
.y152{bottom:220.186500px;}
.ybc{bottom:221.312100px;}
.y237{bottom:224.263500px;}
.y84{bottom:227.628600px;}
.y1cf{bottom:227.635350px;}
.ydf{bottom:227.770350px;}
.y59{bottom:227.772600px;}
.y1e2{bottom:227.785350px;}
.y111{bottom:228.347700px;}
.y1a1{bottom:228.512100px;}
.y175{bottom:228.670350px;}
.y277{bottom:230.263500px;}
.y151{bottom:236.686500px;}
.y236{bottom:239.263500px;}
.y276{bottom:245.263500px;}
.y83{bottom:245.628600px;}
.y1ce{bottom:245.635350px;}
.yde{bottom:245.770350px;}
.y58{bottom:245.772600px;}
.y1e1{bottom:245.785350px;}
.y110{bottom:246.347700px;}
.y1a0{bottom:246.512100px;}
.y174{bottom:246.670350px;}
.y150{bottom:252.934500px;}
.y235{bottom:254.263500px;}
.ybb{bottom:256.805250px;}
.y275{bottom:260.263500px;}
.y82{bottom:263.628600px;}
.y1cd{bottom:263.635350px;}
.ydd{bottom:263.770350px;}
.y57{bottom:263.772600px;}
.y1e0{bottom:263.785350px;}
.y10f{bottom:264.347700px;}
.y19f{bottom:264.512100px;}
.y173{bottom:264.670350px;}
.y14f{bottom:269.182500px;}
.y234{bottom:269.263500px;}
.y26{bottom:270.064200px;}
.yba{bottom:271.805250px;}
.y274{bottom:275.263500px;}
.y81{bottom:281.628600px;}
.y1cc{bottom:281.635350px;}
.ydc{bottom:281.770350px;}
.y56{bottom:281.772600px;}
.y1df{bottom:281.785350px;}
.y10e{bottom:282.347700px;}
.y19e{bottom:282.512100px;}
.y233{bottom:284.263500px;}
.y14e{bottom:285.682500px;}
.yb9{bottom:286.805250px;}
.y273{bottom:290.263500px;}
.y25{bottom:297.409200px;}
.y232{bottom:299.263500px;}
.y80{bottom:299.628600px;}
.y1cb{bottom:299.635350px;}
.ydb{bottom:299.770350px;}
.y55{bottom:299.772600px;}
.y1de{bottom:299.785350px;}
.y172{bottom:300.265350px;}
.y10d{bottom:300.347700px;}
.y19d{bottom:300.512100px;}
.yb8{bottom:301.805250px;}
.y14d{bottom:301.930500px;}
.y272{bottom:305.263500px;}
.y231{bottom:314.263500px;}
.y24{bottom:315.409200px;}
.yb7{bottom:316.805250px;}
.y7f{bottom:317.628600px;}
.y1ca{bottom:317.635350px;}
.yda{bottom:317.770350px;}
.y54{bottom:317.772600px;}
.y1dd{bottom:317.785350px;}
.y14c{bottom:318.178500px;}
.y10c{bottom:318.347700px;}
.y19c{bottom:318.512100px;}
.y271{bottom:320.263500px;}
.y230{bottom:329.263500px;}
.yb6{bottom:331.805250px;}
.y23{bottom:333.409200px;}
.y14b{bottom:334.426500px;}
.y270{bottom:335.263500px;}
.y7e{bottom:335.628600px;}
.y1c9{bottom:335.635350px;}
.yd9{bottom:335.770350px;}
.y53{bottom:335.772600px;}
.y1dc{bottom:335.785350px;}
.y10b{bottom:336.347700px;}
.y19b{bottom:336.512100px;}
.y171{bottom:336.520350px;}
.y22f{bottom:344.263500px;}
.yb5{bottom:346.805250px;}
.y26f{bottom:350.263500px;}
.y14a{bottom:350.674500px;}
.y22{bottom:351.409200px;}
.y7d{bottom:353.628600px;}
.y1c8{bottom:353.635350px;}
.yd8{bottom:353.770350px;}
.y52{bottom:353.772600px;}
.y1db{bottom:353.785350px;}
.y10a{bottom:354.347700px;}
.y19a{bottom:354.512100px;}
.y170{bottom:354.520350px;}
.y22e{bottom:359.263500px;}
.yb4{bottom:361.805250px;}
.y26e{bottom:365.263500px;}
.y149{bottom:366.922500px;}
.y21{bottom:369.409200px;}
.y7c{bottom:371.628600px;}
.y1c7{bottom:371.635350px;}
.yd7{bottom:371.770350px;}
.y51{bottom:371.772600px;}
.y1da{bottom:371.785350px;}
.y109{bottom:372.347700px;}
.y199{bottom:372.512100px;}
.y16f{bottom:372.520350px;}
.y22d{bottom:374.263500px;}
.yb3{bottom:376.805250px;}
.y26d{bottom:380.263500px;}
.y148{bottom:383.422500px;}
.y20{bottom:387.409200px;}
.y22c{bottom:389.263500px;}
.y7b{bottom:389.628600px;}
.y1c6{bottom:389.635350px;}
.yd6{bottom:389.770350px;}
.y50{bottom:389.772600px;}
.y108{bottom:390.347700px;}
.y16e{bottom:390.520350px;}
.y26c{bottom:395.263500px;}
.y147{bottom:399.922500px;}
.y22b{bottom:404.263500px;}
.y1f{bottom:405.409200px;}
.y200{bottom:407.365350px;}
.y1d9{bottom:407.380350px;}
.y7a{bottom:407.628600px;}
.y1c5{bottom:407.635350px;}
.yd5{bottom:407.770350px;}
.y4f{bottom:407.772600px;}
.yb2{bottom:407.920350px;}
.y198{bottom:408.107100px;}
.y107{bottom:408.347700px;}
.y16d{bottom:408.520350px;}
.y26b{bottom:410.263500px;}
.y146{bottom:416.170500px;}
.y22a{bottom:419.263500px;}
.y1e{bottom:423.409200px;}
.y26a{bottom:425.263500px;}
.yb1{bottom:425.515350px;}
.y1c4{bottom:425.635350px;}
.y79{bottom:425.637600px;}
.yd4{bottom:425.770350px;}
.y4e{bottom:425.772600px;}
.y106{bottom:426.347700px;}
.y16c{bottom:426.520350px;}
.y145{bottom:432.670500px;}
.y229{bottom:434.263500px;}
.y269{bottom:440.263500px;}
.y1d{bottom:441.409200px;}
.y1c3{bottom:443.635350px;}
.y78{bottom:443.637600px;}
.yd3{bottom:443.770350px;}
.y4d{bottom:443.772600px;}
.y197{bottom:443.957100px;}
.y105{bottom:444.347700px;}
.y16b{bottom:444.520350px;}
.y144{bottom:448.918500px;}
.y228{bottom:449.263500px;}
.y268{bottom:455.263500px;}
.y1c{bottom:459.409200px;}
.yb0{bottom:461.365350px;}
.y1c2{bottom:461.635350px;}
.y77{bottom:461.637600px;}
.yd2{bottom:461.770350px;}
.y4c{bottom:461.772600px;}
.y104{bottom:462.347700px;}
.y16a{bottom:462.520350px;}
.y227{bottom:464.263500px;}
.y143{bottom:465.166500px;}
.y267{bottom:470.263500px;}
.y1b{bottom:477.409200px;}
.y226{bottom:479.263500px;}
.yaf{bottom:479.365350px;}
.y1c1{bottom:479.635350px;}
.y76{bottom:479.637600px;}
.yd1{bottom:479.770350px;}
.y4b{bottom:479.772600px;}
.y196{bottom:480.212100px;}
.y103{bottom:480.347700px;}
.y169{bottom:480.520350px;}
.y142{bottom:481.414500px;}
.y266{bottom:485.263500px;}
.y225{bottom:494.263500px;}
.y1a{bottom:495.409200px;}
.yae{bottom:497.365350px;}
.y1c0{bottom:497.635350px;}
.y75{bottom:497.637600px;}
.y141{bottom:497.662500px;}
.yd0{bottom:497.770350px;}
.y4a{bottom:497.772600px;}
.y195{bottom:498.212100px;}
.y102{bottom:498.347700px;}
.y265{bottom:500.263500px;}
.y224{bottom:509.263500px;}
.y19{bottom:513.409200px;}
.y140{bottom:513.910500px;}
.y264{bottom:515.263500px;}
.yad{bottom:515.365350px;}
.y1bf{bottom:515.635350px;}
.y74{bottom:515.637600px;}
.ycf{bottom:515.770350px;}
.y49{bottom:515.772600px;}
.y168{bottom:516.115350px;}
.y194{bottom:516.212100px;}
.y101{bottom:516.347700px;}
.y223{bottom:524.263500px;}
.y263{bottom:530.263500px;}
.y18{bottom:531.409200px;}
.y1be{bottom:533.635350px;}
.y73{bottom:533.637600px;}
.yce{bottom:533.770350px;}
.y48{bottom:533.772600px;}
.y193{bottom:534.212100px;}
.y222{bottom:539.263500px;}
.y262{bottom:545.263500px;}
.y13f{bottom:545.422500px;}
.y17{bottom:549.409200px;}
.yac{bottom:551.230350px;}
.y1bd{bottom:551.635350px;}
.y72{bottom:551.637600px;}
.ycd{bottom:551.770350px;}
.y47{bottom:551.772600px;}
.y100{bottom:551.942700px;}
.y192{bottom:552.212100px;}
.y167{bottom:552.370350px;}
.y221{bottom:554.263500px;}
.y261{bottom:560.263500px;}
.y16{bottom:567.409200px;}
.y220{bottom:569.263500px;}
.y1bc{bottom:569.635350px;}
.y71{bottom:569.637600px;}
.ycc{bottom:569.770350px;}
.y46{bottom:569.772600px;}
.y191{bottom:570.212100px;}
.y166{bottom:570.370350px;}
.y260{bottom:575.263500px;}
.y13e{bottom:580.360350px;}
.y21f{bottom:584.263500px;}
.y15{bottom:585.409200px;}
.y1ff{bottom:587.365350px;}
.y1bb{bottom:587.635350px;}
.y70{bottom:587.637600px;}
.ycb{bottom:587.770350px;}
.y45{bottom:587.772600px;}
.yff{bottom:588.197700px;}
.y190{bottom:588.212100px;}
.y165{bottom:588.370350px;}
.y25f{bottom:590.263500px;}
.y21e{bottom:599.263500px;}
.y13d{bottom:599.860350px;}
.y25e{bottom:605.263500px;}
.y1ba{bottom:605.635350px;}
.y6f{bottom:605.637600px;}
.yab{bottom:605.770350px;}
.y44{bottom:605.772600px;}
.yfe{bottom:606.197700px;}
.y18f{bottom:606.212100px;}
.y164{bottom:606.370350px;}
.y21d{bottom:614.263500px;}
.y25d{bottom:620.263500px;}
.y1b9{bottom:623.635350px;}
.y6e{bottom:623.637600px;}
.yaa{bottom:623.770350px;}
.y43{bottom:623.772600px;}
.yfd{bottom:624.197700px;}
.y18e{bottom:624.212100px;}
.y21c{bottom:629.263500px;}
.y14{bottom:630.567300px;}
.y25c{bottom:635.263500px;}
.y1b8{bottom:641.635350px;}
.y6d{bottom:641.637600px;}
.ya9{bottom:641.770350px;}
.y42{bottom:641.772600px;}
.y13c{bottom:641.950350px;}
.y163{bottom:641.965350px;}
.yfc{bottom:642.197700px;}
.y127{bottom:642.220350px;}
.y13{bottom:643.018050px;}
.y21b{bottom:644.263500px;}
.y25b{bottom:650.263500px;}
.y21a{bottom:659.263500px;}
.y1b7{bottom:659.635350px;}
.y6c{bottom:659.637600px;}
.ya8{bottom:659.770350px;}
.y41{bottom:659.772600px;}
.y18d{bottom:659.807100px;}
.yfb{bottom:660.197700px;}
.y126{bottom:660.220350px;}
.y25a{bottom:665.263500px;}
.y219{bottom:674.263500px;}
.y12{bottom:674.733600px;}
.y13b{bottom:677.545350px;}
.y1b6{bottom:677.635350px;}
.y6b{bottom:677.637600px;}
.ya7{bottom:677.770350px;}
.y40{bottom:677.772600px;}
.y1fe{bottom:677.785350px;}
.yfa{bottom:678.197700px;}
.y162{bottom:678.220350px;}
.y259{bottom:680.263500px;}
.y218{bottom:689.263500px;}
.y11{bottom:693.658800px;}
.y258{bottom:695.263500px;}
.y1b5{bottom:695.635350px;}
.y6a{bottom:695.637600px;}
.y18c{bottom:695.657100px;}
.ya6{bottom:695.770350px;}
.y3f{bottom:695.772600px;}
.y1fd{bottom:695.785350px;}
.y125{bottom:695.815350px;}
.y161{bottom:696.220350px;}
.y10{bottom:701.733600px;}
.y217{bottom:704.263500px;}
.y257{bottom:710.263500px;}
.y1b4{bottom:713.635350px;}
.y69{bottom:713.637600px;}
.ya5{bottom:713.770350px;}
.y3e{bottom:713.772600px;}
.y1fc{bottom:713.785350px;}
.y13a{bottom:713.800350px;}
.yf9{bottom:713.815350px;}
.y160{bottom:714.220350px;}
.y216{bottom:719.263500px;}
.yf{bottom:720.658800px;}
.y256{bottom:725.263500px;}
.ye{bottom:728.733600px;}
.y1b3{bottom:731.635350px;}
.y68{bottom:731.637600px;}
.ya4{bottom:731.770350px;}
.y3d{bottom:731.772600px;}
.y1fb{bottom:731.785350px;}
.y139{bottom:731.800350px;}
.y18b{bottom:731.912100px;}
.y124{bottom:732.070350px;}
.y15f{bottom:732.220350px;}
.y215{bottom:734.263500px;}
.y255{bottom:740.263500px;}
.yd{bottom:747.658800px;}
.y214{bottom:749.263500px;}
.y1b2{bottom:749.635350px;}
.y67{bottom:749.637600px;}
.yf8{bottom:749.665350px;}
.ya3{bottom:749.770350px;}
.y3c{bottom:749.772600px;}
.y1fa{bottom:749.785350px;}
.y138{bottom:749.800350px;}
.y18a{bottom:749.912100px;}
.y123{bottom:750.070350px;}
.y254{bottom:755.263500px;}
.yc{bottom:755.733600px;}
.y213{bottom:764.263500px;}
.y1b1{bottom:767.635350px;}
.y66{bottom:767.637600px;}
.ya2{bottom:767.770350px;}
.y3b{bottom:767.772600px;}
.y1f9{bottom:767.785350px;}
.y137{bottom:767.800350px;}
.y15e{bottom:767.815350px;}
.y189{bottom:767.912100px;}
.y122{bottom:768.070350px;}
.y253{bottom:770.263500px;}
.yb{bottom:774.658950px;}
.y212{bottom:779.263500px;}
.ya{bottom:782.733600px;}
.y252{bottom:785.263500px;}
.y1b0{bottom:785.635350px;}
.y65{bottom:785.637600px;}
.ya1{bottom:785.770350px;}
.y3a{bottom:785.772600px;}
.y1f8{bottom:785.785350px;}
.y136{bottom:785.800350px;}
.y188{bottom:785.912100px;}
.yf7{bottom:785.920350px;}
.y121{bottom:786.070350px;}
.y211{bottom:794.263500px;}
.y251{bottom:800.263500px;}
.y9{bottom:801.658950px;}
.y1d8{bottom:803.230350px;}
.y1af{bottom:803.635350px;}
.y15d{bottom:803.665350px;}
.ya0{bottom:803.770350px;}
.y39{bottom:803.772600px;}
.y1f7{bottom:803.785350px;}
.y135{bottom:803.800350px;}
.y187{bottom:803.912100px;}
.yf6{bottom:803.920350px;}
.y120{bottom:804.070350px;}
.y210{bottom:809.263500px;}
.y250{bottom:815.263500px;}
.y64{bottom:821.232600px;}
.y1ae{bottom:821.635350px;}
.y9f{bottom:821.770350px;}
.y38{bottom:821.772600px;}
.y1f6{bottom:821.785350px;}
.y134{bottom:821.800350px;}
.y186{bottom:821.912100px;}
.yf5{bottom:821.920350px;}
.y11f{bottom:822.070350px;}
.y20f{bottom:824.263500px;}
.y24f{bottom:830.263500px;}
.y8{bottom:830.386200px;}
.y20e{bottom:839.263500px;}
.y1ad{bottom:839.635350px;}
.y9e{bottom:839.770350px;}
.y37{bottom:839.772600px;}
.y1f5{bottom:839.785350px;}
.y133{bottom:839.800350px;}
.y185{bottom:839.912100px;}
.yf4{bottom:839.920350px;}
.y11e{bottom:840.070350px;}
.y24e{bottom:845.263500px;}
.y7{bottom:851.380950px;}
.y20d{bottom:854.263500px;}
.y1ac{bottom:857.635350px;}
.y9d{bottom:857.770350px;}
.y36{bottom:857.772600px;}
.y1f4{bottom:857.785350px;}
.y132{bottom:857.800350px;}
.yf3{bottom:857.920350px;}
.y184{bottom:857.980350px;}
.y11d{bottom:858.070350px;}
.y24d{bottom:860.263500px;}
.y20c{bottom:869.263500px;}
.y24c{bottom:875.263500px;}
.y1ab{bottom:875.635350px;}
.y9c{bottom:875.770350px;}
.y35{bottom:875.772600px;}
.y1f3{bottom:875.785350px;}
.y131{bottom:875.800350px;}
.yf2{bottom:875.920350px;}
.y183{bottom:875.980350px;}
.y11c{bottom:876.070350px;}
.y20b{bottom:884.263500px;}
.y24b{bottom:890.263500px;}
.yca{bottom:893.770350px;}
.y34{bottom:893.772600px;}
.y1f2{bottom:893.785350px;}
.y130{bottom:893.800350px;}
.yf1{bottom:893.920350px;}
.y182{bottom:893.980350px;}
.y11b{bottom:894.070350px;}
.y6{bottom:897.543600px;}
.y20a{bottom:899.263500px;}
.y24a{bottom:905.263500px;}
.y1aa{bottom:911.230350px;}
.y9b{bottom:911.365350px;}
.yc9{bottom:911.770350px;}
.y33{bottom:911.772600px;}
.y1f1{bottom:911.785350px;}
.y12f{bottom:911.800350px;}
.yf0{bottom:911.920350px;}
.y181{bottom:911.980350px;}
.y11a{bottom:912.070350px;}
.y209{bottom:914.263500px;}
.y249{bottom:920.263500px;}
.y208{bottom:929.263500px;}
.y9a{bottom:929.365350px;}
.yc8{bottom:929.770350px;}
.y32{bottom:929.772600px;}
.y1f0{bottom:929.785350px;}
.y12e{bottom:929.800350px;}
.y15c{bottom:929.920350px;}
.y5{bottom:934.004400px;}
.y248{bottom:935.263500px;}
.y207{bottom:944.263500px;}
.yef{bottom:947.515350px;}
.y180{bottom:947.575350px;}
.y119{bottom:947.665350px;}
.y95{bottom:947.770350px;}
.y31{bottom:947.772600px;}
.y1ef{bottom:947.785350px;}
.y12d{bottom:947.800350px;}
.y247{bottom:950.263500px;}
.y206{bottom:959.263500px;}
.y99{bottom:965.230350px;}
.y246{bottom:965.263500px;}
.yee{bottom:965.515350px;}
.y94{bottom:965.770350px;}
.y30{bottom:965.772600px;}
.y1ee{bottom:965.785350px;}
.y12c{bottom:965.800350px;}
.y4{bottom:970.465200px;}
.y205{bottom:974.263500px;}
.y245{bottom:980.263500px;}
.y118{bottom:983.515350px;}
.y93{bottom:983.770350px;}
.y2f{bottom:983.772600px;}
.yc7{bottom:983.777100px;}
.y1ed{bottom:983.785350px;}
.y12b{bottom:983.800350px;}
.y17f{bottom:983.830350px;}
.y204{bottom:989.263500px;}
.y244{bottom:995.263500px;}
.y92{bottom:1001.770350px;}
.y2e{bottom:1001.772600px;}
.yc6{bottom:1001.777100px;}
.y1ec{bottom:1001.785350px;}
.y12a{bottom:1001.800350px;}
.y17e{bottom:1001.830350px;}
.y203{bottom:1004.263500px;}
.y3{bottom:1006.926000px;}
.y243{bottom:1010.263500px;}
.y91{bottom:1019.770350px;}
.y63{bottom:1019.772600px;}
.yc5{bottom:1019.777100px;}
.y1eb{bottom:1019.785350px;}
.y129{bottom:1019.800350px;}
.y17d{bottom:1019.830350px;}
.y242{bottom:1025.263500px;}
.y2d{bottom:1037.367600px;}
.y90{bottom:1037.770350px;}
.y62{bottom:1037.772600px;}
.yc4{bottom:1037.777100px;}
.y1ea{bottom:1037.785350px;}
.y128{bottom:1037.800350px;}
.y17c{bottom:1037.830350px;}
.y241{bottom:1040.263500px;}
.y2{bottom:1069.300350px;}
.y8d{bottom:1132.418700px;}
.yed{bottom:1132.421700px;}
.y281{bottom:1132.423500px;}
.y15b{bottom:1132.431150px;}
.y2b{bottom:1136.092500px;}
.y2a{bottom:1150.492500px;}
.h7{height:19.099797px;}
.h9{height:19.125417px;}
.ha{height:28.412109px;}
.h2{height:30.597656px;}
.he{height:32.783203px;}
.h8{height:32.805176px;}
.h14{height:33.351562px;}
.hf{height:34.968750px;}
.h12{height:41.689453px;}
.h13{height:42.117188px;}
.h10{height:43.681641px;}
.hd{height:43.688137px;}
.hb{height:43.710938px;}
.hc{height:43.740234px;}
.h11{height:52.646484px;}
.h16{height:54.266484px;}
.h3{height:56.786133px;}
.h6{height:57.100316px;}
.h5{height:57.121316px;}
.h15{height:58.895900px;}
.h4{height:92.168262px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:76.535400px;}
.x5{left:96.094500px;}
.x1{left:97.795200px;}
.x1b{left:99.921300px;}
.x22{left:102.047250px;}
.x4{left:106.299150px;}
.x9{left:110.558550px;}
.x1c{left:114.801300px;}
.x14{left:118.855350px;}
.x18{left:123.307350px;}
.x3{left:125.427900px;}
.x11{left:131.800350px;}
.x16{left:147.205350px;}
.x15{left:149.695350px;}
.x13{left:156.775350px;}
.x8{left:190.553550px;}
.x20{left:215.552550px;}
.x17{left:220.975350px;}
.x12{left:224.170350px;}
.x10{left:232.360350px;}
.x6{left:455.041500px;}
.xa{left:457.103550px;}
.x1d{left:474.093300px;}
.x1a{left:478.401150px;}
.x23{left:482.603250px;}
.xc{left:491.153550px;}
.x21{left:503.887350px;}
.x19{left:512.406150px;}
.xb{left:525.323550px;}
.xe{left:663.492300px;}
.x2{left:693.365400px;}
.x1e{left:721.717650px;}
.xd{left:728.391600px;}
.x1f{left:743.868150px;}
.xf{left:749.651400px;}
@media print{
.v2{vertical-align:-19.290133pt;}
.v4{vertical-align:-10.421333pt;}
.v3{vertical-align:-2.613333pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.440000pt;}
.v6{vertical-align:25.069333pt;}
.v1{vertical-align:27.005867pt;}
.ls8b{letter-spacing:-2.346667pt;}
.ls4{letter-spacing:-0.693333pt;}
.ls60{letter-spacing:-0.480000pt;}
.ls5f{letter-spacing:-0.426667pt;}
.ls5{letter-spacing:-0.400000pt;}
.ls64{letter-spacing:-0.320000pt;}
.ls61{letter-spacing:-0.266667pt;}
.ls49{letter-spacing:-0.213333pt;}
.ls55{letter-spacing:-0.160000pt;}
.ls8d{letter-spacing:-0.128000pt;}
.ls35{letter-spacing:-0.106667pt;}
.ls89{letter-spacing:-0.085333pt;}
.ls36{letter-spacing:-0.053333pt;}
.ls4a{letter-spacing:-0.042667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.003680pt;}
.ls87{letter-spacing:0.042667pt;}
.ls1e{letter-spacing:0.053333pt;}
.ls40{letter-spacing:0.085333pt;}
.ls25{letter-spacing:0.106667pt;}
.ls83{letter-spacing:0.128000pt;}
.ls2e{letter-spacing:0.160000pt;}
.ls81{letter-spacing:0.170667pt;}
.lsf{letter-spacing:0.213333pt;}
.ls8f{letter-spacing:0.256000pt;}
.ls13{letter-spacing:0.266667pt;}
.ls74{letter-spacing:0.298667pt;}
.ls48{letter-spacing:0.310933pt;}
.ls8{letter-spacing:0.320000pt;}
.ls91{letter-spacing:0.341333pt;}
.lsd{letter-spacing:0.373333pt;}
.ls75{letter-spacing:0.384000pt;}
.ls9{letter-spacing:0.426667pt;}
.ls7f{letter-spacing:0.469333pt;}
.ls47{letter-spacing:0.469867pt;}
.ls10{letter-spacing:0.480000pt;}
.ls77{letter-spacing:0.512000pt;}
.ls1d{letter-spacing:0.533333pt;}
.ls3c{letter-spacing:0.554667pt;}
.ls20{letter-spacing:0.586667pt;}
.ls70{letter-spacing:0.597333pt;}
.ls33{letter-spacing:0.640000pt;}
.ls80{letter-spacing:0.682667pt;}
.ls2d{letter-spacing:0.693333pt;}
.ls41{letter-spacing:0.725333pt;}
.ls14{letter-spacing:0.746667pt;}
.ls4e{letter-spacing:0.763200pt;}
.ls86{letter-spacing:0.768000pt;}
.ls12{letter-spacing:0.800000pt;}
.ls3f{letter-spacing:0.810667pt;}
.ls7{letter-spacing:0.853333pt;}
.ls7a{letter-spacing:0.896000pt;}
.ls2b{letter-spacing:0.906667pt;}
.ls8e{letter-spacing:0.938667pt;}
.ls1c{letter-spacing:0.960000pt;}
.ls72{letter-spacing:0.981333pt;}
.ls6a{letter-spacing:1.006933pt;}
.ls22{letter-spacing:1.013333pt;}
.ls8a{letter-spacing:1.024000pt;}
.ls16{letter-spacing:1.066667pt;}
.lse{letter-spacing:1.120000pt;}
.ls7b{letter-spacing:1.152000pt;}
.ls2f{letter-spacing:1.173333pt;}
.ls44{letter-spacing:1.175467pt;}
.ls8c{letter-spacing:1.194667pt;}
.ls42{letter-spacing:1.226667pt;}
.ls19{letter-spacing:1.280000pt;}
.ls84{letter-spacing:1.322667pt;}
.ls15{letter-spacing:1.333333pt;}
.ls88{letter-spacing:1.365333pt;}
.lsa{letter-spacing:1.386667pt;}
.ls7c{letter-spacing:1.408000pt;}
.ls17{letter-spacing:1.440000pt;}
.ls6f{letter-spacing:1.450667pt;}
.ls54{letter-spacing:1.493333pt;}
.ls79{letter-spacing:1.536000pt;}
.ls3a{letter-spacing:1.546667pt;}
.lsc{letter-spacing:1.600000pt;}
.ls18{letter-spacing:1.653333pt;}
.ls3e{letter-spacing:1.664000pt;}
.ls1a{letter-spacing:1.706667pt;}
.ls31{letter-spacing:1.760000pt;}
.ls7e{letter-spacing:1.792000pt;}
.ls34{letter-spacing:1.813333pt;}
.ls78{letter-spacing:1.834667pt;}
.ls2a{letter-spacing:1.866667pt;}
.ls6{letter-spacing:1.920000pt;}
.ls92{letter-spacing:1.962667pt;}
.ls1b{letter-spacing:1.973333pt;}
.ls21{letter-spacing:2.026667pt;}
.ls3d{letter-spacing:2.080000pt;}
.ls85{letter-spacing:2.090667pt;}
.ls24{letter-spacing:2.133333pt;}
.ls3b{letter-spacing:2.186667pt;}
.ls4b{letter-spacing:2.240000pt;}
.lsb{letter-spacing:2.293333pt;}
.ls6e{letter-spacing:2.304000pt;}
.ls1f{letter-spacing:2.346667pt;}
.ls90{letter-spacing:2.389333pt;}
.ls4c{letter-spacing:2.400000pt;}
.ls71{letter-spacing:2.474667pt;}
.ls39{letter-spacing:2.506667pt;}
.ls82{letter-spacing:2.517333pt;}
.ls45{letter-spacing:2.560000pt;}
.ls4d{letter-spacing:2.613333pt;}
.ls26{letter-spacing:2.666667pt;}
.ls2c{letter-spacing:2.720000pt;}
.ls59{letter-spacing:2.773333pt;}
.ls69{letter-spacing:2.826667pt;}
.ls11{letter-spacing:2.880000pt;}
.ls93{letter-spacing:2.901333pt;}
.ls23{letter-spacing:2.933333pt;}
.ls58{letter-spacing:3.093333pt;}
.ls37{letter-spacing:3.146667pt;}
.ls6d{letter-spacing:3.157333pt;}
.ls6c{letter-spacing:3.200000pt;}
.ls4f{letter-spacing:3.253333pt;}
.ls27{letter-spacing:3.306667pt;}
.ls66{letter-spacing:3.413333pt;}
.ls68{letter-spacing:3.466667pt;}
.ls6b{letter-spacing:3.520000pt;}
.ls56{letter-spacing:3.573333pt;}
.ls76{letter-spacing:3.669333pt;}
.ls43{letter-spacing:3.680000pt;}
.ls5a{letter-spacing:3.733333pt;}
.ls30{letter-spacing:3.840000pt;}
.ls28{letter-spacing:3.946667pt;}
.ls32{letter-spacing:4.000000pt;}
.ls63{letter-spacing:4.053333pt;}
.ls51{letter-spacing:4.106667pt;}
.ls62{letter-spacing:4.160000pt;}
.ls73{letter-spacing:4.181333pt;}
.ls5d{letter-spacing:4.213333pt;}
.ls5c{letter-spacing:4.266667pt;}
.ls29{letter-spacing:4.586667pt;}
.ls5e{letter-spacing:4.640000pt;}
.ls7d{letter-spacing:4.650667pt;}
.ls52{letter-spacing:4.800000pt;}
.ls46{letter-spacing:4.853333pt;}
.ls53{letter-spacing:4.906667pt;}
.ls57{letter-spacing:4.960000pt;}
.ls65{letter-spacing:5.120000pt;}
.ls5b{letter-spacing:5.173333pt;}
.ls38{letter-spacing:5.226667pt;}
.ls50{letter-spacing:5.866667pt;}
.ls67{letter-spacing:8.373333pt;}
.ls0{letter-spacing:52.918112pt;}
.ls1{letter-spacing:52.918645pt;}
.ws12{word-spacing:-53.333333pt;}
.ws0{word-spacing:-31.284267pt;}
.wsbc{word-spacing:-18.826667pt;}
.ws8d{word-spacing:-18.506667pt;}
.ws69{word-spacing:-18.186667pt;}
.ws8e{word-spacing:-17.973333pt;}
.ws65{word-spacing:-17.333333pt;}
.ws8c{word-spacing:-17.066667pt;}
.wsbb{word-spacing:-16.640000pt;}
.wsa4{word-spacing:-16.426667pt;}
.ws89{word-spacing:-16.106667pt;}
.ws64{word-spacing:-15.840000pt;}
.wsa8{word-spacing:-15.626667pt;}
.ws2{word-spacing:-15.568000pt;}
.wsa7{word-spacing:-15.466667pt;}
.wsa6{word-spacing:-15.413333pt;}
.ws11{word-spacing:-15.360000pt;}
.wscf{word-spacing:-15.317333pt;}
.ws63{word-spacing:-15.306667pt;}
.wsa5{word-spacing:-15.200000pt;}
.ws13{word-spacing:-15.093333pt;}
.wse{word-spacing:-14.986667pt;}
.ws91{word-spacing:-14.880000pt;}
.ws3{word-spacing:-14.826667pt;}
.ws40{word-spacing:-14.773333pt;}
.ws3e{word-spacing:-14.720000pt;}
.ws67{word-spacing:-14.666667pt;}
.ws3d{word-spacing:-14.613333pt;}
.wsa0{word-spacing:-14.560000pt;}
.wsa2{word-spacing:-14.506667pt;}
.wsa{word-spacing:-14.453333pt;}
.wsd{word-spacing:-14.400000pt;}
.ws41{word-spacing:-14.293333pt;}
.wsba{word-spacing:-14.133333pt;}
.wsbd{word-spacing:-14.026667pt;}
.ws8f{word-spacing:-13.973333pt;}
.ws10{word-spacing:-13.920000pt;}
.ws68{word-spacing:-13.866667pt;}
.wsc8{word-spacing:-13.824000pt;}
.wsc{word-spacing:-13.813333pt;}
.wsf{word-spacing:-13.760000pt;}
.wsa3{word-spacing:-13.706667pt;}
.wsb{word-spacing:-13.546667pt;}
.wsa1{word-spacing:-13.493333pt;}
.ws3f{word-spacing:-13.440000pt;}
.ws90{word-spacing:-13.386667pt;}
.ws3c{word-spacing:-13.333333pt;}
.ws8b{word-spacing:-13.280000pt;}
.ws66{word-spacing:-13.226667pt;}
.ws8a{word-spacing:-12.906667pt;}
.wsf5{word-spacing:-12.757333pt;}
.wsd0{word-spacing:-12.330667pt;}
.wsf9{word-spacing:-12.117333pt;}
.wsf4{word-spacing:-12.032000pt;}
.ws5{word-spacing:-11.861333pt;}
.wscd{word-spacing:-11.733333pt;}
.wsca{word-spacing:-11.690667pt;}
.wscc{word-spacing:-11.648000pt;}
.wsf8{word-spacing:-11.605333pt;}
.wsf3{word-spacing:-11.477333pt;}
.wsd2{word-spacing:-11.306667pt;}
.wscb{word-spacing:-11.264000pt;}
.wsf6{word-spacing:-11.221333pt;}
.ws4{word-spacing:-11.120000pt;}
.wsd1{word-spacing:-10.752000pt;}
.wsf7{word-spacing:-10.709333pt;}
.ws35{word-spacing:-10.666667pt;}
.wsc9{word-spacing:-10.581333pt;}
.wsd3{word-spacing:-10.538667pt;}
.ws1{word-spacing:-9.076144pt;}
.wsce{word-spacing:-8.320000pt;}
.ws42{word-spacing:-8.084267pt;}
.ws43{word-spacing:-7.773333pt;}
.ws9b{word-spacing:-5.173333pt;}
.ws59{word-spacing:-4.853333pt;}
.ws2a{word-spacing:-4.586667pt;}
.wsd9{word-spacing:-4.181333pt;}
.ws6d{word-spacing:-4.000000pt;}
.ws29{word-spacing:-3.946667pt;}
.ws2f{word-spacing:-3.840000pt;}
.ws58{word-spacing:-3.680000pt;}
.wsde{word-spacing:-3.669333pt;}
.wsc4{word-spacing:-3.626667pt;}
.ws86{word-spacing:-3.573333pt;}
.wsc3{word-spacing:-3.466667pt;}
.ws104{word-spacing:-3.413333pt;}
.ws28{word-spacing:-3.306667pt;}
.ws9e{word-spacing:-3.253333pt;}
.wsd4{word-spacing:-3.157333pt;}
.ws85{word-spacing:-3.093333pt;}
.ws23{word-spacing:-2.986667pt;}
.ws2c{word-spacing:-2.933333pt;}
.ws105{word-spacing:-2.901333pt;}
.ws7d{word-spacing:-2.720000pt;}
.ws27{word-spacing:-2.666667pt;}
.ws6c{word-spacing:-2.613333pt;}
.ws7{word-spacing:-2.565333pt;}
.wse5{word-spacing:-2.517333pt;}
.wsd8{word-spacing:-2.474667pt;}
.ws103{word-spacing:-2.432000pt;}
.ws1f{word-spacing:-2.400000pt;}
.wsb2{word-spacing:-2.346667pt;}
.wsd6{word-spacing:-2.304000pt;}
.wsc7{word-spacing:-2.240000pt;}
.ws39{word-spacing:-2.186667pt;}
.ws96{word-spacing:-2.133333pt;}
.wsee{word-spacing:-2.090667pt;}
.ws46{word-spacing:-2.080000pt;}
.ws8{word-spacing:-2.072000pt;}
.wsaf{word-spacing:-2.026667pt;}
.ws24{word-spacing:-1.973333pt;}
.ws50{word-spacing:-1.920000pt;}
.ws2b{word-spacing:-1.866667pt;}
.wse0{word-spacing:-1.834667pt;}
.ws16{word-spacing:-1.813333pt;}
.ws60{word-spacing:-1.760000pt;}
.ws9c{word-spacing:-1.706667pt;}
.ws4a{word-spacing:-1.664000pt;}
.ws19{word-spacing:-1.653333pt;}
.ws32{word-spacing:-1.600000pt;}
.ws9f{word-spacing:-1.546667pt;}
.wsea{word-spacing:-1.536000pt;}
.ws77{word-spacing:-1.493333pt;}
.ws106{word-spacing:-1.450667pt;}
.ws54{word-spacing:-1.440000pt;}
.wsfb{word-spacing:-1.408000pt;}
.ws51{word-spacing:-1.386667pt;}
.wsff{word-spacing:-1.365333pt;}
.wsed{word-spacing:-1.322667pt;}
.ws4f{word-spacing:-1.280000pt;}
.ws107{word-spacing:-1.237333pt;}
.wsac{word-spacing:-1.226667pt;}
.wse8{word-spacing:-1.194667pt;}
.ws5b{word-spacing:-1.173333pt;}
.wsfd{word-spacing:-1.152000pt;}
.ws95{word-spacing:-1.120000pt;}
.ws26{word-spacing:-1.066667pt;}
.ws5a{word-spacing:-1.013333pt;}
.ws55{word-spacing:-0.960000pt;}
.wsfe{word-spacing:-0.938667pt;}
.wsb8{word-spacing:-0.906667pt;}
.wse6{word-spacing:-0.896000pt;}
.ws38{word-spacing:-0.853333pt;}
.ws4c{word-spacing:-0.810667pt;}
.ws7b{word-spacing:-0.800000pt;}
.ws4e{word-spacing:-0.768000pt;}
.ws44{word-spacing:-0.746667pt;}
.ws4d{word-spacing:-0.725333pt;}
.ws20{word-spacing:-0.693333pt;}
.wsf2{word-spacing:-0.682667pt;}
.ws75{word-spacing:-0.640000pt;}
.wse3{word-spacing:-0.597333pt;}
.ws21{word-spacing:-0.586667pt;}
.wseb{word-spacing:-0.554667pt;}
.ws6e{word-spacing:-0.533333pt;}
.ws102{word-spacing:-0.512000pt;}
.wse2{word-spacing:-0.469333pt;}
.ws1b{word-spacing:-0.426667pt;}
.wsec{word-spacing:-0.384000pt;}
.ws37{word-spacing:-0.373333pt;}
.wsda{word-spacing:-0.341333pt;}
.ws5c{word-spacing:-0.320000pt;}
.ws72{word-spacing:-0.266667pt;}
.ws22{word-spacing:-0.213333pt;}
.wse4{word-spacing:-0.170667pt;}
.ws2d{word-spacing:-0.160000pt;}
.wse9{word-spacing:-0.128000pt;}
.ws2e{word-spacing:-0.106667pt;}
.ws1e{word-spacing:-0.053333pt;}
.wsf1{word-spacing:-0.042667pt;}
.ws6{word-spacing:0.000000pt;}
.wsd7{word-spacing:0.042667pt;}
.wsb3{word-spacing:0.053333pt;}
.ws61{word-spacing:0.085333pt;}
.ws1c{word-spacing:0.106667pt;}
.wsf0{word-spacing:0.128000pt;}
.ws7a{word-spacing:0.160000pt;}
.wsdf{word-spacing:0.213333pt;}
.ws6a{word-spacing:0.266667pt;}
.wsb0{word-spacing:0.320000pt;}
.ws98{word-spacing:0.373333pt;}
.wsd5{word-spacing:0.384000pt;}
.ws9{word-spacing:0.400000pt;}
.ws93{word-spacing:0.426667pt;}
.ws94{word-spacing:0.480000pt;}
.ws3b{word-spacing:0.554667pt;}
.ws101{word-spacing:0.682667pt;}
.ws6b{word-spacing:0.693333pt;}
.wsef{word-spacing:0.725333pt;}
.wsb4{word-spacing:0.746667pt;}
.wsbf{word-spacing:0.800000pt;}
.ws25{word-spacing:0.960000pt;}
.ws80{word-spacing:1.013333pt;}
.wsdc{word-spacing:1.109333pt;}
.wse7{word-spacing:1.152000pt;}
.ws92{word-spacing:1.173333pt;}
.ws36{word-spacing:1.194667pt;}
.ws99{word-spacing:1.280000pt;}
.ws97{word-spacing:1.333333pt;}
.wsc0{word-spacing:1.440000pt;}
.wsab{word-spacing:1.493333pt;}
.ws30{word-spacing:1.546667pt;}
.ws48{word-spacing:1.600000pt;}
.wsbe{word-spacing:1.706667pt;}
.ws78{word-spacing:1.760000pt;}
.ws17{word-spacing:1.866667pt;}
.ws1a{word-spacing:1.920000pt;}
.wsb1{word-spacing:1.973333pt;}
.ws108{word-spacing:2.005333pt;}
.wsb5{word-spacing:2.026667pt;}
.ws74{word-spacing:2.080000pt;}
.wsfa{word-spacing:2.176000pt;}
.ws33{word-spacing:2.186667pt;}
.ws31{word-spacing:2.240000pt;}
.ws100{word-spacing:2.261333pt;}
.ws5f{word-spacing:2.293333pt;}
.ws3a{word-spacing:2.389333pt;}
.wsb9{word-spacing:2.400000pt;}
.wsdd{word-spacing:2.432000pt;}
.wsa9{word-spacing:2.560000pt;}
.ws87{word-spacing:2.613333pt;}
.ws9a{word-spacing:2.720000pt;}
.ws73{word-spacing:2.773333pt;}
.wse1{word-spacing:2.816000pt;}
.ws9d{word-spacing:2.826667pt;}
.wsb6{word-spacing:2.880000pt;}
.ws62{word-spacing:2.901333pt;}
.wsaa{word-spacing:2.933333pt;}
.wsc1{word-spacing:3.093333pt;}
.ws79{word-spacing:3.146667pt;}
.wsfc{word-spacing:3.157333pt;}
.ws34{word-spacing:3.200000pt;}
.ws70{word-spacing:3.253333pt;}
.ws5d{word-spacing:3.306667pt;}
.wsdb{word-spacing:3.370667pt;}
.ws6f{word-spacing:3.413333pt;}
.ws49{word-spacing:3.498667pt;}
.ws18{word-spacing:3.520000pt;}
.ws4b{word-spacing:3.541333pt;}
.wsc2{word-spacing:3.573333pt;}
.ws76{word-spacing:3.626667pt;}
.ws5e{word-spacing:3.680000pt;}
.ws47{word-spacing:3.733333pt;}
.wsb7{word-spacing:3.840000pt;}
.ws1d{word-spacing:3.946667pt;}
.wsc6{word-spacing:4.053333pt;}
.ws7c{word-spacing:4.160000pt;}
.ws88{word-spacing:4.266667pt;}
.wsad{word-spacing:4.320000pt;}
.ws14{word-spacing:4.373333pt;}
.ws15{word-spacing:4.426667pt;}
.ws52{word-spacing:4.480000pt;}
.wsae{word-spacing:4.533333pt;}
.wsc5{word-spacing:4.906667pt;}
.ws7f{word-spacing:4.960000pt;}
.ws45{word-spacing:5.120000pt;}
.ws56{word-spacing:5.386667pt;}
.ws53{word-spacing:5.813333pt;}
.ws57{word-spacing:6.026667pt;}
.ws71{word-spacing:6.400000pt;}
.ws7e{word-spacing:7.146667pt;}
.ws81{word-spacing:654.592000pt;}
.ws82{word-spacing:697.216000pt;}
.ws83{word-spacing:737.450667pt;}
.ws84{word-spacing:779.349333pt;}
._f{margin-left:-2576.085333pt;}
._10{margin-left:-2554.922667pt;}
._2{margin-left:-8.327467pt;}
._7{margin-left:-6.560000pt;}
._1{margin-left:-4.778667pt;}
._5{margin-left:-3.706667pt;}
._0{margin-left:-2.053333pt;}
._6{margin-left:-1.146667pt;}
._9{width:1.101867pt;}
._4{width:2.068267pt;}
._a{width:3.840000pt;}
._b{width:4.800000pt;}
._8{width:6.186667pt;}
._c{width:7.466667pt;}
._d{width:8.533333pt;}
._e{width:9.440000pt;}
._3{width:52.828101pt;}
._12{width:596.954667pt;}
._13{width:599.344000pt;}
._14{width:669.184000pt;}
._1b{width:694.149333pt;}
._1a{width:696.496000pt;}
._18{width:704.725333pt;}
._15{width:720.176000pt;}
._17{width:791.301333pt;}
._16{width:812.634667pt;}
._19{width:849.366400pt;}
._11{width:945.322667pt;}
.fs5{font-size:23.320000pt;}
.fsa{font-size:31.093333pt;}
.fs4{font-size:32.648000pt;}
.fs7{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fs9{font-size:42.666667pt;}
.fs8{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y2c{bottom:42.468667pt;}
.yec{bottom:73.987600pt;}
.ye9{bottom:74.281467pt;}
.y8c{bottom:74.336533pt;}
.y1d7{bottom:74.342533pt;}
.ye7{bottom:74.462533pt;}
.y61{bottom:74.464533pt;}
.y1e9{bottom:74.475867pt;}
.y98{bottom:74.932400pt;}
.y117{bottom:75.109067pt;}
.y1a9{bottom:75.121867pt;}
.y17b{bottom:75.395867pt;}
.y29{bottom:78.518933pt;}
.y240{bottom:79.345333pt;}
.y15a{bottom:79.458800pt;}
.y280{bottom:84.678667pt;}
.yc3{bottom:84.721867pt;}
.yeb{bottom:87.982267pt;}
.ye8{bottom:88.276133pt;}
.y97{bottom:88.927067pt;}
.y8b{bottom:90.336533pt;}
.y1d6{bottom:90.342533pt;}
.ye6{bottom:90.462533pt;}
.y60{bottom:90.464533pt;}
.y1e8{bottom:90.475867pt;}
.y116{bottom:91.109067pt;}
.y1a8{bottom:91.121867pt;}
.y8f{bottom:91.383733pt;}
.y17a{bottom:91.395867pt;}
.y28{bottom:91.848933pt;}
.y23f{bottom:92.678667pt;}
.y159{bottom:94.125467pt;}
.y27f{bottom:98.012000pt;}
.yc2{bottom:100.721867pt;}
.yea{bottom:101.976933pt;}
.y96{bottom:102.921733pt;}
.y27{bottom:105.182267pt;}
.y8e{bottom:105.378400pt;}
.y23e{bottom:106.012000pt;}
.y8a{bottom:106.336533pt;}
.y1d5{bottom:106.342533pt;}
.ye5{bottom:106.462533pt;}
.y5f{bottom:106.464533pt;}
.y1e7{bottom:106.475867pt;}
.y115{bottom:107.109067pt;}
.y1a7{bottom:107.121867pt;}
.y179{bottom:107.395867pt;}
.y158{bottom:108.792133pt;}
.y27e{bottom:111.345333pt;}
.yc1{bottom:116.721867pt;}
.y23d{bottom:119.345333pt;}
.y89{bottom:122.336533pt;}
.y1d4{bottom:122.342533pt;}
.ye4{bottom:122.462533pt;}
.y5e{bottom:122.464533pt;}
.y1e6{bottom:122.475867pt;}
.y1a6{bottom:123.121867pt;}
.y157{bottom:123.234800pt;}
.y178{bottom:123.395867pt;}
.y27d{bottom:124.678667pt;}
.y23c{bottom:132.678667pt;}
.yc0{bottom:132.721867pt;}
.y156{bottom:137.677467pt;}
.y27c{bottom:138.012000pt;}
.y88{bottom:138.336533pt;}
.y1d3{bottom:138.342533pt;}
.ye3{bottom:138.462533pt;}
.y5d{bottom:138.464533pt;}
.y1e5{bottom:138.475867pt;}
.y114{bottom:138.749067pt;}
.y1a5{bottom:139.121867pt;}
.y23b{bottom:146.012000pt;}
.ybf{bottom:148.721867pt;}
.y27b{bottom:151.345333pt;}
.y155{bottom:152.344133pt;}
.y202{bottom:154.102533pt;}
.y87{bottom:154.336533pt;}
.y1d2{bottom:154.342533pt;}
.ye2{bottom:154.462533pt;}
.y5c{bottom:154.464533pt;}
.y1e4{bottom:154.475867pt;}
.y177{bottom:155.035867pt;}
.y1a4{bottom:155.121867pt;}
.y23a{bottom:159.345333pt;}
.y27a{bottom:164.678667pt;}
.ybe{bottom:164.721867pt;}
.y154{bottom:166.786800pt;}
.y1e3{bottom:170.115867pt;}
.y86{bottom:170.336533pt;}
.y1d1{bottom:170.342533pt;}
.ye1{bottom:170.462533pt;}
.y5b{bottom:170.464533pt;}
.y113{bottom:170.975733pt;}
.y1a3{bottom:171.121867pt;}
.y239{bottom:172.678667pt;}
.y279{bottom:178.012000pt;}
.ybd{bottom:180.721867pt;}
.y153{bottom:181.229467pt;}
.y238{bottom:186.012000pt;}
.y201{bottom:186.102533pt;}
.y85{bottom:186.336533pt;}
.y1d0{bottom:186.342533pt;}
.ye0{bottom:186.462533pt;}
.y5a{bottom:186.464533pt;}
.y112{bottom:186.975733pt;}
.y1a2{bottom:187.121867pt;}
.y176{bottom:187.262533pt;}
.y278{bottom:191.345333pt;}
.y152{bottom:195.721333pt;}
.ybc{bottom:196.721867pt;}
.y237{bottom:199.345333pt;}
.y84{bottom:202.336533pt;}
.y1cf{bottom:202.342533pt;}
.ydf{bottom:202.462533pt;}
.y59{bottom:202.464533pt;}
.y1e2{bottom:202.475867pt;}
.y111{bottom:202.975733pt;}
.y1a1{bottom:203.121867pt;}
.y175{bottom:203.262533pt;}
.y277{bottom:204.678667pt;}
.y151{bottom:210.388000pt;}
.y236{bottom:212.678667pt;}
.y276{bottom:218.012000pt;}
.y83{bottom:218.336533pt;}
.y1ce{bottom:218.342533pt;}
.yde{bottom:218.462533pt;}
.y58{bottom:218.464533pt;}
.y1e1{bottom:218.475867pt;}
.y110{bottom:218.975733pt;}
.y1a0{bottom:219.121867pt;}
.y174{bottom:219.262533pt;}
.y150{bottom:224.830667pt;}
.y235{bottom:226.012000pt;}
.ybb{bottom:228.271333pt;}
.y275{bottom:231.345333pt;}
.y82{bottom:234.336533pt;}
.y1cd{bottom:234.342533pt;}
.ydd{bottom:234.462533pt;}
.y57{bottom:234.464533pt;}
.y1e0{bottom:234.475867pt;}
.y10f{bottom:234.975733pt;}
.y19f{bottom:235.121867pt;}
.y173{bottom:235.262533pt;}
.y14f{bottom:239.273333pt;}
.y234{bottom:239.345333pt;}
.y26{bottom:240.057067pt;}
.yba{bottom:241.604667pt;}
.y274{bottom:244.678667pt;}
.y81{bottom:250.336533pt;}
.y1cc{bottom:250.342533pt;}
.ydc{bottom:250.462533pt;}
.y56{bottom:250.464533pt;}
.y1df{bottom:250.475867pt;}
.y10e{bottom:250.975733pt;}
.y19e{bottom:251.121867pt;}
.y233{bottom:252.678667pt;}
.y14e{bottom:253.940000pt;}
.yb9{bottom:254.938000pt;}
.y273{bottom:258.012000pt;}
.y25{bottom:264.363733pt;}
.y232{bottom:266.012000pt;}
.y80{bottom:266.336533pt;}
.y1cb{bottom:266.342533pt;}
.ydb{bottom:266.462533pt;}
.y55{bottom:266.464533pt;}
.y1de{bottom:266.475867pt;}
.y172{bottom:266.902533pt;}
.y10d{bottom:266.975733pt;}
.y19d{bottom:267.121867pt;}
.yb8{bottom:268.271333pt;}
.y14d{bottom:268.382667pt;}
.y272{bottom:271.345333pt;}
.y231{bottom:279.345333pt;}
.y24{bottom:280.363733pt;}
.yb7{bottom:281.604667pt;}
.y7f{bottom:282.336533pt;}
.y1ca{bottom:282.342533pt;}
.yda{bottom:282.462533pt;}
.y54{bottom:282.464533pt;}
.y1dd{bottom:282.475867pt;}
.y14c{bottom:282.825333pt;}
.y10c{bottom:282.975733pt;}
.y19c{bottom:283.121867pt;}
.y271{bottom:284.678667pt;}
.y230{bottom:292.678667pt;}
.yb6{bottom:294.938000pt;}
.y23{bottom:296.363733pt;}
.y14b{bottom:297.268000pt;}
.y270{bottom:298.012000pt;}
.y7e{bottom:298.336533pt;}
.y1c9{bottom:298.342533pt;}
.yd9{bottom:298.462533pt;}
.y53{bottom:298.464533pt;}
.y1dc{bottom:298.475867pt;}
.y10b{bottom:298.975733pt;}
.y19b{bottom:299.121867pt;}
.y171{bottom:299.129200pt;}
.y22f{bottom:306.012000pt;}
.yb5{bottom:308.271333pt;}
.y26f{bottom:311.345333pt;}
.y14a{bottom:311.710667pt;}
.y22{bottom:312.363733pt;}
.y7d{bottom:314.336533pt;}
.y1c8{bottom:314.342533pt;}
.yd8{bottom:314.462533pt;}
.y52{bottom:314.464533pt;}
.y1db{bottom:314.475867pt;}
.y10a{bottom:314.975733pt;}
.y19a{bottom:315.121867pt;}
.y170{bottom:315.129200pt;}
.y22e{bottom:319.345333pt;}
.yb4{bottom:321.604667pt;}
.y26e{bottom:324.678667pt;}
.y149{bottom:326.153333pt;}
.y21{bottom:328.363733pt;}
.y7c{bottom:330.336533pt;}
.y1c7{bottom:330.342533pt;}
.yd7{bottom:330.462533pt;}
.y51{bottom:330.464533pt;}
.y1da{bottom:330.475867pt;}
.y109{bottom:330.975733pt;}
.y199{bottom:331.121867pt;}
.y16f{bottom:331.129200pt;}
.y22d{bottom:332.678667pt;}
.yb3{bottom:334.938000pt;}
.y26d{bottom:338.012000pt;}
.y148{bottom:340.820000pt;}
.y20{bottom:344.363733pt;}
.y22c{bottom:346.012000pt;}
.y7b{bottom:346.336533pt;}
.y1c6{bottom:346.342533pt;}
.yd6{bottom:346.462533pt;}
.y50{bottom:346.464533pt;}
.y108{bottom:346.975733pt;}
.y16e{bottom:347.129200pt;}
.y26c{bottom:351.345333pt;}
.y147{bottom:355.486667pt;}
.y22b{bottom:359.345333pt;}
.y1f{bottom:360.363733pt;}
.y200{bottom:362.102533pt;}
.y1d9{bottom:362.115867pt;}
.y7a{bottom:362.336533pt;}
.y1c5{bottom:362.342533pt;}
.yd5{bottom:362.462533pt;}
.y4f{bottom:362.464533pt;}
.yb2{bottom:362.595867pt;}
.y198{bottom:362.761867pt;}
.y107{bottom:362.975733pt;}
.y16d{bottom:363.129200pt;}
.y26b{bottom:364.678667pt;}
.y146{bottom:369.929333pt;}
.y22a{bottom:372.678667pt;}
.y1e{bottom:376.363733pt;}
.y26a{bottom:378.012000pt;}
.yb1{bottom:378.235867pt;}
.y1c4{bottom:378.342533pt;}
.y79{bottom:378.344533pt;}
.yd4{bottom:378.462533pt;}
.y4e{bottom:378.464533pt;}
.y106{bottom:378.975733pt;}
.y16c{bottom:379.129200pt;}
.y145{bottom:384.596000pt;}
.y229{bottom:386.012000pt;}
.y269{bottom:391.345333pt;}
.y1d{bottom:392.363733pt;}
.y1c3{bottom:394.342533pt;}
.y78{bottom:394.344533pt;}
.yd3{bottom:394.462533pt;}
.y4d{bottom:394.464533pt;}
.y197{bottom:394.628533pt;}
.y105{bottom:394.975733pt;}
.y16b{bottom:395.129200pt;}
.y144{bottom:399.038667pt;}
.y228{bottom:399.345333pt;}
.y268{bottom:404.678667pt;}
.y1c{bottom:408.363733pt;}
.yb0{bottom:410.102533pt;}
.y1c2{bottom:410.342533pt;}
.y77{bottom:410.344533pt;}
.yd2{bottom:410.462533pt;}
.y4c{bottom:410.464533pt;}
.y104{bottom:410.975733pt;}
.y16a{bottom:411.129200pt;}
.y227{bottom:412.678667pt;}
.y143{bottom:413.481333pt;}
.y267{bottom:418.012000pt;}
.y1b{bottom:424.363733pt;}
.y226{bottom:426.012000pt;}
.yaf{bottom:426.102533pt;}
.y1c1{bottom:426.342533pt;}
.y76{bottom:426.344533pt;}
.yd1{bottom:426.462533pt;}
.y4b{bottom:426.464533pt;}
.y196{bottom:426.855200pt;}
.y103{bottom:426.975733pt;}
.y169{bottom:427.129200pt;}
.y142{bottom:427.924000pt;}
.y266{bottom:431.345333pt;}
.y225{bottom:439.345333pt;}
.y1a{bottom:440.363733pt;}
.yae{bottom:442.102533pt;}
.y1c0{bottom:442.342533pt;}
.y75{bottom:442.344533pt;}
.y141{bottom:442.366667pt;}
.yd0{bottom:442.462533pt;}
.y4a{bottom:442.464533pt;}
.y195{bottom:442.855200pt;}
.y102{bottom:442.975733pt;}
.y265{bottom:444.678667pt;}
.y224{bottom:452.678667pt;}
.y19{bottom:456.363733pt;}
.y140{bottom:456.809333pt;}
.y264{bottom:458.012000pt;}
.yad{bottom:458.102533pt;}
.y1bf{bottom:458.342533pt;}
.y74{bottom:458.344533pt;}
.ycf{bottom:458.462533pt;}
.y49{bottom:458.464533pt;}
.y168{bottom:458.769200pt;}
.y194{bottom:458.855200pt;}
.y101{bottom:458.975733pt;}
.y223{bottom:466.012000pt;}
.y263{bottom:471.345333pt;}
.y18{bottom:472.363733pt;}
.y1be{bottom:474.342533pt;}
.y73{bottom:474.344533pt;}
.yce{bottom:474.462533pt;}
.y48{bottom:474.464533pt;}
.y193{bottom:474.855200pt;}
.y222{bottom:479.345333pt;}
.y262{bottom:484.678667pt;}
.y13f{bottom:484.820000pt;}
.y17{bottom:488.363733pt;}
.yac{bottom:489.982533pt;}
.y1bd{bottom:490.342533pt;}
.y72{bottom:490.344533pt;}
.ycd{bottom:490.462533pt;}
.y47{bottom:490.464533pt;}
.y100{bottom:490.615733pt;}
.y192{bottom:490.855200pt;}
.y167{bottom:490.995867pt;}
.y221{bottom:492.678667pt;}
.y261{bottom:498.012000pt;}
.y16{bottom:504.363733pt;}
.y220{bottom:506.012000pt;}
.y1bc{bottom:506.342533pt;}
.y71{bottom:506.344533pt;}
.ycc{bottom:506.462533pt;}
.y46{bottom:506.464533pt;}
.y191{bottom:506.855200pt;}
.y166{bottom:506.995867pt;}
.y260{bottom:511.345333pt;}
.y13e{bottom:515.875867pt;}
.y21f{bottom:519.345333pt;}
.y15{bottom:520.363733pt;}
.y1ff{bottom:522.102533pt;}
.y1bb{bottom:522.342533pt;}
.y70{bottom:522.344533pt;}
.ycb{bottom:522.462533pt;}
.y45{bottom:522.464533pt;}
.yff{bottom:522.842400pt;}
.y190{bottom:522.855200pt;}
.y165{bottom:522.995867pt;}
.y25f{bottom:524.678667pt;}
.y21e{bottom:532.678667pt;}
.y13d{bottom:533.209200pt;}
.y25e{bottom:538.012000pt;}
.y1ba{bottom:538.342533pt;}
.y6f{bottom:538.344533pt;}
.yab{bottom:538.462533pt;}
.y44{bottom:538.464533pt;}
.yfe{bottom:538.842400pt;}
.y18f{bottom:538.855200pt;}
.y164{bottom:538.995867pt;}
.y21d{bottom:546.012000pt;}
.y25d{bottom:551.345333pt;}
.y1b9{bottom:554.342533pt;}
.y6e{bottom:554.344533pt;}
.yaa{bottom:554.462533pt;}
.y43{bottom:554.464533pt;}
.yfd{bottom:554.842400pt;}
.y18e{bottom:554.855200pt;}
.y21c{bottom:559.345333pt;}
.y14{bottom:560.504267pt;}
.y25c{bottom:564.678667pt;}
.y1b8{bottom:570.342533pt;}
.y6d{bottom:570.344533pt;}
.ya9{bottom:570.462533pt;}
.y42{bottom:570.464533pt;}
.y13c{bottom:570.622533pt;}
.y163{bottom:570.635867pt;}
.yfc{bottom:570.842400pt;}
.y127{bottom:570.862533pt;}
.y13{bottom:571.571600pt;}
.y21b{bottom:572.678667pt;}
.y25b{bottom:578.012000pt;}
.y21a{bottom:586.012000pt;}
.y1b7{bottom:586.342533pt;}
.y6c{bottom:586.344533pt;}
.ya8{bottom:586.462533pt;}
.y41{bottom:586.464533pt;}
.y18d{bottom:586.495200pt;}
.yfb{bottom:586.842400pt;}
.y126{bottom:586.862533pt;}
.y25a{bottom:591.345333pt;}
.y219{bottom:599.345333pt;}
.y12{bottom:599.763200pt;}
.y13b{bottom:602.262533pt;}
.y1b6{bottom:602.342533pt;}
.y6b{bottom:602.344533pt;}
.ya7{bottom:602.462533pt;}
.y40{bottom:602.464533pt;}
.y1fe{bottom:602.475867pt;}
.yfa{bottom:602.842400pt;}
.y162{bottom:602.862533pt;}
.y259{bottom:604.678667pt;}
.y218{bottom:612.678667pt;}
.y11{bottom:616.585600pt;}
.y258{bottom:618.012000pt;}
.y1b5{bottom:618.342533pt;}
.y6a{bottom:618.344533pt;}
.y18c{bottom:618.361867pt;}
.ya6{bottom:618.462533pt;}
.y3f{bottom:618.464533pt;}
.y1fd{bottom:618.475867pt;}
.y125{bottom:618.502533pt;}
.y161{bottom:618.862533pt;}
.y10{bottom:623.763200pt;}
.y217{bottom:626.012000pt;}
.y257{bottom:631.345333pt;}
.y1b4{bottom:634.342533pt;}
.y69{bottom:634.344533pt;}
.ya5{bottom:634.462533pt;}
.y3e{bottom:634.464533pt;}
.y1fc{bottom:634.475867pt;}
.y13a{bottom:634.489200pt;}
.yf9{bottom:634.502533pt;}
.y160{bottom:634.862533pt;}
.y216{bottom:639.345333pt;}
.yf{bottom:640.585600pt;}
.y256{bottom:644.678667pt;}
.ye{bottom:647.763200pt;}
.y1b3{bottom:650.342533pt;}
.y68{bottom:650.344533pt;}
.ya4{bottom:650.462533pt;}
.y3d{bottom:650.464533pt;}
.y1fb{bottom:650.475867pt;}
.y139{bottom:650.489200pt;}
.y18b{bottom:650.588533pt;}
.y124{bottom:650.729200pt;}
.y15f{bottom:650.862533pt;}
.y215{bottom:652.678667pt;}
.y255{bottom:658.012000pt;}
.yd{bottom:664.585600pt;}
.y214{bottom:666.012000pt;}
.y1b2{bottom:666.342533pt;}
.y67{bottom:666.344533pt;}
.yf8{bottom:666.369200pt;}
.ya3{bottom:666.462533pt;}
.y3c{bottom:666.464533pt;}
.y1fa{bottom:666.475867pt;}
.y138{bottom:666.489200pt;}
.y18a{bottom:666.588533pt;}
.y123{bottom:666.729200pt;}
.y254{bottom:671.345333pt;}
.yc{bottom:671.763200pt;}
.y213{bottom:679.345333pt;}
.y1b1{bottom:682.342533pt;}
.y66{bottom:682.344533pt;}
.ya2{bottom:682.462533pt;}
.y3b{bottom:682.464533pt;}
.y1f9{bottom:682.475867pt;}
.y137{bottom:682.489200pt;}
.y15e{bottom:682.502533pt;}
.y189{bottom:682.588533pt;}
.y122{bottom:682.729200pt;}
.y253{bottom:684.678667pt;}
.yb{bottom:688.585733pt;}
.y212{bottom:692.678667pt;}
.ya{bottom:695.763200pt;}
.y252{bottom:698.012000pt;}
.y1b0{bottom:698.342533pt;}
.y65{bottom:698.344533pt;}
.ya1{bottom:698.462533pt;}
.y3a{bottom:698.464533pt;}
.y1f8{bottom:698.475867pt;}
.y136{bottom:698.489200pt;}
.y188{bottom:698.588533pt;}
.yf7{bottom:698.595867pt;}
.y121{bottom:698.729200pt;}
.y211{bottom:706.012000pt;}
.y251{bottom:711.345333pt;}
.y9{bottom:712.585733pt;}
.y1d8{bottom:713.982533pt;}
.y1af{bottom:714.342533pt;}
.y15d{bottom:714.369200pt;}
.ya0{bottom:714.462533pt;}
.y39{bottom:714.464533pt;}
.y1f7{bottom:714.475867pt;}
.y135{bottom:714.489200pt;}
.y187{bottom:714.588533pt;}
.yf6{bottom:714.595867pt;}
.y120{bottom:714.729200pt;}
.y210{bottom:719.345333pt;}
.y250{bottom:724.678667pt;}
.y64{bottom:729.984533pt;}
.y1ae{bottom:730.342533pt;}
.y9f{bottom:730.462533pt;}
.y38{bottom:730.464533pt;}
.y1f6{bottom:730.475867pt;}
.y134{bottom:730.489200pt;}
.y186{bottom:730.588533pt;}
.yf5{bottom:730.595867pt;}
.y11f{bottom:730.729200pt;}
.y20f{bottom:732.678667pt;}
.y24f{bottom:738.012000pt;}
.y8{bottom:738.121067pt;}
.y20e{bottom:746.012000pt;}
.y1ad{bottom:746.342533pt;}
.y9e{bottom:746.462533pt;}
.y37{bottom:746.464533pt;}
.y1f5{bottom:746.475867pt;}
.y133{bottom:746.489200pt;}
.y185{bottom:746.588533pt;}
.yf4{bottom:746.595867pt;}
.y11e{bottom:746.729200pt;}
.y24e{bottom:751.345333pt;}
.y7{bottom:756.783067pt;}
.y20d{bottom:759.345333pt;}
.y1ac{bottom:762.342533pt;}
.y9d{bottom:762.462533pt;}
.y36{bottom:762.464533pt;}
.y1f4{bottom:762.475867pt;}
.y132{bottom:762.489200pt;}
.yf3{bottom:762.595867pt;}
.y184{bottom:762.649200pt;}
.y11d{bottom:762.729200pt;}
.y24d{bottom:764.678667pt;}
.y20c{bottom:772.678667pt;}
.y24c{bottom:778.012000pt;}
.y1ab{bottom:778.342533pt;}
.y9c{bottom:778.462533pt;}
.y35{bottom:778.464533pt;}
.y1f3{bottom:778.475867pt;}
.y131{bottom:778.489200pt;}
.yf2{bottom:778.595867pt;}
.y183{bottom:778.649200pt;}
.y11c{bottom:778.729200pt;}
.y20b{bottom:786.012000pt;}
.y24b{bottom:791.345333pt;}
.yca{bottom:794.462533pt;}
.y34{bottom:794.464533pt;}
.y1f2{bottom:794.475867pt;}
.y130{bottom:794.489200pt;}
.yf1{bottom:794.595867pt;}
.y182{bottom:794.649200pt;}
.y11b{bottom:794.729200pt;}
.y6{bottom:797.816533pt;}
.y20a{bottom:799.345333pt;}
.y24a{bottom:804.678667pt;}
.y1aa{bottom:809.982533pt;}
.y9b{bottom:810.102533pt;}
.yc9{bottom:810.462533pt;}
.y33{bottom:810.464533pt;}
.y1f1{bottom:810.475867pt;}
.y12f{bottom:810.489200pt;}
.yf0{bottom:810.595867pt;}
.y181{bottom:810.649200pt;}
.y11a{bottom:810.729200pt;}
.y209{bottom:812.678667pt;}
.y249{bottom:818.012000pt;}
.y208{bottom:826.012000pt;}
.y9a{bottom:826.102533pt;}
.yc8{bottom:826.462533pt;}
.y32{bottom:826.464533pt;}
.y1f0{bottom:826.475867pt;}
.y12e{bottom:826.489200pt;}
.y15c{bottom:826.595867pt;}
.y5{bottom:830.226133pt;}
.y248{bottom:831.345333pt;}
.y207{bottom:839.345333pt;}
.yef{bottom:842.235867pt;}
.y180{bottom:842.289200pt;}
.y119{bottom:842.369200pt;}
.y95{bottom:842.462533pt;}
.y31{bottom:842.464533pt;}
.y1ef{bottom:842.475867pt;}
.y12d{bottom:842.489200pt;}
.y247{bottom:844.678667pt;}
.y206{bottom:852.678667pt;}
.y99{bottom:857.982533pt;}
.y246{bottom:858.012000pt;}
.yee{bottom:858.235867pt;}
.y94{bottom:858.462533pt;}
.y30{bottom:858.464533pt;}
.y1ee{bottom:858.475867pt;}
.y12c{bottom:858.489200pt;}
.y4{bottom:862.635733pt;}
.y205{bottom:866.012000pt;}
.y245{bottom:871.345333pt;}
.y118{bottom:874.235867pt;}
.y93{bottom:874.462533pt;}
.y2f{bottom:874.464533pt;}
.yc7{bottom:874.468533pt;}
.y1ed{bottom:874.475867pt;}
.y12b{bottom:874.489200pt;}
.y17f{bottom:874.515867pt;}
.y204{bottom:879.345333pt;}
.y244{bottom:884.678667pt;}
.y92{bottom:890.462533pt;}
.y2e{bottom:890.464533pt;}
.yc6{bottom:890.468533pt;}
.y1ec{bottom:890.475867pt;}
.y12a{bottom:890.489200pt;}
.y17e{bottom:890.515867pt;}
.y203{bottom:892.678667pt;}
.y3{bottom:895.045333pt;}
.y243{bottom:898.012000pt;}
.y91{bottom:906.462533pt;}
.y63{bottom:906.464533pt;}
.yc5{bottom:906.468533pt;}
.y1eb{bottom:906.475867pt;}
.y129{bottom:906.489200pt;}
.y17d{bottom:906.515867pt;}
.y242{bottom:911.345333pt;}
.y2d{bottom:922.104533pt;}
.y90{bottom:922.462533pt;}
.y62{bottom:922.464533pt;}
.yc4{bottom:922.468533pt;}
.y1ea{bottom:922.475867pt;}
.y128{bottom:922.489200pt;}
.y17c{bottom:922.515867pt;}
.y241{bottom:924.678667pt;}
.y2{bottom:950.489200pt;}
.y8d{bottom:1006.594400pt;}
.yed{bottom:1006.597067pt;}
.y281{bottom:1006.598667pt;}
.y15b{bottom:1006.605467pt;}
.y2b{bottom:1009.860000pt;}
.y2a{bottom:1022.660000pt;}
.h7{height:16.977598pt;}
.h9{height:17.000371pt;}
.ha{height:25.255208pt;}
.h2{height:27.197917pt;}
.he{height:29.140625pt;}
.h8{height:29.160156pt;}
.h14{height:29.645833pt;}
.hf{height:31.083333pt;}
.h12{height:37.057292pt;}
.h13{height:37.437500pt;}
.h10{height:38.828125pt;}
.hd{height:38.833900pt;}
.hb{height:38.854167pt;}
.hc{height:38.880208pt;}
.h11{height:46.796875pt;}
.h16{height:48.236875pt;}
.h3{height:50.476562pt;}
.h6{height:50.755837pt;}
.h5{height:50.774503pt;}
.h15{height:52.351911pt;}
.h4{height:81.927344pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:68.031467pt;}
.x5{left:85.417333pt;}
.x1{left:86.929067pt;}
.x1b{left:88.818933pt;}
.x22{left:90.708667pt;}
.x4{left:94.488133pt;}
.x9{left:98.274267pt;}
.x1c{left:102.045600pt;}
.x14{left:105.649200pt;}
.x18{left:109.606533pt;}
.x3{left:111.491467pt;}
.x11{left:117.155867pt;}
.x16{left:130.849200pt;}
.x15{left:133.062533pt;}
.x13{left:139.355867pt;}
.x8{left:169.380933pt;}
.x20{left:191.602267pt;}
.x17{left:196.422533pt;}
.x12{left:199.262533pt;}
.x10{left:206.542533pt;}
.x6{left:404.481333pt;}
.xa{left:406.314267pt;}
.x1d{left:421.416267pt;}
.x1a{left:425.245467pt;}
.x23{left:428.980667pt;}
.xc{left:436.580933pt;}
.x21{left:447.899867pt;}
.x19{left:455.472133pt;}
.xb{left:466.954267pt;}
.xe{left:589.770933pt;}
.x2{left:616.324800pt;}
.x1e{left:641.526800pt;}
.xd{left:647.459200pt;}
.x1f{left:661.216133pt;}
.xf{left:666.356800pt;}
}




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