
    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_1440f7912560f72d6780ac91.woff')format("woff");}.ff1{font-family:ff1;line-height:0.941000;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_45c5c756ee1a4fd56f7b0870.woff')format("woff");}.ff2{font-family:ff2;line-height:0.960000;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_fad60eaafc23aaa5dbf5f39a.woff')format("woff");}.ff3{font-family:ff3;line-height:1.026000;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_16724a52f87e0e3788a3c4ba.woff')format("woff");}.ff4{font-family:ff4;line-height:0.893000;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_d7d60e773e947e7ddd7f4180.woff')format("woff");}.ff5{font-family:ff5;line-height:0.721000;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_e74d211d7d6ffa6bef2ff447.woff')format("woff");}.ff6{font-family:ff6;line-height:0.930000;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_54a8a737131d4af715c602a2.woff')format("woff");}.ff7{font-family:ff7;line-height:0.730469;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_53a3dfab61f9b0cdc0f1bbc3.woff')format("woff");}.ff8{font-family:ff8;line-height:0.968262;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_05413f78987e9153aec8d3a0.woff')format("woff");}.ff9{font-family:ff9;line-height:1.063000;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_19e89556ea4e870dd0a6ca02.woff')format("woff");}.ffa{font-family:ffa;line-height:0.953000;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_7a5076731ac97805dabea4dc.woff')format("woff");}.ffb{font-family:ffb;line-height:0.968000;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_ac0e4295f919187447f96144.woff')format("woff");}.ffc{font-family:ffc;line-height:1.432129;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_f8514e6f67e89296671d4bd5.woff')format("woff");}.ffd{font-family:ffd;line-height:1.284668;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_12dfd2d302f2ef7147a92a8d.woff')format("woff");}.ffe{font-family:ffe;line-height:0.646000;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_60f4f98869dec4f717e2960b.woff')format("woff");}.fff{font-family:fff;line-height:0.266000;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_acb344a74712e2e47b472ff5.woff')format("woff");}.ff10{font-family:ff10;line-height:0.624862;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_742e1bfa639be6e9947943ea.woff')format("woff");}.ff11{font-family:ff11;line-height:0.703000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_31f7d8a75cb290c6e28a4c55.woff')format("woff");}.ff12{font-family:ff12;line-height:0.951000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_10ce78398e3121c270cf62b0.woff')format("woff");}.ff13{font-family:ff13;line-height:0.716000;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;}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.v8{vertical-align:-37.080360px;}
.ve{vertical-align:-28.572561px;}
.v5{vertical-align:-23.129472px;}
.va{vertical-align:-15.312000px;}
.v13{vertical-align:-13.262400px;}
.v4{vertical-align:-12.252000px;}
.v10{vertical-align:-10.887600px;}
.v11{vertical-align:-7.824000px;}
.v2{vertical-align:-3.066000px;}
.v3{vertical-align:-2.040000px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:2.046000px;}
.v1{vertical-align:6.126000px;}
.v12{vertical-align:13.262400px;}
.v9{vertical-align:15.312000px;}
.vd{vertical-align:18.708000px;}
.vc{vertical-align:21.090600px;}
.v7{vertical-align:23.482200px;}
.vf{vertical-align:47.961000px;}
.v6{vertical-align:65.994000px;}
.ls11{letter-spacing:0.000000px;}
.ls7a{letter-spacing:0.005852px;}
.lsb{letter-spacing:0.006000px;}
.ls6c{letter-spacing:0.009000px;}
.ls34{letter-spacing:0.012000px;}
.ls1a{letter-spacing:0.018000px;}
.ls17{letter-spacing:0.024000px;}
.ls23{letter-spacing:0.030000px;}
.ls44{letter-spacing:0.042000px;}
.ls64{letter-spacing:0.044219px;}
.ls55{letter-spacing:0.048000px;}
.ls19{letter-spacing:0.054000px;}
.ls60{letter-spacing:0.060000px;}
.ls77{letter-spacing:0.066000px;}
.ls66{letter-spacing:0.072000px;}
.ls78{letter-spacing:0.080663px;}
.ls79{letter-spacing:0.084000px;}
.ls76{letter-spacing:0.092400px;}
.ls70{letter-spacing:0.095400px;}
.ls15{letter-spacing:0.096000px;}
.ls6d{letter-spacing:0.120000px;}
.ls56{letter-spacing:0.120928px;}
.ls10{letter-spacing:0.144000px;}
.ls71{letter-spacing:0.150892px;}
.ls84{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.186000px;}
.ls1{letter-spacing:0.215400px;}
.ls6b{letter-spacing:0.218400px;}
.ls7d{letter-spacing:0.222000px;}
.ls73{letter-spacing:0.230400px;}
.ls59{letter-spacing:0.257086px;}
.ls6a{letter-spacing:0.294000px;}
.ls6f{letter-spacing:0.366000px;}
.ls40{letter-spacing:0.480000px;}
.ls29{letter-spacing:0.486000px;}
.ls1f{letter-spacing:0.492000px;}
.ls12{letter-spacing:0.499942px;}
.ls26{letter-spacing:0.504000px;}
.ls7{letter-spacing:0.564000px;}
.ls43{letter-spacing:0.600000px;}
.ls16{letter-spacing:0.648000px;}
.ls5{letter-spacing:0.684000px;}
.ls8{letter-spacing:0.702000px;}
.ls2a{letter-spacing:0.708000px;}
.ls25{letter-spacing:0.714000px;}
.ls27{letter-spacing:0.768000px;}
.ls18{letter-spacing:0.834000px;}
.ls1c{letter-spacing:0.840000px;}
.ls32{letter-spacing:0.876000px;}
.ls21{letter-spacing:0.948000px;}
.ls37{letter-spacing:0.954000px;}
.ls46{letter-spacing:1.002000px;}
.ls28{letter-spacing:1.020000px;}
.ls8b{letter-spacing:1.020600px;}
.ls9d{letter-spacing:1.069200px;}
.lsf{letter-spacing:1.074000px;}
.ls39{letter-spacing:1.116000px;}
.lsd{letter-spacing:1.122000px;}
.ls14{letter-spacing:1.140000px;}
.ls72{letter-spacing:1.158000px;}
.ls5a{letter-spacing:1.164000px;}
.ls45{letter-spacing:1.170000px;}
.ls65{letter-spacing:1.176000px;}
.ls6{letter-spacing:1.242000px;}
.ls68{letter-spacing:1.314000px;}
.ls33{letter-spacing:1.320000px;}
.ls41{letter-spacing:1.338000px;}
.ls4d{letter-spacing:1.338640px;}
.ls98{letter-spacing:1.360800px;}
.ls93{letter-spacing:1.371600px;}
.ls13{letter-spacing:1.399839px;}
.ls4e{letter-spacing:1.422000px;}
.ls75{letter-spacing:1.428000px;}
.ls51{letter-spacing:1.553400px;}
.lse{letter-spacing:1.572000px;}
.ls2e{letter-spacing:1.596000px;}
.ls24{letter-spacing:1.614000px;}
.ls81{letter-spacing:1.710000px;}
.ls80{letter-spacing:1.728000px;}
.ls2c{letter-spacing:2.076000px;}
.ls35{letter-spacing:3.060000px;}
.ls90{letter-spacing:5.437800px;}
.ls36{letter-spacing:7.488000px;}
.ls4{letter-spacing:9.458185px;}
.ls99{letter-spacing:13.273200px;}
.ls97{letter-spacing:13.613400px;}
.ls8e{letter-spacing:13.953600px;}
.ls58{letter-spacing:14.004000px;}
.ls5f{letter-spacing:14.120413px;}
.ls9e{letter-spacing:14.293800px;}
.ls5e{letter-spacing:14.462413px;}
.ls47{letter-spacing:14.879086px;}
.ls95{letter-spacing:15.314400px;}
.ls3b{letter-spacing:15.708000px;}
.ls30{letter-spacing:15.720000px;}
.ls62{letter-spacing:15.772603px;}
.ls63{letter-spacing:15.777403px;}
.ls3c{letter-spacing:15.914497px;}
.ls8f{letter-spacing:15.994800px;}
.ls3f{letter-spacing:16.044000px;}
.ls86{letter-spacing:16.050000px;}
.ls7e{letter-spacing:16.064663px;}
.ls3e{letter-spacing:16.241086px;}
.ls7c{letter-spacing:16.331852px;}
.ls94{letter-spacing:16.335000px;}
.ls83{letter-spacing:16.380000px;}
.ls42{letter-spacing:17.276497px;}
.ls9c{letter-spacing:17.355600px;}
.ls8d{letter-spacing:17.695800px;}
.ls2b{letter-spacing:17.706600px;}
.ls48{letter-spacing:17.748000px;}
.ls91{letter-spacing:17.836200px;}
.ls89{letter-spacing:18.030600px;}
.ls8c{letter-spacing:18.036000px;}
.ls2f{letter-spacing:18.144000px;}
.ls96{letter-spacing:18.176400px;}
.ls31{letter-spacing:18.270000px;}
.ls7f{letter-spacing:18.396000px;}
.ls88{letter-spacing:18.716400px;}
.ls20{letter-spacing:18.750000px;}
.ls7b{letter-spacing:18.858892px;}
.ls69{letter-spacing:18.888000px;}
.ls92{letter-spacing:19.396800px;}
.ls50{letter-spacing:19.446000px;}
.ls87{letter-spacing:19.788000px;}
.ls61{letter-spacing:19.818898px;}
.ls4c{letter-spacing:20.008196px;}
.ls5c{letter-spacing:20.124000px;}
.ls85{letter-spacing:20.130000px;}
.ls6e{letter-spacing:20.586000px;}
.ls38{letter-spacing:22.230928px;}
.ls9a{letter-spacing:22.793400px;}
.ls1e{letter-spacing:22.824000px;}
.ls1d{letter-spacing:22.830000px;}
.ls54{letter-spacing:22.854000px;}
.ls8a{letter-spacing:23.139000px;}
.ls3{letter-spacing:23.184000px;}
.ls4a{letter-spacing:23.190000px;}
.ls49{letter-spacing:23.532000px;}
.ls2d{letter-spacing:23.712000px;}
.ls9b{letter-spacing:23.814000px;}
.ls5d{letter-spacing:24.396000px;}
.ls3d{letter-spacing:24.546000px;}
.ls4f{letter-spacing:24.758497px;}
.ls4b{letter-spacing:24.772196px;}
.ls74{letter-spacing:26.344492px;}
.ls0{letter-spacing:26.691395px;}
.ls57{letter-spacing:26.934000px;}
.ls5b{letter-spacing:28.829086px;}
.ls67{letter-spacing:32.582497px;}
.ls22{letter-spacing:37.738200px;}
.ls53{letter-spacing:37.878928px;}
.ls1b{letter-spacing:38.082000px;}
.lsc{letter-spacing:40.391086px;}
.ls9{letter-spacing:41.069086px;}
.ls3a{letter-spacing:42.300928px;}
.ls52{letter-spacing:43.320928px;}
.ls2{letter-spacing:76.787086px;}
.ls82{letter-spacing:77.471086px;}
.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;}
}
.ws79{word-spacing:-38.460000px;}
.ws2d0{word-spacing:-32.604000px;}
.ws39{word-spacing:-28.560000px;}
.ws51{word-spacing:-27.071662px;}
.ws1ff{word-spacing:-25.812035px;}
.ws3a{word-spacing:-25.767815px;}
.ws2da{word-spacing:-25.704000px;}
.ws257{word-spacing:-24.708000px;}
.ws1c4{word-spacing:-24.600000px;}
.ws20c{word-spacing:-24.570000px;}
.ws1c5{word-spacing:-24.564000px;}
.ws1{word-spacing:-24.541056px;}
.ws29f{word-spacing:-24.528000px;}
.ws255{word-spacing:-24.516000px;}
.ws1f2{word-spacing:-24.510000px;}
.ws176{word-spacing:-24.426000px;}
.wsb9{word-spacing:-24.408000px;}
.ws1d8{word-spacing:-24.402000px;}
.ws20b{word-spacing:-24.378000px;}
.ws254{word-spacing:-24.354000px;}
.ws0{word-spacing:-24.255457px;}
.ws98{word-spacing:-24.234000px;}
.ws14d{word-spacing:-24.174000px;}
.ws48{word-spacing:-24.132000px;}
.ws8f{word-spacing:-23.994000px;}
.ws8e{word-spacing:-23.988000px;}
.ws23f{word-spacing:-23.928000px;}
.ws10f{word-spacing:-23.922000px;}
.ws136{word-spacing:-23.838000px;}
.ws284{word-spacing:-23.736000px;}
.wscc{word-spacing:-23.712000px;}
.ws11e{word-spacing:-23.700000px;}
.ws147{word-spacing:-23.694000px;}
.wsdb{word-spacing:-23.658000px;}
.ws1cb{word-spacing:-23.652000px;}
.wsf3{word-spacing:-23.610000px;}
.ws26e{word-spacing:-23.604000px;}
.ws1ca{word-spacing:-23.538000px;}
.ws29a{word-spacing:-23.508000px;}
.ws1c9{word-spacing:-23.496000px;}
.wsc2{word-spacing:-23.490000px;}
.ws26d{word-spacing:-23.466000px;}
.ws11d{word-spacing:-23.454000px;}
.ws29c{word-spacing:-23.406000px;}
.ws58{word-spacing:-23.370000px;}
.ws59{word-spacing:-23.328000px;}
.ws67{word-spacing:-23.268000px;}
.ws120{word-spacing:-23.238000px;}
.ws29b{word-spacing:-23.232000px;}
.ws292{word-spacing:-23.214000px;}
.ws171{word-spacing:-23.208000px;}
.ws105{word-spacing:-23.184000px;}
.ws121{word-spacing:-23.100000px;}
.ws166{word-spacing:-23.052000px;}
.ws19f{word-spacing:-23.016000px;}
.ws266{word-spacing:-22.980000px;}
.ws103{word-spacing:-22.974000px;}
.ws19e{word-spacing:-22.962000px;}
.ws173{word-spacing:-22.902000px;}
.ws172{word-spacing:-22.890000px;}
.ws2bc{word-spacing:-22.878000px;}
.ws22a{word-spacing:-22.847714px;}
.wsc7{word-spacing:-22.830000px;}
.ws1d{word-spacing:-22.824000px;}
.ws7b{word-spacing:-22.812000px;}
.ws265{word-spacing:-22.788000px;}
.ws2a0{word-spacing:-22.776000px;}
.ws1a2{word-spacing:-22.692000px;}
.ws2a1{word-spacing:-22.686000px;}
.ws7a{word-spacing:-22.638000px;}
.ws21{word-spacing:-22.632000px;}
.ws199{word-spacing:-22.566000px;}
.ws100{word-spacing:-22.560000px;}
.ws28{word-spacing:-22.524000px;}
.ws1ae{word-spacing:-22.506000px;}
.ws5a{word-spacing:-22.500000px;}
.ws2a7{word-spacing:-22.482000px;}
.wsea{word-spacing:-22.476000px;}
.ws164{word-spacing:-22.470000px;}
.ws1a0{word-spacing:-22.464000px;}
.ws161{word-spacing:-22.440000px;}
.ws1af{word-spacing:-22.434000px;}
.ws1f{word-spacing:-22.368000px;}
.ws2a9{word-spacing:-22.362000px;}
.ws73{word-spacing:-22.344000px;}
.ws2a8{word-spacing:-22.302000px;}
.ws251{word-spacing:-22.296000px;}
.ws154{word-spacing:-22.290000px;}
.ws1b1{word-spacing:-22.278000px;}
.ws1b2{word-spacing:-22.248000px;}
.ws19c{word-spacing:-22.242000px;}
.ws250{word-spacing:-22.236000px;}
.ws1b0{word-spacing:-22.224000px;}
.ws155{word-spacing:-22.194000px;}
.ws2b5{word-spacing:-22.188000px;}
.ws1fa{word-spacing:-22.152000px;}
.ws141{word-spacing:-22.110000px;}
.ws14{word-spacing:-22.092000px;}
.ws2b6{word-spacing:-22.014000px;}
.wsc3{word-spacing:-22.008000px;}
.wsaa{word-spacing:-22.005000px;}
.ws18{word-spacing:-21.954000px;}
.ws11{word-spacing:-21.900000px;}
.ws19b{word-spacing:-21.870000px;}
.ws19{word-spacing:-21.852000px;}
.wsed{word-spacing:-21.846000px;}
.wsc5{word-spacing:-21.834000px;}
.ws132{word-spacing:-21.804000px;}
.wsf4{word-spacing:-21.792000px;}
.wsc8{word-spacing:-21.756000px;}
.wsb6{word-spacing:-21.750000px;}
.ws1f3{word-spacing:-21.744000px;}
.ws25e{word-spacing:-21.732000px;}
.ws146{word-spacing:-21.720000px;}
.ws27d{word-spacing:-21.696000px;}
.ws33b{word-spacing:-21.664800px;}
.ws1c3{word-spacing:-21.660000px;}
.wsbd{word-spacing:-21.642000px;}
.ws352{word-spacing:-21.605400px;}
.ws1dc{word-spacing:-21.600000px;}
.ws33a{word-spacing:-21.583800px;}
.ws180{word-spacing:-21.522000px;}
.ws12d{word-spacing:-21.516000px;}
.ws117{word-spacing:-21.468000px;}
.ws17e{word-spacing:-21.456000px;}
.ws1f7{word-spacing:-21.450000px;}
.ws115{word-spacing:-21.438000px;}
.ws17f{word-spacing:-21.402000px;}
.ws30e{word-spacing:-21.400200px;}
.ws247{word-spacing:-21.390000px;}
.ws17d{word-spacing:-21.366000px;}
.ws339{word-spacing:-21.340800px;}
.ws12c{word-spacing:-21.336000px;}
.wse2{word-spacing:-21.318000px;}
.ws1b9{word-spacing:-21.300000px;}
.ws35a{word-spacing:-21.281400px;}
.ws12b{word-spacing:-21.264000px;}
.ws2b8{word-spacing:-21.258000px;}
.ws34c{word-spacing:-21.254400px;}
.ws181{word-spacing:-21.198000px;}
.ws116{word-spacing:-21.186000px;}
.ws183{word-spacing:-21.156000px;}
.ws34d{word-spacing:-21.135600px;}
.ws1cd{word-spacing:-21.102000px;}
.ws334{word-spacing:-21.087000px;}
.ws1bb{word-spacing:-21.078000px;}
.ws2fd{word-spacing:-21.070800px;}
.ws2e{word-spacing:-21.060000px;}
.ws182{word-spacing:-21.036000px;}
.ws150{word-spacing:-20.962800px;}
.ws290{word-spacing:-20.868000px;}
.wsf6{word-spacing:-20.844000px;}
.ws256{word-spacing:-20.826000px;}
.ws34a{word-spacing:-20.806200px;}
.wsf{word-spacing:-20.784000px;}
.ws3f{word-spacing:-20.778000px;}
.ws1ce{word-spacing:-20.760000px;}
.ws276{word-spacing:-20.746800px;}
.ws1cc{word-spacing:-20.730000px;}
.ws2f8{word-spacing:-20.719800px;}
.ws2f1{word-spacing:-20.692800px;}
.ws33d{word-spacing:-20.687400px;}
.ws2f0{word-spacing:-20.671200px;}
.ws16d{word-spacing:-20.646000px;}
.wsf7{word-spacing:-20.640000px;}
.ws151{word-spacing:-20.638800px;}
.ws35d{word-spacing:-20.628000px;}
.ws1fc{word-spacing:-20.622000px;}
.ws22b{word-spacing:-20.613406px;}
.ws82{word-spacing:-20.598000px;}
.ws21b{word-spacing:-20.595600px;}
.ws24a{word-spacing:-20.592000px;}
.ws9d{word-spacing:-20.586000px;}
.ws9b{word-spacing:-20.580000px;}
.ws21a{word-spacing:-20.552400px;}
.wsd0{word-spacing:-20.538000px;}
.ws165{word-spacing:-20.520000px;}
.ws1fb{word-spacing:-20.472000px;}
.ws21c{word-spacing:-20.471400px;}
.ws18b{word-spacing:-20.442000px;}
.wsee{word-spacing:-20.436000px;}
.wsdc{word-spacing:-20.430000px;}
.wsf5{word-spacing:-20.424000px;}
.wsac{word-spacing:-20.374200px;}
.ws270{word-spacing:-20.364000px;}
.ws219{word-spacing:-20.341800px;}
.ws54{word-spacing:-20.304000px;}
.ws86{word-spacing:-20.298000px;}
.ws2ab{word-spacing:-20.268000px;}
.ws2ac{word-spacing:-20.250000px;}
.wsde{word-spacing:-20.220000px;}
.ws85{word-spacing:-20.208000px;}
.ws1e8{word-spacing:-20.190000px;}
.wse0{word-spacing:-20.178000px;}
.ws87{word-spacing:-20.154000px;}
.ws26c{word-spacing:-20.100000px;}
.ws1a3{word-spacing:-20.088000px;}
.wsdf{word-spacing:-20.070000px;}
.ws21e{word-spacing:-20.028600px;}
.ws262{word-spacing:-20.016000px;}
.ws261{word-spacing:-19.974000px;}
.ws2a4{word-spacing:-19.950000px;}
.ws12a{word-spacing:-19.914000px;}
.ws1a5{word-spacing:-19.908000px;}
.wsf9{word-spacing:-19.866000px;}
.ws1f1{word-spacing:-19.842000px;}
.ws1d1{word-spacing:-19.834200px;}
.ws285{word-spacing:-19.812000px;}
.ws187{word-spacing:-19.806000px;}
.wsfa{word-spacing:-19.800000px;}
.wsb8{word-spacing:-19.794000px;}
.ws348{word-spacing:-19.785600px;}
.ws2b7{word-spacing:-19.764000px;}
.ws1b3{word-spacing:-19.740000px;}
.ws32{word-spacing:-19.728000px;}
.wsf8{word-spacing:-19.716000px;}
.ws33{word-spacing:-19.698000px;}
.wsd5{word-spacing:-19.674000px;}
.ws32c{word-spacing:-19.575000px;}
.ws13{word-spacing:-19.572000px;}
.ws17c{word-spacing:-19.542000px;}
.ws190{word-spacing:-19.536000px;}
.ws15d{word-spacing:-19.500000px;}
.ws330{word-spacing:-19.494000px;}
.ws2a2{word-spacing:-19.476000px;}
.ws33f{word-spacing:-19.445400px;}
.ws248{word-spacing:-19.410000px;}
.ws102{word-spacing:-19.374000px;}
.ws14f{word-spacing:-19.359000px;}
.ws65{word-spacing:-19.290000px;}
.ws32e{word-spacing:-19.240200px;}
.ws1e3{word-spacing:-19.230000px;}
.ws2a3{word-spacing:-19.218000px;}
.ws1e{word-spacing:-19.188000px;}
.ws109{word-spacing:-19.146000px;}
.ws224{word-spacing:-19.126800px;}
.ws10a{word-spacing:-19.110000px;}
.ws6d{word-spacing:-19.098000px;}
.ws1e2{word-spacing:-19.074000px;}
.ws1e4{word-spacing:-19.056000px;}
.ws20d{word-spacing:-18.960000px;}
.ws167{word-spacing:-18.948000px;}
.ws168{word-spacing:-18.942000px;}
.ws32b{word-spacing:-18.851400px;}
.wse8{word-spacing:-18.846000px;}
.ws12{word-spacing:-18.816000px;}
.ws2aa{word-spacing:-18.774000px;}
.ws322{word-spacing:-18.765000px;}
.ws2bd{word-spacing:-18.750000px;}
.ws30a{word-spacing:-18.738000px;}
.ws170{word-spacing:-18.732000px;}
.wsc0{word-spacing:-18.702000px;}
.ws298{word-spacing:-18.696000px;}
.ws15b{word-spacing:-18.690000px;}
.ws108{word-spacing:-18.684000px;}
.ws1c{word-spacing:-18.678000px;}
.ws111{word-spacing:-18.666000px;}
.ws92{word-spacing:-18.660000px;}
.ws30d{word-spacing:-18.657000px;}
.ws215{word-spacing:-18.654000px;}
.ws2c4{word-spacing:-18.642000px;}
.ws20e{word-spacing:-18.630000px;}
.ws15c{word-spacing:-18.618000px;}
.ws18c{word-spacing:-18.612000px;}
.ws25c{word-spacing:-18.606000px;}
.ws1f6{word-spacing:-18.600000px;}
.ws1db{word-spacing:-18.594000px;}
.ws138{word-spacing:-18.576000px;}
.ws34{word-spacing:-18.564000px;}
.ws64{word-spacing:-18.552000px;}
.ws213{word-spacing:-18.546000px;}
.ws69{word-spacing:-18.522000px;}
.wsc1{word-spacing:-18.504000px;}
.ws9f{word-spacing:-18.498000px;}
.ws2af{word-spacing:-18.492000px;}
.ws253{word-spacing:-18.468000px;}
.ws19a{word-spacing:-18.456000px;}
.ws252{word-spacing:-18.450000px;}
.wse5{word-spacing:-18.444000px;}
.ws328{word-spacing:-18.419400px;}
.ws18d{word-spacing:-18.402000px;}
.ws104{word-spacing:-18.396000px;}
.ws10e{word-spacing:-18.342000px;}
.ws1b4{word-spacing:-18.336000px;}
.ws9e{word-spacing:-18.324000px;}
.wsff{word-spacing:-18.306000px;}
.ws2b3{word-spacing:-18.258000px;}
.ws302{word-spacing:-18.230400px;}
.ws214{word-spacing:-18.216000px;}
.ws28b{word-spacing:-18.198000px;}
.ws27b{word-spacing:-18.187200px;}
.wsbf{word-spacing:-18.126000px;}
.ws1c8{word-spacing:-18.102000px;}
.ws277{word-spacing:-18.090000px;}
.ws175{word-spacing:-18.048000px;}
.ws74{word-spacing:-18.030000px;}
.ws188{word-spacing:-17.982000px;}
.ws282{word-spacing:-17.934000px;}
.ws1c7{word-spacing:-17.922000px;}
.ws12e{word-spacing:-17.886000px;}
.ws279{word-spacing:-17.852400px;}
.ws5e{word-spacing:-17.832000px;}
.ws148{word-spacing:-17.826000px;}
.ws1ab{word-spacing:-17.814000px;}
.ws11c{word-spacing:-17.796000px;}
.ws1eb{word-spacing:-17.784000px;}
.ws1a{word-spacing:-17.772000px;}
.wsad{word-spacing:-17.749800px;}
.ws1ad{word-spacing:-17.718000px;}
.ws264{word-spacing:-17.676000px;}
.ws2bf{word-spacing:-17.634000px;}
.ws28a{word-spacing:-17.622000px;}
.ws91{word-spacing:-17.592000px;}
.wsef{word-spacing:-17.586000px;}
.ws15a{word-spacing:-17.580000px;}
.ws189{word-spacing:-17.568000px;}
.wsab{word-spacing:-17.523000px;}
.ws31e{word-spacing:-17.512200px;}
.ws66{word-spacing:-17.454000px;}
.ws309{word-spacing:-17.436600px;}
.wsf0{word-spacing:-17.436000px;}
.ws258{word-spacing:-17.430000px;}
.ws325{word-spacing:-17.425800px;}
.ws333{word-spacing:-17.404200px;}
.ws344{word-spacing:-17.398800px;}
.ws259{word-spacing:-17.370000px;}
.ws25f{word-spacing:-17.364000px;}
.ws1ac{word-spacing:-17.256000px;}
.ws1e9{word-spacing:-17.250000px;}
.ws297{word-spacing:-17.238000px;}
.ws357{word-spacing:-17.172000px;}
.wsbc{word-spacing:-17.154000px;}
.wsba{word-spacing:-17.118000px;}
.ws201{word-spacing:-17.106000px;}
.ws1a7{word-spacing:-17.082000px;}
.ws346{word-spacing:-17.010000px;}
.wscd{word-spacing:-16.968000px;}
.ws202{word-spacing:-16.950000px;}
.ws358{word-spacing:-16.945200px;}
.ws3b{word-spacing:-16.932000px;}
.ws307{word-spacing:-16.918200px;}
.wscf{word-spacing:-16.914000px;}
.wsae{word-spacing:-16.902000px;}
.ws4d{word-spacing:-16.891200px;}
.ws1d6{word-spacing:-16.864200px;}
.ws4f{word-spacing:-16.842600px;}
.ws26f{word-spacing:-16.842000px;}
.ws2e1{word-spacing:-16.831800px;}
.ws153{word-spacing:-16.826400px;}
.wsaf{word-spacing:-16.799400px;}
.ws220{word-spacing:-16.788600px;}
.ws9c{word-spacing:-16.782000px;}
.ws5c{word-spacing:-16.776000px;}
.ws32a{word-spacing:-16.772400px;}
.ws2f5{word-spacing:-16.767000px;}
.wsce{word-spacing:-16.764000px;}
.ws4b{word-spacing:-16.761600px;}
.ws316{word-spacing:-16.740000px;}
.ws323{word-spacing:-16.707600px;}
.ws225{word-spacing:-16.696800px;}
.ws25b{word-spacing:-16.686000px;}
.ws35{word-spacing:-16.680000px;}
.ws144{word-spacing:-16.650000px;}
.ws25a{word-spacing:-16.638000px;}
.ws326{word-spacing:-16.637400px;}
.ws2ed{word-spacing:-16.626600px;}
.ws152{word-spacing:-16.621200px;}
.ws2ea{word-spacing:-16.615800px;}
.ws318{word-spacing:-16.610400px;}
.ws16f{word-spacing:-16.608000px;}
.ws14b{word-spacing:-16.548000px;}
.ws27c{word-spacing:-16.545600px;}
.ws38{word-spacing:-16.542000px;}
.ws35f{word-spacing:-16.491600px;}
.ws331{word-spacing:-16.480800px;}
.ws11f{word-spacing:-16.440000px;}
.ws304{word-spacing:-16.432200px;}
.ws2f7{word-spacing:-16.426800px;}
.wsdd{word-spacing:-16.410000px;}
.ws14a{word-spacing:-16.350000px;}
.ws296{word-spacing:-16.314000px;}
.ws192{word-spacing:-16.230000px;}
.ws191{word-spacing:-16.200000px;}
.ws1ee{word-spacing:-16.170000px;}
.ws26{word-spacing:-16.164000px;}
.ws2e5{word-spacing:-16.075800px;}
.ws2ad{word-spacing:-16.068000px;}
.ws350{word-spacing:-16.054200px;}
.ws1df{word-spacing:-16.038000px;}
.ws12f{word-spacing:-16.026000px;}
.ws1f9{word-spacing:-15.978000px;}
.ws1e1{word-spacing:-15.966000px;}
.ws63{word-spacing:-15.948000px;}
.ws2d{word-spacing:-15.924000px;}
.ws2c{word-spacing:-15.822000px;}
.ws271{word-spacing:-15.780000px;}
.wsc9{word-spacing:-15.756000px;}
.ws203{word-spacing:-15.744000px;}
.ws5d{word-spacing:-15.726000px;}
.ws2be{word-spacing:-15.672000px;}
.ws2d8{word-spacing:-15.643800px;}
.wsca{word-spacing:-15.642000px;}
.wscb{word-spacing:-15.636000px;}
.ws80{word-spacing:-15.588000px;}
.ws35c{word-spacing:-15.584400px;}
.ws1e0{word-spacing:-15.552000px;}
.ws234{word-spacing:-15.494206px;}
.ws287{word-spacing:-15.450000px;}
.ws31{word-spacing:-15.420000px;}
.ws119{word-spacing:-15.354000px;}
.ws30{word-spacing:-15.330000px;}
.ws130{word-spacing:-15.324000px;}
.ws16{word-spacing:-15.294000px;}
.ws16c{word-spacing:-15.288000px;}
.ws89{word-spacing:-15.282000px;}
.ws313{word-spacing:-15.249600px;}
.ws122{word-spacing:-15.174000px;}
.ws2c5{word-spacing:-15.157800px;}
.ws156{word-spacing:-15.132000px;}
.ws312{word-spacing:-15.130800px;}
.wse6{word-spacing:-15.113700px;}
.ws17{word-spacing:-15.108000px;}
.ws112{word-spacing:-15.096000px;}
.wsec{word-spacing:-15.090000px;}
.ws90{word-spacing:-15.078000px;}
.ws158{word-spacing:-15.060000px;}
.wsd6{word-spacing:-15.054000px;}
.ws157{word-spacing:-15.042000px;}
.wsa9{word-spacing:-15.028200px;}
.wsbe{word-spacing:-15.012000px;}
.ws240{word-spacing:-15.006000px;}
.ws232{word-spacing:-15.004612px;}
.ws8d{word-spacing:-15.000000px;}
.ws60{word-spacing:-14.994000px;}
.ws238{word-spacing:-14.990213px;}
.ws184{word-spacing:-14.988000px;}
.ws1d5{word-spacing:-14.925600px;}
.ws23a{word-spacing:-14.923013px;}
.ws236{word-spacing:-14.908614px;}
.ws22e{word-spacing:-14.903814px;}
.ws47{word-spacing:-14.850000px;}
.wsa0{word-spacing:-14.842800px;}
.ws2de{word-spacing:-14.833800px;}
.ws2dc{word-spacing:-14.823000px;}
.wsb5{word-spacing:-14.760000px;}
.ws239{word-spacing:-14.735816px;}
.ws229{word-spacing:-14.716616px;}
.ws2fa{word-spacing:-14.682600px;}
.ws1ea{word-spacing:-14.628000px;}
.ws135{word-spacing:-14.592000px;}
.ws23e{word-spacing:-14.574000px;}
.ws125{word-spacing:-14.526000px;}
.ws149{word-spacing:-14.520000px;}
.ws16a{word-spacing:-14.514000px;}
.ws23c{word-spacing:-14.510219px;}
.ws231{word-spacing:-14.505419px;}
.ws23b{word-spacing:-14.500619px;}
.ws230{word-spacing:-14.486219px;}
.ws222{word-spacing:-14.445000px;}
.ws140{word-spacing:-14.424000px;}
.ws24e{word-spacing:-14.400000px;}
.wsb0{word-spacing:-14.394000px;}
.ws7f{word-spacing:-14.370000px;}
.ws241{word-spacing:-14.304000px;}
.ws169{word-spacing:-14.280000px;}
.ws356{word-spacing:-14.169600px;}
.ws216{word-spacing:-14.142000px;}
.ws217{word-spacing:-14.136000px;}
.wsd1{word-spacing:-14.082000px;}
.ws15{word-spacing:-14.058000px;}
.ws16e{word-spacing:-14.022000px;}
.ws1a9{word-spacing:-14.016000px;}
.ws1dd{word-spacing:-14.004000px;}
.ws93{word-spacing:-13.986000px;}
.ws6c{word-spacing:-13.980000px;}
.ws70{word-spacing:-13.968000px;}
.ws21f{word-spacing:-13.915800px;}
.ws1da{word-spacing:-13.884000px;}
.ws1aa{word-spacing:-13.878000px;}
.ws1de{word-spacing:-13.848000px;}
.ws1ef{word-spacing:-13.842000px;}
.ws275{word-spacing:-13.802400px;}
.ws274{word-spacing:-13.797000px;}
.ws18a{word-spacing:-13.788000px;}
.ws1a8{word-spacing:-13.734000px;}
.wsd3{word-spacing:-13.716000px;}
.ws223{word-spacing:-13.678200px;}
.ws273{word-spacing:-13.662000px;}
.ws205{word-spacing:-13.632000px;}
.ws2c6{word-spacing:-13.628700px;}
.ws23{word-spacing:-13.626000px;}
.ws2c1{word-spacing:-13.600200px;}
.ws142{word-spacing:-13.572000px;}
.ws2e0{word-spacing:-13.570200px;}
.ws2d5{word-spacing:-13.474800px;}
.ws14e{word-spacing:-13.446000px;}
.ws13d{word-spacing:-13.404000px;}
.ws289{word-spacing:-13.374000px;}
.ws218{word-spacing:-13.327200px;}
.ws291{word-spacing:-13.290000px;}
.ws269{word-spacing:-13.236000px;}
.ws10c{word-spacing:-13.230000px;}
.ws268{word-spacing:-13.182000px;}
.ws159{word-spacing:-13.158000px;}
.ws13f{word-spacing:-13.110000px;}
.ws134{word-spacing:-13.092000px;}
.ws1d4{word-spacing:-13.062600px;}
.wse7{word-spacing:-13.038000px;}
.ws1f8{word-spacing:-13.032000px;}
.ws194{word-spacing:-12.978000px;}
.ws6{word-spacing:-12.976200px;}
.ws193{word-spacing:-12.948000px;}
.ws2cd{word-spacing:-12.936000px;}
.ws9{word-spacing:-12.906000px;}
.ws2a6{word-spacing:-12.888000px;}
.ws1c2{word-spacing:-12.876000px;}
.ws2{word-spacing:-12.830901px;}
.ws2a5{word-spacing:-12.798000px;}
.ws1d0{word-spacing:-12.765600px;}
.ws7c{word-spacing:-12.696000px;}
.ws5{word-spacing:-12.682702px;}
.wseb{word-spacing:-12.630000px;}
.ws3{word-spacing:-12.612503px;}
.ws4{word-spacing:-12.604703px;}
.ws8{word-spacing:-12.598200px;}
.ws2ce{word-spacing:-12.594000px;}
.ws33c{word-spacing:-12.544200px;}
.ws353{word-spacing:-12.517200px;}
.ws20{word-spacing:-12.492000px;}
.ws315{word-spacing:-12.468600px;}
.ws34e{word-spacing:-12.420000px;}
.ws293{word-spacing:-12.360000px;}
.ws35b{word-spacing:-12.333600px;}
.ws294{word-spacing:-12.318000px;}
.ws6a{word-spacing:-12.276000px;}
.ws34f{word-spacing:-12.139200px;}
.ws139{word-spacing:-12.126000px;}
.ws335{word-spacing:-12.123000px;}
.wsfe{word-spacing:-12.108000px;}
.ws295{word-spacing:-12.066000px;}
.ws28d{word-spacing:-11.982000px;}
.ws20a{word-spacing:-11.928000px;}
.ws28c{word-spacing:-11.898000px;}
.ws2fe{word-spacing:-11.880000px;}
.ws2df{word-spacing:-11.874600px;}
.ws2e3{word-spacing:-11.850000px;}
.ws25{word-spacing:-11.838000px;}
.ws34b{word-spacing:-11.831400px;}
.ws301{word-spacing:-11.799000px;}
.ws31a{word-spacing:-11.772000px;}
.ws2eb{word-spacing:-11.739600px;}
.ws300{word-spacing:-11.734200px;}
.ws27e{word-spacing:-11.676000px;}
.ws24d{word-spacing:-11.652000px;}
.wsb7{word-spacing:-11.604000px;}
.ws1d9{word-spacing:-11.586000px;}
.ws35e{word-spacing:-11.572200px;}
.ws2f2{word-spacing:-11.491200px;}
.ws2ba{word-spacing:-11.424000px;}
.ws2e8{word-spacing:-11.313000px;}
.ws1c6{word-spacing:-11.298000px;}
.ws6b{word-spacing:-11.184000px;}
.ws341{word-spacing:-11.161800px;}
.ws340{word-spacing:-11.075400px;}
.ws46{word-spacing:-10.998000px;}
.ws36{word-spacing:-10.968000px;}
.ws267{word-spacing:-10.902000px;}
.ws114{word-spacing:-10.848000px;}
.ws228{word-spacing:-10.830000px;}
.ws349{word-spacing:-10.816200px;}
.ws227{word-spacing:-10.806000px;}
.ws336{word-spacing:-10.762200px;}
.ws1a6{word-spacing:-10.728000px;}
.ws1ed{word-spacing:-10.650000px;}
.ws32d{word-spacing:-10.557000px;}
.ws28f{word-spacing:-10.542000px;}
.ws226{word-spacing:-10.530000px;}
.ws337{word-spacing:-10.519200px;}
.ws137{word-spacing:-10.506000px;}
.ws311{word-spacing:-10.492200px;}
.ws162{word-spacing:-10.484623px;}
.ws96{word-spacing:-10.446000px;}
.ws310{word-spacing:-10.368000px;}
.wsa4{word-spacing:-10.356000px;}
.ws28e{word-spacing:-10.344000px;}
.ws25d{word-spacing:-10.314000px;}
.ws178{word-spacing:-10.302000px;}
.wsa2{word-spacing:-10.284000px;}
.ws84{word-spacing:-10.278000px;}
.ws1d2{word-spacing:-10.270800px;}
.ws177{word-spacing:-10.236000px;}
.ws2d6{word-spacing:-10.224000px;}
.ws186{word-spacing:-10.140000px;}
.ws179{word-spacing:-10.134000px;}
.ws1d3{word-spacing:-10.044000px;}
.wsb3{word-spacing:-10.002000px;}
.wsb4{word-spacing:-9.978000px;}
.ws1a1{word-spacing:-9.972911px;}
.wsd7{word-spacing:-9.972000px;}
.ws2d1{word-spacing:-9.966000px;}
.wsa3{word-spacing:-9.954000px;}
.ws2d4{word-spacing:-9.936000px;}
.ws20f{word-spacing:-9.828000px;}
.ws2c7{word-spacing:-9.810000px;}
.ws30b{word-spacing:-9.693000px;}
.ws128{word-spacing:-9.636000px;}
.wsf2{word-spacing:-9.630000px;}
.ws212{word-spacing:-9.600000px;}
.ws8c{word-spacing:-9.594000px;}
.wsb2{word-spacing:-9.570000px;}
.ws2e2{word-spacing:-9.516000px;}
.ws88{word-spacing:-9.492000px;}
.ws211{word-spacing:-9.438000px;}
.ws30c{word-spacing:-9.423000px;}
.ws133{word-spacing:-9.420000px;}
.ws329{word-spacing:-9.352800px;}
.ws204{word-spacing:-9.258000px;}
.ws7{word-spacing:-9.201600px;}
.ws129{word-spacing:-9.018000px;}
.ws53{word-spacing:-8.981280px;}
.ws52{word-spacing:-8.928360px;}
.ws2d7{word-spacing:-8.904600px;}
.ws2ee{word-spacing:-8.899200px;}
.ws2c9{word-spacing:-8.850000px;}
.ws2cc{word-spacing:-8.808000px;}
.ws2cb{word-spacing:-8.772000px;}
.ws24{word-spacing:-8.688000px;}
.ws2cf{word-spacing:-8.676000px;}
.ws2ca{word-spacing:-8.670000px;}
.ws2c8{word-spacing:-8.628000px;}
.ws2d2{word-spacing:-8.622000px;}
.ws2d3{word-spacing:-8.508000px;}
.ws75{word-spacing:-8.436000px;}
.ws345{word-spacing:-8.429400px;}
.ws56{word-spacing:-8.427600px;}
.ws31f{word-spacing:-8.407800px;}
.ws23d{word-spacing:-8.406000px;}
.ws1bf{word-spacing:-8.376000px;}
.ws351{word-spacing:-8.364600px;}
.ws2e4{word-spacing:-8.358000px;}
.ws1c0{word-spacing:-8.334000px;}
.ws1ba{word-spacing:-8.268911px;}
.ws359{word-spacing:-8.197200px;}
.wsd4{word-spacing:-8.184000px;}
.ws13a{word-spacing:-8.166000px;}
.ws24f{word-spacing:-8.046000px;}
.ws1cf{word-spacing:-8.004000px;}
.ws347{word-spacing:-8.002800px;}
.ws324{word-spacing:-7.997400px;}
.ws308{word-spacing:-7.992000px;}
.ws32f{word-spacing:-7.970400px;}
.ws21d{word-spacing:-7.965000px;}
.ws30f{word-spacing:-7.954200px;}
.ws321{word-spacing:-7.927200px;}
.ws303{word-spacing:-7.911000px;}
.ws143{word-spacing:-7.896000px;}
.ws2ff{word-spacing:-7.830000px;}
.ws195{word-spacing:-7.800000px;}
.ws327{word-spacing:-7.797600px;}
.ws2f6{word-spacing:-7.754400px;}
.ws2f3{word-spacing:-7.722000px;}
.ws2f9{word-spacing:-7.716600px;}
.ws2f4{word-spacing:-7.689600px;}
.ws31b{word-spacing:-7.678800px;}
.ws360{word-spacing:-7.673400px;}
.ws2fc{word-spacing:-7.657200px;}
.ws332{word-spacing:-7.651800px;}
.ws1fd{word-spacing:-7.596000px;}
.ws31c{word-spacing:-7.570800px;}
.ws317{word-spacing:-7.489800px;}
.ws2d9{word-spacing:-7.484400px;}
.ws355{word-spacing:-7.430400px;}
.ws101{word-spacing:-7.386000px;}
.ws83{word-spacing:-7.374000px;}
.ws221{word-spacing:-7.327800px;}
.ws1a4{word-spacing:-7.254911px;}
.ws1d7{word-spacing:-7.176000px;}
.ws2e6{word-spacing:-7.155000px;}
.ws7e{word-spacing:-7.074000px;}
.wsbb{word-spacing:-7.038000px;}
.ws2e7{word-spacing:-7.036200px;}
.ws1bd{word-spacing:-6.912000px;}
.wsd2{word-spacing:-6.870000px;}
.ws29d{word-spacing:-6.864000px;}
.ws272{word-spacing:-6.863400px;}
.ws249{word-spacing:-6.780000px;}
.ws174{word-spacing:-6.690000px;}
.ws29e{word-spacing:-6.630000px;}
.ws338{word-spacing:-6.625800px;}
.wsfb{word-spacing:-6.606000px;}
.ws27{word-spacing:-6.582000px;}
.ws1b8{word-spacing:-6.576000px;}
.wsfd{word-spacing:-6.546000px;}
.wsfc{word-spacing:-6.540000px;}
.ws5f{word-spacing:-6.522000px;}
.ws278{word-spacing:-6.521312px;}
.ws145{word-spacing:-6.456000px;}
.ws27a{word-spacing:-6.446548px;}
.wsc6{word-spacing:-6.432000px;}
.ws18f{word-spacing:-6.420000px;}
.ws16b{word-spacing:-6.348000px;}
.ws2f{word-spacing:-6.318000px;}
.ws9a{word-spacing:-6.300000px;}
.ws314{word-spacing:-6.296400px;}
.ws55{word-spacing:-6.109200px;}
.wse1{word-spacing:-6.090000px;}
.ws24b{word-spacing:-5.970000px;}
.wsa7{word-spacing:-5.964000px;}
.ws13c{word-spacing:-5.892000px;}
.ws26b{word-spacing:-5.868000px;}
.ws24c{word-spacing:-5.832000px;}
.ws37{word-spacing:-5.682000px;}
.ws2fb{word-spacing:-5.675400px;}
.ws19d{word-spacing:-5.670000px;}
.ws113{word-spacing:-5.532000px;}
.ws13e{word-spacing:-5.526000px;}
.wsb{word-spacing:-5.524731px;}
.ws2b4{word-spacing:-5.520000px;}
.wse4{word-spacing:-5.502000px;}
.ws2c2{word-spacing:-5.436000px;}
.ws1e7{word-spacing:-5.418000px;}
.wsd{word-spacing:-5.404732px;}
.ws1e5{word-spacing:-5.352000px;}
.ws1e6{word-spacing:-5.346000px;}
.ws1b7{word-spacing:-5.322000px;}
.ws260{word-spacing:-5.316000px;}
.ws81{word-spacing:-5.184000px;}
.ws3e{word-spacing:-5.082000px;}
.ws61{word-spacing:-4.830000px;}
.ws97{word-spacing:-4.758000px;}
.ws127{word-spacing:-4.680000px;}
.ws49{word-spacing:-4.632000px;}
.ws77{word-spacing:-4.530000px;}
.ws2c3{word-spacing:-4.524000px;}
.ws22c{word-spacing:-4.518068px;}
.ws126{word-spacing:-4.518000px;}
.ws1ec{word-spacing:-4.332000px;}
.ws1f4{word-spacing:-4.242000px;}
.ws6e{word-spacing:-4.230000px;}
.ws106{word-spacing:-4.224000px;}
.wsda{word-spacing:-4.188000px;}
.ws26a{word-spacing:-4.098000px;}
.ws305{word-spacing:-3.996000px;}
.ws198{word-spacing:-3.984000px;}
.ws2db{word-spacing:-3.639600px;}
.ws2dd{word-spacing:-3.386548px;}
.ws33e{word-spacing:-3.331800px;}
.wsf1{word-spacing:-3.144000px;}
.ws2b0{word-spacing:-3.132000px;}
.ws94{word-spacing:-3.096000px;}
.ws10b{word-spacing:-3.084000px;}
.ws110{word-spacing:-2.970000px;}
.wsc4{word-spacing:-2.742000px;}
.ws2b1{word-spacing:-2.688000px;}
.ws2ec{word-spacing:-2.651400px;}
.ws2e9{word-spacing:-2.640600px;}
.ws160{word-spacing:-2.616000px;}
.ws299{word-spacing:-2.562000px;}
.ws15e{word-spacing:-2.496000px;}
.wsa5{word-spacing:-2.490000px;}
.ws2ae{word-spacing:-2.400000px;}
.ws1be{word-spacing:-2.340000px;}
.ws15f{word-spacing:-2.286000px;}
.ws7d{word-spacing:-2.268000px;}
.ws342{word-spacing:-2.208600px;}
.ws42{word-spacing:-2.190000px;}
.ws206{word-spacing:-2.070000px;}
.ws2b9{word-spacing:-2.010000px;}
.ws78{word-spacing:-1.980000px;}
.ws343{word-spacing:-1.933200px;}
.ws13b{word-spacing:-1.848000px;}
.ws207{word-spacing:-1.794000px;}
.ws209{word-spacing:-1.722000px;}
.ws208{word-spacing:-1.638000px;}
.ws68{word-spacing:-1.626000px;}
.ws1b{word-spacing:-1.614000px;}
.ws288{word-spacing:-1.566000px;}
.ws8a{word-spacing:-1.404000px;}
.ws246{word-spacing:-1.056000px;}
.ws243{word-spacing:-0.996000px;}
.ws8b{word-spacing:-0.816000px;}
.ws281{word-spacing:-0.810000px;}
.ws1f0{word-spacing:-0.804000px;}
.ws123{word-spacing:-0.798000px;}
.ws280{word-spacing:-0.774000px;}
.wse{word-spacing:-0.684000px;}
.ws27f{word-spacing:-0.666000px;}
.ws306{word-spacing:-0.459000px;}
.ws10d{word-spacing:-0.318000px;}
.wsa8{word-spacing:-0.288000px;}
.ws107{word-spacing:-0.114000px;}
.ws57{word-spacing:0.000000px;}
.ws320{word-spacing:0.021600px;}
.ws5b{word-spacing:0.102000px;}
.ws6f{word-spacing:0.150000px;}
.ws263{word-spacing:0.156000px;}
.ws2ef{word-spacing:0.156600px;}
.ws10{word-spacing:0.204000px;}
.ws131{word-spacing:0.234000px;}
.wse9{word-spacing:0.684000px;}
.ws31d{word-spacing:0.842400px;}
.ws283{word-spacing:0.954000px;}
.wse3{word-spacing:1.038000px;}
.ws354{word-spacing:1.112400px;}
.ws197{word-spacing:1.200000px;}
.ws319{word-spacing:1.204200px;}
.wsa1{word-spacing:1.218000px;}
.ws200{word-spacing:1.242000px;}
.ws76{word-spacing:1.260000px;}
.wsd9{word-spacing:1.266000px;}
.ws22{word-spacing:1.272000px;}
.ws2b2{word-spacing:1.278000px;}
.ws11a{word-spacing:1.284000px;}
.ws43{word-spacing:1.296000px;}
.ws71{word-spacing:1.308000px;}
.ws29{word-spacing:1.314000px;}
.ws99{word-spacing:1.320000px;}
.ws1c1{word-spacing:1.326000px;}
.ws11b{word-spacing:1.332000px;}
.ws1f5{word-spacing:1.344000px;}
.ws3c{word-spacing:1.350000px;}
.ws2a{word-spacing:1.356000px;}
.ws62{word-spacing:1.362000px;}
.ws118{word-spacing:1.368000px;}
.ws14c{word-spacing:1.374000px;}
.ws44{word-spacing:1.386000px;}
.ws196{word-spacing:1.392000px;}
.ws41{word-spacing:1.398000px;}
.ws1b6{word-spacing:1.416000px;}
.ws185{word-spacing:1.422000px;}
.ws17b{word-spacing:1.428000px;}
.ws1b5{word-spacing:1.434000px;}
.ws17a{word-spacing:1.440000px;}
.ws95{word-spacing:1.446000px;}
.ws45{word-spacing:1.470000px;}
.ws18e{word-spacing:1.476000px;}
.ws2bb{word-spacing:1.482000px;}
.ws286{word-spacing:1.488000px;}
.wsd8{word-spacing:1.518000px;}
.ws40{word-spacing:1.530000px;}
.ws3d{word-spacing:1.542000px;}
.ws124{word-spacing:1.566000px;}
.ws1bc{word-spacing:1.572000px;}
.wsa6{word-spacing:1.578000px;}
.ws1fe{word-spacing:1.584000px;}
.ws242{word-spacing:1.650000px;}
.ws210{word-spacing:1.656000px;}
.ws72{word-spacing:1.686000px;}
.ws2b{word-spacing:1.728000px;}
.ws245{word-spacing:2.892000px;}
.ws50{word-spacing:3.493800px;}
.ws163{word-spacing:3.606710px;}
.ws244{word-spacing:5.364000px;}
.ws4e{word-spacing:18.505800px;}
.ws2c0{word-spacing:20.267430px;}
.wsc{word-spacing:21.443244px;}
.ws4a{word-spacing:23.473800px;}
.ws4c{word-spacing:49.987800px;}
.ws22d{word-spacing:98.672367px;}
.wsa{word-spacing:321.527400px;}
.ws22f{word-spacing:596.699741px;}
.ws237{word-spacing:725.194135px;}
.ws235{word-spacing:731.530056px;}
.ws233{word-spacing:766.713616px;}
.wsb1{word-spacing:986.210072px;}
._11{margin-left:-2981.957925px;}
._1c{margin-left:-36.402609px;}
._1e{margin-left:-7.746000px;}
._27{margin-left:-5.346000px;}
._1d{margin-left:-2.592000px;}
._1b{margin-left:-1.014000px;}
._20{width:1.007400px;}
._12{width:13.456800px;}
._10{width:15.348000px;}
._7{width:16.722000px;}
._4{width:17.790000px;}
._2{width:18.816000px;}
._5{width:19.980000px;}
._6{width:21.024000px;}
._c{width:22.567486px;}
._9{width:23.712000px;}
._f{width:24.774000px;}
._17{width:25.866000px;}
._a{width:27.798000px;}
._19{width:28.800000px;}
._16{width:29.904000px;}
._14{width:31.134000px;}
._b{width:32.952000px;}
._d{width:34.590000px;}
._1f{width:35.604000px;}
._e{width:37.296000px;}
._15{width:38.316000px;}
._3{width:39.738000px;}
._8{width:41.622000px;}
._1a{width:42.768000px;}
._22{width:64.861589px;}
._13{width:74.942280px;}
._26{width:80.742000px;}
._1{width:280.619744px;}
._21{width:353.865977px;}
._24{width:396.417445px;}
._0{width:457.807763px;}
._23{width:555.468257px;}
._25{width:753.638579px;}
._18{width:971.555400px;}
.fc3{color:rgb(64,148,209);}
.fc2{color:rgb(31,76,161);}
.fc6{color:rgb(0,25,255);}
.fc5{color:rgb(0,84,166);}
.fc1{color:rgb(13,84,166);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs15{font-size:32.158200px;}
.fsd{font-size:36.000000px;}
.fs14{font-size:36.178800px;}
.fsb{font-size:37.800000px;}
.fs17{font-size:39.186000px;}
.fsa{font-size:39.995400px;}
.fs8{font-size:40.199400px;}
.fs6{font-size:41.248800px;}
.fs13{font-size:41.938490px;}
.fse{font-size:42.000000px;}
.fsc{font-size:44.999400px;}
.fs4{font-size:47.999400px;}
.fsf{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs18{font-size:57.000000px;}
.fs12{font-size:59.937842px;}
.fs7{font-size:60.000000px;}
.fs11{font-size:63.000000px;}
.fs16{font-size:71.248800px;}
.fs5{font-size:74.999400px;}
.fs1{font-size:77.999400px;}
.fs3{font-size:90.000000px;}
.fs0{font-size:101.999400px;}
.fs9{font-size:179.999400px;}
.fs10{font-size:192.000000px;}
.y0{bottom:0.000000px;}
.y14f{bottom:1.258155px;}
.y14d{bottom:8.286407px;}
.y1{bottom:13.436250px;}
.y14e{bottom:16.020503px;}
.yb3{bottom:22.621350px;}
.y49{bottom:27.553650px;}
.yb2{bottom:32.399850px;}
.y47{bottom:35.207040px;}
.y48{bottom:37.332150px;}
.y46{bottom:43.880250px;}
.y131{bottom:59.952600px;}
.y7c{bottom:59.952750px;}
.y17f{bottom:59.953350px;}
.y1a3{bottom:59.953650px;}
.y239{bottom:59.953950px;}
.yf0{bottom:59.954250px;}
.y20e{bottom:59.954400px;}
.y21f{bottom:59.955750px;}
.y1ed{bottom:64.461984px;}
.y130{bottom:66.670800px;}
.y31{bottom:68.713200px;}
.y2ba{bottom:75.005100px;}
.y1a2{bottom:76.450650px;}
.y238{bottom:76.450950px;}
.ya9{bottom:76.451250px;}
.y12f{bottom:76.536750px;}
.y20d{bottom:76.536900px;}
.y21e{bottom:76.538250px;}
.y7b{bottom:76.620750px;}
.yef{bottom:76.622250px;}
.y17e{bottom:76.705350px;}
.y271{bottom:77.895900px;}
.y1ec{bottom:80.874179px;}
.y1eb{bottom:85.296124px;}
.y30{bottom:85.975200px;}
.y2b9{bottom:89.972550px;}
.ya8{bottom:92.948250px;}
.y1a1{bottom:92.949150px;}
.y12e{bottom:93.119250px;}
.y21d{bottom:93.120750px;}
.y20c{bottom:93.203400px;}
.y7a{bottom:93.288750px;}
.yee{bottom:93.290250px;}
.y1ea{bottom:97.286374px;}
.y270{bottom:99.071400px;}
.y17d{bottom:100.006200px;}
.y2f{bottom:103.322700px;}
.y2b8{bottom:104.940000px;}
.y44{bottom:107.405400px;}
.ya7{bottom:109.445250px;}
.y1a0{bottom:109.446150px;}
.y237{bottom:109.446750px;}
.y12d{bottom:109.701750px;}
.y20b{bottom:109.785900px;}
.y21c{bottom:109.788750px;}
.y79{bottom:109.871250px;}
.y138{bottom:109.872750px;}
.yed{bottom:109.956750px;}
.y17c{bottom:110.040750px;}
.y1e9{bottom:113.699769px;}
.y26f{bottom:115.568400px;}
.y2b7{bottom:119.991150px;}
.y2d{bottom:120.246750px;}
.y43{bottom:123.903750px;}
.ya6{bottom:125.943750px;}
.y19f{bottom:125.945250px;}
.y12c{bottom:126.284250px;}
.y20a{bottom:126.369750px;}
.y21b{bottom:126.371250px;}
.y78{bottom:126.539250px;}
.yec{bottom:126.624750px;}
.y17b{bottom:126.708750px;}
.y2e{bottom:126.878700px;}
.y1e8{bottom:130.111963px;}
.y26e{bottom:133.511700px;}
.y2b6{bottom:134.958600px;}
.y2b{bottom:137.508750px;}
.y42{bottom:140.400750px;}
.y1e7{bottom:142.102214px;}
.ya5{bottom:142.440750px;}
.y19e{bottom:142.442250px;}
.y12b{bottom:142.866750px;}
.y209{bottom:142.952250px;}
.y21a{bottom:142.953750px;}
.y137{bottom:143.121750px;}
.y76{bottom:143.205750px;}
.yeb{bottom:143.292750px;}
.y17a{bottom:143.462250px;}
.y2c{bottom:144.141750px;}
.y77{bottom:149.838750px;}
.y2b5{bottom:150.009750px;}
.y2a{bottom:154.856250px;}
.y28{bottom:154.857750px;}
.y41{bottom:156.897750px;}
.y1e6{bottom:158.514408px;}
.ya4{bottom:158.937750px;}
.y19d{bottom:158.939250px;}
.y12a{bottom:159.449250px;}
.y208{bottom:159.450750px;}
.y219{bottom:159.536250px;}
.y75{bottom:159.788250px;}
.y73{bottom:159.789750px;}
.yea{bottom:160.044750px;}
.y179{bottom:160.130250px;}
.y29{bottom:161.489250px;}
.y2b4{bottom:164.977200px;}
.y74{bottom:166.506750px;}
.y26d{bottom:166.679250px;}
.y1e5{bottom:170.505859px;}
.y27{bottom:172.119750px;}
.ya3{bottom:174.671250px;}
.y19c{bottom:175.521750px;}
.y129{bottom:176.031750px;}
.y207{bottom:176.033250px;}
.y218{bottom:176.118750px;}
.y72{bottom:176.457750px;}
.ye9{bottom:176.712750px;}
.y178{bottom:176.796750px;}
.y2b3{bottom:179.944650px;}
.y26c{bottom:183.176250px;}
.y1e4{bottom:186.918053px;}
.y26{bottom:189.467250px;}
.y1b6{bottom:192.018750px;}
.y19b{bottom:192.020250px;}
.y128{bottom:192.614250px;}
.y206{bottom:192.615750px;}
.y217{bottom:192.701250px;}
.y136{bottom:193.040250px;}
.y71{bottom:193.125750px;}
.ye8{bottom:193.380750px;}
.y177{bottom:193.550250px;}
.y2b2{bottom:194.995800px;}
.y40{bottom:195.165750px;}
.y1e3{bottom:198.908304px;}
.y26b{bottom:205.710750px;}
.y24{bottom:206.730750px;}
.y19a{bottom:208.517250px;}
.y126{bottom:209.198250px;}
.y205{bottom:209.282250px;}
.y216{bottom:209.283750px;}
.y135{bottom:209.622750px;}
.y70{bottom:209.708250px;}
.y2b1{bottom:209.963250px;}
.ye7{bottom:210.048750px;}
.y176{bottom:210.219750px;}
.y3f{bottom:212.003250px;}
.y25{bottom:213.449250px;}
.ya2{bottom:213.620250px;}
.y1e2{bottom:215.320498px;}
.y127{bottom:215.829750px;}
.y26a{bottom:222.209250px;}
.y23{bottom:224.078250px;}
.y21{bottom:224.079750px;}
.y199{bottom:225.014250px;}
.y2b0{bottom:225.015750px;}
.y125{bottom:225.695250px;}
.y204{bottom:225.864750px;}
.y215{bottom:225.866250px;}
.y134{bottom:226.290750px;}
.y6f{bottom:226.374750px;}
.ye6{bottom:226.715250px;}
.y175{bottom:226.971750px;}
.y1e1{bottom:227.311948px;}
.y3e{bottom:228.926250px;}
.ya1{bottom:230.117250px;}
.y22{bottom:230.711250px;}
.y269{bottom:238.706250px;}
.y2af{bottom:239.981850px;}
.y20{bottom:241.427250px;}
.y1b5{bottom:241.511250px;}
.y197{bottom:241.512750px;}
.y124{bottom:242.277750px;}
.y203{bottom:242.447250px;}
.y214{bottom:242.448750px;}
.y133{bottom:242.873250px;}
.y6d{bottom:242.958750px;}
.ye5{bottom:243.383250px;}
.y174{bottom:243.639750px;}
.y1e0{bottom:243.724143px;}
.y3d{bottom:245.849250px;}
.ya0{bottom:246.614250px;}
.y198{bottom:248.144250px;}
.y6e{bottom:249.590250px;}
.y2ae{bottom:254.949300px;}
.y268{bottom:255.203250px;}
.y1df{bottom:255.714393px;}
.y196{bottom:258.009750px;}
.y1f{bottom:258.690750px;}
.y123{bottom:258.860250px;}
.y202{bottom:259.029750px;}
.y200{bottom:259.031250px;}
.y132{bottom:259.539750px;}
.y6c{bottom:259.626750px;}
.ye4{bottom:260.051250px;}
.y173{bottom:260.391750px;}
.y3c{bottom:262.772250px;}
.y9f{bottom:263.112750px;}
.y201{bottom:265.662750px;}
.y2ad{bottom:270.000450px;}
.y267{bottom:273.060750px;}
.y236{bottom:274.506750px;}
.y195{bottom:274.508250px;}
.y1de{bottom:275.187750px;}
.y122{bottom:275.442750px;}
.y1ff{bottom:275.613750px;}
.y1e{bottom:276.038250px;}
.y6b{bottom:276.209250px;}
.ye3{bottom:276.717750px;}
.y172{bottom:276.974250px;}
.y9e{bottom:279.609750px;}
.y3b{bottom:279.693750px;}
.y2ac{bottom:284.967900px;}
.y194{bottom:291.005250px;}
.y234{bottom:291.006750px;}
.y13d{bottom:291.770550px;}
.y121{bottom:292.023750px;}
.y1fe{bottom:292.196250px;}
.y6a{bottom:292.877250px;}
.y1d{bottom:293.301750px;}
.y171{bottom:293.727750px;}
.ye2{bottom:294.065250px;}
.y9d{bottom:296.108250px;}
.y39{bottom:296.532750px;}
.y235{bottom:297.638250px;}
.y2ab{bottom:300.020400px;}
.y266{bottom:301.805250px;}
.y3a{bottom:303.249750px;}
.y13c{bottom:306.823050px;}
.y1b4{bottom:307.502250px;}
.y193{bottom:307.503750px;}
.y1dd{bottom:307.673250px;}
.y120{bottom:308.606250px;}
.y1fd{bottom:308.778750px;}
.y69{bottom:309.543750px;}
.y67{bottom:309.545250px;}
.y170{bottom:310.395750px;}
.y1c{bottom:310.649250px;}
.y9c{bottom:312.606750px;}
.y38{bottom:313.455750px;}
.y2aa{bottom:314.986500px;}
.y68{bottom:316.176750px;}
.y265{bottom:318.303750px;}
.y13b{bottom:321.789150px;}
.y192{bottom:324.000750px;}
.y1dc{bottom:324.170250px;}
.y11f{bottom:325.188750px;}
.y1fc{bottom:325.361250px;}
.y66{bottom:326.129250px;}
.y16f{bottom:327.062250px;}
.y1b{bottom:327.911250px;}
.y9b{bottom:329.103750px;}
.y2a9{bottom:329.953950px;}
.y37{bottom:330.378750px;}
.y264{bottom:334.800750px;}
.y13a{bottom:336.756600px;}
.ye1{bottom:337.524750px;}
.y191{bottom:340.497750px;}
.y233{bottom:340.499250px;}
.y1db{bottom:340.667250px;}
.y11e{bottom:341.771250px;}
.y1fb{bottom:341.943750px;}
.y65{bottom:342.795750px;}
.y16e{bottom:343.815750px;}
.y2a8{bottom:345.005100px;}
.y19{bottom:345.261750px;}
.y9a{bottom:345.600750px;}
.y36{bottom:347.301750px;}
.y263{bottom:351.297750px;}
.y139{bottom:351.807750px;}
.y1a{bottom:351.893250px;}
.ye0{bottom:354.191250px;}
.y190{bottom:356.994750px;}
.y232{bottom:356.996250px;}
.y1b3{bottom:356.999250px;}
.y4c{bottom:357.195000px;}
.y11d{bottom:358.353750px;}
.y1fa{bottom:358.526250px;}
.y64{bottom:359.463750px;}
.y2a7{bottom:359.972550px;}
.y4b{bottom:360.210000px;}
.y16d{bottom:360.483750px;}
.y99{bottom:362.099250px;}
.y18{bottom:362.523750px;}
.y35{bottom:364.224750px;}
.y262{bottom:367.796250px;}
.ydf{bottom:370.859250px;}
.y18f{bottom:373.493250px;}
.y231{bottom:373.494750px;}
.y1b2{bottom:373.496250px;}
.y11c{bottom:374.936250px;}
.y2a6{bottom:375.025050px;}
.y1f8{bottom:375.108750px;}
.y1d0{bottom:375.194250px;}
.y63{bottom:376.046250px;}
.y16c{bottom:377.235750px;}
.y98{bottom:378.596250px;}
.y17{bottom:379.872750px;}
.y34{bottom:381.062250px;}
.y1f9{bottom:381.741750px;}
.y2e9{bottom:383.953950px;}
.y261{bottom:384.293250px;}
.yde{bottom:387.527250px;}
.y18e{bottom:389.990250px;}
.y2a5{bottom:389.991150px;}
.y230{bottom:389.991750px;}
.y1b1{bottom:389.994750px;}
.y11b{bottom:391.434750px;}
.y1cf{bottom:391.691250px;}
.y62{bottom:392.714250px;}
.y16b{bottom:393.903750px;}
.y97{bottom:395.093250px;}
.y16{bottom:397.220250px;}
.y15{bottom:397.983750px;}
.y33{bottom:397.985250px;}
.y2e8{bottom:399.005100px;}
.y260{bottom:400.790250px;}
.ydd{bottom:404.195250px;}
.y2a4{bottom:404.958600px;}
.y18d{bottom:406.488750px;}
.y11a{bottom:408.017250px;}
.y1ce{bottom:408.189750px;}
.y1f7{bottom:408.273750px;}
.y213{bottom:408.275250px;}
.y61{bottom:409.382250px;}
.y16a{bottom:410.655750px;}
.y96{bottom:411.675750px;}
.y2e7{bottom:413.972550px;}
.y32{bottom:414.904200px;}
.y25f{bottom:417.288750px;}
.y2a3{bottom:420.009750px;}
.ydc{bottom:420.861750px;}
.y18c{bottom:422.985750px;}
.y22f{bottom:422.987250px;}
.y119{bottom:424.599750px;}
.y1cd{bottom:424.688250px;}
.y1f6{bottom:424.856250px;}
.y212{bottom:424.857750px;}
.y60{bottom:425.964750px;}
.y169{bottom:427.323750px;}
.y94{bottom:428.172750px;}
.y2e6{bottom:428.940000px;}
.y25e{bottom:433.785750px;}
.y95{bottom:434.805750px;}
.y2a2{bottom:434.977200px;}
.ydb{bottom:437.529750px;}
.y18b{bottom:439.482750px;}
.y189{bottom:439.484250px;}
.y118{bottom:441.182250px;}
.y1cc{bottom:441.185250px;}
.y1f5{bottom:441.438750px;}
.y211{bottom:441.440250px;}
.y5f{bottom:442.631250px;}
.y2e5{bottom:443.991150px;}
.y168{bottom:444.075750px;}
.y93{bottom:444.671250px;}
.y18a{bottom:446.115750px;}
.y2a1{bottom:449.944650px;}
.y25d{bottom:450.282750px;}
.yda{bottom:454.197750px;}
.y1d6{bottom:454.451550px;}
.y22e{bottom:455.981250px;}
.y188{bottom:455.982750px;}
.y1cb{bottom:457.682250px;}
.y117{bottom:457.764750px;}
.y1f4{bottom:458.021250px;}
.y1f2{bottom:458.022750px;}
.y2e4{bottom:458.958600px;}
.y5e{bottom:459.299250px;}
.y167{bottom:460.743750px;}
.y92{bottom:461.168250px;}
.y1f3{bottom:464.739750px;}
.y2a0{bottom:464.995800px;}
.y14{bottom:466.611750px;}
.y25c{bottom:468.141750px;}
.y1d5{bottom:469.504050px;}
.yd9{bottom:470.865750px;}
.y187{bottom:472.479750px;}
.y2e3{bottom:474.009750px;}
.y1ca{bottom:474.180750px;}
.y116{bottom:474.347250px;}
.y1f0{bottom:474.605250px;}
.y5d{bottom:475.881750px;}
.y166{bottom:477.498750px;}
.y91{bottom:477.665250px;}
.y8f{bottom:477.666750px;}
.y29f{bottom:479.963250px;}
.y1f1{bottom:481.322250px;}
.y13{bottom:483.110250px;}
.y90{bottom:484.299750px;}
.y1d4{bottom:484.470150px;}
.y25b{bottom:484.809750px;}
.yd8{bottom:487.532250px;}
.y186{bottom:488.976750px;}
.y2e2{bottom:488.977200px;}
.y1c9{bottom:490.677750px;}
.y115{bottom:490.844250px;}
.y1ef{bottom:491.187750px;}
.y210{bottom:491.271750px;}
.y5c{bottom:492.549750px;}
.y8e{bottom:494.163750px;}
.y165{bottom:494.166750px;}
.y29e{bottom:495.015750px;}
.y1d3{bottom:499.437600px;}
.y12{bottom:499.692750px;}
.y2e1{bottom:503.944650px;}
.yd7{bottom:504.200250px;}
.y185{bottom:505.475250px;}
.y22d{bottom:505.478250px;}
.y1c8{bottom:507.179250px;}
.y114{bottom:507.426750px;}
.y20f{bottom:507.851100px;}
.y1ee{bottom:507.854250px;}
.y5b{bottom:509.132250px;}
.y29d{bottom:509.981850px;}
.y8d{bottom:510.662250px;}
.y164{bottom:510.918750px;}
.y1d2{bottom:514.489650px;}
.y11{bottom:516.189750px;}
.y2e0{bottom:518.995800px;}
.yd6{bottom:520.868250px;}
.y184{bottom:521.972250px;}
.y22c{bottom:521.975250px;}
.y1c7{bottom:523.676250px;}
.y113{bottom:524.009250px;}
.y29c{bottom:524.949300px;}
.y5a{bottom:525.714750px;}
.y8c{bottom:527.159250px;}
.y163{bottom:527.586750px;}
.y1d1{bottom:529.455750px;}
.yf{bottom:532.688250px;}
.y25a{bottom:533.963250px;}
.yd5{bottom:537.536250px;}
.y10{bottom:538.469118px;}
.y183{bottom:538.469250px;}
.y22b{bottom:538.472250px;}
.y29b{bottom:540.000450px;}
.y223{bottom:540.085650px;}
.y1c6{bottom:540.173250px;}
.y112{bottom:540.593250px;}
.y59{bottom:542.382750px;}
.y8b{bottom:543.656250px;}
.y89{bottom:543.657750px;}
.y162{bottom:544.254750px;}
.y2df{bottom:549.015750px;}
.ye{bottom:549.185250px;}
.y8a{bottom:550.289250px;}
.y259{bottom:550.461750px;}
.yd4{bottom:554.202750px;}
.y182{bottom:554.962350px;}
.y29a{bottom:554.967900px;}
.y22a{bottom:554.970750px;}
.y222{bottom:555.052650px;}
.y1c5{bottom:556.671750px;}
.y111{bottom:557.175750px;}
.y58{bottom:559.049250px;}
.y88{bottom:560.154750px;}
.y161{bottom:561.006750px;}
.y2de{bottom:563.981850px;}
.yd{bottom:565.683750px;}
.y299{bottom:570.020400px;}
.y221{bottom:570.105150px;}
.yd3{bottom:570.870750px;}
.y181{bottom:571.460850px;}
.y229{bottom:571.467750px;}
.y110{bottom:573.758250px;}
.y258{bottom:575.207250px;}
.y56{bottom:575.631750px;}
.y87{bottom:576.653250px;}
.y160{bottom:577.674750px;}
.y2dd{bottom:578.949300px;}
.yc{bottom:582.180750px;}
.y57{bottom:582.348750px;}
.y298{bottom:584.986500px;}
.y220{bottom:585.071250px;}
.yd2{bottom:587.453250px;}
.y180{bottom:587.957850px;}
.y228{bottom:587.964750px;}
.y1da{bottom:590.260050px;}
.y10f{bottom:590.340750px;}
.y257{bottom:591.704250px;}
.y55{bottom:592.299750px;}
.y86{bottom:593.150250px;}
.y2dc{bottom:594.000450px;}
.y15f{bottom:594.428250px;}
.yb{bottom:598.677750px;}
.y297{bottom:599.953950px;}
.yd1{bottom:604.121250px;}
.y227{bottom:604.463250px;}
.y1d9{bottom:605.226150px;}
.y10e{bottom:606.923250px;}
.y54{bottom:608.967750px;}
.y2db{bottom:608.967900px;}
.y255{bottom:609.561750px;}
.y84{bottom:609.647250px;}
.y15e{bottom:611.094750px;}
.y256{bottom:611.517750px;}
.y296{bottom:615.005100px;}
.ya{bottom:615.176250px;}
.y85{bottom:616.280250px;}
.y1d8{bottom:620.278650px;}
.yd0{bottom:620.789250px;}
.y226{bottom:620.960250px;}
.y10d{bottom:623.505750px;}
.y2da{bottom:623.935350px;}
.y53{bottom:625.550250px;}
.y254{bottom:626.144250px;}
.y83{bottom:626.145750px;}
.y1a8{bottom:626.230650px;}
.y15d{bottom:627.848250px;}
.y295{bottom:629.972550px;}
.y9{bottom:631.673250px;}
.y1d7{bottom:635.244750px;}
.ycf{bottom:637.455750px;}
.y225{bottom:637.457250px;}
.y2d9{bottom:638.986500px;}
.y10c{bottom:640.088250px;}
.y1a7{bottom:641.197650px;}
.y52{bottom:642.218250px;}
.y82{bottom:642.642750px;}
.y15c{bottom:644.514750px;}
.y294{bottom:645.025050px;}
.y8{bottom:648.170250px;}
.y2d8{bottom:653.953950px;}
.y224{bottom:653.955750px;}
.yce{bottom:654.123750px;}
.y1a6{bottom:656.250150px;}
.y10b{bottom:656.585250px;}
.y51{bottom:658.884750px;}
.y81{bottom:659.139750px;}
.y7f{bottom:659.141250px;}
.y293{bottom:659.991150px;}
.y15b{bottom:661.182750px;}
.y80{bottom:665.772750px;}
.y253{bottom:667.136250px;}
.y2d7{bottom:669.005100px;}
.ycd{bottom:670.791750px;}
.y1a5{bottom:671.216100px;}
.y10a{bottom:673.167750px;}
.y292{bottom:674.958600px;}
.y4f{bottom:675.468750px;}
.y7e{bottom:675.638250px;}
.y15a{bottom:677.850750px;}
.y50{bottom:682.185750px;}
.y252{bottom:683.633250px;}
.y2d6{bottom:683.972550px;}
.y1a4{bottom:686.267250px;}
.ycc{bottom:687.459750px;}
.y278{bottom:688.394550px;}
.y109{bottom:689.750250px;}
.y291{bottom:690.009750px;}
.y7d{bottom:692.130750px;}
.y4d{bottom:692.135250px;}
.y159{bottom:694.518750px;}
.y4e{bottom:698.768250px;}
.y2d5{bottom:698.940000px;}
.y251{bottom:700.131750px;}
.y277{bottom:703.360650px;}
.ycb{bottom:704.126250px;}
.y290{bottom:704.977200px;}
.y108{bottom:706.332750px;}
.y158{bottom:711.270750px;}
.y2d4{bottom:713.991150px;}
.y250{bottom:716.628750px;}
.y276{bottom:718.328100px;}
.y28f{bottom:719.944650px;}
.yca{bottom:720.794250px;}
.y107{bottom:722.915250px;}
.yb0{bottom:724.365450px;}
.y157{bottom:727.938750px;}
.y2d3{bottom:728.958600px;}
.y24f{bottom:733.125750px;}
.y275{bottom:733.380150px;}
.y28e{bottom:734.995800px;}
.yc9{bottom:737.549250px;}
.y106{bottom:739.413750px;}
.yaf{bottom:739.416600px;}
.y2d2{bottom:744.009750px;}
.y156{bottom:744.690750px;}
.y274{bottom:748.346250px;}
.y24e{bottom:749.624250px;}
.y28d{bottom:749.963250px;}
.yc8{bottom:754.215750px;}
.yae{bottom:754.384050px;}
.y105{bottom:755.996250px;}
.y2d1{bottom:758.977200px;}
.y155{bottom:761.358750px;}
.y273{bottom:763.399650px;}
.y28c{bottom:765.015750px;}
.y24d{bottom:766.121250px;}
.yad{bottom:769.351500px;}
.yc7{bottom:770.883750px;}
.y104{bottom:772.578750px;}
.y2d0{bottom:773.944650px;}
.y154{bottom:778.110750px;}
.y272{bottom:778.365750px;}
.y28b{bottom:779.981850px;}
.y24c{bottom:782.618250px;}
.yac{bottom:784.402650px;}
.yc6{bottom:787.551750px;}
.y2cf{bottom:788.995800px;}
.y103{bottom:789.161250px;}
.y153{bottom:794.778750px;}
.y28a{bottom:794.949300px;}
.y24b{bottom:799.116750px;}
.yab{bottom:799.370100px;}
.y2ce{bottom:803.963250px;}
.yc5{bottom:804.219750px;}
.y102{bottom:805.743750px;}
.y289{bottom:810.000450px;}
.y152{bottom:811.532250px;}
.yaa{bottom:814.421250px;}
.y24a{bottom:815.613750px;}
.y2cd{bottom:819.015750px;}
.yc4{bottom:820.886250px;}
.y101{bottom:822.326250px;}
.y288{bottom:824.967900px;}
.y151{bottom:828.198750px;}
.y249{bottom:832.110750px;}
.y2cc{bottom:833.981850px;}
.yc3{bottom:837.554250px;}
.y100{bottom:838.908750px;}
.y287{bottom:840.020400px;}
.y248{bottom:848.609250px;}
.y2cb{bottom:848.949300px;}
.y150{bottom:849.458250px;}
.y14b{bottom:849.459750px;}
.yc2{bottom:854.222250px;}
.y6{bottom:854.390250px;}
.y14c{bottom:854.646000px;}
.y286{bottom:854.986500px;}
.yff{bottom:855.491250px;}
.y7{bottom:856.431750px;}
.y2ca{bottom:864.000450px;}
.y247{bottom:865.106250px;}
.y285{bottom:869.953950px;}
.y14a{bottom:870.378750px;}
.yc1{bottom:870.890250px;}
.yfe{bottom:872.073750px;}
.y1c4{bottom:873.015750px;}
.y2c9{bottom:878.967900px;}
.y245{bottom:881.604750px;}
.y284{bottom:885.005100px;}
.y149{bottom:887.132250px;}
.y246{bottom:887.471118px;}
.yc0{bottom:887.472750px;}
.yfd{bottom:888.656250px;}
.y1c3{bottom:889.512750px;}
.y2c8{bottom:894.020400px;}
.y244{bottom:898.101750px;}
.y283{bottom:899.972550px;}
.y148{bottom:903.714750px;}
.ybf{bottom:904.139250px;}
.yfc{bottom:905.153250px;}
.y1c2{bottom:906.011250px;}
.y5{bottom:908.304750px;}
.y2c7{bottom:908.986500px;}
.y243{bottom:914.598750px;}
.y282{bottom:915.025050px;}
.y147{bottom:920.382750px;}
.ybe{bottom:920.807250px;}
.yfb{bottom:921.737250px;}
.y1c1{bottom:922.508250px;}
.y2c6{bottom:923.953950px;}
.y281{bottom:929.991150px;}
.y242{bottom:931.097250px;}
.y146{bottom:937.134750px;}
.ybd{bottom:937.475250px;}
.yfa{bottom:938.319750px;}
.y2c5{bottom:939.005100px;}
.y1bf{bottom:939.005250px;}
.y4{bottom:944.957250px;}
.y280{bottom:944.958600px;}
.y1c0{bottom:945.638250px;}
.y241{bottom:947.594250px;}
.y145{bottom:953.802750px;}
.y2c4{bottom:953.972550px;}
.ybc{bottom:954.143250px;}
.yf9{bottom:954.902250px;}
.y1b0{bottom:955.502250px;}
.y1be{bottom:955.503750px;}
.y27f{bottom:960.009750px;}
.y240{bottom:964.091250px;}
.y2c3{bottom:968.938650px;}
.y144{bottom:970.554750px;}
.ybb{bottom:970.809750px;}
.yf8{bottom:971.484750px;}
.y1af{bottom:972.000750px;}
.y27e{bottom:974.721750px;}
.y3{bottom:974.978709px;}
.y23f{bottom:980.673750px;}
.y2c2{bottom:983.989800px;}
.y143{bottom:987.222750px;}
.yba{bottom:987.477750px;}
.yf7{bottom:988.067250px;}
.y1ae{bottom:988.497750px;}
.y23e{bottom:997.001250px;}
.y2c1{bottom:998.957250px;}
.y2{bottom:1002.018750px;}
.y142{bottom:1003.974750px;}
.yb9{bottom:1004.145750px;}
.yf6{bottom:1004.564250px;}
.y1bd{bottom:1004.994750px;}
.y1ad{bottom:1004.996250px;}
.y1bc{bottom:1011.627750px;}
.y2c0{bottom:1014.009750px;}
.y27d{bottom:1015.029750px;}
.y141{bottom:1020.642750px;}
.yb8{bottom:1020.813750px;}
.yf5{bottom:1021.146750px;}
.y1ba{bottom:1021.485750px;}
.y1ac{bottom:1021.493250px;}
.y1bb{bottom:1028.126250px;}
.y2bf{bottom:1028.975850px;}
.y27c{bottom:1031.528250px;}
.y140{bottom:1037.396250px;}
.yb7{bottom:1037.480250px;}
.yf4{bottom:1037.729250px;}
.y1b9{bottom:1037.982750px;}
.y23d{bottom:1037.983950px;}
.y1ab{bottom:1037.990250px;}
.y2be{bottom:1043.943300px;}
.y27b{bottom:1048.025250px;}
.y45{bottom:1050.746250px;}
.y13f{bottom:1054.062750px;}
.yb6{bottom:1054.148250px;}
.yf3{bottom:1054.311750px;}
.y23c{bottom:1054.480950px;}
.y1b8{bottom:1054.481250px;}
.y1aa{bottom:1054.488750px;}
.y2bd{bottom:1058.994450px;}
.y27a{bottom:1064.522250px;}
.y13e{bottom:1070.730750px;}
.yb5{bottom:1070.816250px;}
.yf2{bottom:1070.894250px;}
.y1b7{bottom:1070.978250px;}
.y23b{bottom:1070.979450px;}
.y1a9{bottom:1070.985750px;}
.y2bc{bottom:1073.961900px;}
.y279{bottom:1080.765750px;}
.y4a{bottom:1087.350000px;}
.y23a{bottom:1087.476450px;}
.yf1{bottom:1087.476750px;}
.yb4{bottom:1087.482750px;}
.y2bb{bottom:1089.014400px;}
.yb1{bottom:1117.502250px;}
.h1a{height:23.136007px;}
.h19{height:23.725950px;}
.h11{height:25.560000px;}
.h1b{height:25.917987px;}
.h10{height:26.838000px;}
.hb{height:30.316513px;}
.h9{height:30.471145px;}
.h17{height:32.444567px;}
.h2e{height:33.273000px;}
.hf{height:34.079574px;}
.h7{height:34.451731px;}
.h29{height:36.383545px;}
.h5{height:38.934000px;}
.he{height:40.932000px;}
.h2f{height:41.097000px;}
.h26{height:41.580000px;}
.h30{height:42.000000px;}
.h28{height:43.083916px;}
.h16{height:43.260000px;}
.h12{height:43.804688px;}
.h31{height:45.474000px;}
.h8{height:45.480000px;}
.h2c{height:45.492600px;}
.h14{height:47.109375px;}
.h25{height:48.503930px;}
.h23{height:48.509930px;}
.h22{height:48.514130px;}
.h32{height:49.874400px;}
.h2d{height:51.156638px;}
.h27{height:51.324184px;}
.h18{height:53.589145px;}
.h1e{height:53.601145px;}
.h24{height:53.925145px;}
.h1d{height:53.931145px;}
.h21{height:53.933545px;}
.hd{height:53.937145px;}
.h20{height:53.943145px;}
.hc{height:53.953345px;}
.h1f{height:53.958745px;}
.h1c{height:56.328000px;}
.h4{height:59.123545px;}
.h6{height:64.863281px;}
.h3{height:73.541567px;}
.h2a{height:84.344546px;}
.h2b{height:84.349346px;}
.ha{height:136.439545px;}
.h15{height:145.536000px;}
.h2{height:1174.479000px;}
.h13{height:1201.350000px;}
.h0{height:1201.351500px;}
.h1{height:1201.500000px;}
.w3{width:46.261350px;}
.w2{width:884.239500px;}
.w0{width:911.112000px;}
.w1{width:911.250000px;}
.x0{left:0.000000px;}
.x1{left:13.436250px;}
.x1d{left:27.000000px;}
.x3d{left:34.914422px;}
.x3c{left:36.539567px;}
.x2{left:63.779400px;}
.x5b{left:69.732150px;}
.x14{left:77.215650px;}
.x3a{left:78.744900px;}
.x23{left:89.291250px;}
.x27{left:91.587300px;}
.x51{left:92.777850px;}
.x43{left:93.968400px;}
.x7{left:94.988850px;}
.x3{left:99.325950px;}
.x28{left:106.384200px;}
.x44{left:113.442450px;}
.xb{left:118.544850px;}
.x52{left:122.371500px;}
.x24{left:124.497600px;}
.x55{left:127.644000px;}
.x1e{left:129.429750px;}
.x50{left:139.038750px;}
.x1f{left:144.141750px;}
.x25{left:152.645250px;}
.x11{left:169.908750px;}
.x26{left:172.715250px;}
.x3f{left:182.493750px;}
.xc{left:196.185750px;}
.x12{left:198.396750px;}
.xd{left:212.682750px;}
.x6{left:226.205250px;}
.x56{left:229.691250px;}
.x57{left:248.739750px;}
.x18{left:269.489250px;}
.x29{left:280.884750px;}
.x13{left:285.392250px;}
.xf{left:287.603250px;}
.x9{left:291.344250px;}
.x19{left:298.827720px;}
.x10{left:304.355250px;}
.xa{left:320.258250px;}
.x3b{left:335.905500px;}
.x21{left:349.511250px;}
.x22{left:366.264750px;}
.x3e{left:369.495750px;}
.x53{left:375.618750px;}
.x54{left:392.370750px;}
.xe{left:400.025250px;}
.x8{left:410.739750px;}
.x20{left:412.866750px;}
.x37{left:426.642750px;}
.x15{left:459.720150px;}
.x4c{left:462.787148px;}
.x58{left:465.335250px;}
.x4d{left:471.290242px;}
.x36{left:473.244750px;}
.x59{left:474.774750px;}
.x5a{left:486.764250px;}
.x2c{left:490.506750px;}
.x4{left:492.717750px;}
.x38{left:495.524250px;}
.x2d{left:505.899750px;}
.x39{left:512.447250px;}
.x2a{left:527.838750px;}
.x4b{left:533.366250px;}
.x2b{left:544.422750px;}
.x2f{left:545.442750px;}
.x40{left:551.735250px;}
.x30{left:560.919750px;}
.x41{left:566.702250px;}
.x35{left:576.737250px;}
.x42{left:578.267250px;}
.x45{left:579.882750px;}
.x46{left:595.275750px;}
.x1c{left:608.550000px;}
.x33{left:612.198750px;}
.x34{left:626.655750px;}
.x5{left:638.559750px;}
.x1a{left:645.194250px;}
.x1b{left:682.355250px;}
.x4f{left:709.060070px;}
.x49{left:726.660750px;}
.x31{left:740.267250px;}
.x4a{left:757.700250px;}
.x32{left:760.506750px;}
.x17{left:777.005250px;}
.x47{left:784.913250px;}
.x4e{left:787.294292px;}
.x2e{left:791.460750px;}
.x48{left:803.622750px;}
.x16{left:808.469250px;}
@media print{
.v8{vertical-align:-32.960320pt;}
.ve{vertical-align:-25.397832pt;}
.v5{vertical-align:-20.559531pt;}
.va{vertical-align:-13.610667pt;}
.v13{vertical-align:-11.788800pt;}
.v4{vertical-align:-10.890667pt;}
.v10{vertical-align:-9.677867pt;}
.v11{vertical-align:-6.954667pt;}
.v2{vertical-align:-2.725333pt;}
.v3{vertical-align:-1.813333pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:1.818667pt;}
.v1{vertical-align:5.445333pt;}
.v12{vertical-align:11.788800pt;}
.v9{vertical-align:13.610667pt;}
.vd{vertical-align:16.629333pt;}
.vc{vertical-align:18.747200pt;}
.v7{vertical-align:20.873067pt;}
.vf{vertical-align:42.632000pt;}
.v6{vertical-align:58.661333pt;}
.ls11{letter-spacing:0.000000pt;}
.ls7a{letter-spacing:0.005202pt;}
.lsb{letter-spacing:0.005333pt;}
.ls6c{letter-spacing:0.008000pt;}
.ls34{letter-spacing:0.010667pt;}
.ls1a{letter-spacing:0.016000pt;}
.ls17{letter-spacing:0.021333pt;}
.ls23{letter-spacing:0.026667pt;}
.ls44{letter-spacing:0.037333pt;}
.ls64{letter-spacing:0.039306pt;}
.ls55{letter-spacing:0.042667pt;}
.ls19{letter-spacing:0.048000pt;}
.ls60{letter-spacing:0.053333pt;}
.ls77{letter-spacing:0.058667pt;}
.ls66{letter-spacing:0.064000pt;}
.ls78{letter-spacing:0.071700pt;}
.ls79{letter-spacing:0.074667pt;}
.ls76{letter-spacing:0.082133pt;}
.ls70{letter-spacing:0.084800pt;}
.ls15{letter-spacing:0.085333pt;}
.ls6d{letter-spacing:0.106667pt;}
.ls56{letter-spacing:0.107492pt;}
.ls10{letter-spacing:0.128000pt;}
.ls71{letter-spacing:0.134126pt;}
.ls84{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.165333pt;}
.ls1{letter-spacing:0.191467pt;}
.ls6b{letter-spacing:0.194133pt;}
.ls7d{letter-spacing:0.197333pt;}
.ls73{letter-spacing:0.204800pt;}
.ls59{letter-spacing:0.228521pt;}
.ls6a{letter-spacing:0.261333pt;}
.ls6f{letter-spacing:0.325333pt;}
.ls40{letter-spacing:0.426667pt;}
.ls29{letter-spacing:0.432000pt;}
.ls1f{letter-spacing:0.437333pt;}
.ls12{letter-spacing:0.444393pt;}
.ls26{letter-spacing:0.448000pt;}
.ls7{letter-spacing:0.501333pt;}
.ls43{letter-spacing:0.533333pt;}
.ls16{letter-spacing:0.576000pt;}
.ls5{letter-spacing:0.608000pt;}
.ls8{letter-spacing:0.624000pt;}
.ls2a{letter-spacing:0.629333pt;}
.ls25{letter-spacing:0.634667pt;}
.ls27{letter-spacing:0.682667pt;}
.ls18{letter-spacing:0.741333pt;}
.ls1c{letter-spacing:0.746667pt;}
.ls32{letter-spacing:0.778667pt;}
.ls21{letter-spacing:0.842667pt;}
.ls37{letter-spacing:0.848000pt;}
.ls46{letter-spacing:0.890667pt;}
.ls28{letter-spacing:0.906667pt;}
.ls8b{letter-spacing:0.907200pt;}
.ls9d{letter-spacing:0.950400pt;}
.lsf{letter-spacing:0.954667pt;}
.ls39{letter-spacing:0.992000pt;}
.lsd{letter-spacing:0.997333pt;}
.ls14{letter-spacing:1.013333pt;}
.ls72{letter-spacing:1.029333pt;}
.ls5a{letter-spacing:1.034667pt;}
.ls45{letter-spacing:1.040000pt;}
.ls65{letter-spacing:1.045333pt;}
.ls6{letter-spacing:1.104000pt;}
.ls68{letter-spacing:1.168000pt;}
.ls33{letter-spacing:1.173333pt;}
.ls41{letter-spacing:1.189333pt;}
.ls4d{letter-spacing:1.189902pt;}
.ls98{letter-spacing:1.209600pt;}
.ls93{letter-spacing:1.219200pt;}
.ls13{letter-spacing:1.244301pt;}
.ls4e{letter-spacing:1.264000pt;}
.ls75{letter-spacing:1.269333pt;}
.ls51{letter-spacing:1.380800pt;}
.lse{letter-spacing:1.397333pt;}
.ls2e{letter-spacing:1.418667pt;}
.ls24{letter-spacing:1.434667pt;}
.ls81{letter-spacing:1.520000pt;}
.ls80{letter-spacing:1.536000pt;}
.ls2c{letter-spacing:1.845333pt;}
.ls35{letter-spacing:2.720000pt;}
.ls90{letter-spacing:4.833600pt;}
.ls36{letter-spacing:6.656000pt;}
.ls4{letter-spacing:8.407275pt;}
.ls99{letter-spacing:11.798400pt;}
.ls97{letter-spacing:12.100800pt;}
.ls8e{letter-spacing:12.403200pt;}
.ls58{letter-spacing:12.448000pt;}
.ls5f{letter-spacing:12.551478pt;}
.ls9e{letter-spacing:12.705600pt;}
.ls5e{letter-spacing:12.855478pt;}
.ls47{letter-spacing:13.225854pt;}
.ls95{letter-spacing:13.612800pt;}
.ls3b{letter-spacing:13.962667pt;}
.ls30{letter-spacing:13.973333pt;}
.ls62{letter-spacing:14.020091pt;}
.ls63{letter-spacing:14.024358pt;}
.ls3c{letter-spacing:14.146219pt;}
.ls8f{letter-spacing:14.217600pt;}
.ls3f{letter-spacing:14.261333pt;}
.ls86{letter-spacing:14.266667pt;}
.ls7e{letter-spacing:14.279700pt;}
.ls3e{letter-spacing:14.436521pt;}
.ls7c{letter-spacing:14.517202pt;}
.ls94{letter-spacing:14.520000pt;}
.ls83{letter-spacing:14.560000pt;}
.ls42{letter-spacing:15.356886pt;}
.ls9c{letter-spacing:15.427200pt;}
.ls8d{letter-spacing:15.729600pt;}
.ls2b{letter-spacing:15.739200pt;}
.ls48{letter-spacing:15.776000pt;}
.ls91{letter-spacing:15.854400pt;}
.ls89{letter-spacing:16.027200pt;}
.ls8c{letter-spacing:16.032000pt;}
.ls2f{letter-spacing:16.128000pt;}
.ls96{letter-spacing:16.156800pt;}
.ls31{letter-spacing:16.240000pt;}
.ls7f{letter-spacing:16.352000pt;}
.ls88{letter-spacing:16.636800pt;}
.ls20{letter-spacing:16.666667pt;}
.ls7b{letter-spacing:16.763460pt;}
.ls69{letter-spacing:16.789333pt;}
.ls92{letter-spacing:17.241600pt;}
.ls50{letter-spacing:17.285333pt;}
.ls87{letter-spacing:17.589333pt;}
.ls61{letter-spacing:17.616798pt;}
.ls4c{letter-spacing:17.785063pt;}
.ls5c{letter-spacing:17.888000pt;}
.ls85{letter-spacing:17.893333pt;}
.ls6e{letter-spacing:18.298667pt;}
.ls38{letter-spacing:19.760825pt;}
.ls9a{letter-spacing:20.260800pt;}
.ls1e{letter-spacing:20.288000pt;}
.ls1d{letter-spacing:20.293333pt;}
.ls54{letter-spacing:20.314667pt;}
.ls8a{letter-spacing:20.568000pt;}
.ls3{letter-spacing:20.608000pt;}
.ls4a{letter-spacing:20.613333pt;}
.ls49{letter-spacing:20.917333pt;}
.ls2d{letter-spacing:21.077333pt;}
.ls9b{letter-spacing:21.168000pt;}
.ls5d{letter-spacing:21.685333pt;}
.ls3d{letter-spacing:21.818667pt;}
.ls4f{letter-spacing:22.007553pt;}
.ls4b{letter-spacing:22.019730pt;}
.ls74{letter-spacing:23.417326pt;}
.ls0{letter-spacing:23.725684pt;}
.ls57{letter-spacing:23.941333pt;}
.ls5b{letter-spacing:25.625854pt;}
.ls67{letter-spacing:28.962219pt;}
.ls22{letter-spacing:33.545067pt;}
.ls53{letter-spacing:33.670158pt;}
.ls1b{letter-spacing:33.850667pt;}
.lsc{letter-spacing:35.903187pt;}
.ls9{letter-spacing:36.505854pt;}
.ls3a{letter-spacing:37.600825pt;}
.ls52{letter-spacing:38.507492pt;}
.ls2{letter-spacing:68.255187pt;}
.ls82{letter-spacing:68.863187pt;}
.ws79{word-spacing:-34.186667pt;}
.ws2d0{word-spacing:-28.981333pt;}
.ws39{word-spacing:-25.386667pt;}
.ws51{word-spacing:-24.063699pt;}
.ws1ff{word-spacing:-22.944031pt;}
.ws3a{word-spacing:-22.904725pt;}
.ws2da{word-spacing:-22.848000pt;}
.ws257{word-spacing:-21.962667pt;}
.ws1c4{word-spacing:-21.866667pt;}
.ws20c{word-spacing:-21.840000pt;}
.ws1c5{word-spacing:-21.834667pt;}
.ws1{word-spacing:-21.814272pt;}
.ws29f{word-spacing:-21.802667pt;}
.ws255{word-spacing:-21.792000pt;}
.ws1f2{word-spacing:-21.786667pt;}
.ws176{word-spacing:-21.712000pt;}
.wsb9{word-spacing:-21.696000pt;}
.ws1d8{word-spacing:-21.690667pt;}
.ws20b{word-spacing:-21.669333pt;}
.ws254{word-spacing:-21.648000pt;}
.ws0{word-spacing:-21.560407pt;}
.ws98{word-spacing:-21.541333pt;}
.ws14d{word-spacing:-21.488000pt;}
.ws48{word-spacing:-21.450667pt;}
.ws8f{word-spacing:-21.328000pt;}
.ws8e{word-spacing:-21.322667pt;}
.ws23f{word-spacing:-21.269333pt;}
.ws10f{word-spacing:-21.264000pt;}
.ws136{word-spacing:-21.189333pt;}
.ws284{word-spacing:-21.098667pt;}
.wscc{word-spacing:-21.077333pt;}
.ws11e{word-spacing:-21.066667pt;}
.ws147{word-spacing:-21.061333pt;}
.wsdb{word-spacing:-21.029333pt;}
.ws1cb{word-spacing:-21.024000pt;}
.wsf3{word-spacing:-20.986667pt;}
.ws26e{word-spacing:-20.981333pt;}
.ws1ca{word-spacing:-20.922667pt;}
.ws29a{word-spacing:-20.896000pt;}
.ws1c9{word-spacing:-20.885333pt;}
.wsc2{word-spacing:-20.880000pt;}
.ws26d{word-spacing:-20.858667pt;}
.ws11d{word-spacing:-20.848000pt;}
.ws29c{word-spacing:-20.805333pt;}
.ws58{word-spacing:-20.773333pt;}
.ws59{word-spacing:-20.736000pt;}
.ws67{word-spacing:-20.682667pt;}
.ws120{word-spacing:-20.656000pt;}
.ws29b{word-spacing:-20.650667pt;}
.ws292{word-spacing:-20.634667pt;}
.ws171{word-spacing:-20.629333pt;}
.ws105{word-spacing:-20.608000pt;}
.ws121{word-spacing:-20.533333pt;}
.ws166{word-spacing:-20.490667pt;}
.ws19f{word-spacing:-20.458667pt;}
.ws266{word-spacing:-20.426667pt;}
.ws103{word-spacing:-20.421333pt;}
.ws19e{word-spacing:-20.410667pt;}
.ws173{word-spacing:-20.357333pt;}
.ws172{word-spacing:-20.346667pt;}
.ws2bc{word-spacing:-20.336000pt;}
.ws22a{word-spacing:-20.309079pt;}
.wsc7{word-spacing:-20.293333pt;}
.ws1d{word-spacing:-20.288000pt;}
.ws7b{word-spacing:-20.277333pt;}
.ws265{word-spacing:-20.256000pt;}
.ws2a0{word-spacing:-20.245333pt;}
.ws1a2{word-spacing:-20.170667pt;}
.ws2a1{word-spacing:-20.165333pt;}
.ws7a{word-spacing:-20.122667pt;}
.ws21{word-spacing:-20.117333pt;}
.ws199{word-spacing:-20.058667pt;}
.ws100{word-spacing:-20.053333pt;}
.ws28{word-spacing:-20.021333pt;}
.ws1ae{word-spacing:-20.005333pt;}
.ws5a{word-spacing:-20.000000pt;}
.ws2a7{word-spacing:-19.984000pt;}
.wsea{word-spacing:-19.978667pt;}
.ws164{word-spacing:-19.973333pt;}
.ws1a0{word-spacing:-19.968000pt;}
.ws161{word-spacing:-19.946667pt;}
.ws1af{word-spacing:-19.941333pt;}
.ws1f{word-spacing:-19.882667pt;}
.ws2a9{word-spacing:-19.877333pt;}
.ws73{word-spacing:-19.861333pt;}
.ws2a8{word-spacing:-19.824000pt;}
.ws251{word-spacing:-19.818667pt;}
.ws154{word-spacing:-19.813333pt;}
.ws1b1{word-spacing:-19.802667pt;}
.ws1b2{word-spacing:-19.776000pt;}
.ws19c{word-spacing:-19.770667pt;}
.ws250{word-spacing:-19.765333pt;}
.ws1b0{word-spacing:-19.754667pt;}
.ws155{word-spacing:-19.728000pt;}
.ws2b5{word-spacing:-19.722667pt;}
.ws1fa{word-spacing:-19.690667pt;}
.ws141{word-spacing:-19.653333pt;}
.ws14{word-spacing:-19.637333pt;}
.ws2b6{word-spacing:-19.568000pt;}
.wsc3{word-spacing:-19.562667pt;}
.wsaa{word-spacing:-19.560000pt;}
.ws18{word-spacing:-19.514667pt;}
.ws11{word-spacing:-19.466667pt;}
.ws19b{word-spacing:-19.440000pt;}
.ws19{word-spacing:-19.424000pt;}
.wsed{word-spacing:-19.418667pt;}
.wsc5{word-spacing:-19.408000pt;}
.ws132{word-spacing:-19.381333pt;}
.wsf4{word-spacing:-19.370667pt;}
.wsc8{word-spacing:-19.338667pt;}
.wsb6{word-spacing:-19.333333pt;}
.ws1f3{word-spacing:-19.328000pt;}
.ws25e{word-spacing:-19.317333pt;}
.ws146{word-spacing:-19.306667pt;}
.ws27d{word-spacing:-19.285333pt;}
.ws33b{word-spacing:-19.257600pt;}
.ws1c3{word-spacing:-19.253333pt;}
.wsbd{word-spacing:-19.237333pt;}
.ws352{word-spacing:-19.204800pt;}
.ws1dc{word-spacing:-19.200000pt;}
.ws33a{word-spacing:-19.185600pt;}
.ws180{word-spacing:-19.130667pt;}
.ws12d{word-spacing:-19.125333pt;}
.ws117{word-spacing:-19.082667pt;}
.ws17e{word-spacing:-19.072000pt;}
.ws1f7{word-spacing:-19.066667pt;}
.ws115{word-spacing:-19.056000pt;}
.ws17f{word-spacing:-19.024000pt;}
.ws30e{word-spacing:-19.022400pt;}
.ws247{word-spacing:-19.013333pt;}
.ws17d{word-spacing:-18.992000pt;}
.ws339{word-spacing:-18.969600pt;}
.ws12c{word-spacing:-18.965333pt;}
.wse2{word-spacing:-18.949333pt;}
.ws1b9{word-spacing:-18.933333pt;}
.ws35a{word-spacing:-18.916800pt;}
.ws12b{word-spacing:-18.901333pt;}
.ws2b8{word-spacing:-18.896000pt;}
.ws34c{word-spacing:-18.892800pt;}
.ws181{word-spacing:-18.842667pt;}
.ws116{word-spacing:-18.832000pt;}
.ws183{word-spacing:-18.805333pt;}
.ws34d{word-spacing:-18.787200pt;}
.ws1cd{word-spacing:-18.757333pt;}
.ws334{word-spacing:-18.744000pt;}
.ws1bb{word-spacing:-18.736000pt;}
.ws2fd{word-spacing:-18.729600pt;}
.ws2e{word-spacing:-18.720000pt;}
.ws182{word-spacing:-18.698667pt;}
.ws150{word-spacing:-18.633600pt;}
.ws290{word-spacing:-18.549333pt;}
.wsf6{word-spacing:-18.528000pt;}
.ws256{word-spacing:-18.512000pt;}
.ws34a{word-spacing:-18.494400pt;}
.wsf{word-spacing:-18.474667pt;}
.ws3f{word-spacing:-18.469333pt;}
.ws1ce{word-spacing:-18.453333pt;}
.ws276{word-spacing:-18.441600pt;}
.ws1cc{word-spacing:-18.426667pt;}
.ws2f8{word-spacing:-18.417600pt;}
.ws2f1{word-spacing:-18.393600pt;}
.ws33d{word-spacing:-18.388800pt;}
.ws2f0{word-spacing:-18.374400pt;}
.ws16d{word-spacing:-18.352000pt;}
.wsf7{word-spacing:-18.346667pt;}
.ws151{word-spacing:-18.345600pt;}
.ws35d{word-spacing:-18.336000pt;}
.ws1fc{word-spacing:-18.330667pt;}
.ws22b{word-spacing:-18.323028pt;}
.ws82{word-spacing:-18.309333pt;}
.ws21b{word-spacing:-18.307200pt;}
.ws24a{word-spacing:-18.304000pt;}
.ws9d{word-spacing:-18.298667pt;}
.ws9b{word-spacing:-18.293333pt;}
.ws21a{word-spacing:-18.268800pt;}
.wsd0{word-spacing:-18.256000pt;}
.ws165{word-spacing:-18.240000pt;}
.ws1fb{word-spacing:-18.197333pt;}
.ws21c{word-spacing:-18.196800pt;}
.ws18b{word-spacing:-18.170667pt;}
.wsee{word-spacing:-18.165333pt;}
.wsdc{word-spacing:-18.160000pt;}
.wsf5{word-spacing:-18.154667pt;}
.wsac{word-spacing:-18.110400pt;}
.ws270{word-spacing:-18.101333pt;}
.ws219{word-spacing:-18.081600pt;}
.ws54{word-spacing:-18.048000pt;}
.ws86{word-spacing:-18.042667pt;}
.ws2ab{word-spacing:-18.016000pt;}
.ws2ac{word-spacing:-18.000000pt;}
.wsde{word-spacing:-17.973333pt;}
.ws85{word-spacing:-17.962667pt;}
.ws1e8{word-spacing:-17.946667pt;}
.wse0{word-spacing:-17.936000pt;}
.ws87{word-spacing:-17.914667pt;}
.ws26c{word-spacing:-17.866667pt;}
.ws1a3{word-spacing:-17.856000pt;}
.wsdf{word-spacing:-17.840000pt;}
.ws21e{word-spacing:-17.803200pt;}
.ws262{word-spacing:-17.792000pt;}
.ws261{word-spacing:-17.754667pt;}
.ws2a4{word-spacing:-17.733333pt;}
.ws12a{word-spacing:-17.701333pt;}
.ws1a5{word-spacing:-17.696000pt;}
.wsf9{word-spacing:-17.658667pt;}
.ws1f1{word-spacing:-17.637333pt;}
.ws1d1{word-spacing:-17.630400pt;}
.ws285{word-spacing:-17.610667pt;}
.ws187{word-spacing:-17.605333pt;}
.wsfa{word-spacing:-17.600000pt;}
.wsb8{word-spacing:-17.594667pt;}
.ws348{word-spacing:-17.587200pt;}
.ws2b7{word-spacing:-17.568000pt;}
.ws1b3{word-spacing:-17.546667pt;}
.ws32{word-spacing:-17.536000pt;}
.wsf8{word-spacing:-17.525333pt;}
.ws33{word-spacing:-17.509333pt;}
.wsd5{word-spacing:-17.488000pt;}
.ws32c{word-spacing:-17.400000pt;}
.ws13{word-spacing:-17.397333pt;}
.ws17c{word-spacing:-17.370667pt;}
.ws190{word-spacing:-17.365333pt;}
.ws15d{word-spacing:-17.333333pt;}
.ws330{word-spacing:-17.328000pt;}
.ws2a2{word-spacing:-17.312000pt;}
.ws33f{word-spacing:-17.284800pt;}
.ws248{word-spacing:-17.253333pt;}
.ws102{word-spacing:-17.221333pt;}
.ws14f{word-spacing:-17.208000pt;}
.ws65{word-spacing:-17.146667pt;}
.ws32e{word-spacing:-17.102400pt;}
.ws1e3{word-spacing:-17.093333pt;}
.ws2a3{word-spacing:-17.082667pt;}
.ws1e{word-spacing:-17.056000pt;}
.ws109{word-spacing:-17.018667pt;}
.ws224{word-spacing:-17.001600pt;}
.ws10a{word-spacing:-16.986667pt;}
.ws6d{word-spacing:-16.976000pt;}
.ws1e2{word-spacing:-16.954667pt;}
.ws1e4{word-spacing:-16.938667pt;}
.ws20d{word-spacing:-16.853333pt;}
.ws167{word-spacing:-16.842667pt;}
.ws168{word-spacing:-16.837333pt;}
.ws32b{word-spacing:-16.756800pt;}
.wse8{word-spacing:-16.752000pt;}
.ws12{word-spacing:-16.725333pt;}
.ws2aa{word-spacing:-16.688000pt;}
.ws322{word-spacing:-16.680000pt;}
.ws2bd{word-spacing:-16.666667pt;}
.ws30a{word-spacing:-16.656000pt;}
.ws170{word-spacing:-16.650667pt;}
.wsc0{word-spacing:-16.624000pt;}
.ws298{word-spacing:-16.618667pt;}
.ws15b{word-spacing:-16.613333pt;}
.ws108{word-spacing:-16.608000pt;}
.ws1c{word-spacing:-16.602667pt;}
.ws111{word-spacing:-16.592000pt;}
.ws92{word-spacing:-16.586667pt;}
.ws30d{word-spacing:-16.584000pt;}
.ws215{word-spacing:-16.581333pt;}
.ws2c4{word-spacing:-16.570667pt;}
.ws20e{word-spacing:-16.560000pt;}
.ws15c{word-spacing:-16.549333pt;}
.ws18c{word-spacing:-16.544000pt;}
.ws25c{word-spacing:-16.538667pt;}
.ws1f6{word-spacing:-16.533333pt;}
.ws1db{word-spacing:-16.528000pt;}
.ws138{word-spacing:-16.512000pt;}
.ws34{word-spacing:-16.501333pt;}
.ws64{word-spacing:-16.490667pt;}
.ws213{word-spacing:-16.485333pt;}
.ws69{word-spacing:-16.464000pt;}
.wsc1{word-spacing:-16.448000pt;}
.ws9f{word-spacing:-16.442667pt;}
.ws2af{word-spacing:-16.437333pt;}
.ws253{word-spacing:-16.416000pt;}
.ws19a{word-spacing:-16.405333pt;}
.ws252{word-spacing:-16.400000pt;}
.wse5{word-spacing:-16.394667pt;}
.ws328{word-spacing:-16.372800pt;}
.ws18d{word-spacing:-16.357333pt;}
.ws104{word-spacing:-16.352000pt;}
.ws10e{word-spacing:-16.304000pt;}
.ws1b4{word-spacing:-16.298667pt;}
.ws9e{word-spacing:-16.288000pt;}
.wsff{word-spacing:-16.272000pt;}
.ws2b3{word-spacing:-16.229333pt;}
.ws302{word-spacing:-16.204800pt;}
.ws214{word-spacing:-16.192000pt;}
.ws28b{word-spacing:-16.176000pt;}
.ws27b{word-spacing:-16.166400pt;}
.wsbf{word-spacing:-16.112000pt;}
.ws1c8{word-spacing:-16.090667pt;}
.ws277{word-spacing:-16.080000pt;}
.ws175{word-spacing:-16.042667pt;}
.ws74{word-spacing:-16.026667pt;}
.ws188{word-spacing:-15.984000pt;}
.ws282{word-spacing:-15.941333pt;}
.ws1c7{word-spacing:-15.930667pt;}
.ws12e{word-spacing:-15.898667pt;}
.ws279{word-spacing:-15.868800pt;}
.ws5e{word-spacing:-15.850667pt;}
.ws148{word-spacing:-15.845333pt;}
.ws1ab{word-spacing:-15.834667pt;}
.ws11c{word-spacing:-15.818667pt;}
.ws1eb{word-spacing:-15.808000pt;}
.ws1a{word-spacing:-15.797333pt;}
.wsad{word-spacing:-15.777600pt;}
.ws1ad{word-spacing:-15.749333pt;}
.ws264{word-spacing:-15.712000pt;}
.ws2bf{word-spacing:-15.674667pt;}
.ws28a{word-spacing:-15.664000pt;}
.ws91{word-spacing:-15.637333pt;}
.wsef{word-spacing:-15.632000pt;}
.ws15a{word-spacing:-15.626667pt;}
.ws189{word-spacing:-15.616000pt;}
.wsab{word-spacing:-15.576000pt;}
.ws31e{word-spacing:-15.566400pt;}
.ws66{word-spacing:-15.514667pt;}
.ws309{word-spacing:-15.499200pt;}
.wsf0{word-spacing:-15.498667pt;}
.ws258{word-spacing:-15.493333pt;}
.ws325{word-spacing:-15.489600pt;}
.ws333{word-spacing:-15.470400pt;}
.ws344{word-spacing:-15.465600pt;}
.ws259{word-spacing:-15.440000pt;}
.ws25f{word-spacing:-15.434667pt;}
.ws1ac{word-spacing:-15.338667pt;}
.ws1e9{word-spacing:-15.333333pt;}
.ws297{word-spacing:-15.322667pt;}
.ws357{word-spacing:-15.264000pt;}
.wsbc{word-spacing:-15.248000pt;}
.wsba{word-spacing:-15.216000pt;}
.ws201{word-spacing:-15.205333pt;}
.ws1a7{word-spacing:-15.184000pt;}
.ws346{word-spacing:-15.120000pt;}
.wscd{word-spacing:-15.082667pt;}
.ws202{word-spacing:-15.066667pt;}
.ws358{word-spacing:-15.062400pt;}
.ws3b{word-spacing:-15.050667pt;}
.ws307{word-spacing:-15.038400pt;}
.wscf{word-spacing:-15.034667pt;}
.wsae{word-spacing:-15.024000pt;}
.ws4d{word-spacing:-15.014400pt;}
.ws1d6{word-spacing:-14.990400pt;}
.ws4f{word-spacing:-14.971200pt;}
.ws26f{word-spacing:-14.970667pt;}
.ws2e1{word-spacing:-14.961600pt;}
.ws153{word-spacing:-14.956800pt;}
.wsaf{word-spacing:-14.932800pt;}
.ws220{word-spacing:-14.923200pt;}
.ws9c{word-spacing:-14.917333pt;}
.ws5c{word-spacing:-14.912000pt;}
.ws32a{word-spacing:-14.908800pt;}
.ws2f5{word-spacing:-14.904000pt;}
.wsce{word-spacing:-14.901333pt;}
.ws4b{word-spacing:-14.899200pt;}
.ws316{word-spacing:-14.880000pt;}
.ws323{word-spacing:-14.851200pt;}
.ws225{word-spacing:-14.841600pt;}
.ws25b{word-spacing:-14.832000pt;}
.ws35{word-spacing:-14.826667pt;}
.ws144{word-spacing:-14.800000pt;}
.ws25a{word-spacing:-14.789333pt;}
.ws326{word-spacing:-14.788800pt;}
.ws2ed{word-spacing:-14.779200pt;}
.ws152{word-spacing:-14.774400pt;}
.ws2ea{word-spacing:-14.769600pt;}
.ws318{word-spacing:-14.764800pt;}
.ws16f{word-spacing:-14.762667pt;}
.ws14b{word-spacing:-14.709333pt;}
.ws27c{word-spacing:-14.707200pt;}
.ws38{word-spacing:-14.704000pt;}
.ws35f{word-spacing:-14.659200pt;}
.ws331{word-spacing:-14.649600pt;}
.ws11f{word-spacing:-14.613333pt;}
.ws304{word-spacing:-14.606400pt;}
.ws2f7{word-spacing:-14.601600pt;}
.wsdd{word-spacing:-14.586667pt;}
.ws14a{word-spacing:-14.533333pt;}
.ws296{word-spacing:-14.501333pt;}
.ws192{word-spacing:-14.426667pt;}
.ws191{word-spacing:-14.400000pt;}
.ws1ee{word-spacing:-14.373333pt;}
.ws26{word-spacing:-14.368000pt;}
.ws2e5{word-spacing:-14.289600pt;}
.ws2ad{word-spacing:-14.282667pt;}
.ws350{word-spacing:-14.270400pt;}
.ws1df{word-spacing:-14.256000pt;}
.ws12f{word-spacing:-14.245333pt;}
.ws1f9{word-spacing:-14.202667pt;}
.ws1e1{word-spacing:-14.192000pt;}
.ws63{word-spacing:-14.176000pt;}
.ws2d{word-spacing:-14.154667pt;}
.ws2c{word-spacing:-14.064000pt;}
.ws271{word-spacing:-14.026667pt;}
.wsc9{word-spacing:-14.005333pt;}
.ws203{word-spacing:-13.994667pt;}
.ws5d{word-spacing:-13.978667pt;}
.ws2be{word-spacing:-13.930667pt;}
.ws2d8{word-spacing:-13.905600pt;}
.wsca{word-spacing:-13.904000pt;}
.wscb{word-spacing:-13.898667pt;}
.ws80{word-spacing:-13.856000pt;}
.ws35c{word-spacing:-13.852800pt;}
.ws1e0{word-spacing:-13.824000pt;}
.ws234{word-spacing:-13.772628pt;}
.ws287{word-spacing:-13.733333pt;}
.ws31{word-spacing:-13.706667pt;}
.ws119{word-spacing:-13.648000pt;}
.ws30{word-spacing:-13.626667pt;}
.ws130{word-spacing:-13.621333pt;}
.ws16{word-spacing:-13.594667pt;}
.ws16c{word-spacing:-13.589333pt;}
.ws89{word-spacing:-13.584000pt;}
.ws313{word-spacing:-13.555200pt;}
.ws122{word-spacing:-13.488000pt;}
.ws2c5{word-spacing:-13.473600pt;}
.ws156{word-spacing:-13.450667pt;}
.ws312{word-spacing:-13.449600pt;}
.wse6{word-spacing:-13.434400pt;}
.ws17{word-spacing:-13.429333pt;}
.ws112{word-spacing:-13.418667pt;}
.wsec{word-spacing:-13.413333pt;}
.ws90{word-spacing:-13.402667pt;}
.ws158{word-spacing:-13.386667pt;}
.wsd6{word-spacing:-13.381333pt;}
.ws157{word-spacing:-13.370667pt;}
.wsa9{word-spacing:-13.358400pt;}
.wsbe{word-spacing:-13.344000pt;}
.ws240{word-spacing:-13.338667pt;}
.ws232{word-spacing:-13.337433pt;}
.ws8d{word-spacing:-13.333333pt;}
.ws60{word-spacing:-13.328000pt;}
.ws238{word-spacing:-13.324633pt;}
.ws184{word-spacing:-13.322667pt;}
.ws1d5{word-spacing:-13.267200pt;}
.ws23a{word-spacing:-13.264901pt;}
.ws236{word-spacing:-13.252101pt;}
.ws22e{word-spacing:-13.247834pt;}
.ws47{word-spacing:-13.200000pt;}
.wsa0{word-spacing:-13.193600pt;}
.ws2de{word-spacing:-13.185600pt;}
.ws2dc{word-spacing:-13.176000pt;}
.wsb5{word-spacing:-13.120000pt;}
.ws239{word-spacing:-13.098503pt;}
.ws229{word-spacing:-13.081436pt;}
.ws2fa{word-spacing:-13.051200pt;}
.ws1ea{word-spacing:-13.002667pt;}
.ws135{word-spacing:-12.970667pt;}
.ws23e{word-spacing:-12.954667pt;}
.ws125{word-spacing:-12.912000pt;}
.ws149{word-spacing:-12.906667pt;}
.ws16a{word-spacing:-12.901333pt;}
.ws23c{word-spacing:-12.897972pt;}
.ws231{word-spacing:-12.893705pt;}
.ws23b{word-spacing:-12.889439pt;}
.ws230{word-spacing:-12.876639pt;}
.ws222{word-spacing:-12.840000pt;}
.ws140{word-spacing:-12.821333pt;}
.ws24e{word-spacing:-12.800000pt;}
.wsb0{word-spacing:-12.794667pt;}
.ws7f{word-spacing:-12.773333pt;}
.ws241{word-spacing:-12.714667pt;}
.ws169{word-spacing:-12.693333pt;}
.ws356{word-spacing:-12.595200pt;}
.ws216{word-spacing:-12.570667pt;}
.ws217{word-spacing:-12.565333pt;}
.wsd1{word-spacing:-12.517333pt;}
.ws15{word-spacing:-12.496000pt;}
.ws16e{word-spacing:-12.464000pt;}
.ws1a9{word-spacing:-12.458667pt;}
.ws1dd{word-spacing:-12.448000pt;}
.ws93{word-spacing:-12.432000pt;}
.ws6c{word-spacing:-12.426667pt;}
.ws70{word-spacing:-12.416000pt;}
.ws21f{word-spacing:-12.369600pt;}
.ws1da{word-spacing:-12.341333pt;}
.ws1aa{word-spacing:-12.336000pt;}
.ws1de{word-spacing:-12.309333pt;}
.ws1ef{word-spacing:-12.304000pt;}
.ws275{word-spacing:-12.268800pt;}
.ws274{word-spacing:-12.264000pt;}
.ws18a{word-spacing:-12.256000pt;}
.ws1a8{word-spacing:-12.208000pt;}
.wsd3{word-spacing:-12.192000pt;}
.ws223{word-spacing:-12.158400pt;}
.ws273{word-spacing:-12.144000pt;}
.ws205{word-spacing:-12.117333pt;}
.ws2c6{word-spacing:-12.114400pt;}
.ws23{word-spacing:-12.112000pt;}
.ws2c1{word-spacing:-12.089067pt;}
.ws142{word-spacing:-12.064000pt;}
.ws2e0{word-spacing:-12.062400pt;}
.ws2d5{word-spacing:-11.977600pt;}
.ws14e{word-spacing:-11.952000pt;}
.ws13d{word-spacing:-11.914667pt;}
.ws289{word-spacing:-11.888000pt;}
.ws218{word-spacing:-11.846400pt;}
.ws291{word-spacing:-11.813333pt;}
.ws269{word-spacing:-11.765333pt;}
.ws10c{word-spacing:-11.760000pt;}
.ws268{word-spacing:-11.717333pt;}
.ws159{word-spacing:-11.696000pt;}
.ws13f{word-spacing:-11.653333pt;}
.ws134{word-spacing:-11.637333pt;}
.ws1d4{word-spacing:-11.611200pt;}
.wse7{word-spacing:-11.589333pt;}
.ws1f8{word-spacing:-11.584000pt;}
.ws194{word-spacing:-11.536000pt;}
.ws6{word-spacing:-11.534400pt;}
.ws193{word-spacing:-11.509333pt;}
.ws2cd{word-spacing:-11.498667pt;}
.ws9{word-spacing:-11.472000pt;}
.ws2a6{word-spacing:-11.456000pt;}
.ws1c2{word-spacing:-11.445333pt;}
.ws2{word-spacing:-11.405246pt;}
.ws2a5{word-spacing:-11.376000pt;}
.ws1d0{word-spacing:-11.347200pt;}
.ws7c{word-spacing:-11.285333pt;}
.ws5{word-spacing:-11.273513pt;}
.wseb{word-spacing:-11.226667pt;}
.ws3{word-spacing:-11.211114pt;}
.ws4{word-spacing:-11.204180pt;}
.ws8{word-spacing:-11.198400pt;}
.ws2ce{word-spacing:-11.194667pt;}
.ws33c{word-spacing:-11.150400pt;}
.ws353{word-spacing:-11.126400pt;}
.ws20{word-spacing:-11.104000pt;}
.ws315{word-spacing:-11.083200pt;}
.ws34e{word-spacing:-11.040000pt;}
.ws293{word-spacing:-10.986667pt;}
.ws35b{word-spacing:-10.963200pt;}
.ws294{word-spacing:-10.949333pt;}
.ws6a{word-spacing:-10.912000pt;}
.ws34f{word-spacing:-10.790400pt;}
.ws139{word-spacing:-10.778667pt;}
.ws335{word-spacing:-10.776000pt;}
.wsfe{word-spacing:-10.762667pt;}
.ws295{word-spacing:-10.725333pt;}
.ws28d{word-spacing:-10.650667pt;}
.ws20a{word-spacing:-10.602667pt;}
.ws28c{word-spacing:-10.576000pt;}
.ws2fe{word-spacing:-10.560000pt;}
.ws2df{word-spacing:-10.555200pt;}
.ws2e3{word-spacing:-10.533333pt;}
.ws25{word-spacing:-10.522667pt;}
.ws34b{word-spacing:-10.516800pt;}
.ws301{word-spacing:-10.488000pt;}
.ws31a{word-spacing:-10.464000pt;}
.ws2eb{word-spacing:-10.435200pt;}
.ws300{word-spacing:-10.430400pt;}
.ws27e{word-spacing:-10.378667pt;}
.ws24d{word-spacing:-10.357333pt;}
.wsb7{word-spacing:-10.314667pt;}
.ws1d9{word-spacing:-10.298667pt;}
.ws35e{word-spacing:-10.286400pt;}
.ws2f2{word-spacing:-10.214400pt;}
.ws2ba{word-spacing:-10.154667pt;}
.ws2e8{word-spacing:-10.056000pt;}
.ws1c6{word-spacing:-10.042667pt;}
.ws6b{word-spacing:-9.941333pt;}
.ws341{word-spacing:-9.921600pt;}
.ws340{word-spacing:-9.844800pt;}
.ws46{word-spacing:-9.776000pt;}
.ws36{word-spacing:-9.749333pt;}
.ws267{word-spacing:-9.690667pt;}
.ws114{word-spacing:-9.642667pt;}
.ws228{word-spacing:-9.626667pt;}
.ws349{word-spacing:-9.614400pt;}
.ws227{word-spacing:-9.605333pt;}
.ws336{word-spacing:-9.566400pt;}
.ws1a6{word-spacing:-9.536000pt;}
.ws1ed{word-spacing:-9.466667pt;}
.ws32d{word-spacing:-9.384000pt;}
.ws28f{word-spacing:-9.370667pt;}
.ws226{word-spacing:-9.360000pt;}
.ws337{word-spacing:-9.350400pt;}
.ws137{word-spacing:-9.338667pt;}
.ws311{word-spacing:-9.326400pt;}
.ws162{word-spacing:-9.319664pt;}
.ws96{word-spacing:-9.285333pt;}
.ws310{word-spacing:-9.216000pt;}
.wsa4{word-spacing:-9.205333pt;}
.ws28e{word-spacing:-9.194667pt;}
.ws25d{word-spacing:-9.168000pt;}
.ws178{word-spacing:-9.157333pt;}
.wsa2{word-spacing:-9.141333pt;}
.ws84{word-spacing:-9.136000pt;}
.ws1d2{word-spacing:-9.129600pt;}
.ws177{word-spacing:-9.098667pt;}
.ws2d6{word-spacing:-9.088000pt;}
.ws186{word-spacing:-9.013333pt;}
.ws179{word-spacing:-9.008000pt;}
.ws1d3{word-spacing:-8.928000pt;}
.wsb3{word-spacing:-8.890667pt;}
.wsb4{word-spacing:-8.869333pt;}
.ws1a1{word-spacing:-8.864810pt;}
.wsd7{word-spacing:-8.864000pt;}
.ws2d1{word-spacing:-8.858667pt;}
.wsa3{word-spacing:-8.848000pt;}
.ws2d4{word-spacing:-8.832000pt;}
.ws20f{word-spacing:-8.736000pt;}
.ws2c7{word-spacing:-8.720000pt;}
.ws30b{word-spacing:-8.616000pt;}
.ws128{word-spacing:-8.565333pt;}
.wsf2{word-spacing:-8.560000pt;}
.ws212{word-spacing:-8.533333pt;}
.ws8c{word-spacing:-8.528000pt;}
.wsb2{word-spacing:-8.506667pt;}
.ws2e2{word-spacing:-8.458667pt;}
.ws88{word-spacing:-8.437333pt;}
.ws211{word-spacing:-8.389333pt;}
.ws30c{word-spacing:-8.376000pt;}
.ws133{word-spacing:-8.373333pt;}
.ws329{word-spacing:-8.313600pt;}
.ws204{word-spacing:-8.229333pt;}
.ws7{word-spacing:-8.179200pt;}
.ws129{word-spacing:-8.016000pt;}
.ws53{word-spacing:-7.983360pt;}
.ws52{word-spacing:-7.936320pt;}
.ws2d7{word-spacing:-7.915200pt;}
.ws2ee{word-spacing:-7.910400pt;}
.ws2c9{word-spacing:-7.866667pt;}
.ws2cc{word-spacing:-7.829333pt;}
.ws2cb{word-spacing:-7.797333pt;}
.ws24{word-spacing:-7.722667pt;}
.ws2cf{word-spacing:-7.712000pt;}
.ws2ca{word-spacing:-7.706667pt;}
.ws2c8{word-spacing:-7.669333pt;}
.ws2d2{word-spacing:-7.664000pt;}
.ws2d3{word-spacing:-7.562667pt;}
.ws75{word-spacing:-7.498667pt;}
.ws345{word-spacing:-7.492800pt;}
.ws56{word-spacing:-7.491200pt;}
.ws31f{word-spacing:-7.473600pt;}
.ws23d{word-spacing:-7.472000pt;}
.ws1bf{word-spacing:-7.445333pt;}
.ws351{word-spacing:-7.435200pt;}
.ws2e4{word-spacing:-7.429333pt;}
.ws1c0{word-spacing:-7.408000pt;}
.ws1ba{word-spacing:-7.350143pt;}
.ws359{word-spacing:-7.286400pt;}
.wsd4{word-spacing:-7.274667pt;}
.ws13a{word-spacing:-7.258667pt;}
.ws24f{word-spacing:-7.152000pt;}
.ws1cf{word-spacing:-7.114667pt;}
.ws347{word-spacing:-7.113600pt;}
.ws324{word-spacing:-7.108800pt;}
.ws308{word-spacing:-7.104000pt;}
.ws32f{word-spacing:-7.084800pt;}
.ws21d{word-spacing:-7.080000pt;}
.ws30f{word-spacing:-7.070400pt;}
.ws321{word-spacing:-7.046400pt;}
.ws303{word-spacing:-7.032000pt;}
.ws143{word-spacing:-7.018667pt;}
.ws2ff{word-spacing:-6.960000pt;}
.ws195{word-spacing:-6.933333pt;}
.ws327{word-spacing:-6.931200pt;}
.ws2f6{word-spacing:-6.892800pt;}
.ws2f3{word-spacing:-6.864000pt;}
.ws2f9{word-spacing:-6.859200pt;}
.ws2f4{word-spacing:-6.835200pt;}
.ws31b{word-spacing:-6.825600pt;}
.ws360{word-spacing:-6.820800pt;}
.ws2fc{word-spacing:-6.806400pt;}
.ws332{word-spacing:-6.801600pt;}
.ws1fd{word-spacing:-6.752000pt;}
.ws31c{word-spacing:-6.729600pt;}
.ws317{word-spacing:-6.657600pt;}
.ws2d9{word-spacing:-6.652800pt;}
.ws355{word-spacing:-6.604800pt;}
.ws101{word-spacing:-6.565333pt;}
.ws83{word-spacing:-6.554667pt;}
.ws221{word-spacing:-6.513600pt;}
.ws1a4{word-spacing:-6.448810pt;}
.ws1d7{word-spacing:-6.378667pt;}
.ws2e6{word-spacing:-6.360000pt;}
.ws7e{word-spacing:-6.288000pt;}
.wsbb{word-spacing:-6.256000pt;}
.ws2e7{word-spacing:-6.254400pt;}
.ws1bd{word-spacing:-6.144000pt;}
.wsd2{word-spacing:-6.106667pt;}
.ws29d{word-spacing:-6.101333pt;}
.ws272{word-spacing:-6.100800pt;}
.ws249{word-spacing:-6.026667pt;}
.ws174{word-spacing:-5.946667pt;}
.ws29e{word-spacing:-5.893333pt;}
.ws338{word-spacing:-5.889600pt;}
.wsfb{word-spacing:-5.872000pt;}
.ws27{word-spacing:-5.850667pt;}
.ws1b8{word-spacing:-5.845333pt;}
.wsfd{word-spacing:-5.818667pt;}
.wsfc{word-spacing:-5.813333pt;}
.ws5f{word-spacing:-5.797333pt;}
.ws278{word-spacing:-5.796722pt;}
.ws145{word-spacing:-5.738667pt;}
.ws27a{word-spacing:-5.730265pt;}
.wsc6{word-spacing:-5.717333pt;}
.ws18f{word-spacing:-5.706667pt;}
.ws16b{word-spacing:-5.642667pt;}
.ws2f{word-spacing:-5.616000pt;}
.ws9a{word-spacing:-5.600000pt;}
.ws314{word-spacing:-5.596800pt;}
.ws55{word-spacing:-5.430400pt;}
.wse1{word-spacing:-5.413333pt;}
.ws24b{word-spacing:-5.306667pt;}
.wsa7{word-spacing:-5.301333pt;}
.ws13c{word-spacing:-5.237333pt;}
.ws26b{word-spacing:-5.216000pt;}
.ws24c{word-spacing:-5.184000pt;}
.ws37{word-spacing:-5.050667pt;}
.ws2fb{word-spacing:-5.044800pt;}
.ws19d{word-spacing:-5.040000pt;}
.ws113{word-spacing:-4.917333pt;}
.ws13e{word-spacing:-4.912000pt;}
.wsb{word-spacing:-4.910872pt;}
.ws2b4{word-spacing:-4.906667pt;}
.wse4{word-spacing:-4.890667pt;}
.ws2c2{word-spacing:-4.832000pt;}
.ws1e7{word-spacing:-4.816000pt;}
.wsd{word-spacing:-4.804207pt;}
.ws1e5{word-spacing:-4.757333pt;}
.ws1e6{word-spacing:-4.752000pt;}
.ws1b7{word-spacing:-4.730667pt;}
.ws260{word-spacing:-4.725333pt;}
.ws81{word-spacing:-4.608000pt;}
.ws3e{word-spacing:-4.517333pt;}
.ws61{word-spacing:-4.293333pt;}
.ws97{word-spacing:-4.229333pt;}
.ws127{word-spacing:-4.160000pt;}
.ws49{word-spacing:-4.117333pt;}
.ws77{word-spacing:-4.026667pt;}
.ws2c3{word-spacing:-4.021333pt;}
.ws22c{word-spacing:-4.016060pt;}
.ws126{word-spacing:-4.016000pt;}
.ws1ec{word-spacing:-3.850667pt;}
.ws1f4{word-spacing:-3.770667pt;}
.ws6e{word-spacing:-3.760000pt;}
.ws106{word-spacing:-3.754667pt;}
.wsda{word-spacing:-3.722667pt;}
.ws26a{word-spacing:-3.642667pt;}
.ws305{word-spacing:-3.552000pt;}
.ws198{word-spacing:-3.541333pt;}
.ws2db{word-spacing:-3.235200pt;}
.ws2dd{word-spacing:-3.010265pt;}
.ws33e{word-spacing:-2.961600pt;}
.wsf1{word-spacing:-2.794667pt;}
.ws2b0{word-spacing:-2.784000pt;}
.ws94{word-spacing:-2.752000pt;}
.ws10b{word-spacing:-2.741333pt;}
.ws110{word-spacing:-2.640000pt;}
.wsc4{word-spacing:-2.437333pt;}
.ws2b1{word-spacing:-2.389333pt;}
.ws2ec{word-spacing:-2.356800pt;}
.ws2e9{word-spacing:-2.347200pt;}
.ws160{word-spacing:-2.325333pt;}
.ws299{word-spacing:-2.277333pt;}
.ws15e{word-spacing:-2.218667pt;}
.wsa5{word-spacing:-2.213333pt;}
.ws2ae{word-spacing:-2.133333pt;}
.ws1be{word-spacing:-2.080000pt;}
.ws15f{word-spacing:-2.032000pt;}
.ws7d{word-spacing:-2.016000pt;}
.ws342{word-spacing:-1.963200pt;}
.ws42{word-spacing:-1.946667pt;}
.ws206{word-spacing:-1.840000pt;}
.ws2b9{word-spacing:-1.786667pt;}
.ws78{word-spacing:-1.760000pt;}
.ws343{word-spacing:-1.718400pt;}
.ws13b{word-spacing:-1.642667pt;}
.ws207{word-spacing:-1.594667pt;}
.ws209{word-spacing:-1.530667pt;}
.ws208{word-spacing:-1.456000pt;}
.ws68{word-spacing:-1.445333pt;}
.ws1b{word-spacing:-1.434667pt;}
.ws288{word-spacing:-1.392000pt;}
.ws8a{word-spacing:-1.248000pt;}
.ws246{word-spacing:-0.938667pt;}
.ws243{word-spacing:-0.885333pt;}
.ws8b{word-spacing:-0.725333pt;}
.ws281{word-spacing:-0.720000pt;}
.ws1f0{word-spacing:-0.714667pt;}
.ws123{word-spacing:-0.709333pt;}
.ws280{word-spacing:-0.688000pt;}
.wse{word-spacing:-0.608000pt;}
.ws27f{word-spacing:-0.592000pt;}
.ws306{word-spacing:-0.408000pt;}
.ws10d{word-spacing:-0.282667pt;}
.wsa8{word-spacing:-0.256000pt;}
.ws107{word-spacing:-0.101333pt;}
.ws57{word-spacing:0.000000pt;}
.ws320{word-spacing:0.019200pt;}
.ws5b{word-spacing:0.090667pt;}
.ws6f{word-spacing:0.133333pt;}
.ws263{word-spacing:0.138667pt;}
.ws2ef{word-spacing:0.139200pt;}
.ws10{word-spacing:0.181333pt;}
.ws131{word-spacing:0.208000pt;}
.wse9{word-spacing:0.608000pt;}
.ws31d{word-spacing:0.748800pt;}
.ws283{word-spacing:0.848000pt;}
.wse3{word-spacing:0.922667pt;}
.ws354{word-spacing:0.988800pt;}
.ws197{word-spacing:1.066667pt;}
.ws319{word-spacing:1.070400pt;}
.wsa1{word-spacing:1.082667pt;}
.ws200{word-spacing:1.104000pt;}
.ws76{word-spacing:1.120000pt;}
.wsd9{word-spacing:1.125333pt;}
.ws22{word-spacing:1.130667pt;}
.ws2b2{word-spacing:1.136000pt;}
.ws11a{word-spacing:1.141333pt;}
.ws43{word-spacing:1.152000pt;}
.ws71{word-spacing:1.162667pt;}
.ws29{word-spacing:1.168000pt;}
.ws99{word-spacing:1.173333pt;}
.ws1c1{word-spacing:1.178667pt;}
.ws11b{word-spacing:1.184000pt;}
.ws1f5{word-spacing:1.194667pt;}
.ws3c{word-spacing:1.200000pt;}
.ws2a{word-spacing:1.205333pt;}
.ws62{word-spacing:1.210667pt;}
.ws118{word-spacing:1.216000pt;}
.ws14c{word-spacing:1.221333pt;}
.ws44{word-spacing:1.232000pt;}
.ws196{word-spacing:1.237333pt;}
.ws41{word-spacing:1.242667pt;}
.ws1b6{word-spacing:1.258667pt;}
.ws185{word-spacing:1.264000pt;}
.ws17b{word-spacing:1.269333pt;}
.ws1b5{word-spacing:1.274667pt;}
.ws17a{word-spacing:1.280000pt;}
.ws95{word-spacing:1.285333pt;}
.ws45{word-spacing:1.306667pt;}
.ws18e{word-spacing:1.312000pt;}
.ws2bb{word-spacing:1.317333pt;}
.ws286{word-spacing:1.322667pt;}
.wsd8{word-spacing:1.349333pt;}
.ws40{word-spacing:1.360000pt;}
.ws3d{word-spacing:1.370667pt;}
.ws124{word-spacing:1.392000pt;}
.ws1bc{word-spacing:1.397333pt;}
.wsa6{word-spacing:1.402667pt;}
.ws1fe{word-spacing:1.408000pt;}
.ws242{word-spacing:1.466667pt;}
.ws210{word-spacing:1.472000pt;}
.ws72{word-spacing:1.498667pt;}
.ws2b{word-spacing:1.536000pt;}
.ws245{word-spacing:2.570667pt;}
.ws50{word-spacing:3.105600pt;}
.ws163{word-spacing:3.205965pt;}
.ws244{word-spacing:4.768000pt;}
.ws4e{word-spacing:16.449600pt;}
.ws2c0{word-spacing:18.015493pt;}
.wsc{word-spacing:19.060661pt;}
.ws4a{word-spacing:20.865600pt;}
.ws4c{word-spacing:44.433600pt;}
.ws22d{word-spacing:87.708770pt;}
.wsa{word-spacing:285.802133pt;}
.ws22f{word-spacing:530.399770pt;}
.ws237{word-spacing:644.617009pt;}
.ws235{word-spacing:650.248938pt;}
.ws233{word-spacing:681.523214pt;}
.wsb1{word-spacing:876.631175pt;}
._11{margin-left:-2650.629267pt;}
._1c{margin-left:-32.357875pt;}
._1e{margin-left:-6.885333pt;}
._27{margin-left:-4.752000pt;}
._1d{margin-left:-2.304000pt;}
._1b{margin-left:-0.901333pt;}
._20{width:0.895467pt;}
._12{width:11.961600pt;}
._10{width:13.642667pt;}
._7{width:14.864000pt;}
._4{width:15.813333pt;}
._2{width:16.725333pt;}
._5{width:17.760000pt;}
._6{width:18.688000pt;}
._c{width:20.059987pt;}
._9{width:21.077333pt;}
._f{width:22.021333pt;}
._17{width:22.992000pt;}
._a{width:24.709333pt;}
._19{width:25.600000pt;}
._16{width:26.581333pt;}
._14{width:27.674667pt;}
._b{width:29.290667pt;}
._d{width:30.746667pt;}
._1f{width:31.648000pt;}
._e{width:33.152000pt;}
._15{width:34.058667pt;}
._3{width:35.322667pt;}
._8{width:36.997333pt;}
._1a{width:38.016000pt;}
._22{width:57.654746pt;}
._13{width:66.615360pt;}
._26{width:71.770667pt;}
._1{width:249.439772pt;}
._21{width:314.547535pt;}
._24{width:352.371062pt;}
._0{width:406.940234pt;}
._23{width:493.749561pt;}
._25{width:669.900959pt;}
._18{width:863.604800pt;}
.fs15{font-size:28.585067pt;}
.fsd{font-size:32.000000pt;}
.fs14{font-size:32.158933pt;}
.fsb{font-size:33.600000pt;}
.fs17{font-size:34.832000pt;}
.fsa{font-size:35.551467pt;}
.fs8{font-size:35.732800pt;}
.fs6{font-size:36.665600pt;}
.fs13{font-size:37.278658pt;}
.fse{font-size:37.333333pt;}
.fsc{font-size:39.999467pt;}
.fs4{font-size:42.666133pt;}
.fsf{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs18{font-size:50.666667pt;}
.fs12{font-size:53.278082pt;}
.fs7{font-size:53.333333pt;}
.fs11{font-size:56.000000pt;}
.fs16{font-size:63.332267pt;}
.fs5{font-size:66.666133pt;}
.fs1{font-size:69.332800pt;}
.fs3{font-size:80.000000pt;}
.fs0{font-size:90.666133pt;}
.fs9{font-size:159.999467pt;}
.fs10{font-size:170.666667pt;}
.y0{bottom:0.000000pt;}
.y14f{bottom:1.118360pt;}
.y14d{bottom:7.365695pt;}
.y1{bottom:11.943333pt;}
.y14e{bottom:14.240447pt;}
.yb3{bottom:20.107867pt;}
.y49{bottom:24.492133pt;}
.yb2{bottom:28.799867pt;}
.y47{bottom:31.295147pt;}
.y48{bottom:33.184133pt;}
.y46{bottom:39.004667pt;}
.y131{bottom:53.291200pt;}
.y7c{bottom:53.291333pt;}
.y17f{bottom:53.291867pt;}
.y1a3{bottom:53.292133pt;}
.y239{bottom:53.292400pt;}
.yf0{bottom:53.292667pt;}
.y20e{bottom:53.292800pt;}
.y21f{bottom:53.294000pt;}
.y1ed{bottom:57.299541pt;}
.y130{bottom:59.262933pt;}
.y31{bottom:61.078400pt;}
.y2ba{bottom:66.671200pt;}
.y1a2{bottom:67.956133pt;}
.y238{bottom:67.956400pt;}
.ya9{bottom:67.956667pt;}
.y12f{bottom:68.032667pt;}
.y20d{bottom:68.032800pt;}
.y21e{bottom:68.034000pt;}
.y7b{bottom:68.107333pt;}
.yef{bottom:68.108667pt;}
.y17e{bottom:68.182533pt;}
.y271{bottom:69.240800pt;}
.y1ec{bottom:71.888159pt;}
.y1eb{bottom:75.818777pt;}
.y30{bottom:76.422400pt;}
.y2b9{bottom:79.975600pt;}
.ya8{bottom:82.620667pt;}
.y1a1{bottom:82.621467pt;}
.y12e{bottom:82.772667pt;}
.y21d{bottom:82.774000pt;}
.y20c{bottom:82.847467pt;}
.y7a{bottom:82.923333pt;}
.yee{bottom:82.924667pt;}
.y1ea{bottom:86.476777pt;}
.y270{bottom:88.063467pt;}
.y17d{bottom:88.894400pt;}
.y2f{bottom:91.842400pt;}
.y2b8{bottom:93.280000pt;}
.y44{bottom:95.471467pt;}
.ya7{bottom:97.284667pt;}
.y1a0{bottom:97.285467pt;}
.y237{bottom:97.286000pt;}
.y12d{bottom:97.512667pt;}
.y20b{bottom:97.587467pt;}
.y21c{bottom:97.590000pt;}
.y79{bottom:97.663333pt;}
.y138{bottom:97.664667pt;}
.yed{bottom:97.739333pt;}
.y17c{bottom:97.814000pt;}
.y1e9{bottom:101.066461pt;}
.y26f{bottom:102.727467pt;}
.y2b7{bottom:106.658800pt;}
.y2d{bottom:106.886000pt;}
.y43{bottom:110.136667pt;}
.ya6{bottom:111.950000pt;}
.y19f{bottom:111.951333pt;}
.y12c{bottom:112.252667pt;}
.y20a{bottom:112.328667pt;}
.y21b{bottom:112.330000pt;}
.y78{bottom:112.479333pt;}
.yec{bottom:112.555333pt;}
.y17b{bottom:112.630000pt;}
.y2e{bottom:112.781067pt;}
.y1e8{bottom:115.655079pt;}
.y26e{bottom:118.677067pt;}
.y2b6{bottom:119.963200pt;}
.y2b{bottom:122.230000pt;}
.y42{bottom:124.800667pt;}
.y1e7{bottom:126.313079pt;}
.ya5{bottom:126.614000pt;}
.y19e{bottom:126.615333pt;}
.y12b{bottom:126.992667pt;}
.y209{bottom:127.068667pt;}
.y21a{bottom:127.070000pt;}
.y137{bottom:127.219333pt;}
.y76{bottom:127.294000pt;}
.yeb{bottom:127.371333pt;}
.y17a{bottom:127.522000pt;}
.y2c{bottom:128.126000pt;}
.y77{bottom:133.190000pt;}
.y2b5{bottom:133.342000pt;}
.y2a{bottom:137.650000pt;}
.y28{bottom:137.651333pt;}
.y41{bottom:139.464667pt;}
.y1e6{bottom:140.901696pt;}
.ya4{bottom:141.278000pt;}
.y19d{bottom:141.279333pt;}
.y12a{bottom:141.732667pt;}
.y208{bottom:141.734000pt;}
.y219{bottom:141.810000pt;}
.y75{bottom:142.034000pt;}
.y73{bottom:142.035333pt;}
.yea{bottom:142.262000pt;}
.y179{bottom:142.338000pt;}
.y29{bottom:143.546000pt;}
.y2b4{bottom:146.646400pt;}
.y74{bottom:148.006000pt;}
.y26d{bottom:148.159333pt;}
.y1e5{bottom:151.560763pt;}
.y27{bottom:152.995333pt;}
.ya3{bottom:155.263333pt;}
.y19c{bottom:156.019333pt;}
.y129{bottom:156.472667pt;}
.y207{bottom:156.474000pt;}
.y218{bottom:156.550000pt;}
.y72{bottom:156.851333pt;}
.ye9{bottom:157.078000pt;}
.y178{bottom:157.152667pt;}
.y2b3{bottom:159.950800pt;}
.y26c{bottom:162.823333pt;}
.y1e4{bottom:166.149381pt;}
.y26{bottom:168.415333pt;}
.y1b6{bottom:170.683333pt;}
.y19b{bottom:170.684667pt;}
.y128{bottom:171.212667pt;}
.y206{bottom:171.214000pt;}
.y217{bottom:171.290000pt;}
.y136{bottom:171.591333pt;}
.y71{bottom:171.667333pt;}
.ye8{bottom:171.894000pt;}
.y177{bottom:172.044667pt;}
.y2b2{bottom:173.329600pt;}
.y40{bottom:173.480667pt;}
.y1e3{bottom:176.807381pt;}
.y26b{bottom:182.854000pt;}
.y24{bottom:183.760667pt;}
.y19a{bottom:185.348667pt;}
.y126{bottom:185.954000pt;}
.y205{bottom:186.028667pt;}
.y216{bottom:186.030000pt;}
.y135{bottom:186.331333pt;}
.y70{bottom:186.407333pt;}
.y2b1{bottom:186.634000pt;}
.ye7{bottom:186.710000pt;}
.y176{bottom:186.862000pt;}
.y3f{bottom:188.447333pt;}
.y25{bottom:189.732667pt;}
.ya2{bottom:189.884667pt;}
.y1e2{bottom:191.395999pt;}
.y127{bottom:191.848667pt;}
.y26a{bottom:197.519333pt;}
.y23{bottom:199.180667pt;}
.y21{bottom:199.182000pt;}
.y199{bottom:200.012667pt;}
.y2b0{bottom:200.014000pt;}
.y125{bottom:200.618000pt;}
.y204{bottom:200.768667pt;}
.y215{bottom:200.770000pt;}
.y134{bottom:201.147333pt;}
.y6f{bottom:201.222000pt;}
.ye6{bottom:201.524667pt;}
.y175{bottom:201.752667pt;}
.y1e1{bottom:202.055065pt;}
.y3e{bottom:203.490000pt;}
.ya1{bottom:204.548667pt;}
.y22{bottom:205.076667pt;}
.y269{bottom:212.183333pt;}
.y2af{bottom:213.317200pt;}
.y20{bottom:214.602000pt;}
.y1b5{bottom:214.676667pt;}
.y197{bottom:214.678000pt;}
.y124{bottom:215.358000pt;}
.y203{bottom:215.508667pt;}
.y214{bottom:215.510000pt;}
.y133{bottom:215.887333pt;}
.y6d{bottom:215.963333pt;}
.ye5{bottom:216.340667pt;}
.y174{bottom:216.568667pt;}
.y1e0{bottom:216.643683pt;}
.y3d{bottom:218.532667pt;}
.ya0{bottom:219.212667pt;}
.y198{bottom:220.572667pt;}
.y6e{bottom:221.858000pt;}
.y2ae{bottom:226.621600pt;}
.y268{bottom:226.847333pt;}
.y1df{bottom:227.301683pt;}
.y196{bottom:229.342000pt;}
.y1f{bottom:229.947333pt;}
.y123{bottom:230.098000pt;}
.y202{bottom:230.248667pt;}
.y200{bottom:230.250000pt;}
.y132{bottom:230.702000pt;}
.y6c{bottom:230.779333pt;}
.ye4{bottom:231.156667pt;}
.y173{bottom:231.459333pt;}
.y3c{bottom:233.575333pt;}
.y9f{bottom:233.878000pt;}
.y201{bottom:236.144667pt;}
.y2ad{bottom:240.000400pt;}
.y267{bottom:242.720667pt;}
.y236{bottom:244.006000pt;}
.y195{bottom:244.007333pt;}
.y1de{bottom:244.611333pt;}
.y122{bottom:244.838000pt;}
.y1ff{bottom:244.990000pt;}
.y1e{bottom:245.367333pt;}
.y6b{bottom:245.519333pt;}
.ye3{bottom:245.971333pt;}
.y172{bottom:246.199333pt;}
.y9e{bottom:248.542000pt;}
.y3b{bottom:248.616667pt;}
.y2ac{bottom:253.304800pt;}
.y194{bottom:258.671333pt;}
.y234{bottom:258.672667pt;}
.y13d{bottom:259.351600pt;}
.y121{bottom:259.576667pt;}
.y1fe{bottom:259.730000pt;}
.y6a{bottom:260.335333pt;}
.y1d{bottom:260.712667pt;}
.y171{bottom:261.091333pt;}
.ye2{bottom:261.391333pt;}
.y9d{bottom:263.207333pt;}
.y39{bottom:263.584667pt;}
.y235{bottom:264.567333pt;}
.y2ab{bottom:266.684800pt;}
.y266{bottom:268.271333pt;}
.y3a{bottom:269.555333pt;}
.y13c{bottom:272.731600pt;}
.y1b4{bottom:273.335333pt;}
.y193{bottom:273.336667pt;}
.y1dd{bottom:273.487333pt;}
.y120{bottom:274.316667pt;}
.y1fd{bottom:274.470000pt;}
.y69{bottom:275.150000pt;}
.y67{bottom:275.151333pt;}
.y170{bottom:275.907333pt;}
.y1c{bottom:276.132667pt;}
.y9c{bottom:277.872667pt;}
.y38{bottom:278.627333pt;}
.y2aa{bottom:279.988000pt;}
.y68{bottom:281.046000pt;}
.y265{bottom:282.936667pt;}
.y13b{bottom:286.034800pt;}
.y192{bottom:288.000667pt;}
.y1dc{bottom:288.151333pt;}
.y11f{bottom:289.056667pt;}
.y1fc{bottom:289.210000pt;}
.y66{bottom:289.892667pt;}
.y16f{bottom:290.722000pt;}
.y1b{bottom:291.476667pt;}
.y9b{bottom:292.536667pt;}
.y2a9{bottom:293.292400pt;}
.y37{bottom:293.670000pt;}
.y264{bottom:297.600667pt;}
.y13a{bottom:299.339200pt;}
.ye1{bottom:300.022000pt;}
.y191{bottom:302.664667pt;}
.y233{bottom:302.666000pt;}
.y1db{bottom:302.815333pt;}
.y11e{bottom:303.796667pt;}
.y1fb{bottom:303.950000pt;}
.y65{bottom:304.707333pt;}
.y16e{bottom:305.614000pt;}
.y2a8{bottom:306.671200pt;}
.y19{bottom:306.899333pt;}
.y9a{bottom:307.200667pt;}
.y36{bottom:308.712667pt;}
.y263{bottom:312.264667pt;}
.y139{bottom:312.718000pt;}
.y1a{bottom:312.794000pt;}
.ye0{bottom:314.836667pt;}
.y190{bottom:317.328667pt;}
.y232{bottom:317.330000pt;}
.y1b3{bottom:317.332667pt;}
.y4c{bottom:317.506667pt;}
.y11d{bottom:318.536667pt;}
.y1fa{bottom:318.690000pt;}
.y64{bottom:319.523333pt;}
.y2a7{bottom:319.975600pt;}
.y4b{bottom:320.186667pt;}
.y16d{bottom:320.430000pt;}
.y99{bottom:321.866000pt;}
.y18{bottom:322.243333pt;}
.y35{bottom:323.755333pt;}
.y262{bottom:326.930000pt;}
.ydf{bottom:329.652667pt;}
.y18f{bottom:331.994000pt;}
.y231{bottom:331.995333pt;}
.y1b2{bottom:331.996667pt;}
.y11c{bottom:333.276667pt;}
.y2a6{bottom:333.355600pt;}
.y1f8{bottom:333.430000pt;}
.y1d0{bottom:333.506000pt;}
.y63{bottom:334.263333pt;}
.y16c{bottom:335.320667pt;}
.y98{bottom:336.530000pt;}
.y17{bottom:337.664667pt;}
.y34{bottom:338.722000pt;}
.y1f9{bottom:339.326000pt;}
.y2e9{bottom:341.292400pt;}
.y261{bottom:341.594000pt;}
.yde{bottom:344.468667pt;}
.y18e{bottom:346.658000pt;}
.y2a5{bottom:346.658800pt;}
.y230{bottom:346.659333pt;}
.y1b1{bottom:346.662000pt;}
.y11b{bottom:347.942000pt;}
.y1cf{bottom:348.170000pt;}
.y62{bottom:349.079333pt;}
.y16b{bottom:350.136667pt;}
.y97{bottom:351.194000pt;}
.y16{bottom:353.084667pt;}
.y15{bottom:353.763333pt;}
.y33{bottom:353.764667pt;}
.y2e8{bottom:354.671200pt;}
.y260{bottom:356.258000pt;}
.ydd{bottom:359.284667pt;}
.y2a4{bottom:359.963200pt;}
.y18d{bottom:361.323333pt;}
.y11a{bottom:362.682000pt;}
.y1ce{bottom:362.835333pt;}
.y1f7{bottom:362.910000pt;}
.y213{bottom:362.911333pt;}
.y61{bottom:363.895333pt;}
.y16a{bottom:365.027333pt;}
.y96{bottom:365.934000pt;}
.y2e7{bottom:367.975600pt;}
.y32{bottom:368.803733pt;}
.y25f{bottom:370.923333pt;}
.y2a3{bottom:373.342000pt;}
.ydc{bottom:374.099333pt;}
.y18c{bottom:375.987333pt;}
.y22f{bottom:375.988667pt;}
.y119{bottom:377.422000pt;}
.y1cd{bottom:377.500667pt;}
.y1f6{bottom:377.650000pt;}
.y212{bottom:377.651333pt;}
.y60{bottom:378.635333pt;}
.y169{bottom:379.843333pt;}
.y94{bottom:380.598000pt;}
.y2e6{bottom:381.280000pt;}
.y25e{bottom:385.587333pt;}
.y95{bottom:386.494000pt;}
.y2a2{bottom:386.646400pt;}
.ydb{bottom:388.915333pt;}
.y18b{bottom:390.651333pt;}
.y189{bottom:390.652667pt;}
.y118{bottom:392.162000pt;}
.y1cc{bottom:392.164667pt;}
.y1f5{bottom:392.390000pt;}
.y211{bottom:392.391333pt;}
.y5f{bottom:393.450000pt;}
.y2e5{bottom:394.658800pt;}
.y168{bottom:394.734000pt;}
.y93{bottom:395.263333pt;}
.y18a{bottom:396.547333pt;}
.y2a1{bottom:399.950800pt;}
.y25d{bottom:400.251333pt;}
.yda{bottom:403.731333pt;}
.y1d6{bottom:403.956933pt;}
.y22e{bottom:405.316667pt;}
.y188{bottom:405.318000pt;}
.y1cb{bottom:406.828667pt;}
.y117{bottom:406.902000pt;}
.y1f4{bottom:407.130000pt;}
.y1f2{bottom:407.131333pt;}
.y2e4{bottom:407.963200pt;}
.y5e{bottom:408.266000pt;}
.y167{bottom:409.550000pt;}
.y92{bottom:409.927333pt;}
.y1f3{bottom:413.102000pt;}
.y2a0{bottom:413.329600pt;}
.y14{bottom:414.766000pt;}
.y25c{bottom:416.126000pt;}
.y1d5{bottom:417.336933pt;}
.yd9{bottom:418.547333pt;}
.y187{bottom:419.982000pt;}
.y2e3{bottom:421.342000pt;}
.y1ca{bottom:421.494000pt;}
.y116{bottom:421.642000pt;}
.y1f0{bottom:421.871333pt;}
.y5d{bottom:423.006000pt;}
.y166{bottom:424.443333pt;}
.y91{bottom:424.591333pt;}
.y8f{bottom:424.592667pt;}
.y29f{bottom:426.634000pt;}
.y1f1{bottom:427.842000pt;}
.y13{bottom:429.431333pt;}
.y90{bottom:430.488667pt;}
.y1d4{bottom:430.640133pt;}
.y25b{bottom:430.942000pt;}
.yd8{bottom:433.362000pt;}
.y186{bottom:434.646000pt;}
.y2e2{bottom:434.646400pt;}
.y1c9{bottom:436.158000pt;}
.y115{bottom:436.306000pt;}
.y1ef{bottom:436.611333pt;}
.y210{bottom:436.686000pt;}
.y5c{bottom:437.822000pt;}
.y8e{bottom:439.256667pt;}
.y165{bottom:439.259333pt;}
.y29e{bottom:440.014000pt;}
.y1d3{bottom:443.944533pt;}
.y12{bottom:444.171333pt;}
.y2e1{bottom:447.950800pt;}
.yd7{bottom:448.178000pt;}
.y185{bottom:449.311333pt;}
.y22d{bottom:449.314000pt;}
.y1c8{bottom:450.826000pt;}
.y114{bottom:451.046000pt;}
.y20f{bottom:451.423200pt;}
.y1ee{bottom:451.426000pt;}
.y5b{bottom:452.562000pt;}
.y29d{bottom:453.317200pt;}
.y8d{bottom:453.922000pt;}
.y164{bottom:454.150000pt;}
.y1d2{bottom:457.324133pt;}
.y11{bottom:458.835333pt;}
.y2e0{bottom:461.329600pt;}
.yd6{bottom:462.994000pt;}
.y184{bottom:463.975333pt;}
.y22c{bottom:463.978000pt;}
.y1c7{bottom:465.490000pt;}
.y113{bottom:465.786000pt;}
.y29c{bottom:466.621600pt;}
.y5a{bottom:467.302000pt;}
.y8c{bottom:468.586000pt;}
.y163{bottom:468.966000pt;}
.y1d1{bottom:470.627333pt;}
.yf{bottom:473.500667pt;}
.y25a{bottom:474.634000pt;}
.yd5{bottom:477.810000pt;}
.y10{bottom:478.639216pt;}
.y183{bottom:478.639333pt;}
.y22b{bottom:478.642000pt;}
.y29b{bottom:480.000400pt;}
.y223{bottom:480.076133pt;}
.y1c6{bottom:480.154000pt;}
.y112{bottom:480.527333pt;}
.y59{bottom:482.118000pt;}
.y8b{bottom:483.250000pt;}
.y89{bottom:483.251333pt;}
.y162{bottom:483.782000pt;}
.y2df{bottom:488.014000pt;}
.ye{bottom:488.164667pt;}
.y8a{bottom:489.146000pt;}
.y259{bottom:489.299333pt;}
.yd4{bottom:492.624667pt;}
.y182{bottom:493.299867pt;}
.y29a{bottom:493.304800pt;}
.y22a{bottom:493.307333pt;}
.y222{bottom:493.380133pt;}
.y1c5{bottom:494.819333pt;}
.y111{bottom:495.267333pt;}
.y58{bottom:496.932667pt;}
.y88{bottom:497.915333pt;}
.y161{bottom:498.672667pt;}
.y2de{bottom:501.317200pt;}
.yd{bottom:502.830000pt;}
.y299{bottom:506.684800pt;}
.y221{bottom:506.760133pt;}
.yd3{bottom:507.440667pt;}
.y181{bottom:507.965200pt;}
.y229{bottom:507.971333pt;}
.y110{bottom:510.007333pt;}
.y258{bottom:511.295333pt;}
.y56{bottom:511.672667pt;}
.y87{bottom:512.580667pt;}
.y160{bottom:513.488667pt;}
.y2dd{bottom:514.621600pt;}
.yc{bottom:517.494000pt;}
.y57{bottom:517.643333pt;}
.y298{bottom:519.988000pt;}
.y220{bottom:520.063333pt;}
.yd2{bottom:522.180667pt;}
.y180{bottom:522.629200pt;}
.y228{bottom:522.635333pt;}
.y1da{bottom:524.675600pt;}
.y10f{bottom:524.747333pt;}
.y257{bottom:525.959333pt;}
.y55{bottom:526.488667pt;}
.y86{bottom:527.244667pt;}
.y2dc{bottom:528.000400pt;}
.y15f{bottom:528.380667pt;}
.yb{bottom:532.158000pt;}
.y297{bottom:533.292400pt;}
.yd1{bottom:536.996667pt;}
.y227{bottom:537.300667pt;}
.y1d9{bottom:537.978800pt;}
.y10e{bottom:539.487333pt;}
.y54{bottom:541.304667pt;}
.y2db{bottom:541.304800pt;}
.y255{bottom:541.832667pt;}
.y84{bottom:541.908667pt;}
.y15e{bottom:543.195333pt;}
.y256{bottom:543.571333pt;}
.y296{bottom:546.671200pt;}
.ya{bottom:546.823333pt;}
.y85{bottom:547.804667pt;}
.y1d8{bottom:551.358800pt;}
.yd0{bottom:551.812667pt;}
.y226{bottom:551.964667pt;}
.y10d{bottom:554.227333pt;}
.y2da{bottom:554.609200pt;}
.y53{bottom:556.044667pt;}
.y254{bottom:556.572667pt;}
.y83{bottom:556.574000pt;}
.y1a8{bottom:556.649467pt;}
.y15d{bottom:558.087333pt;}
.y295{bottom:559.975600pt;}
.y9{bottom:561.487333pt;}
.y1d7{bottom:564.662000pt;}
.ycf{bottom:566.627333pt;}
.y225{bottom:566.628667pt;}
.y2d9{bottom:567.988000pt;}
.y10c{bottom:568.967333pt;}
.y1a7{bottom:569.953467pt;}
.y52{bottom:570.860667pt;}
.y82{bottom:571.238000pt;}
.y15c{bottom:572.902000pt;}
.y294{bottom:573.355600pt;}
.y8{bottom:576.151333pt;}
.y2d8{bottom:581.292400pt;}
.y224{bottom:581.294000pt;}
.yce{bottom:581.443333pt;}
.y1a6{bottom:583.333467pt;}
.y10b{bottom:583.631333pt;}
.y51{bottom:585.675333pt;}
.y81{bottom:585.902000pt;}
.y7f{bottom:585.903333pt;}
.y293{bottom:586.658800pt;}
.y15b{bottom:587.718000pt;}
.y80{bottom:591.798000pt;}
.y253{bottom:593.010000pt;}
.y2d7{bottom:594.671200pt;}
.ycd{bottom:596.259333pt;}
.y1a5{bottom:596.636533pt;}
.y10a{bottom:598.371333pt;}
.y292{bottom:599.963200pt;}
.y4f{bottom:600.416667pt;}
.y7e{bottom:600.567333pt;}
.y15a{bottom:602.534000pt;}
.y50{bottom:606.387333pt;}
.y252{bottom:607.674000pt;}
.y2d6{bottom:607.975600pt;}
.y1a4{bottom:610.015333pt;}
.ycc{bottom:611.075333pt;}
.y278{bottom:611.906267pt;}
.y109{bottom:613.111333pt;}
.y291{bottom:613.342000pt;}
.y7d{bottom:615.227333pt;}
.y4d{bottom:615.231333pt;}
.y159{bottom:617.350000pt;}
.y4e{bottom:621.127333pt;}
.y2d5{bottom:621.280000pt;}
.y251{bottom:622.339333pt;}
.y277{bottom:625.209467pt;}
.ycb{bottom:625.890000pt;}
.y290{bottom:626.646400pt;}
.y108{bottom:627.851333pt;}
.y158{bottom:632.240667pt;}
.y2d4{bottom:634.658800pt;}
.y250{bottom:637.003333pt;}
.y276{bottom:638.513867pt;}
.y28f{bottom:639.950800pt;}
.yca{bottom:640.706000pt;}
.y107{bottom:642.591333pt;}
.yb0{bottom:643.880400pt;}
.y157{bottom:647.056667pt;}
.y2d3{bottom:647.963200pt;}
.y24f{bottom:651.667333pt;}
.y275{bottom:651.893467pt;}
.y28e{bottom:653.329600pt;}
.yc9{bottom:655.599333pt;}
.y106{bottom:657.256667pt;}
.yaf{bottom:657.259200pt;}
.y2d2{bottom:661.342000pt;}
.y156{bottom:661.947333pt;}
.y274{bottom:665.196667pt;}
.y24e{bottom:666.332667pt;}
.y28d{bottom:666.634000pt;}
.yc8{bottom:670.414000pt;}
.yae{bottom:670.563600pt;}
.y105{bottom:671.996667pt;}
.y2d1{bottom:674.646400pt;}
.y155{bottom:676.763333pt;}
.y273{bottom:678.577467pt;}
.y28c{bottom:680.014000pt;}
.y24d{bottom:680.996667pt;}
.yad{bottom:683.868000pt;}
.yc7{bottom:685.230000pt;}
.y104{bottom:686.736667pt;}
.y2d0{bottom:687.950800pt;}
.y154{bottom:691.654000pt;}
.y272{bottom:691.880667pt;}
.y28b{bottom:693.317200pt;}
.y24c{bottom:695.660667pt;}
.yac{bottom:697.246800pt;}
.yc6{bottom:700.046000pt;}
.y2cf{bottom:701.329600pt;}
.y103{bottom:701.476667pt;}
.y153{bottom:706.470000pt;}
.y28a{bottom:706.621600pt;}
.y24b{bottom:710.326000pt;}
.yab{bottom:710.551200pt;}
.y2ce{bottom:714.634000pt;}
.yc5{bottom:714.862000pt;}
.y102{bottom:716.216667pt;}
.y289{bottom:720.000400pt;}
.y152{bottom:721.362000pt;}
.yaa{bottom:723.930000pt;}
.y24a{bottom:724.990000pt;}
.y2cd{bottom:728.014000pt;}
.yc4{bottom:729.676667pt;}
.y101{bottom:730.956667pt;}
.y288{bottom:733.304800pt;}
.y151{bottom:736.176667pt;}
.y249{bottom:739.654000pt;}
.y2cc{bottom:741.317200pt;}
.yc3{bottom:744.492667pt;}
.y100{bottom:745.696667pt;}
.y287{bottom:746.684800pt;}
.y248{bottom:754.319333pt;}
.y2cb{bottom:754.621600pt;}
.y150{bottom:755.074000pt;}
.y14b{bottom:755.075333pt;}
.yc2{bottom:759.308667pt;}
.y6{bottom:759.458000pt;}
.y14c{bottom:759.685333pt;}
.y286{bottom:759.988000pt;}
.yff{bottom:760.436667pt;}
.y7{bottom:761.272667pt;}
.y2ca{bottom:768.000400pt;}
.y247{bottom:768.983333pt;}
.y285{bottom:773.292400pt;}
.y14a{bottom:773.670000pt;}
.yc1{bottom:774.124667pt;}
.yfe{bottom:775.176667pt;}
.y1c4{bottom:776.014000pt;}
.y2c9{bottom:781.304800pt;}
.y245{bottom:783.648667pt;}
.y284{bottom:786.671200pt;}
.y149{bottom:788.562000pt;}
.y246{bottom:788.863216pt;}
.yc0{bottom:788.864667pt;}
.yfd{bottom:789.916667pt;}
.y1c3{bottom:790.678000pt;}
.y2c8{bottom:794.684800pt;}
.y244{bottom:798.312667pt;}
.y283{bottom:799.975600pt;}
.y148{bottom:803.302000pt;}
.ybf{bottom:803.679333pt;}
.yfc{bottom:804.580667pt;}
.y1c2{bottom:805.343333pt;}
.y5{bottom:807.382000pt;}
.y2c7{bottom:807.988000pt;}
.y243{bottom:812.976667pt;}
.y282{bottom:813.355600pt;}
.y147{bottom:818.118000pt;}
.ybe{bottom:818.495333pt;}
.yfb{bottom:819.322000pt;}
.y1c1{bottom:820.007333pt;}
.y2c6{bottom:821.292400pt;}
.y281{bottom:826.658800pt;}
.y242{bottom:827.642000pt;}
.y146{bottom:833.008667pt;}
.ybd{bottom:833.311333pt;}
.yfa{bottom:834.062000pt;}
.y2c5{bottom:834.671200pt;}
.y1bf{bottom:834.671333pt;}
.y4{bottom:839.962000pt;}
.y280{bottom:839.963200pt;}
.y1c0{bottom:840.567333pt;}
.y241{bottom:842.306000pt;}
.y145{bottom:847.824667pt;}
.y2c4{bottom:847.975600pt;}
.ybc{bottom:848.127333pt;}
.yf9{bottom:848.802000pt;}
.y1b0{bottom:849.335333pt;}
.y1be{bottom:849.336667pt;}
.y27f{bottom:853.342000pt;}
.y240{bottom:856.970000pt;}
.y2c3{bottom:861.278800pt;}
.y144{bottom:862.715333pt;}
.ybb{bottom:862.942000pt;}
.yf8{bottom:863.542000pt;}
.y1af{bottom:864.000667pt;}
.y27e{bottom:866.419333pt;}
.y3{bottom:866.647741pt;}
.y23f{bottom:871.710000pt;}
.y2c2{bottom:874.657600pt;}
.y143{bottom:877.531333pt;}
.yba{bottom:877.758000pt;}
.yf7{bottom:878.282000pt;}
.y1ae{bottom:878.664667pt;}
.y23e{bottom:886.223333pt;}
.y2c1{bottom:887.962000pt;}
.y2{bottom:890.683333pt;}
.y142{bottom:892.422000pt;}
.yb9{bottom:892.574000pt;}
.yf6{bottom:892.946000pt;}
.y1bd{bottom:893.328667pt;}
.y1ad{bottom:893.330000pt;}
.y1bc{bottom:899.224667pt;}
.y2c0{bottom:901.342000pt;}
.y27d{bottom:902.248667pt;}
.y141{bottom:907.238000pt;}
.yb8{bottom:907.390000pt;}
.yf5{bottom:907.686000pt;}
.y1ba{bottom:907.987333pt;}
.y1ac{bottom:907.994000pt;}
.y1bb{bottom:913.890000pt;}
.y2bf{bottom:914.645200pt;}
.y27c{bottom:916.914000pt;}
.y140{bottom:922.130000pt;}
.yb7{bottom:922.204667pt;}
.yf4{bottom:922.426000pt;}
.y1b9{bottom:922.651333pt;}
.y23d{bottom:922.652400pt;}
.y1ab{bottom:922.658000pt;}
.y2be{bottom:927.949600pt;}
.y27b{bottom:931.578000pt;}
.y45{bottom:933.996667pt;}
.y13f{bottom:936.944667pt;}
.yb6{bottom:937.020667pt;}
.yf3{bottom:937.166000pt;}
.y23c{bottom:937.316400pt;}
.y1b8{bottom:937.316667pt;}
.y1aa{bottom:937.323333pt;}
.y2bd{bottom:941.328400pt;}
.y27a{bottom:946.242000pt;}
.y13e{bottom:951.760667pt;}
.yb5{bottom:951.836667pt;}
.yf2{bottom:951.906000pt;}
.y1b7{bottom:951.980667pt;}
.y23b{bottom:951.981733pt;}
.y1a9{bottom:951.987333pt;}
.y2bc{bottom:954.632800pt;}
.y279{bottom:960.680667pt;}
.y4a{bottom:966.533333pt;}
.y23a{bottom:966.645733pt;}
.yf1{bottom:966.646000pt;}
.yb4{bottom:966.651333pt;}
.y2bb{bottom:968.012800pt;}
.yb1{bottom:993.335333pt;}
.h1a{height:20.565340pt;}
.h19{height:21.089733pt;}
.h11{height:22.720000pt;}
.h1b{height:23.038211pt;}
.h10{height:23.856000pt;}
.hb{height:26.948012pt;}
.h9{height:27.085462pt;}
.h17{height:28.839615pt;}
.h2e{height:29.576000pt;}
.hf{height:30.292955pt;}
.h7{height:30.623761pt;}
.h29{height:32.340929pt;}
.h5{height:34.608000pt;}
.he{height:36.384000pt;}
.h2f{height:36.530667pt;}
.h26{height:36.960000pt;}
.h30{height:37.333333pt;}
.h28{height:38.296814pt;}
.h16{height:38.453333pt;}
.h12{height:38.937500pt;}
.h31{height:40.421333pt;}
.h8{height:40.426667pt;}
.h2c{height:40.437867pt;}
.h14{height:41.875000pt;}
.h25{height:43.114605pt;}
.h23{height:43.119938pt;}
.h22{height:43.123671pt;}
.h32{height:44.332800pt;}
.h2d{height:45.472567pt;}
.h27{height:45.621497pt;}
.h18{height:47.634796pt;}
.h1e{height:47.645462pt;}
.h24{height:47.933462pt;}
.h1d{height:47.938796pt;}
.h21{height:47.940929pt;}
.hd{height:47.944129pt;}
.h20{height:47.949462pt;}
.hc{height:47.958529pt;}
.h1f{height:47.963329pt;}
.h1c{height:50.069333pt;}
.h4{height:52.554262pt;}
.h6{height:57.656250pt;}
.h3{height:65.370282pt;}
.h2a{height:74.972929pt;}
.h2b{height:74.977196pt;}
.ha{height:121.279596pt;}
.h15{height:129.365333pt;}
.h2{height:1043.981333pt;}
.h13{height:1067.866667pt;}
.h0{height:1067.868000pt;}
.h1{height:1068.000000pt;}
.w3{width:41.121200pt;}
.w2{width:785.990667pt;}
.w0{width:809.877333pt;}
.w1{width:810.000000pt;}
.x0{left:0.000000pt;}
.x1{left:11.943333pt;}
.x1d{left:24.000000pt;}
.x3d{left:31.035041pt;}
.x3c{left:32.479615pt;}
.x2{left:56.692800pt;}
.x5b{left:61.984133pt;}
.x14{left:68.636133pt;}
.x3a{left:69.995467pt;}
.x23{left:79.370000pt;}
.x27{left:81.410933pt;}
.x51{left:82.469200pt;}
.x43{left:83.527467pt;}
.x7{left:84.434533pt;}
.x3{left:88.289733pt;}
.x28{left:94.563733pt;}
.x44{left:100.837733pt;}
.xb{left:105.373200pt;}
.x52{left:108.774667pt;}
.x24{left:110.664533pt;}
.x55{left:113.461333pt;}
.x1e{left:115.048667pt;}
.x50{left:123.590000pt;}
.x1f{left:128.126000pt;}
.x25{left:135.684667pt;}
.x11{left:151.030000pt;}
.x26{left:153.524667pt;}
.x3f{left:162.216667pt;}
.xc{left:174.387333pt;}
.x12{left:176.352667pt;}
.xd{left:189.051333pt;}
.x6{left:201.071333pt;}
.x56{left:204.170000pt;}
.x57{left:221.102000pt;}
.x18{left:239.546000pt;}
.x29{left:249.675333pt;}
.x13{left:253.682000pt;}
.xf{left:255.647333pt;}
.x9{left:258.972667pt;}
.x19{left:265.624640pt;}
.x10{left:270.538000pt;}
.xa{left:284.674000pt;}
.x3b{left:298.582667pt;}
.x21{left:310.676667pt;}
.x22{left:325.568667pt;}
.x3e{left:328.440667pt;}
.x53{left:333.883333pt;}
.x54{left:348.774000pt;}
.xe{left:355.578000pt;}
.x8{left:365.102000pt;}
.x20{left:366.992667pt;}
.x37{left:379.238000pt;}
.x15{left:408.640133pt;}
.x4c{left:411.366354pt;}
.x58{left:413.631333pt;}
.x4d{left:418.924660pt;}
.x36{left:420.662000pt;}
.x59{left:422.022000pt;}
.x5a{left:432.679333pt;}
.x2c{left:436.006000pt;}
.x4{left:437.971333pt;}
.x38{left:440.466000pt;}
.x2d{left:449.688667pt;}
.x39{left:455.508667pt;}
.x2a{left:469.190000pt;}
.x4b{left:474.103333pt;}
.x2b{left:483.931333pt;}
.x2f{left:484.838000pt;}
.x40{left:490.431333pt;}
.x30{left:498.595333pt;}
.x41{left:503.735333pt;}
.x35{left:512.655333pt;}
.x42{left:514.015333pt;}
.x45{left:515.451333pt;}
.x46{left:529.134000pt;}
.x1c{left:540.933333pt;}
.x33{left:544.176667pt;}
.x34{left:557.027333pt;}
.x5{left:567.608667pt;}
.x1a{left:573.506000pt;}
.x1b{left:606.538000pt;}
.x4f{left:630.275618pt;}
.x49{left:645.920667pt;}
.x31{left:658.015333pt;}
.x4a{left:673.511333pt;}
.x32{left:676.006000pt;}
.x17{left:690.671333pt;}
.x47{left:697.700667pt;}
.x4e{left:699.817148pt;}
.x2e{left:703.520667pt;}
.x48{left:714.331333pt;}
.x16{left:718.639333pt;}
}




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