
    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_10265761eba426bfa86c3d68.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_94ee433318a12225d27b39f1.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_6e89d7f446d171a9c8c21fee.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_48740ae2e316456ee29e4da0.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_e7ba648933cd537861c1c5f1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.049805;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_9becef4329f7b1cb7d6a03b4.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_ae488000d21465e973a08667.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_77ff14e1c2685e567c1c7706.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_cbf65eaeeafb366cf0c136c3.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_898ffc4e7c48d968582def7e.woff2')format("woff");}.ffa{font-family:ffa;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;}
.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:-15.442200px;}
.v3{vertical-align:-4.114800px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.620000px;}
.v4{vertical-align:19.912200px;}
.v1{vertical-align:21.619200px;}
.ls87{letter-spacing:-2.640000px;}
.ls12{letter-spacing:-0.780000px;}
.ls52{letter-spacing:-0.660000px;}
.ls68{letter-spacing:-0.600000px;}
.ls56{letter-spacing:-0.540000px;}
.ls6d{letter-spacing:-0.420000px;}
.ls9d{letter-spacing:-0.384000px;}
.ls14{letter-spacing:-0.360000px;}
.ls64{letter-spacing:-0.300000px;}
.ls37{letter-spacing:-0.240000px;}
.ls36{letter-spacing:-0.180000px;}
.ls9e{letter-spacing:-0.144000px;}
.ls13{letter-spacing:-0.120000px;}
.ls88{letter-spacing:-0.096000px;}
.ls15{letter-spacing:-0.060000px;}
.ls86{letter-spacing:-0.048000px;}
.ls11{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.004200px;}
.ls96{letter-spacing:0.048000px;}
.ls31{letter-spacing:0.060000px;}
.ls1{letter-spacing:0.069000px;}
.ls57{letter-spacing:0.096000px;}
.ls1d{letter-spacing:0.120000px;}
.ls8e{letter-spacing:0.144000px;}
.ls1f{letter-spacing:0.180000px;}
.ls58{letter-spacing:0.192000px;}
.ls47{letter-spacing:0.240000px;}
.ls7d{letter-spacing:0.288000px;}
.ls1a{letter-spacing:0.300000px;}
.ls5a{letter-spacing:0.336000px;}
.lse{letter-spacing:0.360000px;}
.ls5b{letter-spacing:0.384000px;}
.ls8{letter-spacing:0.420000px;}
.ls9a{letter-spacing:0.432000px;}
.lsb{letter-spacing:0.480000px;}
.ls90{letter-spacing:0.528000px;}
.lsd{letter-spacing:0.540000px;}
.ls48{letter-spacing:0.574800px;}
.ls8a{letter-spacing:0.576000px;}
.ls7{letter-spacing:0.600000px;}
.ls94{letter-spacing:0.624000px;}
.ls16{letter-spacing:0.660000px;}
.ls67{letter-spacing:0.672000px;}
.ls25{letter-spacing:0.720000px;}
.ls5c{letter-spacing:0.768000px;}
.ls1e{letter-spacing:0.780000px;}
.ls63{letter-spacing:0.795600px;}
.lsb7{letter-spacing:0.816000px;}
.ls4{letter-spacing:0.840000px;}
.ls81{letter-spacing:0.864000px;}
.ls49{letter-spacing:0.900000px;}
.ls77{letter-spacing:0.912000px;}
.ls46{letter-spacing:0.960000px;}
.ls40{letter-spacing:1.003800px;}
.ls9f{letter-spacing:1.008000px;}
.ls3{letter-spacing:1.020000px;}
.ls9c{letter-spacing:1.056000px;}
.ls20{letter-spacing:1.080000px;}
.ls8b{letter-spacing:1.104000px;}
.ls32{letter-spacing:1.140000px;}
.ls75{letter-spacing:1.152000px;}
.lsa{letter-spacing:1.200000px;}
.ls9b{letter-spacing:1.248000px;}
.ls22{letter-spacing:1.260000px;}
.ls61{letter-spacing:1.296000px;}
.ls1b{letter-spacing:1.320000px;}
.ls62{letter-spacing:1.331400px;}
.lsa0{letter-spacing:1.344000px;}
.ls17{letter-spacing:1.380000px;}
.ls7b{letter-spacing:1.392000px;}
.ls5{letter-spacing:1.440000px;}
.ls95{letter-spacing:1.488000px;}
.ls9{letter-spacing:1.500000px;}
.lsa2{letter-spacing:1.536000px;}
.ls30{letter-spacing:1.560000px;}
.ls8c{letter-spacing:1.584000px;}
.ls3c{letter-spacing:1.619400px;}
.ls44{letter-spacing:1.620000px;}
.ls99{letter-spacing:1.632000px;}
.ls18{letter-spacing:1.680000px;}
.ls78{letter-spacing:1.728000px;}
.ls35{letter-spacing:1.740000px;}
.lsa9{letter-spacing:1.776000px;}
.ls33{letter-spacing:1.800000px;}
.lsa5{letter-spacing:1.824000px;}
.ls2b{letter-spacing:1.860000px;}
.ls97{letter-spacing:1.872000px;}
.ls6{letter-spacing:1.920000px;}
.lsa6{letter-spacing:1.968000px;}
.ls1c{letter-spacing:1.980000px;}
.ls82{letter-spacing:2.016000px;}
.ls2e{letter-spacing:2.040000px;}
.ls8f{letter-spacing:2.064000px;}
.ls19{letter-spacing:2.100000px;}
.lsaa{letter-spacing:2.112000px;}
.ls10{letter-spacing:2.160000px;}
.lsa1{letter-spacing:2.208000px;}
.ls38{letter-spacing:2.220000px;}
.ls92{letter-spacing:2.256000px;}
.ls4c{letter-spacing:2.280000px;}
.ls45{letter-spacing:2.340000px;}
.ls98{letter-spacing:2.352000px;}
.ls28{letter-spacing:2.400000px;}
.ls6a{letter-spacing:2.448000px;}
.ls2{letter-spacing:2.460000px;}
.ls6c{letter-spacing:2.496000px;}
.ls23{letter-spacing:2.520000px;}
.ls34{letter-spacing:2.580000px;}
.ls42{letter-spacing:2.640000px;}
.ls79{letter-spacing:2.688000px;}
.ls3b{letter-spacing:2.700000px;}
.lsb6{letter-spacing:2.736000px;}
.ls5e{letter-spacing:2.760000px;}
.ls7f{letter-spacing:2.784000px;}
.ls27{letter-spacing:2.820000px;}
.ls93{letter-spacing:2.832000px;}
.ls24{letter-spacing:2.880000px;}
.ls80{letter-spacing:2.928000px;}
.ls21{letter-spacing:2.940000px;}
.ls89{letter-spacing:2.976000px;}
.ls3e{letter-spacing:3.000000px;}
.ls7c{letter-spacing:3.024000px;}
.ls50{letter-spacing:3.060000px;}
.lsa4{letter-spacing:3.072000px;}
.ls2d{letter-spacing:3.120000px;}
.lsa7{letter-spacing:3.168000px;}
.ls4f{letter-spacing:3.180000px;}
.ls29{letter-spacing:3.240000px;}
.ls83{letter-spacing:3.264000px;}
.ls53{letter-spacing:3.300000px;}
.lsae{letter-spacing:3.312000px;}
.ls2a{letter-spacing:3.360000px;}
.lsb3{letter-spacing:3.408000px;}
.ls51{letter-spacing:3.420000px;}
.lsb1{letter-spacing:3.456000px;}
.ls4e{letter-spacing:3.480000px;}
.lsc{letter-spacing:3.600000px;}
.lsb4{letter-spacing:3.648000px;}
.ls26{letter-spacing:3.660000px;}
.ls8d{letter-spacing:3.696000px;}
.lsf{letter-spacing:3.720000px;}
.ls4a{letter-spacing:3.780000px;}
.lsb2{letter-spacing:3.792000px;}
.ls5f{letter-spacing:3.840000px;}
.lsad{letter-spacing:3.888000px;}
.ls72{letter-spacing:3.900000px;}
.lsa3{letter-spacing:3.936000px;}
.ls4b{letter-spacing:3.960000px;}
.ls7a{letter-spacing:3.984000px;}
.ls65{letter-spacing:4.020000px;}
.ls41{letter-spacing:4.080000px;}
.lsb0{letter-spacing:4.128000px;}
.ls60{letter-spacing:4.140000px;}
.lsb5{letter-spacing:4.176000px;}
.ls73{letter-spacing:4.260000px;}
.ls7e{letter-spacing:4.272000px;}
.ls55{letter-spacing:4.320000px;}
.ls84{letter-spacing:4.368000px;}
.ls39{letter-spacing:4.440000px;}
.ls91{letter-spacing:4.464000px;}
.ls69{letter-spacing:4.500000px;}
.ls3f{letter-spacing:4.560000px;}
.ls5d{letter-spacing:4.620000px;}
.lsb8{letter-spacing:4.656000px;}
.ls4d{letter-spacing:4.680000px;}
.ls85{letter-spacing:4.704000px;}
.ls71{letter-spacing:4.800000px;}
.lsaf{letter-spacing:4.896000px;}
.ls54{letter-spacing:4.920000px;}
.lsac{letter-spacing:4.992000px;}
.ls70{letter-spacing:5.040000px;}
.ls3a{letter-spacing:5.100000px;}
.ls76{letter-spacing:5.184000px;}
.ls3d{letter-spacing:5.340000px;}
.ls6f{letter-spacing:5.400000px;}
.ls59{letter-spacing:5.460000px;}
.ls66{letter-spacing:6.060000px;}
.lsab{letter-spacing:6.096000px;}
.ls74{letter-spacing:6.120000px;}
.ls43{letter-spacing:6.300000px;}
.ls6e{letter-spacing:6.360000px;}
.ls2c{letter-spacing:6.960000px;}
.ls2f{letter-spacing:7.080000px;}
.lsa8{letter-spacing:7.104000px;}
.ls6b{letter-spacing:8.520000px;}
.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;}
}
.ws53{word-spacing:-20.460000px;}
.ws5f{word-spacing:-19.620000px;}
.ws80{word-spacing:-19.560000px;}
.ws62{word-spacing:-19.140000px;}
.ws7a{word-spacing:-18.480000px;}
.ws4b{word-spacing:-18.240000px;}
.ws65{word-spacing:-18.000000px;}
.ws7c{word-spacing:-17.880000px;}
.ws1a{word-spacing:-17.820000px;}
.ws29{word-spacing:-17.700000px;}
.ws75{word-spacing:-17.580000px;}
.ws49{word-spacing:-17.160000px;}
.ws15{word-spacing:-17.100000px;}
.ws79{word-spacing:-17.040000px;}
.ws13{word-spacing:-16.920000px;}
.ws64{word-spacing:-16.740000px;}
.ws1{word-spacing:-16.680000px;}
.ws63{word-spacing:-16.620000px;}
.ws12{word-spacing:-16.500000px;}
.ws11{word-spacing:-16.440000px;}
.ws14{word-spacing:-16.380000px;}
.ws76{word-spacing:-16.320000px;}
.ws84{word-spacing:-16.260000px;}
.ws4c{word-spacing:-16.200000px;}
.ws43{word-spacing:-16.020000px;}
.ws83{word-spacing:-15.960000px;}
.wsc3{word-spacing:-15.936000px;}
.ws61{word-spacing:-15.900000px;}
.wsca{word-spacing:-15.888000px;}
.ws16{word-spacing:-15.840000px;}
.wse3{word-spacing:-15.792000px;}
.ws18{word-spacing:-15.780000px;}
.ws82{word-spacing:-15.600000px;}
.ws59{word-spacing:-15.540000px;}
.ws4a{word-spacing:-15.480000px;}
.ws60{word-spacing:-15.360000px;}
.ws71{word-spacing:-15.240000px;}
.wsc7{word-spacing:-15.168000px;}
.ws17{word-spacing:-15.120000px;}
.ws7b{word-spacing:-15.060000px;}
.ws35{word-spacing:-15.000000px;}
.ws1b{word-spacing:-14.940000px;}
.ws96{word-spacing:-14.928000px;}
.ws95{word-spacing:-14.784000px;}
.ws19{word-spacing:-14.760000px;}
.ws81{word-spacing:-14.700000px;}
.wsa7{word-spacing:-14.640000px;}
.wse1{word-spacing:-14.496000px;}
.ws70{word-spacing:-14.400000px;}
.wse2{word-spacing:-14.256000px;}
.wsc2{word-spacing:-14.208000px;}
.ws93{word-spacing:-14.160000px;}
.wsc9{word-spacing:-14.112000px;}
.ws97{word-spacing:-14.016000px;}
.wsc5{word-spacing:-13.872000px;}
.wse5{word-spacing:-13.728000px;}
.wsa8{word-spacing:-13.680000px;}
.wsc6{word-spacing:-13.440000px;}
.ws94{word-spacing:-13.392000px;}
.ws3{word-spacing:-13.344000px;}
.ws92{word-spacing:-13.200000px;}
.wsc0{word-spacing:-13.152000px;}
.wsa9{word-spacing:-13.104000px;}
.wscb{word-spacing:-12.960000px;}
.ws9a{word-spacing:-12.912000px;}
.wse6{word-spacing:-12.864000px;}
.ws58{word-spacing:-12.768000px;}
.wsaa{word-spacing:-12.672000px;}
.wse4{word-spacing:-12.576000px;}
.ws2{word-spacing:-12.510000px;}
.wscc{word-spacing:-12.432000px;}
.ws6f{word-spacing:-12.384000px;}
.ws54{word-spacing:-12.336000px;}
.ws98{word-spacing:-12.288000px;}
.wsc1{word-spacing:-12.192000px;}
.wsc8{word-spacing:-12.144000px;}
.ws52{word-spacing:-12.096000px;}
.ws51{word-spacing:-12.000000px;}
.wsc4{word-spacing:-11.760000px;}
.ws0{word-spacing:-10.508400px;}
.ws99{word-spacing:-9.360000px;}
.ws77{word-spacing:-8.520000px;}
.wse9{word-spacing:-4.656000px;}
.wsa5{word-spacing:-4.368000px;}
.ws91{word-spacing:-3.960000px;}
.wsd4{word-spacing:-3.936000px;}
.wsb2{word-spacing:-3.696000px;}
.ws48{word-spacing:-3.660000px;}
.wsd8{word-spacing:-3.600000px;}
.ws85{word-spacing:-3.480000px;}
.wsdc{word-spacing:-3.168000px;}
.wsa4{word-spacing:-2.928000px;}
.ws5{word-spacing:-2.886000px;}
.wsb8{word-spacing:-2.880000px;}
.ws38{word-spacing:-2.760000px;}
.ws8f{word-spacing:-2.700000px;}
.ws42{word-spacing:-2.640000px;}
.ws78{word-spacing:-2.580000px;}
.ws2f{word-spacing:-2.520000px;}
.ws6{word-spacing:-2.331000px;}
.ws27{word-spacing:-2.220000px;}
.wsd0{word-spacing:-2.208000px;}
.wsd7{word-spacing:-2.064000px;}
.ws7d{word-spacing:-2.040000px;}
.wsbd{word-spacing:-1.920000px;}
.wsd6{word-spacing:-1.872000px;}
.wsa2{word-spacing:-1.728000px;}
.wsd2{word-spacing:-1.680000px;}
.ws30{word-spacing:-1.620000px;}
.wsae{word-spacing:-1.584000px;}
.ws33{word-spacing:-1.560000px;}
.wsd3{word-spacing:-1.488000px;}
.ws1c{word-spacing:-1.440000px;}
.ws69{word-spacing:-1.320000px;}
.wsce{word-spacing:-1.296000px;}
.wsbb{word-spacing:-1.248000px;}
.ws2d{word-spacing:-1.200000px;}
.wsdd{word-spacing:-1.152000px;}
.ws3f{word-spacing:-1.080000px;}
.ws8c{word-spacing:-1.020000px;}
.wsdf{word-spacing:-0.960000px;}
.ws34{word-spacing:-0.864000px;}
.wsa6{word-spacing:-0.768000px;}
.wsaf{word-spacing:-0.576000px;}
.wsd{word-spacing:-0.480000px;}
.wse0{word-spacing:-0.432000px;}
.ws10{word-spacing:-0.420000px;}
.ws2c{word-spacing:-0.360000px;}
.wsb3{word-spacing:-0.336000px;}
.ws9b{word-spacing:-0.300000px;}
.wsba{word-spacing:-0.288000px;}
.ws6c{word-spacing:-0.240000px;}
.wsbf{word-spacing:-0.192000px;}
.wsdb{word-spacing:-0.144000px;}
.ws7f{word-spacing:-0.120000px;}
.ws41{word-spacing:-0.060000px;}
.ws4{word-spacing:0.000000px;}
.wsde{word-spacing:0.048000px;}
.wsc{word-spacing:0.060000px;}
.ws6a{word-spacing:0.120000px;}
.ws3e{word-spacing:0.180000px;}
.wsb6{word-spacing:0.192000px;}
.wsa1{word-spacing:0.240000px;}
.wsd9{word-spacing:0.288000px;}
.ws7{word-spacing:0.300000px;}
.wse7{word-spacing:0.336000px;}
.wsac{word-spacing:0.384000px;}
.wsb7{word-spacing:0.432000px;}
.ws21{word-spacing:0.480000px;}
.ws6e{word-spacing:0.528000px;}
.ws3c{word-spacing:0.540000px;}
.ws5e{word-spacing:0.576000px;}
.ws1f{word-spacing:0.720000px;}
.wsbc{word-spacing:0.768000px;}
.ws6b{word-spacing:0.780000px;}
.ws90{word-spacing:0.840000px;}
.ws9e{word-spacing:0.900000px;}
.wse8{word-spacing:0.912000px;}
.wsad{word-spacing:1.008000px;}
.ws4e{word-spacing:1.080000px;}
.ws74{word-spacing:1.140000px;}
.ws50{word-spacing:1.152000px;}
.wscd{word-spacing:1.248000px;}
.ws67{word-spacing:1.260000px;}
.wsb4{word-spacing:1.296000px;}
.wsbe{word-spacing:1.392000px;}
.ws44{word-spacing:1.500000px;}
.ws2b{word-spacing:1.560000px;}
.wse{word-spacing:1.620000px;}
.wsb5{word-spacing:1.632000px;}
.ws88{word-spacing:1.680000px;}
.ws5b{word-spacing:1.728000px;}
.ws86{word-spacing:1.740000px;}
.ws46{word-spacing:1.800000px;}
.wsb9{word-spacing:1.824000px;}
.ws7e{word-spacing:1.860000px;}
.wsa0{word-spacing:1.872000px;}
.ws39{word-spacing:1.920000px;}
.ws68{word-spacing:1.980000px;}
.ws45{word-spacing:2.040000px;}
.wsf{word-spacing:2.160000px;}
.wsa3{word-spacing:2.208000px;}
.ws8d{word-spacing:2.220000px;}
.ws87{word-spacing:2.280000px;}
.ws66{word-spacing:2.340000px;}
.ws4d{word-spacing:2.400000px;}
.ws89{word-spacing:2.460000px;}
.ws3a{word-spacing:2.520000px;}
.wsd5{word-spacing:2.544000px;}
.ws47{word-spacing:2.640000px;}
.ws9c{word-spacing:2.700000px;}
.ws56{word-spacing:2.736000px;}
.ws1d{word-spacing:2.760000px;}
.wsd1{word-spacing:2.784000px;}
.ws6d{word-spacing:2.820000px;}
.wscf{word-spacing:2.832000px;}
.ws22{word-spacing:2.940000px;}
.wsb1{word-spacing:2.976000px;}
.ws72{word-spacing:3.000000px;}
.wsab{word-spacing:3.072000px;}
.ws40{word-spacing:3.180000px;}
.ws28{word-spacing:3.240000px;}
.wsea{word-spacing:3.264000px;}
.wsb0{word-spacing:3.312000px;}
.ws24{word-spacing:3.360000px;}
.wsda{word-spacing:3.408000px;}
.ws3b{word-spacing:3.420000px;}
.ws26{word-spacing:3.480000px;}
.ws1e{word-spacing:3.600000px;}
.ws57{word-spacing:3.696000px;}
.ws8b{word-spacing:3.780000px;}
.ws5d{word-spacing:3.840000px;}
.ws20{word-spacing:3.900000px;}
.ws5c{word-spacing:3.936000px;}
.ws2e{word-spacing:3.960000px;}
.ws55{word-spacing:3.984000px;}
.ws8a{word-spacing:4.020000px;}
.ws25{word-spacing:4.080000px;}
.ws73{word-spacing:4.140000px;}
.ws3d{word-spacing:4.200000px;}
.ws32{word-spacing:4.260000px;}
.wsb{word-spacing:4.440000px;}
.ws4f{word-spacing:4.500000px;}
.wsa{word-spacing:4.560000px;}
.ws5a{word-spacing:4.620000px;}
.ws31{word-spacing:4.800000px;}
.ws23{word-spacing:4.860000px;}
.ws8{word-spacing:4.920000px;}
.ws9{word-spacing:4.980000px;}
.ws9f{word-spacing:5.460000px;}
.ws9d{word-spacing:5.520000px;}
.ws8e{word-spacing:7.680000px;}
.ws2a{word-spacing:231.216000px;}
.ws36{word-spacing:420.960000px;}
.ws37{word-spacing:423.648000px;}
._9{margin-left:-2898.096000px;}
._3f{margin-left:-2874.288000px;}
._55{margin-left:-14.880000px;}
._47{margin-left:-12.255000px;}
._45{margin-left:-11.190000px;}
._46{margin-left:-9.420000px;}
._56{margin-left:-7.860000px;}
._8{margin-left:-6.744000px;}
._1{margin-left:-5.376000px;}
._3{margin-left:-4.305000px;}
._0{margin-left:-2.310000px;}
._4{margin-left:-1.020000px;}
._6{width:1.020000px;}
._2{width:2.328000px;}
._7{width:3.405000px;}
._5{width:5.400000px;}
._b{width:6.405000px;}
._a{width:7.605000px;}
._40{width:8.640000px;}
._44{width:17.280000px;}
._41{width:18.780000px;}
._43{width:21.840000px;}
._42{width:25.020000px;}
._37{width:241.072200px;}
._11{width:243.216000px;}
._49{width:251.856000px;}
._3c{width:265.158000px;}
._50{width:297.984000px;}
._4d{width:303.312000px;}
._53{width:313.968000px;}
._51{width:319.296000px;}
._3e{width:343.200000px;}
._33{width:354.534000px;}
._10{width:360.480000px;}
._39{width:376.176000px;}
._e{width:384.528000px;}
._3d{width:385.728000px;}
._30{width:400.464000px;}
._2f{width:402.864000px;}
._2d{width:405.504000px;}
._29{width:416.160000px;}
._4f{width:419.472000px;}
._12{width:424.176000px;}
._4c{width:427.776000px;}
._3a{width:432.480000px;}
._25{width:443.208000px;}
._14{width:445.536000px;}
._28{width:449.478000px;}
._f{width:461.520000px;}
._17{width:465.276000px;}
._1f{width:467.184000px;}
._22{width:474.816000px;}
._16{width:477.504000px;}
._18{width:480.192000px;}
._21{width:486.225000px;}
._1a{width:488.112000px;}
._35{width:493.488000px;}
._34{width:495.846000px;}
._1b{width:497.808000px;}
._2a{width:498.816000px;}
._15{width:500.448000px;}
._26{width:509.472000px;}
._13{width:511.200000px;}
._2c{width:515.856000px;}
._19{width:518.304000px;}
._24{width:520.176000px;}
._36{width:522.816000px;}
._3b{width:530.832000px;}
._27{width:534.774000px;}
._31{width:544.176000px;}
._38{width:546.816000px;}
._2b{width:552.192000px;}
._20{width:565.488000px;}
._1e{width:570.816000px;}
._1c{width:573.174000px;}
._2e{width:585.840000px;}
._d{width:604.416000px;}
._c{width:618.720000px;}
._4e{width:646.563000px;}
._52{width:683.229000px;}
._32{width:707.397000px;}
._1d{width:716.496000px;}
._4a{width:723.891000px;}
._23{width:740.448000px;}
._4b{width:743.706000px;}
._54{width:744.771000px;}
._48{width:869.940000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:27.000000px;}
.fsb{font-size:28.800000px;}
.fsa{font-size:36.000000px;}
.fs4{font-size:37.800000px;}
.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;}
.y2d{bottom:47.777250px;}
.y31b{bottom:80.263500px;}
.y137{bottom:83.231850px;}
.y63{bottom:83.770350px;}
.yf8{bottom:83.920350px;}
.y25f{bottom:84.059700px;}
.y151{bottom:84.826350px;}
.y120{bottom:85.251450px;}
.y2d9{bottom:86.121900px;}
.y1c{bottom:88.026750px;}
.y200{bottom:90.055950px;}
.ye9{bottom:90.753150px;}
.ya0{bottom:93.001350px;}
.y1db{bottom:93.197700px;}
.y31a{bottom:95.263500px;}
.y1a9{bottom:95.688750px;}
.y28b{bottom:95.912100px;}
.y179{bottom:96.820350px;}
.y136{bottom:98.975850px;}
.y176{bottom:99.053850px;}
.y150{bottom:100.570350px;}
.y11f{bottom:100.995450px;}
.y2d8{bottom:101.121900px;}
.y2a4{bottom:101.635350px;}
.y62{bottom:101.770350px;}
.yf7{bottom:101.920350px;}
.y25e{bottom:102.059700px;}
.y1b{bottom:103.023000px;}
.ye8{bottom:107.001150px;}
.y1ff{bottom:108.055950px;}
.y9f{bottom:109.249350px;}
.y319{bottom:110.263500px;}
.y1a8{bottom:110.688750px;}
.y178{bottom:112.570350px;}
.y22d{bottom:113.688750px;}
.y28a{bottom:113.912100px;}
.y2d7{bottom:116.121900px;}
.y175{bottom:117.053850px;}
.y2a3{bottom:119.230350px;}
.y61{bottom:119.770350px;}
.yf6{bottom:119.920350px;}
.y25d{bottom:120.059700px;}
.ye7{bottom:123.249150px;}
.y318{bottom:125.263500px;}
.y9e{bottom:125.497350px;}
.y1a7{bottom:125.688750px;}
.y1fe{bottom:126.055950px;}
.y177{bottom:128.314350px;}
.y22c{bottom:128.688750px;}
.y1da{bottom:128.792700px;}
.y2d6{bottom:131.121900px;}
.y289{bottom:131.912100px;}
.y174{bottom:135.053850px;}
.y60{bottom:137.770350px;}
.yf5{bottom:137.920350px;}
.ye6{bottom:139.497150px;}
.y317{bottom:140.263500px;}
.y1a6{bottom:140.688750px;}
.y9d{bottom:141.745350px;}
.y22b{bottom:143.688750px;}
.y1fd{bottom:144.055950px;}
.y2d5{bottom:146.121900px;}
.y288{bottom:149.912100px;}
.y173{bottom:153.053850px;}
.y316{bottom:155.263500px;}
.y2a2{bottom:155.635350px;}
.y25c{bottom:155.654700px;}
.y1a5{bottom:155.688750px;}
.ye5{bottom:155.745150px;}
.y5f{bottom:155.770350px;}
.yf4{bottom:155.920350px;}
.y9c{bottom:157.993350px;}
.y22a{bottom:158.688750px;}
.y2d4{bottom:161.121900px;}
.y1fc{bottom:162.055950px;}
.y1d9{bottom:164.547000px;}
.y28{bottom:167.819850px;}
.y287{bottom:167.912100px;}
.y315{bottom:170.263500px;}
.y1a4{bottom:170.688750px;}
.y172{bottom:171.053850px;}
.ye4{bottom:171.993150px;}
.y2a1{bottom:173.635350px;}
.y5e{bottom:173.770350px;}
.yf3{bottom:173.920350px;}
.y9b{bottom:174.241350px;}
.y2d3{bottom:176.121900px;}
.y1d8{bottom:179.547000px;}
.y1fb{bottom:180.055950px;}
.y314{bottom:185.263500px;}
.y1a3{bottom:185.688750px;}
.y27{bottom:185.819850px;}
.y286{bottom:185.912100px;}
.y171{bottom:189.053850px;}
.y9a{bottom:190.596450px;}
.y2d2{bottom:191.121900px;}
.y25b{bottom:191.405250px;}
.y2a0{bottom:191.635350px;}
.y5d{bottom:191.770350px;}
.y229{bottom:191.798850px;}
.yf2{bottom:191.920350px;}
.y1d7{bottom:194.547000px;}
.y1fa{bottom:198.055950px;}
.y313{bottom:200.263500px;}
.y1a2{bottom:200.688750px;}
.ye3{bottom:203.505150px;}
.y26{bottom:203.819850px;}
.y285{bottom:203.912100px;}
.y2d1{bottom:206.121900px;}
.y25a{bottom:206.405250px;}
.y99{bottom:206.844450px;}
.y170{bottom:207.053850px;}
.y1d6{bottom:209.547000px;}
.y29f{bottom:209.635350px;}
.y5c{bottom:209.770350px;}
.yf1{bottom:209.920350px;}
.y312{bottom:215.263500px;}
.y1a1{bottom:215.688750px;}
.y1f9{bottom:216.055950px;}
.y2d0{bottom:221.121900px;}
.y259{bottom:221.405250px;}
.y25{bottom:221.819850px;}
.y284{bottom:221.912100px;}
.y98{bottom:223.092450px;}
.y1d5{bottom:224.547000px;}
.y16f{bottom:225.053850px;}
.y29e{bottom:227.635350px;}
.y5b{bottom:227.770350px;}
.yf0{bottom:227.920350px;}
.y228{bottom:228.053850px;}
.y311{bottom:230.263500px;}
.y1a0{bottom:230.688750px;}
.y1f8{bottom:234.055950px;}
.y2cf{bottom:236.121900px;}
.y258{bottom:236.405250px;}
.ye2{bottom:238.400250px;}
.y97{bottom:239.340450px;}
.y1d4{bottom:239.547000px;}
.y24{bottom:239.819850px;}
.y283{bottom:239.912100px;}
.y16e{bottom:243.053850px;}
.y29d{bottom:245.230350px;}
.y310{bottom:245.263500px;}
.y19f{bottom:245.688750px;}
.y5a{bottom:245.770350px;}
.yef{bottom:245.920350px;}
.y227{bottom:246.053850px;}
.y2ce{bottom:251.121900px;}
.y257{bottom:251.405250px;}
.y1f7{bottom:252.055950px;}
.y96{bottom:255.588450px;}
.y23{bottom:257.819850px;}
.y282{bottom:257.912100px;}
.y30f{bottom:260.263500px;}
.y19e{bottom:260.688750px;}
.y16d{bottom:261.053850px;}
.y59{bottom:263.770350px;}
.yee{bottom:263.920350px;}
.y226{bottom:264.053850px;}
.y2cd{bottom:266.121900px;}
.y256{bottom:266.405250px;}
.y1f6{bottom:270.055950px;}
.y95{bottom:271.836450px;}
.y1d3{bottom:272.657100px;}
.y30e{bottom:275.263500px;}
.y19d{bottom:275.688750px;}
.y22{bottom:275.819850px;}
.y281{bottom:275.912100px;}
.y16c{bottom:279.053850px;}
.y2cc{bottom:281.121900px;}
.y29c{bottom:281.635350px;}
.y58{bottom:281.770350px;}
.yba{bottom:281.912100px;}
.yed{bottom:281.920350px;}
.y225{bottom:282.053850px;}
.y1f5{bottom:288.055950px;}
.y94{bottom:288.084450px;}
.y30d{bottom:290.263500px;}
.y19c{bottom:290.688750px;}
.y21{bottom:293.819850px;}
.y280{bottom:293.912100px;}
.y2cb{bottom:296.121900px;}
.y16b{bottom:297.053850px;}
.y255{bottom:299.517600px;}
.y29b{bottom:299.635350px;}
.y57{bottom:299.770350px;}
.yb9{bottom:299.912100px;}
.yec{bottom:299.920350px;}
.y224{bottom:300.053850px;}
.y93{bottom:304.332450px;}
.y30c{bottom:305.263500px;}
.y19b{bottom:305.688750px;}
.y1f4{bottom:306.055950px;}
.y1d2{bottom:308.912100px;}
.y2ca{bottom:311.121900px;}
.y20{bottom:311.819850px;}
.y27f{bottom:311.912100px;}
.y16a{bottom:315.053850px;}
.y29a{bottom:317.635350px;}
.y56{bottom:317.770350px;}
.ye1{bottom:317.912100px;}
.yb8{bottom:317.920350px;}
.y223{bottom:318.053850px;}
.y30b{bottom:320.263500px;}
.y92{bottom:320.580450px;}
.y1f3{bottom:324.055950px;}
.y2c9{bottom:326.121900px;}
.y1d1{bottom:326.912100px;}
.y1f{bottom:329.819850px;}
.y27e{bottom:329.912100px;}
.y169{bottom:333.053850px;}
.y30a{bottom:335.263500px;}
.y299{bottom:335.635350px;}
.y55{bottom:335.770350px;}
.y254{bottom:335.772600px;}
.ye0{bottom:335.912100px;}
.yb7{bottom:335.920350px;}
.y222{bottom:336.053850px;}
.y91{bottom:336.828450px;}
.y19a{bottom:338.800950px;}
.y2c8{bottom:341.121900px;}
.y1f2{bottom:342.055950px;}
.y1d0{bottom:344.912100px;}
.y1e{bottom:347.819850px;}
.y27d{bottom:347.912100px;}
.y309{bottom:350.263500px;}
.y168{bottom:351.053850px;}
.y90{bottom:353.076450px;}
.y298{bottom:353.635350px;}
.y54{bottom:353.770350px;}
.y253{bottom:353.772600px;}
.ydf{bottom:353.912100px;}
.yb6{bottom:353.920350px;}
.y221{bottom:354.053850px;}
.y2c7{bottom:356.121900px;}
.y1f1{bottom:360.055950px;}
.y1cf{bottom:362.912100px;}
.y308{bottom:365.263500px;}
.y2a{bottom:365.819850px;}
.y27c{bottom:365.912100px;}
.y167{bottom:369.053850px;}
.y8f{bottom:369.324450px;}
.y2c6{bottom:371.121900px;}
.y297{bottom:371.230350px;}
.y53{bottom:371.770350px;}
.y252{bottom:371.772600px;}
.yde{bottom:371.912100px;}
.yb5{bottom:371.920350px;}
.y220{bottom:372.053850px;}
.y199{bottom:375.055950px;}
.y1f0{bottom:378.055950px;}
.y307{bottom:380.263500px;}
.y1ce{bottom:380.912100px;}
.y1d{bottom:383.414850px;}
.y29{bottom:383.819850px;}
.y27b{bottom:383.912100px;}
.y8e{bottom:385.572450px;}
.y2c5{bottom:386.121900px;}
.y166{bottom:387.053850px;}
.y65{bottom:389.365350px;}
.y52{bottom:389.770350px;}
.y251{bottom:389.772600px;}
.ydd{bottom:389.912100px;}
.yb4{bottom:389.920350px;}
.y21f{bottom:390.053850px;}
.y198{bottom:393.055950px;}
.y306{bottom:395.263500px;}
.y1ef{bottom:396.055950px;}
.y1cd{bottom:398.912100px;}
.y2c4{bottom:401.121900px;}
.y8d{bottom:401.820450px;}
.y27a{bottom:401.912100px;}
.y165{bottom:405.053850px;}
.y296{bottom:407.635350px;}
.y51{bottom:407.770350px;}
.y250{bottom:407.772600px;}
.ydc{bottom:407.912100px;}
.yb3{bottom:407.920350px;}
.y21e{bottom:408.053850px;}
.y305{bottom:410.263500px;}
.y197{bottom:411.055950px;}
.y1ee{bottom:414.055950px;}
.y2c3{bottom:416.121900px;}
.y1cc{bottom:416.912100px;}
.y8c{bottom:418.068450px;}
.y279{bottom:419.912100px;}
.y164{bottom:423.055950px;}
.y64{bottom:425.230350px;}
.y304{bottom:425.263500px;}
.y295{bottom:425.635350px;}
.y50{bottom:425.770350px;}
.y24f{bottom:425.772600px;}
.ydb{bottom:425.912100px;}
.yb2{bottom:425.920350px;}
.y21d{bottom:426.053850px;}
.y196{bottom:429.055950px;}
.y2c2{bottom:431.121900px;}
.y1ed{bottom:432.055950px;}
.y8b{bottom:434.316450px;}
.y1cb{bottom:434.912100px;}
.y278{bottom:437.907600px;}
.y303{bottom:440.263500px;}
.y163{bottom:441.055950px;}
.y294{bottom:443.635350px;}
.y4f{bottom:443.770350px;}
.y24e{bottom:443.772600px;}
.yda{bottom:443.912100px;}
.yb1{bottom:443.920350px;}
.y21c{bottom:444.053850px;}
.y2c1{bottom:446.121900px;}
.y195{bottom:447.055950px;}
.y1ec{bottom:450.055950px;}
.y8a{bottom:450.564450px;}
.y1ca{bottom:452.912100px;}
.y302{bottom:455.263500px;}
.y277{bottom:455.907600px;}
.y162{bottom:459.055950px;}
.y2c0{bottom:461.121900px;}
.y293{bottom:461.635350px;}
.y4e{bottom:461.770350px;}
.y24d{bottom:461.772600px;}
.yd9{bottom:461.912100px;}
.yb0{bottom:461.920350px;}
.y21b{bottom:462.053850px;}
.y1a{bottom:462.064200px;}
.y194{bottom:465.055950px;}
.y89{bottom:466.812450px;}
.y1eb{bottom:468.055950px;}
.y301{bottom:470.263500px;}
.y1c9{bottom:470.914350px;}
.y276{bottom:473.907600px;}
.y2bf{bottom:476.121900px;}
.y161{bottom:477.055950px;}
.y292{bottom:479.635350px;}
.y4d{bottom:479.770350px;}
.y24c{bottom:479.772600px;}
.yd8{bottom:479.912100px;}
.yaf{bottom:479.920350px;}
.y21a{bottom:480.053850px;}
.y193{bottom:483.055950px;}
.y88{bottom:483.060450px;}
.y300{bottom:485.263500px;}
.y1ea{bottom:486.055950px;}
.y1c8{bottom:488.914350px;}
.y19{bottom:489.409200px;}
.y2be{bottom:491.121900px;}
.y275{bottom:491.907600px;}
.y160{bottom:495.055950px;}
.y291{bottom:497.635350px;}
.y4c{bottom:497.770350px;}
.y24b{bottom:497.772600px;}
.yd7{bottom:497.912100px;}
.yae{bottom:497.920350px;}
.y219{bottom:498.053850px;}
.y87{bottom:499.308450px;}
.y2ff{bottom:500.263500px;}
.y192{bottom:501.055950px;}
.y1e9{bottom:504.055950px;}
.y2bd{bottom:506.121900px;}
.y1c7{bottom:506.914350px;}
.y18{bottom:507.409200px;}
.y274{bottom:509.907600px;}
.y15f{bottom:513.055950px;}
.y2fe{bottom:515.263500px;}
.y86{bottom:515.556450px;}
.y290{bottom:515.635350px;}
.y4b{bottom:515.770350px;}
.y24a{bottom:515.772600px;}
.yd6{bottom:515.912100px;}
.yad{bottom:515.920350px;}
.y218{bottom:516.053850px;}
.y191{bottom:519.055950px;}
.y2bc{bottom:521.121900px;}
.y1e8{bottom:522.055950px;}
.y1c6{bottom:524.914350px;}
.y17{bottom:525.409200px;}
.y273{bottom:527.907600px;}
.y2fd{bottom:530.263500px;}
.y15e{bottom:531.055950px;}
.y85{bottom:531.804450px;}
.y28f{bottom:533.635350px;}
.y4a{bottom:533.770350px;}
.y249{bottom:533.772600px;}
.yd5{bottom:533.912100px;}
.yac{bottom:533.920350px;}
.y217{bottom:534.053850px;}
.y2bb{bottom:536.121900px;}
.y190{bottom:537.055950px;}
.y1e7{bottom:540.055950px;}
.y1c5{bottom:542.914350px;}
.y16{bottom:543.409200px;}
.y2fc{bottom:545.263500px;}
.y272{bottom:545.907600px;}
.y84{bottom:548.052450px;}
.y15d{bottom:549.055950px;}
.y2ba{bottom:551.121900px;}
.y28e{bottom:551.635350px;}
.y49{bottom:551.770350px;}
.y248{bottom:551.772600px;}
.yd4{bottom:551.912100px;}
.yab{bottom:551.920350px;}
.y216{bottom:552.053850px;}
.y18f{bottom:555.055950px;}
.y1e6{bottom:558.055950px;}
.y2fb{bottom:560.263500px;}
.y1c4{bottom:560.914350px;}
.y15{bottom:561.409200px;}
.y271{bottom:563.907600px;}
.y83{bottom:564.300450px;}
.y2b9{bottom:566.121900px;}
.y48{bottom:569.770350px;}
.y247{bottom:569.772600px;}
.yd3{bottom:569.912100px;}
.yaa{bottom:569.920350px;}
.y215{bottom:570.053850px;}
.y18e{bottom:573.055950px;}
.y2fa{bottom:575.263500px;}
.y1e5{bottom:576.055950px;}
.y1c3{bottom:578.914350px;}
.y14{bottom:579.409200px;}
.y82{bottom:580.548450px;}
.y2b8{bottom:581.121900px;}
.y270{bottom:581.907600px;}
.y15c{bottom:584.650950px;}
.y28d{bottom:587.230350px;}
.yeb{bottom:587.515350px;}
.y47{bottom:587.770350px;}
.y246{bottom:587.772600px;}
.yd2{bottom:587.912100px;}
.ya9{bottom:587.920350px;}
.y214{bottom:588.053850px;}
.y2f9{bottom:590.263500px;}
.y18d{bottom:591.055950px;}
.y1e4{bottom:594.055950px;}
.y2b7{bottom:596.121900px;}
.y81{bottom:596.796450px;}
.y1c2{bottom:596.914350px;}
.y13{bottom:597.409200px;}
.y26f{bottom:599.907600px;}
.y2f8{bottom:605.263500px;}
.y46{bottom:605.770350px;}
.y245{bottom:605.772600px;}
.yd1{bottom:605.912100px;}
.ya8{bottom:605.920350px;}
.y213{bottom:606.055950px;}
.y18c{bottom:609.055950px;}
.y2b6{bottom:611.121900px;}
.y80{bottom:613.044450px;}
.y1c1{bottom:614.914350px;}
.y12{bottom:615.409200px;}
.y26e{bottom:617.907600px;}
.y2f7{bottom:620.263500px;}
.y15b{bottom:620.405250px;}
.y45{bottom:623.770350px;}
.y244{bottom:623.772600px;}
.yd0{bottom:623.912100px;}
.ya7{bottom:623.920350px;}
.y2b5{bottom:626.121900px;}
.y18b{bottom:627.055950px;}
.y1e3{bottom:629.650950px;}
.y1c0{bottom:632.914350px;}
.y11{bottom:633.409200px;}
.y2f6{bottom:635.263500px;}
.y15a{bottom:635.405250px;}
.y26d{bottom:635.907600px;}
.y2b4{bottom:641.121900px;}
.y212{bottom:641.650950px;}
.y44{bottom:641.770350px;}
.y243{bottom:641.772600px;}
.ycf{bottom:641.912100px;}
.ya6{bottom:641.920350px;}
.y7f{bottom:642.048450px;}
.y18a{bottom:645.055950px;}
.y2f5{bottom:650.263500px;}
.y159{bottom:650.405250px;}
.y1bf{bottom:650.914350px;}
.y10{bottom:651.409200px;}
.y26c{bottom:653.907600px;}
.y2b3{bottom:656.121900px;}
.y43{bottom:659.770350px;}
.y242{bottom:659.772600px;}
.yce{bottom:659.912100px;}
.ya5{bottom:659.920350px;}
.y189{bottom:663.055950px;}
.y2f4{bottom:665.263500px;}
.y158{bottom:665.405250px;}
.y1be{bottom:668.914350px;}
.yf{bottom:669.409200px;}
.y2b2{bottom:671.121900px;}
.y12d{bottom:671.770350px;}
.y26b{bottom:671.907600px;}
.y135{bottom:671.912100px;}
.y7e{bottom:674.440350px;}
.y211{bottom:677.405250px;}
.y153{bottom:677.515350px;}
.y42{bottom:677.770350px;}
.y241{bottom:677.772600px;}
.ycd{bottom:677.912100px;}
.ya4{bottom:677.920350px;}
.y2f3{bottom:680.263500px;}
.y157{bottom:680.405250px;}
.y188{bottom:681.055950px;}
.y2b1{bottom:686.121900px;}
.y1bd{bottom:686.914350px;}
.ye{bottom:687.409200px;}
.y12c{bottom:689.770350px;}
.y26a{bottom:689.907600px;}
.y134{bottom:689.912100px;}
.y210{bottom:692.405250px;}
.y2f2{bottom:695.263500px;}
.y156{bottom:695.405250px;}
.y41{bottom:695.770350px;}
.y240{bottom:695.772600px;}
.y11e{bottom:695.779350px;}
.ycc{bottom:695.912100px;}
.y10a{bottom:695.914350px;}
.ya3{bottom:695.920350px;}
.y187{bottom:699.055950px;}
.y2b0{bottom:701.121900px;}
.y1bc{bottom:704.914350px;}
.y13d{bottom:707.405250px;}
.y12b{bottom:707.770350px;}
.y269{bottom:707.907600px;}
.y14f{bottom:707.912100px;}
.y2f1{bottom:710.263500px;}
.y155{bottom:710.405250px;}
.y40{bottom:713.770350px;}
.y23f{bottom:713.772600px;}
.y11d{bottom:713.779350px;}
.ycb{bottom:713.912100px;}
.y109{bottom:713.914350px;}
.y2af{bottom:716.121900px;}
.y186{bottom:717.055950px;}
.y13c{bottom:722.405250px;}
.y1bb{bottom:722.914350px;}
.y2f0{bottom:725.263500px;}
.y133{bottom:725.405250px;}
.y12a{bottom:725.770350px;}
.y268{bottom:725.907600px;}
.y14e{bottom:725.912100px;}
.y2ae{bottom:731.121900px;}
.ya2{bottom:731.515350px;}
.y3f{bottom:731.770350px;}
.y23e{bottom:731.772600px;}
.y11c{bottom:731.779350px;}
.yca{bottom:731.912100px;}
.y108{bottom:731.914350px;}
.y71{bottom:731.920350px;}
.yd{bottom:732.567300px;}
.y185{bottom:735.055950px;}
.y13b{bottom:737.405250px;}
.y2ef{bottom:740.263500px;}
.y132{bottom:740.405250px;}
.y1ba{bottom:740.914350px;}
.y129{bottom:743.770350px;}
.y267{bottom:743.907600px;}
.y14d{bottom:743.912100px;}
.yc{bottom:745.018050px;}
.y2ad{bottom:746.121900px;}
.y3e{bottom:749.770350px;}
.y23d{bottom:749.772600px;}
.y11b{bottom:749.779350px;}
.yc9{bottom:749.912100px;}
.y107{bottom:749.914350px;}
.y70{bottom:749.920350px;}
.y13a{bottom:752.405250px;}
.y184{bottom:753.055950px;}
.y2ee{bottom:755.263500px;}
.y131{bottom:755.405250px;}
.y1b9{bottom:758.914350px;}
.y2ac{bottom:761.121900px;}
.y266{bottom:761.907600px;}
.y14c{bottom:761.912100px;}
.y20f{bottom:767.405250px;}
.y3d{bottom:767.770350px;}
.y23c{bottom:767.772600px;}
.y11a{bottom:767.779350px;}
.yc8{bottom:767.912100px;}
.y106{bottom:767.914350px;}
.y6f{bottom:767.920350px;}
.y2ed{bottom:770.263500px;}
.y130{bottom:770.405250px;}
.y183{bottom:771.055950px;}
.y2ab{bottom:776.121900px;}
.yb{bottom:776.733600px;}
.y1b8{bottom:776.914350px;}
.y128{bottom:779.263500px;}
.y14b{bottom:779.912100px;}
.y20e{bottom:782.405250px;}
.y2ec{bottom:785.263500px;}
.y1e2{bottom:785.405250px;}
.y139{bottom:785.515350px;}
.y3c{bottom:785.770350px;}
.y23b{bottom:785.772600px;}
.y119{bottom:785.779350px;}
.yc7{bottom:785.912100px;}
.y105{bottom:785.914350px;}
.y6e{bottom:785.920350px;}
.y182{bottom:789.055950px;}
.y2aa{bottom:791.121900px;}
.ya{bottom:794.094150px;}
.y127{bottom:794.263500px;}
.y1b7{bottom:794.914350px;}
.y20d{bottom:797.405250px;}
.y265{bottom:797.502600px;}
.y14a{bottom:797.912100px;}
.y2eb{bottom:800.263500px;}
.y1e1{bottom:800.405250px;}
.y12f{bottom:803.515350px;}
.y154{bottom:803.530350px;}
.y9{bottom:803.733600px;}
.y3b{bottom:803.770350px;}
.y23a{bottom:803.772600px;}
.y118{bottom:803.779350px;}
.yc6{bottom:803.912100px;}
.y104{bottom:803.914350px;}
.y6d{bottom:803.920350px;}
.y2a9{bottom:806.121900px;}
.y181{bottom:807.055950px;}
.y126{bottom:809.263500px;}
.y20c{bottom:812.405250px;}
.y1b6{bottom:812.914350px;}
.y2ea{bottom:815.263500px;}
.y1e0{bottom:815.405250px;}
.y8{bottom:821.094150px;}
.y12e{bottom:821.515350px;}
.y3a{bottom:821.770350px;}
.y239{bottom:821.772600px;}
.y117{bottom:821.779350px;}
.yc5{bottom:821.912100px;}
.y103{bottom:821.914350px;}
.y6c{bottom:821.920350px;}
.y125{bottom:824.263500px;}
.y180{bottom:825.055950px;}
.y20b{bottom:827.405250px;}
.y2e9{bottom:830.263500px;}
.y1df{bottom:830.405250px;}
.y1b5{bottom:830.914350px;}
.y264{bottom:833.367600px;}
.y149{bottom:833.405250px;}
.y2a8{bottom:839.245350px;}
.y39{bottom:839.770350px;}
.y238{bottom:839.772600px;}
.y116{bottom:839.779350px;}
.y7d{bottom:839.785350px;}
.yc4{bottom:839.912100px;}
.y102{bottom:839.914350px;}
.y6b{bottom:839.920350px;}
.y20a{bottom:842.405250px;}
.y17f{bottom:843.055950px;}
.y2e8{bottom:845.263500px;}
.y1de{bottom:845.405250px;}
.y148{bottom:848.405250px;}
.y1b4{bottom:848.914350px;}
.y7{bottom:851.380950px;}
.y124{bottom:857.365350px;}
.y209{bottom:857.405250px;}
.y38{bottom:857.770350px;}
.y237{bottom:857.772600px;}
.y115{bottom:857.779350px;}
.y7c{bottom:857.785350px;}
.yc3{bottom:857.912100px;}
.y101{bottom:857.914350px;}
.y6a{bottom:857.920350px;}
.y2e7{bottom:860.263500px;}
.y1dd{bottom:860.405250px;}
.y17e{bottom:861.055950px;}
.y147{bottom:863.405250px;}
.y208{bottom:872.405250px;}
.y31f{bottom:872.914350px;}
.y2e6{bottom:875.263500px;}
.y123{bottom:875.365350px;}
.y37{bottom:875.770350px;}
.y236{bottom:875.772600px;}
.y114{bottom:875.779350px;}
.y7b{bottom:875.785350px;}
.y100{bottom:875.914350px;}
.y69{bottom:875.920350px;}
.y146{bottom:878.405250px;}
.y1b3{bottom:884.509350px;}
.y207{bottom:887.405250px;}
.y2e5{bottom:890.263500px;}
.y145{bottom:893.405250px;}
.y1dc{bottom:893.515350px;}
.yc2{bottom:893.522100px;}
.y36{bottom:893.770350px;}
.y235{bottom:893.772600px;}
.y113{bottom:893.779350px;}
.y7a{bottom:893.785350px;}
.yff{bottom:893.914350px;}
.y68{bottom:893.920350px;}
.y17d{bottom:896.650950px;}
.y6{bottom:897.543600px;}
.y206{bottom:902.405250px;}
.y2e4{bottom:905.263500px;}
.y144{bottom:908.405250px;}
.y31e{bottom:908.914350px;}
.y122{bottom:911.230350px;}
.y2a7{bottom:911.380350px;}
.y35{bottom:911.770350px;}
.y234{bottom:911.772600px;}
.y112{bottom:911.779350px;}
.y79{bottom:911.785350px;}
.yfe{bottom:911.914350px;}
.y205{bottom:917.405250px;}
.y2e3{bottom:920.263500px;}
.y1b2{bottom:920.268750px;}
.y143{bottom:923.405250px;}
.y67{bottom:929.515350px;}
.y34{bottom:929.770350px;}
.y233{bottom:929.772600px;}
.yc1{bottom:929.777100px;}
.y111{bottom:929.779350px;}
.y78{bottom:929.785350px;}
.yfd{bottom:929.914350px;}
.y17c{bottom:932.405250px;}
.y5{bottom:934.004400px;}
.y2e2{bottom:935.263500px;}
.y1b1{bottom:935.268750px;}
.y142{bottom:938.405250px;}
.y31d{bottom:944.509350px;}
.y33{bottom:947.770350px;}
.y232{bottom:947.772600px;}
.yc0{bottom:947.777100px;}
.y110{bottom:947.779350px;}
.y77{bottom:947.785350px;}
.yfc{bottom:947.914350px;}
.y2e1{bottom:950.263500px;}
.y1b0{bottom:950.268750px;}
.y2e0{bottom:965.263500px;}
.y1af{bottom:965.268750px;}
.y2a6{bottom:965.380350px;}
.y17b{bottom:965.515350px;}
.y204{bottom:965.515950px;}
.y263{bottom:965.519700px;}
.y32{bottom:965.770350px;}
.y231{bottom:965.772600px;}
.ybf{bottom:965.777100px;}
.y10f{bottom:965.779350px;}
.y76{bottom:965.785350px;}
.yfb{bottom:965.914350px;}
.y4{bottom:970.465200px;}
.y141{bottom:971.512950px;}
.y2df{bottom:980.263500px;}
.y1ae{bottom:980.268750px;}
.y31{bottom:983.770350px;}
.y230{bottom:983.772600px;}
.ybe{bottom:983.777100px;}
.y10e{bottom:983.779350px;}
.y75{bottom:983.785350px;}
.y140{bottom:989.512950px;}
.y2de{bottom:995.263500px;}
.y1ad{bottom:995.268750px;}
.yfa{bottom:1001.509350px;}
.y30{bottom:1001.770350px;}
.y203{bottom:1001.770950px;}
.y22f{bottom:1001.772600px;}
.y262{bottom:1001.774700px;}
.ybd{bottom:1001.777100px;}
.y10d{bottom:1001.779350px;}
.y74{bottom:1001.785350px;}
.y3{bottom:1006.926000px;}
.y2dd{bottom:1010.263500px;}
.y1ac{bottom:1010.268750px;}
.y2f{bottom:1019.770350px;}
.y202{bottom:1019.770950px;}
.y261{bottom:1019.774700px;}
.ybc{bottom:1019.777100px;}
.y10c{bottom:1019.779350px;}
.y73{bottom:1019.785350px;}
.y13f{bottom:1025.261250px;}
.y2dc{bottom:1025.263500px;}
.y1ab{bottom:1025.268750px;}
.y28c{bottom:1037.365350px;}
.yf9{bottom:1037.367600px;}
.y2a5{bottom:1037.380350px;}
.y2e{bottom:1037.770350px;}
.y201{bottom:1037.770950px;}
.y260{bottom:1037.774700px;}
.ybb{bottom:1037.777100px;}
.y10b{bottom:1037.779350px;}
.y72{bottom:1037.785350px;}
.y13e{bottom:1040.261250px;}
.y2db{bottom:1040.263500px;}
.y1aa{bottom:1040.268750px;}
.y2{bottom:1069.300350px;}
.y2da{bottom:1132.413900px;}
.y22e{bottom:1132.416750px;}
.y66{bottom:1132.418700px;}
.y121{bottom:1132.419450px;}
.y17a{bottom:1132.421700px;}
.y31c{bottom:1132.423500px;}
.y152{bottom:1132.426350px;}
.y138{bottom:1132.427850px;}
.yea{bottom:1132.437150px;}
.ya1{bottom:1132.441350px;}
.y2c{bottom:1136.089500px;}
.y2b{bottom:1150.492500px;}
.h6{height:19.683105px;}
.h8{height:28.412109px;}
.h2{height:30.597656px;}
.hc{height:32.783203px;}
.h7{height:32.805176px;}
.h12{height:33.351562px;}
.h10{height:34.968750px;}
.hf{height:34.992188px;}
.h11{height:40.031250px;}
.he{height:41.689453px;}
.ha{height:43.681641px;}
.h9{height:43.710938px;}
.hb{height:43.717434px;}
.h5{height:49.138634px;}
.h13{height:50.030663px;}
.hd{height:50.039062px;}
.h14{height:50.057062px;}
.h15{height:51.659062px;}
.h3{height:56.786133px;}
.h4{height:92.168262px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:76.535400px;}
.x15{left:78.661350px;}
.x8{left:96.094500px;}
.x1{left:97.795200px;}
.x13{left:99.921300px;}
.x1a{left:101.890350px;}
.x4{left:106.299150px;}
.xb{left:110.551200px;}
.x16{left:119.055150px;}
.x1c{left:123.307350px;}
.x3{left:125.433000px;}
.x6{left:131.816400px;}
.x25{left:152.203950px;}
.x2c{left:165.530400px;}
.x29{left:173.456550px;}
.x23{left:188.035350px;}
.x2f{left:190.160400px;}
.x2d{left:195.523050px;}
.x18{left:211.105350px;}
.x5{left:212.876400px;}
.x19{left:214.030350px;}
.x1b{left:215.530350px;}
.x9{left:455.041500px;}
.xc{left:457.096200px;}
.x21{left:472.297350px;}
.x11{left:478.345350px;}
.x7{left:480.476400px;}
.x20{left:482.603400px;}
.xd{left:491.116200px;}
.x1d{left:498.576000px;}
.x17{left:499.606350px;}
.x1f{left:503.858400px;}
.x12{left:512.368350px;}
.xe{left:525.286200px;}
.x27{left:534.070650px;}
.x26{left:538.670250px;}
.x2a{left:540.663000px;}
.x24{left:564.511350px;}
.x22{left:574.837350px;}
.x2e{left:579.428700px;}
.x1e{left:602.751000px;}
.x10{left:663.492300px;}
.x2{left:693.365400px;}
.x28{left:721.717650px;}
.xf{left:728.391600px;}
.x2b{left:743.870400px;}
.x14{left:749.701350px;}
@media print{
.v2{vertical-align:-13.726400pt;}
.v3{vertical-align:-3.657600pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.440000pt;}
.v4{vertical-align:17.699733pt;}
.v1{vertical-align:19.217067pt;}
.ls87{letter-spacing:-2.346667pt;}
.ls12{letter-spacing:-0.693333pt;}
.ls52{letter-spacing:-0.586667pt;}
.ls68{letter-spacing:-0.533333pt;}
.ls56{letter-spacing:-0.480000pt;}
.ls6d{letter-spacing:-0.373333pt;}
.ls9d{letter-spacing:-0.341333pt;}
.ls14{letter-spacing:-0.320000pt;}
.ls64{letter-spacing:-0.266667pt;}
.ls37{letter-spacing:-0.213333pt;}
.ls36{letter-spacing:-0.160000pt;}
.ls9e{letter-spacing:-0.128000pt;}
.ls13{letter-spacing:-0.106667pt;}
.ls88{letter-spacing:-0.085333pt;}
.ls15{letter-spacing:-0.053333pt;}
.ls86{letter-spacing:-0.042667pt;}
.ls11{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.003733pt;}
.ls96{letter-spacing:0.042667pt;}
.ls31{letter-spacing:0.053333pt;}
.ls1{letter-spacing:0.061333pt;}
.ls57{letter-spacing:0.085333pt;}
.ls1d{letter-spacing:0.106667pt;}
.ls8e{letter-spacing:0.128000pt;}
.ls1f{letter-spacing:0.160000pt;}
.ls58{letter-spacing:0.170667pt;}
.ls47{letter-spacing:0.213333pt;}
.ls7d{letter-spacing:0.256000pt;}
.ls1a{letter-spacing:0.266667pt;}
.ls5a{letter-spacing:0.298667pt;}
.lse{letter-spacing:0.320000pt;}
.ls5b{letter-spacing:0.341333pt;}
.ls8{letter-spacing:0.373333pt;}
.ls9a{letter-spacing:0.384000pt;}
.lsb{letter-spacing:0.426667pt;}
.ls90{letter-spacing:0.469333pt;}
.lsd{letter-spacing:0.480000pt;}
.ls48{letter-spacing:0.510933pt;}
.ls8a{letter-spacing:0.512000pt;}
.ls7{letter-spacing:0.533333pt;}
.ls94{letter-spacing:0.554667pt;}
.ls16{letter-spacing:0.586667pt;}
.ls67{letter-spacing:0.597333pt;}
.ls25{letter-spacing:0.640000pt;}
.ls5c{letter-spacing:0.682667pt;}
.ls1e{letter-spacing:0.693333pt;}
.ls63{letter-spacing:0.707200pt;}
.lsb7{letter-spacing:0.725333pt;}
.ls4{letter-spacing:0.746667pt;}
.ls81{letter-spacing:0.768000pt;}
.ls49{letter-spacing:0.800000pt;}
.ls77{letter-spacing:0.810667pt;}
.ls46{letter-spacing:0.853333pt;}
.ls40{letter-spacing:0.892267pt;}
.ls9f{letter-spacing:0.896000pt;}
.ls3{letter-spacing:0.906667pt;}
.ls9c{letter-spacing:0.938667pt;}
.ls20{letter-spacing:0.960000pt;}
.ls8b{letter-spacing:0.981333pt;}
.ls32{letter-spacing:1.013333pt;}
.ls75{letter-spacing:1.024000pt;}
.lsa{letter-spacing:1.066667pt;}
.ls9b{letter-spacing:1.109333pt;}
.ls22{letter-spacing:1.120000pt;}
.ls61{letter-spacing:1.152000pt;}
.ls1b{letter-spacing:1.173333pt;}
.ls62{letter-spacing:1.183467pt;}
.lsa0{letter-spacing:1.194667pt;}
.ls17{letter-spacing:1.226667pt;}
.ls7b{letter-spacing:1.237333pt;}
.ls5{letter-spacing:1.280000pt;}
.ls95{letter-spacing:1.322667pt;}
.ls9{letter-spacing:1.333333pt;}
.lsa2{letter-spacing:1.365333pt;}
.ls30{letter-spacing:1.386667pt;}
.ls8c{letter-spacing:1.408000pt;}
.ls3c{letter-spacing:1.439467pt;}
.ls44{letter-spacing:1.440000pt;}
.ls99{letter-spacing:1.450667pt;}
.ls18{letter-spacing:1.493333pt;}
.ls78{letter-spacing:1.536000pt;}
.ls35{letter-spacing:1.546667pt;}
.lsa9{letter-spacing:1.578667pt;}
.ls33{letter-spacing:1.600000pt;}
.lsa5{letter-spacing:1.621333pt;}
.ls2b{letter-spacing:1.653333pt;}
.ls97{letter-spacing:1.664000pt;}
.ls6{letter-spacing:1.706667pt;}
.lsa6{letter-spacing:1.749333pt;}
.ls1c{letter-spacing:1.760000pt;}
.ls82{letter-spacing:1.792000pt;}
.ls2e{letter-spacing:1.813333pt;}
.ls8f{letter-spacing:1.834667pt;}
.ls19{letter-spacing:1.866667pt;}
.lsaa{letter-spacing:1.877333pt;}
.ls10{letter-spacing:1.920000pt;}
.lsa1{letter-spacing:1.962667pt;}
.ls38{letter-spacing:1.973333pt;}
.ls92{letter-spacing:2.005333pt;}
.ls4c{letter-spacing:2.026667pt;}
.ls45{letter-spacing:2.080000pt;}
.ls98{letter-spacing:2.090667pt;}
.ls28{letter-spacing:2.133333pt;}
.ls6a{letter-spacing:2.176000pt;}
.ls2{letter-spacing:2.186667pt;}
.ls6c{letter-spacing:2.218667pt;}
.ls23{letter-spacing:2.240000pt;}
.ls34{letter-spacing:2.293333pt;}
.ls42{letter-spacing:2.346667pt;}
.ls79{letter-spacing:2.389333pt;}
.ls3b{letter-spacing:2.400000pt;}
.lsb6{letter-spacing:2.432000pt;}
.ls5e{letter-spacing:2.453333pt;}
.ls7f{letter-spacing:2.474667pt;}
.ls27{letter-spacing:2.506667pt;}
.ls93{letter-spacing:2.517333pt;}
.ls24{letter-spacing:2.560000pt;}
.ls80{letter-spacing:2.602667pt;}
.ls21{letter-spacing:2.613333pt;}
.ls89{letter-spacing:2.645333pt;}
.ls3e{letter-spacing:2.666667pt;}
.ls7c{letter-spacing:2.688000pt;}
.ls50{letter-spacing:2.720000pt;}
.lsa4{letter-spacing:2.730667pt;}
.ls2d{letter-spacing:2.773333pt;}
.lsa7{letter-spacing:2.816000pt;}
.ls4f{letter-spacing:2.826667pt;}
.ls29{letter-spacing:2.880000pt;}
.ls83{letter-spacing:2.901333pt;}
.ls53{letter-spacing:2.933333pt;}
.lsae{letter-spacing:2.944000pt;}
.ls2a{letter-spacing:2.986667pt;}
.lsb3{letter-spacing:3.029333pt;}
.ls51{letter-spacing:3.040000pt;}
.lsb1{letter-spacing:3.072000pt;}
.ls4e{letter-spacing:3.093333pt;}
.lsc{letter-spacing:3.200000pt;}
.lsb4{letter-spacing:3.242667pt;}
.ls26{letter-spacing:3.253333pt;}
.ls8d{letter-spacing:3.285333pt;}
.lsf{letter-spacing:3.306667pt;}
.ls4a{letter-spacing:3.360000pt;}
.lsb2{letter-spacing:3.370667pt;}
.ls5f{letter-spacing:3.413333pt;}
.lsad{letter-spacing:3.456000pt;}
.ls72{letter-spacing:3.466667pt;}
.lsa3{letter-spacing:3.498667pt;}
.ls4b{letter-spacing:3.520000pt;}
.ls7a{letter-spacing:3.541333pt;}
.ls65{letter-spacing:3.573333pt;}
.ls41{letter-spacing:3.626667pt;}
.lsb0{letter-spacing:3.669333pt;}
.ls60{letter-spacing:3.680000pt;}
.lsb5{letter-spacing:3.712000pt;}
.ls73{letter-spacing:3.786667pt;}
.ls7e{letter-spacing:3.797333pt;}
.ls55{letter-spacing:3.840000pt;}
.ls84{letter-spacing:3.882667pt;}
.ls39{letter-spacing:3.946667pt;}
.ls91{letter-spacing:3.968000pt;}
.ls69{letter-spacing:4.000000pt;}
.ls3f{letter-spacing:4.053333pt;}
.ls5d{letter-spacing:4.106667pt;}
.lsb8{letter-spacing:4.138667pt;}
.ls4d{letter-spacing:4.160000pt;}
.ls85{letter-spacing:4.181333pt;}
.ls71{letter-spacing:4.266667pt;}
.lsaf{letter-spacing:4.352000pt;}
.ls54{letter-spacing:4.373333pt;}
.lsac{letter-spacing:4.437333pt;}
.ls70{letter-spacing:4.480000pt;}
.ls3a{letter-spacing:4.533333pt;}
.ls76{letter-spacing:4.608000pt;}
.ls3d{letter-spacing:4.746667pt;}
.ls6f{letter-spacing:4.800000pt;}
.ls59{letter-spacing:4.853333pt;}
.ls66{letter-spacing:5.386667pt;}
.lsab{letter-spacing:5.418667pt;}
.ls74{letter-spacing:5.440000pt;}
.ls43{letter-spacing:5.600000pt;}
.ls6e{letter-spacing:5.653333pt;}
.ls2c{letter-spacing:6.186667pt;}
.ls2f{letter-spacing:6.293333pt;}
.lsa8{letter-spacing:6.314667pt;}
.ls6b{letter-spacing:7.573333pt;}
.ws53{word-spacing:-18.186667pt;}
.ws5f{word-spacing:-17.440000pt;}
.ws80{word-spacing:-17.386667pt;}
.ws62{word-spacing:-17.013333pt;}
.ws7a{word-spacing:-16.426667pt;}
.ws4b{word-spacing:-16.213333pt;}
.ws65{word-spacing:-16.000000pt;}
.ws7c{word-spacing:-15.893333pt;}
.ws1a{word-spacing:-15.840000pt;}
.ws29{word-spacing:-15.733333pt;}
.ws75{word-spacing:-15.626667pt;}
.ws49{word-spacing:-15.253333pt;}
.ws15{word-spacing:-15.200000pt;}
.ws79{word-spacing:-15.146667pt;}
.ws13{word-spacing:-15.040000pt;}
.ws64{word-spacing:-14.880000pt;}
.ws1{word-spacing:-14.826667pt;}
.ws63{word-spacing:-14.773333pt;}
.ws12{word-spacing:-14.666667pt;}
.ws11{word-spacing:-14.613333pt;}
.ws14{word-spacing:-14.560000pt;}
.ws76{word-spacing:-14.506667pt;}
.ws84{word-spacing:-14.453333pt;}
.ws4c{word-spacing:-14.400000pt;}
.ws43{word-spacing:-14.240000pt;}
.ws83{word-spacing:-14.186667pt;}
.wsc3{word-spacing:-14.165333pt;}
.ws61{word-spacing:-14.133333pt;}
.wsca{word-spacing:-14.122667pt;}
.ws16{word-spacing:-14.080000pt;}
.wse3{word-spacing:-14.037333pt;}
.ws18{word-spacing:-14.026667pt;}
.ws82{word-spacing:-13.866667pt;}
.ws59{word-spacing:-13.813333pt;}
.ws4a{word-spacing:-13.760000pt;}
.ws60{word-spacing:-13.653333pt;}
.ws71{word-spacing:-13.546667pt;}
.wsc7{word-spacing:-13.482667pt;}
.ws17{word-spacing:-13.440000pt;}
.ws7b{word-spacing:-13.386667pt;}
.ws35{word-spacing:-13.333333pt;}
.ws1b{word-spacing:-13.280000pt;}
.ws96{word-spacing:-13.269333pt;}
.ws95{word-spacing:-13.141333pt;}
.ws19{word-spacing:-13.120000pt;}
.ws81{word-spacing:-13.066667pt;}
.wsa7{word-spacing:-13.013333pt;}
.wse1{word-spacing:-12.885333pt;}
.ws70{word-spacing:-12.800000pt;}
.wse2{word-spacing:-12.672000pt;}
.wsc2{word-spacing:-12.629333pt;}
.ws93{word-spacing:-12.586667pt;}
.wsc9{word-spacing:-12.544000pt;}
.ws97{word-spacing:-12.458667pt;}
.wsc5{word-spacing:-12.330667pt;}
.wse5{word-spacing:-12.202667pt;}
.wsa8{word-spacing:-12.160000pt;}
.wsc6{word-spacing:-11.946667pt;}
.ws94{word-spacing:-11.904000pt;}
.ws3{word-spacing:-11.861333pt;}
.ws92{word-spacing:-11.733333pt;}
.wsc0{word-spacing:-11.690667pt;}
.wsa9{word-spacing:-11.648000pt;}
.wscb{word-spacing:-11.520000pt;}
.ws9a{word-spacing:-11.477333pt;}
.wse6{word-spacing:-11.434667pt;}
.ws58{word-spacing:-11.349333pt;}
.wsaa{word-spacing:-11.264000pt;}
.wse4{word-spacing:-11.178667pt;}
.ws2{word-spacing:-11.120000pt;}
.wscc{word-spacing:-11.050667pt;}
.ws6f{word-spacing:-11.008000pt;}
.ws54{word-spacing:-10.965333pt;}
.ws98{word-spacing:-10.922667pt;}
.wsc1{word-spacing:-10.837333pt;}
.wsc8{word-spacing:-10.794667pt;}
.ws52{word-spacing:-10.752000pt;}
.ws51{word-spacing:-10.666667pt;}
.wsc4{word-spacing:-10.453333pt;}
.ws0{word-spacing:-9.340800pt;}
.ws99{word-spacing:-8.320000pt;}
.ws77{word-spacing:-7.573333pt;}
.wse9{word-spacing:-4.138667pt;}
.wsa5{word-spacing:-3.882667pt;}
.ws91{word-spacing:-3.520000pt;}
.wsd4{word-spacing:-3.498667pt;}
.wsb2{word-spacing:-3.285333pt;}
.ws48{word-spacing:-3.253333pt;}
.wsd8{word-spacing:-3.200000pt;}
.ws85{word-spacing:-3.093333pt;}
.wsdc{word-spacing:-2.816000pt;}
.wsa4{word-spacing:-2.602667pt;}
.ws5{word-spacing:-2.565333pt;}
.wsb8{word-spacing:-2.560000pt;}
.ws38{word-spacing:-2.453333pt;}
.ws8f{word-spacing:-2.400000pt;}
.ws42{word-spacing:-2.346667pt;}
.ws78{word-spacing:-2.293333pt;}
.ws2f{word-spacing:-2.240000pt;}
.ws6{word-spacing:-2.072000pt;}
.ws27{word-spacing:-1.973333pt;}
.wsd0{word-spacing:-1.962667pt;}
.wsd7{word-spacing:-1.834667pt;}
.ws7d{word-spacing:-1.813333pt;}
.wsbd{word-spacing:-1.706667pt;}
.wsd6{word-spacing:-1.664000pt;}
.wsa2{word-spacing:-1.536000pt;}
.wsd2{word-spacing:-1.493333pt;}
.ws30{word-spacing:-1.440000pt;}
.wsae{word-spacing:-1.408000pt;}
.ws33{word-spacing:-1.386667pt;}
.wsd3{word-spacing:-1.322667pt;}
.ws1c{word-spacing:-1.280000pt;}
.ws69{word-spacing:-1.173333pt;}
.wsce{word-spacing:-1.152000pt;}
.wsbb{word-spacing:-1.109333pt;}
.ws2d{word-spacing:-1.066667pt;}
.wsdd{word-spacing:-1.024000pt;}
.ws3f{word-spacing:-0.960000pt;}
.ws8c{word-spacing:-0.906667pt;}
.wsdf{word-spacing:-0.853333pt;}
.ws34{word-spacing:-0.768000pt;}
.wsa6{word-spacing:-0.682667pt;}
.wsaf{word-spacing:-0.512000pt;}
.wsd{word-spacing:-0.426667pt;}
.wse0{word-spacing:-0.384000pt;}
.ws10{word-spacing:-0.373333pt;}
.ws2c{word-spacing:-0.320000pt;}
.wsb3{word-spacing:-0.298667pt;}
.ws9b{word-spacing:-0.266667pt;}
.wsba{word-spacing:-0.256000pt;}
.ws6c{word-spacing:-0.213333pt;}
.wsbf{word-spacing:-0.170667pt;}
.wsdb{word-spacing:-0.128000pt;}
.ws7f{word-spacing:-0.106667pt;}
.ws41{word-spacing:-0.053333pt;}
.ws4{word-spacing:0.000000pt;}
.wsde{word-spacing:0.042667pt;}
.wsc{word-spacing:0.053333pt;}
.ws6a{word-spacing:0.106667pt;}
.ws3e{word-spacing:0.160000pt;}
.wsb6{word-spacing:0.170667pt;}
.wsa1{word-spacing:0.213333pt;}
.wsd9{word-spacing:0.256000pt;}
.ws7{word-spacing:0.266667pt;}
.wse7{word-spacing:0.298667pt;}
.wsac{word-spacing:0.341333pt;}
.wsb7{word-spacing:0.384000pt;}
.ws21{word-spacing:0.426667pt;}
.ws6e{word-spacing:0.469333pt;}
.ws3c{word-spacing:0.480000pt;}
.ws5e{word-spacing:0.512000pt;}
.ws1f{word-spacing:0.640000pt;}
.wsbc{word-spacing:0.682667pt;}
.ws6b{word-spacing:0.693333pt;}
.ws90{word-spacing:0.746667pt;}
.ws9e{word-spacing:0.800000pt;}
.wse8{word-spacing:0.810667pt;}
.wsad{word-spacing:0.896000pt;}
.ws4e{word-spacing:0.960000pt;}
.ws74{word-spacing:1.013333pt;}
.ws50{word-spacing:1.024000pt;}
.wscd{word-spacing:1.109333pt;}
.ws67{word-spacing:1.120000pt;}
.wsb4{word-spacing:1.152000pt;}
.wsbe{word-spacing:1.237333pt;}
.ws44{word-spacing:1.333333pt;}
.ws2b{word-spacing:1.386667pt;}
.wse{word-spacing:1.440000pt;}
.wsb5{word-spacing:1.450667pt;}
.ws88{word-spacing:1.493333pt;}
.ws5b{word-spacing:1.536000pt;}
.ws86{word-spacing:1.546667pt;}
.ws46{word-spacing:1.600000pt;}
.wsb9{word-spacing:1.621333pt;}
.ws7e{word-spacing:1.653333pt;}
.wsa0{word-spacing:1.664000pt;}
.ws39{word-spacing:1.706667pt;}
.ws68{word-spacing:1.760000pt;}
.ws45{word-spacing:1.813333pt;}
.wsf{word-spacing:1.920000pt;}
.wsa3{word-spacing:1.962667pt;}
.ws8d{word-spacing:1.973333pt;}
.ws87{word-spacing:2.026667pt;}
.ws66{word-spacing:2.080000pt;}
.ws4d{word-spacing:2.133333pt;}
.ws89{word-spacing:2.186667pt;}
.ws3a{word-spacing:2.240000pt;}
.wsd5{word-spacing:2.261333pt;}
.ws47{word-spacing:2.346667pt;}
.ws9c{word-spacing:2.400000pt;}
.ws56{word-spacing:2.432000pt;}
.ws1d{word-spacing:2.453333pt;}
.wsd1{word-spacing:2.474667pt;}
.ws6d{word-spacing:2.506667pt;}
.wscf{word-spacing:2.517333pt;}
.ws22{word-spacing:2.613333pt;}
.wsb1{word-spacing:2.645333pt;}
.ws72{word-spacing:2.666667pt;}
.wsab{word-spacing:2.730667pt;}
.ws40{word-spacing:2.826667pt;}
.ws28{word-spacing:2.880000pt;}
.wsea{word-spacing:2.901333pt;}
.wsb0{word-spacing:2.944000pt;}
.ws24{word-spacing:2.986667pt;}
.wsda{word-spacing:3.029333pt;}
.ws3b{word-spacing:3.040000pt;}
.ws26{word-spacing:3.093333pt;}
.ws1e{word-spacing:3.200000pt;}
.ws57{word-spacing:3.285333pt;}
.ws8b{word-spacing:3.360000pt;}
.ws5d{word-spacing:3.413333pt;}
.ws20{word-spacing:3.466667pt;}
.ws5c{word-spacing:3.498667pt;}
.ws2e{word-spacing:3.520000pt;}
.ws55{word-spacing:3.541333pt;}
.ws8a{word-spacing:3.573333pt;}
.ws25{word-spacing:3.626667pt;}
.ws73{word-spacing:3.680000pt;}
.ws3d{word-spacing:3.733333pt;}
.ws32{word-spacing:3.786667pt;}
.wsb{word-spacing:3.946667pt;}
.ws4f{word-spacing:4.000000pt;}
.wsa{word-spacing:4.053333pt;}
.ws5a{word-spacing:4.106667pt;}
.ws31{word-spacing:4.266667pt;}
.ws23{word-spacing:4.320000pt;}
.ws8{word-spacing:4.373333pt;}
.ws9{word-spacing:4.426667pt;}
.ws9f{word-spacing:4.853333pt;}
.ws9d{word-spacing:4.906667pt;}
.ws8e{word-spacing:6.826667pt;}
.ws2a{word-spacing:205.525333pt;}
.ws36{word-spacing:374.186667pt;}
.ws37{word-spacing:376.576000pt;}
._9{margin-left:-2576.085333pt;}
._3f{margin-left:-2554.922667pt;}
._55{margin-left:-13.226667pt;}
._47{margin-left:-10.893333pt;}
._45{margin-left:-9.946667pt;}
._46{margin-left:-8.373333pt;}
._56{margin-left:-6.986667pt;}
._8{margin-left:-5.994667pt;}
._1{margin-left:-4.778667pt;}
._3{margin-left:-3.826667pt;}
._0{margin-left:-2.053333pt;}
._4{margin-left:-0.906667pt;}
._6{width:0.906667pt;}
._2{width:2.069333pt;}
._7{width:3.026667pt;}
._5{width:4.800000pt;}
._b{width:5.693333pt;}
._a{width:6.760000pt;}
._40{width:7.680000pt;}
._44{width:15.360000pt;}
._41{width:16.693333pt;}
._43{width:19.413333pt;}
._42{width:22.240000pt;}
._37{width:214.286400pt;}
._11{width:216.192000pt;}
._49{width:223.872000pt;}
._3c{width:235.696000pt;}
._50{width:264.874667pt;}
._4d{width:269.610667pt;}
._53{width:279.082667pt;}
._51{width:283.818667pt;}
._3e{width:305.066667pt;}
._33{width:315.141333pt;}
._10{width:320.426667pt;}
._39{width:334.378667pt;}
._e{width:341.802667pt;}
._3d{width:342.869333pt;}
._30{width:355.968000pt;}
._2f{width:358.101333pt;}
._2d{width:360.448000pt;}
._29{width:369.920000pt;}
._4f{width:372.864000pt;}
._12{width:377.045333pt;}
._4c{width:380.245333pt;}
._3a{width:384.426667pt;}
._25{width:393.962667pt;}
._14{width:396.032000pt;}
._28{width:399.536000pt;}
._f{width:410.240000pt;}
._17{width:413.578667pt;}
._1f{width:415.274667pt;}
._22{width:422.058667pt;}
._16{width:424.448000pt;}
._18{width:426.837333pt;}
._21{width:432.200000pt;}
._1a{width:433.877333pt;}
._35{width:438.656000pt;}
._34{width:440.752000pt;}
._1b{width:442.496000pt;}
._2a{width:443.392000pt;}
._15{width:444.842667pt;}
._26{width:452.864000pt;}
._13{width:454.400000pt;}
._2c{width:458.538667pt;}
._19{width:460.714667pt;}
._24{width:462.378667pt;}
._36{width:464.725333pt;}
._3b{width:471.850667pt;}
._27{width:475.354667pt;}
._31{width:483.712000pt;}
._38{width:486.058667pt;}
._2b{width:490.837333pt;}
._20{width:502.656000pt;}
._1e{width:507.392000pt;}
._1c{width:509.488000pt;}
._2e{width:520.746667pt;}
._d{width:537.258667pt;}
._c{width:549.973333pt;}
._4e{width:574.722667pt;}
._52{width:607.314667pt;}
._32{width:628.797333pt;}
._1d{width:636.885333pt;}
._4a{width:643.458667pt;}
._23{width:658.176000pt;}
._4b{width:661.072000pt;}
._54{width:662.018667pt;}
._48{width:773.280000pt;}
.fs5{font-size:24.000000pt;}
.fsb{font-size:25.600000pt;}
.fsa{font-size:32.000000pt;}
.fs4{font-size:33.600000pt;}
.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;}
.y2d{bottom:42.468667pt;}
.y31b{bottom:71.345333pt;}
.y137{bottom:73.983867pt;}
.y63{bottom:74.462533pt;}
.yf8{bottom:74.595867pt;}
.y25f{bottom:74.719733pt;}
.y151{bottom:75.401200pt;}
.y120{bottom:75.779067pt;}
.y2d9{bottom:76.552800pt;}
.y1c{bottom:78.246000pt;}
.y200{bottom:80.049733pt;}
.ye9{bottom:80.669467pt;}
.ya0{bottom:82.667867pt;}
.y1db{bottom:82.842400pt;}
.y31a{bottom:84.678667pt;}
.y1a9{bottom:85.056667pt;}
.y28b{bottom:85.255200pt;}
.y179{bottom:86.062533pt;}
.y136{bottom:87.978533pt;}
.y176{bottom:88.047867pt;}
.y150{bottom:89.395867pt;}
.y11f{bottom:89.773733pt;}
.y2d8{bottom:89.886133pt;}
.y2a4{bottom:90.342533pt;}
.y62{bottom:90.462533pt;}
.yf7{bottom:90.595867pt;}
.y25e{bottom:90.719733pt;}
.y1b{bottom:91.576000pt;}
.ye8{bottom:95.112133pt;}
.y1ff{bottom:96.049733pt;}
.y9f{bottom:97.110533pt;}
.y319{bottom:98.012000pt;}
.y1a8{bottom:98.390000pt;}
.y178{bottom:100.062533pt;}
.y22d{bottom:101.056667pt;}
.y28a{bottom:101.255200pt;}
.y2d7{bottom:103.219467pt;}
.y175{bottom:104.047867pt;}
.y2a3{bottom:105.982533pt;}
.y61{bottom:106.462533pt;}
.yf6{bottom:106.595867pt;}
.y25d{bottom:106.719733pt;}
.ye7{bottom:109.554800pt;}
.y318{bottom:111.345333pt;}
.y9e{bottom:111.553200pt;}
.y1a7{bottom:111.723333pt;}
.y1fe{bottom:112.049733pt;}
.y177{bottom:114.057200pt;}
.y22c{bottom:114.390000pt;}
.y1da{bottom:114.482400pt;}
.y2d6{bottom:116.552800pt;}
.y289{bottom:117.255200pt;}
.y174{bottom:120.047867pt;}
.y60{bottom:122.462533pt;}
.yf5{bottom:122.595867pt;}
.ye6{bottom:123.997467pt;}
.y317{bottom:124.678667pt;}
.y1a6{bottom:125.056667pt;}
.y9d{bottom:125.995867pt;}
.y22b{bottom:127.723333pt;}
.y1fd{bottom:128.049733pt;}
.y2d5{bottom:129.886133pt;}
.y288{bottom:133.255200pt;}
.y173{bottom:136.047867pt;}
.y316{bottom:138.012000pt;}
.y2a2{bottom:138.342533pt;}
.y25c{bottom:138.359733pt;}
.y1a5{bottom:138.390000pt;}
.ye5{bottom:138.440133pt;}
.y5f{bottom:138.462533pt;}
.yf4{bottom:138.595867pt;}
.y9c{bottom:140.438533pt;}
.y22a{bottom:141.056667pt;}
.y2d4{bottom:143.219467pt;}
.y1fc{bottom:144.049733pt;}
.y1d9{bottom:146.264000pt;}
.y28{bottom:149.173200pt;}
.y287{bottom:149.255200pt;}
.y315{bottom:151.345333pt;}
.y1a4{bottom:151.723333pt;}
.y172{bottom:152.047867pt;}
.ye4{bottom:152.882800pt;}
.y2a1{bottom:154.342533pt;}
.y5e{bottom:154.462533pt;}
.yf3{bottom:154.595867pt;}
.y9b{bottom:154.881200pt;}
.y2d3{bottom:156.552800pt;}
.y1d8{bottom:159.597333pt;}
.y1fb{bottom:160.049733pt;}
.y314{bottom:164.678667pt;}
.y1a3{bottom:165.056667pt;}
.y27{bottom:165.173200pt;}
.y286{bottom:165.255200pt;}
.y171{bottom:168.047867pt;}
.y9a{bottom:169.419067pt;}
.y2d2{bottom:169.886133pt;}
.y25b{bottom:170.138000pt;}
.y2a0{bottom:170.342533pt;}
.y5d{bottom:170.462533pt;}
.y229{bottom:170.487867pt;}
.yf2{bottom:170.595867pt;}
.y1d7{bottom:172.930667pt;}
.y1fa{bottom:176.049733pt;}
.y313{bottom:178.012000pt;}
.y1a2{bottom:178.390000pt;}
.ye3{bottom:180.893467pt;}
.y26{bottom:181.173200pt;}
.y285{bottom:181.255200pt;}
.y2d1{bottom:183.219467pt;}
.y25a{bottom:183.471333pt;}
.y99{bottom:183.861733pt;}
.y170{bottom:184.047867pt;}
.y1d6{bottom:186.264000pt;}
.y29f{bottom:186.342533pt;}
.y5c{bottom:186.462533pt;}
.yf1{bottom:186.595867pt;}
.y312{bottom:191.345333pt;}
.y1a1{bottom:191.723333pt;}
.y1f9{bottom:192.049733pt;}
.y2d0{bottom:196.552800pt;}
.y259{bottom:196.804667pt;}
.y25{bottom:197.173200pt;}
.y284{bottom:197.255200pt;}
.y98{bottom:198.304400pt;}
.y1d5{bottom:199.597333pt;}
.y16f{bottom:200.047867pt;}
.y29e{bottom:202.342533pt;}
.y5b{bottom:202.462533pt;}
.yf0{bottom:202.595867pt;}
.y228{bottom:202.714533pt;}
.y311{bottom:204.678667pt;}
.y1a0{bottom:205.056667pt;}
.y1f8{bottom:208.049733pt;}
.y2cf{bottom:209.886133pt;}
.y258{bottom:210.138000pt;}
.ye2{bottom:211.911333pt;}
.y97{bottom:212.747067pt;}
.y1d4{bottom:212.930667pt;}
.y24{bottom:213.173200pt;}
.y283{bottom:213.255200pt;}
.y16e{bottom:216.047867pt;}
.y29d{bottom:217.982533pt;}
.y310{bottom:218.012000pt;}
.y19f{bottom:218.390000pt;}
.y5a{bottom:218.462533pt;}
.yef{bottom:218.595867pt;}
.y227{bottom:218.714533pt;}
.y2ce{bottom:223.219467pt;}
.y257{bottom:223.471333pt;}
.y1f7{bottom:224.049733pt;}
.y96{bottom:227.189733pt;}
.y23{bottom:229.173200pt;}
.y282{bottom:229.255200pt;}
.y30f{bottom:231.345333pt;}
.y19e{bottom:231.723333pt;}
.y16d{bottom:232.047867pt;}
.y59{bottom:234.462533pt;}
.yee{bottom:234.595867pt;}
.y226{bottom:234.714533pt;}
.y2cd{bottom:236.552800pt;}
.y256{bottom:236.804667pt;}
.y1f6{bottom:240.049733pt;}
.y95{bottom:241.632400pt;}
.y1d3{bottom:242.361867pt;}
.y30e{bottom:244.678667pt;}
.y19d{bottom:245.056667pt;}
.y22{bottom:245.173200pt;}
.y281{bottom:245.255200pt;}
.y16c{bottom:248.047867pt;}
.y2cc{bottom:249.886133pt;}
.y29c{bottom:250.342533pt;}
.y58{bottom:250.462533pt;}
.yba{bottom:250.588533pt;}
.yed{bottom:250.595867pt;}
.y225{bottom:250.714533pt;}
.y1f5{bottom:256.049733pt;}
.y94{bottom:256.075067pt;}
.y30d{bottom:258.012000pt;}
.y19c{bottom:258.390000pt;}
.y21{bottom:261.173200pt;}
.y280{bottom:261.255200pt;}
.y2cb{bottom:263.219467pt;}
.y16b{bottom:264.047867pt;}
.y255{bottom:266.237867pt;}
.y29b{bottom:266.342533pt;}
.y57{bottom:266.462533pt;}
.yb9{bottom:266.588533pt;}
.yec{bottom:266.595867pt;}
.y224{bottom:266.714533pt;}
.y93{bottom:270.517733pt;}
.y30c{bottom:271.345333pt;}
.y19b{bottom:271.723333pt;}
.y1f4{bottom:272.049733pt;}
.y1d2{bottom:274.588533pt;}
.y2ca{bottom:276.552800pt;}
.y20{bottom:277.173200pt;}
.y27f{bottom:277.255200pt;}
.y16a{bottom:280.047867pt;}
.y29a{bottom:282.342533pt;}
.y56{bottom:282.462533pt;}
.ye1{bottom:282.588533pt;}
.yb8{bottom:282.595867pt;}
.y223{bottom:282.714533pt;}
.y30b{bottom:284.678667pt;}
.y92{bottom:284.960400pt;}
.y1f3{bottom:288.049733pt;}
.y2c9{bottom:289.886133pt;}
.y1d1{bottom:290.588533pt;}
.y1f{bottom:293.173200pt;}
.y27e{bottom:293.255200pt;}
.y169{bottom:296.047867pt;}
.y30a{bottom:298.012000pt;}
.y299{bottom:298.342533pt;}
.y55{bottom:298.462533pt;}
.y254{bottom:298.464533pt;}
.ye0{bottom:298.588533pt;}
.yb7{bottom:298.595867pt;}
.y222{bottom:298.714533pt;}
.y91{bottom:299.403067pt;}
.y19a{bottom:301.156400pt;}
.y2c8{bottom:303.219467pt;}
.y1f2{bottom:304.049733pt;}
.y1d0{bottom:306.588533pt;}
.y1e{bottom:309.173200pt;}
.y27d{bottom:309.255200pt;}
.y309{bottom:311.345333pt;}
.y168{bottom:312.047867pt;}
.y90{bottom:313.845733pt;}
.y298{bottom:314.342533pt;}
.y54{bottom:314.462533pt;}
.y253{bottom:314.464533pt;}
.ydf{bottom:314.588533pt;}
.yb6{bottom:314.595867pt;}
.y221{bottom:314.714533pt;}
.y2c7{bottom:316.552800pt;}
.y1f1{bottom:320.049733pt;}
.y1cf{bottom:322.588533pt;}
.y308{bottom:324.678667pt;}
.y2a{bottom:325.173200pt;}
.y27c{bottom:325.255200pt;}
.y167{bottom:328.047867pt;}
.y8f{bottom:328.288400pt;}
.y2c6{bottom:329.886133pt;}
.y297{bottom:329.982533pt;}
.y53{bottom:330.462533pt;}
.y252{bottom:330.464533pt;}
.yde{bottom:330.588533pt;}
.yb5{bottom:330.595867pt;}
.y220{bottom:330.714533pt;}
.y199{bottom:333.383067pt;}
.y1f0{bottom:336.049733pt;}
.y307{bottom:338.012000pt;}
.y1ce{bottom:338.588533pt;}
.y1d{bottom:340.813200pt;}
.y29{bottom:341.173200pt;}
.y27b{bottom:341.255200pt;}
.y8e{bottom:342.731067pt;}
.y2c5{bottom:343.219467pt;}
.y166{bottom:344.047867pt;}
.y65{bottom:346.102533pt;}
.y52{bottom:346.462533pt;}
.y251{bottom:346.464533pt;}
.ydd{bottom:346.588533pt;}
.yb4{bottom:346.595867pt;}
.y21f{bottom:346.714533pt;}
.y198{bottom:349.383067pt;}
.y306{bottom:351.345333pt;}
.y1ef{bottom:352.049733pt;}
.y1cd{bottom:354.588533pt;}
.y2c4{bottom:356.552800pt;}
.y8d{bottom:357.173733pt;}
.y27a{bottom:357.255200pt;}
.y165{bottom:360.047867pt;}
.y296{bottom:362.342533pt;}
.y51{bottom:362.462533pt;}
.y250{bottom:362.464533pt;}
.ydc{bottom:362.588533pt;}
.yb3{bottom:362.595867pt;}
.y21e{bottom:362.714533pt;}
.y305{bottom:364.678667pt;}
.y197{bottom:365.383067pt;}
.y1ee{bottom:368.049733pt;}
.y2c3{bottom:369.886133pt;}
.y1cc{bottom:370.588533pt;}
.y8c{bottom:371.616400pt;}
.y279{bottom:373.255200pt;}
.y164{bottom:376.049733pt;}
.y64{bottom:377.982533pt;}
.y304{bottom:378.012000pt;}
.y295{bottom:378.342533pt;}
.y50{bottom:378.462533pt;}
.y24f{bottom:378.464533pt;}
.ydb{bottom:378.588533pt;}
.yb2{bottom:378.595867pt;}
.y21d{bottom:378.714533pt;}
.y196{bottom:381.383067pt;}
.y2c2{bottom:383.219467pt;}
.y1ed{bottom:384.049733pt;}
.y8b{bottom:386.059067pt;}
.y1cb{bottom:386.588533pt;}
.y278{bottom:389.251200pt;}
.y303{bottom:391.345333pt;}
.y163{bottom:392.049733pt;}
.y294{bottom:394.342533pt;}
.y4f{bottom:394.462533pt;}
.y24e{bottom:394.464533pt;}
.yda{bottom:394.588533pt;}
.yb1{bottom:394.595867pt;}
.y21c{bottom:394.714533pt;}
.y2c1{bottom:396.552800pt;}
.y195{bottom:397.383067pt;}
.y1ec{bottom:400.049733pt;}
.y8a{bottom:400.501733pt;}
.y1ca{bottom:402.588533pt;}
.y302{bottom:404.678667pt;}
.y277{bottom:405.251200pt;}
.y162{bottom:408.049733pt;}
.y2c0{bottom:409.886133pt;}
.y293{bottom:410.342533pt;}
.y4e{bottom:410.462533pt;}
.y24d{bottom:410.464533pt;}
.yd9{bottom:410.588533pt;}
.yb0{bottom:410.595867pt;}
.y21b{bottom:410.714533pt;}
.y1a{bottom:410.723733pt;}
.y194{bottom:413.383067pt;}
.y89{bottom:414.944400pt;}
.y1eb{bottom:416.049733pt;}
.y301{bottom:418.012000pt;}
.y1c9{bottom:418.590533pt;}
.y276{bottom:421.251200pt;}
.y2bf{bottom:423.219467pt;}
.y161{bottom:424.049733pt;}
.y292{bottom:426.342533pt;}
.y4d{bottom:426.462533pt;}
.y24c{bottom:426.464533pt;}
.yd8{bottom:426.588533pt;}
.yaf{bottom:426.595867pt;}
.y21a{bottom:426.714533pt;}
.y193{bottom:429.383067pt;}
.y88{bottom:429.387067pt;}
.y300{bottom:431.345333pt;}
.y1ea{bottom:432.049733pt;}
.y1c8{bottom:434.590533pt;}
.y19{bottom:435.030400pt;}
.y2be{bottom:436.552800pt;}
.y275{bottom:437.251200pt;}
.y160{bottom:440.049733pt;}
.y291{bottom:442.342533pt;}
.y4c{bottom:442.462533pt;}
.y24b{bottom:442.464533pt;}
.yd7{bottom:442.588533pt;}
.yae{bottom:442.595867pt;}
.y219{bottom:442.714533pt;}
.y87{bottom:443.829733pt;}
.y2ff{bottom:444.678667pt;}
.y192{bottom:445.383067pt;}
.y1e9{bottom:448.049733pt;}
.y2bd{bottom:449.886133pt;}
.y1c7{bottom:450.590533pt;}
.y18{bottom:451.030400pt;}
.y274{bottom:453.251200pt;}
.y15f{bottom:456.049733pt;}
.y2fe{bottom:458.012000pt;}
.y86{bottom:458.272400pt;}
.y290{bottom:458.342533pt;}
.y4b{bottom:458.462533pt;}
.y24a{bottom:458.464533pt;}
.yd6{bottom:458.588533pt;}
.yad{bottom:458.595867pt;}
.y218{bottom:458.714533pt;}
.y191{bottom:461.383067pt;}
.y2bc{bottom:463.219467pt;}
.y1e8{bottom:464.049733pt;}
.y1c6{bottom:466.590533pt;}
.y17{bottom:467.030400pt;}
.y273{bottom:469.251200pt;}
.y2fd{bottom:471.345333pt;}
.y15e{bottom:472.049733pt;}
.y85{bottom:472.715067pt;}
.y28f{bottom:474.342533pt;}
.y4a{bottom:474.462533pt;}
.y249{bottom:474.464533pt;}
.yd5{bottom:474.588533pt;}
.yac{bottom:474.595867pt;}
.y217{bottom:474.714533pt;}
.y2bb{bottom:476.552800pt;}
.y190{bottom:477.383067pt;}
.y1e7{bottom:480.049733pt;}
.y1c5{bottom:482.590533pt;}
.y16{bottom:483.030400pt;}
.y2fc{bottom:484.678667pt;}
.y272{bottom:485.251200pt;}
.y84{bottom:487.157733pt;}
.y15d{bottom:488.049733pt;}
.y2ba{bottom:489.886133pt;}
.y28e{bottom:490.342533pt;}
.y49{bottom:490.462533pt;}
.y248{bottom:490.464533pt;}
.yd4{bottom:490.588533pt;}
.yab{bottom:490.595867pt;}
.y216{bottom:490.714533pt;}
.y18f{bottom:493.383067pt;}
.y1e6{bottom:496.049733pt;}
.y2fb{bottom:498.012000pt;}
.y1c4{bottom:498.590533pt;}
.y15{bottom:499.030400pt;}
.y271{bottom:501.251200pt;}
.y83{bottom:501.600400pt;}
.y2b9{bottom:503.219467pt;}
.y48{bottom:506.462533pt;}
.y247{bottom:506.464533pt;}
.yd3{bottom:506.588533pt;}
.yaa{bottom:506.595867pt;}
.y215{bottom:506.714533pt;}
.y18e{bottom:509.383067pt;}
.y2fa{bottom:511.345333pt;}
.y1e5{bottom:512.049733pt;}
.y1c3{bottom:514.590533pt;}
.y14{bottom:515.030400pt;}
.y82{bottom:516.043067pt;}
.y2b8{bottom:516.552800pt;}
.y270{bottom:517.251200pt;}
.y15c{bottom:519.689733pt;}
.y28d{bottom:521.982533pt;}
.yeb{bottom:522.235867pt;}
.y47{bottom:522.462533pt;}
.y246{bottom:522.464533pt;}
.yd2{bottom:522.588533pt;}
.ya9{bottom:522.595867pt;}
.y214{bottom:522.714533pt;}
.y2f9{bottom:524.678667pt;}
.y18d{bottom:525.383067pt;}
.y1e4{bottom:528.049733pt;}
.y2b7{bottom:529.886133pt;}
.y81{bottom:530.485733pt;}
.y1c2{bottom:530.590533pt;}
.y13{bottom:531.030400pt;}
.y26f{bottom:533.251200pt;}
.y2f8{bottom:538.012000pt;}
.y46{bottom:538.462533pt;}
.y245{bottom:538.464533pt;}
.yd1{bottom:538.588533pt;}
.ya8{bottom:538.595867pt;}
.y213{bottom:538.716400pt;}
.y18c{bottom:541.383067pt;}
.y2b6{bottom:543.219467pt;}
.y80{bottom:544.928400pt;}
.y1c1{bottom:546.590533pt;}
.y12{bottom:547.030400pt;}
.y26e{bottom:549.251200pt;}
.y2f7{bottom:551.345333pt;}
.y15b{bottom:551.471333pt;}
.y45{bottom:554.462533pt;}
.y244{bottom:554.464533pt;}
.yd0{bottom:554.588533pt;}
.ya7{bottom:554.595867pt;}
.y2b5{bottom:556.552800pt;}
.y18b{bottom:557.383067pt;}
.y1e3{bottom:559.689733pt;}
.y1c0{bottom:562.590533pt;}
.y11{bottom:563.030400pt;}
.y2f6{bottom:564.678667pt;}
.y15a{bottom:564.804667pt;}
.y26d{bottom:565.251200pt;}
.y2b4{bottom:569.886133pt;}
.y212{bottom:570.356400pt;}
.y44{bottom:570.462533pt;}
.y243{bottom:570.464533pt;}
.ycf{bottom:570.588533pt;}
.ya6{bottom:570.595867pt;}
.y7f{bottom:570.709733pt;}
.y18a{bottom:573.383067pt;}
.y2f5{bottom:578.012000pt;}
.y159{bottom:578.138000pt;}
.y1bf{bottom:578.590533pt;}
.y10{bottom:579.030400pt;}
.y26c{bottom:581.251200pt;}
.y2b3{bottom:583.219467pt;}
.y43{bottom:586.462533pt;}
.y242{bottom:586.464533pt;}
.yce{bottom:586.588533pt;}
.ya5{bottom:586.595867pt;}
.y189{bottom:589.383067pt;}
.y2f4{bottom:591.345333pt;}
.y158{bottom:591.471333pt;}
.y1be{bottom:594.590533pt;}
.yf{bottom:595.030400pt;}
.y2b2{bottom:596.552800pt;}
.y12d{bottom:597.129200pt;}
.y26b{bottom:597.251200pt;}
.y135{bottom:597.255200pt;}
.y7e{bottom:599.502533pt;}
.y211{bottom:602.138000pt;}
.y153{bottom:602.235867pt;}
.y42{bottom:602.462533pt;}
.y241{bottom:602.464533pt;}
.ycd{bottom:602.588533pt;}
.ya4{bottom:602.595867pt;}
.y2f3{bottom:604.678667pt;}
.y157{bottom:604.804667pt;}
.y188{bottom:605.383067pt;}
.y2b1{bottom:609.886133pt;}
.y1bd{bottom:610.590533pt;}
.ye{bottom:611.030400pt;}
.y12c{bottom:613.129200pt;}
.y26a{bottom:613.251200pt;}
.y134{bottom:613.255200pt;}
.y210{bottom:615.471333pt;}
.y2f2{bottom:618.012000pt;}
.y156{bottom:618.138000pt;}
.y41{bottom:618.462533pt;}
.y240{bottom:618.464533pt;}
.y11e{bottom:618.470533pt;}
.ycc{bottom:618.588533pt;}
.y10a{bottom:618.590533pt;}
.ya3{bottom:618.595867pt;}
.y187{bottom:621.383067pt;}
.y2b0{bottom:623.219467pt;}
.y1bc{bottom:626.590533pt;}
.y13d{bottom:628.804667pt;}
.y12b{bottom:629.129200pt;}
.y269{bottom:629.251200pt;}
.y14f{bottom:629.255200pt;}
.y2f1{bottom:631.345333pt;}
.y155{bottom:631.471333pt;}
.y40{bottom:634.462533pt;}
.y23f{bottom:634.464533pt;}
.y11d{bottom:634.470533pt;}
.ycb{bottom:634.588533pt;}
.y109{bottom:634.590533pt;}
.y2af{bottom:636.552800pt;}
.y186{bottom:637.383067pt;}
.y13c{bottom:642.138000pt;}
.y1bb{bottom:642.590533pt;}
.y2f0{bottom:644.678667pt;}
.y133{bottom:644.804667pt;}
.y12a{bottom:645.129200pt;}
.y268{bottom:645.251200pt;}
.y14e{bottom:645.255200pt;}
.y2ae{bottom:649.886133pt;}
.ya2{bottom:650.235867pt;}
.y3f{bottom:650.462533pt;}
.y23e{bottom:650.464533pt;}
.y11c{bottom:650.470533pt;}
.yca{bottom:650.588533pt;}
.y108{bottom:650.590533pt;}
.y71{bottom:650.595867pt;}
.yd{bottom:651.170933pt;}
.y185{bottom:653.383067pt;}
.y13b{bottom:655.471333pt;}
.y2ef{bottom:658.012000pt;}
.y132{bottom:658.138000pt;}
.y1ba{bottom:658.590533pt;}
.y129{bottom:661.129200pt;}
.y267{bottom:661.251200pt;}
.y14d{bottom:661.255200pt;}
.yc{bottom:662.238267pt;}
.y2ad{bottom:663.219467pt;}
.y3e{bottom:666.462533pt;}
.y23d{bottom:666.464533pt;}
.y11b{bottom:666.470533pt;}
.yc9{bottom:666.588533pt;}
.y107{bottom:666.590533pt;}
.y70{bottom:666.595867pt;}
.y13a{bottom:668.804667pt;}
.y184{bottom:669.383067pt;}
.y2ee{bottom:671.345333pt;}
.y131{bottom:671.471333pt;}
.y1b9{bottom:674.590533pt;}
.y2ac{bottom:676.552800pt;}
.y266{bottom:677.251200pt;}
.y14c{bottom:677.255200pt;}
.y20f{bottom:682.138000pt;}
.y3d{bottom:682.462533pt;}
.y23c{bottom:682.464533pt;}
.y11a{bottom:682.470533pt;}
.yc8{bottom:682.588533pt;}
.y106{bottom:682.590533pt;}
.y6f{bottom:682.595867pt;}
.y2ed{bottom:684.678667pt;}
.y130{bottom:684.804667pt;}
.y183{bottom:685.383067pt;}
.y2ab{bottom:689.886133pt;}
.yb{bottom:690.429867pt;}
.y1b8{bottom:690.590533pt;}
.y128{bottom:692.678667pt;}
.y14b{bottom:693.255200pt;}
.y20e{bottom:695.471333pt;}
.y2ec{bottom:698.012000pt;}
.y1e2{bottom:698.138000pt;}
.y139{bottom:698.235867pt;}
.y3c{bottom:698.462533pt;}
.y23b{bottom:698.464533pt;}
.y119{bottom:698.470533pt;}
.yc7{bottom:698.588533pt;}
.y105{bottom:698.590533pt;}
.y6e{bottom:698.595867pt;}
.y182{bottom:701.383067pt;}
.y2aa{bottom:703.219467pt;}
.ya{bottom:705.861467pt;}
.y127{bottom:706.012000pt;}
.y1b7{bottom:706.590533pt;}
.y20d{bottom:708.804667pt;}
.y265{bottom:708.891200pt;}
.y14a{bottom:709.255200pt;}
.y2eb{bottom:711.345333pt;}
.y1e1{bottom:711.471333pt;}
.y12f{bottom:714.235867pt;}
.y154{bottom:714.249200pt;}
.y9{bottom:714.429867pt;}
.y3b{bottom:714.462533pt;}
.y23a{bottom:714.464533pt;}
.y118{bottom:714.470533pt;}
.yc6{bottom:714.588533pt;}
.y104{bottom:714.590533pt;}
.y6d{bottom:714.595867pt;}
.y2a9{bottom:716.552800pt;}
.y181{bottom:717.383067pt;}
.y126{bottom:719.345333pt;}
.y20c{bottom:722.138000pt;}
.y1b6{bottom:722.590533pt;}
.y2ea{bottom:724.678667pt;}
.y1e0{bottom:724.804667pt;}
.y8{bottom:729.861467pt;}
.y12e{bottom:730.235867pt;}
.y3a{bottom:730.462533pt;}
.y239{bottom:730.464533pt;}
.y117{bottom:730.470533pt;}
.yc5{bottom:730.588533pt;}
.y103{bottom:730.590533pt;}
.y6c{bottom:730.595867pt;}
.y125{bottom:732.678667pt;}
.y180{bottom:733.383067pt;}
.y20b{bottom:735.471333pt;}
.y2e9{bottom:738.012000pt;}
.y1df{bottom:738.138000pt;}
.y1b5{bottom:738.590533pt;}
.y264{bottom:740.771200pt;}
.y149{bottom:740.804667pt;}
.y2a8{bottom:745.995867pt;}
.y39{bottom:746.462533pt;}
.y238{bottom:746.464533pt;}
.y116{bottom:746.470533pt;}
.y7d{bottom:746.475867pt;}
.yc4{bottom:746.588533pt;}
.y102{bottom:746.590533pt;}
.y6b{bottom:746.595867pt;}
.y20a{bottom:748.804667pt;}
.y17f{bottom:749.383067pt;}
.y2e8{bottom:751.345333pt;}
.y1de{bottom:751.471333pt;}
.y148{bottom:754.138000pt;}
.y1b4{bottom:754.590533pt;}
.y7{bottom:756.783067pt;}
.y124{bottom:762.102533pt;}
.y209{bottom:762.138000pt;}
.y38{bottom:762.462533pt;}
.y237{bottom:762.464533pt;}
.y115{bottom:762.470533pt;}
.y7c{bottom:762.475867pt;}
.yc3{bottom:762.588533pt;}
.y101{bottom:762.590533pt;}
.y6a{bottom:762.595867pt;}
.y2e7{bottom:764.678667pt;}
.y1dd{bottom:764.804667pt;}
.y17e{bottom:765.383067pt;}
.y147{bottom:767.471333pt;}
.y208{bottom:775.471333pt;}
.y31f{bottom:775.923867pt;}
.y2e6{bottom:778.012000pt;}
.y123{bottom:778.102533pt;}
.y37{bottom:778.462533pt;}
.y236{bottom:778.464533pt;}
.y114{bottom:778.470533pt;}
.y7b{bottom:778.475867pt;}
.y100{bottom:778.590533pt;}
.y69{bottom:778.595867pt;}
.y146{bottom:780.804667pt;}
.y1b3{bottom:786.230533pt;}
.y207{bottom:788.804667pt;}
.y2e5{bottom:791.345333pt;}
.y145{bottom:794.138000pt;}
.y1dc{bottom:794.235867pt;}
.yc2{bottom:794.241867pt;}
.y36{bottom:794.462533pt;}
.y235{bottom:794.464533pt;}
.y113{bottom:794.470533pt;}
.y7a{bottom:794.475867pt;}
.yff{bottom:794.590533pt;}
.y68{bottom:794.595867pt;}
.y17d{bottom:797.023067pt;}
.y6{bottom:797.816533pt;}
.y206{bottom:802.138000pt;}
.y2e4{bottom:804.678667pt;}
.y144{bottom:807.471333pt;}
.y31e{bottom:807.923867pt;}
.y122{bottom:809.982533pt;}
.y2a7{bottom:810.115867pt;}
.y35{bottom:810.462533pt;}
.y234{bottom:810.464533pt;}
.y112{bottom:810.470533pt;}
.y79{bottom:810.475867pt;}
.yfe{bottom:810.590533pt;}
.y205{bottom:815.471333pt;}
.y2e3{bottom:818.012000pt;}
.y1b2{bottom:818.016667pt;}
.y143{bottom:820.804667pt;}
.y67{bottom:826.235867pt;}
.y34{bottom:826.462533pt;}
.y233{bottom:826.464533pt;}
.yc1{bottom:826.468533pt;}
.y111{bottom:826.470533pt;}
.y78{bottom:826.475867pt;}
.yfd{bottom:826.590533pt;}
.y17c{bottom:828.804667pt;}
.y5{bottom:830.226133pt;}
.y2e2{bottom:831.345333pt;}
.y1b1{bottom:831.350000pt;}
.y142{bottom:834.138000pt;}
.y31d{bottom:839.563867pt;}
.y33{bottom:842.462533pt;}
.y232{bottom:842.464533pt;}
.yc0{bottom:842.468533pt;}
.y110{bottom:842.470533pt;}
.y77{bottom:842.475867pt;}
.yfc{bottom:842.590533pt;}
.y2e1{bottom:844.678667pt;}
.y1b0{bottom:844.683333pt;}
.y2e0{bottom:858.012000pt;}
.y1af{bottom:858.016667pt;}
.y2a6{bottom:858.115867pt;}
.y17b{bottom:858.235867pt;}
.y204{bottom:858.236400pt;}
.y263{bottom:858.239733pt;}
.y32{bottom:858.462533pt;}
.y231{bottom:858.464533pt;}
.ybf{bottom:858.468533pt;}
.y10f{bottom:858.470533pt;}
.y76{bottom:858.475867pt;}
.yfb{bottom:858.590533pt;}
.y4{bottom:862.635733pt;}
.y141{bottom:863.567067pt;}
.y2df{bottom:871.345333pt;}
.y1ae{bottom:871.350000pt;}
.y31{bottom:874.462533pt;}
.y230{bottom:874.464533pt;}
.ybe{bottom:874.468533pt;}
.y10e{bottom:874.470533pt;}
.y75{bottom:874.475867pt;}
.y140{bottom:879.567067pt;}
.y2de{bottom:884.678667pt;}
.y1ad{bottom:884.683333pt;}
.yfa{bottom:890.230533pt;}
.y30{bottom:890.462533pt;}
.y203{bottom:890.463067pt;}
.y22f{bottom:890.464533pt;}
.y262{bottom:890.466400pt;}
.ybd{bottom:890.468533pt;}
.y10d{bottom:890.470533pt;}
.y74{bottom:890.475867pt;}
.y3{bottom:895.045333pt;}
.y2dd{bottom:898.012000pt;}
.y1ac{bottom:898.016667pt;}
.y2f{bottom:906.462533pt;}
.y202{bottom:906.463067pt;}
.y261{bottom:906.466400pt;}
.ybc{bottom:906.468533pt;}
.y10c{bottom:906.470533pt;}
.y73{bottom:906.475867pt;}
.y13f{bottom:911.343333pt;}
.y2dc{bottom:911.345333pt;}
.y1ab{bottom:911.350000pt;}
.y28c{bottom:922.102533pt;}
.yf9{bottom:922.104533pt;}
.y2a5{bottom:922.115867pt;}
.y2e{bottom:922.462533pt;}
.y201{bottom:922.463067pt;}
.y260{bottom:922.466400pt;}
.ybb{bottom:922.468533pt;}
.y10b{bottom:922.470533pt;}
.y72{bottom:922.475867pt;}
.y13e{bottom:924.676667pt;}
.y2db{bottom:924.678667pt;}
.y1aa{bottom:924.683333pt;}
.y2{bottom:950.489200pt;}
.y2da{bottom:1006.590133pt;}
.y22e{bottom:1006.592667pt;}
.y66{bottom:1006.594400pt;}
.y121{bottom:1006.595067pt;}
.y17a{bottom:1006.597067pt;}
.y31c{bottom:1006.598667pt;}
.y152{bottom:1006.601200pt;}
.y138{bottom:1006.602533pt;}
.yea{bottom:1006.610800pt;}
.ya1{bottom:1006.614533pt;}
.y2c{bottom:1009.857333pt;}
.y2b{bottom:1022.660000pt;}
.h6{height:17.496094pt;}
.h8{height:25.255208pt;}
.h2{height:27.197917pt;}
.hc{height:29.140625pt;}
.h7{height:29.160156pt;}
.h12{height:29.645833pt;}
.h10{height:31.083333pt;}
.hf{height:31.104167pt;}
.h11{height:35.583333pt;}
.he{height:37.057292pt;}
.ha{height:38.828125pt;}
.h9{height:38.854167pt;}
.hb{height:38.859942pt;}
.h5{height:43.678785pt;}
.h13{height:44.471700pt;}
.hd{height:44.479167pt;}
.h14{height:44.495167pt;}
.h15{height:45.919167pt;}
.h3{height:50.476562pt;}
.h4{height:81.927344pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:68.031467pt;}
.x15{left:69.921200pt;}
.x8{left:85.417333pt;}
.x1{left:86.929067pt;}
.x13{left:88.818933pt;}
.x1a{left:90.569200pt;}
.x4{left:94.488133pt;}
.xb{left:98.267733pt;}
.x16{left:105.826800pt;}
.x1c{left:109.606533pt;}
.x3{left:111.496000pt;}
.x6{left:117.170133pt;}
.x25{left:135.292400pt;}
.x2c{left:147.138133pt;}
.x29{left:154.183600pt;}
.x23{left:167.142533pt;}
.x2f{left:169.031467pt;}
.x2d{left:173.798267pt;}
.x18{left:187.649200pt;}
.x5{left:189.223467pt;}
.x19{left:190.249200pt;}
.x1b{left:191.582533pt;}
.x9{left:404.481333pt;}
.xc{left:406.307733pt;}
.x21{left:419.819867pt;}
.x11{left:425.195867pt;}
.x7{left:427.090133pt;}
.x20{left:428.980800pt;}
.xd{left:436.547733pt;}
.x1d{left:443.178667pt;}
.x17{left:444.094533pt;}
.x1f{left:447.874133pt;}
.x12{left:455.438533pt;}
.xe{left:466.921067pt;}
.x27{left:474.729467pt;}
.x26{left:478.818000pt;}
.x2a{left:480.589333pt;}
.x24{left:501.787867pt;}
.x22{left:510.966533pt;}
.x2e{left:515.047733pt;}
.x1e{left:535.778667pt;}
.x10{left:589.770933pt;}
.x2{left:616.324800pt;}
.x28{left:641.526800pt;}
.xf{left:647.459200pt;}
.x2b{left:661.218133pt;}
.x14{left:666.401200pt;}
}




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