
    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_38dc7149710688a1762a414c.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_7a07059241cbba48fff08876.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_89f475d78790f2e65ca1bc1e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_ca37ac8279b2facd17505f75.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_0f434e5b9ed8f4e49a633848.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_ac50504410f9fbcd88fd3852.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_434f27892704712f4dbdcd58.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_93ea90a90daf3a2fff99d60b.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_884420b3a757d115c731c896.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_57080dfc1928feca33c9f77b.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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_241a22b0c6b7331c6822c1f4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_3f3b858a1cdc2323bc816755.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_23a513af9492356d8e2e5fac.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_ad6c604bec24c5b4a4ed732d.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_3b298c8dd4997d336c3ca0be.woff2')format("woff");}.fff{font-family:fff;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{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.442800px;}
.v3{vertical-align:-1.086000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.620000px;}
.v4{vertical-align:19.912200px;}
.v1{vertical-align:21.619200px;}
.lsa{letter-spacing:-0.780000px;}
.ls44{letter-spacing:-0.540000px;}
.ls25{letter-spacing:-0.307718px;}
.lsc{letter-spacing:-0.300000px;}
.lsd{letter-spacing:-0.240000px;}
.ls3a{letter-spacing:-0.180000px;}
.ls5b{letter-spacing:-0.144000px;}
.ls39{letter-spacing:-0.120000px;}
.ls7e{letter-spacing:-0.096000px;}
.ls60{letter-spacing:-0.086698px;}
.ls5d{letter-spacing:-0.086056px;}
.ls24{letter-spacing:-0.076930px;}
.ls21{letter-spacing:-0.069290px;}
.lsb{letter-spacing:-0.060000px;}
.ls7d{letter-spacing:-0.048000px;}
.ls22{letter-spacing:-0.046105px;}
.ls23{letter-spacing:-0.038465px;}
.ls9{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.004200px;}
.ls0{letter-spacing:0.005400px;}
.ls1{letter-spacing:0.006000px;}
.ls5e{letter-spacing:0.048000px;}
.ls28{letter-spacing:0.060000px;}
.ls72{letter-spacing:0.096000px;}
.ls2a{letter-spacing:0.120000px;}
.lse{letter-spacing:0.180000px;}
.ls8d{letter-spacing:0.192000px;}
.ls11{letter-spacing:0.240000px;}
.ls85{letter-spacing:0.288000px;}
.ls1f{letter-spacing:0.300000px;}
.ls71{letter-spacing:0.336000px;}
.ls17{letter-spacing:0.360000px;}
.ls74{letter-spacing:0.384000px;}
.ls27{letter-spacing:0.420000px;}
.ls6e{letter-spacing:0.432000px;}
.ls41{letter-spacing:0.444000px;}
.ls18{letter-spacing:0.480000px;}
.ls5c{letter-spacing:0.516337px;}
.ls5f{letter-spacing:0.520186px;}
.ls79{letter-spacing:0.528000px;}
.ls1c{letter-spacing:0.540000px;}
.ls6f{letter-spacing:0.576000px;}
.ls13{letter-spacing:0.600000px;}
.ls7{letter-spacing:0.660000px;}
.ls5{letter-spacing:0.720000px;}
.ls6{letter-spacing:0.780000px;}
.ls7a{letter-spacing:0.816000px;}
.ls4{letter-spacing:0.840000px;}
.ls7f{letter-spacing:0.864000px;}
.ls12{letter-spacing:0.900000px;}
.ls75{letter-spacing:0.912000px;}
.ls14{letter-spacing:0.960000px;}
.ls8b{letter-spacing:1.008000px;}
.ls43{letter-spacing:1.020000px;}
.ls2e{letter-spacing:1.080000px;}
.ls6b{letter-spacing:1.104000px;}
.ls20{letter-spacing:1.140000px;}
.lsf{letter-spacing:1.200000px;}
.ls6d{letter-spacing:1.248000px;}
.ls3b{letter-spacing:1.260000px;}
.ls73{letter-spacing:1.296000px;}
.ls8{letter-spacing:1.320000px;}
.ls87{letter-spacing:1.344000px;}
.ls19{letter-spacing:1.380000px;}
.ls29{letter-spacing:1.440000px;}
.ls78{letter-spacing:1.488000px;}
.ls31{letter-spacing:1.500000px;}
.ls7c{letter-spacing:1.536000px;}
.ls16{letter-spacing:1.560000px;}
.ls2c{letter-spacing:1.620000px;}
.ls7b{letter-spacing:1.632000px;}
.ls3{letter-spacing:1.680000px;}
.ls76{letter-spacing:1.728000px;}
.ls3c{letter-spacing:1.740000px;}
.ls89{letter-spacing:1.776000px;}
.ls3d{letter-spacing:1.800000px;}
.ls70{letter-spacing:1.824000px;}
.ls1a{letter-spacing:1.860000px;}
.ls1d{letter-spacing:1.920000px;}
.ls15{letter-spacing:1.980000px;}
.ls83{letter-spacing:2.016000px;}
.ls35{letter-spacing:2.040000px;}
.ls1b{letter-spacing:2.100000px;}
.ls82{letter-spacing:2.112000px;}
.ls62{letter-spacing:2.142600px;}
.ls37{letter-spacing:2.160000px;}
.ls77{letter-spacing:2.208000px;}
.ls10{letter-spacing:2.220000px;}
.ls4d{letter-spacing:2.280000px;}
.ls86{letter-spacing:2.304000px;}
.ls48{letter-spacing:2.340000px;}
.ls34{letter-spacing:2.400000px;}
.ls8c{letter-spacing:2.448000px;}
.ls4f{letter-spacing:2.460000px;}
.ls6a{letter-spacing:2.496000px;}
.ls57{letter-spacing:2.520000px;}
.ls88{letter-spacing:2.544000px;}
.ls2d{letter-spacing:2.580000px;}
.ls8a{letter-spacing:2.592000px;}
.ls33{letter-spacing:2.640000px;}
.ls42{letter-spacing:2.700000px;}
.ls6c{letter-spacing:2.736000px;}
.ls30{letter-spacing:2.760000px;}
.ls46{letter-spacing:2.820000px;}
.ls81{letter-spacing:2.832000px;}
.ls36{letter-spacing:2.880000px;}
.ls8e{letter-spacing:2.928000px;}
.ls2b{letter-spacing:2.940000px;}
.ls3f{letter-spacing:3.000000px;}
.ls84{letter-spacing:3.024000px;}
.ls1e{letter-spacing:3.060000px;}
.ls67{letter-spacing:3.120000px;}
.ls2f{letter-spacing:3.180000px;}
.ls63{letter-spacing:3.240000px;}
.ls58{letter-spacing:3.300000px;}
.ls52{letter-spacing:3.360000px;}
.ls32{letter-spacing:3.420000px;}
.ls56{letter-spacing:3.480000px;}
.ls45{letter-spacing:3.540000px;}
.ls61{letter-spacing:3.600000px;}
.ls80{letter-spacing:3.648000px;}
.ls38{letter-spacing:3.660000px;}
.ls8f{letter-spacing:3.696000px;}
.ls4e{letter-spacing:3.780000px;}
.ls55{letter-spacing:3.900000px;}
.ls51{letter-spacing:3.960000px;}
.ls53{letter-spacing:4.080000px;}
.ls3e{letter-spacing:4.140000px;}
.ls5a{letter-spacing:4.200000px;}
.ls54{letter-spacing:4.380000px;}
.ls47{letter-spacing:4.440000px;}
.ls50{letter-spacing:4.680000px;}
.ls64{letter-spacing:4.740000px;}
.ls59{letter-spacing:4.860000px;}
.ls40{letter-spacing:5.220000px;}
.ls49{letter-spacing:5.520000px;}
.ls26{letter-spacing:5.880000px;}
.ls69{letter-spacing:5.940000px;}
.ls65{letter-spacing:6.420000px;}
.ls4a{letter-spacing:7.980000px;}
.ls68{letter-spacing:8.100000px;}
.ls66{letter-spacing:11.400000px;}
.ls4b{letter-spacing:166.560000px;}
.ls4c{letter-spacing:634.299600px;}
.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;}
}
.wsa7{word-spacing:-23.100000px;}
.ws7f{word-spacing:-19.380000px;}
.wsf{word-spacing:-19.262564px;}
.ws7e{word-spacing:-19.080000px;}
.ws89{word-spacing:-18.900000px;}
.ws59{word-spacing:-17.820000px;}
.ws9c{word-spacing:-17.760000px;}
.ws8d{word-spacing:-17.580000px;}
.ws8b{word-spacing:-17.400000px;}
.ws7d{word-spacing:-17.340000px;}
.ws7c{word-spacing:-17.220000px;}
.ws8e{word-spacing:-17.100000px;}
.ws8c{word-spacing:-16.980000px;}
.ws9f{word-spacing:-16.800000px;}
.ws48{word-spacing:-16.680000px;}
.ws9d{word-spacing:-16.200000px;}
.ws8a{word-spacing:-16.140000px;}
.ws88{word-spacing:-16.020000px;}
.ws2e{word-spacing:-15.900000px;}
.ws7b{word-spacing:-15.840000px;}
.ws5b{word-spacing:-15.780000px;}
.ws47{word-spacing:-15.660000px;}
.ws9e{word-spacing:-15.540000px;}
.ws5a{word-spacing:-15.480000px;}
.ws49{word-spacing:-15.360000px;}
.ws46{word-spacing:-15.300000px;}
.wsa5{word-spacing:-15.120000px;}
.wsc3{word-spacing:-15.024000px;}
.ws7a{word-spacing:-15.000000px;}
.wsc4{word-spacing:-14.640000px;}
.wsc8{word-spacing:-14.592000px;}
.wsca{word-spacing:-13.824000px;}
.wsc6{word-spacing:-13.680000px;}
.wsa9{word-spacing:-13.488000px;}
.ws2{word-spacing:-13.344000px;}
.wsa8{word-spacing:-13.296000px;}
.ws10{word-spacing:-12.817246px;}
.ws1{word-spacing:-12.510000px;}
.wsc7{word-spacing:-12.288000px;}
.wsc9{word-spacing:-12.192000px;}
.wsc5{word-spacing:-12.096000px;}
.ws98{word-spacing:-12.048000px;}
.ws62{word-spacing:-12.000000px;}
.ws11{word-spacing:-10.693214px;}
.ws0{word-spacing:-10.508400px;}
.ws69{word-spacing:-7.980000px;}
.wsaa{word-spacing:-6.420000px;}
.ws67{word-spacing:-5.520000px;}
.ws52{word-spacing:-5.220000px;}
.ws94{word-spacing:-4.860000px;}
.wsa0{word-spacing:-4.740000px;}
.ws82{word-spacing:-4.680000px;}
.ws65{word-spacing:-4.440000px;}
.ws87{word-spacing:-4.380000px;}
.ws95{word-spacing:-4.260000px;}
.ws50{word-spacing:-4.200000px;}
.ws86{word-spacing:-4.080000px;}
.ws8f{word-spacing:-3.900000px;}
.wsa3{word-spacing:-3.780000px;}
.wsd3{word-spacing:-3.696000px;}
.ws3a{word-spacing:-3.660000px;}
.wscb{word-spacing:-3.648000px;}
.ws85{word-spacing:-3.600000px;}
.ws68{word-spacing:-3.540000px;}
.ws91{word-spacing:-3.480000px;}
.ws3f{word-spacing:-3.420000px;}
.ws84{word-spacing:-3.360000px;}
.ws93{word-spacing:-3.300000px;}
.ws39{word-spacing:-3.240000px;}
.ws3c{word-spacing:-3.180000px;}
.wsac{word-spacing:-3.120000px;}
.ws2a{word-spacing:-3.060000px;}
.wscf{word-spacing:-3.024000px;}
.ws51{word-spacing:-3.000000px;}
.ws34{word-spacing:-2.940000px;}
.wsdb{word-spacing:-2.928000px;}
.ws4{word-spacing:-2.886000px;}
.ws3e{word-spacing:-2.880000px;}
.wscc{word-spacing:-2.832000px;}
.ws64{word-spacing:-2.820000px;}
.ws3b{word-spacing:-2.760000px;}
.wsaf{word-spacing:-2.736000px;}
.ws58{word-spacing:-2.700000px;}
.ws41{word-spacing:-2.640000px;}
.wsd5{word-spacing:-2.592000px;}
.ws36{word-spacing:-2.580000px;}
.ws81{word-spacing:-2.520000px;}
.wsad{word-spacing:-2.496000px;}
.ws83{word-spacing:-2.460000px;}
.wsd8{word-spacing:-2.448000px;}
.ws92{word-spacing:-2.400000px;}
.ws66{word-spacing:-2.340000px;}
.wsd2{word-spacing:-2.304000px;}
.ws80{word-spacing:-2.280000px;}
.ws19{word-spacing:-2.220000px;}
.wsbc{word-spacing:-2.208000px;}
.ws45{word-spacing:-2.160000px;}
.wscd{word-spacing:-2.112000px;}
.ws26{word-spacing:-2.100000px;}
.wsdc{word-spacing:-2.064000px;}
.ws44{word-spacing:-2.040000px;}
.wsce{word-spacing:-2.016000px;}
.ws1f{word-spacing:-1.980000px;}
.ws29{word-spacing:-1.920000px;}
.ws25{word-spacing:-1.860000px;}
.wsb4{word-spacing:-1.824000px;}
.wsa4{word-spacing:-1.800000px;}
.wsd6{word-spacing:-1.776000px;}
.ws4f{word-spacing:-1.740000px;}
.wsbb{word-spacing:-1.728000px;}
.ws32{word-spacing:-1.680000px;}
.wsc0{word-spacing:-1.632000px;}
.ws20{word-spacing:-1.620000px;}
.ws4d{word-spacing:-1.560000px;}
.wsc2{word-spacing:-1.536000px;}
.ws3d{word-spacing:-1.500000px;}
.wsbd{word-spacing:-1.488000px;}
.ws40{word-spacing:-1.440000px;}
.ws24{word-spacing:-1.380000px;}
.wsd4{word-spacing:-1.344000px;}
.ws1e{word-spacing:-1.320000px;}
.wsb7{word-spacing:-1.296000px;}
.ws4b{word-spacing:-1.260000px;}
.wsd1{word-spacing:-1.248000px;}
.ws18{word-spacing:-1.200000px;}
.ws2c{word-spacing:-1.140000px;}
.ws5{word-spacing:-1.134000px;}
.wsae{word-spacing:-1.104000px;}
.ws37{word-spacing:-1.080000px;}
.wsd7{word-spacing:-1.056000px;}
.ws4a{word-spacing:-1.020000px;}
.ws1d{word-spacing:-0.960000px;}
.wsba{word-spacing:-0.912000px;}
.ws1b{word-spacing:-0.900000px;}
.wsc1{word-spacing:-0.864000px;}
.wse{word-spacing:-0.840000px;}
.wsbf{word-spacing:-0.816000px;}
.wsb{word-spacing:-0.780000px;}
.ws9{word-spacing:-0.720000px;}
.wsc{word-spacing:-0.660000px;}
.ws1c{word-spacing:-0.600000px;}
.wsb3{word-spacing:-0.576000px;}
.ws28{word-spacing:-0.540000px;}
.wsbe{word-spacing:-0.528000px;}
.ws23{word-spacing:-0.480000px;}
.wsb2{word-spacing:-0.432000px;}
.ws31{word-spacing:-0.420000px;}
.wsb9{word-spacing:-0.384000px;}
.ws22{word-spacing:-0.360000px;}
.wsb5{word-spacing:-0.336000px;}
.ws21{word-spacing:-0.300000px;}
.wsd0{word-spacing:-0.288000px;}
.ws1a{word-spacing:-0.240000px;}
.wsd9{word-spacing:-0.192000px;}
.ws17{word-spacing:-0.180000px;}
.ws33{word-spacing:-0.120000px;}
.wsb6{word-spacing:-0.096000px;}
.ws30{word-spacing:-0.060000px;}
.ws9a{word-spacing:-0.048000px;}
.ws3{word-spacing:0.000000px;}
.ws14{word-spacing:0.038465px;}
.ws13{word-spacing:0.046105px;}
.wsb0{word-spacing:0.048000px;}
.ws6{word-spacing:0.060000px;}
.ws12{word-spacing:0.069290px;}
.ws15{word-spacing:0.076930px;}
.ws97{word-spacing:0.086056px;}
.ws9b{word-spacing:0.086698px;}
.wsb1{word-spacing:0.096000px;}
.ws42{word-spacing:0.120000px;}
.ws96{word-spacing:0.144000px;}
.ws43{word-spacing:0.180000px;}
.wsd{word-spacing:0.240000px;}
.ws7{word-spacing:0.300000px;}
.ws16{word-spacing:0.307718px;}
.ws56{word-spacing:0.360000px;}
.ws57{word-spacing:0.540000px;}
.wsdd{word-spacing:0.960000px;}
.wsda{word-spacing:1.056000px;}
.ws4c{word-spacing:1.560000px;}
.ws2b{word-spacing:1.740000px;}
.ws54{word-spacing:1.800000px;}
.wsa2{word-spacing:1.980000px;}
.ws38{word-spacing:2.040000px;}
.ws2f{word-spacing:2.400000px;}
.ws27{word-spacing:2.520000px;}
.ws35{word-spacing:2.820000px;}
.ws90{word-spacing:2.940000px;}
.ws55{word-spacing:3.120000px;}
.wsde{word-spacing:3.180000px;}
.ws4e{word-spacing:3.240000px;}
.ws2d{word-spacing:3.744000px;}
.ws99{word-spacing:3.936000px;}
.wsb8{word-spacing:3.984000px;}
.wsa1{word-spacing:4.440000px;}
.wsa6{word-spacing:4.860000px;}
.ws8{word-spacing:4.920000px;}
.wsa{word-spacing:4.980000px;}
.wsab{word-spacing:5.520000px;}
.ws53{word-spacing:6.300000px;}
.ws60{word-spacing:142.560000px;}
.ws5f{word-spacing:154.560000px;}
.ws79{word-spacing:280.416000px;}
.ws75{word-spacing:282.384000px;}
.ws77{word-spacing:309.072000px;}
.ws5e{word-spacing:325.056000px;}
.ws6c{word-spacing:351.648000px;}
.ws71{word-spacing:354.384000px;}
.ws63{word-spacing:370.320000px;}
.ws5d{word-spacing:373.008000px;}
.ws74{word-spacing:381.024000px;}
.ws70{word-spacing:383.664000px;}
.ws78{word-spacing:392.448000px;}
.ws6a{word-spacing:399.696000px;}
.ws61{word-spacing:402.384000px;}
.ws73{word-spacing:404.976000px;}
.ws6d{word-spacing:415.728000px;}
.ws6b{word-spacing:426.336000px;}
.ws72{word-spacing:426.384000px;}
.ws6e{word-spacing:445.104000px;}
.ws6f{word-spacing:458.352000px;}
.ws76{word-spacing:469.008000px;}
.ws5c{word-spacing:522.384000px;}
._b{margin-left:-2898.096000px;}
._d{margin-left:-2874.288000px;}
._11{margin-left:-7.980000px;}
._3{margin-left:-6.963000px;}
._1{margin-left:-5.376000px;}
._2{margin-left:-3.992400px;}
._0{margin-left:-2.310000px;}
._5{margin-left:-1.134000px;}
._4{width:1.504800px;}
._8{width:3.360000px;}
._7{width:4.440000px;}
._6{width:5.700000px;}
._9{width:6.780000px;}
._a{width:7.860000px;}
._c{width:9.120000px;}
._e{width:10.172400px;}
._f{width:11.482800px;}
._10{width:12.960000px;}
._27{width:166.560000px;}
._30{width:226.278000px;}
._2d{width:282.624000px;}
._22{width:291.936000px;}
._16{width:295.920000px;}
._1a{width:306.576000px;}
._3d{width:311.574000px;}
._2b{width:314.262000px;}
._3c{width:342.384000px;}
._23{width:354.528000px;}
._38{width:363.648000px;}
._20{width:373.248000px;}
._3f{width:378.524400px;}
._14{width:381.264000px;}
._1b{width:383.856000px;}
._1c{width:386.496000px;}
._17{width:387.888000px;}
._2c{width:389.280000px;}
._1f{width:397.200000px;}
._26{width:410.544000px;}
._21{width:414.384000px;}
._39{width:418.512000px;}
._31{width:431.526000px;}
._36{width:442.230000px;}
._3e{width:446.806800px;}
._1e{width:448.992000px;}
._15{width:451.680000px;}
._18{width:453.168000px;}
._35{width:463.872000px;}
._2e{width:466.230000px;}
._25{width:473.232000px;}
._33{width:476.886000px;}
._24{width:485.232000px;}
._2a{width:487.542000px;}
._34{width:495.840000px;}
._28{width:501.264000px;}
._32{width:506.592000px;}
._1d{width:509.184000px;}
._12{width:510.288000px;}
._37{width:514.560000px;}
._2f{width:517.248000px;}
._3b{width:527.904000px;}
._3a{width:530.544000px;}
._29{width:535.920000px;}
._19{width:573.120000px;}
._13{width:637.248000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:27.000000px;}
.fs13{font-size:36.000000px;}
.fs4{font-size:37.800000px;}
.fsc{font-size:38.464800px;}
.fs7{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fsb{font-size:46.105200px;}
.fs9{font-size:48.000000px;}
.fs8{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fsa{font-size:69.289800px;}
.fs1{font-size:78.000000px;}
.fsf{font-size:86.056200px;}
.fs11{font-size:86.697600px;}
.fse{font-size:90.899400px;}
.fsd{font-size:91.420800px;}
.fs10{font-size:96.691800px;}
.fs12{font-size:97.413000px;}
.fs2{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y2f{bottom:47.777250px;}
.y27d{bottom:80.263500px;}
.y67{bottom:83.504100px;}
.y19f{bottom:83.559000px;}
.y84{bottom:83.770350px;}
.y206{bottom:83.777100px;}
.y233{bottom:83.785350px;}
.y1d0{bottom:84.062100px;}
.y9b{bottom:84.070350px;}
.y16f{bottom:84.853950px;}
.y24{bottom:88.026750px;}
.y23c{bottom:89.121900px;}
.y11d{bottom:91.153050px;}
.y27c{bottom:95.263500px;}
.y66{bottom:99.248100px;}
.y19e{bottom:99.303000px;}
.yd5{bottom:101.012100px;}
.y83{bottom:101.770350px;}
.y205{bottom:101.777100px;}
.y232{bottom:101.785350px;}
.y1cf{bottom:102.062100px;}
.y9a{bottom:102.070350px;}
.y23{bottom:103.023000px;}
.y23b{bottom:104.121900px;}
.y11c{bottom:107.653050px;}
.y27b{bottom:110.263500px;}
.y154{bottom:110.650200px;}
.yd4{bottom:119.012100px;}
.y82{bottom:119.770350px;}
.y204{bottom:119.777100px;}
.y231{bottom:119.785350px;}
.y18a{bottom:119.814600px;}
.y1ce{bottom:120.062100px;}
.ya6{bottom:120.070350px;}
.y17a{bottom:123.381750px;}
.y187{bottom:123.680550px;}
.y11b{bottom:123.901050px;}
.y174{bottom:124.112250px;}
.y27a{bottom:125.263500px;}
.y47{bottom:126.494455px;}
.y185{bottom:126.794400px;}
.y189{bottom:135.558600px;}
.y1a8{bottom:136.007700px;}
.yd3{bottom:137.012100px;}
.y23a{bottom:137.230350px;}
.y99{bottom:137.665350px;}
.y81{bottom:137.770350px;}
.y203{bottom:137.777100px;}
.y230{bottom:137.785350px;}
.y1cd{bottom:138.062100px;}
.ya5{bottom:138.070350px;}
.y46{bottom:138.081976px;}
.y153{bottom:139.654200px;}
.y279{bottom:140.263500px;}
.y1b0{bottom:140.390250px;}
.y11a{bottom:140.401050px;}
.y45{bottom:149.611800px;}
.yd2{bottom:155.012100px;}
.y278{bottom:155.263500px;}
.y80{bottom:155.770350px;}
.y202{bottom:155.777100px;}
.y22f{bottom:155.785350px;}
.y152{bottom:155.902200px;}
.y1cc{bottom:156.062100px;}
.ya4{bottom:156.070350px;}
.y119{bottom:156.649050px;}
.y3d{bottom:162.654000px;}
.y33{bottom:162.911605px;}
.y2a{bottom:164.205600px;}
.y277{bottom:170.263500px;}
.y192{bottom:171.972000px;}
.y151{bottom:172.402200px;}
.y118{bottom:172.897050px;}
.yd1{bottom:173.012100px;}
.y41{bottom:173.125350px;}
.y7f{bottom:173.770350px;}
.y2be{bottom:173.772600px;}
.y201{bottom:173.777100px;}
.y22e{bottom:173.785350px;}
.y98{bottom:173.920350px;}
.y1cb{bottom:174.062100px;}
.y194{bottom:174.550500px;}
.y43{bottom:179.703884px;}
.y42{bottom:179.713500px;}
.y29{bottom:182.205600px;}
.y40{bottom:183.466650px;}
.y32{bottom:183.663900px;}
.y276{bottom:185.263500px;}
.y175{bottom:185.729869px;}
.y150{bottom:188.650200px;}
.y117{bottom:189.397050px;}
.yd0{bottom:191.012100px;}
.ya3{bottom:191.665350px;}
.y7e{bottom:191.770350px;}
.y2bd{bottom:191.772600px;}
.y200{bottom:191.777100px;}
.y22d{bottom:191.785350px;}
.y97{bottom:191.920350px;}
.y17b{bottom:193.295807px;}
.y3f{bottom:194.927550px;}
.y28{bottom:200.205600px;}
.y275{bottom:200.263500px;}
.y14f{bottom:204.898200px;}
.y116{bottom:205.645050px;}
.y3e{bottom:205.794600px;}
.ycf{bottom:209.012100px;}
.y239{bottom:209.365350px;}
.y1ca{bottom:209.657100px;}
.y7d{bottom:209.770350px;}
.y2bc{bottom:209.772600px;}
.y1ff{bottom:209.777100px;}
.y96{bottom:209.920350px;}
.y188{bottom:211.216672px;}
.y186{bottom:211.217218px;}
.y274{bottom:215.263500px;}
.y27{bottom:218.205600px;}
.y44{bottom:218.243250px;}
.y14e{bottom:221.398200px;}
.y115{bottom:221.893050px;}
.y172{bottom:226.856700px;}
.yce{bottom:227.012100px;}
.y22c{bottom:227.380350px;}
.y7c{bottom:227.770350px;}
.y2bb{bottom:227.772600px;}
.y1fe{bottom:227.777100px;}
.y95{bottom:227.920350px;}
.y273{bottom:230.263500px;}
.y26{bottom:236.205600px;}
.y14d{bottom:237.646200px;}
.y114{bottom:238.141050px;}
.y178{bottom:240.058650px;}
.y1b1{bottom:243.080250px;}
.ycd{bottom:245.012100px;}
.y272{bottom:245.263500px;}
.y238{bottom:245.365350px;}
.y7b{bottom:245.770350px;}
.y2ba{bottom:245.772600px;}
.y1fd{bottom:245.777100px;}
.y1c9{bottom:245.912100px;}
.y94{bottom:245.920350px;}
.y1a9{bottom:249.331200px;}
.y14c{bottom:253.894200px;}
.y2c{bottom:254.205600px;}
.y113{bottom:254.641050px;}
.y181{bottom:258.629700px;}
.y271{bottom:260.263500px;}
.ycc{bottom:263.012100px;}
.y183{bottom:263.557500px;}
.y22b{bottom:263.635350px;}
.y7a{bottom:263.770350px;}
.y2b9{bottom:263.772600px;}
.y1fc{bottom:263.777100px;}
.y1c8{bottom:263.912100px;}
.y93{bottom:263.920350px;}
.y14b{bottom:270.142200px;}
.y112{bottom:270.889050px;}
.y25{bottom:271.800600px;}
.y2b{bottom:272.205600px;}
.y270{bottom:275.263500px;}
.y36{bottom:277.587450px;}
.ycb{bottom:281.012100px;}
.y22a{bottom:281.635350px;}
.y79{bottom:281.770350px;}
.y1fb{bottom:281.777100px;}
.y1c7{bottom:281.912100px;}
.y92{bottom:281.920350px;}
.y14a{bottom:286.390200px;}
.y111{bottom:287.389050px;}
.y2b1{bottom:290.263500px;}
.y26f{bottom:290.265900px;}
.y173{bottom:292.611110px;}
.y1ae{bottom:296.982000px;}
.y1a6{bottom:297.957000px;}
.yca{bottom:299.012100px;}
.y229{bottom:299.635350px;}
.y78{bottom:299.770350px;}
.y2b8{bottom:299.772600px;}
.y1fa{bottom:299.777100px;}
.y1c6{bottom:299.912100px;}
.y91{bottom:299.920350px;}
.y149{bottom:302.638200px;}
.y110{bottom:303.637050px;}
.y3c{bottom:304.654732px;}
.y2b0{bottom:305.263500px;}
.y26e{bottom:305.265900px;}
.y191{bottom:310.322850px;}
.y179{bottom:310.612652px;}
.y195{bottom:311.209500px;}
.yc9{bottom:317.012100px;}
.y228{bottom:317.635350px;}
.y77{bottom:317.770350px;}
.y2b7{bottom:317.772600px;}
.y1f9{bottom:317.777100px;}
.y1c5{bottom:317.912100px;}
.y90{bottom:317.920350px;}
.y3b{bottom:318.555450px;}
.y148{bottom:318.886200px;}
.y10f{bottom:320.137050px;}
.y2af{bottom:320.263500px;}
.y26d{bottom:320.265900px;}
.yc8{bottom:335.012100px;}
.y2ae{bottom:335.263500px;}
.y26c{bottom:335.265900px;}
.y147{bottom:335.386200px;}
.y227{bottom:335.635350px;}
.y76{bottom:335.770350px;}
.y2b6{bottom:335.772600px;}
.y1f8{bottom:335.777100px;}
.y1c4{bottom:335.912100px;}
.y8f{bottom:335.920350px;}
.y10e{bottom:336.385050px;}
.y31{bottom:342.523405px;}
.y4a{bottom:344.041132px;}
.y22{bottom:347.014200px;}
.y2ad{bottom:350.263500px;}
.y26b{bottom:350.265900px;}
.y170{bottom:351.516450px;}
.y146{bottom:351.634200px;}
.yc7{bottom:353.560350px;}
.y226{bottom:353.635350px;}
.y75{bottom:353.770350px;}
.y2b5{bottom:353.772600px;}
.y1f7{bottom:353.777100px;}
.y1c3{bottom:353.912100px;}
.y8e{bottom:353.920350px;}
.y184{bottom:355.593142px;}
.y182{bottom:355.596635px;}
.y49{bottom:357.941850px;}
.y176{bottom:357.986850px;}
.y196{bottom:362.213850px;}
.y30{bottom:363.275700px;}
.y2ac{bottom:365.263500px;}
.y26a{bottom:365.265900px;}
.y145{bottom:368.134200px;}
.y10d{bottom:368.269050px;}
.y225{bottom:371.635350px;}
.y74{bottom:371.770350px;}
.y2b4{bottom:371.772600px;}
.y1f6{bottom:371.777100px;}
.y1c2{bottom:371.912100px;}
.y8d{bottom:371.920350px;}
.yc6{bottom:371.935350px;}
.y21{bottom:374.359200px;}
.y2ab{bottom:380.263500px;}
.y269{bottom:380.265900px;}
.y144{bottom:384.382200px;}
.y224{bottom:389.635350px;}
.y73{bottom:389.770350px;}
.y2b3{bottom:389.772600px;}
.y1f5{bottom:389.777100px;}
.y1c1{bottom:389.912100px;}
.y8c{bottom:389.920350px;}
.yc5{bottom:389.935350px;}
.y38{bottom:391.595182px;}
.y20{bottom:392.359200px;}
.y2aa{bottom:395.263500px;}
.y268{bottom:395.265900px;}
.y1a7{bottom:396.749400px;}
.y143{bottom:400.630200px;}
.y10c{bottom:403.182600px;}
.y37{bottom:405.495900px;}
.y1af{bottom:405.922050px;}
.y48{bottom:407.538600px;}
.y223{bottom:407.635350px;}
.y72{bottom:407.770350px;}
.y2b2{bottom:407.772600px;}
.y1f4{bottom:407.777100px;}
.y1c0{bottom:407.912100px;}
.y8b{bottom:407.920350px;}
.yc4{bottom:407.935350px;}
.y2a9{bottom:410.263500px;}
.y267{bottom:410.265900px;}
.y1f{bottom:410.359200px;}
.y171{bottom:415.076761px;}
.y142{bottom:416.878200px;}
.y177{bottom:423.055604px;}
.y2a8{bottom:425.263500px;}
.y266{bottom:425.265900px;}
.y222{bottom:425.635350px;}
.y71{bottom:425.770350px;}
.y1f3{bottom:425.777100px;}
.y180{bottom:425.785350px;}
.y1bf{bottom:425.912100px;}
.y8a{bottom:425.920350px;}
.yc3{bottom:425.935350px;}
.y1e{bottom:428.359200px;}
.y39{bottom:429.405150px;}
.y190{bottom:432.315750px;}
.y141{bottom:433.126200px;}
.y2a7{bottom:440.263500px;}
.y265{bottom:440.265900px;}
.y237{bottom:443.365350px;}
.y221{bottom:443.635350px;}
.y70{bottom:443.770350px;}
.yf6{bottom:443.772600px;}
.y1f2{bottom:443.777100px;}
.y17f{bottom:443.785350px;}
.y1be{bottom:443.912100px;}
.y89{bottom:443.920350px;}
.yc2{bottom:443.935350px;}
.y10b{bottom:444.072600px;}
.y1d{bottom:446.359200px;}
.y1a4{bottom:448.784100px;}
.y140{bottom:449.374200px;}
.y2a6{bottom:455.263500px;}
.y264{bottom:455.265900px;}
.y35{bottom:456.930955px;}
.y1ac{bottom:457.145550px;}
.y220{bottom:461.635350px;}
.y6f{bottom:461.770350px;}
.yf5{bottom:461.772600px;}
.y1f1{bottom:461.777100px;}
.y17e{bottom:461.785350px;}
.y1bd{bottom:461.912100px;}
.ya2{bottom:461.920350px;}
.y1c{bottom:464.359200px;}
.y13f{bottom:465.874200px;}
.y2a5{bottom:470.263500px;}
.y263{bottom:470.265900px;}
.y34{bottom:477.683250px;}
.y88{bottom:479.515350px;}
.yc1{bottom:479.530350px;}
.y21f{bottom:479.635350px;}
.y10a{bottom:479.667600px;}
.y6e{bottom:479.770350px;}
.yf4{bottom:479.772600px;}
.y1f0{bottom:479.777100px;}
.y1bc{bottom:479.912100px;}
.ya1{bottom:479.920350px;}
.y16e{bottom:479.935350px;}
.y161{bottom:480.070350px;}
.y13e{bottom:482.122200px;}
.y1b{bottom:482.359200px;}
.y2a4{bottom:485.263500px;}
.y262{bottom:485.265900px;}
.y17d{bottom:497.380350px;}
.y87{bottom:497.515350px;}
.y21e{bottom:497.635350px;}
.y6d{bottom:497.770350px;}
.yf3{bottom:497.772600px;}
.y1ef{bottom:497.777100px;}
.y1bb{bottom:497.912100px;}
.ya0{bottom:497.920350px;}
.y16d{bottom:497.935350px;}
.y160{bottom:498.070350px;}
.y13d{bottom:498.622200px;}
.y2a3{bottom:500.263500px;}
.y261{bottom:500.265900px;}
.y1a{bottom:500.359200px;}
.y13c{bottom:514.870200px;}
.y2a2{bottom:515.263500px;}
.y260{bottom:515.265900px;}
.y236{bottom:515.365350px;}
.y21d{bottom:515.635350px;}
.y6c{bottom:515.770350px;}
.yf2{bottom:515.772600px;}
.y1ee{bottom:515.777100px;}
.yc0{bottom:515.785350px;}
.y1ba{bottom:515.912100px;}
.y9f{bottom:515.920350px;}
.y109{bottom:515.922600px;}
.y16c{bottom:515.935350px;}
.y15f{bottom:516.070350px;}
.y3a{bottom:516.346500px;}
.y197{bottom:517.485300px;}
.y19{bottom:518.359200px;}
.y2a1{bottom:530.263500px;}
.y25f{bottom:530.265900px;}
.y13b{bottom:531.370200px;}
.y65{bottom:531.728100px;}
.y17c{bottom:533.245350px;}
.y21c{bottom:533.635350px;}
.y6b{bottom:533.770350px;}
.yf1{bottom:533.772600px;}
.y1ed{bottom:533.777100px;}
.ybf{bottom:533.785350px;}
.y1b9{bottom:533.912100px;}
.y9e{bottom:533.920350px;}
.y108{bottom:533.922600px;}
.y16b{bottom:533.935350px;}
.y15e{bottom:534.070350px;}
.y18e{bottom:535.051050px;}
.y18{bottom:536.359200px;}
.y1ad{bottom:538.566000px;}
.y2a0{bottom:545.263500px;}
.y25e{bottom:545.265900px;}
.y13a{bottom:547.618200px;}
.y21b{bottom:551.635350px;}
.y6a{bottom:551.770350px;}
.yf0{bottom:551.772600px;}
.y1ec{bottom:551.777100px;}
.ybe{bottom:551.785350px;}
.y1b8{bottom:551.912100px;}
.y107{bottom:551.922600px;}
.y16a{bottom:551.935350px;}
.y17{bottom:554.359200px;}
.y29f{bottom:560.263500px;}
.y25d{bottom:560.265900px;}
.y1a5{bottom:563.163150px;}
.y139{bottom:563.866200px;}
.y198{bottom:566.153850px;}
.y9d{bottom:569.515350px;}
.y21a{bottom:569.635350px;}
.y15d{bottom:569.665350px;}
.y69{bottom:569.770350px;}
.yef{bottom:569.772600px;}
.y1eb{bottom:569.777100px;}
.ybd{bottom:569.785350px;}
.y1b7{bottom:569.912100px;}
.y106{bottom:569.922600px;}
.y169{bottom:569.935350px;}
.y16{bottom:572.359200px;}
.y29e{bottom:575.263500px;}
.y25c{bottom:575.265900px;}
.y138{bottom:580.114200px;}
.y219{bottom:587.635350px;}
.y64{bottom:587.770350px;}
.yee{bottom:587.772600px;}
.y1ea{bottom:587.777100px;}
.ybc{bottom:587.785350px;}
.y1b6{bottom:587.912100px;}
.y105{bottom:587.922600px;}
.y29d{bottom:590.263500px;}
.y25b{bottom:590.265900px;}
.y15{bottom:590.359200px;}
.y137{bottom:596.362200px;}
.y1b2{bottom:598.475550px;}
.y29c{bottom:605.263500px;}
.y25a{bottom:605.265900px;}
.y168{bottom:605.530350px;}
.y218{bottom:605.635350px;}
.y63{bottom:605.770350px;}
.yed{bottom:605.772600px;}
.y1e9{bottom:605.777100px;}
.ybb{bottom:605.785350px;}
.y1b5{bottom:605.912100px;}
.y15c{bottom:605.920350px;}
.y104{bottom:605.922600px;}
.y14{bottom:608.359200px;}
.y1a2{bottom:610.489650px;}
.y136{bottom:612.610200px;}
.y29b{bottom:620.263500px;}
.y259{bottom:620.265900px;}
.y217{bottom:623.635350px;}
.y62{bottom:623.770350px;}
.yec{bottom:623.772600px;}
.y1e8{bottom:623.777100px;}
.yba{bottom:623.785350px;}
.y15b{bottom:623.920350px;}
.y103{bottom:623.922600px;}
.y13{bottom:626.359200px;}
.y135{bottom:629.110200px;}
.y18f{bottom:633.998850px;}
.y29a{bottom:635.263500px;}
.y258{bottom:635.265900px;}
.y216{bottom:641.635350px;}
.y61{bottom:641.770350px;}
.yeb{bottom:641.772600px;}
.y1e7{bottom:641.777100px;}
.yb9{bottom:641.785350px;}
.y15a{bottom:641.920350px;}
.y102{bottom:641.922600px;}
.y12{bottom:644.359200px;}
.y134{bottom:645.358200px;}
.y299{bottom:650.263500px;}
.y257{bottom:650.265900px;}
.y215{bottom:659.635350px;}
.y60{bottom:659.770350px;}
.yea{bottom:659.772600px;}
.y1e6{bottom:659.777100px;}
.yb8{bottom:659.785350px;}
.y159{bottom:659.920350px;}
.y101{bottom:659.922600px;}
.y133{bottom:661.606200px;}
.y11{bottom:662.359200px;}
.y199{bottom:663.167850px;}
.y298{bottom:665.263500px;}
.y256{bottom:665.265900px;}
.y214{bottom:677.635350px;}
.y5f{bottom:677.770350px;}
.ye9{bottom:677.772600px;}
.y1e5{bottom:677.777100px;}
.yb7{bottom:677.785350px;}
.y132{bottom:677.854200px;}
.y158{bottom:677.920350px;}
.y100{bottom:677.922600px;}
.y297{bottom:680.263500px;}
.y255{bottom:680.265900px;}
.y131{bottom:694.102200px;}
.y296{bottom:695.263500px;}
.y254{bottom:695.265900px;}
.y1b4{bottom:695.515350px;}
.y213{bottom:695.635350px;}
.y5e{bottom:695.770350px;}
.ye8{bottom:695.772600px;}
.y1e4{bottom:695.777100px;}
.y167{bottom:695.785350px;}
.y157{bottom:695.920350px;}
.yff{bottom:695.922600px;}
.y10{bottom:707.517300px;}
.y1b3{bottom:709.688250px;}
.y295{bottom:710.263500px;}
.y253{bottom:710.265900px;}
.y130{bottom:710.350200px;}
.yb6{bottom:713.380350px;}
.y212{bottom:713.635350px;}
.y5d{bottom:713.770350px;}
.ye7{bottom:713.772600px;}
.y1e3{bottom:713.777100px;}
.y166{bottom:713.785350px;}
.y156{bottom:713.920350px;}
.yfe{bottom:713.922600px;}
.y1a3{bottom:714.153450px;}
.y19a{bottom:714.736800px;}
.yf{bottom:719.968050px;}
.y294{bottom:725.263500px;}
.y252{bottom:725.265900px;}
.y12f{bottom:726.598200px;}
.y235{bottom:731.365350px;}
.y211{bottom:731.635350px;}
.y5c{bottom:731.770350px;}
.ye6{bottom:731.772600px;}
.y1e2{bottom:731.777100px;}
.y165{bottom:731.785350px;}
.yfd{bottom:731.922600px;}
.y293{bottom:740.263500px;}
.y251{bottom:740.265900px;}
.y18d{bottom:741.488250px;}
.y12e{bottom:743.098200px;}
.yb5{bottom:749.245350px;}
.y155{bottom:749.515350px;}
.y210{bottom:749.635350px;}
.y5b{bottom:749.770350px;}
.ye5{bottom:749.772600px;}
.y1e1{bottom:749.777100px;}
.y164{bottom:749.785350px;}
.yfc{bottom:749.922600px;}
.y292{bottom:755.263500px;}
.y250{bottom:755.265900px;}
.ye{bottom:755.544150px;}
.y12d{bottom:759.346200px;}
.y1a0{bottom:763.671750px;}
.y1aa{bottom:764.321250px;}
.y20f{bottom:767.635350px;}
.y5a{bottom:767.770350px;}
.ye4{bottom:767.772600px;}
.y1e0{bottom:767.777100px;}
.y163{bottom:767.785350px;}
.yfb{bottom:767.922600px;}
.yd{bottom:769.044300px;}
.y291{bottom:770.263500px;}
.y24f{bottom:770.265900px;}
.y12c{bottom:775.594200px;}
.yc{bottom:782.544300px;}
.y290{bottom:785.263500px;}
.y24e{bottom:785.265900px;}
.y20e{bottom:785.635350px;}
.y59{bottom:785.770350px;}
.ye3{bottom:785.772600px;}
.y1df{bottom:785.777100px;}
.y162{bottom:785.785350px;}
.yfa{bottom:785.922600px;}
.y12b{bottom:792.094200px;}
.yb{bottom:792.183600px;}
.y28f{bottom:800.263500px;}
.y24d{bottom:800.265900px;}
.y20d{bottom:803.635350px;}
.y58{bottom:803.770350px;}
.ye2{bottom:803.772600px;}
.y1de{bottom:803.777100px;}
.yb4{bottom:803.785350px;}
.y12a{bottom:808.354050px;}
.ya{bottom:809.544300px;}
.y28e{bottom:815.263500px;}
.y24c{bottom:815.265900px;}
.y9{bottom:819.183600px;}
.yf9{bottom:821.517600px;}
.y20c{bottom:821.635350px;}
.y57{bottom:821.770350px;}
.ye1{bottom:821.772600px;}
.y1dd{bottom:821.777100px;}
.yb3{bottom:821.785350px;}
.y129{bottom:824.602050px;}
.y193{bottom:827.866950px;}
.y19b{bottom:828.672000px;}
.y28d{bottom:830.263500px;}
.y24b{bottom:830.265900px;}
.y8{bottom:836.544300px;}
.y20b{bottom:839.635350px;}
.y56{bottom:839.770350px;}
.ye0{bottom:839.772600px;}
.y1dc{bottom:839.777100px;}
.yb2{bottom:839.785350px;}
.y128{bottom:841.102050px;}
.y28c{bottom:845.263500px;}
.y24a{bottom:845.265900px;}
.y127{bottom:857.350050px;}
.y20a{bottom:857.635350px;}
.y55{bottom:857.770350px;}
.ydf{bottom:857.772600px;}
.y1db{bottom:857.777100px;}
.yb1{bottom:857.785350px;}
.y28b{bottom:860.263500px;}
.y249{bottom:860.265900px;}
.y1a1{bottom:861.409200px;}
.y1ab{bottom:862.870350px;}
.y7{bottom:866.836200px;}
.y126{bottom:873.850050px;}
.y28a{bottom:875.263500px;}
.y248{bottom:875.265900px;}
.y86{bottom:875.365350px;}
.y209{bottom:875.635350px;}
.y54{bottom:875.770350px;}
.yde{bottom:875.772600px;}
.y1da{bottom:875.777100px;}
.yb0{bottom:875.785350px;}
.y19c{bottom:876.776850px;}
.y18b{bottom:877.340700px;}
.y6{bottom:887.830950px;}
.y125{bottom:890.109450px;}
.y289{bottom:890.263500px;}
.y247{bottom:890.265900px;}
.y208{bottom:893.635350px;}
.y53{bottom:893.770350px;}
.ydd{bottom:893.772600px;}
.y1d9{bottom:893.777100px;}
.yaf{bottom:893.785350px;}
.y288{bottom:905.263500px;}
.y246{bottom:905.265900px;}
.y124{bottom:906.357450px;}
.y85{bottom:911.230350px;}
.y52{bottom:911.770350px;}
.ydc{bottom:911.772600px;}
.y1d8{bottom:911.777100px;}
.yae{bottom:911.785350px;}
.y287{bottom:920.263500px;}
.y245{bottom:920.265900px;}
.y123{bottom:922.857450px;}
.y207{bottom:929.230350px;}
.y51{bottom:929.770350px;}
.ydb{bottom:929.772600px;}
.y1d7{bottom:929.777100px;}
.yad{bottom:929.785350px;}
.y5{bottom:934.004400px;}
.y286{bottom:935.263500px;}
.y244{bottom:935.265900px;}
.y122{bottom:939.105450px;}
.y50{bottom:947.770350px;}
.yda{bottom:947.772600px;}
.y1d6{bottom:947.777100px;}
.yac{bottom:947.785350px;}
.y285{bottom:950.263500px;}
.y243{bottom:950.265900px;}
.y121{bottom:955.605450px;}
.y284{bottom:965.263500px;}
.y242{bottom:965.265900px;}
.y4f{bottom:965.770350px;}
.yd9{bottom:965.772600px;}
.y1d5{bottom:965.777100px;}
.yab{bottom:965.785350px;}
.y4{bottom:970.465200px;}
.y120{bottom:971.853450px;}
.y283{bottom:980.263500px;}
.y241{bottom:980.265900px;}
.y234{bottom:983.365350px;}
.y4e{bottom:983.770350px;}
.yd8{bottom:983.772600px;}
.y1d4{bottom:983.777100px;}
.yaa{bottom:983.785350px;}
.y18c{bottom:984.104850px;}
.y19d{bottom:986.521950px;}
.y282{bottom:995.263500px;}
.y240{bottom:995.265900px;}
.y4d{bottom:1001.770350px;}
.yd7{bottom:1001.772600px;}
.y1d3{bottom:1001.777100px;}
.ya9{bottom:1001.785350px;}
.y11f{bottom:1002.993450px;}
.y3{bottom:1006.926000px;}
.y281{bottom:1010.263500px;}
.y23f{bottom:1010.265900px;}
.y4c{bottom:1019.770350px;}
.yf8{bottom:1019.772600px;}
.y1d2{bottom:1019.777100px;}
.ya8{bottom:1019.785350px;}
.y280{bottom:1025.263500px;}
.y23e{bottom:1025.265900px;}
.yd6{bottom:1037.367600px;}
.y4b{bottom:1037.770350px;}
.yf7{bottom:1037.772600px;}
.y1d1{bottom:1037.777100px;}
.ya7{bottom:1037.785350px;}
.y27f{bottom:1040.263500px;}
.y23d{bottom:1040.265900px;}
.y2{bottom:1069.300350px;}
.y9c{bottom:1132.418700px;}
.y27e{bottom:1132.423500px;}
.y68{bottom:1132.424100px;}
.y11e{bottom:1132.453050px;}
.y2e{bottom:1136.089500px;}
.y2d{bottom:1150.492500px;}
.h7{height:19.683105px;}
.h14{height:28.003426px;}
.h13{height:28.022208px;}
.h9{height:28.412109px;}
.h2{height:30.597656px;}
.hd{height:32.783203px;}
.h8{height:32.805176px;}
.h15{height:33.351562px;}
.h12{height:33.565846px;}
.h10{height:34.968750px;}
.hf{height:34.992188px;}
.he{height:41.689453px;}
.h16{height:42.687926px;}
.hc{height:43.681641px;}
.ha{height:43.710938px;}
.hb{height:43.740234px;}
.h1d{height:44.925872px;}
.h6{height:49.117634px;}
.h5{height:49.138634px;}
.h11{height:50.478702px;}
.h3{height:56.786133px;}
.h19{height:62.693286px;}
.h1b{height:63.160556px;}
.h18{height:66.221633px;}
.h17{height:66.601481px;}
.h1a{height:70.441487px;}
.h1c{height:70.966893px;}
.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;}
.x2b{left:78.661350px;}
.x47{left:85.302600px;}
.x43{left:87.413100px;}
.x37{left:89.866183px;}
.x8{left:96.094500px;}
.x1{left:97.795200px;}
.xe{left:100.103325px;}
.x52{left:102.047400px;}
.xd{left:103.671750px;}
.x3b{left:105.046950px;}
.x4{left:106.299150px;}
.x30{left:109.528927px;}
.x27{left:110.555400px;}
.x50{left:123.307200px;}
.x3{left:125.433000px;}
.x6{left:131.816400px;}
.x12{left:169.930800px;}
.xb{left:179.875950px;}
.xc{left:192.590628px;}
.x13{left:203.322491px;}
.x5{left:212.876400px;}
.x4f{left:215.560350px;}
.x11{left:236.520150px;}
.x2e{left:240.253350px;}
.x2a{left:261.525300px;}
.x42{left:274.040250px;}
.xf{left:278.278800px;}
.x36{left:291.799200px;}
.x44{left:302.208450px;}
.x46{left:305.374050px;}
.x45{left:310.731900px;}
.x48{left:312.599550px;}
.x3a{left:314.063100px;}
.x10{left:320.164484px;}
.x2f{left:326.973300px;}
.x3c{left:332.676150px;}
.x20{left:400.332750px;}
.x2c{left:401.821350px;}
.x29{left:423.105300px;}
.x39{left:446.152602px;}
.x49{left:452.224350px;}
.x9{left:455.041500px;}
.x1e{left:457.085400px;}
.x32{left:467.694508px;}
.x3d{left:471.187650px;}
.x3e{left:472.556850px;}
.x41{left:474.973950px;}
.x23{left:478.360350px;}
.x7{left:480.476400px;}
.x53{left:482.615400px;}
.x1f{left:491.105400px;}
.x51{left:503.863200px;}
.x25{left:512.380350px;}
.x1c{left:518.024700px;}
.x19{left:535.412850px;}
.x18{left:538.246200px;}
.x24{left:546.550350px;}
.x1a{left:563.275050px;}
.x4e{left:570.676200px;}
.x1b{left:574.804874px;}
.x35{left:579.470400px;}
.x28{left:591.650400px;}
.x4b{left:592.661100px;}
.x4a{left:633.249750px;}
.x40{left:634.355400px;}
.x33{left:638.857350px;}
.x2d{left:648.445350px;}
.x22{left:663.492300px;}
.x38{left:666.083700px;}
.x15{left:669.909000px;}
.x34{left:682.324350px;}
.x31{left:685.664550px;}
.x3f{left:690.677850px;}
.x2{left:693.365400px;}
.x14{left:711.403350px;}
.x1d{left:715.621850px;}
.x4c{left:721.717650px;}
.x16{left:723.325200px;}
.x21{left:728.388750px;}
.x17{left:732.938134px;}
.x4d{left:743.868150px;}
.x26{left:749.651400px;}
@media print{
.v2{vertical-align:-13.726933pt;}
.v3{vertical-align:-0.965333pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.440000pt;}
.v4{vertical-align:17.699733pt;}
.v1{vertical-align:19.217067pt;}
.lsa{letter-spacing:-0.693333pt;}
.ls44{letter-spacing:-0.480000pt;}
.ls25{letter-spacing:-0.273527pt;}
.lsc{letter-spacing:-0.266667pt;}
.lsd{letter-spacing:-0.213333pt;}
.ls3a{letter-spacing:-0.160000pt;}
.ls5b{letter-spacing:-0.128000pt;}
.ls39{letter-spacing:-0.106667pt;}
.ls7e{letter-spacing:-0.085333pt;}
.ls60{letter-spacing:-0.077065pt;}
.ls5d{letter-spacing:-0.076494pt;}
.ls24{letter-spacing:-0.068382pt;}
.ls21{letter-spacing:-0.061591pt;}
.lsb{letter-spacing:-0.053333pt;}
.ls7d{letter-spacing:-0.042667pt;}
.ls22{letter-spacing:-0.040982pt;}
.ls23{letter-spacing:-0.034191pt;}
.ls9{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.003733pt;}
.ls0{letter-spacing:0.004800pt;}
.ls1{letter-spacing:0.005333pt;}
.ls5e{letter-spacing:0.042667pt;}
.ls28{letter-spacing:0.053333pt;}
.ls72{letter-spacing:0.085333pt;}
.ls2a{letter-spacing:0.106667pt;}
.lse{letter-spacing:0.160000pt;}
.ls8d{letter-spacing:0.170667pt;}
.ls11{letter-spacing:0.213333pt;}
.ls85{letter-spacing:0.256000pt;}
.ls1f{letter-spacing:0.266667pt;}
.ls71{letter-spacing:0.298667pt;}
.ls17{letter-spacing:0.320000pt;}
.ls74{letter-spacing:0.341333pt;}
.ls27{letter-spacing:0.373333pt;}
.ls6e{letter-spacing:0.384000pt;}
.ls41{letter-spacing:0.394667pt;}
.ls18{letter-spacing:0.426667pt;}
.ls5c{letter-spacing:0.458966pt;}
.ls5f{letter-spacing:0.462387pt;}
.ls79{letter-spacing:0.469333pt;}
.ls1c{letter-spacing:0.480000pt;}
.ls6f{letter-spacing:0.512000pt;}
.ls13{letter-spacing:0.533333pt;}
.ls7{letter-spacing:0.586667pt;}
.ls5{letter-spacing:0.640000pt;}
.ls6{letter-spacing:0.693333pt;}
.ls7a{letter-spacing:0.725333pt;}
.ls4{letter-spacing:0.746667pt;}
.ls7f{letter-spacing:0.768000pt;}
.ls12{letter-spacing:0.800000pt;}
.ls75{letter-spacing:0.810667pt;}
.ls14{letter-spacing:0.853333pt;}
.ls8b{letter-spacing:0.896000pt;}
.ls43{letter-spacing:0.906667pt;}
.ls2e{letter-spacing:0.960000pt;}
.ls6b{letter-spacing:0.981333pt;}
.ls20{letter-spacing:1.013333pt;}
.lsf{letter-spacing:1.066667pt;}
.ls6d{letter-spacing:1.109333pt;}
.ls3b{letter-spacing:1.120000pt;}
.ls73{letter-spacing:1.152000pt;}
.ls8{letter-spacing:1.173333pt;}
.ls87{letter-spacing:1.194667pt;}
.ls19{letter-spacing:1.226667pt;}
.ls29{letter-spacing:1.280000pt;}
.ls78{letter-spacing:1.322667pt;}
.ls31{letter-spacing:1.333333pt;}
.ls7c{letter-spacing:1.365333pt;}
.ls16{letter-spacing:1.386667pt;}
.ls2c{letter-spacing:1.440000pt;}
.ls7b{letter-spacing:1.450667pt;}
.ls3{letter-spacing:1.493333pt;}
.ls76{letter-spacing:1.536000pt;}
.ls3c{letter-spacing:1.546667pt;}
.ls89{letter-spacing:1.578667pt;}
.ls3d{letter-spacing:1.600000pt;}
.ls70{letter-spacing:1.621333pt;}
.ls1a{letter-spacing:1.653333pt;}
.ls1d{letter-spacing:1.706667pt;}
.ls15{letter-spacing:1.760000pt;}
.ls83{letter-spacing:1.792000pt;}
.ls35{letter-spacing:1.813333pt;}
.ls1b{letter-spacing:1.866667pt;}
.ls82{letter-spacing:1.877333pt;}
.ls62{letter-spacing:1.904533pt;}
.ls37{letter-spacing:1.920000pt;}
.ls77{letter-spacing:1.962667pt;}
.ls10{letter-spacing:1.973333pt;}
.ls4d{letter-spacing:2.026667pt;}
.ls86{letter-spacing:2.048000pt;}
.ls48{letter-spacing:2.080000pt;}
.ls34{letter-spacing:2.133333pt;}
.ls8c{letter-spacing:2.176000pt;}
.ls4f{letter-spacing:2.186667pt;}
.ls6a{letter-spacing:2.218667pt;}
.ls57{letter-spacing:2.240000pt;}
.ls88{letter-spacing:2.261333pt;}
.ls2d{letter-spacing:2.293333pt;}
.ls8a{letter-spacing:2.304000pt;}
.ls33{letter-spacing:2.346667pt;}
.ls42{letter-spacing:2.400000pt;}
.ls6c{letter-spacing:2.432000pt;}
.ls30{letter-spacing:2.453333pt;}
.ls46{letter-spacing:2.506667pt;}
.ls81{letter-spacing:2.517333pt;}
.ls36{letter-spacing:2.560000pt;}
.ls8e{letter-spacing:2.602667pt;}
.ls2b{letter-spacing:2.613333pt;}
.ls3f{letter-spacing:2.666667pt;}
.ls84{letter-spacing:2.688000pt;}
.ls1e{letter-spacing:2.720000pt;}
.ls67{letter-spacing:2.773333pt;}
.ls2f{letter-spacing:2.826667pt;}
.ls63{letter-spacing:2.880000pt;}
.ls58{letter-spacing:2.933333pt;}
.ls52{letter-spacing:2.986667pt;}
.ls32{letter-spacing:3.040000pt;}
.ls56{letter-spacing:3.093333pt;}
.ls45{letter-spacing:3.146667pt;}
.ls61{letter-spacing:3.200000pt;}
.ls80{letter-spacing:3.242667pt;}
.ls38{letter-spacing:3.253333pt;}
.ls8f{letter-spacing:3.285333pt;}
.ls4e{letter-spacing:3.360000pt;}
.ls55{letter-spacing:3.466667pt;}
.ls51{letter-spacing:3.520000pt;}
.ls53{letter-spacing:3.626667pt;}
.ls3e{letter-spacing:3.680000pt;}
.ls5a{letter-spacing:3.733333pt;}
.ls54{letter-spacing:3.893333pt;}
.ls47{letter-spacing:3.946667pt;}
.ls50{letter-spacing:4.160000pt;}
.ls64{letter-spacing:4.213333pt;}
.ls59{letter-spacing:4.320000pt;}
.ls40{letter-spacing:4.640000pt;}
.ls49{letter-spacing:4.906667pt;}
.ls26{letter-spacing:5.226667pt;}
.ls69{letter-spacing:5.280000pt;}
.ls65{letter-spacing:5.706667pt;}
.ls4a{letter-spacing:7.093333pt;}
.ls68{letter-spacing:7.200000pt;}
.ls66{letter-spacing:10.133333pt;}
.ls4b{letter-spacing:148.053333pt;}
.ls4c{letter-spacing:563.821867pt;}
.wsa7{word-spacing:-20.533333pt;}
.ws7f{word-spacing:-17.226667pt;}
.wsf{word-spacing:-17.122279pt;}
.ws7e{word-spacing:-16.960000pt;}
.ws89{word-spacing:-16.800000pt;}
.ws59{word-spacing:-15.840000pt;}
.ws9c{word-spacing:-15.786667pt;}
.ws8d{word-spacing:-15.626667pt;}
.ws8b{word-spacing:-15.466667pt;}
.ws7d{word-spacing:-15.413333pt;}
.ws7c{word-spacing:-15.306667pt;}
.ws8e{word-spacing:-15.200000pt;}
.ws8c{word-spacing:-15.093333pt;}
.ws9f{word-spacing:-14.933333pt;}
.ws48{word-spacing:-14.826667pt;}
.ws9d{word-spacing:-14.400000pt;}
.ws8a{word-spacing:-14.346667pt;}
.ws88{word-spacing:-14.240000pt;}
.ws2e{word-spacing:-14.133333pt;}
.ws7b{word-spacing:-14.080000pt;}
.ws5b{word-spacing:-14.026667pt;}
.ws47{word-spacing:-13.920000pt;}
.ws9e{word-spacing:-13.813333pt;}
.ws5a{word-spacing:-13.760000pt;}
.ws49{word-spacing:-13.653333pt;}
.ws46{word-spacing:-13.600000pt;}
.wsa5{word-spacing:-13.440000pt;}
.wsc3{word-spacing:-13.354667pt;}
.ws7a{word-spacing:-13.333333pt;}
.wsc4{word-spacing:-13.013333pt;}
.wsc8{word-spacing:-12.970667pt;}
.wsca{word-spacing:-12.288000pt;}
.wsc6{word-spacing:-12.160000pt;}
.wsa9{word-spacing:-11.989333pt;}
.ws2{word-spacing:-11.861333pt;}
.wsa8{word-spacing:-11.818667pt;}
.ws10{word-spacing:-11.393107pt;}
.ws1{word-spacing:-11.120000pt;}
.wsc7{word-spacing:-10.922667pt;}
.wsc9{word-spacing:-10.837333pt;}
.wsc5{word-spacing:-10.752000pt;}
.ws98{word-spacing:-10.709333pt;}
.ws62{word-spacing:-10.666667pt;}
.ws11{word-spacing:-9.505079pt;}
.ws0{word-spacing:-9.340800pt;}
.ws69{word-spacing:-7.093333pt;}
.wsaa{word-spacing:-5.706667pt;}
.ws67{word-spacing:-4.906667pt;}
.ws52{word-spacing:-4.640000pt;}
.ws94{word-spacing:-4.320000pt;}
.wsa0{word-spacing:-4.213333pt;}
.ws82{word-spacing:-4.160000pt;}
.ws65{word-spacing:-3.946667pt;}
.ws87{word-spacing:-3.893333pt;}
.ws95{word-spacing:-3.786667pt;}
.ws50{word-spacing:-3.733333pt;}
.ws86{word-spacing:-3.626667pt;}
.ws8f{word-spacing:-3.466667pt;}
.wsa3{word-spacing:-3.360000pt;}
.wsd3{word-spacing:-3.285333pt;}
.ws3a{word-spacing:-3.253333pt;}
.wscb{word-spacing:-3.242667pt;}
.ws85{word-spacing:-3.200000pt;}
.ws68{word-spacing:-3.146667pt;}
.ws91{word-spacing:-3.093333pt;}
.ws3f{word-spacing:-3.040000pt;}
.ws84{word-spacing:-2.986667pt;}
.ws93{word-spacing:-2.933333pt;}
.ws39{word-spacing:-2.880000pt;}
.ws3c{word-spacing:-2.826667pt;}
.wsac{word-spacing:-2.773333pt;}
.ws2a{word-spacing:-2.720000pt;}
.wscf{word-spacing:-2.688000pt;}
.ws51{word-spacing:-2.666667pt;}
.ws34{word-spacing:-2.613333pt;}
.wsdb{word-spacing:-2.602667pt;}
.ws4{word-spacing:-2.565333pt;}
.ws3e{word-spacing:-2.560000pt;}
.wscc{word-spacing:-2.517333pt;}
.ws64{word-spacing:-2.506667pt;}
.ws3b{word-spacing:-2.453333pt;}
.wsaf{word-spacing:-2.432000pt;}
.ws58{word-spacing:-2.400000pt;}
.ws41{word-spacing:-2.346667pt;}
.wsd5{word-spacing:-2.304000pt;}
.ws36{word-spacing:-2.293333pt;}
.ws81{word-spacing:-2.240000pt;}
.wsad{word-spacing:-2.218667pt;}
.ws83{word-spacing:-2.186667pt;}
.wsd8{word-spacing:-2.176000pt;}
.ws92{word-spacing:-2.133333pt;}
.ws66{word-spacing:-2.080000pt;}
.wsd2{word-spacing:-2.048000pt;}
.ws80{word-spacing:-2.026667pt;}
.ws19{word-spacing:-1.973333pt;}
.wsbc{word-spacing:-1.962667pt;}
.ws45{word-spacing:-1.920000pt;}
.wscd{word-spacing:-1.877333pt;}
.ws26{word-spacing:-1.866667pt;}
.wsdc{word-spacing:-1.834667pt;}
.ws44{word-spacing:-1.813333pt;}
.wsce{word-spacing:-1.792000pt;}
.ws1f{word-spacing:-1.760000pt;}
.ws29{word-spacing:-1.706667pt;}
.ws25{word-spacing:-1.653333pt;}
.wsb4{word-spacing:-1.621333pt;}
.wsa4{word-spacing:-1.600000pt;}
.wsd6{word-spacing:-1.578667pt;}
.ws4f{word-spacing:-1.546667pt;}
.wsbb{word-spacing:-1.536000pt;}
.ws32{word-spacing:-1.493333pt;}
.wsc0{word-spacing:-1.450667pt;}
.ws20{word-spacing:-1.440000pt;}
.ws4d{word-spacing:-1.386667pt;}
.wsc2{word-spacing:-1.365333pt;}
.ws3d{word-spacing:-1.333333pt;}
.wsbd{word-spacing:-1.322667pt;}
.ws40{word-spacing:-1.280000pt;}
.ws24{word-spacing:-1.226667pt;}
.wsd4{word-spacing:-1.194667pt;}
.ws1e{word-spacing:-1.173333pt;}
.wsb7{word-spacing:-1.152000pt;}
.ws4b{word-spacing:-1.120000pt;}
.wsd1{word-spacing:-1.109333pt;}
.ws18{word-spacing:-1.066667pt;}
.ws2c{word-spacing:-1.013333pt;}
.ws5{word-spacing:-1.008000pt;}
.wsae{word-spacing:-0.981333pt;}
.ws37{word-spacing:-0.960000pt;}
.wsd7{word-spacing:-0.938667pt;}
.ws4a{word-spacing:-0.906667pt;}
.ws1d{word-spacing:-0.853333pt;}
.wsba{word-spacing:-0.810667pt;}
.ws1b{word-spacing:-0.800000pt;}
.wsc1{word-spacing:-0.768000pt;}
.wse{word-spacing:-0.746667pt;}
.wsbf{word-spacing:-0.725333pt;}
.wsb{word-spacing:-0.693333pt;}
.ws9{word-spacing:-0.640000pt;}
.wsc{word-spacing:-0.586667pt;}
.ws1c{word-spacing:-0.533333pt;}
.wsb3{word-spacing:-0.512000pt;}
.ws28{word-spacing:-0.480000pt;}
.wsbe{word-spacing:-0.469333pt;}
.ws23{word-spacing:-0.426667pt;}
.wsb2{word-spacing:-0.384000pt;}
.ws31{word-spacing:-0.373333pt;}
.wsb9{word-spacing:-0.341333pt;}
.ws22{word-spacing:-0.320000pt;}
.wsb5{word-spacing:-0.298667pt;}
.ws21{word-spacing:-0.266667pt;}
.wsd0{word-spacing:-0.256000pt;}
.ws1a{word-spacing:-0.213333pt;}
.wsd9{word-spacing:-0.170667pt;}
.ws17{word-spacing:-0.160000pt;}
.ws33{word-spacing:-0.106667pt;}
.wsb6{word-spacing:-0.085333pt;}
.ws30{word-spacing:-0.053333pt;}
.ws9a{word-spacing:-0.042667pt;}
.ws3{word-spacing:0.000000pt;}
.ws14{word-spacing:0.034191pt;}
.ws13{word-spacing:0.040982pt;}
.wsb0{word-spacing:0.042667pt;}
.ws6{word-spacing:0.053333pt;}
.ws12{word-spacing:0.061591pt;}
.ws15{word-spacing:0.068382pt;}
.ws97{word-spacing:0.076494pt;}
.ws9b{word-spacing:0.077065pt;}
.wsb1{word-spacing:0.085333pt;}
.ws42{word-spacing:0.106667pt;}
.ws96{word-spacing:0.128000pt;}
.ws43{word-spacing:0.160000pt;}
.wsd{word-spacing:0.213333pt;}
.ws7{word-spacing:0.266667pt;}
.ws16{word-spacing:0.273527pt;}
.ws56{word-spacing:0.320000pt;}
.ws57{word-spacing:0.480000pt;}
.wsdd{word-spacing:0.853333pt;}
.wsda{word-spacing:0.938667pt;}
.ws4c{word-spacing:1.386667pt;}
.ws2b{word-spacing:1.546667pt;}
.ws54{word-spacing:1.600000pt;}
.wsa2{word-spacing:1.760000pt;}
.ws38{word-spacing:1.813333pt;}
.ws2f{word-spacing:2.133333pt;}
.ws27{word-spacing:2.240000pt;}
.ws35{word-spacing:2.506667pt;}
.ws90{word-spacing:2.613333pt;}
.ws55{word-spacing:2.773333pt;}
.wsde{word-spacing:2.826667pt;}
.ws4e{word-spacing:2.880000pt;}
.ws2d{word-spacing:3.328000pt;}
.ws99{word-spacing:3.498667pt;}
.wsb8{word-spacing:3.541333pt;}
.wsa1{word-spacing:3.946667pt;}
.wsa6{word-spacing:4.320000pt;}
.ws8{word-spacing:4.373333pt;}
.wsa{word-spacing:4.426667pt;}
.wsab{word-spacing:4.906667pt;}
.ws53{word-spacing:5.600000pt;}
.ws60{word-spacing:126.720000pt;}
.ws5f{word-spacing:137.386667pt;}
.ws79{word-spacing:249.258667pt;}
.ws75{word-spacing:251.008000pt;}
.ws77{word-spacing:274.730667pt;}
.ws5e{word-spacing:288.938667pt;}
.ws6c{word-spacing:312.576000pt;}
.ws71{word-spacing:315.008000pt;}
.ws63{word-spacing:329.173333pt;}
.ws5d{word-spacing:331.562667pt;}
.ws74{word-spacing:338.688000pt;}
.ws70{word-spacing:341.034667pt;}
.ws78{word-spacing:348.842667pt;}
.ws6a{word-spacing:355.285333pt;}
.ws61{word-spacing:357.674667pt;}
.ws73{word-spacing:359.978667pt;}
.ws6d{word-spacing:369.536000pt;}
.ws6b{word-spacing:378.965333pt;}
.ws72{word-spacing:379.008000pt;}
.ws6e{word-spacing:395.648000pt;}
.ws6f{word-spacing:407.424000pt;}
.ws76{word-spacing:416.896000pt;}
.ws5c{word-spacing:464.341333pt;}
._b{margin-left:-2576.085333pt;}
._d{margin-left:-2554.922667pt;}
._11{margin-left:-7.093333pt;}
._3{margin-left:-6.189333pt;}
._1{margin-left:-4.778667pt;}
._2{margin-left:-3.548800pt;}
._0{margin-left:-2.053333pt;}
._5{margin-left:-1.008000pt;}
._4{width:1.337600pt;}
._8{width:2.986667pt;}
._7{width:3.946667pt;}
._6{width:5.066667pt;}
._9{width:6.026667pt;}
._a{width:6.986667pt;}
._c{width:8.106667pt;}
._e{width:9.042133pt;}
._f{width:10.206933pt;}
._10{width:11.520000pt;}
._27{width:148.053333pt;}
._30{width:201.136000pt;}
._2d{width:251.221333pt;}
._22{width:259.498667pt;}
._16{width:263.040000pt;}
._1a{width:272.512000pt;}
._3d{width:276.954667pt;}
._2b{width:279.344000pt;}
._3c{width:304.341333pt;}
._23{width:315.136000pt;}
._38{width:323.242667pt;}
._20{width:331.776000pt;}
._3f{width:336.466133pt;}
._14{width:338.901333pt;}
._1b{width:341.205333pt;}
._1c{width:343.552000pt;}
._17{width:344.789333pt;}
._2c{width:346.026667pt;}
._1f{width:353.066667pt;}
._26{width:364.928000pt;}
._21{width:368.341333pt;}
._39{width:372.010667pt;}
._31{width:383.578667pt;}
._36{width:393.093333pt;}
._3e{width:397.161600pt;}
._1e{width:399.104000pt;}
._15{width:401.493333pt;}
._18{width:402.816000pt;}
._35{width:412.330667pt;}
._2e{width:414.426667pt;}
._25{width:420.650667pt;}
._33{width:423.898667pt;}
._24{width:431.317333pt;}
._2a{width:433.370667pt;}
._34{width:440.746667pt;}
._28{width:445.568000pt;}
._32{width:450.304000pt;}
._1d{width:452.608000pt;}
._12{width:453.589333pt;}
._37{width:457.386667pt;}
._2f{width:459.776000pt;}
._3b{width:469.248000pt;}
._3a{width:471.594667pt;}
._29{width:476.373333pt;}
._19{width:509.440000pt;}
._13{width:566.442667pt;}
.fs5{font-size:24.000000pt;}
.fs13{font-size:32.000000pt;}
.fs4{font-size:33.600000pt;}
.fsc{font-size:34.190933pt;}
.fs7{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fsb{font-size:40.982400pt;}
.fs9{font-size:42.666667pt;}
.fs8{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fsa{font-size:61.590933pt;}
.fs1{font-size:69.333333pt;}
.fsf{font-size:76.494400pt;}
.fs11{font-size:77.064533pt;}
.fse{font-size:80.799467pt;}
.fsd{font-size:81.262933pt;}
.fs10{font-size:85.948267pt;}
.fs12{font-size:86.589333pt;}
.fs2{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y2f{bottom:42.468667pt;}
.y27d{bottom:71.345333pt;}
.y67{bottom:74.225867pt;}
.y19f{bottom:74.274667pt;}
.y84{bottom:74.462533pt;}
.y206{bottom:74.468533pt;}
.y233{bottom:74.475867pt;}
.y1d0{bottom:74.721867pt;}
.y9b{bottom:74.729200pt;}
.y16f{bottom:75.425733pt;}
.y24{bottom:78.246000pt;}
.y23c{bottom:79.219467pt;}
.y11d{bottom:81.024933pt;}
.y27c{bottom:84.678667pt;}
.y66{bottom:88.220533pt;}
.y19e{bottom:88.269333pt;}
.yd5{bottom:89.788533pt;}
.y83{bottom:90.462533pt;}
.y205{bottom:90.468533pt;}
.y232{bottom:90.475867pt;}
.y1cf{bottom:90.721867pt;}
.y9a{bottom:90.729200pt;}
.y23{bottom:91.576000pt;}
.y23b{bottom:92.552800pt;}
.y11c{bottom:95.691600pt;}
.y27b{bottom:98.012000pt;}
.y154{bottom:98.355733pt;}
.yd4{bottom:105.788533pt;}
.y82{bottom:106.462533pt;}
.y204{bottom:106.468533pt;}
.y231{bottom:106.475867pt;}
.y18a{bottom:106.501867pt;}
.y1ce{bottom:106.721867pt;}
.ya6{bottom:106.729200pt;}
.y17a{bottom:109.672667pt;}
.y187{bottom:109.938267pt;}
.y11b{bottom:110.134267pt;}
.y174{bottom:110.322000pt;}
.y27a{bottom:111.345333pt;}
.y47{bottom:112.439516pt;}
.y185{bottom:112.706133pt;}
.y189{bottom:120.496533pt;}
.y1a8{bottom:120.895733pt;}
.yd3{bottom:121.788533pt;}
.y23a{bottom:121.982533pt;}
.y99{bottom:122.369200pt;}
.y81{bottom:122.462533pt;}
.y203{bottom:122.468533pt;}
.y230{bottom:122.475867pt;}
.y1cd{bottom:122.721867pt;}
.ya5{bottom:122.729200pt;}
.y46{bottom:122.739534pt;}
.y153{bottom:124.137067pt;}
.y279{bottom:124.678667pt;}
.y1b0{bottom:124.791333pt;}
.y11a{bottom:124.800933pt;}
.y45{bottom:132.988267pt;}
.yd2{bottom:137.788533pt;}
.y278{bottom:138.012000pt;}
.y80{bottom:138.462533pt;}
.y202{bottom:138.468533pt;}
.y22f{bottom:138.475867pt;}
.y152{bottom:138.579733pt;}
.y1cc{bottom:138.721867pt;}
.ya4{bottom:138.729200pt;}
.y119{bottom:139.243600pt;}
.y3d{bottom:144.581333pt;}
.y33{bottom:144.810315pt;}
.y2a{bottom:145.960533pt;}
.y277{bottom:151.345333pt;}
.y192{bottom:152.864000pt;}
.y151{bottom:153.246400pt;}
.y118{bottom:153.686267pt;}
.yd1{bottom:153.788533pt;}
.y41{bottom:153.889200pt;}
.y7f{bottom:154.462533pt;}
.y2be{bottom:154.464533pt;}
.y201{bottom:154.468533pt;}
.y22e{bottom:154.475867pt;}
.y98{bottom:154.595867pt;}
.y1cb{bottom:154.721867pt;}
.y194{bottom:155.156000pt;}
.y43{bottom:159.736786pt;}
.y42{bottom:159.745333pt;}
.y29{bottom:161.960533pt;}
.y40{bottom:163.081467pt;}
.y32{bottom:163.256800pt;}
.y276{bottom:164.678667pt;}
.y175{bottom:165.093217pt;}
.y150{bottom:167.689067pt;}
.y117{bottom:168.352933pt;}
.yd0{bottom:169.788533pt;}
.ya3{bottom:170.369200pt;}
.y7e{bottom:170.462533pt;}
.y2bd{bottom:170.464533pt;}
.y200{bottom:170.468533pt;}
.y22d{bottom:170.475867pt;}
.y97{bottom:170.595867pt;}
.y17b{bottom:171.818495pt;}
.y3f{bottom:173.268933pt;}
.y28{bottom:177.960533pt;}
.y275{bottom:178.012000pt;}
.y14f{bottom:182.131733pt;}
.y116{bottom:182.795600pt;}
.y3e{bottom:182.928533pt;}
.ycf{bottom:185.788533pt;}
.y239{bottom:186.102533pt;}
.y1ca{bottom:186.361867pt;}
.y7d{bottom:186.462533pt;}
.y2bc{bottom:186.464533pt;}
.y1ff{bottom:186.468533pt;}
.y96{bottom:186.595867pt;}
.y188{bottom:187.748153pt;}
.y186{bottom:187.748638pt;}
.y274{bottom:191.345333pt;}
.y27{bottom:193.960533pt;}
.y44{bottom:193.994000pt;}
.y14e{bottom:196.798400pt;}
.y115{bottom:197.238267pt;}
.y172{bottom:201.650400pt;}
.yce{bottom:201.788533pt;}
.y22c{bottom:202.115867pt;}
.y7c{bottom:202.462533pt;}
.y2bb{bottom:202.464533pt;}
.y1fe{bottom:202.468533pt;}
.y95{bottom:202.595867pt;}
.y273{bottom:204.678667pt;}
.y26{bottom:209.960533pt;}
.y14d{bottom:211.241067pt;}
.y114{bottom:211.680933pt;}
.y178{bottom:213.385467pt;}
.y1b1{bottom:216.071333pt;}
.ycd{bottom:217.788533pt;}
.y272{bottom:218.012000pt;}
.y238{bottom:218.102533pt;}
.y7b{bottom:218.462533pt;}
.y2ba{bottom:218.464533pt;}
.y1fd{bottom:218.468533pt;}
.y1c9{bottom:218.588533pt;}
.y94{bottom:218.595867pt;}
.y1a9{bottom:221.627733pt;}
.y14c{bottom:225.683733pt;}
.y2c{bottom:225.960533pt;}
.y113{bottom:226.347600pt;}
.y181{bottom:229.893067pt;}
.y271{bottom:231.345333pt;}
.ycc{bottom:233.788533pt;}
.y183{bottom:234.273333pt;}
.y22b{bottom:234.342533pt;}
.y7a{bottom:234.462533pt;}
.y2b9{bottom:234.464533pt;}
.y1fc{bottom:234.468533pt;}
.y1c8{bottom:234.588533pt;}
.y93{bottom:234.595867pt;}
.y14b{bottom:240.126400pt;}
.y112{bottom:240.790267pt;}
.y25{bottom:241.600533pt;}
.y2b{bottom:241.960533pt;}
.y270{bottom:244.678667pt;}
.y36{bottom:246.744400pt;}
.ycb{bottom:249.788533pt;}
.y22a{bottom:250.342533pt;}
.y79{bottom:250.462533pt;}
.y1fb{bottom:250.468533pt;}
.y1c7{bottom:250.588533pt;}
.y92{bottom:250.595867pt;}
.y14a{bottom:254.569067pt;}
.y111{bottom:255.456933pt;}
.y2b1{bottom:258.012000pt;}
.y26f{bottom:258.014133pt;}
.y173{bottom:260.098765pt;}
.y1ae{bottom:263.984000pt;}
.y1a6{bottom:264.850667pt;}
.yca{bottom:265.788533pt;}
.y229{bottom:266.342533pt;}
.y78{bottom:266.462533pt;}
.y2b8{bottom:266.464533pt;}
.y1fa{bottom:266.468533pt;}
.y1c6{bottom:266.588533pt;}
.y91{bottom:266.595867pt;}
.y149{bottom:269.011733pt;}
.y110{bottom:269.899600pt;}
.y3c{bottom:270.804206pt;}
.y2b0{bottom:271.345333pt;}
.y26e{bottom:271.347467pt;}
.y191{bottom:275.842533pt;}
.y179{bottom:276.100135pt;}
.y195{bottom:276.630667pt;}
.yc9{bottom:281.788533pt;}
.y228{bottom:282.342533pt;}
.y77{bottom:282.462533pt;}
.y2b7{bottom:282.464533pt;}
.y1f9{bottom:282.468533pt;}
.y1c5{bottom:282.588533pt;}
.y90{bottom:282.595867pt;}
.y3b{bottom:283.160400pt;}
.y148{bottom:283.454400pt;}
.y10f{bottom:284.566267pt;}
.y2af{bottom:284.678667pt;}
.y26d{bottom:284.680800pt;}
.yc8{bottom:297.788533pt;}
.y2ae{bottom:298.012000pt;}
.y26c{bottom:298.014133pt;}
.y147{bottom:298.121067pt;}
.y227{bottom:298.342533pt;}
.y76{bottom:298.462533pt;}
.y2b6{bottom:298.464533pt;}
.y1f8{bottom:298.468533pt;}
.y1c4{bottom:298.588533pt;}
.y8f{bottom:298.595867pt;}
.y10e{bottom:299.008933pt;}
.y31{bottom:304.465249pt;}
.y4a{bottom:305.814340pt;}
.y22{bottom:308.457067pt;}
.y2ad{bottom:311.345333pt;}
.y26b{bottom:311.347467pt;}
.y170{bottom:312.459067pt;}
.y146{bottom:312.563733pt;}
.yc7{bottom:314.275867pt;}
.y226{bottom:314.342533pt;}
.y75{bottom:314.462533pt;}
.y2b5{bottom:314.464533pt;}
.y1f7{bottom:314.468533pt;}
.y1c3{bottom:314.588533pt;}
.y8e{bottom:314.595867pt;}
.y184{bottom:316.082793pt;}
.y182{bottom:316.085898pt;}
.y49{bottom:318.170533pt;}
.y176{bottom:318.210533pt;}
.y196{bottom:321.967867pt;}
.y30{bottom:322.911733pt;}
.y2ac{bottom:324.678667pt;}
.y26a{bottom:324.680800pt;}
.y145{bottom:327.230400pt;}
.y10d{bottom:327.350267pt;}
.y225{bottom:330.342533pt;}
.y74{bottom:330.462533pt;}
.y2b4{bottom:330.464533pt;}
.y1f6{bottom:330.468533pt;}
.y1c2{bottom:330.588533pt;}
.y8d{bottom:330.595867pt;}
.yc6{bottom:330.609200pt;}
.y21{bottom:332.763733pt;}
.y2ab{bottom:338.012000pt;}
.y269{bottom:338.014133pt;}
.y144{bottom:341.673067pt;}
.y224{bottom:346.342533pt;}
.y73{bottom:346.462533pt;}
.y2b3{bottom:346.464533pt;}
.y1f5{bottom:346.468533pt;}
.y1c1{bottom:346.588533pt;}
.y8c{bottom:346.595867pt;}
.yc5{bottom:346.609200pt;}
.y38{bottom:348.084606pt;}
.y20{bottom:348.763733pt;}
.y2aa{bottom:351.345333pt;}
.y268{bottom:351.347467pt;}
.y1a7{bottom:352.666133pt;}
.y143{bottom:356.115733pt;}
.y10c{bottom:358.384533pt;}
.y37{bottom:360.440800pt;}
.y1af{bottom:360.819600pt;}
.y48{bottom:362.256533pt;}
.y223{bottom:362.342533pt;}
.y72{bottom:362.462533pt;}
.y2b2{bottom:362.464533pt;}
.y1f4{bottom:362.468533pt;}
.y1c0{bottom:362.588533pt;}
.y8b{bottom:362.595867pt;}
.yc4{bottom:362.609200pt;}
.y2a9{bottom:364.678667pt;}
.y267{bottom:364.680800pt;}
.y1f{bottom:364.763733pt;}
.y171{bottom:368.957121pt;}
.y142{bottom:370.558400pt;}
.y177{bottom:376.049426pt;}
.y2a8{bottom:378.012000pt;}
.y266{bottom:378.014133pt;}
.y222{bottom:378.342533pt;}
.y71{bottom:378.462533pt;}
.y1f3{bottom:378.468533pt;}
.y180{bottom:378.475867pt;}
.y1bf{bottom:378.588533pt;}
.y8a{bottom:378.595867pt;}
.yc3{bottom:378.609200pt;}
.y1e{bottom:380.763733pt;}
.y39{bottom:381.693467pt;}
.y190{bottom:384.280667pt;}
.y141{bottom:385.001067pt;}
.y2a7{bottom:391.345333pt;}
.y265{bottom:391.347467pt;}
.y237{bottom:394.102533pt;}
.y221{bottom:394.342533pt;}
.y70{bottom:394.462533pt;}
.yf6{bottom:394.464533pt;}
.y1f2{bottom:394.468533pt;}
.y17f{bottom:394.475867pt;}
.y1be{bottom:394.588533pt;}
.y89{bottom:394.595867pt;}
.yc2{bottom:394.609200pt;}
.y10b{bottom:394.731200pt;}
.y1d{bottom:396.763733pt;}
.y1a4{bottom:398.919200pt;}
.y140{bottom:399.443733pt;}
.y2a6{bottom:404.678667pt;}
.y264{bottom:404.680800pt;}
.y35{bottom:406.160849pt;}
.y1ac{bottom:406.351600pt;}
.y220{bottom:410.342533pt;}
.y6f{bottom:410.462533pt;}
.yf5{bottom:410.464533pt;}
.y1f1{bottom:410.468533pt;}
.y17e{bottom:410.475867pt;}
.y1bd{bottom:410.588533pt;}
.ya2{bottom:410.595867pt;}
.y1c{bottom:412.763733pt;}
.y13f{bottom:414.110400pt;}
.y2a5{bottom:418.012000pt;}
.y263{bottom:418.014133pt;}
.y34{bottom:424.607333pt;}
.y88{bottom:426.235867pt;}
.yc1{bottom:426.249200pt;}
.y21f{bottom:426.342533pt;}
.y10a{bottom:426.371200pt;}
.y6e{bottom:426.462533pt;}
.yf4{bottom:426.464533pt;}
.y1f0{bottom:426.468533pt;}
.y1bc{bottom:426.588533pt;}
.ya1{bottom:426.595867pt;}
.y16e{bottom:426.609200pt;}
.y161{bottom:426.729200pt;}
.y13e{bottom:428.553067pt;}
.y1b{bottom:428.763733pt;}
.y2a4{bottom:431.345333pt;}
.y262{bottom:431.347467pt;}
.y17d{bottom:442.115867pt;}
.y87{bottom:442.235867pt;}
.y21e{bottom:442.342533pt;}
.y6d{bottom:442.462533pt;}
.yf3{bottom:442.464533pt;}
.y1ef{bottom:442.468533pt;}
.y1bb{bottom:442.588533pt;}
.ya0{bottom:442.595867pt;}
.y16d{bottom:442.609200pt;}
.y160{bottom:442.729200pt;}
.y13d{bottom:443.219733pt;}
.y2a3{bottom:444.678667pt;}
.y261{bottom:444.680800pt;}
.y1a{bottom:444.763733pt;}
.y13c{bottom:457.662400pt;}
.y2a2{bottom:458.012000pt;}
.y260{bottom:458.014133pt;}
.y236{bottom:458.102533pt;}
.y21d{bottom:458.342533pt;}
.y6c{bottom:458.462533pt;}
.yf2{bottom:458.464533pt;}
.y1ee{bottom:458.468533pt;}
.yc0{bottom:458.475867pt;}
.y1ba{bottom:458.588533pt;}
.y9f{bottom:458.595867pt;}
.y109{bottom:458.597867pt;}
.y16c{bottom:458.609200pt;}
.y15f{bottom:458.729200pt;}
.y3a{bottom:458.974667pt;}
.y197{bottom:459.986933pt;}
.y19{bottom:460.763733pt;}
.y2a1{bottom:471.345333pt;}
.y25f{bottom:471.347467pt;}
.y13b{bottom:472.329067pt;}
.y65{bottom:472.647200pt;}
.y17c{bottom:473.995867pt;}
.y21c{bottom:474.342533pt;}
.y6b{bottom:474.462533pt;}
.yf1{bottom:474.464533pt;}
.y1ed{bottom:474.468533pt;}
.ybf{bottom:474.475867pt;}
.y1b9{bottom:474.588533pt;}
.y9e{bottom:474.595867pt;}
.y108{bottom:474.597867pt;}
.y16b{bottom:474.609200pt;}
.y15e{bottom:474.729200pt;}
.y18e{bottom:475.600933pt;}
.y18{bottom:476.763733pt;}
.y1ad{bottom:478.725333pt;}
.y2a0{bottom:484.678667pt;}
.y25e{bottom:484.680800pt;}
.y13a{bottom:486.771733pt;}
.y21b{bottom:490.342533pt;}
.y6a{bottom:490.462533pt;}
.yf0{bottom:490.464533pt;}
.y1ec{bottom:490.468533pt;}
.ybe{bottom:490.475867pt;}
.y1b8{bottom:490.588533pt;}
.y107{bottom:490.597867pt;}
.y16a{bottom:490.609200pt;}
.y17{bottom:492.763733pt;}
.y29f{bottom:498.012000pt;}
.y25d{bottom:498.014133pt;}
.y1a5{bottom:500.589467pt;}
.y139{bottom:501.214400pt;}
.y198{bottom:503.247867pt;}
.y9d{bottom:506.235867pt;}
.y21a{bottom:506.342533pt;}
.y15d{bottom:506.369200pt;}
.y69{bottom:506.462533pt;}
.yef{bottom:506.464533pt;}
.y1eb{bottom:506.468533pt;}
.ybd{bottom:506.475867pt;}
.y1b7{bottom:506.588533pt;}
.y106{bottom:506.597867pt;}
.y169{bottom:506.609200pt;}
.y16{bottom:508.763733pt;}
.y29e{bottom:511.345333pt;}
.y25c{bottom:511.347467pt;}
.y138{bottom:515.657067pt;}
.y219{bottom:522.342533pt;}
.y64{bottom:522.462533pt;}
.yee{bottom:522.464533pt;}
.y1ea{bottom:522.468533pt;}
.ybc{bottom:522.475867pt;}
.y1b6{bottom:522.588533pt;}
.y105{bottom:522.597867pt;}
.y29d{bottom:524.678667pt;}
.y25b{bottom:524.680800pt;}
.y15{bottom:524.763733pt;}
.y137{bottom:530.099733pt;}
.y1b2{bottom:531.978267pt;}
.y29c{bottom:538.012000pt;}
.y25a{bottom:538.014133pt;}
.y168{bottom:538.249200pt;}
.y218{bottom:538.342533pt;}
.y63{bottom:538.462533pt;}
.yed{bottom:538.464533pt;}
.y1e9{bottom:538.468533pt;}
.ybb{bottom:538.475867pt;}
.y1b5{bottom:538.588533pt;}
.y15c{bottom:538.595867pt;}
.y104{bottom:538.597867pt;}
.y14{bottom:540.763733pt;}
.y1a2{bottom:542.657467pt;}
.y136{bottom:544.542400pt;}
.y29b{bottom:551.345333pt;}
.y259{bottom:551.347467pt;}
.y217{bottom:554.342533pt;}
.y62{bottom:554.462533pt;}
.yec{bottom:554.464533pt;}
.y1e8{bottom:554.468533pt;}
.yba{bottom:554.475867pt;}
.y15b{bottom:554.595867pt;}
.y103{bottom:554.597867pt;}
.y13{bottom:556.763733pt;}
.y135{bottom:559.209067pt;}
.y18f{bottom:563.554533pt;}
.y29a{bottom:564.678667pt;}
.y258{bottom:564.680800pt;}
.y216{bottom:570.342533pt;}
.y61{bottom:570.462533pt;}
.yeb{bottom:570.464533pt;}
.y1e7{bottom:570.468533pt;}
.yb9{bottom:570.475867pt;}
.y15a{bottom:570.595867pt;}
.y102{bottom:570.597867pt;}
.y12{bottom:572.763733pt;}
.y134{bottom:573.651733pt;}
.y299{bottom:578.012000pt;}
.y257{bottom:578.014133pt;}
.y215{bottom:586.342533pt;}
.y60{bottom:586.462533pt;}
.yea{bottom:586.464533pt;}
.y1e6{bottom:586.468533pt;}
.yb8{bottom:586.475867pt;}
.y159{bottom:586.595867pt;}
.y101{bottom:586.597867pt;}
.y133{bottom:588.094400pt;}
.y11{bottom:588.763733pt;}
.y199{bottom:589.482533pt;}
.y298{bottom:591.345333pt;}
.y256{bottom:591.347467pt;}
.y214{bottom:602.342533pt;}
.y5f{bottom:602.462533pt;}
.ye9{bottom:602.464533pt;}
.y1e5{bottom:602.468533pt;}
.yb7{bottom:602.475867pt;}
.y132{bottom:602.537067pt;}
.y158{bottom:602.595867pt;}
.y100{bottom:602.597867pt;}
.y297{bottom:604.678667pt;}
.y255{bottom:604.680800pt;}
.y131{bottom:616.979733pt;}
.y296{bottom:618.012000pt;}
.y254{bottom:618.014133pt;}
.y1b4{bottom:618.235867pt;}
.y213{bottom:618.342533pt;}
.y5e{bottom:618.462533pt;}
.ye8{bottom:618.464533pt;}
.y1e4{bottom:618.468533pt;}
.y167{bottom:618.475867pt;}
.y157{bottom:618.595867pt;}
.yff{bottom:618.597867pt;}
.y10{bottom:628.904267pt;}
.y1b3{bottom:630.834000pt;}
.y295{bottom:631.345333pt;}
.y253{bottom:631.347467pt;}
.y130{bottom:631.422400pt;}
.yb6{bottom:634.115867pt;}
.y212{bottom:634.342533pt;}
.y5d{bottom:634.462533pt;}
.ye7{bottom:634.464533pt;}
.y1e3{bottom:634.468533pt;}
.y166{bottom:634.475867pt;}
.y156{bottom:634.595867pt;}
.yfe{bottom:634.597867pt;}
.y1a3{bottom:634.803067pt;}
.y19a{bottom:635.321600pt;}
.yf{bottom:639.971600pt;}
.y294{bottom:644.678667pt;}
.y252{bottom:644.680800pt;}
.y12f{bottom:645.865067pt;}
.y235{bottom:650.102533pt;}
.y211{bottom:650.342533pt;}
.y5c{bottom:650.462533pt;}
.ye6{bottom:650.464533pt;}
.y1e2{bottom:650.468533pt;}
.y165{bottom:650.475867pt;}
.yfd{bottom:650.597867pt;}
.y293{bottom:658.012000pt;}
.y251{bottom:658.014133pt;}
.y18d{bottom:659.100667pt;}
.y12e{bottom:660.531733pt;}
.yb5{bottom:665.995867pt;}
.y155{bottom:666.235867pt;}
.y210{bottom:666.342533pt;}
.y5b{bottom:666.462533pt;}
.ye5{bottom:666.464533pt;}
.y1e1{bottom:666.468533pt;}
.y164{bottom:666.475867pt;}
.yfc{bottom:666.597867pt;}
.y292{bottom:671.345333pt;}
.y250{bottom:671.347467pt;}
.ye{bottom:671.594800pt;}
.y12d{bottom:674.974400pt;}
.y1a0{bottom:678.819333pt;}
.y1aa{bottom:679.396667pt;}
.y20f{bottom:682.342533pt;}
.y5a{bottom:682.462533pt;}
.ye4{bottom:682.464533pt;}
.y1e0{bottom:682.468533pt;}
.y163{bottom:682.475867pt;}
.yfb{bottom:682.597867pt;}
.yd{bottom:683.594933pt;}
.y291{bottom:684.678667pt;}
.y24f{bottom:684.680800pt;}
.y12c{bottom:689.417067pt;}
.yc{bottom:695.594933pt;}
.y290{bottom:698.012000pt;}
.y24e{bottom:698.014133pt;}
.y20e{bottom:698.342533pt;}
.y59{bottom:698.462533pt;}
.ye3{bottom:698.464533pt;}
.y1df{bottom:698.468533pt;}
.y162{bottom:698.475867pt;}
.yfa{bottom:698.597867pt;}
.y12b{bottom:704.083733pt;}
.yb{bottom:704.163200pt;}
.y28f{bottom:711.345333pt;}
.y24d{bottom:711.347467pt;}
.y20d{bottom:714.342533pt;}
.y58{bottom:714.462533pt;}
.ye2{bottom:714.464533pt;}
.y1de{bottom:714.468533pt;}
.yb4{bottom:714.475867pt;}
.y12a{bottom:718.536933pt;}
.ya{bottom:719.594933pt;}
.y28e{bottom:724.678667pt;}
.y24c{bottom:724.680800pt;}
.y9{bottom:728.163200pt;}
.yf9{bottom:730.237867pt;}
.y20c{bottom:730.342533pt;}
.y57{bottom:730.462533pt;}
.ye1{bottom:730.464533pt;}
.y1dd{bottom:730.468533pt;}
.yb3{bottom:730.475867pt;}
.y129{bottom:732.979600pt;}
.y193{bottom:735.881733pt;}
.y19b{bottom:736.597333pt;}
.y28d{bottom:738.012000pt;}
.y24b{bottom:738.014133pt;}
.y8{bottom:743.594933pt;}
.y20b{bottom:746.342533pt;}
.y56{bottom:746.462533pt;}
.ye0{bottom:746.464533pt;}
.y1dc{bottom:746.468533pt;}
.yb2{bottom:746.475867pt;}
.y128{bottom:747.646267pt;}
.y28c{bottom:751.345333pt;}
.y24a{bottom:751.347467pt;}
.y127{bottom:762.088933pt;}
.y20a{bottom:762.342533pt;}
.y55{bottom:762.462533pt;}
.ydf{bottom:762.464533pt;}
.y1db{bottom:762.468533pt;}
.yb1{bottom:762.475867pt;}
.y28b{bottom:764.678667pt;}
.y249{bottom:764.680800pt;}
.y1a1{bottom:765.697067pt;}
.y1ab{bottom:766.995867pt;}
.y7{bottom:770.521067pt;}
.y126{bottom:776.755600pt;}
.y28a{bottom:778.012000pt;}
.y248{bottom:778.014133pt;}
.y86{bottom:778.102533pt;}
.y209{bottom:778.342533pt;}
.y54{bottom:778.462533pt;}
.yde{bottom:778.464533pt;}
.y1da{bottom:778.468533pt;}
.yb0{bottom:778.475867pt;}
.y19c{bottom:779.357200pt;}
.y18b{bottom:779.858400pt;}
.y6{bottom:789.183067pt;}
.y125{bottom:791.208400pt;}
.y289{bottom:791.345333pt;}
.y247{bottom:791.347467pt;}
.y208{bottom:794.342533pt;}
.y53{bottom:794.462533pt;}
.ydd{bottom:794.464533pt;}
.y1d9{bottom:794.468533pt;}
.yaf{bottom:794.475867pt;}
.y288{bottom:804.678667pt;}
.y246{bottom:804.680800pt;}
.y124{bottom:805.651067pt;}
.y85{bottom:809.982533pt;}
.y52{bottom:810.462533pt;}
.ydc{bottom:810.464533pt;}
.y1d8{bottom:810.468533pt;}
.yae{bottom:810.475867pt;}
.y287{bottom:818.012000pt;}
.y245{bottom:818.014133pt;}
.y123{bottom:820.317733pt;}
.y207{bottom:825.982533pt;}
.y51{bottom:826.462533pt;}
.ydb{bottom:826.464533pt;}
.y1d7{bottom:826.468533pt;}
.yad{bottom:826.475867pt;}
.y5{bottom:830.226133pt;}
.y286{bottom:831.345333pt;}
.y244{bottom:831.347467pt;}
.y122{bottom:834.760400pt;}
.y50{bottom:842.462533pt;}
.yda{bottom:842.464533pt;}
.y1d6{bottom:842.468533pt;}
.yac{bottom:842.475867pt;}
.y285{bottom:844.678667pt;}
.y243{bottom:844.680800pt;}
.y121{bottom:849.427067pt;}
.y284{bottom:858.012000pt;}
.y242{bottom:858.014133pt;}
.y4f{bottom:858.462533pt;}
.yd9{bottom:858.464533pt;}
.y1d5{bottom:858.468533pt;}
.yab{bottom:858.475867pt;}
.y4{bottom:862.635733pt;}
.y120{bottom:863.869733pt;}
.y283{bottom:871.345333pt;}
.y241{bottom:871.347467pt;}
.y234{bottom:874.102533pt;}
.y4e{bottom:874.462533pt;}
.yd8{bottom:874.464533pt;}
.y1d4{bottom:874.468533pt;}
.yaa{bottom:874.475867pt;}
.y18c{bottom:874.759867pt;}
.y19d{bottom:876.908400pt;}
.y282{bottom:884.678667pt;}
.y240{bottom:884.680800pt;}
.y4d{bottom:890.462533pt;}
.yd7{bottom:890.464533pt;}
.y1d3{bottom:890.468533pt;}
.ya9{bottom:890.475867pt;}
.y11f{bottom:891.549733pt;}
.y3{bottom:895.045333pt;}
.y281{bottom:898.012000pt;}
.y23f{bottom:898.014133pt;}
.y4c{bottom:906.462533pt;}
.yf8{bottom:906.464533pt;}
.y1d2{bottom:906.468533pt;}
.ya8{bottom:906.475867pt;}
.y280{bottom:911.345333pt;}
.y23e{bottom:911.347467pt;}
.yd6{bottom:922.104533pt;}
.y4b{bottom:922.462533pt;}
.yf7{bottom:922.464533pt;}
.y1d1{bottom:922.468533pt;}
.ya7{bottom:922.475867pt;}
.y27f{bottom:924.678667pt;}
.y23d{bottom:924.680800pt;}
.y2{bottom:950.489200pt;}
.y9c{bottom:1006.594400pt;}
.y27e{bottom:1006.598667pt;}
.y68{bottom:1006.599200pt;}
.y11e{bottom:1006.624933pt;}
.y2e{bottom:1009.857333pt;}
.y2d{bottom:1022.660000pt;}
.h7{height:17.496094pt;}
.h14{height:24.891934pt;}
.h13{height:24.908629pt;}
.h9{height:25.255208pt;}
.h2{height:27.197917pt;}
.hd{height:29.140625pt;}
.h8{height:29.160156pt;}
.h15{height:29.645833pt;}
.h12{height:29.836308pt;}
.h10{height:31.083333pt;}
.hf{height:31.104167pt;}
.he{height:37.057292pt;}
.h16{height:37.944823pt;}
.hc{height:38.828125pt;}
.ha{height:38.854167pt;}
.hb{height:38.880208pt;}
.h1d{height:39.934108pt;}
.h6{height:43.660119pt;}
.h5{height:43.678785pt;}
.h11{height:44.869957pt;}
.h3{height:50.476562pt;}
.h19{height:55.727366pt;}
.h1b{height:56.142717pt;}
.h18{height:58.863674pt;}
.h17{height:59.201317pt;}
.h1a{height:62.614655pt;}
.h1c{height:63.081682pt;}
.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;}
.x2b{left:69.921200pt;}
.x47{left:75.824533pt;}
.x43{left:77.700533pt;}
.x37{left:79.881051pt;}
.x8{left:85.417333pt;}
.x1{left:86.929067pt;}
.xe{left:88.980734pt;}
.x52{left:90.708800pt;}
.xd{left:92.152667pt;}
.x3b{left:93.375067pt;}
.x4{left:94.488133pt;}
.x30{left:97.359046pt;}
.x27{left:98.271467pt;}
.x50{left:109.606400pt;}
.x3{left:111.496000pt;}
.x6{left:117.170133pt;}
.x12{left:151.049600pt;}
.xb{left:159.889733pt;}
.xc{left:171.191670pt;}
.x13{left:180.731103pt;}
.x5{left:189.223467pt;}
.x4f{left:191.609200pt;}
.x11{left:210.240133pt;}
.x2e{left:213.558533pt;}
.x2a{left:232.466933pt;}
.x42{left:243.591333pt;}
.xf{left:247.358933pt;}
.x36{left:259.377067pt;}
.x44{left:268.629733pt;}
.x46{left:271.443600pt;}
.x45{left:276.206133pt;}
.x48{left:277.866267pt;}
.x3a{left:279.167200pt;}
.x10{left:284.590653pt;}
.x2f{left:290.642933pt;}
.x3c{left:295.712133pt;}
.x20{left:355.851333pt;}
.x2c{left:357.174533pt;}
.x29{left:376.093600pt;}
.x39{left:396.580090pt;}
.x49{left:401.977200pt;}
.x9{left:404.481333pt;}
.x1e{left:406.298133pt;}
.x32{left:415.728451pt;}
.x3d{left:418.833467pt;}
.x3e{left:420.050533pt;}
.x41{left:422.199067pt;}
.x23{left:425.209200pt;}
.x7{left:427.090133pt;}
.x53{left:428.991467pt;}
.x1f{left:436.538133pt;}
.x51{left:447.878400pt;}
.x25{left:455.449200pt;}
.x1c{left:460.466400pt;}
.x19{left:475.922533pt;}
.x18{left:478.441067pt;}
.x24{left:485.822533pt;}
.x1a{left:500.688933pt;}
.x4e{left:507.267733pt;}
.x1b{left:510.937666pt;}
.x35{left:515.084800pt;}
.x28{left:525.911467pt;}
.x4b{left:526.809867pt;}
.x4a{left:562.888667pt;}
.x40{left:563.871467pt;}
.x33{left:567.873200pt;}
.x2d{left:576.395867pt;}
.x22{left:589.770933pt;}
.x38{left:592.074400pt;}
.x15{left:595.474667pt;}
.x34{left:606.510533pt;}
.x31{left:609.479600pt;}
.x3f{left:613.935867pt;}
.x2{left:616.324800pt;}
.x14{left:632.358533pt;}
.x1d{left:636.108311pt;}
.x4c{left:641.526800pt;}
.x16{left:642.955733pt;}
.x21{left:647.456667pt;}
.x17{left:651.500564pt;}
.x4d{left:661.216133pt;}
.x26{left:666.356800pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  