
    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_8727f68df45df089cb148689.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006000;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_99a028ad7b8fff492fb1084a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_56f1ceef815eaabc103c840d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.825000;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_437e71a9c150eea2544ed189.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_888e89a8649ec5dd285a50ea.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.223000;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_0babb2c62da7937502e19a86.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.136000;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_0ca8876d1c0c29ad94954325.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_c1ffd4318afac189895f9785.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.924000;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_2a7254c74fb61d0ebb5fa2f9.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_8f82656af3759b0a658709ec.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_7a445b0b13641b5b0d1bcad1.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.711000;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_8c484ec3a042e0a5fb3bc535.woff2')format("woff");}.ffd{font-family:ffd;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;}
@font-face{font-family:ffe;src:url('chunks/assets/font_5e47957246af6424881c5f11.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.898000;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_34282bde38e54f6568376e1e.woff2')format("woff");}.fff{font-family:fff;line-height:1.144000;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_bca8ef77d0fc15d85fbab872.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.228000;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.249868,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249868,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249868,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250129,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250129,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250132,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250232,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);}
.v6{vertical-align:-49.693056px;}
.v5{vertical-align:-24.841928px;}
.v2{vertical-align:-20.400055px;}
.v4{vertical-align:-12.423264px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:12.423264px;}
.v7{vertical-align:20.373709px;}
.v1{vertical-align:24.000000px;}
.ls3d{letter-spacing:-3.677252px;}
.ls4f{letter-spacing:-2.280000px;}
.ls3a{letter-spacing:-2.160000px;}
.ls54{letter-spacing:-1.440000px;}
.ls4b{letter-spacing:-1.320000px;}
.ls48{letter-spacing:-1.260000px;}
.ls49{letter-spacing:-1.200000px;}
.ls4a{letter-spacing:-1.140000px;}
.ls42{letter-spacing:-1.040294px;}
.ls3c{letter-spacing:-0.900000px;}
.ls17{letter-spacing:-0.840000px;}
.ls3b{letter-spacing:-0.780000px;}
.ls50{letter-spacing:-0.720000px;}
.ls29{letter-spacing:-0.660000px;}
.ls28{letter-spacing:-0.600000px;}
.ls27{letter-spacing:-0.540000px;}
.ls2a{letter-spacing:-0.480000px;}
.ls18{letter-spacing:-0.420000px;}
.ls39{letter-spacing:-0.360000px;}
.ls7c{letter-spacing:-0.357000px;}
.ls80{letter-spacing:-0.306000px;}
.ls2b{letter-spacing:-0.300000px;}
.ls43{letter-spacing:-0.297227px;}
.ls7f{letter-spacing:-0.255000px;}
.ls2c{letter-spacing:-0.240000px;}
.ls7d{letter-spacing:-0.204000px;}
.ls14{letter-spacing:-0.180000px;}
.ls30{letter-spacing:-0.170377px;}
.lsa1{letter-spacing:-0.153000px;}
.ls15{letter-spacing:-0.120000px;}
.ls7e{letter-spacing:-0.102000px;}
.ls3e{letter-spacing:-0.099385px;}
.ls40{letter-spacing:-0.099076px;}
.ls2d{letter-spacing:-0.060000px;}
.ls81{letter-spacing:-0.051000px;}
.ls2f{letter-spacing:-0.044546px;}
.ls0{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.000037px;}
.lsd{letter-spacing:0.013184px;}
.ls38{letter-spacing:0.049538px;}
.ls5f{letter-spacing:0.051000px;}
.ls19{letter-spacing:0.060000px;}
.ls44{letter-spacing:0.099385px;}
.ls62{letter-spacing:0.102000px;}
.ls6{letter-spacing:0.120000px;}
.ls5c{letter-spacing:0.150000px;}
.ls6b{letter-spacing:0.153000px;}
.ls12{letter-spacing:0.178791px;}
.ls5{letter-spacing:0.180000px;}
.ls5d{letter-spacing:0.204000px;}
.ls10{letter-spacing:0.210000px;}
.ls84{letter-spacing:0.224400px;}
.ls86{letter-spacing:0.234600px;}
.ls92{letter-spacing:0.239677px;}
.ls2{letter-spacing:0.240000px;}
.ls11{letter-spacing:0.255000px;}
.ls5a{letter-spacing:0.270000px;}
.ls63{letter-spacing:0.288000px;}
.ls4{letter-spacing:0.300000px;}
.ls6e{letter-spacing:0.306000px;}
.ls5b{letter-spacing:0.330000px;}
.ls60{letter-spacing:0.357000px;}
.ls8{letter-spacing:0.360000px;}
.lsa8{letter-spacing:0.372285px;}
.ls4e{letter-spacing:0.390000px;}
.ls3f{letter-spacing:0.396302px;}
.ls64{letter-spacing:0.408000px;}
.ls9{letter-spacing:0.420000px;}
.ls57{letter-spacing:0.426636px;}
.ls61{letter-spacing:0.459000px;}
.ls1d{letter-spacing:0.480000px;}
.ls41{letter-spacing:0.495378px;}
.ls51{letter-spacing:0.510000px;}
.ls88{letter-spacing:0.515089px;}
.lsa0{letter-spacing:0.535500px;}
.lsc{letter-spacing:0.540000px;}
.ls47{letter-spacing:0.549133px;}
.ls66{letter-spacing:0.561000px;}
.ls1f{letter-spacing:0.570000px;}
.ls85{letter-spacing:0.586500px;}
.lsa{letter-spacing:0.600000px;}
.ls6f{letter-spacing:0.612000px;}
.ls31{letter-spacing:0.630000px;}
.lsb{letter-spacing:0.660000px;}
.ls83{letter-spacing:0.663000px;}
.ls6a{letter-spacing:0.688500px;}
.ls1b{letter-spacing:0.690000px;}
.ls75{letter-spacing:0.714000px;}
.lsf{letter-spacing:0.720000px;}
.ls87{letter-spacing:0.739500px;}
.ls68{letter-spacing:0.765000px;}
.ls7{letter-spacing:0.780000px;}
.ls69{letter-spacing:0.816000px;}
.ls21{letter-spacing:0.840000px;}
.ls99{letter-spacing:0.841500px;}
.ls46{letter-spacing:0.842372px;}
.ls6c{letter-spacing:0.867000px;}
.ls34{letter-spacing:0.870000px;}
.ls1e{letter-spacing:0.900000px;}
.ls74{letter-spacing:0.918000px;}
.lsaa{letter-spacing:0.943500px;}
.ls3{letter-spacing:0.960000px;}
.ls5e{letter-spacing:0.969000px;}
.ls71{letter-spacing:0.979193px;}
.ls1a{letter-spacing:1.020000px;}
.ls59{letter-spacing:1.050000px;}
.ls8a{letter-spacing:1.071000px;}
.lse{letter-spacing:1.080000px;}
.ls20{letter-spacing:1.110000px;}
.ls6d{letter-spacing:1.122000px;}
.ls37{letter-spacing:1.140000px;}
.ls56{letter-spacing:1.170000px;}
.ls78{letter-spacing:1.173000px;}
.ls1c{letter-spacing:1.200000px;}
.ls72{letter-spacing:1.224000px;}
.ls36{letter-spacing:1.260000px;}
.ls7b{letter-spacing:1.275000px;}
.lsa7{letter-spacing:1.300500px;}
.ls35{letter-spacing:1.320000px;}
.ls9a{letter-spacing:1.351500px;}
.ls8b{letter-spacing:1.377000px;}
.ls33{letter-spacing:1.380000px;}
.ls98{letter-spacing:1.428000px;}
.ls16{letter-spacing:1.440000px;}
.ls8c{letter-spacing:1.453500px;}
.ls58{letter-spacing:1.470000px;}
.ls93{letter-spacing:1.479000px;}
.ls32{letter-spacing:1.500000px;}
.ls55{letter-spacing:1.530000px;}
.ls4c{letter-spacing:1.560000px;}
.ls67{letter-spacing:1.581000px;}
.ls4d{letter-spacing:1.620000px;}
.ls8e{letter-spacing:1.632000px;}
.ls45{letter-spacing:1.680000px;}
.ls91{letter-spacing:1.683000px;}
.ls9b{letter-spacing:1.785000px;}
.ls70{letter-spacing:1.795164px;}
.ls65{letter-spacing:1.805380px;}
.ls95{letter-spacing:1.836000px;}
.ls52{letter-spacing:1.860000px;}
.ls90{letter-spacing:1.887000px;}
.ls53{letter-spacing:1.920000px;}
.ls9e{letter-spacing:1.963500px;}
.lsa2{letter-spacing:1.989000px;}
.ls77{letter-spacing:2.014500px;}
.ls89{letter-spacing:2.091000px;}
.ls9c{letter-spacing:2.142000px;}
.ls76{letter-spacing:2.193000px;}
.lsa5{letter-spacing:2.244000px;}
.ls73{letter-spacing:2.294980px;}
.ls8f{letter-spacing:2.483700px;}
.ls7a{letter-spacing:2.524500px;}
.lsa6{letter-spacing:2.667300px;}
.ls96{letter-spacing:2.764183px;}
.ls79{letter-spacing:2.784600px;}
.ls94{letter-spacing:2.881483px;}
.lsa9{letter-spacing:2.881484px;}
.ls97{letter-spacing:3.162000px;}
.lsab{letter-spacing:3.182389px;}
.ls82{letter-spacing:3.355791px;}
.lsa3{letter-spacing:3.621000px;}
.ls8d{letter-spacing:3.641374px;}
.ls1{letter-spacing:3.990000px;}
.ls9f{letter-spacing:6.324000px;}
.lsa4{letter-spacing:7.211400px;}
.ls9d{letter-spacing:7.782600px;}
.ls2e{letter-spacing:263.844155px;}
.ls26{letter-spacing:265.975948px;}
.ls23{letter-spacing:265.990951px;}
.ls24{letter-spacing:266.079694px;}
.ls25{letter-spacing:266.212800px;}
.ls22{letter-spacing:554.476882px;}
.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;}
}
.ws4a{word-spacing:-266.079694px;}
.ws4b{word-spacing:-263.844155px;}
.ws80{word-spacing:-16.500000px;}
.ws4d{word-spacing:-16.380000px;}
.wsa3{word-spacing:-16.080000px;}
.ws8e{word-spacing:-15.960000px;}
.ws7f{word-spacing:-15.900000px;}
.ws91{word-spacing:-15.840000px;}
.ws25{word-spacing:-15.720000px;}
.ws54{word-spacing:-15.600000px;}
.ws8c{word-spacing:-15.540000px;}
.ws8f{word-spacing:-15.480000px;}
.ws74{word-spacing:-15.360000px;}
.ws26{word-spacing:-15.300000px;}
.ws8d{word-spacing:-15.240000px;}
.ws55{word-spacing:-15.120000px;}
.ws24{word-spacing:-15.000000px;}
.ws27{word-spacing:-14.940000px;}
.ws81{word-spacing:-14.880000px;}
.wsab{word-spacing:-14.832000px;}
.ws6{word-spacing:-14.820000px;}
.wsd8{word-spacing:-14.739000px;}
.wsa4{word-spacing:-14.700000px;}
.ws90{word-spacing:-14.580000px;}
.ws8{word-spacing:-14.544000px;}
.wsd7{word-spacing:-14.433000px;}
.ws82{word-spacing:-14.400000px;}
.wsf6{word-spacing:-14.178000px;}
.wsad{word-spacing:-13.719000px;}
.wsd6{word-spacing:-13.464000px;}
.wsd5{word-spacing:-13.362000px;}
.wsac{word-spacing:-13.005000px;}
.ws5a{word-spacing:-12.879828px;}
.wsaa{word-spacing:-12.852000px;}
.ws59{word-spacing:-12.780752px;}
.ws4c{word-spacing:-12.750000px;}
.wsd4{word-spacing:-12.699000px;}
.wsa2{word-spacing:-12.474000px;}
.ws5c{word-spacing:-12.433988px;}
.ws58{word-spacing:-12.423150px;}
.ws3{word-spacing:-12.420000px;}
.ws5{word-spacing:-12.360000px;}
.ws5d{word-spacing:-12.323764px;}
.ws5b{word-spacing:-12.087223px;}
.ws7{word-spacing:-11.520000px;}
.wsa9{word-spacing:-10.761000px;}
.ws2{word-spacing:-9.996000px;}
.ws9{word-spacing:-8.925000px;}
.ws56{word-spacing:-8.745897px;}
.ws4{word-spacing:-8.694000px;}
.wsfa{word-spacing:-2.193000px;}
.wsf2{word-spacing:-2.142000px;}
.wscf{word-spacing:-2.040000px;}
.wsf4{word-spacing:-1.989000px;}
.ws1a{word-spacing:-1.620000px;}
.wse5{word-spacing:-1.581000px;}
.ws86{word-spacing:-1.560000px;}
.wsd{word-spacing:-1.500000px;}
.wse3{word-spacing:-1.479000px;}
.ws35{word-spacing:-1.440000px;}
.ws101{word-spacing:-1.428000px;}
.ws84{word-spacing:-1.380000px;}
.wsd2{word-spacing:-1.326000px;}
.ws40{word-spacing:-1.320000px;}
.wsb0{word-spacing:-1.275000px;}
.ws6b{word-spacing:-1.260000px;}
.wscc{word-spacing:-1.224000px;}
.ws89{word-spacing:-1.200000px;}
.wsd1{word-spacing:-1.173000px;}
.ws6a{word-spacing:-1.140000px;}
.wsd9{word-spacing:-1.122000px;}
.ws44{word-spacing:-1.080000px;}
.wsb6{word-spacing:-1.071000px;}
.ws30{word-spacing:-1.020000px;}
.wsb3{word-spacing:-0.969000px;}
.ws33{word-spacing:-0.960000px;}
.wsfd{word-spacing:-0.918000px;}
.ws3e{word-spacing:-0.900000px;}
.wsdf{word-spacing:-0.867000px;}
.ws66{word-spacing:-0.840000px;}
.wsdb{word-spacing:-0.816000px;}
.ws45{word-spacing:-0.780000px;}
.wsb7{word-spacing:-0.765000px;}
.wsf{word-spacing:-0.720000px;}
.wsb8{word-spacing:-0.714000px;}
.wsf7{word-spacing:-0.663000px;}
.ws39{word-spacing:-0.660000px;}
.ws20{word-spacing:-0.612000px;}
.ws12{word-spacing:-0.600000px;}
.wsa{word-spacing:-0.570000px;}
.wsbc{word-spacing:-0.561000px;}
.ws14{word-spacing:-0.540000px;}
.wsc7{word-spacing:-0.510000px;}
.ws1d{word-spacing:-0.480000px;}
.wsc0{word-spacing:-0.459000px;}
.ws79{word-spacing:-0.420000px;}
.wsbb{word-spacing:-0.408000px;}
.ws64{word-spacing:-0.360000px;}
.wsd0{word-spacing:-0.357000px;}
.wse{word-spacing:-0.300000px;}
.wsb2{word-spacing:-0.255000px;}
.ws96{word-spacing:-0.240000px;}
.ws3c{word-spacing:-0.180000px;}
.wsc3{word-spacing:-0.153000px;}
.ws67{word-spacing:-0.120000px;}
.wsdc{word-spacing:-0.102000px;}
.ws3b{word-spacing:-0.060000px;}
.ws2b{word-spacing:-0.056792px;}
.ws73{word-spacing:-0.049538px;}
.ws1{word-spacing:-0.048000px;}
.ws29{word-spacing:-0.044392px;}
.ws0{word-spacing:0.000000px;}
.ws13{word-spacing:0.060000px;}
.ws71{word-spacing:0.099076px;}
.wsc8{word-spacing:0.102000px;}
.ws2a{word-spacing:0.113585px;}
.ws62{word-spacing:0.120000px;}
.wsba{word-spacing:0.153000px;}
.ws78{word-spacing:0.180000px;}
.wsb9{word-spacing:0.204000px;}
.ws43{word-spacing:0.240000px;}
.wsae{word-spacing:0.255000px;}
.ws36{word-spacing:0.300000px;}
.wsaf{word-spacing:0.357000px;}
.ws34{word-spacing:0.360000px;}
.ws6f{word-spacing:0.420000px;}
.wsc6{word-spacing:0.459000px;}
.wsa8{word-spacing:0.480000px;}
.wsd3{word-spacing:0.510000px;}
.ws2f{word-spacing:0.540000px;}
.wsdd{word-spacing:0.561000px;}
.ws76{word-spacing:0.600000px;}
.wsff{word-spacing:0.612000px;}
.ws19{word-spacing:0.660000px;}
.wscb{word-spacing:0.663000px;}
.wsc1{word-spacing:0.714000px;}
.wsc{word-spacing:0.720000px;}
.ws102{word-spacing:0.765000px;}
.ws1b{word-spacing:0.780000px;}
.ws7d{word-spacing:0.816000px;}
.ws42{word-spacing:0.840000px;}
.ws100{word-spacing:0.867000px;}
.ws38{word-spacing:0.900000px;}
.wse9{word-spacing:0.918000px;}
.ws93{word-spacing:0.960000px;}
.ws6d{word-spacing:1.020000px;}
.ws72{word-spacing:1.040294px;}
.wse8{word-spacing:1.071000px;}
.ws60{word-spacing:1.080000px;}
.ws6e{word-spacing:1.140000px;}
.wsb4{word-spacing:1.173000px;}
.ws2e{word-spacing:1.200000px;}
.wscd{word-spacing:1.224000px;}
.ws1e{word-spacing:1.260000px;}
.wsb5{word-spacing:1.275000px;}
.ws48{word-spacing:1.320000px;}
.wsfe{word-spacing:1.326000px;}
.ws17{word-spacing:1.380000px;}
.ws41{word-spacing:1.440000px;}
.wsee{word-spacing:1.479000px;}
.ws11{word-spacing:1.500000px;}
.wsbf{word-spacing:1.530000px;}
.ws51{word-spacing:1.560000px;}
.ws16{word-spacing:1.620000px;}
.ws18{word-spacing:1.680000px;}
.wsde{word-spacing:1.683000px;}
.wse2{word-spacing:1.734000px;}
.ws92{word-spacing:1.740000px;}
.wsc2{word-spacing:1.785000px;}
.ws50{word-spacing:1.800000px;}
.wsc4{word-spacing:1.836000px;}
.ws31{word-spacing:1.860000px;}
.wsea{word-spacing:1.887000px;}
.ws52{word-spacing:1.920000px;}
.wsbd{word-spacing:1.938000px;}
.ws75{word-spacing:1.980000px;}
.wsf8{word-spacing:1.989000px;}
.ws46{word-spacing:2.040000px;}
.wsbe{word-spacing:2.091000px;}
.ws2c{word-spacing:2.100000px;}
.wsec{word-spacing:2.142000px;}
.ws3f{word-spacing:2.160000px;}
.ws88{word-spacing:2.220000px;}
.wsed{word-spacing:2.244000px;}
.ws6c{word-spacing:2.280000px;}
.wsda{word-spacing:2.295000px;}
.ws49{word-spacing:2.340000px;}
.wse4{word-spacing:2.346000px;}
.ws47{word-spacing:2.400000px;}
.wsf3{word-spacing:2.448000px;}
.ws32{word-spacing:2.460000px;}
.wsc5{word-spacing:2.499000px;}
.wsb{word-spacing:2.520000px;}
.wsef{word-spacing:2.550000px;}
.ws7b{word-spacing:2.640000px;}
.wsfc{word-spacing:2.652000px;}
.ws3a{word-spacing:2.700000px;}
.wse1{word-spacing:2.754000px;}
.ws4f{word-spacing:2.760000px;}
.ws23{word-spacing:2.805000px;}
.ws2d{word-spacing:2.820000px;}
.wseb{word-spacing:2.856000px;}
.ws5f{word-spacing:2.880000px;}
.ws1c{word-spacing:2.940000px;}
.wse7{word-spacing:2.958000px;}
.ws1f{word-spacing:3.000000px;}
.ws22{word-spacing:3.060000px;}
.wsa7{word-spacing:3.120000px;}
.wsa5{word-spacing:3.180000px;}
.ws70{word-spacing:3.240000px;}
.ws15{word-spacing:3.300000px;}
.ws77{word-spacing:3.420000px;}
.ws69{word-spacing:3.480000px;}
.wsf0{word-spacing:3.519000px;}
.ws9f{word-spacing:3.540000px;}
.ws68{word-spacing:3.600000px;}
.ws3d{word-spacing:3.660000px;}
.wsa6{word-spacing:3.720000px;}
.ws7e{word-spacing:3.723000px;}
.wsca{word-spacing:3.774000px;}
.ws9e{word-spacing:3.780000px;}
.ws8b{word-spacing:3.840000px;}
.ws94{word-spacing:3.900000px;}
.ws65{word-spacing:3.960000px;}
.wse6{word-spacing:3.978000px;}
.ws97{word-spacing:4.140000px;}
.ws61{word-spacing:4.200000px;}
.wsb1{word-spacing:4.284000px;}
.wsf5{word-spacing:4.335000px;}
.ws9b{word-spacing:4.380000px;}
.ws63{word-spacing:4.440000px;}
.ws37{word-spacing:4.500000px;}
.wsce{word-spacing:4.590000px;}
.ws95{word-spacing:4.620000px;}
.ws53{word-spacing:4.680000px;}
.ws83{word-spacing:4.740000px;}
.ws9d{word-spacing:4.860000px;}
.wse0{word-spacing:4.896000px;}
.ws5e{word-spacing:5.040000px;}
.ws4e{word-spacing:5.160000px;}
.ws85{word-spacing:5.340000px;}
.wsf1{word-spacing:5.355000px;}
.ws9c{word-spacing:5.400000px;}
.wsf9{word-spacing:5.406000px;}
.wsfb{word-spacing:5.610000px;}
.ws87{word-spacing:5.640000px;}
.ws8a{word-spacing:5.760000px;}
.wsc9{word-spacing:5.814000px;}
.ws7a{word-spacing:6.060000px;}
.ws7c{word-spacing:6.273000px;}
.ws103{word-spacing:8.466000px;}
.ws104{word-spacing:11.067000px;}
.wsa1{word-spacing:13.056000px;}
.ws10{word-spacing:15.000000px;}
.wsa0{word-spacing:45.594000px;}
.ws21{word-spacing:72.267000px;}
.ws28{word-spacing:199.256037px;}
.ws98{word-spacing:823.344000px;}
.ws9a{word-spacing:955.638000px;}
.ws57{word-spacing:977.596211px;}
.ws99{word-spacing:981.138000px;}
._a{margin-left:-2959.224073px;}
._15{margin-left:-61.483197px;}
._16{margin-left:-56.910800px;}
._11{margin-left:-54.469229px;}
._13{margin-left:-51.450560px;}
._10{margin-left:-45.723966px;}
._f{margin-left:-44.214631px;}
._e{margin-left:-41.240354px;}
._14{margin-left:-39.242705px;}
._12{margin-left:-36.978703px;}
._38{margin-left:-32.844000px;}
._4{margin-left:-16.575000px;}
._25{margin-left:-12.951000px;}
._2a{margin-left:-10.608618px;}
._2c{margin-left:-5.772000px;}
._1{margin-left:-4.622700px;}
._3{margin-left:-3.048000px;}
._0{margin-left:-1.632000px;}
._2{width:1.578000px;}
._c{width:2.880000px;}
._2b{width:3.888000px;}
._23{width:5.508000px;}
._3b{width:6.706500px;}
._8{width:9.690000px;}
._3a{width:14.433000px;}
._d{width:15.606000px;}
._5{width:18.360000px;}
._21{width:37.079956px;}
._b{width:41.003995px;}
._7{width:54.621000px;}
._6{width:72.267000px;}
._27{width:115.820956px;}
._1a{width:188.420956px;}
._18{width:276.266956px;}
._1c{width:290.189956px;}
._22{width:314.159956px;}
._1b{width:335.072956px;}
._20{width:339.506956px;}
._29{width:346.544956px;}
._28{width:383.366956px;}
._1e{width:408.866956px;}
._19{width:457.061956px;}
._1f{width:462.671956px;}
._24{width:465.578956px;}
._1d{width:495.701656px;}
._26{width:499.493956px;}
._32{width:1051.722000px;}
._35{width:1052.895000px;}
._2d{width:1098.202191px;}
._30{width:1106.751000px;}
._2f{width:1120.827000px;}
._34{width:1135.056000px;}
._2e{width:1146.432000px;}
._31{width:1157.751000px;}
._33{width:1180.344000px;}
._37{width:1197.327000px;}
._36{width:1222.878000px;}
._39{width:1968.547257px;}
._17{width:1992.771561px;}
._9{width:2338.350073px;}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(89,89,89);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:35.699999px;}
.fs4{font-size:42.000000px;}
.fsa{font-size:44.368800px;}
.fse{font-size:44.392200px;}
.fsb{font-size:44.546399px;}
.fs5{font-size:48.000000px;}
.fsc{font-size:48.805800px;}
.fsd{font-size:48.983400px;}
.fs12{font-size:49.537800px;}
.fs11{font-size:49.692598px;}
.fs6{font-size:51.000000px;}
.fsf{font-size:56.792398px;}
.fs10{font-size:56.969398px;}
.fs7{font-size:57.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs13{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs8{font-size:96.000000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y9e{bottom:2.426239px;}
.y21{bottom:68.829002px;}
.y4{bottom:97.125005px;}
.y5a{bottom:112.944300px;}
.y195{bottom:112.950300px;}
.y81{bottom:113.554779px;}
.y1f3{bottom:114.735306px;}
.yf0{bottom:114.874786px;}
.y2ea{bottom:116.822556px;}
.y90{bottom:117.610382px;}
.y2a8{bottom:122.445306px;}
.y154{bottom:126.886803px;}
.y59{bottom:127.938300px;}
.y194{bottom:127.944300px;}
.y32b{bottom:131.608823px;}
.y2e9{bottom:131.816556px;}
.y36c{bottom:131.991307px;}
.y80{bottom:132.304779px;}
.y1f2{bottom:133.485306px;}
.yef{bottom:133.624786px;}
.y2a7{bottom:137.439306px;}
.y213{bottom:139.183800px;}
.y20{bottom:139.264499px;}
.y177{bottom:140.491196px;}
.y193{bottom:142.938300px;}
.y32a{bottom:146.602823px;}
.y2e8{bottom:146.810556px;}
.y36b{bottom:146.985307px;}
.y58{bottom:148.032303px;}
.y273{bottom:150.033325px;}
.y7f{bottom:151.054779px;}
.y1f1{bottom:152.235306px;}
.yee{bottom:152.374786px;}
.y2a6{bottom:152.433306px;}
.ydd{bottom:155.907024px;}
.y212{bottom:157.933800px;}
.y176{bottom:159.241196px;}
.y329{bottom:161.596823px;}
.y2e7{bottom:161.804556px;}
.y36a{bottom:161.979307px;}
.y192{bottom:163.032303px;}
.y9f{bottom:165.062531px;}
.y157{bottom:165.432747px;}
.y57{bottom:165.491553px;}
.y2a5{bottom:167.427306px;}
.y272{bottom:168.783325px;}
.y1e7{bottom:169.794342px;}
.y7e{bottom:169.804779px;}
.ydc{bottom:170.901024px;}
.y241{bottom:170.985260px;}
.y1f0{bottom:170.985306px;}
.yed{bottom:171.124786px;}
.y152{bottom:172.824303px;}
.y328{bottom:176.590823px;}
.y211{bottom:176.683800px;}
.y2e6{bottom:176.798556px;}
.y369{bottom:176.973307px;}
.y175{bottom:177.991196px;}
.y156{bottom:180.371246px;}
.y56{bottom:180.485553px;}
.y2a4{bottom:182.421306px;}
.ydb{bottom:185.895024px;}
.y4a{bottom:186.961349px;}
.y271{bottom:187.533325px;}
.y1e6{bottom:188.544342px;}
.y7d{bottom:188.554779px;}
.y240{bottom:189.735260px;}
.y1ef{bottom:189.735306px;}
.yec{bottom:189.874786px;}
.y327{bottom:191.584823px;}
.y2e5{bottom:191.792556px;}
.y368{bottom:191.967307px;}
.y210{bottom:195.433800px;}
.y174{bottom:196.741196px;}
.y17{bottom:196.933500px;}
.y2a3{bottom:197.415306px;}
.y55{bottom:200.579544px;}
.yda{bottom:200.889024px;}
.y49{bottom:205.711349px;}
.y270{bottom:206.283325px;}
.y326{bottom:206.578823px;}
.y2e4{bottom:206.786556px;}
.y367{bottom:206.961307px;}
.y1e5{bottom:207.294342px;}
.y7c{bottom:207.304779px;}
.y23f{bottom:208.485260px;}
.y1ee{bottom:208.485306px;}
.yeb{bottom:208.624786px;}
.y1f{bottom:209.518500px;}
.y16{bottom:209.533503px;}
.y2a2{bottom:212.409306px;}
.y190{bottom:213.289192px;}
.y20f{bottom:214.183800px;}
.y231{bottom:215.374969px;}
.y173{bottom:215.491196px;}
.yd9{bottom:215.883024px;}
.y54{bottom:218.038794px;}
.y153{bottom:218.918541px;}
.y325{bottom:221.572823px;}
.y2e3{bottom:221.780556px;}
.y366{bottom:221.955307px;}
.y1e{bottom:222.118502px;}
.y15{bottom:222.133505px;}
.y48{bottom:224.461349px;}
.y26f{bottom:225.033325px;}
.y1e4{bottom:226.044342px;}
.y7b{bottom:226.054779px;}
.y1b6{bottom:227.235260px;}
.y1ed{bottom:227.235306px;}
.yea{bottom:227.374786px;}
.y2a1{bottom:227.403306px;}
.yd8{bottom:230.877024px;}
.y18f{bottom:232.039192px;}
.y20e{bottom:232.933800px;}
.y53{bottom:233.032794px;}
.y9d{bottom:233.936554px;}
.y230{bottom:234.124969px;}
.y172{bottom:234.241196px;}
.y1d{bottom:234.718504px;}
.y14{bottom:234.733496px;}
.y324{bottom:236.566823px;}
.y2e2{bottom:236.774556px;}
.y365{bottom:236.949307px;}
.y2a0{bottom:242.397306px;}
.y151{bottom:242.520748px;}
.y47{bottom:243.211349px;}
.y26e{bottom:243.783325px;}
.y1e3{bottom:244.794342px;}
.y7a{bottom:244.804779px;}
.yd7{bottom:245.871024px;}
.y1b5{bottom:245.985260px;}
.y1ec{bottom:245.985306px;}
.ye9{bottom:246.124786px;}
.y155{bottom:246.434257px;}
.y18e{bottom:250.789192px;}
.y323{bottom:251.560823px;}
.y2e1{bottom:251.768556px;}
.y364{bottom:251.943307px;}
.y22f{bottom:252.874969px;}
.y171{bottom:252.991196px;}
.y52{bottom:253.126808px;}
.y29f{bottom:257.391306px;}
.y150{bottom:257.514748px;}
.y1c{bottom:259.918497px;}
.y13{bottom:259.933500px;}
.yd6{bottom:260.865024px;}
.y46{bottom:261.961349px;}
.y26d{bottom:262.533325px;}
.y1e2{bottom:263.544342px;}
.y79{bottom:263.554779px;}
.y1b4{bottom:264.735260px;}
.y1eb{bottom:264.735306px;}
.ye8{bottom:264.874786px;}
.y322{bottom:266.554823px;}
.y2e0{bottom:266.762556px;}
.y363{bottom:266.937307px;}
.y18d{bottom:269.539192px;}
.y20d{bottom:270.433800px;}
.y22e{bottom:271.624969px;}
.y170{bottom:271.741196px;}
.y29e{bottom:272.385306px;}
.y1b{bottom:272.518500px;}
.y12{bottom:272.533503px;}
.yd5{bottom:275.859024px;}
.y51{bottom:278.150392px;}
.y45{bottom:280.711349px;}
.y26c{bottom:281.283325px;}
.y321{bottom:281.548823px;}
.y2df{bottom:281.756556px;}
.y362{bottom:281.931307px;}
.y1e1{bottom:282.294342px;}
.y78{bottom:282.304779px;}
.y1f4{bottom:283.479306px;}
.y1b3{bottom:283.485260px;}
.y1ea{bottom:283.485306px;}
.ye7{bottom:283.624786px;}
.y1a{bottom:285.118502px;}
.y11{bottom:285.133499px;}
.y29d{bottom:287.379306px;}
.y18c{bottom:288.289192px;}
.y22d{bottom:290.374969px;}
.y16f{bottom:290.491196px;}
.yd4{bottom:290.853024px;}
.y50{bottom:293.144392px;}
.y320{bottom:296.542823px;}
.y2de{bottom:296.750556px;}
.y361{bottom:296.925307px;}
.y44{bottom:299.461349px;}
.y26b{bottom:300.033325px;}
.y1e0{bottom:301.044342px;}
.y77{bottom:301.054779px;}
.y1b2{bottom:302.235260px;}
.y13b{bottom:302.235306px;}
.y29c{bottom:302.373306px;}
.ye6{bottom:302.374786px;}
.yd3{bottom:305.847024px;}
.y18b{bottom:307.039215px;}
.y20c{bottom:307.933823px;}
.y22c{bottom:309.124969px;}
.y16e{bottom:309.241196px;}
.y19{bottom:310.318501px;}
.y10{bottom:310.333501px;}
.y31f{bottom:311.536823px;}
.y2dd{bottom:311.744556px;}
.y360{bottom:311.919307px;}
.y4f{bottom:315.686392px;}
.y29b{bottom:317.367306px;}
.y43{bottom:318.211349px;}
.y26a{bottom:318.783325px;}
.y1df{bottom:319.794342px;}
.y76{bottom:319.804779px;}
.y1b1{bottom:320.985260px;}
.y13a{bottom:320.985306px;}
.ye5{bottom:321.124786px;}
.y18{bottom:322.918500px;}
.yf{bottom:322.933500px;}
.yd2{bottom:324.564024px;}
.y18a{bottom:325.789215px;}
.y31e{bottom:326.530823px;}
.y20b{bottom:326.683823px;}
.y2dc{bottom:326.738556px;}
.y35f{bottom:326.913307px;}
.y22b{bottom:327.874969px;}
.y16d{bottom:327.991196px;}
.y4e{bottom:330.680392px;}
.y29a{bottom:332.361306px;}
.y42{bottom:336.961349px;}
.y269{bottom:337.533325px;}
.y1de{bottom:338.544342px;}
.y75{bottom:338.554779px;}
.yd1{bottom:339.558024px;}
.y1b0{bottom:339.735260px;}
.y139{bottom:339.735306px;}
.ye4{bottom:339.874786px;}
.y31d{bottom:341.524823px;}
.y2db{bottom:341.732556px;}
.y35e{bottom:341.907307px;}
.y189{bottom:344.539215px;}
.y20a{bottom:345.433823px;}
.y22a{bottom:346.624969px;}
.y16c{bottom:346.741196px;}
.y299{bottom:347.355306px;}
.ye{bottom:348.133500px;}
.y4d{bottom:353.222392px;}
.yd0{bottom:354.552024px;}
.y41{bottom:355.711349px;}
.y268{bottom:356.283325px;}
.y31c{bottom:356.518823px;}
.y2da{bottom:356.726556px;}
.y35d{bottom:356.901307px;}
.y1dd{bottom:357.294342px;}
.y74{bottom:357.304779px;}
.y1af{bottom:358.485260px;}
.y138{bottom:358.485306px;}
.ye3{bottom:358.624786px;}
.y298{bottom:362.349306px;}
.y188{bottom:363.289215px;}
.y209{bottom:364.183823px;}
.y229{bottom:365.374969px;}
.y16b{bottom:365.491196px;}
.y4c{bottom:368.216392px;}
.ycf{bottom:369.546024px;}
.y31b{bottom:371.512823px;}
.y2d9{bottom:371.720556px;}
.y35c{bottom:371.895307px;}
.y40{bottom:374.461349px;}
.y267{bottom:375.033325px;}
.y1dc{bottom:376.044342px;}
.y73{bottom:376.054779px;}
.y1ae{bottom:377.235260px;}
.y137{bottom:377.235306px;}
.y297{bottom:377.343306px;}
.ye2{bottom:377.374786px;}
.y187{bottom:382.039215px;}
.y208{bottom:382.933823px;}
.y228{bottom:384.124969px;}
.y16a{bottom:384.241196px;}
.yce{bottom:384.540024px;}
.y31a{bottom:386.506823px;}
.y2d8{bottom:386.714556px;}
.yd{bottom:386.785499px;}
.y35b{bottom:386.889307px;}
.y296{bottom:392.337306px;}
.y3f{bottom:393.211349px;}
.y266{bottom:393.783325px;}
.y1db{bottom:394.794342px;}
.y72{bottom:394.804779px;}
.y1ad{bottom:395.985260px;}
.y136{bottom:395.985306px;}
.ye1{bottom:396.124786px;}
.y4b{bottom:399.033142px;}
.ycd{bottom:399.534024px;}
.y186{bottom:400.789215px;}
.y319{bottom:401.500823px;}
.y207{bottom:401.683823px;}
.y2d7{bottom:401.708556px;}
.y35a{bottom:401.883307px;}
.y227{bottom:402.874969px;}
.y169{bottom:402.991196px;}
.y295{bottom:407.331306px;}
.yc{bottom:408.044999px;}
.y3e{bottom:411.961349px;}
.y265{bottom:412.533325px;}
.y1da{bottom:413.544342px;}
.y71{bottom:413.554779px;}
.ycc{bottom:414.528024px;}
.y1ac{bottom:414.735260px;}
.y135{bottom:414.735306px;}
.ye0{bottom:414.874786px;}
.y318{bottom:416.494823px;}
.y2d6{bottom:416.702556px;}
.y359{bottom:416.877307px;}
.y206{bottom:420.433823px;}
.y226{bottom:421.624969px;}
.y168{bottom:421.741196px;}
.y294{bottom:422.325306px;}
.ycb{bottom:429.522024px;}
.y3d{bottom:430.711349px;}
.y264{bottom:431.283325px;}
.y317{bottom:431.488823px;}
.y2d5{bottom:431.696556px;}
.y358{bottom:431.871307px;}
.y1d9{bottom:432.294342px;}
.y70{bottom:432.304779px;}
.y1ab{bottom:433.485260px;}
.y134{bottom:433.485306px;}
.ydf{bottom:433.624786px;}
.y293{bottom:437.319306px;}
.y185{bottom:438.289215px;}
.y205{bottom:439.183823px;}
.y225{bottom:440.374969px;}
.y167{bottom:440.491196px;}
.yca{bottom:444.516024px;}
.y316{bottom:446.482823px;}
.y2d4{bottom:446.690556px;}
.y357{bottom:446.865307px;}
.y3a{bottom:449.461349px;}
.y263{bottom:450.033325px;}
.y1d8{bottom:451.044342px;}
.y6f{bottom:451.054779px;}
.y1aa{bottom:452.235260px;}
.y133{bottom:452.235306px;}
.y292{bottom:452.313306px;}
.yde{bottom:452.374786px;}
.y204{bottom:457.933823px;}
.y224{bottom:459.124969px;}
.y166{bottom:459.241196px;}
.yc9{bottom:459.510024px;}
.y315{bottom:461.476823px;}
.y2d3{bottom:461.684556px;}
.y356{bottom:461.859307px;}
.y291{bottom:467.307306px;}
.y39{bottom:468.211349px;}
.y262{bottom:468.783325px;}
.y1d7{bottom:469.794342px;}
.y6e{bottom:469.804779px;}
.y1a9{bottom:470.985260px;}
.y132{bottom:470.985306px;}
.yc8{bottom:474.504024px;}
.y184{bottom:475.789215px;}
.y314{bottom:476.470823px;}
.y2d2{bottom:476.678556px;}
.y203{bottom:476.683823px;}
.y355{bottom:476.853307px;}
.y223{bottom:477.874969px;}
.y165{bottom:477.991196px;}
.y290{bottom:482.301306px;}
.y38{bottom:486.961349px;}
.y261{bottom:487.533325px;}
.y1d6{bottom:488.544342px;}
.y6d{bottom:488.554779px;}
.yc7{bottom:489.498024px;}
.y1a8{bottom:489.735260px;}
.y131{bottom:489.735306px;}
.y313{bottom:491.464823px;}
.y2d1{bottom:491.672556px;}
.y354{bottom:491.847307px;}
.y183{bottom:494.539215px;}
.y202{bottom:495.433823px;}
.y222{bottom:496.624969px;}
.y164{bottom:496.741196px;}
.y28f{bottom:497.295306px;}
.yb{bottom:502.864502px;}
.y114{bottom:505.690063px;}
.y37{bottom:505.711349px;}
.y260{bottom:506.283325px;}
.y312{bottom:506.458823px;}
.y2d0{bottom:506.666556px;}
.y353{bottom:506.841307px;}
.y1d5{bottom:507.294342px;}
.y6c{bottom:507.304779px;}
.yc6{bottom:508.215024px;}
.y1a7{bottom:508.485260px;}
.y130{bottom:508.485306px;}
.y28e{bottom:512.289306px;}
.y182{bottom:513.289215px;}
.y201{bottom:514.183823px;}
.y221{bottom:515.374969px;}
.y163{bottom:515.491196px;}
.ya{bottom:520.864502px;}
.y311{bottom:521.452823px;}
.y2cf{bottom:521.660556px;}
.y352{bottom:521.835307px;}
.yc5{bottom:523.209024px;}
.y36{bottom:524.461349px;}
.y25f{bottom:525.033325px;}
.y1d4{bottom:526.044342px;}
.y6b{bottom:526.054779px;}
.y1a6{bottom:527.235260px;}
.y12f{bottom:527.235306px;}
.y28d{bottom:527.283306px;}
.y113{bottom:528.270417px;}
.y181{bottom:532.039215px;}
.y200{bottom:532.933823px;}
.y220{bottom:534.118778px;}
.y162{bottom:534.241196px;}
.y310{bottom:536.446823px;}
.y2ce{bottom:536.654556px;}
.y351{bottom:536.829307px;}
.y9{bottom:538.864499px;}
.yc4{bottom:541.926024px;}
.y28c{bottom:542.277306px;}
.y35{bottom:543.211349px;}
.y112{bottom:543.264417px;}
.y25e{bottom:543.783325px;}
.y1d3{bottom:544.794342px;}
.y6a{bottom:544.804779px;}
.y1a5{bottom:545.985260px;}
.y12e{bottom:545.985306px;}
.y180{bottom:550.789215px;}
.y30f{bottom:551.440823px;}
.y2cd{bottom:551.648556px;}
.y1ff{bottom:551.683823px;}
.y350{bottom:551.823307px;}
.y21f{bottom:552.868778px;}
.y161{bottom:552.991196px;}
.y8{bottom:556.864499px;}
.y28b{bottom:557.271306px;}
.y111{bottom:558.258417px;}
.yc3{bottom:560.643024px;}
.y3c{bottom:561.961349px;}
.y25d{bottom:562.533325px;}
.y1d2{bottom:563.544342px;}
.y69{bottom:563.554779px;}
.y1a4{bottom:564.735260px;}
.y12d{bottom:564.735306px;}
.y30e{bottom:566.434823px;}
.y2cc{bottom:566.642556px;}
.y34f{bottom:566.817307px;}
.y17f{bottom:569.539215px;}
.y1fe{bottom:570.433823px;}
.y21e{bottom:571.618778px;}
.y160{bottom:571.741196px;}
.y28a{bottom:572.265306px;}
.y110{bottom:573.252417px;}
.yc2{bottom:575.637024px;}
.y34{bottom:580.705349px;}
.y3b{bottom:580.711349px;}
.y25c{bottom:581.283325px;}
.y30d{bottom:581.428823px;}
.y2cb{bottom:581.636556px;}
.y34e{bottom:581.811307px;}
.y1d1{bottom:582.294342px;}
.y68{bottom:582.304779px;}
.y1a3{bottom:583.485260px;}
.y12c{bottom:583.485306px;}
.y289{bottom:587.259306px;}
.y10f{bottom:588.246417px;}
.y17e{bottom:588.289215px;}
.y1fd{bottom:589.183823px;}
.y21d{bottom:590.368778px;}
.y15f{bottom:590.491196px;}
.yc1{bottom:594.354024px;}
.y30c{bottom:596.422823px;}
.y2ca{bottom:596.630556px;}
.y34d{bottom:596.805307px;}
.y33{bottom:599.461349px;}
.y25b{bottom:600.033325px;}
.y1d0{bottom:601.044342px;}
.y67{bottom:601.054779px;}
.y1a2{bottom:602.235260px;}
.y12b{bottom:602.235306px;}
.y288{bottom:602.253306px;}
.y10e{bottom:603.240417px;}
.y17d{bottom:607.039215px;}
.y1fc{bottom:607.933823px;}
.y21c{bottom:609.118778px;}
.y15e{bottom:609.241196px;}
.y30b{bottom:611.416823px;}
.y2c9{bottom:611.624556px;}
.y34c{bottom:611.799307px;}
.yc0{bottom:613.071024px;}
.y287{bottom:617.247306px;}
.y10d{bottom:618.234417px;}
.y25a{bottom:618.783325px;}
.y1cf{bottom:619.794342px;}
.y66{bottom:619.804779px;}
.y1a1{bottom:620.985260px;}
.y12a{bottom:620.985306px;}
.y17c{bottom:625.789215px;}
.y30a{bottom:626.410823px;}
.y2c8{bottom:626.618556px;}
.y1fb{bottom:626.683823px;}
.y34b{bottom:626.793307px;}
.y21b{bottom:627.868778px;}
.y15d{bottom:627.991196px;}
.ybf{bottom:631.788024px;}
.y286{bottom:632.241306px;}
.y10c{bottom:633.228417px;}
.y259{bottom:637.533325px;}
.y1ce{bottom:638.544342px;}
.y65{bottom:638.554779px;}
.y1a0{bottom:639.735260px;}
.y129{bottom:639.735306px;}
.y309{bottom:641.404823px;}
.y2c7{bottom:641.612556px;}
.y34a{bottom:641.787307px;}
.y17b{bottom:644.539215px;}
.y1fa{bottom:645.433823px;}
.y7{bottom:645.510000px;}
.y21a{bottom:646.618778px;}
.y15c{bottom:646.741196px;}
.ybe{bottom:646.782024px;}
.y285{bottom:647.235306px;}
.y10b{bottom:648.222417px;}
.y32{bottom:655.711395px;}
.y258{bottom:656.283325px;}
.y308{bottom:656.398823px;}
.y2c6{bottom:656.606556px;}
.y349{bottom:656.781307px;}
.y1cd{bottom:657.294342px;}
.y64{bottom:657.304779px;}
.y19f{bottom:658.485260px;}
.y128{bottom:658.485306px;}
.y10a{bottom:663.216417px;}
.y17a{bottom:663.289215px;}
.y1f9{bottom:664.183823px;}
.y219{bottom:665.368778px;}
.y15b{bottom:665.491196px;}
.ybd{bottom:665.499024px;}
.y6{bottom:666.771000px;}
.y307{bottom:671.392823px;}
.y2c5{bottom:671.600556px;}
.y348{bottom:671.775307px;}
.y257{bottom:675.033325px;}
.y1cc{bottom:676.044342px;}
.y63{bottom:676.054779px;}
.y19e{bottom:677.235260px;}
.y127{bottom:677.235306px;}
.y109{bottom:678.210417px;}
.ybc{bottom:680.493024px;}
.y284{bottom:680.985306px;}
.y179{bottom:682.039215px;}
.y1f8{bottom:682.933823px;}
.y218{bottom:684.118778px;}
.y15a{bottom:684.241196px;}
.y306{bottom:686.386823px;}
.y2c4{bottom:686.594556px;}
.y347{bottom:686.769307px;}
.y108{bottom:693.204417px;}
.y31{bottom:693.211395px;}
.y256{bottom:693.783325px;}
.y1cb{bottom:694.794342px;}
.y62{bottom:694.804779px;}
.ybb{bottom:695.487024px;}
.y19d{bottom:695.985260px;}
.y126{bottom:695.985306px;}
.y305{bottom:701.380823px;}
.y2c3{bottom:701.588556px;}
.y1f7{bottom:701.683823px;}
.y346{bottom:701.763307px;}
.y217{bottom:702.868778px;}
.y159{bottom:702.991196px;}
.yba{bottom:710.481024px;}
.y107{bottom:711.997917px;}
.y255{bottom:712.533325px;}
.y1ca{bottom:713.544342px;}
.y61{bottom:713.554779px;}
.y19c{bottom:714.735260px;}
.y14f{bottom:714.735306px;}
.y304{bottom:716.374823px;}
.y2c2{bottom:716.582556px;}
.y345{bottom:716.757307px;}
.y178{bottom:719.539215px;}
.y1f6{bottom:720.433823px;}
.y216{bottom:721.618778px;}
.y158{bottom:721.741196px;}
.yb9{bottom:725.475024px;}
.y5{bottom:726.298500px;}
.y106{bottom:726.991917px;}
.y30{bottom:730.711395px;}
.y254{bottom:731.283325px;}
.y303{bottom:731.368823px;}
.y2c1{bottom:731.576556px;}
.y344{bottom:731.751307px;}
.y1c9{bottom:732.294342px;}
.y60{bottom:732.304779px;}
.y19b{bottom:733.485260px;}
.y125{bottom:733.485306px;}
.y215{bottom:740.368778px;}
.yb8{bottom:740.469024px;}
.y105{bottom:745.708917px;}
.y302{bottom:746.362823px;}
.y383{bottom:746.439324px;}
.y2c0{bottom:746.570556px;}
.y343{bottom:746.745307px;}
.y2f{bottom:749.461395px;}
.y253{bottom:750.033325px;}
.y1c8{bottom:751.044342px;}
.y5f{bottom:751.054779px;}
.y19a{bottom:752.235260px;}
.y14e{bottom:752.235306px;}
.y3{bottom:752.599495px;}
.yb7{bottom:755.463024px;}
.y283{bottom:756.061012px;}
.y1f5{bottom:757.933823px;}
.y214{bottom:759.118778px;}
.y104{bottom:760.702917px;}
.y301{bottom:761.356823px;}
.y382{bottom:761.433324px;}
.y2bf{bottom:761.564556px;}
.y342{bottom:761.739307px;}
.y2e{bottom:768.211395px;}
.y252{bottom:768.783325px;}
.y191{bottom:769.599792px;}
.y1c7{bottom:769.794342px;}
.y5e{bottom:769.804779px;}
.y199{bottom:770.985260px;}
.y14d{bottom:770.985306px;}
.y282{bottom:771.055012px;}
.yb6{bottom:774.180024px;}
.y103{bottom:775.696917px;}
.y300{bottom:776.350823px;}
.y2be{bottom:776.558556px;}
.y341{bottom:776.733307px;}
.y281{bottom:786.049012px;}
.y2d{bottom:786.961395px;}
.y251{bottom:787.533325px;}
.y1c6{bottom:788.544342px;}
.y5d{bottom:788.554779px;}
.y1e9{bottom:789.735260px;}
.y14c{bottom:789.735306px;}
.y102{bottom:790.690917px;}
.y2ff{bottom:791.344823px;}
.y381{bottom:791.523323px;}
.y2bd{bottom:791.552556px;}
.y340{bottom:791.727307px;}
.yb5{bottom:792.897024px;}
.y124{bottom:799.110260px;}
.y280{bottom:801.043012px;}
.y101{bottom:805.684917px;}
.y2c{bottom:805.711395px;}
.y250{bottom:806.283325px;}
.y2fe{bottom:806.338823px;}
.y380{bottom:806.517323px;}
.y2bc{bottom:806.546556px;}
.y33f{bottom:806.721307px;}
.y1c5{bottom:807.294342px;}
.y5c{bottom:807.304779px;}
.yb4{bottom:807.891024px;}
.y198{bottom:808.485260px;}
.y14b{bottom:808.485306px;}
.y23e{bottom:808.491260px;}
.y27f{bottom:816.037012px;}
.y123{bottom:817.860260px;}
.y100{bottom:820.678917px;}
.y2fd{bottom:821.332823px;}
.y37f{bottom:821.511323px;}
.y2bb{bottom:821.540556px;}
.y33e{bottom:821.715307px;}
.yb3{bottom:822.885024px;}
.y2b{bottom:824.461395px;}
.y23d{bottom:824.861274px;}
.y24f{bottom:825.033325px;}
.y1c4{bottom:826.044342px;}
.y1e8{bottom:827.235260px;}
.y14a{bottom:827.235306px;}
.y27e{bottom:831.031012px;}
.y2fc{bottom:836.326823px;}
.y37e{bottom:836.505323px;}
.y2ba{bottom:836.534556px;}
.y122{bottom:836.610260px;}
.y33d{bottom:836.709307px;}
.yb2{bottom:837.879024px;}
.yff{bottom:839.395917px;}
.y2a{bottom:843.211395px;}
.y23c{bottom:843.654774px;}
.y24e{bottom:843.783325px;}
.y1c3{bottom:844.794342px;}
.y197{bottom:845.985260px;}
.y149{bottom:845.985306px;}
.y27d{bottom:846.025012px;}
.y2fb{bottom:851.320823px;}
.y37d{bottom:851.499323px;}
.y2b9{bottom:851.528556px;}
.y33c{bottom:851.703307px;}
.yb1{bottom:852.873024px;}
.yfe{bottom:854.389917px;}
.y121{bottom:855.360260px;}
.y8f{bottom:856.433990px;}
.y27c{bottom:861.019012px;}
.y29{bottom:861.961395px;}
.y23b{bottom:862.371774px;}
.y24d{bottom:862.533325px;}
.y1c2{bottom:863.544342px;}
.y196{bottom:864.735260px;}
.y148{bottom:864.735306px;}
.y2fa{bottom:866.314823px;}
.y37c{bottom:866.493323px;}
.y2b8{bottom:866.522556px;}
.y33b{bottom:866.697307px;}
.yb0{bottom:867.867024px;}
.yfd{bottom:869.383917px;}
.y96{bottom:871.951032px;}
.y85{bottom:874.611786px;}
.y27b{bottom:876.013012px;}
.y2{bottom:879.369000px;}
.y23a{bottom:881.088774px;}
.y24c{bottom:881.283325px;}
.y2f9{bottom:881.308823px;}
.y37b{bottom:881.487323px;}
.y2b7{bottom:881.516556px;}
.y33a{bottom:881.691307px;}
.y1c1{bottom:882.294342px;}
.yaf{bottom:882.861024px;}
.y120{bottom:883.485260px;}
.y147{bottom:883.485306px;}
.y87{bottom:883.929234px;}
.yfc{bottom:884.377917px;}
.y86{bottom:890.140866px;}
.y27a{bottom:891.007012px;}
.y88{bottom:893.246682px;}
.y2f8{bottom:896.302823px;}
.y89{bottom:896.352498px;}
.y37a{bottom:896.481323px;}
.y2b6{bottom:896.510556px;}
.y339{bottom:896.685307px;}
.yae{bottom:897.855024px;}
.yfb{bottom:899.371917px;}
.y239{bottom:899.805774px;}
.y24b{bottom:900.033325px;}
.y1c0{bottom:901.044342px;}
.y11f{bottom:902.235260px;}
.y146{bottom:902.235306px;}
.y8b{bottom:902.343567px;}
.y97{bottom:903.231036px;}
.y279{bottom:906.001012px;}
.y28{bottom:906.144153px;}
.y2f7{bottom:911.296823px;}
.y379{bottom:911.475323px;}
.y2b5{bottom:911.504556px;}
.y338{bottom:911.679307px;}
.yad{bottom:912.849024px;}
.yfa{bottom:914.365917px;}
.y8c{bottom:914.764643px;}
.y8e{bottom:917.873108px;}
.y238{bottom:918.522774px;}
.y24a{bottom:918.783325px;}
.y1bf{bottom:919.794342px;}
.y11e{bottom:920.985260px;}
.y145{bottom:920.985306px;}
.y278{bottom:920.995012px;}
.y27{bottom:921.138153px;}
.y91{bottom:924.572205px;}
.y2f6{bottom:926.290823px;}
.y378{bottom:926.469323px;}
.y2b4{bottom:926.498556px;}
.y337{bottom:926.673307px;}
.yac{bottom:927.843024px;}
.yf9{bottom:929.359917px;}
.y8d{bottom:930.339569px;}
.y8a{bottom:930.782687px;}
.y98{bottom:934.333565px;}
.y237{bottom:937.239774px;}
.y249{bottom:937.533325px;}
.y1be{bottom:938.544342px;}
.y11d{bottom:939.735260px;}
.y144{bottom:939.735306px;}
.y2f5{bottom:941.284823px;}
.y377{bottom:941.463323px;}
.y2b3{bottom:941.492556px;}
.y336{bottom:941.667307px;}
.yab{bottom:942.837024px;}
.yf8{bottom:944.353917px;}
.y92{bottom:946.313141px;}
.y277{bottom:950.995762px;}
.y236{bottom:955.956774px;}
.y2f4{bottom:956.278823px;}
.y248{bottom:956.283325px;}
.y376{bottom:956.457323px;}
.y2b2{bottom:956.486556px;}
.y335{bottom:956.661307px;}
.y1bd{bottom:957.294342px;}
.yaa{bottom:957.831024px;}
.y11c{bottom:958.485260px;}
.y143{bottom:958.485306px;}
.yf7{bottom:963.070917px;}
.y26{bottom:963.738190px;}
.y99{bottom:965.613569px;}
.y276{bottom:965.989762px;}
.y1{bottom:966.726000px;}
.y93{bottom:971.159669px;}
.y2f3{bottom:971.272823px;}
.y375{bottom:971.451323px;}
.y2b1{bottom:971.480556px;}
.y334{bottom:971.655307px;}
.ya9{bottom:972.825024px;}
.y235{bottom:974.673774px;}
.y247{bottom:975.033325px;}
.y1bc{bottom:976.044342px;}
.y11b{bottom:977.235260px;}
.y142{bottom:977.235306px;}
.yf6{bottom:978.064917px;}
.y2f2{bottom:986.266823px;}
.y374{bottom:986.445323px;}
.y2b0{bottom:986.474556px;}
.y333{bottom:986.649307px;}
.ya8{bottom:991.542024px;}
.yf5{bottom:993.058917px;}
.y234{bottom:993.390774px;}
.y246{bottom:993.783325px;}
.y1bb{bottom:994.794342px;}
.y11a{bottom:995.985260px;}
.y141{bottom:995.985306px;}
.y9a{bottom:996.716098px;}
.y2f1{bottom:1001.260823px;}
.y373{bottom:1001.439323px;}
.y2af{bottom:1001.468556px;}
.y332{bottom:1001.643307px;}
.ya7{bottom:1006.536024px;}
.yf4{bottom:1008.059527px;}
.y25{bottom:1008.424622px;}
.y94{bottom:1008.695674px;}
.y233{bottom:1012.107774px;}
.y245{bottom:1012.533325px;}
.y1ba{bottom:1013.544342px;}
.y119{bottom:1014.735260px;}
.y140{bottom:1014.735306px;}
.y2f0{bottom:1016.254823px;}
.y372{bottom:1016.433323px;}
.y2ae{bottom:1016.462556px;}
.y331{bottom:1016.637307px;}
.ya3{bottom:1020.229523px;}
.ya6{bottom:1021.530024px;}
.yf3{bottom:1023.053527px;}
.y275{bottom:1025.991260px;}
.y9b{bottom:1027.996102px;}
.y95{bottom:1030.436386px;}
.y2ef{bottom:1031.248823px;}
.y244{bottom:1031.283325px;}
.y371{bottom:1031.427323px;}
.y2ad{bottom:1031.456556px;}
.y330{bottom:1031.631307px;}
.y1b9{bottom:1032.294342px;}
.y118{bottom:1033.485260px;}
.y13f{bottom:1033.485306px;}
.ya2{bottom:1037.533630px;}
.y232{bottom:1040.196024px;}
.y274{bottom:1040.985260px;}
.y2ee{bottom:1046.242823px;}
.y370{bottom:1046.421323px;}
.y2ac{bottom:1046.450556px;}
.y32f{bottom:1046.625307px;}
.ya5{bottom:1049.618274px;}
.y243{bottom:1050.033325px;}
.yf2{bottom:1050.721027px;}
.y1b8{bottom:1051.044342px;}
.y117{bottom:1052.235260px;}
.y13e{bottom:1052.235306px;}
.ya1{bottom:1054.875916px;}
.y9c{bottom:1059.087538px;}
.y84{bottom:1060.114844px;}
.y2ed{bottom:1061.236823px;}
.y36f{bottom:1061.415323px;}
.y2ab{bottom:1061.444556px;}
.y32e{bottom:1061.619307px;}
.ya4{bottom:1064.612274px;}
.yf1{bottom:1065.715027px;}
.y116{bottom:1070.985260px;}
.y13d{bottom:1070.985306px;}
.ya0{bottom:1072.180023px;}
.y83{bottom:1075.108844px;}
.y24{bottom:1076.132080px;}
.y2ec{bottom:1076.230823px;}
.y36e{bottom:1076.409323px;}
.y2aa{bottom:1076.438556px;}
.y32d{bottom:1076.613307px;}
.y242{bottom:1087.533325px;}
.y1b7{bottom:1088.544342px;}
.y115{bottom:1089.735260px;}
.y13c{bottom:1089.735306px;}
.y82{bottom:1090.102844px;}
.y2eb{bottom:1091.224823px;}
.y36d{bottom:1091.403323px;}
.y2a9{bottom:1091.432556px;}
.y32c{bottom:1091.607307px;}
.y23{bottom:1109.586556px;}
.y22{bottom:1126.582306px;}
.y5b{bottom:1127.482361px;}
.h19{height:25.204199px;}
.h1d{height:30.703210px;}
.h22{height:30.719402px;}
.h21{height:30.826108px;}
.h8{height:32.130000px;}
.h9{height:32.172000px;}
.h1e{height:33.773614px;}
.hc{height:33.840000px;}
.h1f{height:33.896513px;}
.h2a{height:34.280158px;}
.h29{height:34.387278px;}
.h17{height:36.006000px;}
.h18{height:36.855469px;}
.h23{height:39.300340px;}
.h24{height:39.422824px;}
.h12{height:42.360000px;}
.h1c{height:43.126474px;}
.hd{height:44.676000px;}
.h1b{height:45.186000px;}
.h28{height:45.577908px;}
.h7{height:45.960000px;}
.h3{height:48.195000px;}
.h6{height:48.258000px;}
.h1a{height:50.439000px;}
.h25{height:50.439732px;}
.h26{height:52.173000px;}
.h14{height:53.160000px;}
.h16{height:53.652000px;}
.h2d{height:53.676765px;}
.h27{height:53.805000px;}
.h2{height:55.152000px;}
.he{height:55.461000px;}
.h2b{height:59.004000px;}
.h11{height:59.340000px;}
.h13{height:61.380000px;}
.h2c{height:64.548000px;}
.h10{height:64.866000px;}
.h15{height:71.208000px;}
.h5{height:78.132000px;}
.hf{height:85.056000px;}
.h4{height:119.055004px;}
.h20{height:243.232498px;}
.ha{height:1186.299000px;}
.hb{height:1186.500000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w4{width:540.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:9.301643px;}
.x17{left:14.806503px;}
.x18{left:60.353096px;}
.x6{left:76.535402px;}
.x7{left:85.181849px;}
.xb{left:93.545402px;}
.xa{left:97.796100px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x4{left:203.484001px;}
.x12{left:276.377998px;}
.x16{left:291.193611px;}
.x15{left:296.787029px;}
.x1b{left:306.378892px;}
.x1c{left:314.861847px;}
.xc{left:345.121650px;}
.x1a{left:368.604607px;}
.x22{left:400.670700px;}
.x11{left:416.986559px;}
.x13{left:429.017830px;}
.x3{left:454.959000px;}
.x8{left:459.215389px;}
.x1d{left:469.353470px;}
.x9{left:476.222996px;}
.x1e{left:480.846588px;}
.x23{left:484.739455px;}
.xe{left:489.374101px;}
.x1f{left:503.475586px;}
.x21{left:514.434586px;}
.x20{left:527.911972px;}
.xf{left:561.455934px;}
.x10{left:633.559965px;}
.xd{left:705.630698px;}
.x5{left:728.220612px;}
.x14{left:777.732107px;}
@media print{
.v6{vertical-align:-44.171605pt;}
.v5{vertical-align:-22.081714pt;}
.v2{vertical-align:-18.133382pt;}
.v4{vertical-align:-11.042901pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:11.042901pt;}
.v7{vertical-align:18.109964pt;}
.v1{vertical-align:21.333333pt;}
.ls3d{letter-spacing:-3.268669pt;}
.ls4f{letter-spacing:-2.026667pt;}
.ls3a{letter-spacing:-1.920000pt;}
.ls54{letter-spacing:-1.280000pt;}
.ls4b{letter-spacing:-1.173333pt;}
.ls48{letter-spacing:-1.120000pt;}
.ls49{letter-spacing:-1.066667pt;}
.ls4a{letter-spacing:-1.013333pt;}
.ls42{letter-spacing:-0.924706pt;}
.ls3c{letter-spacing:-0.800000pt;}
.ls17{letter-spacing:-0.746667pt;}
.ls3b{letter-spacing:-0.693333pt;}
.ls50{letter-spacing:-0.640000pt;}
.ls29{letter-spacing:-0.586667pt;}
.ls28{letter-spacing:-0.533333pt;}
.ls27{letter-spacing:-0.480000pt;}
.ls2a{letter-spacing:-0.426667pt;}
.ls18{letter-spacing:-0.373333pt;}
.ls39{letter-spacing:-0.320000pt;}
.ls7c{letter-spacing:-0.317333pt;}
.ls80{letter-spacing:-0.272000pt;}
.ls2b{letter-spacing:-0.266667pt;}
.ls43{letter-spacing:-0.264202pt;}
.ls7f{letter-spacing:-0.226667pt;}
.ls2c{letter-spacing:-0.213333pt;}
.ls7d{letter-spacing:-0.181333pt;}
.ls14{letter-spacing:-0.160000pt;}
.ls30{letter-spacing:-0.151446pt;}
.lsa1{letter-spacing:-0.136000pt;}
.ls15{letter-spacing:-0.106667pt;}
.ls7e{letter-spacing:-0.090667pt;}
.ls3e{letter-spacing:-0.088342pt;}
.ls40{letter-spacing:-0.088067pt;}
.ls2d{letter-spacing:-0.053333pt;}
.ls81{letter-spacing:-0.045333pt;}
.ls2f{letter-spacing:-0.039597pt;}
.ls0{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.000033pt;}
.lsd{letter-spacing:0.011719pt;}
.ls38{letter-spacing:0.044034pt;}
.ls5f{letter-spacing:0.045333pt;}
.ls19{letter-spacing:0.053333pt;}
.ls44{letter-spacing:0.088342pt;}
.ls62{letter-spacing:0.090667pt;}
.ls6{letter-spacing:0.106667pt;}
.ls5c{letter-spacing:0.133333pt;}
.ls6b{letter-spacing:0.136000pt;}
.ls12{letter-spacing:0.158926pt;}
.ls5{letter-spacing:0.160000pt;}
.ls5d{letter-spacing:0.181333pt;}
.ls10{letter-spacing:0.186667pt;}
.ls84{letter-spacing:0.199467pt;}
.ls86{letter-spacing:0.208533pt;}
.ls92{letter-spacing:0.213047pt;}
.ls2{letter-spacing:0.213333pt;}
.ls11{letter-spacing:0.226667pt;}
.ls5a{letter-spacing:0.240000pt;}
.ls63{letter-spacing:0.256000pt;}
.ls4{letter-spacing:0.266667pt;}
.ls6e{letter-spacing:0.272000pt;}
.ls5b{letter-spacing:0.293333pt;}
.ls60{letter-spacing:0.317333pt;}
.ls8{letter-spacing:0.320000pt;}
.lsa8{letter-spacing:0.330920pt;}
.ls4e{letter-spacing:0.346667pt;}
.ls3f{letter-spacing:0.352269pt;}
.ls64{letter-spacing:0.362667pt;}
.ls9{letter-spacing:0.373333pt;}
.ls57{letter-spacing:0.379232pt;}
.ls61{letter-spacing:0.408000pt;}
.ls1d{letter-spacing:0.426667pt;}
.ls41{letter-spacing:0.440336pt;}
.ls51{letter-spacing:0.453333pt;}
.ls88{letter-spacing:0.457857pt;}
.lsa0{letter-spacing:0.476000pt;}
.lsc{letter-spacing:0.480000pt;}
.ls47{letter-spacing:0.488118pt;}
.ls66{letter-spacing:0.498667pt;}
.ls1f{letter-spacing:0.506667pt;}
.ls85{letter-spacing:0.521333pt;}
.lsa{letter-spacing:0.533333pt;}
.ls6f{letter-spacing:0.544000pt;}
.ls31{letter-spacing:0.560000pt;}
.lsb{letter-spacing:0.586667pt;}
.ls83{letter-spacing:0.589333pt;}
.ls6a{letter-spacing:0.612000pt;}
.ls1b{letter-spacing:0.613333pt;}
.ls75{letter-spacing:0.634667pt;}
.lsf{letter-spacing:0.640000pt;}
.ls87{letter-spacing:0.657333pt;}
.ls68{letter-spacing:0.680000pt;}
.ls7{letter-spacing:0.693333pt;}
.ls69{letter-spacing:0.725333pt;}
.ls21{letter-spacing:0.746667pt;}
.ls99{letter-spacing:0.748000pt;}
.ls46{letter-spacing:0.748775pt;}
.ls6c{letter-spacing:0.770667pt;}
.ls34{letter-spacing:0.773333pt;}
.ls1e{letter-spacing:0.800000pt;}
.ls74{letter-spacing:0.816000pt;}
.lsaa{letter-spacing:0.838667pt;}
.ls3{letter-spacing:0.853333pt;}
.ls5e{letter-spacing:0.861333pt;}
.ls71{letter-spacing:0.870393pt;}
.ls1a{letter-spacing:0.906667pt;}
.ls59{letter-spacing:0.933333pt;}
.ls8a{letter-spacing:0.952000pt;}
.lse{letter-spacing:0.960000pt;}
.ls20{letter-spacing:0.986667pt;}
.ls6d{letter-spacing:0.997333pt;}
.ls37{letter-spacing:1.013333pt;}
.ls56{letter-spacing:1.040000pt;}
.ls78{letter-spacing:1.042667pt;}
.ls1c{letter-spacing:1.066667pt;}
.ls72{letter-spacing:1.088000pt;}
.ls36{letter-spacing:1.120000pt;}
.ls7b{letter-spacing:1.133333pt;}
.lsa7{letter-spacing:1.156000pt;}
.ls35{letter-spacing:1.173333pt;}
.ls9a{letter-spacing:1.201333pt;}
.ls8b{letter-spacing:1.224000pt;}
.ls33{letter-spacing:1.226667pt;}
.ls98{letter-spacing:1.269333pt;}
.ls16{letter-spacing:1.280000pt;}
.ls8c{letter-spacing:1.292000pt;}
.ls58{letter-spacing:1.306667pt;}
.ls93{letter-spacing:1.314667pt;}
.ls32{letter-spacing:1.333333pt;}
.ls55{letter-spacing:1.360000pt;}
.ls4c{letter-spacing:1.386667pt;}
.ls67{letter-spacing:1.405333pt;}
.ls4d{letter-spacing:1.440000pt;}
.ls8e{letter-spacing:1.450667pt;}
.ls45{letter-spacing:1.493333pt;}
.ls91{letter-spacing:1.496000pt;}
.ls9b{letter-spacing:1.586667pt;}
.ls70{letter-spacing:1.595702pt;}
.ls65{letter-spacing:1.604782pt;}
.ls95{letter-spacing:1.632000pt;}
.ls52{letter-spacing:1.653333pt;}
.ls90{letter-spacing:1.677333pt;}
.ls53{letter-spacing:1.706667pt;}
.ls9e{letter-spacing:1.745333pt;}
.lsa2{letter-spacing:1.768000pt;}
.ls77{letter-spacing:1.790667pt;}
.ls89{letter-spacing:1.858667pt;}
.ls9c{letter-spacing:1.904000pt;}
.ls76{letter-spacing:1.949333pt;}
.lsa5{letter-spacing:1.994667pt;}
.ls73{letter-spacing:2.039982pt;}
.ls8f{letter-spacing:2.207733pt;}
.ls7a{letter-spacing:2.244000pt;}
.lsa6{letter-spacing:2.370933pt;}
.ls96{letter-spacing:2.457051pt;}
.ls79{letter-spacing:2.475200pt;}
.ls94{letter-spacing:2.561318pt;}
.lsa9{letter-spacing:2.561319pt;}
.ls97{letter-spacing:2.810667pt;}
.lsab{letter-spacing:2.828790pt;}
.ls82{letter-spacing:2.982926pt;}
.lsa3{letter-spacing:3.218667pt;}
.ls8d{letter-spacing:3.236776pt;}
.ls1{letter-spacing:3.546667pt;}
.ls9f{letter-spacing:5.621333pt;}
.lsa4{letter-spacing:6.410133pt;}
.ls9d{letter-spacing:6.917867pt;}
.ls2e{letter-spacing:234.528138pt;}
.ls26{letter-spacing:236.423065pt;}
.ls23{letter-spacing:236.436401pt;}
.ls24{letter-spacing:236.515283pt;}
.ls25{letter-spacing:236.633600pt;}
.ls22{letter-spacing:492.868340pt;}
.ws4a{word-spacing:-236.515283pt;}
.ws4b{word-spacing:-234.528138pt;}
.ws80{word-spacing:-14.666667pt;}
.ws4d{word-spacing:-14.560000pt;}
.wsa3{word-spacing:-14.293333pt;}
.ws8e{word-spacing:-14.186667pt;}
.ws7f{word-spacing:-14.133333pt;}
.ws91{word-spacing:-14.080000pt;}
.ws25{word-spacing:-13.973333pt;}
.ws54{word-spacing:-13.866667pt;}
.ws8c{word-spacing:-13.813333pt;}
.ws8f{word-spacing:-13.760000pt;}
.ws74{word-spacing:-13.653333pt;}
.ws26{word-spacing:-13.600000pt;}
.ws8d{word-spacing:-13.546667pt;}
.ws55{word-spacing:-13.440000pt;}
.ws24{word-spacing:-13.333333pt;}
.ws27{word-spacing:-13.280000pt;}
.ws81{word-spacing:-13.226667pt;}
.wsab{word-spacing:-13.184000pt;}
.ws6{word-spacing:-13.173333pt;}
.wsd8{word-spacing:-13.101333pt;}
.wsa4{word-spacing:-13.066667pt;}
.ws90{word-spacing:-12.960000pt;}
.ws8{word-spacing:-12.928000pt;}
.wsd7{word-spacing:-12.829333pt;}
.ws82{word-spacing:-12.800000pt;}
.wsf6{word-spacing:-12.602667pt;}
.wsad{word-spacing:-12.194667pt;}
.wsd6{word-spacing:-11.968000pt;}
.wsd5{word-spacing:-11.877333pt;}
.wsac{word-spacing:-11.560000pt;}
.ws5a{word-spacing:-11.448736pt;}
.wsaa{word-spacing:-11.424000pt;}
.ws59{word-spacing:-11.360669pt;}
.ws4c{word-spacing:-11.333333pt;}
.wsd4{word-spacing:-11.288000pt;}
.wsa2{word-spacing:-11.088000pt;}
.ws5c{word-spacing:-11.052434pt;}
.ws58{word-spacing:-11.042800pt;}
.ws3{word-spacing:-11.040000pt;}
.ws5{word-spacing:-10.986667pt;}
.ws5d{word-spacing:-10.954457pt;}
.ws5b{word-spacing:-10.744198pt;}
.ws7{word-spacing:-10.240000pt;}
.wsa9{word-spacing:-9.565333pt;}
.ws2{word-spacing:-8.885333pt;}
.ws9{word-spacing:-7.933333pt;}
.ws56{word-spacing:-7.774131pt;}
.ws4{word-spacing:-7.728000pt;}
.wsfa{word-spacing:-1.949333pt;}
.wsf2{word-spacing:-1.904000pt;}
.wscf{word-spacing:-1.813333pt;}
.wsf4{word-spacing:-1.768000pt;}
.ws1a{word-spacing:-1.440000pt;}
.wse5{word-spacing:-1.405333pt;}
.ws86{word-spacing:-1.386667pt;}
.wsd{word-spacing:-1.333333pt;}
.wse3{word-spacing:-1.314667pt;}
.ws35{word-spacing:-1.280000pt;}
.ws101{word-spacing:-1.269333pt;}
.ws84{word-spacing:-1.226667pt;}
.wsd2{word-spacing:-1.178667pt;}
.ws40{word-spacing:-1.173333pt;}
.wsb0{word-spacing:-1.133333pt;}
.ws6b{word-spacing:-1.120000pt;}
.wscc{word-spacing:-1.088000pt;}
.ws89{word-spacing:-1.066667pt;}
.wsd1{word-spacing:-1.042667pt;}
.ws6a{word-spacing:-1.013333pt;}
.wsd9{word-spacing:-0.997333pt;}
.ws44{word-spacing:-0.960000pt;}
.wsb6{word-spacing:-0.952000pt;}
.ws30{word-spacing:-0.906667pt;}
.wsb3{word-spacing:-0.861333pt;}
.ws33{word-spacing:-0.853333pt;}
.wsfd{word-spacing:-0.816000pt;}
.ws3e{word-spacing:-0.800000pt;}
.wsdf{word-spacing:-0.770667pt;}
.ws66{word-spacing:-0.746667pt;}
.wsdb{word-spacing:-0.725333pt;}
.ws45{word-spacing:-0.693333pt;}
.wsb7{word-spacing:-0.680000pt;}
.wsf{word-spacing:-0.640000pt;}
.wsb8{word-spacing:-0.634667pt;}
.wsf7{word-spacing:-0.589333pt;}
.ws39{word-spacing:-0.586667pt;}
.ws20{word-spacing:-0.544000pt;}
.ws12{word-spacing:-0.533333pt;}
.wsa{word-spacing:-0.506667pt;}
.wsbc{word-spacing:-0.498667pt;}
.ws14{word-spacing:-0.480000pt;}
.wsc7{word-spacing:-0.453333pt;}
.ws1d{word-spacing:-0.426667pt;}
.wsc0{word-spacing:-0.408000pt;}
.ws79{word-spacing:-0.373333pt;}
.wsbb{word-spacing:-0.362667pt;}
.ws64{word-spacing:-0.320000pt;}
.wsd0{word-spacing:-0.317333pt;}
.wse{word-spacing:-0.266667pt;}
.wsb2{word-spacing:-0.226667pt;}
.ws96{word-spacing:-0.213333pt;}
.ws3c{word-spacing:-0.160000pt;}
.wsc3{word-spacing:-0.136000pt;}
.ws67{word-spacing:-0.106667pt;}
.wsdc{word-spacing:-0.090667pt;}
.ws3b{word-spacing:-0.053333pt;}
.ws2b{word-spacing:-0.050482pt;}
.ws73{word-spacing:-0.044034pt;}
.ws1{word-spacing:-0.042667pt;}
.ws29{word-spacing:-0.039460pt;}
.ws0{word-spacing:0.000000pt;}
.ws13{word-spacing:0.053333pt;}
.ws71{word-spacing:0.088067pt;}
.wsc8{word-spacing:0.090667pt;}
.ws2a{word-spacing:0.100964pt;}
.ws62{word-spacing:0.106667pt;}
.wsba{word-spacing:0.136000pt;}
.ws78{word-spacing:0.160000pt;}
.wsb9{word-spacing:0.181333pt;}
.ws43{word-spacing:0.213333pt;}
.wsae{word-spacing:0.226667pt;}
.ws36{word-spacing:0.266667pt;}
.wsaf{word-spacing:0.317333pt;}
.ws34{word-spacing:0.320000pt;}
.ws6f{word-spacing:0.373333pt;}
.wsc6{word-spacing:0.408000pt;}
.wsa8{word-spacing:0.426667pt;}
.wsd3{word-spacing:0.453333pt;}
.ws2f{word-spacing:0.480000pt;}
.wsdd{word-spacing:0.498667pt;}
.ws76{word-spacing:0.533333pt;}
.wsff{word-spacing:0.544000pt;}
.ws19{word-spacing:0.586667pt;}
.wscb{word-spacing:0.589333pt;}
.wsc1{word-spacing:0.634667pt;}
.wsc{word-spacing:0.640000pt;}
.ws102{word-spacing:0.680000pt;}
.ws1b{word-spacing:0.693333pt;}
.ws7d{word-spacing:0.725333pt;}
.ws42{word-spacing:0.746667pt;}
.ws100{word-spacing:0.770667pt;}
.ws38{word-spacing:0.800000pt;}
.wse9{word-spacing:0.816000pt;}
.ws93{word-spacing:0.853333pt;}
.ws6d{word-spacing:0.906667pt;}
.ws72{word-spacing:0.924706pt;}
.wse8{word-spacing:0.952000pt;}
.ws60{word-spacing:0.960000pt;}
.ws6e{word-spacing:1.013333pt;}
.wsb4{word-spacing:1.042667pt;}
.ws2e{word-spacing:1.066667pt;}
.wscd{word-spacing:1.088000pt;}
.ws1e{word-spacing:1.120000pt;}
.wsb5{word-spacing:1.133333pt;}
.ws48{word-spacing:1.173333pt;}
.wsfe{word-spacing:1.178667pt;}
.ws17{word-spacing:1.226667pt;}
.ws41{word-spacing:1.280000pt;}
.wsee{word-spacing:1.314667pt;}
.ws11{word-spacing:1.333333pt;}
.wsbf{word-spacing:1.360000pt;}
.ws51{word-spacing:1.386667pt;}
.ws16{word-spacing:1.440000pt;}
.ws18{word-spacing:1.493333pt;}
.wsde{word-spacing:1.496000pt;}
.wse2{word-spacing:1.541333pt;}
.ws92{word-spacing:1.546667pt;}
.wsc2{word-spacing:1.586667pt;}
.ws50{word-spacing:1.600000pt;}
.wsc4{word-spacing:1.632000pt;}
.ws31{word-spacing:1.653333pt;}
.wsea{word-spacing:1.677333pt;}
.ws52{word-spacing:1.706667pt;}
.wsbd{word-spacing:1.722667pt;}
.ws75{word-spacing:1.760000pt;}
.wsf8{word-spacing:1.768000pt;}
.ws46{word-spacing:1.813333pt;}
.wsbe{word-spacing:1.858667pt;}
.ws2c{word-spacing:1.866667pt;}
.wsec{word-spacing:1.904000pt;}
.ws3f{word-spacing:1.920000pt;}
.ws88{word-spacing:1.973333pt;}
.wsed{word-spacing:1.994667pt;}
.ws6c{word-spacing:2.026667pt;}
.wsda{word-spacing:2.040000pt;}
.ws49{word-spacing:2.080000pt;}
.wse4{word-spacing:2.085333pt;}
.ws47{word-spacing:2.133333pt;}
.wsf3{word-spacing:2.176000pt;}
.ws32{word-spacing:2.186667pt;}
.wsc5{word-spacing:2.221333pt;}
.wsb{word-spacing:2.240000pt;}
.wsef{word-spacing:2.266667pt;}
.ws7b{word-spacing:2.346667pt;}
.wsfc{word-spacing:2.357333pt;}
.ws3a{word-spacing:2.400000pt;}
.wse1{word-spacing:2.448000pt;}
.ws4f{word-spacing:2.453333pt;}
.ws23{word-spacing:2.493333pt;}
.ws2d{word-spacing:2.506667pt;}
.wseb{word-spacing:2.538667pt;}
.ws5f{word-spacing:2.560000pt;}
.ws1c{word-spacing:2.613333pt;}
.wse7{word-spacing:2.629333pt;}
.ws1f{word-spacing:2.666667pt;}
.ws22{word-spacing:2.720000pt;}
.wsa7{word-spacing:2.773333pt;}
.wsa5{word-spacing:2.826667pt;}
.ws70{word-spacing:2.880000pt;}
.ws15{word-spacing:2.933333pt;}
.ws77{word-spacing:3.040000pt;}
.ws69{word-spacing:3.093333pt;}
.wsf0{word-spacing:3.128000pt;}
.ws9f{word-spacing:3.146667pt;}
.ws68{word-spacing:3.200000pt;}
.ws3d{word-spacing:3.253333pt;}
.wsa6{word-spacing:3.306667pt;}
.ws7e{word-spacing:3.309333pt;}
.wsca{word-spacing:3.354667pt;}
.ws9e{word-spacing:3.360000pt;}
.ws8b{word-spacing:3.413333pt;}
.ws94{word-spacing:3.466667pt;}
.ws65{word-spacing:3.520000pt;}
.wse6{word-spacing:3.536000pt;}
.ws97{word-spacing:3.680000pt;}
.ws61{word-spacing:3.733333pt;}
.wsb1{word-spacing:3.808000pt;}
.wsf5{word-spacing:3.853333pt;}
.ws9b{word-spacing:3.893333pt;}
.ws63{word-spacing:3.946667pt;}
.ws37{word-spacing:4.000000pt;}
.wsce{word-spacing:4.080000pt;}
.ws95{word-spacing:4.106667pt;}
.ws53{word-spacing:4.160000pt;}
.ws83{word-spacing:4.213333pt;}
.ws9d{word-spacing:4.320000pt;}
.wse0{word-spacing:4.352000pt;}
.ws5e{word-spacing:4.480000pt;}
.ws4e{word-spacing:4.586667pt;}
.ws85{word-spacing:4.746667pt;}
.wsf1{word-spacing:4.760000pt;}
.ws9c{word-spacing:4.800000pt;}
.wsf9{word-spacing:4.805333pt;}
.wsfb{word-spacing:4.986667pt;}
.ws87{word-spacing:5.013333pt;}
.ws8a{word-spacing:5.120000pt;}
.wsc9{word-spacing:5.168000pt;}
.ws7a{word-spacing:5.386667pt;}
.ws7c{word-spacing:5.576000pt;}
.ws103{word-spacing:7.525333pt;}
.ws104{word-spacing:9.837333pt;}
.wsa1{word-spacing:11.605333pt;}
.ws10{word-spacing:13.333333pt;}
.wsa0{word-spacing:40.528000pt;}
.ws21{word-spacing:64.237333pt;}
.ws28{word-spacing:177.116477pt;}
.ws98{word-spacing:731.861333pt;}
.ws9a{word-spacing:849.456000pt;}
.ws57{word-spacing:868.974410pt;}
.ws99{word-spacing:872.122667pt;}
._a{margin-left:-2630.421398pt;}
._15{margin-left:-54.651731pt;}
._16{margin-left:-50.587378pt;}
._11{margin-left:-48.417093pt;}
._13{margin-left:-45.733831pt;}
._10{margin-left:-40.643525pt;}
._f{margin-left:-39.301894pt;}
._e{margin-left:-36.658092pt;}
._14{margin-left:-34.882404pt;}
._12{margin-left:-32.869958pt;}
._38{margin-left:-29.194667pt;}
._4{margin-left:-14.733333pt;}
._25{margin-left:-11.512000pt;}
._2a{margin-left:-9.429883pt;}
._2c{margin-left:-5.130667pt;}
._1{margin-left:-4.109067pt;}
._3{margin-left:-2.709333pt;}
._0{margin-left:-1.450667pt;}
._2{width:1.402667pt;}
._c{width:2.560000pt;}
._2b{width:3.456000pt;}
._23{width:4.896000pt;}
._3b{width:5.961333pt;}
._8{width:8.613333pt;}
._3a{width:12.829333pt;}
._d{width:13.872000pt;}
._5{width:16.320000pt;}
._21{width:32.959961pt;}
._b{width:36.447995pt;}
._7{width:48.552000pt;}
._6{width:64.237333pt;}
._27{width:102.951961pt;}
._1a{width:167.485295pt;}
._18{width:245.570628pt;}
._1c{width:257.946628pt;}
._22{width:279.253295pt;}
._1b{width:297.842628pt;}
._20{width:301.783961pt;}
._29{width:308.039961pt;}
._28{width:340.770628pt;}
._1e{width:363.437295pt;}
._19{width:406.277295pt;}
._1f{width:411.263961pt;}
._24{width:413.847961pt;}
._1d{width:440.623694pt;}
._26{width:443.994628pt;}
._32{width:934.864000pt;}
._35{width:935.906667pt;}
._2d{width:976.179725pt;}
._30{width:983.778667pt;}
._2f{width:996.290667pt;}
._34{width:1008.938667pt;}
._2e{width:1019.050667pt;}
._31{width:1029.112000pt;}
._33{width:1049.194667pt;}
._37{width:1064.290667pt;}
._36{width:1087.002667pt;}
._39{width:1749.819784pt;}
._17{width:1771.352499pt;}
._9{width:2078.533398pt;}
.fs9{font-size:31.733332pt;}
.fs4{font-size:37.333333pt;}
.fsa{font-size:39.438933pt;}
.fse{font-size:39.459733pt;}
.fsb{font-size:39.596799pt;}
.fs5{font-size:42.666667pt;}
.fsc{font-size:43.382933pt;}
.fsd{font-size:43.540800pt;}
.fs12{font-size:44.033600pt;}
.fs11{font-size:44.171199pt;}
.fs6{font-size:45.333333pt;}
.fsf{font-size:50.482132pt;}
.fs10{font-size:50.639465pt;}
.fs7{font-size:50.666667pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs13{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs8{font-size:85.333333pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y9e{bottom:2.156657pt;}
.y21{bottom:61.181335pt;}
.y4{bottom:86.333337pt;}
.y5a{bottom:100.394933pt;}
.y195{bottom:100.400267pt;}
.y81{bottom:100.937581pt;}
.y1f3{bottom:101.986938pt;}
.yf0{bottom:102.110921pt;}
.y2ea{bottom:103.842272pt;}
.y90{bottom:104.542562pt;}
.y2a8{bottom:108.840272pt;}
.y154{bottom:112.788269pt;}
.y59{bottom:113.722933pt;}
.y194{bottom:113.728267pt;}
.y32b{bottom:116.985620pt;}
.y2e9{bottom:117.170272pt;}
.y36c{bottom:117.325606pt;}
.y80{bottom:117.604248pt;}
.y1f2{bottom:118.653605pt;}
.yef{bottom:118.777588pt;}
.y2a7{bottom:122.168272pt;}
.y213{bottom:123.718933pt;}
.y20{bottom:123.790666pt;}
.y177{bottom:124.881063pt;}
.y193{bottom:127.056267pt;}
.y32a{bottom:130.313620pt;}
.y2e8{bottom:130.498272pt;}
.y36b{bottom:130.653606pt;}
.y58{bottom:131.584269pt;}
.y273{bottom:133.362956pt;}
.y7f{bottom:134.270915pt;}
.y1f1{bottom:135.320272pt;}
.yee{bottom:135.444255pt;}
.y2a6{bottom:135.496272pt;}
.ydd{bottom:138.584021pt;}
.y212{bottom:140.385600pt;}
.y176{bottom:141.547729pt;}
.y329{bottom:143.641620pt;}
.y2e7{bottom:143.826272pt;}
.y36a{bottom:143.981606pt;}
.y192{bottom:144.917603pt;}
.y9f{bottom:146.722249pt;}
.y157{bottom:147.051331pt;}
.y57{bottom:147.103603pt;}
.y2a5{bottom:148.824272pt;}
.y272{bottom:150.029622pt;}
.y1e7{bottom:150.928304pt;}
.y7e{bottom:150.937581pt;}
.ydc{bottom:151.912021pt;}
.y241{bottom:151.986898pt;}
.y1f0{bottom:151.986938pt;}
.yed{bottom:152.110921pt;}
.y152{bottom:153.621602pt;}
.y328{bottom:156.969620pt;}
.y211{bottom:157.052266pt;}
.y2e6{bottom:157.154272pt;}
.y369{bottom:157.309606pt;}
.y175{bottom:158.214396pt;}
.y156{bottom:160.329997pt;}
.y56{bottom:160.431603pt;}
.y2a4{bottom:162.152272pt;}
.ydb{bottom:165.240021pt;}
.y4a{bottom:166.187866pt;}
.y271{bottom:166.696289pt;}
.y1e6{bottom:167.594971pt;}
.y7d{bottom:167.604248pt;}
.y240{bottom:168.653564pt;}
.y1ef{bottom:168.653605pt;}
.yec{bottom:168.777588pt;}
.y327{bottom:170.297620pt;}
.y2e5{bottom:170.482272pt;}
.y368{bottom:170.637606pt;}
.y210{bottom:173.718933pt;}
.y174{bottom:174.881063pt;}
.y17{bottom:175.052000pt;}
.y2a3{bottom:175.480272pt;}
.y55{bottom:178.292928pt;}
.yda{bottom:178.568021pt;}
.y49{bottom:182.854533pt;}
.y270{bottom:183.362956pt;}
.y326{bottom:183.625620pt;}
.y2e4{bottom:183.810272pt;}
.y367{bottom:183.965606pt;}
.y1e5{bottom:184.261637pt;}
.y7c{bottom:184.270915pt;}
.y23f{bottom:185.320231pt;}
.y1ee{bottom:185.320272pt;}
.yeb{bottom:185.444255pt;}
.y1f{bottom:186.238666pt;}
.y16{bottom:186.252002pt;}
.y2a2{bottom:188.808272pt;}
.y190{bottom:189.590393pt;}
.y20f{bottom:190.385600pt;}
.y231{bottom:191.444417pt;}
.y173{bottom:191.547729pt;}
.yd9{bottom:191.896021pt;}
.y54{bottom:193.812262pt;}
.y153{bottom:194.594259pt;}
.y325{bottom:196.953620pt;}
.y2e3{bottom:197.138272pt;}
.y366{bottom:197.293606pt;}
.y1e{bottom:197.438668pt;}
.y15{bottom:197.452004pt;}
.y48{bottom:199.521200pt;}
.y26f{bottom:200.029622pt;}
.y1e4{bottom:200.928304pt;}
.y7b{bottom:200.937581pt;}
.y1b6{bottom:201.986898pt;}
.y1ed{bottom:201.986938pt;}
.yea{bottom:202.110921pt;}
.y2a1{bottom:202.136272pt;}
.yd8{bottom:205.224021pt;}
.y18f{bottom:206.257060pt;}
.y20e{bottom:207.052266pt;}
.y53{bottom:207.140262pt;}
.y9d{bottom:207.943604pt;}
.y230{bottom:208.111084pt;}
.y172{bottom:208.214396pt;}
.y1d{bottom:208.638670pt;}
.y14{bottom:208.651996pt;}
.y324{bottom:210.281620pt;}
.y2e2{bottom:210.466272pt;}
.y365{bottom:210.621606pt;}
.y2a0{bottom:215.464272pt;}
.y151{bottom:215.573998pt;}
.y47{bottom:216.187866pt;}
.y26e{bottom:216.696289pt;}
.y1e3{bottom:217.594971pt;}
.y7a{bottom:217.604248pt;}
.yd7{bottom:218.552021pt;}
.y1b5{bottom:218.653564pt;}
.y1ec{bottom:218.653605pt;}
.ye9{bottom:218.777588pt;}
.y155{bottom:219.052673pt;}
.y18e{bottom:222.923726pt;}
.y323{bottom:223.609620pt;}
.y2e1{bottom:223.794272pt;}
.y364{bottom:223.949606pt;}
.y22f{bottom:224.777751pt;}
.y171{bottom:224.881063pt;}
.y52{bottom:225.001607pt;}
.y29f{bottom:228.792272pt;}
.y150{bottom:228.901998pt;}
.y1c{bottom:231.038664pt;}
.y13{bottom:231.052000pt;}
.yd6{bottom:231.880021pt;}
.y46{bottom:232.854533pt;}
.y26d{bottom:233.362956pt;}
.y1e2{bottom:234.261637pt;}
.y79{bottom:234.270915pt;}
.y1b4{bottom:235.320231pt;}
.y1eb{bottom:235.320272pt;}
.ye8{bottom:235.444255pt;}
.y322{bottom:236.937620pt;}
.y2e0{bottom:237.122272pt;}
.y363{bottom:237.277606pt;}
.y18d{bottom:239.590393pt;}
.y20d{bottom:240.385600pt;}
.y22e{bottom:241.444417pt;}
.y170{bottom:241.547729pt;}
.y29e{bottom:242.120272pt;}
.y1b{bottom:242.238666pt;}
.y12{bottom:242.252002pt;}
.yd5{bottom:245.208021pt;}
.y51{bottom:247.244793pt;}
.y45{bottom:249.521200pt;}
.y26c{bottom:250.029622pt;}
.y321{bottom:250.265620pt;}
.y2df{bottom:250.450272pt;}
.y362{bottom:250.605606pt;}
.y1e1{bottom:250.928304pt;}
.y78{bottom:250.937581pt;}
.y1f4{bottom:251.981605pt;}
.y1b3{bottom:251.986898pt;}
.y1ea{bottom:251.986938pt;}
.ye7{bottom:252.110921pt;}
.y1a{bottom:253.438668pt;}
.y11{bottom:253.451999pt;}
.y29d{bottom:255.448272pt;}
.y18c{bottom:256.257060pt;}
.y22d{bottom:258.111084pt;}
.y16f{bottom:258.214396pt;}
.yd4{bottom:258.536021pt;}
.y50{bottom:260.572793pt;}
.y320{bottom:263.593620pt;}
.y2de{bottom:263.778272pt;}
.y361{bottom:263.933606pt;}
.y44{bottom:266.187866pt;}
.y26b{bottom:266.696289pt;}
.y1e0{bottom:267.594971pt;}
.y77{bottom:267.604248pt;}
.y1b2{bottom:268.653564pt;}
.y13b{bottom:268.653605pt;}
.y29c{bottom:268.776272pt;}
.ye6{bottom:268.777588pt;}
.yd3{bottom:271.864021pt;}
.y18b{bottom:272.923747pt;}
.y20c{bottom:273.718953pt;}
.y22c{bottom:274.777751pt;}
.y16e{bottom:274.881063pt;}
.y19{bottom:275.838667pt;}
.y10{bottom:275.852001pt;}
.y31f{bottom:276.921620pt;}
.y2dd{bottom:277.106272pt;}
.y360{bottom:277.261606pt;}
.y4f{bottom:280.610126pt;}
.y29b{bottom:282.104272pt;}
.y43{bottom:282.854533pt;}
.y26a{bottom:283.362956pt;}
.y1df{bottom:284.261637pt;}
.y76{bottom:284.270915pt;}
.y1b1{bottom:285.320231pt;}
.y13a{bottom:285.320272pt;}
.ye5{bottom:285.444255pt;}
.y18{bottom:287.038667pt;}
.yf{bottom:287.052000pt;}
.yd2{bottom:288.501355pt;}
.y18a{bottom:289.590413pt;}
.y31e{bottom:290.249620pt;}
.y20b{bottom:290.385620pt;}
.y2dc{bottom:290.434272pt;}
.y35f{bottom:290.589606pt;}
.y22b{bottom:291.444417pt;}
.y16d{bottom:291.547729pt;}
.y4e{bottom:293.938126pt;}
.y29a{bottom:295.432272pt;}
.y42{bottom:299.521200pt;}
.y269{bottom:300.029622pt;}
.y1de{bottom:300.928304pt;}
.y75{bottom:300.937581pt;}
.yd1{bottom:301.829355pt;}
.y1b0{bottom:301.986898pt;}
.y139{bottom:301.986938pt;}
.ye4{bottom:302.110921pt;}
.y31d{bottom:303.577620pt;}
.y2db{bottom:303.762272pt;}
.y35e{bottom:303.917606pt;}
.y189{bottom:306.257080pt;}
.y20a{bottom:307.052287pt;}
.y22a{bottom:308.111084pt;}
.y16c{bottom:308.214396pt;}
.y299{bottom:308.760272pt;}
.ye{bottom:309.452000pt;}
.y4d{bottom:313.975460pt;}
.yd0{bottom:315.157355pt;}
.y41{bottom:316.187866pt;}
.y268{bottom:316.696289pt;}
.y31c{bottom:316.905620pt;}
.y2da{bottom:317.090272pt;}
.y35d{bottom:317.245606pt;}
.y1dd{bottom:317.594971pt;}
.y74{bottom:317.604248pt;}
.y1af{bottom:318.653564pt;}
.y138{bottom:318.653605pt;}
.ye3{bottom:318.777588pt;}
.y298{bottom:322.088272pt;}
.y188{bottom:322.923747pt;}
.y209{bottom:323.718953pt;}
.y229{bottom:324.777751pt;}
.y16b{bottom:324.881063pt;}
.y4c{bottom:327.303460pt;}
.ycf{bottom:328.485355pt;}
.y31b{bottom:330.233620pt;}
.y2d9{bottom:330.418272pt;}
.y35c{bottom:330.573606pt;}
.y40{bottom:332.854533pt;}
.y267{bottom:333.362956pt;}
.y1dc{bottom:334.261637pt;}
.y73{bottom:334.270915pt;}
.y1ae{bottom:335.320231pt;}
.y137{bottom:335.320272pt;}
.y297{bottom:335.416272pt;}
.ye2{bottom:335.444255pt;}
.y187{bottom:339.590413pt;}
.y208{bottom:340.385620pt;}
.y228{bottom:341.444417pt;}
.y16a{bottom:341.547729pt;}
.yce{bottom:341.813355pt;}
.y31a{bottom:343.561620pt;}
.y2d8{bottom:343.746272pt;}
.yd{bottom:343.809333pt;}
.y35b{bottom:343.901606pt;}
.y296{bottom:348.744272pt;}
.y3f{bottom:349.521200pt;}
.y266{bottom:350.029622pt;}
.y1db{bottom:350.928304pt;}
.y72{bottom:350.937581pt;}
.y1ad{bottom:351.986898pt;}
.y136{bottom:351.986938pt;}
.ye1{bottom:352.110921pt;}
.y4b{bottom:354.696126pt;}
.ycd{bottom:355.141355pt;}
.y186{bottom:356.257080pt;}
.y319{bottom:356.889620pt;}
.y207{bottom:357.052287pt;}
.y2d7{bottom:357.074272pt;}
.y35a{bottom:357.229606pt;}
.y227{bottom:358.111084pt;}
.y169{bottom:358.214396pt;}
.y295{bottom:362.072272pt;}
.yc{bottom:362.706666pt;}
.y3e{bottom:366.187866pt;}
.y265{bottom:366.696289pt;}
.y1da{bottom:367.594971pt;}
.y71{bottom:367.604248pt;}
.ycc{bottom:368.469355pt;}
.y1ac{bottom:368.653564pt;}
.y135{bottom:368.653605pt;}
.ye0{bottom:368.777588pt;}
.y318{bottom:370.217620pt;}
.y2d6{bottom:370.402272pt;}
.y359{bottom:370.557606pt;}
.y206{bottom:373.718953pt;}
.y226{bottom:374.777751pt;}
.y168{bottom:374.881063pt;}
.y294{bottom:375.400272pt;}
.ycb{bottom:381.797355pt;}
.y3d{bottom:382.854533pt;}
.y264{bottom:383.362956pt;}
.y317{bottom:383.545620pt;}
.y2d5{bottom:383.730272pt;}
.y358{bottom:383.885606pt;}
.y1d9{bottom:384.261637pt;}
.y70{bottom:384.270915pt;}
.y1ab{bottom:385.320231pt;}
.y134{bottom:385.320272pt;}
.ydf{bottom:385.444255pt;}
.y293{bottom:388.728272pt;}
.y185{bottom:389.590413pt;}
.y205{bottom:390.385620pt;}
.y225{bottom:391.444417pt;}
.y167{bottom:391.547729pt;}
.yca{bottom:395.125355pt;}
.y316{bottom:396.873620pt;}
.y2d4{bottom:397.058272pt;}
.y357{bottom:397.213606pt;}
.y3a{bottom:399.521200pt;}
.y263{bottom:400.029622pt;}
.y1d8{bottom:400.928304pt;}
.y6f{bottom:400.937581pt;}
.y1aa{bottom:401.986898pt;}
.y133{bottom:401.986938pt;}
.y292{bottom:402.056272pt;}
.yde{bottom:402.110921pt;}
.y204{bottom:407.052287pt;}
.y224{bottom:408.111084pt;}
.y166{bottom:408.214396pt;}
.yc9{bottom:408.453355pt;}
.y315{bottom:410.201620pt;}
.y2d3{bottom:410.386272pt;}
.y356{bottom:410.541606pt;}
.y291{bottom:415.384272pt;}
.y39{bottom:416.187866pt;}
.y262{bottom:416.696289pt;}
.y1d7{bottom:417.594971pt;}
.y6e{bottom:417.604248pt;}
.y1a9{bottom:418.653564pt;}
.y132{bottom:418.653605pt;}
.yc8{bottom:421.781355pt;}
.y184{bottom:422.923747pt;}
.y314{bottom:423.529620pt;}
.y2d2{bottom:423.714272pt;}
.y203{bottom:423.718953pt;}
.y355{bottom:423.869606pt;}
.y223{bottom:424.777751pt;}
.y165{bottom:424.881063pt;}
.y290{bottom:428.712272pt;}
.y38{bottom:432.854533pt;}
.y261{bottom:433.362956pt;}
.y1d6{bottom:434.261637pt;}
.y6d{bottom:434.270915pt;}
.yc7{bottom:435.109355pt;}
.y1a8{bottom:435.320231pt;}
.y131{bottom:435.320272pt;}
.y313{bottom:436.857620pt;}
.y2d1{bottom:437.042272pt;}
.y354{bottom:437.197606pt;}
.y183{bottom:439.590413pt;}
.y202{bottom:440.385620pt;}
.y222{bottom:441.444417pt;}
.y164{bottom:441.547729pt;}
.y28f{bottom:442.040272pt;}
.yb{bottom:446.990669pt;}
.y114{bottom:449.502279pt;}
.y37{bottom:449.521200pt;}
.y260{bottom:450.029622pt;}
.y312{bottom:450.185620pt;}
.y2d0{bottom:450.370272pt;}
.y353{bottom:450.525606pt;}
.y1d5{bottom:450.928304pt;}
.y6c{bottom:450.937581pt;}
.yc6{bottom:451.746688pt;}
.y1a7{bottom:451.986898pt;}
.y130{bottom:451.986938pt;}
.y28e{bottom:455.368272pt;}
.y182{bottom:456.257080pt;}
.y201{bottom:457.052287pt;}
.y221{bottom:458.111084pt;}
.y163{bottom:458.214396pt;}
.ya{bottom:462.990669pt;}
.y311{bottom:463.513620pt;}
.y2cf{bottom:463.698272pt;}
.y352{bottom:463.853606pt;}
.yc5{bottom:465.074688pt;}
.y36{bottom:466.187866pt;}
.y25f{bottom:466.696289pt;}
.y1d4{bottom:467.594971pt;}
.y6b{bottom:467.604248pt;}
.y1a6{bottom:468.653564pt;}
.y12f{bottom:468.653605pt;}
.y28d{bottom:468.696272pt;}
.y113{bottom:469.573704pt;}
.y181{bottom:472.923747pt;}
.y200{bottom:473.718953pt;}
.y220{bottom:474.772247pt;}
.y162{bottom:474.881063pt;}
.y310{bottom:476.841620pt;}
.y2ce{bottom:477.026272pt;}
.y351{bottom:477.181606pt;}
.y9{bottom:478.990666pt;}
.yc4{bottom:481.712021pt;}
.y28c{bottom:482.024272pt;}
.y35{bottom:482.854533pt;}
.y112{bottom:482.901704pt;}
.y25e{bottom:483.362956pt;}
.y1d3{bottom:484.261637pt;}
.y6a{bottom:484.270915pt;}
.y1a5{bottom:485.320231pt;}
.y12e{bottom:485.320272pt;}
.y180{bottom:489.590413pt;}
.y30f{bottom:490.169620pt;}
.y2cd{bottom:490.354272pt;}
.y1ff{bottom:490.385620pt;}
.y350{bottom:490.509606pt;}
.y21f{bottom:491.438914pt;}
.y161{bottom:491.547729pt;}
.y8{bottom:494.990666pt;}
.y28b{bottom:495.352272pt;}
.y111{bottom:496.229704pt;}
.yc3{bottom:498.349355pt;}
.y3c{bottom:499.521200pt;}
.y25d{bottom:500.029622pt;}
.y1d2{bottom:500.928304pt;}
.y69{bottom:500.937581pt;}
.y1a4{bottom:501.986898pt;}
.y12d{bottom:501.986938pt;}
.y30e{bottom:503.497620pt;}
.y2cc{bottom:503.682272pt;}
.y34f{bottom:503.837606pt;}
.y17f{bottom:506.257080pt;}
.y1fe{bottom:507.052287pt;}
.y21e{bottom:508.105581pt;}
.y160{bottom:508.214396pt;}
.y28a{bottom:508.680272pt;}
.y110{bottom:509.557704pt;}
.yc2{bottom:511.677355pt;}
.y34{bottom:516.182533pt;}
.y3b{bottom:516.187866pt;}
.y25c{bottom:516.696289pt;}
.y30d{bottom:516.825620pt;}
.y2cb{bottom:517.010272pt;}
.y34e{bottom:517.165606pt;}
.y1d1{bottom:517.594971pt;}
.y68{bottom:517.604248pt;}
.y1a3{bottom:518.653564pt;}
.y12c{bottom:518.653605pt;}
.y289{bottom:522.008272pt;}
.y10f{bottom:522.885704pt;}
.y17e{bottom:522.923747pt;}
.y1fd{bottom:523.718953pt;}
.y21d{bottom:524.772247pt;}
.y15f{bottom:524.881063pt;}
.yc1{bottom:528.314688pt;}
.y30c{bottom:530.153620pt;}
.y2ca{bottom:530.338272pt;}
.y34d{bottom:530.493606pt;}
.y33{bottom:532.854533pt;}
.y25b{bottom:533.362956pt;}
.y1d0{bottom:534.261637pt;}
.y67{bottom:534.270915pt;}
.y1a2{bottom:535.320231pt;}
.y12b{bottom:535.320272pt;}
.y288{bottom:535.336272pt;}
.y10e{bottom:536.213704pt;}
.y17d{bottom:539.590413pt;}
.y1fc{bottom:540.385620pt;}
.y21c{bottom:541.438914pt;}
.y15e{bottom:541.547729pt;}
.y30b{bottom:543.481620pt;}
.y2c9{bottom:543.666272pt;}
.y34c{bottom:543.821606pt;}
.yc0{bottom:544.952021pt;}
.y287{bottom:548.664272pt;}
.y10d{bottom:549.541704pt;}
.y25a{bottom:550.029622pt;}
.y1cf{bottom:550.928304pt;}
.y66{bottom:550.937581pt;}
.y1a1{bottom:551.986898pt;}
.y12a{bottom:551.986938pt;}
.y17c{bottom:556.257080pt;}
.y30a{bottom:556.809620pt;}
.y2c8{bottom:556.994272pt;}
.y1fb{bottom:557.052287pt;}
.y34b{bottom:557.149606pt;}
.y21b{bottom:558.105581pt;}
.y15d{bottom:558.214396pt;}
.ybf{bottom:561.589355pt;}
.y286{bottom:561.992272pt;}
.y10c{bottom:562.869704pt;}
.y259{bottom:566.696289pt;}
.y1ce{bottom:567.594971pt;}
.y65{bottom:567.604248pt;}
.y1a0{bottom:568.653564pt;}
.y129{bottom:568.653605pt;}
.y309{bottom:570.137620pt;}
.y2c7{bottom:570.322272pt;}
.y34a{bottom:570.477606pt;}
.y17b{bottom:572.923747pt;}
.y1fa{bottom:573.718953pt;}
.y7{bottom:573.786667pt;}
.y21a{bottom:574.772247pt;}
.y15c{bottom:574.881063pt;}
.ybe{bottom:574.917355pt;}
.y285{bottom:575.320272pt;}
.y10b{bottom:576.197704pt;}
.y32{bottom:582.854574pt;}
.y258{bottom:583.362956pt;}
.y308{bottom:583.465620pt;}
.y2c6{bottom:583.650272pt;}
.y349{bottom:583.805606pt;}
.y1cd{bottom:584.261637pt;}
.y64{bottom:584.270915pt;}
.y19f{bottom:585.320231pt;}
.y128{bottom:585.320272pt;}
.y10a{bottom:589.525704pt;}
.y17a{bottom:589.590413pt;}
.y1f9{bottom:590.385620pt;}
.y219{bottom:591.438914pt;}
.y15b{bottom:591.547729pt;}
.ybd{bottom:591.554688pt;}
.y6{bottom:592.685334pt;}
.y307{bottom:596.793620pt;}
.y2c5{bottom:596.978272pt;}
.y348{bottom:597.133606pt;}
.y257{bottom:600.029622pt;}
.y1cc{bottom:600.928304pt;}
.y63{bottom:600.937581pt;}
.y19e{bottom:601.986898pt;}
.y127{bottom:601.986938pt;}
.y109{bottom:602.853704pt;}
.ybc{bottom:604.882688pt;}
.y284{bottom:605.320272pt;}
.y179{bottom:606.257080pt;}
.y1f8{bottom:607.052287pt;}
.y218{bottom:608.105581pt;}
.y15a{bottom:608.214396pt;}
.y306{bottom:610.121620pt;}
.y2c4{bottom:610.306272pt;}
.y347{bottom:610.461606pt;}
.y108{bottom:616.181704pt;}
.y31{bottom:616.187907pt;}
.y256{bottom:616.696289pt;}
.y1cb{bottom:617.594971pt;}
.y62{bottom:617.604248pt;}
.ybb{bottom:618.210688pt;}
.y19d{bottom:618.653564pt;}
.y126{bottom:618.653605pt;}
.y305{bottom:623.449620pt;}
.y2c3{bottom:623.634272pt;}
.y1f7{bottom:623.718953pt;}
.y346{bottom:623.789606pt;}
.y217{bottom:624.772247pt;}
.y159{bottom:624.881063pt;}
.yba{bottom:631.538688pt;}
.y107{bottom:632.887038pt;}
.y255{bottom:633.362956pt;}
.y1ca{bottom:634.261637pt;}
.y61{bottom:634.270915pt;}
.y19c{bottom:635.320231pt;}
.y14f{bottom:635.320272pt;}
.y304{bottom:636.777620pt;}
.y2c2{bottom:636.962272pt;}
.y345{bottom:637.117606pt;}
.y178{bottom:639.590413pt;}
.y1f6{bottom:640.385620pt;}
.y216{bottom:641.438914pt;}
.y158{bottom:641.547729pt;}
.yb9{bottom:644.866688pt;}
.y5{bottom:645.598667pt;}
.y106{bottom:646.215038pt;}
.y30{bottom:649.521240pt;}
.y254{bottom:650.029622pt;}
.y303{bottom:650.105620pt;}
.y2c1{bottom:650.290272pt;}
.y344{bottom:650.445606pt;}
.y1c9{bottom:650.928304pt;}
.y60{bottom:650.937581pt;}
.y19b{bottom:651.986898pt;}
.y125{bottom:651.986938pt;}
.y215{bottom:658.105581pt;}
.yb8{bottom:658.194688pt;}
.y105{bottom:662.852371pt;}
.y302{bottom:663.433620pt;}
.y383{bottom:663.501622pt;}
.y2c0{bottom:663.618272pt;}
.y343{bottom:663.773606pt;}
.y2f{bottom:666.187907pt;}
.y253{bottom:666.696289pt;}
.y1c8{bottom:667.594971pt;}
.y5f{bottom:667.604248pt;}
.y19a{bottom:668.653564pt;}
.y14e{bottom:668.653605pt;}
.y3{bottom:668.977329pt;}
.yb7{bottom:671.522688pt;}
.y283{bottom:672.054233pt;}
.y1f5{bottom:673.718953pt;}
.y214{bottom:674.772247pt;}
.y104{bottom:676.180371pt;}
.y301{bottom:676.761620pt;}
.y382{bottom:676.829622pt;}
.y2bf{bottom:676.946272pt;}
.y342{bottom:677.101606pt;}
.y2e{bottom:682.854574pt;}
.y252{bottom:683.362956pt;}
.y191{bottom:684.088704pt;}
.y1c7{bottom:684.261637pt;}
.y5e{bottom:684.270915pt;}
.y199{bottom:685.320231pt;}
.y14d{bottom:685.320272pt;}
.y282{bottom:685.382233pt;}
.yb6{bottom:688.160021pt;}
.y103{bottom:689.508371pt;}
.y300{bottom:690.089620pt;}
.y2be{bottom:690.274272pt;}
.y341{bottom:690.429606pt;}
.y281{bottom:698.710233pt;}
.y2d{bottom:699.521240pt;}
.y251{bottom:700.029622pt;}
.y1c6{bottom:700.928304pt;}
.y5d{bottom:700.937581pt;}
.y1e9{bottom:701.986898pt;}
.y14c{bottom:701.986938pt;}
.y102{bottom:702.836371pt;}
.y2ff{bottom:703.417620pt;}
.y381{bottom:703.576287pt;}
.y2bd{bottom:703.602272pt;}
.y340{bottom:703.757606pt;}
.yb5{bottom:704.797355pt;}
.y124{bottom:710.320231pt;}
.y280{bottom:712.038233pt;}
.y101{bottom:716.164371pt;}
.y2c{bottom:716.187907pt;}
.y250{bottom:716.696289pt;}
.y2fe{bottom:716.745620pt;}
.y380{bottom:716.904287pt;}
.y2bc{bottom:716.930272pt;}
.y33f{bottom:717.085606pt;}
.y1c5{bottom:717.594971pt;}
.y5c{bottom:717.604248pt;}
.yb4{bottom:718.125355pt;}
.y198{bottom:718.653564pt;}
.y14b{bottom:718.653605pt;}
.y23e{bottom:718.658898pt;}
.y27f{bottom:725.366233pt;}
.y123{bottom:726.986898pt;}
.y100{bottom:729.492371pt;}
.y2fd{bottom:730.073620pt;}
.y37f{bottom:730.232287pt;}
.y2bb{bottom:730.258272pt;}
.y33e{bottom:730.413606pt;}
.yb3{bottom:731.453355pt;}
.y2b{bottom:732.854574pt;}
.y23d{bottom:733.210021pt;}
.y24f{bottom:733.362956pt;}
.y1c4{bottom:734.261637pt;}
.y1e8{bottom:735.320231pt;}
.y14a{bottom:735.320272pt;}
.y27e{bottom:738.694233pt;}
.y2fc{bottom:743.401620pt;}
.y37e{bottom:743.560287pt;}
.y2ba{bottom:743.586272pt;}
.y122{bottom:743.653564pt;}
.y33d{bottom:743.741606pt;}
.yb2{bottom:744.781355pt;}
.yff{bottom:746.129704pt;}
.y2a{bottom:749.521240pt;}
.y23c{bottom:749.915355pt;}
.y24e{bottom:750.029622pt;}
.y1c3{bottom:750.928304pt;}
.y197{bottom:751.986898pt;}
.y149{bottom:751.986938pt;}
.y27d{bottom:752.022233pt;}
.y2fb{bottom:756.729620pt;}
.y37d{bottom:756.888287pt;}
.y2b9{bottom:756.914272pt;}
.y33c{bottom:757.069606pt;}
.yb1{bottom:758.109355pt;}
.yfe{bottom:759.457704pt;}
.y121{bottom:760.320231pt;}
.y8f{bottom:761.274658pt;}
.y27c{bottom:765.350233pt;}
.y29{bottom:766.187907pt;}
.y23b{bottom:766.552688pt;}
.y24d{bottom:766.696289pt;}
.y1c2{bottom:767.594971pt;}
.y196{bottom:768.653564pt;}
.y148{bottom:768.653605pt;}
.y2fa{bottom:770.057620pt;}
.y37c{bottom:770.216287pt;}
.y2b8{bottom:770.242272pt;}
.y33b{bottom:770.397606pt;}
.yb0{bottom:771.437355pt;}
.yfd{bottom:772.785704pt;}
.y96{bottom:775.067584pt;}
.y85{bottom:777.432699pt;}
.y27b{bottom:778.678233pt;}
.y2{bottom:781.661334pt;}
.y23a{bottom:783.190021pt;}
.y24c{bottom:783.362956pt;}
.y2f9{bottom:783.385620pt;}
.y37b{bottom:783.544287pt;}
.y2b7{bottom:783.570272pt;}
.y33a{bottom:783.725606pt;}
.y1c1{bottom:784.261637pt;}
.yaf{bottom:784.765355pt;}
.y120{bottom:785.320231pt;}
.y147{bottom:785.320272pt;}
.y87{bottom:785.714875pt;}
.yfc{bottom:786.113704pt;}
.y86{bottom:791.236325pt;}
.y27a{bottom:792.006233pt;}
.y88{bottom:793.997051pt;}
.y2f8{bottom:796.713620pt;}
.y89{bottom:796.757776pt;}
.y37a{bottom:796.872287pt;}
.y2b6{bottom:796.898272pt;}
.y339{bottom:797.053606pt;}
.yae{bottom:798.093355pt;}
.yfb{bottom:799.441704pt;}
.y239{bottom:799.827355pt;}
.y24b{bottom:800.029622pt;}
.y1c0{bottom:800.928304pt;}
.y11f{bottom:801.986898pt;}
.y146{bottom:801.986938pt;}
.y8b{bottom:802.083171pt;}
.y97{bottom:802.872032pt;}
.y279{bottom:805.334233pt;}
.y28{bottom:805.461469pt;}
.y2f7{bottom:810.041620pt;}
.y379{bottom:810.200287pt;}
.y2b5{bottom:810.226272pt;}
.y338{bottom:810.381606pt;}
.yad{bottom:811.421355pt;}
.yfa{bottom:812.769704pt;}
.y8c{bottom:813.124127pt;}
.y8e{bottom:815.887207pt;}
.y238{bottom:816.464688pt;}
.y24a{bottom:816.696289pt;}
.y1bf{bottom:817.594971pt;}
.y11e{bottom:818.653564pt;}
.y145{bottom:818.653605pt;}
.y278{bottom:818.662233pt;}
.y27{bottom:818.789469pt;}
.y91{bottom:821.841960pt;}
.y2f6{bottom:823.369620pt;}
.y378{bottom:823.528287pt;}
.y2b4{bottom:823.554272pt;}
.y337{bottom:823.709606pt;}
.yac{bottom:824.749355pt;}
.yf9{bottom:826.097704pt;}
.y8d{bottom:826.968506pt;}
.y8a{bottom:827.362388pt;}
.y98{bottom:830.518724pt;}
.y237{bottom:833.102021pt;}
.y249{bottom:833.362956pt;}
.y1be{bottom:834.261637pt;}
.y11d{bottom:835.320231pt;}
.y144{bottom:835.320272pt;}
.y2f5{bottom:836.697620pt;}
.y377{bottom:836.856287pt;}
.y2b3{bottom:836.882272pt;}
.y336{bottom:837.037606pt;}
.yab{bottom:838.077355pt;}
.yf8{bottom:839.425704pt;}
.y92{bottom:841.167236pt;}
.y277{bottom:845.329566pt;}
.y236{bottom:849.739355pt;}
.y2f4{bottom:850.025620pt;}
.y248{bottom:850.029622pt;}
.y376{bottom:850.184287pt;}
.y2b2{bottom:850.210272pt;}
.y335{bottom:850.365606pt;}
.y1bd{bottom:850.928304pt;}
.yaa{bottom:851.405355pt;}
.y11c{bottom:851.986898pt;}
.y143{bottom:851.986938pt;}
.yf7{bottom:856.063038pt;}
.y26{bottom:856.656169pt;}
.y99{bottom:858.323172pt;}
.y276{bottom:858.657566pt;}
.y1{bottom:859.312000pt;}
.y93{bottom:863.253039pt;}
.y2f3{bottom:863.353620pt;}
.y375{bottom:863.512287pt;}
.y2b1{bottom:863.538272pt;}
.y334{bottom:863.693606pt;}
.ya9{bottom:864.733355pt;}
.y235{bottom:866.376688pt;}
.y247{bottom:866.696289pt;}
.y1bc{bottom:867.594971pt;}
.y11b{bottom:868.653564pt;}
.y142{bottom:868.653605pt;}
.yf6{bottom:869.391038pt;}
.y2f2{bottom:876.681620pt;}
.y374{bottom:876.840287pt;}
.y2b0{bottom:876.866272pt;}
.y333{bottom:877.021606pt;}
.ya8{bottom:881.370688pt;}
.yf5{bottom:882.719038pt;}
.y234{bottom:883.014021pt;}
.y246{bottom:883.362956pt;}
.y1bb{bottom:884.261637pt;}
.y11a{bottom:885.320231pt;}
.y141{bottom:885.320272pt;}
.y9a{bottom:885.969865pt;}
.y2f1{bottom:890.009620pt;}
.y373{bottom:890.168287pt;}
.y2af{bottom:890.194272pt;}
.y332{bottom:890.349606pt;}
.ya7{bottom:894.698688pt;}
.yf4{bottom:896.052913pt;}
.y25{bottom:896.377441pt;}
.y94{bottom:896.618377pt;}
.y233{bottom:899.651355pt;}
.y245{bottom:900.029622pt;}
.y1ba{bottom:900.928304pt;}
.y119{bottom:901.986898pt;}
.y140{bottom:901.986938pt;}
.y2f0{bottom:903.337620pt;}
.y372{bottom:903.496287pt;}
.y2ae{bottom:903.522272pt;}
.y331{bottom:903.677606pt;}
.ya3{bottom:906.870687pt;}
.ya6{bottom:908.026688pt;}
.yf3{bottom:909.380913pt;}
.y275{bottom:911.992231pt;}
.y9b{bottom:913.774313pt;}
.y95{bottom:915.943454pt;}
.y2ef{bottom:916.665620pt;}
.y244{bottom:916.696289pt;}
.y371{bottom:916.824287pt;}
.y2ad{bottom:916.850272pt;}
.y330{bottom:917.005606pt;}
.y1b9{bottom:917.594971pt;}
.y118{bottom:918.653564pt;}
.y13f{bottom:918.653605pt;}
.ya2{bottom:922.252116pt;}
.y232{bottom:924.618688pt;}
.y274{bottom:925.320231pt;}
.y2ee{bottom:929.993620pt;}
.y370{bottom:930.152287pt;}
.y2ac{bottom:930.178272pt;}
.y32f{bottom:930.333606pt;}
.ya5{bottom:932.994021pt;}
.y243{bottom:933.362956pt;}
.yf2{bottom:933.974246pt;}
.y1b8{bottom:934.261637pt;}
.y117{bottom:935.320231pt;}
.y13e{bottom:935.320272pt;}
.ya1{bottom:937.667480pt;}
.y9c{bottom:941.411145pt;}
.y84{bottom:942.324306pt;}
.y2ed{bottom:943.321620pt;}
.y36f{bottom:943.480287pt;}
.y2ab{bottom:943.506272pt;}
.y32e{bottom:943.661606pt;}
.ya4{bottom:946.322021pt;}
.yf1{bottom:947.302246pt;}
.y116{bottom:951.986898pt;}
.y13d{bottom:951.986938pt;}
.ya0{bottom:953.048910pt;}
.y83{bottom:955.652306pt;}
.y24{bottom:956.561849pt;}
.y2ec{bottom:956.649620pt;}
.y36e{bottom:956.808287pt;}
.y2aa{bottom:956.834272pt;}
.y32d{bottom:956.989606pt;}
.y242{bottom:966.696289pt;}
.y1b7{bottom:967.594971pt;}
.y115{bottom:968.653564pt;}
.y13c{bottom:968.653605pt;}
.y82{bottom:968.980306pt;}
.y2eb{bottom:969.977620pt;}
.y36d{bottom:970.136287pt;}
.y2a9{bottom:970.162272pt;}
.y32c{bottom:970.317606pt;}
.y23{bottom:986.299161pt;}
.y22{bottom:1001.406494pt;}
.y5b{bottom:1002.206543pt;}
.h19{height:22.403733pt;}
.h1d{height:27.291742pt;}
.h22{height:27.306135pt;}
.h21{height:27.400985pt;}
.h8{height:28.560000pt;}
.h9{height:28.597333pt;}
.h1e{height:30.020990pt;}
.hc{height:30.080000pt;}
.h1f{height:30.130234pt;}
.h2a{height:30.471251pt;}
.h29{height:30.566469pt;}
.h17{height:32.005333pt;}
.h18{height:32.760417pt;}
.h23{height:34.933635pt;}
.h24{height:35.042510pt;}
.h12{height:37.653333pt;}
.h1c{height:38.334643pt;}
.hd{height:39.712000pt;}
.h1b{height:40.165333pt;}
.h28{height:40.513696pt;}
.h7{height:40.853333pt;}
.h3{height:42.840000pt;}
.h6{height:42.896000pt;}
.h1a{height:44.834667pt;}
.h25{height:44.835318pt;}
.h26{height:46.376000pt;}
.h14{height:47.253333pt;}
.h16{height:47.690667pt;}
.h2d{height:47.712680pt;}
.h27{height:47.826667pt;}
.h2{height:49.024000pt;}
.he{height:49.298667pt;}
.h2b{height:52.448000pt;}
.h11{height:52.746667pt;}
.h13{height:54.560000pt;}
.h2c{height:57.376000pt;}
.h10{height:57.658667pt;}
.h15{height:63.296000pt;}
.h5{height:69.450667pt;}
.hf{height:75.605333pt;}
.h4{height:105.826671pt;}
.h20{height:216.206665pt;}
.ha{height:1054.488000pt;}
.hb{height:1054.666667pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w4{width:480.000000pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:8.268127pt;}
.x17{left:13.161336pt;}
.x18{left:53.647196pt;}
.x6{left:68.031469pt;}
.x7{left:75.717199pt;}
.xb{left:83.151469pt;}
.xa{left:86.929867pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x4{left:180.874667pt;}
.x12{left:245.669332pt;}
.x16{left:258.838766pt;}
.x15{left:263.810692pt;}
.x1b{left:272.336793pt;}
.x1c{left:279.877197pt;}
.xc{left:306.774800pt;}
.x1a{left:327.648539pt;}
.x22{left:356.151733pt;}
.x11{left:370.654719pt;}
.x13{left:381.349182pt;}
.x3{left:404.408000pt;}
.x8{left:408.191457pt;}
.x1d{left:417.203084pt;}
.x9{left:423.309329pt;}
.x1e{left:427.419189pt;}
.x23{left:430.879516pt;}
.xe{left:434.999201pt;}
.x1f{left:447.533854pt;}
.x21{left:457.275187pt;}
.x20{left:469.255086pt;}
.xf{left:499.071941pt;}
.x10{left:563.164413pt;}
.xd{left:627.227287pt;}
.x5{left:647.307210pt;}
.x14{left:691.317429pt;}
}




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