
    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_eccbc933d5830784d10280ab.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.126000;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_8ec8c1bd4c06ccca84777cd2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065581;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_65d1f2c0ff5c425dff50a372.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.126000;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_61e232942bf280d408d6426c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.222000;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_6638e8b65cba4efc9db180fd.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.213000;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_f18d875cacfc84e1df071f29.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.239000;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_dae665174ee44693cfbddb7e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.104000;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_1e75b3fa8989b386bc92a205.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.328000;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_c92ac01f5916fbaee73d2009.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.722656;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_8ec8c1bd4c06ccca84777cd2.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.065581;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_1daa381c7314d4af94c25a44.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.230000;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_1af8e26864a11f53306c3895.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.664000;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_e80e9a934b2dc9fd35498975.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.859000;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_3b7d6cbbd480d94b9e4453c4.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.932000;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_513cb25c663817b30405bc95.woff2')format("woff");}.fff{font-family:fff;line-height:0.683000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_3f2f19e0cd3f5560a640f6c2.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.230000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_f62f6843a4d889be2eae1d56.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.859000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_2cab5f38a3a640e7defe8fe7.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.939000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_c80fed770ca80ca7ff63b3b2.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.938000;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:ff14;src:url('chunks/assets/font_92846d019587a2f0144cbec5.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.936000;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:ff15;src:url('chunks/assets/font_576c91bcf03cd5950f1e4024.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.607000;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;}
.m4{transform:matrix(0.000000,-0.250004,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250004,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250004,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249996,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v3{vertical-align:-24.000000px;}
.v6{vertical-align:-21.530695px;}
.v2{vertical-align:-20.399963px;}
.v4{vertical-align:-15.011719px;}
.v7{vertical-align:-1.224000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.000000px;}
.v5{vertical-align:63.017944px;}
.ls45{letter-spacing:-2.223113px;}
.ls46{letter-spacing:-1.126783px;}
.ls4b{letter-spacing:-0.765000px;}
.ls44{letter-spacing:-0.730890px;}
.ls55{letter-spacing:-0.714000px;}
.ls43{letter-spacing:-0.480000px;}
.ls2a{letter-spacing:-0.420000px;}
.ls7b{letter-spacing:-0.408000px;}
.ls2b{letter-spacing:-0.360000px;}
.ls81{letter-spacing:-0.357000px;}
.ls82{letter-spacing:-0.306000px;}
.ls11{letter-spacing:-0.300000px;}
.ls78{letter-spacing:-0.255000px;}
.ls10{letter-spacing:-0.240000px;}
.ls79{letter-spacing:-0.204000px;}
.ls2d{letter-spacing:-0.180000px;}
.ls76{letter-spacing:-0.153000px;}
.ls29{letter-spacing:-0.120000px;}
.ls5f{letter-spacing:-0.102000px;}
.ls2c{letter-spacing:-0.060000px;}
.ls77{letter-spacing:-0.051000px;}
.lsf{letter-spacing:0.000000px;}
.lse{letter-spacing:0.000037px;}
.ls67{letter-spacing:0.025500px;}
.lsa{letter-spacing:0.030000px;}
.ls5e{letter-spacing:0.051000px;}
.lsb{letter-spacing:0.060000px;}
.ls5c{letter-spacing:0.076500px;}
.ls3c{letter-spacing:0.084000px;}
.ls69{letter-spacing:0.102000px;}
.ls58{letter-spacing:0.118835px;}
.ls1b{letter-spacing:0.120000px;}
.ls1f{letter-spacing:0.132000px;}
.ls3e{letter-spacing:0.149976px;}
.ls64{letter-spacing:0.153000px;}
.lsc{letter-spacing:0.178791px;}
.ls16{letter-spacing:0.180000px;}
.ls22{letter-spacing:0.185985px;}
.ls7c{letter-spacing:0.204000px;}
.ls39{letter-spacing:0.209839px;}
.ls50{letter-spacing:0.210000px;}
.ls1{letter-spacing:0.240000px;}
.ls17{letter-spacing:0.245986px;}
.ls53{letter-spacing:0.246000px;}
.lsd{letter-spacing:0.255000px;}
.ls66{letter-spacing:0.264000px;}
.ls6b{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.300000px;}
.ls13{letter-spacing:0.305988px;}
.ls38{letter-spacing:0.305991px;}
.ls3d{letter-spacing:0.306000px;}
.ls52{letter-spacing:0.330000px;}
.ls5a{letter-spacing:0.357000px;}
.ls3{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.372000px;}
.ls65{letter-spacing:0.408000px;}
.ls1d{letter-spacing:0.420000px;}
.ls47{letter-spacing:0.450000px;}
.ls5b{letter-spacing:0.459000px;}
.ls12{letter-spacing:0.480000px;}
.ls56{letter-spacing:0.510000px;}
.ls8{letter-spacing:0.540000px;}
.ls68{letter-spacing:0.561000px;}
.ls33{letter-spacing:0.600000px;}
.ls62{letter-spacing:0.612000px;}
.ls41{letter-spacing:0.618000px;}
.ls4{letter-spacing:0.660000px;}
.ls61{letter-spacing:0.663000px;}
.ls4f{letter-spacing:0.672000px;}
.ls2f{letter-spacing:0.689990px;}
.ls6f{letter-spacing:0.714000px;}
.ls1e{letter-spacing:0.720000px;}
.ls5{letter-spacing:0.720110px;}
.ls6a{letter-spacing:0.739500px;}
.ls57{letter-spacing:0.750000px;}
.ls60{letter-spacing:0.765000px;}
.ls26{letter-spacing:0.780000px;}
.ls63{letter-spacing:0.816000px;}
.ls6{letter-spacing:0.840000px;}
.ls7e{letter-spacing:0.841500px;}
.ls5d{letter-spacing:0.867000px;}
.ls19{letter-spacing:0.870000px;}
.ls2e{letter-spacing:0.900000px;}
.ls3b{letter-spacing:0.905984px;}
.ls40{letter-spacing:0.906000px;}
.ls21{letter-spacing:0.909302px;}
.ls3f{letter-spacing:0.912000px;}
.ls80{letter-spacing:0.918000px;}
.ls1c{letter-spacing:0.930000px;}
.ls23{letter-spacing:0.960000px;}
.ls70{letter-spacing:0.969000px;}
.ls59{letter-spacing:0.990000px;}
.ls18{letter-spacing:1.020000px;}
.ls74{letter-spacing:1.071000px;}
.ls25{letter-spacing:1.080000px;}
.ls6c{letter-spacing:1.122000px;}
.ls24{letter-spacing:1.140000px;}
.ls7a{letter-spacing:1.173000px;}
.ls51{letter-spacing:1.199991px;}
.ls9{letter-spacing:1.200000px;}
.ls14{letter-spacing:1.260000px;}
.ls75{letter-spacing:1.275000px;}
.ls4e{letter-spacing:1.296599px;}
.ls20{letter-spacing:1.320000px;}
.ls1a{letter-spacing:1.380000px;}
.ls7{letter-spacing:1.398000px;}
.ls7d{letter-spacing:1.428000px;}
.ls31{letter-spacing:1.440000px;}
.ls6e{letter-spacing:1.479000px;}
.ls34{letter-spacing:1.500000px;}
.ls30{letter-spacing:1.560000px;}
.ls32{letter-spacing:1.620000px;}
.ls27{letter-spacing:1.680000px;}
.ls4d{letter-spacing:1.692000px;}
.ls73{letter-spacing:1.785000px;}
.ls7f{letter-spacing:1.836000px;}
.ls54{letter-spacing:1.860000px;}
.ls72{letter-spacing:1.887000px;}
.ls71{letter-spacing:1.938000px;}
.ls6d{letter-spacing:2.040000px;}
.ls4c{letter-spacing:2.460000px;}
.ls37{letter-spacing:2.971463px;}
.ls0{letter-spacing:3.990000px;}
.ls28{letter-spacing:12.750000px;}
.ls36{letter-spacing:13.323329px;}
.ls35{letter-spacing:13.383344px;}
.ls3a{letter-spacing:16.684169px;}
.ls49{letter-spacing:126.378000px;}
.ls48{letter-spacing:135.048000px;}
.ls4a{letter-spacing:366.435000px;}
.ls42{letter-spacing:1301.343184px;}
.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;}
}
.ws3f{word-spacing:-16.744184px;}
.ws9{word-spacing:-15.300000px;}
.ws1b{word-spacing:-15.000000px;}
.wsa7{word-spacing:-14.832000px;}
.ws86{word-spacing:-14.760000px;}
.ws1a{word-spacing:-14.544000px;}
.wsc6{word-spacing:-13.719000px;}
.wsa8{word-spacing:-13.005000px;}
.ws17{word-spacing:-12.750000px;}
.ws52{word-spacing:-12.480000px;}
.ws1c{word-spacing:-12.474000px;}
.ws2{word-spacing:-12.420000px;}
.ws4{word-spacing:-12.360000px;}
.ws6{word-spacing:-12.060000px;}
.ws92{word-spacing:-12.036000px;}
.ws75{word-spacing:-11.985000px;}
.ws5{word-spacing:-11.760000px;}
.ws7{word-spacing:-11.550000px;}
.ws8{word-spacing:-11.520000px;}
.ws79{word-spacing:-11.172000px;}
.ws7b{word-spacing:-10.710000px;}
.ws7a{word-spacing:-10.584000px;}
.ws5f{word-spacing:-10.557300px;}
.ws1d{word-spacing:-10.500000px;}
.ws99{word-spacing:-10.149000px;}
.ws1{word-spacing:-9.996000px;}
.wsa6{word-spacing:-9.843000px;}
.ws0{word-spacing:-9.408000px;}
.wsa{word-spacing:-8.925000px;}
.ws3{word-spacing:-8.694000px;}
.ws11{word-spacing:-7.500000px;}
.ws78{word-spacing:-6.375000px;}
.ws60{word-spacing:-6.242988px;}
.wsb{word-spacing:-1.890000px;}
.ws56{word-spacing:-1.560000px;}
.ws14{word-spacing:-1.500000px;}
.ws66{word-spacing:-1.440000px;}
.ws9d{word-spacing:-1.380000px;}
.wsd0{word-spacing:-1.326000px;}
.wsa3{word-spacing:-1.275000px;}
.ws80{word-spacing:-1.260000px;}
.wsd1{word-spacing:-1.224000px;}
.ws5d{word-spacing:-1.200000px;}
.ws1f{word-spacing:-1.140000px;}
.wsae{word-spacing:-1.122000px;}
.ws5c{word-spacing:-1.080000px;}
.wsdc{word-spacing:-1.071000px;}
.ws65{word-spacing:-1.020000px;}
.wsb2{word-spacing:-0.969000px;}
.ws59{word-spacing:-0.960000px;}
.wsd7{word-spacing:-0.918000px;}
.ws49{word-spacing:-0.900000px;}
.ws31{word-spacing:-0.840000px;}
.ws1e{word-spacing:-0.780000px;}
.ws10{word-spacing:-0.720000px;}
.wsb0{word-spacing:-0.714000px;}
.ws7f{word-spacing:-0.660000px;}
.ws19{word-spacing:-0.612000px;}
.ws87{word-spacing:-0.600000px;}
.wsd{word-spacing:-0.570000px;}
.ws4a{word-spacing:-0.540000px;}
.wsaf{word-spacing:-0.510000px;}
.ws2f{word-spacing:-0.480000px;}
.wsc7{word-spacing:-0.459000px;}
.ws20{word-spacing:-0.420000px;}
.ws53{word-spacing:-0.360000px;}
.ws21{word-spacing:-0.300000px;}
.wsb7{word-spacing:-0.255000px;}
.ws16{word-spacing:-0.240000px;}
.ws26{word-spacing:-0.180000px;}
.wscb{word-spacing:-0.153000px;}
.ws61{word-spacing:-0.120000px;}
.ws3e{word-spacing:-0.060015px;}
.ws27{word-spacing:-0.060000px;}
.wsc{word-spacing:0.000000px;}
.wsb4{word-spacing:0.051000px;}
.ws25{word-spacing:0.060000px;}
.wsa9{word-spacing:0.102000px;}
.ws84{word-spacing:0.120000px;}
.wsc0{word-spacing:0.153000px;}
.ws2b{word-spacing:0.180000px;}
.ws15{word-spacing:0.240000px;}
.ws5e{word-spacing:0.300000px;}
.wsc2{word-spacing:0.306000px;}
.ws36{word-spacing:0.360000px;}
.wsd3{word-spacing:0.408000px;}
.ws62{word-spacing:0.420000px;}
.wsb5{word-spacing:0.459000px;}
.ws3d{word-spacing:0.480000px;}
.wsad{word-spacing:0.510000px;}
.wsb3{word-spacing:0.561000px;}
.ws37{word-spacing:0.600000px;}
.ws97{word-spacing:0.612000px;}
.ws40{word-spacing:0.660000px;}
.wsdd{word-spacing:0.663000px;}
.wsbd{word-spacing:0.765000px;}
.ws94{word-spacing:0.780000px;}
.wscf{word-spacing:0.816000px;}
.ws5b{word-spacing:0.840000px;}
.ws9b{word-spacing:0.900000px;}
.wsa5{word-spacing:0.969000px;}
.ws68{word-spacing:1.020000px;}
.ws54{word-spacing:1.080000px;}
.ws69{word-spacing:1.126783px;}
.ws13{word-spacing:1.140000px;}
.ws6e{word-spacing:1.173000px;}
.ws2a{word-spacing:1.200000px;}
.wsc8{word-spacing:1.224000px;}
.wse{word-spacing:1.260000px;}
.wsa2{word-spacing:1.275000px;}
.ws34{word-spacing:1.320000px;}
.ws24{word-spacing:1.380000px;}
.ws23{word-spacing:1.440000px;}
.wsab{word-spacing:1.479000px;}
.wsf{word-spacing:1.500000px;}
.ws7c{word-spacing:1.560000px;}
.ws93{word-spacing:1.620000px;}
.wsc1{word-spacing:1.632000px;}
.ws83{word-spacing:1.680000px;}
.ws98{word-spacing:1.683000px;}
.wsb6{word-spacing:1.734000px;}
.ws3b{word-spacing:1.740000px;}
.ws6b{word-spacing:1.785000px;}
.ws9a{word-spacing:1.800000px;}
.wsaa{word-spacing:1.836000px;}
.wsbb{word-spacing:1.887000px;}
.ws45{word-spacing:1.920000px;}
.ws12{word-spacing:1.980000px;}
.ws2e{word-spacing:2.040000px;}
.ws6d{word-spacing:2.091000px;}
.ws29{word-spacing:2.100000px;}
.ws48{word-spacing:2.160000px;}
.wsca{word-spacing:2.193000px;}
.ws67{word-spacing:2.220000px;}
.wsac{word-spacing:2.244000px;}
.ws82{word-spacing:2.280000px;}
.wsa4{word-spacing:2.295000px;}
.ws4f{word-spacing:2.340000px;}
.wsb8{word-spacing:2.346000px;}
.wsbe{word-spacing:2.397000px;}
.ws30{word-spacing:2.400000px;}
.wsd4{word-spacing:2.448000px;}
.ws50{word-spacing:2.460000px;}
.ws5a{word-spacing:2.520000px;}
.wscc{word-spacing:2.550000px;}
.ws35{word-spacing:2.580000px;}
.ws81{word-spacing:2.640000px;}
.ws58{word-spacing:2.700000px;}
.wsdb{word-spacing:2.703000px;}
.ws28{word-spacing:2.760000px;}
.ws4e{word-spacing:2.820000px;}
.ws76{word-spacing:2.880000px;}
.wsc9{word-spacing:2.907000px;}
.ws38{word-spacing:2.940000px;}
.ws55{word-spacing:3.060000px;}
.ws88{word-spacing:3.111000px;}
.ws3a{word-spacing:3.120000px;}
.ws77{word-spacing:3.162000px;}
.ws4b{word-spacing:3.180000px;}
.wsd2{word-spacing:3.213000px;}
.ws7e{word-spacing:3.240000px;}
.ws39{word-spacing:3.300000px;}
.ws64{word-spacing:3.360000px;}
.wsc5{word-spacing:3.366000px;}
.ws4c{word-spacing:3.420000px;}
.wsd9{word-spacing:3.468000px;}
.ws63{word-spacing:3.480000px;}
.ws9c{word-spacing:3.540000px;}
.ws43{word-spacing:3.600000px;}
.wsb9{word-spacing:3.621000px;}
.wsbc{word-spacing:3.774000px;}
.wsce{word-spacing:3.825000px;}
.ws6a{word-spacing:3.876000px;}
.ws85{word-spacing:3.900000px;}
.wsc4{word-spacing:3.927000px;}
.ws47{word-spacing:3.960000px;}
.ws4d{word-spacing:4.020000px;}
.ws22{word-spacing:4.080000px;}
.wsc3{word-spacing:4.131000px;}
.ws2c{word-spacing:4.140000px;}
.ws57{word-spacing:4.200000px;}
.ws32{word-spacing:4.260000px;}
.ws33{word-spacing:4.320000px;}
.wsa0{word-spacing:4.380000px;}
.ws41{word-spacing:4.440000px;}
.wscd{word-spacing:4.539000px;}
.ws9e{word-spacing:4.560000px;}
.wsa1{word-spacing:4.680000px;}
.ws2d{word-spacing:4.740000px;}
.ws44{word-spacing:5.040000px;}
.wsd8{word-spacing:5.151000px;}
.ws51{word-spacing:5.160000px;}
.wsd5{word-spacing:5.304000px;}
.wsbf{word-spacing:5.457000px;}
.ws42{word-spacing:5.580000px;}
.ws46{word-spacing:5.760000px;}
.wsb1{word-spacing:5.814000px;}
.ws3c{word-spacing:6.120000px;}
.wsd6{word-spacing:6.936000px;}
.ws9f{word-spacing:7.020000px;}
.ws95{word-spacing:7.080000px;}
.ws96{word-spacing:7.140000px;}
.wsda{word-spacing:7.242000px;}
.wsba{word-spacing:8.415000px;}
.ws7d{word-spacing:10.200000px;}
.ws6c{word-spacing:11.271000px;}
.wsde{word-spacing:13.668000px;}
.wsdf{word-spacing:17.799000px;}
.ws71{word-spacing:70.839000px;}
.ws18{word-spacing:72.267000px;}
.ws73{word-spacing:96.339000px;}
.ws8b{word-spacing:107.150991px;}
.ws70{word-spacing:109.701000px;}
.ws8d{word-spacing:113.169000px;}
.ws8a{word-spacing:129.030000px;}
.ws72{word-spacing:135.201000px;}
.ws74{word-spacing:231.540000px;}
.ws6f{word-spacing:257.040000px;}
.ws91{word-spacing:292.434000px;}
.ws8f{word-spacing:337.671000px;}
.ws89{word-spacing:381.786000px;}
.ws8c{word-spacing:448.647000px;}
.ws8e{word-spacing:457.164000px;}
.ws90{word-spacing:821.865000px;}
._23{margin-left:-2959.376983px;}
._11{margin-left:-48.450000px;}
._60{margin-left:-18.564000px;}
._d{margin-left:-16.575000px;}
._18{margin-left:-14.874001px;}
._8{margin-left:-13.671900px;}
._26{margin-left:-12.282000px;}
._61{margin-left:-11.016000px;}
._22{margin-left:-9.948000px;}
._6{margin-left:-8.236800px;}
._28{margin-left:-7.200009px;}
._20{margin-left:-6.154800px;}
._1f{margin-left:-5.052000px;}
._1{margin-left:-3.014100px;}
._0{margin-left:-1.632000px;}
._2{width:1.420800px;}
._21{width:2.521200px;}
._25{width:4.866000px;}
._27{width:6.222000px;}
._5b{width:8.211000px;}
._24{width:9.810000px;}
._46{width:10.932555px;}
._4{width:13.080000px;}
._b{width:14.550000px;}
._7{width:15.630000px;}
._5{width:16.680000px;}
._e{width:18.360000px;}
._5f{width:20.349000px;}
._5e{width:22.218001px;}
._5a{width:23.337000px;}
._5d{width:25.245000px;}
._5c{width:27.030000px;}
._59{width:29.121000px;}
._58{width:30.396000px;}
._10{width:36.567074px;}
._3{width:40.126481px;}
._17{width:48.714001px;}
._f{width:54.621000px;}
._15{width:65.394001px;}
._1c{width:70.326001px;}
._c{width:72.054001px;}
._9{width:74.160000px;}
._1e{width:79.980000px;}
._14{width:82.014001px;}
._30{width:83.589000px;}
._2b{width:84.851909px;}
._1a{width:102.054001px;}
._13{width:103.260000px;}
._37{width:109.089000px;}
._1d{width:120.000000px;}
._33{width:122.451000px;}
._2d{width:125.307000px;}
._4c{width:129.234000px;}
._19{width:130.260000px;}
._16{width:136.920000px;}
._1b{width:140.160000px;}
._4e{width:141.780000px;}
._31{width:143.309995px;}
._48{width:146.830808px;}
._34{width:147.951000px;}
._41{width:149.481000px;}
._4f{width:151.419000px;}
._a{width:153.600000px;}
._52{width:164.169000px;}
._54{width:169.626000px;}
._42{width:172.838983px;}
._38{width:174.063000px;}
._4a{width:176.919000px;}
._4d{width:189.516000px;}
._3a{width:198.951000px;}
._3f{width:202.266000px;}
._45{width:219.300000px;}
._3b{width:227.766000px;}
._29{width:240.106182px;}
._3c{width:253.572000px;}
._40{width:265.812000px;}
._43{width:274.278000px;}
._2c{width:285.039000px;}
._44{width:321.096000px;}
._35{width:323.034000px;}
._32{width:325.278000px;}
._51{width:326.757000px;}
._2e{width:330.072000px;}
._53{width:333.999000px;}
._39{width:346.596000px;}
._36{width:350.778000px;}
._56{width:359.397000px;}
._57{width:363.885000px;}
._3e{width:367.812000px;}
._2a{width:373.602007px;}
._2f{width:376.278000px;}
._3d{width:384.795000px;}
._55{width:388.212000px;}
._50{width:406.164000px;}
._4b{width:410.397000px;}
._47{width:516.141035px;}
._49{width:820.233000px;}
._12{width:1854.053961px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsd{font-size:30.453600px;}
.fs7{font-size:35.699999px;}
.fse{font-size:40.604399px;}
.fsc{font-size:40.605000px;}
.fs6{font-size:42.000000px;}
.fsb{font-size:42.010200px;}
.fs0{font-size:48.000000px;}
.fs2{font-size:51.000000px;}
.fs3{font-size:57.000000px;}
.fs5{font-size:60.000000px;}
.fsa{font-size:60.014997px;}
.fs9{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs1{font-size:90.000000px;}
.fs4{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.ybb{bottom:2.142151px;}
.y136{bottom:2.471741px;}
.yb5{bottom:3.945190px;}
.ybd{bottom:5.894897px;}
.yb8{bottom:5.894989px;}
.yba{bottom:17.897003px;}
.y2{bottom:68.547300px;}
.y1{bottom:68.829002px;}
.y19c{bottom:107.898445px;}
.y31{bottom:112.938300px;}
.y6f{bottom:113.415298px;}
.y182{bottom:113.683800px;}
.y120{bottom:113.683823px;}
.y144{bottom:114.124947px;}
.ye9{bottom:114.735146px;}
.yae{bottom:114.735306px;}
.y19a{bottom:114.874809px;}
.y104{bottom:114.874947px;}
.y27c{bottom:116.722946px;}
.y7c{bottom:118.032303px;}
.y206{bottom:122.345710px;}
.y27b{bottom:131.716946px;}
.y6e{bottom:132.165298px;}
.y181{bottom:132.433800px;}
.y11f{bottom:132.433823px;}
.y143{bottom:132.874947px;}
.y30{bottom:133.032303px;}
.ye8{bottom:133.485146px;}
.yad{bottom:133.485306px;}
.y199{bottom:133.624809px;}
.y103{bottom:133.624947px;}
.y3c{bottom:135.421500px;}
.y23a{bottom:136.816966px;}
.y205{bottom:137.339711px;}
.y27a{bottom:146.710946px;}
.y2f{bottom:150.485553px;}
.y6d{bottom:150.915298px;}
.y180{bottom:151.183800px;}
.y11e{bottom:151.183823px;}
.y142{bottom:151.624947px;}
.y239{bottom:151.810966px;}
.ye7{bottom:152.235146px;}
.yac{bottom:152.235306px;}
.y198{bottom:152.374809px;}
.y102{bottom:152.374947px;}
.y3b{bottom:155.515503px;}
.y279{bottom:161.704946px;}
.y238{bottom:166.804966px;}
.y6c{bottom:169.665298px;}
.y17f{bottom:169.933800px;}
.y11d{bottom:169.933823px;}
.y141{bottom:170.374947px;}
.y2e{bottom:170.579556px;}
.ye6{bottom:170.985146px;}
.y1de{bottom:170.985294px;}
.yab{bottom:170.985306px;}
.y204{bottom:171.050710px;}
.y197{bottom:171.124809px;}
.y101{bottom:171.124947px;}
.y3a{bottom:172.974753px;}
.y278{bottom:176.698946px;}
.y237{bottom:181.798966px;}
.y203{bottom:186.044711px;}
.y39{bottom:187.968753px;}
.y2d{bottom:188.032794px;}
.y6b{bottom:188.415298px;}
.y17e{bottom:188.683800px;}
.y11c{bottom:188.683823px;}
.y140{bottom:189.124947px;}
.ye5{bottom:189.735146px;}
.y1dd{bottom:189.735260px;}
.yaa{bottom:189.735306px;}
.y196{bottom:189.874809px;}
.y100{bottom:189.874947px;}
.y277{bottom:191.692946px;}
.y236{bottom:196.792966px;}
.y202{bottom:201.038710px;}
.y276{bottom:206.686946px;}
.y6a{bottom:207.165298px;}
.y17d{bottom:207.433800px;}
.y11b{bottom:207.433823px;}
.y13f{bottom:207.874947px;}
.y38{bottom:208.062744px;}
.y2c{bottom:208.126808px;}
.y1dc{bottom:208.485260px;}
.ya9{bottom:208.485306px;}
.y195{bottom:208.624809px;}
.yff{bottom:208.624947px;}
.y235{bottom:211.786966px;}
.y201{bottom:216.032711px;}
.y275{bottom:221.680946px;}
.y37{bottom:225.515995px;}
.y2b{bottom:225.580059px;}
.y69{bottom:225.915298px;}
.y17c{bottom:226.183800px;}
.y11a{bottom:226.183823px;}
.y13e{bottom:226.624947px;}
.y234{bottom:226.780966px;}
.ye4{bottom:227.235146px;}
.y1db{bottom:227.235260px;}
.ya8{bottom:227.235306px;}
.y194{bottom:227.374809px;}
.yfe{bottom:227.374947px;}
.y200{bottom:231.026711px;}
.y1a5{bottom:231.390351px;}
.y274{bottom:236.674946px;}
.y233{bottom:241.774966px;}
.y68{bottom:244.665298px;}
.y17b{bottom:244.933800px;}
.y119{bottom:244.933823px;}
.y36{bottom:245.610008px;}
.y2a{bottom:245.674049px;}
.y1da{bottom:245.985260px;}
.ya7{bottom:245.985306px;}
.y193{bottom:246.124809px;}
.yfd{bottom:246.124947px;}
.y1a4{bottom:250.642851px;}
.y273{bottom:251.668946px;}
.y232{bottom:256.768966px;}
.y35{bottom:263.063259px;}
.y29{bottom:263.127300px;}
.y67{bottom:263.415298px;}
.y17a{bottom:263.683800px;}
.y118{bottom:263.683823px;}
.ye3{bottom:264.735168px;}
.y1d9{bottom:264.735260px;}
.ya6{bottom:264.735306px;}
.y192{bottom:264.874809px;}
.yfc{bottom:264.874947px;}
.y1a3{bottom:265.636851px;}
.y272{bottom:266.662946px;}
.y231{bottom:271.762966px;}
.y148{bottom:274.625609px;}
.y271{bottom:281.656946px;}
.y66{bottom:282.165298px;}
.y179{bottom:282.433800px;}
.y117{bottom:282.433823px;}
.y34{bottom:283.157249px;}
.y28{bottom:283.221291px;}
.ye2{bottom:283.485168px;}
.y1d8{bottom:283.485260px;}
.ya5{bottom:283.485306px;}
.y191{bottom:283.624809px;}
.yfb{bottom:283.624947px;}
.y1a2{bottom:284.889351px;}
.y230{bottom:286.756966px;}
.y147{bottom:293.878109px;}
.y270{bottom:296.650946px;}
.y1a1{bottom:299.883351px;}
.y65{bottom:300.915298px;}
.y178{bottom:301.183800px;}
.y116{bottom:301.183823px;}
.y22f{bottom:301.750966px;}
.ye1{bottom:302.235168px;}
.y1d7{bottom:302.235260px;}
.ya4{bottom:302.235306px;}
.y190{bottom:302.374809px;}
.yfa{bottom:302.374947px;}
.y33{bottom:305.704491px;}
.y27{bottom:308.234392px;}
.y146{bottom:308.872109px;}
.y26f{bottom:311.644946px;}
.y1a0{bottom:314.877351px;}
.y22e{bottom:316.744966px;}
.y64{bottom:319.665298px;}
.y177{bottom:319.933800px;}
.y115{bottom:319.933823px;}
.ye0{bottom:320.985168px;}
.y1d6{bottom:320.985260px;}
.ya3{bottom:320.985306px;}
.y18f{bottom:321.124809px;}
.y26{bottom:323.228392px;}
.y26e{bottom:326.638946px;}
.y32{bottom:328.251755px;}
.y22d{bottom:331.738966px;}
.y171{bottom:337.634655px;}
.y63{bottom:338.415298px;}
.y176{bottom:338.683800px;}
.y114{bottom:338.683823px;}
.ydf{bottom:339.735168px;}
.y1d5{bottom:339.735260px;}
.ya2{bottom:339.735306px;}
.yf9{bottom:339.874809px;}
.y26d{bottom:341.632946px;}
.y1cc{bottom:342.890527px;}
.y22c{bottom:346.732966px;}
.y19e{bottom:349.041141px;}
.y25{bottom:354.045142px;}
.y170{bottom:356.428155px;}
.y26c{bottom:356.626946px;}
.y62{bottom:357.165298px;}
.y175{bottom:357.433800px;}
.y113{bottom:357.433823px;}
.yde{bottom:358.485168px;}
.y1d4{bottom:358.485260px;}
.ya1{bottom:358.485306px;}
.y18e{bottom:358.624809px;}
.y1cb{bottom:361.684027px;}
.y22b{bottom:361.726966px;}
.y19d{bottom:364.035141px;}
.y22{bottom:366.211395px;}
.y24{bottom:369.039142px;}
.y26b{bottom:371.620946px;}
.y16f{bottom:375.145155px;}
.y61{bottom:375.915298px;}
.y112{bottom:376.183823px;}
.y22a{bottom:376.720966px;}
.ydd{bottom:377.235168px;}
.y1d3{bottom:377.235260px;}
.ya0{bottom:377.235306px;}
.yf8{bottom:377.374809px;}
.y1ca{bottom:380.401027px;}
.y23{bottom:384.033142px;}
.y21{bottom:384.961395px;}
.y2a8{bottom:386.506823px;}
.y26a{bottom:386.614946px;}
.y229{bottom:391.714966px;}
.y16e{bottom:393.862155px;}
.y60{bottom:394.665298px;}
.y111{bottom:394.933823px;}
.ydc{bottom:395.985168px;}
.y1d2{bottom:395.985260px;}
.y9f{bottom:395.985306px;}
.y1c9{bottom:399.118027px;}
.y2a7{bottom:401.500823px;}
.y269{bottom:401.608946px;}
.y20{bottom:403.711395px;}
.y16d{bottom:412.579155px;}
.y5f{bottom:413.415298px;}
.y110{bottom:413.683823px;}
.ydb{bottom:414.735168px;}
.y1d1{bottom:414.735260px;}
.y1ff{bottom:414.735306px;}
.y18d{bottom:414.874786px;}
.y2a6{bottom:416.494823px;}
.y268{bottom:416.602946px;}
.y1c8{bottom:417.835027px;}
.y1f{bottom:422.461395px;}
.y228{bottom:425.464966px;}
.y16c{bottom:431.296155px;}
.y2a5{bottom:431.488823px;}
.y267{bottom:431.596946px;}
.y5e{bottom:432.165298px;}
.y10f{bottom:432.433823px;}
.yda{bottom:433.485168px;}
.y1d0{bottom:433.485260px;}
.y9e{bottom:433.485306px;}
.yf7{bottom:433.624786px;}
.y1c7{bottom:436.552027px;}
.y1e{bottom:441.211395px;}
.y2a4{bottom:446.482823px;}
.y266{bottom:446.590946px;}
.y16b{bottom:450.013155px;}
.y5d{bottom:450.915298px;}
.y174{bottom:451.183823px;}
.yd9{bottom:452.235168px;}
.y1cf{bottom:452.235260px;}
.yf6{bottom:452.374786px;}
.y1c6{bottom:455.269027px;}
.y2d2{bottom:460.903057px;}
.y2a3{bottom:461.476823px;}
.y265{bottom:461.584946px;}
.y16a{bottom:468.730155px;}
.y5c{bottom:469.665298px;}
.y10e{bottom:469.933823px;}
.yd8{bottom:470.985168px;}
.y9d{bottom:470.985260px;}
.y1fe{bottom:470.985306px;}
.y18c{bottom:471.118778px;}
.yf5{bottom:471.124786px;}
.y1c5{bottom:473.986027px;}
.y2d1{bottom:475.897057px;}
.y2a2{bottom:476.470823px;}
.y264{bottom:476.578946px;}
.y1d{bottom:478.711395px;}
.y169{bottom:487.447155px;}
.y5b{bottom:488.415298px;}
.y173{bottom:488.683823px;}
.yd7{bottom:489.735168px;}
.y9c{bottom:489.735260px;}
.y18b{bottom:489.868778px;}
.yf4{bottom:489.874786px;}
.y227{bottom:491.441716px;}
.y2a1{bottom:491.464823px;}
.y263{bottom:491.572946px;}
.y1c4{bottom:492.703027px;}
.y168{bottom:506.164155px;}
.y226{bottom:506.435716px;}
.y2a0{bottom:506.458823px;}
.y262{bottom:506.566946px;}
.y2d0{bottom:506.739307px;}
.y5a{bottom:507.165298px;}
.y10d{bottom:507.433823px;}
.yd6{bottom:508.485168px;}
.y9b{bottom:508.485260px;}
.y18a{bottom:508.618778px;}
.yf3{bottom:508.624786px;}
.y1c3{bottom:511.420027px;}
.y1c{bottom:516.211395px;}
.y225{bottom:521.429716px;}
.y29f{bottom:521.452823px;}
.y261{bottom:521.560946px;}
.y2cf{bottom:521.733307px;}
.y167{bottom:524.881155px;}
.y59{bottom:525.915298px;}
.y10c{bottom:526.183823px;}
.y9a{bottom:527.235260px;}
.y1fd{bottom:527.235294px;}
.y189{bottom:527.368778px;}
.yf2{bottom:527.374786px;}
.y1c2{bottom:530.137027px;}
.y1b{bottom:534.961395px;}
.y224{bottom:536.423716px;}
.y29e{bottom:536.446823px;}
.y260{bottom:536.554946px;}
.y2ce{bottom:536.727307px;}
.y166{bottom:543.598155px;}
.y58{bottom:544.665298px;}
.y10b{bottom:544.933823px;}
.yd5{bottom:545.985168px;}
.y99{bottom:545.985260px;}
.y1fc{bottom:545.985294px;}
.y188{bottom:546.118778px;}
.yf1{bottom:546.124786px;}
.y1c1{bottom:548.854027px;}
.y223{bottom:551.417716px;}
.y29d{bottom:551.440823px;}
.y25f{bottom:551.548946px;}
.y2cd{bottom:551.721307px;}
.y1a{bottom:553.711395px;}
.y165{bottom:562.315155px;}
.y57{bottom:563.415298px;}
.y10a{bottom:563.683823px;}
.y98{bottom:564.735260px;}
.y1fb{bottom:564.735294px;}
.y187{bottom:564.868778px;}
.yf0{bottom:564.874786px;}
.y222{bottom:566.411716px;}
.y29c{bottom:566.434823px;}
.y25e{bottom:566.542946px;}
.y2cc{bottom:566.715307px;}
.y1c0{bottom:567.571027px;}
.y19{bottom:572.461395px;}
.y164{bottom:581.032155px;}
.y29b{bottom:581.428823px;}
.y25d{bottom:581.536946px;}
.y2cb{bottom:581.709307px;}
.y56{bottom:582.165298px;}
.y109{bottom:582.433823px;}
.yd4{bottom:583.485168px;}
.y97{bottom:583.485260px;}
.y1fa{bottom:583.485294px;}
.y186{bottom:583.618778px;}
.yef{bottom:583.624786px;}
.y1bf{bottom:586.288027px;}
.y18{bottom:591.211395px;}
.y29a{bottom:596.422823px;}
.y25c{bottom:596.530946px;}
.y2ca{bottom:596.703307px;}
.y163{bottom:599.749155px;}
.y55{bottom:600.915298px;}
.y108{bottom:601.183823px;}
.yd3{bottom:602.235168px;}
.y96{bottom:602.235260px;}
.y1f9{bottom:602.235294px;}
.y185{bottom:602.368778px;}
.yee{bottom:602.374786px;}
.y1be{bottom:605.005027px;}
.y221{bottom:607.606966px;}
.y17{bottom:609.961395px;}
.y299{bottom:611.416823px;}
.y25b{bottom:611.524946px;}
.y2c9{bottom:611.697307px;}
.y162{bottom:618.466155px;}
.y54{bottom:619.665298px;}
.y107{bottom:619.933823px;}
.yd2{bottom:620.985168px;}
.y95{bottom:620.985260px;}
.y1f8{bottom:620.985294px;}
.y184{bottom:621.118778px;}
.yed{bottom:621.124786px;}
.y220{bottom:622.600966px;}
.y1bd{bottom:623.722027px;}
.y298{bottom:626.410823px;}
.y25a{bottom:626.518946px;}
.y2c8{bottom:626.691307px;}
.y16{bottom:628.711395px;}
.y161{bottom:637.183155px;}
.y21f{bottom:637.594966px;}
.y53{bottom:638.415298px;}
.y172{bottom:638.683823px;}
.yd1{bottom:639.735168px;}
.y94{bottom:639.735260px;}
.y1f7{bottom:639.735294px;}
.y183{bottom:639.868778px;}
.yec{bottom:639.874786px;}
.y297{bottom:641.404823px;}
.y259{bottom:641.512946px;}
.y2c7{bottom:641.685307px;}
.y1bc{bottom:642.439027px;}
.y15{bottom:647.461395px;}
.y21e{bottom:652.588966px;}
.y160{bottom:655.900155px;}
.y296{bottom:656.398823px;}
.y258{bottom:656.506946px;}
.y2c6{bottom:656.679307px;}
.y52{bottom:657.165298px;}
.y106{bottom:657.439823px;}
.yd0{bottom:658.485168px;}
.y93{bottom:658.485260px;}
.y1f6{bottom:658.485294px;}
.yeb{bottom:658.624786px;}
.y1bb{bottom:661.156027px;}
.y14{bottom:666.211395px;}
.y21d{bottom:667.582966px;}
.y295{bottom:671.392823px;}
.y257{bottom:671.500946px;}
.y2c5{bottom:671.673307px;}
.y15f{bottom:674.617155px;}
.y51{bottom:675.915298px;}
.y105{bottom:676.183823px;}
.ycf{bottom:677.235168px;}
.y92{bottom:677.235260px;}
.y1f5{bottom:677.235294px;}
.yea{bottom:677.374786px;}
.y1ba{bottom:679.873027px;}
.y21c{bottom:682.576966px;}
.y13{bottom:684.961395px;}
.y294{bottom:686.386823px;}
.y256{bottom:686.494946px;}
.y2c4{bottom:686.667307px;}
.y15e{bottom:693.334155px;}
.y50{bottom:694.665298px;}
.yce{bottom:695.985168px;}
.y91{bottom:695.985260px;}
.y1f4{bottom:695.985294px;}
.y19b{bottom:697.848770px;}
.y1b9{bottom:698.590027px;}
.y293{bottom:701.380823px;}
.y255{bottom:701.488946px;}
.y2c3{bottom:701.661307px;}
.y12{bottom:703.711395px;}
.y15d{bottom:712.051155px;}
.y21b{bottom:712.539466px;}
.y4f{bottom:713.415298px;}
.ycd{bottom:714.735168px;}
.y90{bottom:714.735260px;}
.y1f3{bottom:714.735294px;}
.y292{bottom:716.374823px;}
.y254{bottom:716.482946px;}
.y2c2{bottom:716.655307px;}
.y1b8{bottom:717.307027px;}
.y11{bottom:722.461395px;}
.y21a{bottom:727.533466px;}
.y15c{bottom:730.768155px;}
.y291{bottom:731.368823px;}
.y253{bottom:731.476946px;}
.y2c1{bottom:731.649307px;}
.y13a{bottom:731.983027px;}
.y4e{bottom:732.165298px;}
.y7b{bottom:732.165344px;}
.ycc{bottom:733.485168px;}
.y8f{bottom:733.485260px;}
.y1f2{bottom:733.485294px;}
.y1b7{bottom:736.024027px;}
.y10{bottom:741.211395px;}
.y219{bottom:742.527466px;}
.y290{bottom:746.362823px;}
.y252{bottom:746.470946px;}
.y2c0{bottom:746.643307px;}
.y139{bottom:746.977027px;}
.y13d{bottom:746.989777px;}
.y15b{bottom:749.485155px;}
.y4d{bottom:750.915298px;}
.y7a{bottom:750.915344px;}
.ycb{bottom:752.235168px;}
.y8e{bottom:752.235260px;}
.y1f1{bottom:752.235294px;}
.y1b6{bottom:754.741027px;}
.yf{bottom:759.961395px;}
.y28f{bottom:761.356823px;}
.y251{bottom:761.464946px;}
.y2bf{bottom:761.637307px;}
.y138{bottom:761.971027px;}
.y13c{bottom:761.983777px;}
.y15a{bottom:768.202155px;}
.y79{bottom:769.665344px;}
.yca{bottom:770.985168px;}
.y8d{bottom:770.985260px;}
.y1f0{bottom:770.985294px;}
.y1b5{bottom:773.458027px;}
.y218{bottom:776.277466px;}
.y28e{bottom:776.350823px;}
.y250{bottom:776.458946px;}
.y2be{bottom:776.631307px;}
.y137{bottom:776.965027px;}
.y13b{bottom:776.977777px;}
.ye{bottom:778.711395px;}
.y159{bottom:786.919155px;}
.y4c{bottom:788.415344px;}
.yc9{bottom:789.735168px;}
.y8c{bottom:789.735260px;}
.y1ef{bottom:789.735294px;}
.y28d{bottom:791.344823px;}
.y24f{bottom:791.452946px;}
.y2bd{bottom:791.625307px;}
.y1b4{bottom:792.175027px;}
.yd{bottom:797.461395px;}
.y158{bottom:805.636155px;}
.y28c{bottom:806.338823px;}
.y24e{bottom:806.446946px;}
.y2bc{bottom:806.619307px;}
.y78{bottom:807.165344px;}
.yc8{bottom:808.485168px;}
.y8b{bottom:808.485260px;}
.y1ee{bottom:808.485294px;}
.y1b3{bottom:810.892027px;}
.y135{bottom:812.039978px;}
.y217{bottom:813.886823px;}
.yc{bottom:816.211395px;}
.y28b{bottom:821.332823px;}
.y24d{bottom:821.440946px;}
.y2bb{bottom:821.613307px;}
.y157{bottom:824.353155px;}
.y77{bottom:825.915344px;}
.yc7{bottom:827.235168px;}
.y8a{bottom:827.235260px;}
.y1ed{bottom:827.235294px;}
.y216{bottom:828.880823px;}
.y1b2{bottom:829.609027px;}
.y134{bottom:832.781045px;}
.y28a{bottom:836.326823px;}
.y24c{bottom:836.434946px;}
.y2ba{bottom:836.607307px;}
.y131{bottom:841.635429px;}
.y12f{bottom:841.665882px;}
.y156{bottom:843.070155px;}
.y215{bottom:843.874823px;}
.y4b{bottom:844.665344px;}
.yc6{bottom:845.985168px;}
.y1ce{bottom:845.985260px;}
.y1ec{bottom:845.985294px;}
.y1b1{bottom:848.326027px;}
.y130{bottom:850.520267px;}
.y12e{bottom:850.550720px;}
.y289{bottom:851.320823px;}
.y24b{bottom:851.428946px;}
.y2b9{bottom:851.601307px;}
.y214{bottom:858.868823px;}
.yb{bottom:860.394153px;}
.y155{bottom:861.787155px;}
.y4a{bottom:863.415344px;}
.yc5{bottom:864.735168px;}
.y89{bottom:864.735260px;}
.y1eb{bottom:864.735294px;}
.y288{bottom:866.314823px;}
.y24a{bottom:866.422946px;}
.y2b8{bottom:866.595307px;}
.y1b0{bottom:867.043027px;}
.y213{bottom:873.862823px;}
.ya{bottom:875.388153px;}
.y154{bottom:880.504155px;}
.y287{bottom:881.308823px;}
.y249{bottom:881.416946px;}
.y2b7{bottom:881.589307px;}
.y49{bottom:882.165344px;}
.y76{bottom:882.171344px;}
.yc4{bottom:883.485168px;}
.y1cd{bottom:883.485260px;}
.y1ea{bottom:883.485294px;}
.y1af{bottom:885.760027px;}
.y212{bottom:888.856823px;}
.y133{bottom:892.515018px;}
.y124{bottom:894.912501px;}
.y286{bottom:896.302823px;}
.y248{bottom:896.410946px;}
.y2b6{bottom:896.583307px;}
.y153{bottom:899.221155px;}
.y48{bottom:900.915344px;}
.yc3{bottom:902.235168px;}
.y88{bottom:902.235260px;}
.y1e9{bottom:902.235294px;}
.y1ae{bottom:904.477027px;}
.y121{bottom:904.570221px;}
.y285{bottom:911.296823px;}
.y247{bottom:911.404946px;}
.y2b5{bottom:911.577307px;}
.y132{bottom:916.624237px;}
.y152{bottom:917.938155px;}
.y9{bottom:917.988190px;}
.y47{bottom:919.665344px;}
.y125{bottom:920.399506px;}
.yc2{bottom:920.985168px;}
.y87{bottom:920.985260px;}
.y1e8{bottom:920.985294px;}
.y211{bottom:922.567823px;}
.y1ad{bottom:923.194027px;}
.y284{bottom:926.290823px;}
.y246{bottom:926.398946px;}
.y2b4{bottom:926.571307px;}
.y151{bottom:936.655155px;}
.y8{bottom:936.738190px;}
.y210{bottom:937.561823px;}
.y12c{bottom:938.372681px;}
.y46{bottom:938.415344px;}
.yc1{bottom:939.735168px;}
.y86{bottom:939.735260px;}
.y1e7{bottom:939.735294px;}
.y283{bottom:941.284823px;}
.y245{bottom:941.392946px;}
.y2b3{bottom:941.565307px;}
.y1ac{bottom:941.911027px;}
.y20f{bottom:952.555823px;}
.y150{bottom:955.372155px;}
.y282{bottom:956.278823px;}
.y244{bottom:956.386946px;}
.y2b2{bottom:956.559307px;}
.y45{bottom:957.165344px;}
.yc0{bottom:958.485168px;}
.y85{bottom:958.485260px;}
.y1e6{bottom:958.485294px;}
.y1ab{bottom:960.628027px;}
.y20e{bottom:967.549823px;}
.y281{bottom:971.272823px;}
.y243{bottom:971.380946px;}
.y2b1{bottom:971.553307px;}
.y14f{bottom:974.089155px;}
.y1aa{bottom:975.622027px;}
.y44{bottom:975.915344px;}
.ybf{bottom:977.235168px;}
.y84{bottom:977.235260px;}
.y1e5{bottom:977.235294px;}
.y7{bottom:981.424622px;}
.y20d{bottom:982.543823px;}
.y280{bottom:986.266823px;}
.y242{bottom:986.374946px;}
.y2b0{bottom:986.547307px;}
.y126{bottom:987.553619px;}
.yb7{bottom:990.098968px;}
.y14e{bottom:992.806155px;}
.y1a9{bottom:994.339027px;}
.y75{bottom:994.665298px;}
.y43{bottom:994.665344px;}
.ybe{bottom:995.985168px;}
.y83{bottom:995.985260px;}
.y1e4{bottom:995.985294px;}
.ybc{bottom:995.993866px;}
.yb9{bottom:995.993958px;}
.y20c{bottom:997.537823px;}
.y27f{bottom:1001.260823px;}
.y12b{bottom:1001.295805px;}
.y241{bottom:1001.368946px;}
.y2af{bottom:1001.541307px;}
.y6{bottom:1008.424622px;}
.y12a{bottom:1010.180643px;}
.yb4{bottom:1010.792999px;}
.y20b{bottom:1012.531823px;}
.y1a8{bottom:1013.056027px;}
.y74{bottom:1013.415298px;}
.y42{bottom:1013.415344px;}
.yb6{bottom:1014.735168px;}
.y82{bottom:1014.735260px;}
.y1e3{bottom:1014.735294px;}
.yb3{bottom:1014.735306px;}
.y27e{bottom:1016.254823px;}
.y240{bottom:1016.362946px;}
.y2ae{bottom:1016.535307px;}
.y14d{bottom:1020.154905px;}
.y129{bottom:1024.448154px;}
.y27d{bottom:1031.248823px;}
.y23f{bottom:1031.356946px;}
.y2ad{bottom:1031.529307px;}
.y1a7{bottom:1031.773027px;}
.y73{bottom:1032.165298px;}
.y41{bottom:1032.165344px;}
.y128{bottom:1033.332992px;}
.y81{bottom:1033.485260px;}
.y1e2{bottom:1033.485294px;}
.yb2{bottom:1033.485306px;}
.y127{bottom:1042.217830px;}
.y14b{bottom:1044.571155px;}
.y20a{bottom:1046.242823px;}
.y23e{bottom:1046.350946px;}
.y2ac{bottom:1046.523307px;}
.y72{bottom:1050.915298px;}
.y40{bottom:1050.915344px;}
.y80{bottom:1052.235260px;}
.y1e1{bottom:1052.235294px;}
.yb1{bottom:1052.235306px;}
.y14a{bottom:1059.565155px;}
.y1a6{bottom:1059.861277px;}
.y14c{bottom:1059.871155px;}
.y209{bottom:1061.236823px;}
.y23d{bottom:1061.344946px;}
.y2ab{bottom:1061.517307px;}
.y12d{bottom:1066.227674px;}
.y71{bottom:1069.665298px;}
.y3f{bottom:1069.665344px;}
.y7f{bottom:1070.985260px;}
.y1e0{bottom:1070.985294px;}
.yb0{bottom:1070.985306px;}
.y19f{bottom:1075.108844px;}
.y5{bottom:1076.132080px;}
.y208{bottom:1076.230823px;}
.y23c{bottom:1076.338946px;}
.y2aa{bottom:1076.511307px;}
.y149{bottom:1084.277527px;}
.y123{bottom:1086.913239px;}
.y122{bottom:1086.917118px;}
.y70{bottom:1088.415298px;}
.y3e{bottom:1088.415344px;}
.y7e{bottom:1089.735260px;}
.y1df{bottom:1089.735294px;}
.yaf{bottom:1089.735306px;}
.y145{bottom:1090.102844px;}
.y207{bottom:1091.224823px;}
.y23b{bottom:1091.332946px;}
.y2a9{bottom:1091.505307px;}
.y4{bottom:1109.586556px;}
.y3{bottom:1126.582306px;}
.y3d{bottom:1127.482361px;}
.y7d{bottom:1127.482544px;}
.h17{height:3.960990px;}
.h13{height:13.800000px;}
.h19{height:15.748499px;}
.h15{height:18.900000px;}
.h1b{height:22.170221px;}
.h1c{height:29.560440px;}
.h1d{height:29.600607px;}
.h1a{height:29.601045px;}
.he{height:31.630199px;}
.h14{height:39.189793px;}
.h2{height:42.048000px;}
.h16{height:42.610648px;}
.h4{height:44.676000px;}
.hd{height:45.186000px;}
.hc{height:49.113000px;}
.h1f{height:52.173000px;}
.ha{height:53.160000px;}
.h20{height:53.805000px;}
.h3{height:54.862258px;}
.h5{height:55.404000px;}
.h9{height:57.780000px;}
.h8{height:59.340000px;}
.h11{height:61.211817px;}
.h12{height:61.212000px;}
.h21{height:61.212183px;}
.hb{height:61.380000px;}
.h10{height:64.680000px;}
.h7{height:64.824000px;}
.h18{height:66.978934px;}
.hf{height:71.208000px;}
.h6{height:92.448000px;}
.h1e{height:287.625000px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w2{width:8.220000px;}
.w4{width:10.050000px;}
.w3{width:153.870003px;}
.w5{width:739.841995px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:46.744080px;}
.x3{left:76.535402px;}
.x9{left:78.746400px;}
.x11{left:83.207565px;}
.x4{left:85.181849px;}
.xa{left:93.530392px;}
.x7{left:97.796100px;}
.x34{left:102.048152px;}
.x1a{left:128.761654px;}
.x13{left:147.683578px;}
.x1b{left:156.479404px;}
.x2b{left:199.183050px;}
.x18{left:228.305635px;}
.x2c{left:267.874652px;}
.x32{left:272.388920px;}
.x33{left:276.914571px;}
.x23{left:285.928047px;}
.x24{left:287.831360px;}
.x19{left:290.921539px;}
.x1f{left:358.453343px;}
.x2d{left:375.850639px;}
.x25{left:384.565314px;}
.x26{left:396.617090px;}
.x5{left:459.200493px;}
.xf{left:472.340836px;}
.xb{left:476.221311px;}
.x8{left:480.466799px;}
.x35{left:484.739406px;}
.x27{left:488.011185px;}
.x28{left:489.280072px;}
.x29{left:492.452682px;}
.x2a{left:494.355995px;}
.x17{left:507.044678px;}
.x6{left:512.750493px;}
.x2e{left:542.618414px;}
.x12{left:558.781357px;}
.x21{left:578.162567px;}
.x22{left:583.877636px;}
.x2f{left:602.628891px;}
.x14{left:613.361389px;}
.x30{left:686.011642px;}
.x15{left:693.380997px;}
.x16{left:703.709106px;}
.x1d{left:715.508560px;}
.x20{left:718.362111px;}
.x1{left:728.220612px;}
.x1e{left:735.263535px;}
.x1c{left:753.232089px;}
.x2{left:755.489868px;}
.xd{left:763.639481px;}
.x31{left:769.396642px;}
.xe{left:772.231842px;}
.xc{left:804.265686px;}
@media print{
.v3{vertical-align:-21.333333pt;}
.v6{vertical-align:-19.138396pt;}
.v2{vertical-align:-18.133301pt;}
.v4{vertical-align:-13.343750pt;}
.v7{vertical-align:-1.088000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.333333pt;}
.v5{vertical-align:56.015951pt;}
.ls45{letter-spacing:-1.976100pt;}
.ls46{letter-spacing:-1.001585pt;}
.ls4b{letter-spacing:-0.680000pt;}
.ls44{letter-spacing:-0.649680pt;}
.ls55{letter-spacing:-0.634667pt;}
.ls43{letter-spacing:-0.426667pt;}
.ls2a{letter-spacing:-0.373333pt;}
.ls7b{letter-spacing:-0.362667pt;}
.ls2b{letter-spacing:-0.320000pt;}
.ls81{letter-spacing:-0.317333pt;}
.ls82{letter-spacing:-0.272000pt;}
.ls11{letter-spacing:-0.266667pt;}
.ls78{letter-spacing:-0.226667pt;}
.ls10{letter-spacing:-0.213333pt;}
.ls79{letter-spacing:-0.181333pt;}
.ls2d{letter-spacing:-0.160000pt;}
.ls76{letter-spacing:-0.136000pt;}
.ls29{letter-spacing:-0.106667pt;}
.ls5f{letter-spacing:-0.090667pt;}
.ls2c{letter-spacing:-0.053333pt;}
.ls77{letter-spacing:-0.045333pt;}
.lsf{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.000033pt;}
.ls67{letter-spacing:0.022667pt;}
.lsa{letter-spacing:0.026667pt;}
.ls5e{letter-spacing:0.045333pt;}
.lsb{letter-spacing:0.053333pt;}
.ls5c{letter-spacing:0.068000pt;}
.ls3c{letter-spacing:0.074667pt;}
.ls69{letter-spacing:0.090667pt;}
.ls58{letter-spacing:0.105632pt;}
.ls1b{letter-spacing:0.106667pt;}
.ls1f{letter-spacing:0.117333pt;}
.ls3e{letter-spacing:0.133312pt;}
.ls64{letter-spacing:0.136000pt;}
.lsc{letter-spacing:0.158926pt;}
.ls16{letter-spacing:0.160000pt;}
.ls22{letter-spacing:0.165320pt;}
.ls7c{letter-spacing:0.181333pt;}
.ls39{letter-spacing:0.186523pt;}
.ls50{letter-spacing:0.186667pt;}
.ls1{letter-spacing:0.213333pt;}
.ls17{letter-spacing:0.218654pt;}
.ls53{letter-spacing:0.218667pt;}
.lsd{letter-spacing:0.226667pt;}
.ls66{letter-spacing:0.234667pt;}
.ls6b{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.266667pt;}
.ls13{letter-spacing:0.271990pt;}
.ls38{letter-spacing:0.271992pt;}
.ls3d{letter-spacing:0.272000pt;}
.ls52{letter-spacing:0.293333pt;}
.ls5a{letter-spacing:0.317333pt;}
.ls3{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.330667pt;}
.ls65{letter-spacing:0.362667pt;}
.ls1d{letter-spacing:0.373333pt;}
.ls47{letter-spacing:0.400000pt;}
.ls5b{letter-spacing:0.408000pt;}
.ls12{letter-spacing:0.426667pt;}
.ls56{letter-spacing:0.453333pt;}
.ls8{letter-spacing:0.480000pt;}
.ls68{letter-spacing:0.498667pt;}
.ls33{letter-spacing:0.533333pt;}
.ls62{letter-spacing:0.544000pt;}
.ls41{letter-spacing:0.549333pt;}
.ls4{letter-spacing:0.586667pt;}
.ls61{letter-spacing:0.589333pt;}
.ls4f{letter-spacing:0.597333pt;}
.ls2f{letter-spacing:0.613324pt;}
.ls6f{letter-spacing:0.634667pt;}
.ls1e{letter-spacing:0.640000pt;}
.ls5{letter-spacing:0.640098pt;}
.ls6a{letter-spacing:0.657333pt;}
.ls57{letter-spacing:0.666667pt;}
.ls60{letter-spacing:0.680000pt;}
.ls26{letter-spacing:0.693333pt;}
.ls63{letter-spacing:0.725333pt;}
.ls6{letter-spacing:0.746667pt;}
.ls7e{letter-spacing:0.748000pt;}
.ls5d{letter-spacing:0.770667pt;}
.ls19{letter-spacing:0.773333pt;}
.ls2e{letter-spacing:0.800000pt;}
.ls3b{letter-spacing:0.805320pt;}
.ls40{letter-spacing:0.805333pt;}
.ls21{letter-spacing:0.808268pt;}
.ls3f{letter-spacing:0.810667pt;}
.ls80{letter-spacing:0.816000pt;}
.ls1c{letter-spacing:0.826667pt;}
.ls23{letter-spacing:0.853333pt;}
.ls70{letter-spacing:0.861333pt;}
.ls59{letter-spacing:0.880000pt;}
.ls18{letter-spacing:0.906667pt;}
.ls74{letter-spacing:0.952000pt;}
.ls25{letter-spacing:0.960000pt;}
.ls6c{letter-spacing:0.997333pt;}
.ls24{letter-spacing:1.013333pt;}
.ls7a{letter-spacing:1.042667pt;}
.ls51{letter-spacing:1.066659pt;}
.ls9{letter-spacing:1.066667pt;}
.ls14{letter-spacing:1.120000pt;}
.ls75{letter-spacing:1.133333pt;}
.ls4e{letter-spacing:1.152533pt;}
.ls20{letter-spacing:1.173333pt;}
.ls1a{letter-spacing:1.226667pt;}
.ls7{letter-spacing:1.242667pt;}
.ls7d{letter-spacing:1.269333pt;}
.ls31{letter-spacing:1.280000pt;}
.ls6e{letter-spacing:1.314667pt;}
.ls34{letter-spacing:1.333333pt;}
.ls30{letter-spacing:1.386667pt;}
.ls32{letter-spacing:1.440000pt;}
.ls27{letter-spacing:1.493333pt;}
.ls4d{letter-spacing:1.504000pt;}
.ls73{letter-spacing:1.586667pt;}
.ls7f{letter-spacing:1.632000pt;}
.ls54{letter-spacing:1.653333pt;}
.ls72{letter-spacing:1.677333pt;}
.ls71{letter-spacing:1.722667pt;}
.ls6d{letter-spacing:1.813333pt;}
.ls4c{letter-spacing:2.186667pt;}
.ls37{letter-spacing:2.641300pt;}
.ls0{letter-spacing:3.546667pt;}
.ls28{letter-spacing:11.333333pt;}
.ls36{letter-spacing:11.842960pt;}
.ls35{letter-spacing:11.896306pt;}
.ls3a{letter-spacing:14.830373pt;}
.ls49{letter-spacing:112.336000pt;}
.ls48{letter-spacing:120.042667pt;}
.ls4a{letter-spacing:325.720000pt;}
.ls42{letter-spacing:1156.749497pt;}
.ws3f{word-spacing:-14.883719pt;}
.ws9{word-spacing:-13.600000pt;}
.ws1b{word-spacing:-13.333333pt;}
.wsa7{word-spacing:-13.184000pt;}
.ws86{word-spacing:-13.120000pt;}
.ws1a{word-spacing:-12.928000pt;}
.wsc6{word-spacing:-12.194667pt;}
.wsa8{word-spacing:-11.560000pt;}
.ws17{word-spacing:-11.333333pt;}
.ws52{word-spacing:-11.093333pt;}
.ws1c{word-spacing:-11.088000pt;}
.ws2{word-spacing:-11.040000pt;}
.ws4{word-spacing:-10.986667pt;}
.ws6{word-spacing:-10.720000pt;}
.ws92{word-spacing:-10.698667pt;}
.ws75{word-spacing:-10.653333pt;}
.ws5{word-spacing:-10.453333pt;}
.ws7{word-spacing:-10.266667pt;}
.ws8{word-spacing:-10.240000pt;}
.ws79{word-spacing:-9.930667pt;}
.ws7b{word-spacing:-9.520000pt;}
.ws7a{word-spacing:-9.408000pt;}
.ws5f{word-spacing:-9.384267pt;}
.ws1d{word-spacing:-9.333333pt;}
.ws99{word-spacing:-9.021333pt;}
.ws1{word-spacing:-8.885333pt;}
.wsa6{word-spacing:-8.749333pt;}
.ws0{word-spacing:-8.362667pt;}
.wsa{word-spacing:-7.933333pt;}
.ws3{word-spacing:-7.728000pt;}
.ws11{word-spacing:-6.666667pt;}
.ws78{word-spacing:-5.666667pt;}
.ws60{word-spacing:-5.549323pt;}
.wsb{word-spacing:-1.680000pt;}
.ws56{word-spacing:-1.386667pt;}
.ws14{word-spacing:-1.333333pt;}
.ws66{word-spacing:-1.280000pt;}
.ws9d{word-spacing:-1.226667pt;}
.wsd0{word-spacing:-1.178667pt;}
.wsa3{word-spacing:-1.133333pt;}
.ws80{word-spacing:-1.120000pt;}
.wsd1{word-spacing:-1.088000pt;}
.ws5d{word-spacing:-1.066667pt;}
.ws1f{word-spacing:-1.013333pt;}
.wsae{word-spacing:-0.997333pt;}
.ws5c{word-spacing:-0.960000pt;}
.wsdc{word-spacing:-0.952000pt;}
.ws65{word-spacing:-0.906667pt;}
.wsb2{word-spacing:-0.861333pt;}
.ws59{word-spacing:-0.853333pt;}
.wsd7{word-spacing:-0.816000pt;}
.ws49{word-spacing:-0.800000pt;}
.ws31{word-spacing:-0.746667pt;}
.ws1e{word-spacing:-0.693333pt;}
.ws10{word-spacing:-0.640000pt;}
.wsb0{word-spacing:-0.634667pt;}
.ws7f{word-spacing:-0.586667pt;}
.ws19{word-spacing:-0.544000pt;}
.ws87{word-spacing:-0.533333pt;}
.wsd{word-spacing:-0.506667pt;}
.ws4a{word-spacing:-0.480000pt;}
.wsaf{word-spacing:-0.453333pt;}
.ws2f{word-spacing:-0.426667pt;}
.wsc7{word-spacing:-0.408000pt;}
.ws20{word-spacing:-0.373333pt;}
.ws53{word-spacing:-0.320000pt;}
.ws21{word-spacing:-0.266667pt;}
.wsb7{word-spacing:-0.226667pt;}
.ws16{word-spacing:-0.213333pt;}
.ws26{word-spacing:-0.160000pt;}
.wscb{word-spacing:-0.136000pt;}
.ws61{word-spacing:-0.106667pt;}
.ws3e{word-spacing:-0.053347pt;}
.ws27{word-spacing:-0.053333pt;}
.wsc{word-spacing:0.000000pt;}
.wsb4{word-spacing:0.045333pt;}
.ws25{word-spacing:0.053333pt;}
.wsa9{word-spacing:0.090667pt;}
.ws84{word-spacing:0.106667pt;}
.wsc0{word-spacing:0.136000pt;}
.ws2b{word-spacing:0.160000pt;}
.ws15{word-spacing:0.213333pt;}
.ws5e{word-spacing:0.266667pt;}
.wsc2{word-spacing:0.272000pt;}
.ws36{word-spacing:0.320000pt;}
.wsd3{word-spacing:0.362667pt;}
.ws62{word-spacing:0.373333pt;}
.wsb5{word-spacing:0.408000pt;}
.ws3d{word-spacing:0.426667pt;}
.wsad{word-spacing:0.453333pt;}
.wsb3{word-spacing:0.498667pt;}
.ws37{word-spacing:0.533333pt;}
.ws97{word-spacing:0.544000pt;}
.ws40{word-spacing:0.586667pt;}
.wsdd{word-spacing:0.589333pt;}
.wsbd{word-spacing:0.680000pt;}
.ws94{word-spacing:0.693333pt;}
.wscf{word-spacing:0.725333pt;}
.ws5b{word-spacing:0.746667pt;}
.ws9b{word-spacing:0.800000pt;}
.wsa5{word-spacing:0.861333pt;}
.ws68{word-spacing:0.906667pt;}
.ws54{word-spacing:0.960000pt;}
.ws69{word-spacing:1.001585pt;}
.ws13{word-spacing:1.013333pt;}
.ws6e{word-spacing:1.042667pt;}
.ws2a{word-spacing:1.066667pt;}
.wsc8{word-spacing:1.088000pt;}
.wse{word-spacing:1.120000pt;}
.wsa2{word-spacing:1.133333pt;}
.ws34{word-spacing:1.173333pt;}
.ws24{word-spacing:1.226667pt;}
.ws23{word-spacing:1.280000pt;}
.wsab{word-spacing:1.314667pt;}
.wsf{word-spacing:1.333333pt;}
.ws7c{word-spacing:1.386667pt;}
.ws93{word-spacing:1.440000pt;}
.wsc1{word-spacing:1.450667pt;}
.ws83{word-spacing:1.493333pt;}
.ws98{word-spacing:1.496000pt;}
.wsb6{word-spacing:1.541333pt;}
.ws3b{word-spacing:1.546667pt;}
.ws6b{word-spacing:1.586667pt;}
.ws9a{word-spacing:1.600000pt;}
.wsaa{word-spacing:1.632000pt;}
.wsbb{word-spacing:1.677333pt;}
.ws45{word-spacing:1.706667pt;}
.ws12{word-spacing:1.760000pt;}
.ws2e{word-spacing:1.813333pt;}
.ws6d{word-spacing:1.858667pt;}
.ws29{word-spacing:1.866667pt;}
.ws48{word-spacing:1.920000pt;}
.wsca{word-spacing:1.949333pt;}
.ws67{word-spacing:1.973333pt;}
.wsac{word-spacing:1.994667pt;}
.ws82{word-spacing:2.026667pt;}
.wsa4{word-spacing:2.040000pt;}
.ws4f{word-spacing:2.080000pt;}
.wsb8{word-spacing:2.085333pt;}
.wsbe{word-spacing:2.130667pt;}
.ws30{word-spacing:2.133333pt;}
.wsd4{word-spacing:2.176000pt;}
.ws50{word-spacing:2.186667pt;}
.ws5a{word-spacing:2.240000pt;}
.wscc{word-spacing:2.266667pt;}
.ws35{word-spacing:2.293333pt;}
.ws81{word-spacing:2.346667pt;}
.ws58{word-spacing:2.400000pt;}
.wsdb{word-spacing:2.402667pt;}
.ws28{word-spacing:2.453333pt;}
.ws4e{word-spacing:2.506667pt;}
.ws76{word-spacing:2.560000pt;}
.wsc9{word-spacing:2.584000pt;}
.ws38{word-spacing:2.613333pt;}
.ws55{word-spacing:2.720000pt;}
.ws88{word-spacing:2.765333pt;}
.ws3a{word-spacing:2.773333pt;}
.ws77{word-spacing:2.810667pt;}
.ws4b{word-spacing:2.826667pt;}
.wsd2{word-spacing:2.856000pt;}
.ws7e{word-spacing:2.880000pt;}
.ws39{word-spacing:2.933333pt;}
.ws64{word-spacing:2.986667pt;}
.wsc5{word-spacing:2.992000pt;}
.ws4c{word-spacing:3.040000pt;}
.wsd9{word-spacing:3.082667pt;}
.ws63{word-spacing:3.093333pt;}
.ws9c{word-spacing:3.146667pt;}
.ws43{word-spacing:3.200000pt;}
.wsb9{word-spacing:3.218667pt;}
.wsbc{word-spacing:3.354667pt;}
.wsce{word-spacing:3.400000pt;}
.ws6a{word-spacing:3.445333pt;}
.ws85{word-spacing:3.466667pt;}
.wsc4{word-spacing:3.490667pt;}
.ws47{word-spacing:3.520000pt;}
.ws4d{word-spacing:3.573333pt;}
.ws22{word-spacing:3.626667pt;}
.wsc3{word-spacing:3.672000pt;}
.ws2c{word-spacing:3.680000pt;}
.ws57{word-spacing:3.733333pt;}
.ws32{word-spacing:3.786667pt;}
.ws33{word-spacing:3.840000pt;}
.wsa0{word-spacing:3.893333pt;}
.ws41{word-spacing:3.946667pt;}
.wscd{word-spacing:4.034667pt;}
.ws9e{word-spacing:4.053333pt;}
.wsa1{word-spacing:4.160000pt;}
.ws2d{word-spacing:4.213333pt;}
.ws44{word-spacing:4.480000pt;}
.wsd8{word-spacing:4.578667pt;}
.ws51{word-spacing:4.586667pt;}
.wsd5{word-spacing:4.714667pt;}
.wsbf{word-spacing:4.850667pt;}
.ws42{word-spacing:4.960000pt;}
.ws46{word-spacing:5.120000pt;}
.wsb1{word-spacing:5.168000pt;}
.ws3c{word-spacing:5.440000pt;}
.wsd6{word-spacing:6.165333pt;}
.ws9f{word-spacing:6.240000pt;}
.ws95{word-spacing:6.293333pt;}
.ws96{word-spacing:6.346667pt;}
.wsda{word-spacing:6.437333pt;}
.wsba{word-spacing:7.480000pt;}
.ws7d{word-spacing:9.066667pt;}
.ws6c{word-spacing:10.018667pt;}
.wsde{word-spacing:12.149333pt;}
.wsdf{word-spacing:15.821333pt;}
.ws71{word-spacing:62.968000pt;}
.ws18{word-spacing:64.237333pt;}
.ws73{word-spacing:85.634667pt;}
.ws8b{word-spacing:95.245326pt;}
.ws70{word-spacing:97.512000pt;}
.ws8d{word-spacing:100.594667pt;}
.ws8a{word-spacing:114.693333pt;}
.ws72{word-spacing:120.178667pt;}
.ws74{word-spacing:205.813333pt;}
.ws6f{word-spacing:228.480000pt;}
.ws91{word-spacing:259.941333pt;}
.ws8f{word-spacing:300.152000pt;}
.ws89{word-spacing:339.365333pt;}
.ws8c{word-spacing:398.797333pt;}
.ws8e{word-spacing:406.368000pt;}
.ws90{word-spacing:730.546667pt;}
._23{margin-left:-2630.557318pt;}
._11{margin-left:-43.066667pt;}
._60{margin-left:-16.501333pt;}
._d{margin-left:-14.733333pt;}
._18{margin-left:-13.221335pt;}
._8{margin-left:-12.152800pt;}
._26{margin-left:-10.917333pt;}
._61{margin-left:-9.792000pt;}
._22{margin-left:-8.842667pt;}
._6{margin-left:-7.321600pt;}
._28{margin-left:-6.400008pt;}
._20{margin-left:-5.470933pt;}
._1f{margin-left:-4.490667pt;}
._1{margin-left:-2.679200pt;}
._0{margin-left:-1.450667pt;}
._2{width:1.262933pt;}
._21{width:2.241067pt;}
._25{width:4.325333pt;}
._27{width:5.530667pt;}
._5b{width:7.298667pt;}
._24{width:8.720000pt;}
._46{width:9.717827pt;}
._4{width:11.626667pt;}
._b{width:12.933333pt;}
._7{width:13.893333pt;}
._5{width:14.826667pt;}
._e{width:16.320000pt;}
._5f{width:18.088000pt;}
._5e{width:19.749335pt;}
._5a{width:20.744000pt;}
._5d{width:22.440000pt;}
._5c{width:24.026667pt;}
._59{width:25.885333pt;}
._58{width:27.018667pt;}
._10{width:32.504066pt;}
._3{width:35.667983pt;}
._17{width:43.301335pt;}
._f{width:48.552000pt;}
._15{width:58.128001pt;}
._1c{width:62.512001pt;}
._c{width:64.048001pt;}
._9{width:65.920000pt;}
._1e{width:71.093333pt;}
._14{width:72.901335pt;}
._30{width:74.301333pt;}
._2b{width:75.423919pt;}
._1a{width:90.714668pt;}
._13{width:91.786667pt;}
._37{width:96.968000pt;}
._1d{width:106.666667pt;}
._33{width:108.845333pt;}
._2d{width:111.384000pt;}
._4c{width:114.874667pt;}
._19{width:115.786667pt;}
._16{width:121.706667pt;}
._1b{width:124.586667pt;}
._4e{width:126.026667pt;}
._31{width:127.386662pt;}
._48{width:130.516274pt;}
._34{width:131.512000pt;}
._41{width:132.872000pt;}
._4f{width:134.594667pt;}
._a{width:136.533333pt;}
._52{width:145.928000pt;}
._54{width:150.778667pt;}
._42{width:153.634652pt;}
._38{width:154.722667pt;}
._4a{width:157.261333pt;}
._4d{width:168.458667pt;}
._3a{width:176.845333pt;}
._3f{width:179.792000pt;}
._45{width:194.933333pt;}
._3b{width:202.458667pt;}
._29{width:213.427718pt;}
._3c{width:225.397333pt;}
._40{width:236.277333pt;}
._43{width:243.802667pt;}
._2c{width:253.368000pt;}
._44{width:285.418667pt;}
._35{width:287.141333pt;}
._32{width:289.136000pt;}
._51{width:290.450667pt;}
._2e{width:293.397333pt;}
._53{width:296.888000pt;}
._39{width:308.085333pt;}
._36{width:311.802667pt;}
._56{width:319.464000pt;}
._57{width:323.453333pt;}
._3e{width:326.944000pt;}
._2a{width:332.090673pt;}
._2f{width:334.469333pt;}
._3d{width:342.040000pt;}
._55{width:345.077333pt;}
._50{width:361.034667pt;}
._4b{width:364.797333pt;}
._47{width:458.792031pt;}
._49{width:729.096000pt;}
._12{width:1648.047965pt;}
.fsd{font-size:27.069867pt;}
.fs7{font-size:31.733332pt;}
.fse{font-size:36.092799pt;}
.fsc{font-size:36.093333pt;}
.fs6{font-size:37.333333pt;}
.fsb{font-size:37.342400pt;}
.fs0{font-size:42.666667pt;}
.fs2{font-size:45.333333pt;}
.fs3{font-size:50.666667pt;}
.fs5{font-size:53.333333pt;}
.fsa{font-size:53.346664pt;}
.fs9{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:80.000000pt;}
.fs4{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.ybb{bottom:1.904134pt;}
.y136{bottom:2.197103pt;}
.yb5{bottom:3.506836pt;}
.ybd{bottom:5.239909pt;}
.yb8{bottom:5.239990pt;}
.yba{bottom:15.908447pt;}
.y2{bottom:60.930933pt;}
.y1{bottom:61.181335pt;}
.y19c{bottom:95.909729pt;}
.y31{bottom:100.389600pt;}
.y6f{bottom:100.813599pt;}
.y182{bottom:101.052266pt;}
.y120{bottom:101.052287pt;}
.y144{bottom:101.444397pt;}
.ye9{bottom:101.986796pt;}
.yae{bottom:101.986938pt;}
.y19a{bottom:102.110942pt;}
.y104{bottom:102.111064pt;}
.y27c{bottom:103.753729pt;}
.y7c{bottom:104.917603pt;}
.y206{bottom:108.751743pt;}
.y27b{bottom:117.081729pt;}
.y6e{bottom:117.480265pt;}
.y181{bottom:117.718933pt;}
.y11f{bottom:117.718953pt;}
.y143{bottom:118.111064pt;}
.y30{bottom:118.250936pt;}
.ye8{bottom:118.653463pt;}
.yad{bottom:118.653605pt;}
.y199{bottom:118.777608pt;}
.y103{bottom:118.777730pt;}
.y3c{bottom:120.374667pt;}
.y23a{bottom:121.615081pt;}
.y205{bottom:122.079743pt;}
.y27a{bottom:130.409729pt;}
.y2f{bottom:133.764936pt;}
.y6d{bottom:134.146932pt;}
.y180{bottom:134.385600pt;}
.y11e{bottom:134.385620pt;}
.y142{bottom:134.777730pt;}
.y239{bottom:134.943081pt;}
.ye7{bottom:135.320129pt;}
.yac{bottom:135.320272pt;}
.y198{bottom:135.444275pt;}
.y102{bottom:135.444397pt;}
.y3b{bottom:138.236003pt;}
.y279{bottom:143.737729pt;}
.y238{bottom:148.271081pt;}
.y6c{bottom:150.813599pt;}
.y17f{bottom:151.052266pt;}
.y11d{bottom:151.052287pt;}
.y141{bottom:151.444397pt;}
.y2e{bottom:151.626272pt;}
.ye6{bottom:151.986796pt;}
.y1de{bottom:151.986928pt;}
.yab{bottom:151.986938pt;}
.y204{bottom:152.045076pt;}
.y197{bottom:152.110942pt;}
.y101{bottom:152.111064pt;}
.y3a{bottom:153.755336pt;}
.y278{bottom:157.065729pt;}
.y237{bottom:161.599081pt;}
.y203{bottom:165.373076pt;}
.y39{bottom:167.083336pt;}
.y2d{bottom:167.140262pt;}
.y6b{bottom:167.480265pt;}
.y17e{bottom:167.718933pt;}
.y11c{bottom:167.718953pt;}
.y140{bottom:168.111064pt;}
.ye5{bottom:168.653463pt;}
.y1dd{bottom:168.653564pt;}
.yaa{bottom:168.653605pt;}
.y196{bottom:168.777608pt;}
.y100{bottom:168.777730pt;}
.y277{bottom:170.393729pt;}
.y236{bottom:174.927081pt;}
.y202{bottom:178.701076pt;}
.y276{bottom:183.721729pt;}
.y6a{bottom:184.146932pt;}
.y17d{bottom:184.385600pt;}
.y11b{bottom:184.385620pt;}
.y13f{bottom:184.777730pt;}
.y38{bottom:184.944661pt;}
.y2c{bottom:185.001607pt;}
.y1dc{bottom:185.320231pt;}
.ya9{bottom:185.320272pt;}
.y195{bottom:185.444275pt;}
.yff{bottom:185.444397pt;}
.y235{bottom:188.255081pt;}
.y201{bottom:192.029076pt;}
.y275{bottom:197.049729pt;}
.y37{bottom:200.458662pt;}
.y2b{bottom:200.515608pt;}
.y69{bottom:200.813599pt;}
.y17c{bottom:201.052266pt;}
.y11a{bottom:201.052287pt;}
.y13e{bottom:201.444397pt;}
.y234{bottom:201.583081pt;}
.ye4{bottom:201.986796pt;}
.y1db{bottom:201.986898pt;}
.ya8{bottom:201.986938pt;}
.y194{bottom:202.110942pt;}
.yfe{bottom:202.111064pt;}
.y200{bottom:205.357076pt;}
.y1a5{bottom:205.680312pt;}
.y274{bottom:210.377729pt;}
.y233{bottom:214.911081pt;}
.y68{bottom:217.480265pt;}
.y17b{bottom:217.718933pt;}
.y119{bottom:217.718953pt;}
.y36{bottom:218.320007pt;}
.y2a{bottom:218.376933pt;}
.y1da{bottom:218.653564pt;}
.ya7{bottom:218.653605pt;}
.y193{bottom:218.777608pt;}
.yfd{bottom:218.777730pt;}
.y1a4{bottom:222.793646pt;}
.y273{bottom:223.705729pt;}
.y232{bottom:228.239081pt;}
.y35{bottom:233.834008pt;}
.y29{bottom:233.890933pt;}
.y67{bottom:234.146932pt;}
.y17a{bottom:234.385600pt;}
.y118{bottom:234.385620pt;}
.ye3{bottom:235.320150pt;}
.y1d9{bottom:235.320231pt;}
.ya6{bottom:235.320272pt;}
.y192{bottom:235.444275pt;}
.yfc{bottom:235.444397pt;}
.y1a3{bottom:236.121646pt;}
.y272{bottom:237.033729pt;}
.y231{bottom:241.567081pt;}
.y148{bottom:244.111653pt;}
.y271{bottom:250.361729pt;}
.y66{bottom:250.813599pt;}
.y179{bottom:251.052266pt;}
.y117{bottom:251.052287pt;}
.y34{bottom:251.695333pt;}
.y28{bottom:251.752258pt;}
.ye2{bottom:251.986816pt;}
.y1d8{bottom:251.986898pt;}
.ya5{bottom:251.986938pt;}
.y191{bottom:252.110942pt;}
.yfb{bottom:252.111064pt;}
.y1a2{bottom:253.234979pt;}
.y230{bottom:254.895081pt;}
.y147{bottom:261.224986pt;}
.y270{bottom:263.689729pt;}
.y1a1{bottom:266.562979pt;}
.y65{bottom:267.480265pt;}
.y178{bottom:267.718933pt;}
.y116{bottom:267.718953pt;}
.y22f{bottom:268.223081pt;}
.ye1{bottom:268.653483pt;}
.y1d7{bottom:268.653564pt;}
.ya4{bottom:268.653605pt;}
.y190{bottom:268.777608pt;}
.yfa{bottom:268.777730pt;}
.y33{bottom:271.737325pt;}
.y27{bottom:273.986126pt;}
.y146{bottom:274.552986pt;}
.y26f{bottom:277.017729pt;}
.y1a0{bottom:279.890979pt;}
.y22e{bottom:281.551081pt;}
.y64{bottom:284.146932pt;}
.y177{bottom:284.385600pt;}
.y115{bottom:284.385620pt;}
.ye0{bottom:285.320150pt;}
.y1d6{bottom:285.320231pt;}
.ya3{bottom:285.320272pt;}
.y18f{bottom:285.444275pt;}
.y26{bottom:287.314126pt;}
.y26e{bottom:290.345729pt;}
.y32{bottom:291.779338pt;}
.y22d{bottom:294.879081pt;}
.y171{bottom:300.119693pt;}
.y63{bottom:300.813599pt;}
.y176{bottom:301.052266pt;}
.y114{bottom:301.052287pt;}
.ydf{bottom:301.986816pt;}
.y1d5{bottom:301.986898pt;}
.ya2{bottom:301.986938pt;}
.yf9{bottom:302.110942pt;}
.y26d{bottom:303.673729pt;}
.y1cc{bottom:304.791579pt;}
.y22c{bottom:308.207081pt;}
.y19e{bottom:310.258792pt;}
.y25{bottom:314.706793pt;}
.y170{bottom:316.825027pt;}
.y26c{bottom:317.001729pt;}
.y62{bottom:317.480265pt;}
.y175{bottom:317.718933pt;}
.y113{bottom:317.718953pt;}
.yde{bottom:318.653483pt;}
.y1d4{bottom:318.653564pt;}
.ya1{bottom:318.653605pt;}
.y18e{bottom:318.777608pt;}
.y1cb{bottom:321.496913pt;}
.y22b{bottom:321.535081pt;}
.y19d{bottom:323.586792pt;}
.y22{bottom:325.521240pt;}
.y24{bottom:328.034793pt;}
.y26b{bottom:330.329729pt;}
.y16f{bottom:333.462360pt;}
.y61{bottom:334.146932pt;}
.y112{bottom:334.385620pt;}
.y22a{bottom:334.863081pt;}
.ydd{bottom:335.320150pt;}
.y1d3{bottom:335.320231pt;}
.ya0{bottom:335.320272pt;}
.yf8{bottom:335.444275pt;}
.y1ca{bottom:338.134246pt;}
.y23{bottom:341.362793pt;}
.y21{bottom:342.187907pt;}
.y2a8{bottom:343.561620pt;}
.y26a{bottom:343.657729pt;}
.y229{bottom:348.191081pt;}
.y16e{bottom:350.099693pt;}
.y60{bottom:350.813599pt;}
.y111{bottom:351.052287pt;}
.ydc{bottom:351.986816pt;}
.y1d2{bottom:351.986898pt;}
.y9f{bottom:351.986938pt;}
.y1c9{bottom:354.771579pt;}
.y2a7{bottom:356.889620pt;}
.y269{bottom:356.985729pt;}
.y20{bottom:358.854574pt;}
.y16d{bottom:366.737027pt;}
.y5f{bottom:367.480265pt;}
.y110{bottom:367.718953pt;}
.ydb{bottom:368.653483pt;}
.y1d1{bottom:368.653564pt;}
.y1ff{bottom:368.653605pt;}
.y18d{bottom:368.777588pt;}
.y2a6{bottom:370.217620pt;}
.y268{bottom:370.313729pt;}
.y1c8{bottom:371.408913pt;}
.y1f{bottom:375.521240pt;}
.y228{bottom:378.191081pt;}
.y16c{bottom:383.374360pt;}
.y2a5{bottom:383.545620pt;}
.y267{bottom:383.641729pt;}
.y5e{bottom:384.146932pt;}
.y10f{bottom:384.385620pt;}
.yda{bottom:385.320150pt;}
.y1d0{bottom:385.320231pt;}
.y9e{bottom:385.320272pt;}
.yf7{bottom:385.444255pt;}
.y1c7{bottom:388.046246pt;}
.y1e{bottom:392.187907pt;}
.y2a4{bottom:396.873620pt;}
.y266{bottom:396.969729pt;}
.y16b{bottom:400.011693pt;}
.y5d{bottom:400.813599pt;}
.y174{bottom:401.052287pt;}
.yd9{bottom:401.986816pt;}
.y1cf{bottom:401.986898pt;}
.yf6{bottom:402.110921pt;}
.y1c6{bottom:404.683579pt;}
.y2d2{bottom:409.691606pt;}
.y2a3{bottom:410.201620pt;}
.y265{bottom:410.297729pt;}
.y16a{bottom:416.649027pt;}
.y5c{bottom:417.480265pt;}
.y10e{bottom:417.718953pt;}
.yd8{bottom:418.653483pt;}
.y9d{bottom:418.653564pt;}
.y1fe{bottom:418.653605pt;}
.y18c{bottom:418.772247pt;}
.yf5{bottom:418.777588pt;}
.y1c5{bottom:421.320913pt;}
.y2d1{bottom:423.019606pt;}
.y2a2{bottom:423.529620pt;}
.y264{bottom:423.625729pt;}
.y1d{bottom:425.521240pt;}
.y169{bottom:433.286360pt;}
.y5b{bottom:434.146932pt;}
.y173{bottom:434.385620pt;}
.yd7{bottom:435.320150pt;}
.y9c{bottom:435.320231pt;}
.y18b{bottom:435.438914pt;}
.yf4{bottom:435.444255pt;}
.y227{bottom:436.837081pt;}
.y2a1{bottom:436.857620pt;}
.y263{bottom:436.953729pt;}
.y1c4{bottom:437.958246pt;}
.y168{bottom:449.923693pt;}
.y226{bottom:450.165081pt;}
.y2a0{bottom:450.185620pt;}
.y262{bottom:450.281729pt;}
.y2d0{bottom:450.434939pt;}
.y5a{bottom:450.813599pt;}
.y10d{bottom:451.052287pt;}
.yd6{bottom:451.986816pt;}
.y9b{bottom:451.986898pt;}
.y18a{bottom:452.105581pt;}
.yf3{bottom:452.110921pt;}
.y1c3{bottom:454.595579pt;}
.y1c{bottom:458.854574pt;}
.y225{bottom:463.493081pt;}
.y29f{bottom:463.513620pt;}
.y261{bottom:463.609729pt;}
.y2cf{bottom:463.762939pt;}
.y167{bottom:466.561027pt;}
.y59{bottom:467.480265pt;}
.y10c{bottom:467.718953pt;}
.y9a{bottom:468.653564pt;}
.y1fd{bottom:468.653595pt;}
.y189{bottom:468.772247pt;}
.yf2{bottom:468.777588pt;}
.y1c2{bottom:471.232913pt;}
.y1b{bottom:475.521240pt;}
.y224{bottom:476.821081pt;}
.y29e{bottom:476.841620pt;}
.y260{bottom:476.937729pt;}
.y2ce{bottom:477.090939pt;}
.y166{bottom:483.198360pt;}
.y58{bottom:484.146932pt;}
.y10b{bottom:484.385620pt;}
.yd5{bottom:485.320150pt;}
.y99{bottom:485.320231pt;}
.y1fc{bottom:485.320262pt;}
.y188{bottom:485.438914pt;}
.yf1{bottom:485.444255pt;}
.y1c1{bottom:487.870246pt;}
.y223{bottom:490.149081pt;}
.y29d{bottom:490.169620pt;}
.y25f{bottom:490.265729pt;}
.y2cd{bottom:490.418939pt;}
.y1a{bottom:492.187907pt;}
.y165{bottom:499.835693pt;}
.y57{bottom:500.813599pt;}
.y10a{bottom:501.052287pt;}
.y98{bottom:501.986898pt;}
.y1fb{bottom:501.986928pt;}
.y187{bottom:502.105581pt;}
.yf0{bottom:502.110921pt;}
.y222{bottom:503.477081pt;}
.y29c{bottom:503.497620pt;}
.y25e{bottom:503.593729pt;}
.y2cc{bottom:503.746939pt;}
.y1c0{bottom:504.507579pt;}
.y19{bottom:508.854574pt;}
.y164{bottom:516.473027pt;}
.y29b{bottom:516.825620pt;}
.y25d{bottom:516.921729pt;}
.y2cb{bottom:517.074939pt;}
.y56{bottom:517.480265pt;}
.y109{bottom:517.718953pt;}
.yd4{bottom:518.653483pt;}
.y97{bottom:518.653564pt;}
.y1fa{bottom:518.653595pt;}
.y186{bottom:518.772247pt;}
.yef{bottom:518.777588pt;}
.y1bf{bottom:521.144913pt;}
.y18{bottom:525.521240pt;}
.y29a{bottom:530.153620pt;}
.y25c{bottom:530.249729pt;}
.y2ca{bottom:530.402939pt;}
.y163{bottom:533.110360pt;}
.y55{bottom:534.146932pt;}
.y108{bottom:534.385620pt;}
.yd3{bottom:535.320150pt;}
.y96{bottom:535.320231pt;}
.y1f9{bottom:535.320262pt;}
.y185{bottom:535.438914pt;}
.yee{bottom:535.444255pt;}
.y1be{bottom:537.782246pt;}
.y221{bottom:540.095081pt;}
.y17{bottom:542.187907pt;}
.y299{bottom:543.481620pt;}
.y25b{bottom:543.577729pt;}
.y2c9{bottom:543.730939pt;}
.y162{bottom:549.747693pt;}
.y54{bottom:550.813599pt;}
.y107{bottom:551.052287pt;}
.yd2{bottom:551.986816pt;}
.y95{bottom:551.986898pt;}
.y1f8{bottom:551.986928pt;}
.y184{bottom:552.105581pt;}
.yed{bottom:552.110921pt;}
.y220{bottom:553.423081pt;}
.y1bd{bottom:554.419579pt;}
.y298{bottom:556.809620pt;}
.y25a{bottom:556.905729pt;}
.y2c8{bottom:557.058939pt;}
.y16{bottom:558.854574pt;}
.y161{bottom:566.385027pt;}
.y21f{bottom:566.751081pt;}
.y53{bottom:567.480265pt;}
.y172{bottom:567.718953pt;}
.yd1{bottom:568.653483pt;}
.y94{bottom:568.653564pt;}
.y1f7{bottom:568.653595pt;}
.y183{bottom:568.772247pt;}
.yec{bottom:568.777588pt;}
.y297{bottom:570.137620pt;}
.y259{bottom:570.233729pt;}
.y2c7{bottom:570.386939pt;}
.y1bc{bottom:571.056913pt;}
.y15{bottom:575.521240pt;}
.y21e{bottom:580.079081pt;}
.y160{bottom:583.022360pt;}
.y296{bottom:583.465620pt;}
.y258{bottom:583.561729pt;}
.y2c6{bottom:583.714939pt;}
.y52{bottom:584.146932pt;}
.y106{bottom:584.390953pt;}
.yd0{bottom:585.320150pt;}
.y93{bottom:585.320231pt;}
.y1f6{bottom:585.320262pt;}
.yeb{bottom:585.444255pt;}
.y1bb{bottom:587.694246pt;}
.y14{bottom:592.187907pt;}
.y21d{bottom:593.407081pt;}
.y295{bottom:596.793620pt;}
.y257{bottom:596.889729pt;}
.y2c5{bottom:597.042939pt;}
.y15f{bottom:599.659693pt;}
.y51{bottom:600.813599pt;}
.y105{bottom:601.052287pt;}
.ycf{bottom:601.986816pt;}
.y92{bottom:601.986898pt;}
.y1f5{bottom:601.986928pt;}
.yea{bottom:602.110921pt;}
.y1ba{bottom:604.331579pt;}
.y21c{bottom:606.735081pt;}
.y13{bottom:608.854574pt;}
.y294{bottom:610.121620pt;}
.y256{bottom:610.217729pt;}
.y2c4{bottom:610.370939pt;}
.y15e{bottom:616.297027pt;}
.y50{bottom:617.480265pt;}
.yce{bottom:618.653483pt;}
.y91{bottom:618.653564pt;}
.y1f4{bottom:618.653595pt;}
.y19b{bottom:620.310018pt;}
.y1b9{bottom:620.968913pt;}
.y293{bottom:623.449620pt;}
.y255{bottom:623.545729pt;}
.y2c3{bottom:623.698939pt;}
.y12{bottom:625.521240pt;}
.y15d{bottom:632.934360pt;}
.y21b{bottom:633.368414pt;}
.y4f{bottom:634.146932pt;}
.ycd{bottom:635.320150pt;}
.y90{bottom:635.320231pt;}
.y1f3{bottom:635.320262pt;}
.y292{bottom:636.777620pt;}
.y254{bottom:636.873729pt;}
.y2c2{bottom:637.026939pt;}
.y1b8{bottom:637.606246pt;}
.y11{bottom:642.187907pt;}
.y21a{bottom:646.696414pt;}
.y15c{bottom:649.571693pt;}
.y291{bottom:650.105620pt;}
.y253{bottom:650.201729pt;}
.y2c1{bottom:650.354939pt;}
.y13a{bottom:650.651579pt;}
.y4e{bottom:650.813599pt;}
.y7b{bottom:650.813639pt;}
.ycc{bottom:651.986816pt;}
.y8f{bottom:651.986898pt;}
.y1f2{bottom:651.986928pt;}
.y1b7{bottom:654.243579pt;}
.y10{bottom:658.854574pt;}
.y219{bottom:660.024414pt;}
.y290{bottom:663.433620pt;}
.y252{bottom:663.529729pt;}
.y2c0{bottom:663.682939pt;}
.y139{bottom:663.979579pt;}
.y13d{bottom:663.990913pt;}
.y15b{bottom:666.209027pt;}
.y4d{bottom:667.480265pt;}
.y7a{bottom:667.480306pt;}
.ycb{bottom:668.653483pt;}
.y8e{bottom:668.653564pt;}
.y1f1{bottom:668.653595pt;}
.y1b6{bottom:670.880913pt;}
.yf{bottom:675.521240pt;}
.y28f{bottom:676.761620pt;}
.y251{bottom:676.857729pt;}
.y2bf{bottom:677.010939pt;}
.y138{bottom:677.307579pt;}
.y13c{bottom:677.318913pt;}
.y15a{bottom:682.846360pt;}
.y79{bottom:684.146973pt;}
.yca{bottom:685.320150pt;}
.y8d{bottom:685.320231pt;}
.y1f0{bottom:685.320262pt;}
.y1b5{bottom:687.518246pt;}
.y218{bottom:690.024414pt;}
.y28e{bottom:690.089620pt;}
.y250{bottom:690.185729pt;}
.y2be{bottom:690.338939pt;}
.y137{bottom:690.635579pt;}
.y13b{bottom:690.646913pt;}
.ye{bottom:692.187907pt;}
.y159{bottom:699.483693pt;}
.y4c{bottom:700.813639pt;}
.yc9{bottom:701.986816pt;}
.y8c{bottom:701.986898pt;}
.y1ef{bottom:701.986928pt;}
.y28d{bottom:703.417620pt;}
.y24f{bottom:703.513729pt;}
.y2bd{bottom:703.666939pt;}
.y1b4{bottom:704.155579pt;}
.yd{bottom:708.854574pt;}
.y158{bottom:716.121027pt;}
.y28c{bottom:716.745620pt;}
.y24e{bottom:716.841729pt;}
.y2bc{bottom:716.994939pt;}
.y78{bottom:717.480306pt;}
.yc8{bottom:718.653483pt;}
.y8b{bottom:718.653564pt;}
.y1ee{bottom:718.653595pt;}
.y1b3{bottom:720.792913pt;}
.y135{bottom:721.813314pt;}
.y217{bottom:723.454954pt;}
.yc{bottom:725.521240pt;}
.y28b{bottom:730.073620pt;}
.y24d{bottom:730.169729pt;}
.y2bb{bottom:730.322939pt;}
.y157{bottom:732.758360pt;}
.y77{bottom:734.146973pt;}
.yc7{bottom:735.320150pt;}
.y8a{bottom:735.320231pt;}
.y1ed{bottom:735.320262pt;}
.y216{bottom:736.782954pt;}
.y1b2{bottom:737.430246pt;}
.y134{bottom:740.249817pt;}
.y28a{bottom:743.401620pt;}
.y24c{bottom:743.497729pt;}
.y2ba{bottom:743.650939pt;}
.y131{bottom:748.120381pt;}
.y12f{bottom:748.147451pt;}
.y156{bottom:749.395693pt;}
.y215{bottom:750.110954pt;}
.y4b{bottom:750.813639pt;}
.yc6{bottom:751.986816pt;}
.y1ce{bottom:751.986898pt;}
.y1ec{bottom:751.986928pt;}
.y1b1{bottom:754.067579pt;}
.y130{bottom:756.018015pt;}
.y12e{bottom:756.045085pt;}
.y289{bottom:756.729620pt;}
.y24b{bottom:756.825729pt;}
.y2b9{bottom:756.978939pt;}
.y214{bottom:763.438954pt;}
.yb{bottom:764.794803pt;}
.y155{bottom:766.033027pt;}
.y4a{bottom:767.480306pt;}
.yc5{bottom:768.653483pt;}
.y89{bottom:768.653564pt;}
.y1eb{bottom:768.653595pt;}
.y288{bottom:770.057620pt;}
.y24a{bottom:770.153729pt;}
.y2b8{bottom:770.306939pt;}
.y1b0{bottom:770.704913pt;}
.y213{bottom:776.766954pt;}
.ya{bottom:778.122803pt;}
.y154{bottom:782.670360pt;}
.y287{bottom:783.385620pt;}
.y249{bottom:783.481729pt;}
.y2b7{bottom:783.634939pt;}
.y49{bottom:784.146973pt;}
.y76{bottom:784.152306pt;}
.yc4{bottom:785.320150pt;}
.y1cd{bottom:785.320231pt;}
.y1ea{bottom:785.320262pt;}
.y1af{bottom:787.342246pt;}
.y212{bottom:790.094954pt;}
.y133{bottom:793.346683pt;}
.y124{bottom:795.477778pt;}
.y286{bottom:796.713620pt;}
.y248{bottom:796.809729pt;}
.y2b6{bottom:796.962939pt;}
.y153{bottom:799.307693pt;}
.y48{bottom:800.813639pt;}
.yc3{bottom:801.986816pt;}
.y88{bottom:801.986898pt;}
.y1e9{bottom:801.986928pt;}
.y1ae{bottom:803.979579pt;}
.y121{bottom:804.062419pt;}
.y285{bottom:810.041620pt;}
.y247{bottom:810.137729pt;}
.y2b5{bottom:810.290939pt;}
.y132{bottom:814.777100pt;}
.y152{bottom:815.945027pt;}
.y9{bottom:815.989502pt;}
.y47{bottom:817.480306pt;}
.y125{bottom:818.132894pt;}
.yc2{bottom:818.653483pt;}
.y87{bottom:818.653564pt;}
.y1e8{bottom:818.653595pt;}
.y211{bottom:820.060287pt;}
.y1ad{bottom:820.616913pt;}
.y284{bottom:823.369620pt;}
.y246{bottom:823.465729pt;}
.y2b4{bottom:823.618939pt;}
.y151{bottom:832.582360pt;}
.y8{bottom:832.656169pt;}
.y210{bottom:833.388287pt;}
.y12c{bottom:834.109049pt;}
.y46{bottom:834.146973pt;}
.yc1{bottom:835.320150pt;}
.y86{bottom:835.320231pt;}
.y1e7{bottom:835.320262pt;}
.y283{bottom:836.697620pt;}
.y245{bottom:836.793729pt;}
.y2b3{bottom:836.946939pt;}
.y1ac{bottom:837.254246pt;}
.y20f{bottom:846.716287pt;}
.y150{bottom:849.219693pt;}
.y282{bottom:850.025620pt;}
.y244{bottom:850.121729pt;}
.y2b2{bottom:850.274939pt;}
.y45{bottom:850.813639pt;}
.yc0{bottom:851.986816pt;}
.y85{bottom:851.986898pt;}
.y1e6{bottom:851.986928pt;}
.y1ab{bottom:853.891579pt;}
.y20e{bottom:860.044287pt;}
.y281{bottom:863.353620pt;}
.y243{bottom:863.449729pt;}
.y2b1{bottom:863.602939pt;}
.y14f{bottom:865.857027pt;}
.y1aa{bottom:867.219579pt;}
.y44{bottom:867.480306pt;}
.ybf{bottom:868.653483pt;}
.y84{bottom:868.653564pt;}
.y1e5{bottom:868.653595pt;}
.y7{bottom:872.377441pt;}
.y20d{bottom:873.372287pt;}
.y280{bottom:876.681620pt;}
.y242{bottom:876.777729pt;}
.y2b0{bottom:876.930939pt;}
.y126{bottom:877.825439pt;}
.yb7{bottom:880.087972pt;}
.y14e{bottom:882.494360pt;}
.y1a9{bottom:883.856913pt;}
.y75{bottom:884.146932pt;}
.y43{bottom:884.146973pt;}
.ybe{bottom:885.320150pt;}
.y83{bottom:885.320231pt;}
.y1e4{bottom:885.320262pt;}
.ybc{bottom:885.327881pt;}
.yb9{bottom:885.327962pt;}
.y20c{bottom:886.700287pt;}
.y27f{bottom:890.009620pt;}
.y12b{bottom:890.040716pt;}
.y241{bottom:890.105729pt;}
.y2af{bottom:890.258939pt;}
.y6{bottom:896.377441pt;}
.y12a{bottom:897.938349pt;}
.yb4{bottom:898.482666pt;}
.y20b{bottom:900.028287pt;}
.y1a8{bottom:900.494246pt;}
.y74{bottom:900.813599pt;}
.y42{bottom:900.813639pt;}
.yb6{bottom:901.986816pt;}
.y82{bottom:901.986898pt;}
.y1e3{bottom:901.986928pt;}
.yb3{bottom:901.986938pt;}
.y27e{bottom:903.337620pt;}
.y240{bottom:903.433729pt;}
.y2ae{bottom:903.586939pt;}
.y14d{bottom:906.804360pt;}
.y129{bottom:910.620582pt;}
.y27d{bottom:916.665620pt;}
.y23f{bottom:916.761729pt;}
.y2ad{bottom:916.914939pt;}
.y1a7{bottom:917.131579pt;}
.y73{bottom:917.480265pt;}
.y41{bottom:917.480306pt;}
.y128{bottom:918.518215pt;}
.y81{bottom:918.653564pt;}
.y1e2{bottom:918.653595pt;}
.yb2{bottom:918.653605pt;}
.y127{bottom:926.415849pt;}
.y14b{bottom:928.507693pt;}
.y20a{bottom:929.993620pt;}
.y23e{bottom:930.089729pt;}
.y2ac{bottom:930.242939pt;}
.y72{bottom:934.146932pt;}
.y40{bottom:934.146973pt;}
.y80{bottom:935.320231pt;}
.y1e1{bottom:935.320262pt;}
.yb1{bottom:935.320272pt;}
.y14a{bottom:941.835693pt;}
.y1a6{bottom:942.098913pt;}
.y14c{bottom:942.107693pt;}
.y209{bottom:943.321620pt;}
.y23d{bottom:943.417729pt;}
.y2ab{bottom:943.570939pt;}
.y12d{bottom:947.757933pt;}
.y71{bottom:950.813599pt;}
.y3f{bottom:950.813639pt;}
.y7f{bottom:951.986898pt;}
.y1e0{bottom:951.986928pt;}
.yb0{bottom:951.986938pt;}
.y19f{bottom:955.652306pt;}
.y5{bottom:956.561849pt;}
.y208{bottom:956.649620pt;}
.y23c{bottom:956.745729pt;}
.y2aa{bottom:956.898939pt;}
.y149{bottom:963.802246pt;}
.y123{bottom:966.145101pt;}
.y122{bottom:966.148549pt;}
.y70{bottom:967.480265pt;}
.y3e{bottom:967.480306pt;}
.y7e{bottom:968.653564pt;}
.y1df{bottom:968.653595pt;}
.yaf{bottom:968.653605pt;}
.y145{bottom:968.980306pt;}
.y207{bottom:969.977620pt;}
.y23b{bottom:970.073729pt;}
.y2a9{bottom:970.226939pt;}
.y4{bottom:986.299161pt;}
.y3{bottom:1001.406494pt;}
.y3d{bottom:1002.206543pt;}
.y7d{bottom:1002.206706pt;}
.h17{height:3.520880pt;}
.h13{height:12.266666pt;}
.h19{height:13.998666pt;}
.h15{height:16.800000pt;}
.h1b{height:19.706863pt;}
.h1c{height:26.275947pt;}
.h1d{height:26.311650pt;}
.h1a{height:26.312040pt;}
.he{height:28.115732pt;}
.h14{height:34.835372pt;}
.h2{height:37.376000pt;}
.h16{height:37.876132pt;}
.h4{height:39.712000pt;}
.hd{height:40.165333pt;}
.hc{height:43.656000pt;}
.h1f{height:46.376000pt;}
.ha{height:47.253333pt;}
.h20{height:47.826667pt;}
.h3{height:48.766452pt;}
.h5{height:49.248000pt;}
.h9{height:51.360000pt;}
.h8{height:52.746667pt;}
.h11{height:54.410504pt;}
.h12{height:54.410667pt;}
.h21{height:54.410829pt;}
.hb{height:54.560000pt;}
.h10{height:57.493333pt;}
.h7{height:57.621333pt;}
.h18{height:59.536830pt;}
.hf{height:63.296000pt;}
.h6{height:82.176000pt;}
.h1e{height:255.666667pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w2{width:7.306667pt;}
.w4{width:8.933333pt;}
.w3{width:136.773336pt;}
.w5{width:657.637329pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:41.550293pt;}
.x3{left:68.031469pt;}
.x9{left:69.996800pt;}
.x11{left:73.962280pt;}
.x4{left:75.717199pt;}
.xa{left:83.138126pt;}
.x7{left:86.929867pt;}
.x34{left:90.709469pt;}
.x1a{left:114.454803pt;}
.x13{left:131.274292pt;}
.x1b{left:139.092804pt;}
.x2b{left:177.051600pt;}
.x18{left:202.938343pt;}
.x2c{left:238.110802pt;}
.x32{left:242.123484pt;}
.x33{left:246.146285pt;}
.x23{left:254.158264pt;}
.x24{left:255.850097pt;}
.x19{left:258.596924pt;}
.x1f{left:318.625194pt;}
.x2d{left:334.089457pt;}
.x25{left:341.835835pt;}
.x26{left:352.548525pt;}
.x5{left:408.178216pt;}
.xf{left:419.858521pt;}
.xb{left:423.307832pt;}
.x8{left:427.081599pt;}
.x35{left:430.879472pt;}
.x27{left:433.787720pt;}
.x28{left:434.915620pt;}
.x29{left:437.735718pt;}
.x2a{left:439.427551pt;}
.x17{left:450.706380pt;}
.x6{left:455.778216pt;}
.x2e{left:482.327479pt;}
.x12{left:496.694539pt;}
.x21{left:513.922282pt;}
.x22{left:519.002343pt;}
.x2f{left:535.670125pt;}
.x14{left:545.210124pt;}
.x30{left:609.788127pt;}
.x15{left:616.338664pt;}
.x16{left:625.519206pt;}
.x1d{left:636.007609pt;}
.x20{left:638.544098pt;}
.x1{left:647.307210pt;}
.x1e{left:653.567586pt;}
.x1c{left:669.539634pt;}
.x2{left:671.546549pt;}
.xd{left:678.790649pt;}
.x31{left:683.908127pt;}
.xe{left:686.428304pt;}
.xc{left:714.902832pt;}
}




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