
    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_18494178e115f04c90c7d132.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.068000;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_460a8b7eff07ee8a94996e01.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;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_d98f06d370759e54d7df17e4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_6cbdf673d1c44930b38b55a4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.913000;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_2f905b08dc988327419b3c8d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.113000;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_f5caf85ff6d532b44cfec0ba.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.133000;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_3daf7b475de581fd1bf9108f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.879000;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_63f21197abf5409d492f852f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.888000;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_a6dc3b6a6c1b9755a9c777e3.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.948000;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_24c37a510eb88c9dd74c0153.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.969000;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_667cd20421f309766189a64c.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.435059;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_0fb2b0d2f9ef7dede48311b4.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.481000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v6{vertical-align:-20.694000px;}
.v3{vertical-align:-17.784000px;}
.v1{vertical-align:-15.246000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:14.952000px;}
.v4{vertical-align:17.784000px;}
.v5{vertical-align:20.688000px;}
.ls8{letter-spacing:0.000000px;}
.ls44{letter-spacing:0.003000px;}
.ls2f{letter-spacing:0.294000px;}
.ls38{letter-spacing:0.912000px;}
.ls5{letter-spacing:2.083356px;}
.ls3{letter-spacing:2.089356px;}
.ls4c{letter-spacing:2.984400px;}
.ls1{letter-spacing:2.988000px;}
.ls2b{letter-spacing:2.988480px;}
.ls0{letter-spacing:2.989440px;}
.ls46{letter-spacing:2.990400px;}
.ls27{letter-spacing:2.991600px;}
.ls2{letter-spacing:2.994000px;}
.ls4d{letter-spacing:2.994480px;}
.ls29{letter-spacing:3.486000px;}
.ls83{letter-spacing:8.802000px;}
.ls6{letter-spacing:9.660000px;}
.ls7b{letter-spacing:10.203000px;}
.ls33{letter-spacing:10.632000px;}
.ls9{letter-spacing:10.920000px;}
.ls2e{letter-spacing:11.286000px;}
.ls2d{letter-spacing:11.292000px;}
.ls19{letter-spacing:11.490000px;}
.ls28{letter-spacing:11.676000px;}
.ls7e{letter-spacing:12.096000px;}
.ls7d{letter-spacing:12.099000px;}
.ls48{letter-spacing:12.324000px;}
.ls25{letter-spacing:12.936000px;}
.ls10{letter-spacing:12.939000px;}
.ls26{letter-spacing:12.942000px;}
.ls71{letter-spacing:13.902000px;}
.ls4f{letter-spacing:14.046000px;}
.ls50{letter-spacing:14.274000px;}
.ls2a{letter-spacing:14.665680px;}
.ls6a{letter-spacing:14.754000px;}
.ls61{letter-spacing:16.356000px;}
.ls60{letter-spacing:16.359000px;}
.ls62{letter-spacing:16.470000px;}
.ls1b{letter-spacing:16.562400px;}
.ls4e{letter-spacing:17.148000px;}
.ls72{letter-spacing:17.178000px;}
.ls67{letter-spacing:17.238000px;}
.ls6f{letter-spacing:17.378400px;}
.lsb{letter-spacing:17.442000px;}
.lsd{letter-spacing:17.670000px;}
.ls4{letter-spacing:18.001440px;}
.ls18{letter-spacing:18.096000px;}
.ls66{letter-spacing:18.108000px;}
.ls7c{letter-spacing:18.297000px;}
.ls69{letter-spacing:18.662400px;}
.ls40{letter-spacing:18.702000px;}
.ls3f{letter-spacing:18.708000px;}
.ls70{letter-spacing:18.864000px;}
.ls4a{letter-spacing:19.010400px;}
.ls47{letter-spacing:19.034400px;}
.ls58{letter-spacing:19.146000px;}
.ls6d{letter-spacing:19.154400px;}
.ls59{letter-spacing:19.185000px;}
.ls56{letter-spacing:19.226400px;}
.ls63{letter-spacing:19.269000px;}
.ls64{letter-spacing:19.323000px;}
.ls51{letter-spacing:19.596000px;}
.lsc{letter-spacing:19.950000px;}
.ls45{letter-spacing:20.042400px;}
.ls3b{letter-spacing:20.138400px;}
.ls1c{letter-spacing:20.334000px;}
.ls6b{letter-spacing:20.708400px;}
.ls16{letter-spacing:21.114000px;}
.ls22{letter-spacing:21.294000px;}
.ls79{letter-spacing:21.828000px;}
.ls78{letter-spacing:21.831000px;}
.ls55{letter-spacing:21.972000px;}
.ls21{letter-spacing:22.059000px;}
.ls82{letter-spacing:22.401000px;}
.ls12{letter-spacing:22.632000px;}
.ls13{letter-spacing:22.674000px;}
.ls52{letter-spacing:22.692000px;}
.ls37{letter-spacing:22.872000px;}
.ls36{letter-spacing:22.878000px;}
.ls3d{letter-spacing:22.914000px;}
.ls74{letter-spacing:22.971000px;}
.ls1a{letter-spacing:23.180400px;}
.ls41{letter-spacing:23.298000px;}
.ls42{letter-spacing:23.304000px;}
.lse{letter-spacing:23.700000px;}
.lsf{letter-spacing:23.706000px;}
.ls5d{letter-spacing:23.721000px;}
.ls5e{letter-spacing:23.730000px;}
.ls5f{letter-spacing:23.736000px;}
.ls3e{letter-spacing:23.862000px;}
.ls17{letter-spacing:24.098400px;}
.ls23{letter-spacing:24.284400px;}
.ls1e{letter-spacing:24.339000px;}
.ls1f{letter-spacing:24.396000px;}
.ls75{letter-spacing:24.567000px;}
.ls7f{letter-spacing:24.678000px;}
.ls81{letter-spacing:24.681000px;}
.ls80{letter-spacing:24.684000px;}
.lsa{letter-spacing:24.852000px;}
.ls49{letter-spacing:25.118400px;}
.ls4b{letter-spacing:25.194000px;}
.ls3c{letter-spacing:25.898400px;}
.ls6c{letter-spacing:26.108400px;}
.ls11{letter-spacing:26.220000px;}
.ls3a{letter-spacing:27.012000px;}
.ls57{letter-spacing:27.102000px;}
.ls68{letter-spacing:27.270000px;}
.ls34{letter-spacing:28.206000px;}
.ls35{letter-spacing:28.212000px;}
.ls5c{letter-spacing:28.214400px;}
.ls65{letter-spacing:28.440000px;}
.ls43{letter-spacing:28.496400px;}
.ls77{letter-spacing:28.728000px;}
.ls7a{letter-spacing:29.127000px;}
.ls5b{letter-spacing:30.783000px;}
.ls5a{letter-spacing:30.810000px;}
.ls54{letter-spacing:31.316400px;}
.ls14{letter-spacing:31.548000px;}
.ls76{letter-spacing:32.832000px;}
.ls15{letter-spacing:34.538400px;}
.ls53{letter-spacing:34.610400px;}
.ls73{letter-spacing:36.081000px;}
.ls6e{letter-spacing:37.028400px;}
.ls30{letter-spacing:38.220000px;}
.ls32{letter-spacing:38.922000px;}
.ls31{letter-spacing:38.928000px;}
.ls1d{letter-spacing:39.756000px;}
.ls20{letter-spacing:43.470000px;}
.ls24{letter-spacing:44.232000px;}
.ls39{letter-spacing:45.408000px;}
.ls7{letter-spacing:815.106000px;}
.ls2c{letter-spacing:1343.856343px;}
.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;}
}
.ws3{word-spacing:-35.028000px;}
.ws122{word-spacing:-20.418720px;}
.ws129{word-spacing:-20.417040px;}
.ws123{word-spacing:-20.411040px;}
.ws147{word-spacing:-20.016000px;}
.ws1f5{word-spacing:-13.053000px;}
.ws43{word-spacing:-12.939000px;}
.wsb7{word-spacing:-12.369000px;}
.ws2{word-spacing:-11.676000px;}
.ws271{word-spacing:-10.305000px;}
.ws118{word-spacing:-10.215000px;}
.wse{word-spacing:-3.960000px;}
.ws1e8{word-spacing:-2.964000px;}
.wsc9{word-spacing:-2.907000px;}
.wsf5{word-spacing:-2.850000px;}
.wsaf{word-spacing:-2.736000px;}
.ws44{word-spacing:-2.622000px;}
.ws45{word-spacing:-2.565000px;}
.ws295{word-spacing:-2.532000px;}
.ws91{word-spacing:-2.508000px;}
.ws294{word-spacing:-2.430000px;}
.ws1f4{word-spacing:-2.394000px;}
.ws2a8{word-spacing:-2.340000px;}
.wse2{word-spacing:-2.337000px;}
.ws2a7{word-spacing:-2.295000px;}
.ws12e{word-spacing:-2.280000px;}
.ws1dc{word-spacing:-2.223000px;}
.ws298{word-spacing:-2.205000px;}
.ws28c{word-spacing:-2.160000px;}
.ws16a{word-spacing:-2.109000px;}
.ws2f7{word-spacing:-2.070000px;}
.ws2ef{word-spacing:-2.061000px;}
.ws108{word-spacing:-2.052000px;}
.ws1f7{word-spacing:-2.025000px;}
.ws2d{word-spacing:-1.995000px;}
.ws2ee{word-spacing:-1.980000px;}
.wsd7{word-spacing:-1.938000px;}
.wsda{word-spacing:-1.881000px;}
.wsed{word-spacing:-1.824000px;}
.ws1d2{word-spacing:-1.767000px;}
.ws1d7{word-spacing:-1.710000px;}
.ws2a5{word-spacing:-1.665000px;}
.ws6b{word-spacing:-1.653000px;}
.ws2e2{word-spacing:-1.620000px;}
.ws19d{word-spacing:-1.539000px;}
.ws23e{word-spacing:-1.530000px;}
.ws2cd{word-spacing:-1.494000px;}
.wsca{word-spacing:-1.482000px;}
.ws2e8{word-spacing:-1.467000px;}
.wscc{word-spacing:-1.452000px;}
.wscb{word-spacing:-1.425000px;}
.ws264{word-spacing:-1.395000px;}
.wsdc{word-spacing:-1.368000px;}
.ws2ba{word-spacing:-1.260000px;}
.ws1a4{word-spacing:-1.197000px;}
.ws163{word-spacing:-1.140000px;}
.ws2e0{word-spacing:-1.125000px;}
.ws162{word-spacing:-1.083000px;}
.ws2c5{word-spacing:-1.080000px;}
.ws146{word-spacing:-1.026000px;}
.ws29d{word-spacing:-0.990000px;}
.ws133{word-spacing:-0.969000px;}
.ws1b6{word-spacing:-0.912000px;}
.wsb6{word-spacing:-0.855000px;}
.ws25d{word-spacing:-0.810000px;}
.ws14f{word-spacing:-0.798000px;}
.ws3c{word-spacing:-0.741000px;}
.ws2a9{word-spacing:-0.720000px;}
.wsa4{word-spacing:-0.684000px;}
.ws167{word-spacing:-0.627000px;}
.ws2d1{word-spacing:-0.606000px;}
.ws27f{word-spacing:-0.597000px;}
.ws1f9{word-spacing:-0.570000px;}
.ws2bd{word-spacing:-0.546000px;}
.wsef{word-spacing:-0.513000px;}
.ws1cc{word-spacing:-0.504000px;}
.ws27e{word-spacing:-0.498000px;}
.ws280{word-spacing:-0.495000px;}
.ws1cd{word-spacing:-0.480000px;}
.ws1be{word-spacing:-0.456000px;}
.ws2bc{word-spacing:-0.450000px;}
.ws21c{word-spacing:-0.444000px;}
.ws21b{word-spacing:-0.405000px;}
.ws1b{word-spacing:-0.399000px;}
.ws120{word-spacing:-0.396000px;}
.ws121{word-spacing:-0.390000px;}
.ws11f{word-spacing:-0.384000px;}
.ws11e{word-spacing:-0.378000px;}
.ws2b0{word-spacing:-0.360000px;}
.ws207{word-spacing:-0.342000px;}
.ws2b8{word-spacing:-0.300000px;}
.ws20d{word-spacing:-0.294000px;}
.ws154{word-spacing:-0.285000px;}
.ws2b7{word-spacing:-0.237000px;}
.ws2b9{word-spacing:-0.225000px;}
.ws20e{word-spacing:-0.180000px;}
.wsfc{word-spacing:-0.171000px;}
.ws232{word-spacing:-0.135000px;}
.ws6{word-spacing:-0.126000px;}
.ws265{word-spacing:-0.096000px;}
.ws235{word-spacing:-0.093000px;}
.ws23f{word-spacing:-0.090000px;}
.ws2b4{word-spacing:-0.087000px;}
.ws5{word-spacing:-0.031500px;}
.ws128{word-spacing:-0.006000px;}
.ws255{word-spacing:-0.003000px;}
.ws0{word-spacing:0.000000px;}
.ws2ce{word-spacing:0.045000px;}
.wsdd{word-spacing:0.057000px;}
.ws275{word-spacing:0.090000px;}
.ws206{word-spacing:0.114000px;}
.wsf2{word-spacing:0.171000px;}
.ws2db{word-spacing:0.177000px;}
.ws23d{word-spacing:0.180000px;}
.ws20f{word-spacing:0.225000px;}
.ws1c3{word-spacing:0.228000px;}
.ws262{word-spacing:0.270000px;}
.wsbb{word-spacing:0.285000px;}
.ws26f{word-spacing:0.315000px;}
.wsa7{word-spacing:0.342000px;}
.ws11{word-spacing:0.360000px;}
.wsbc{word-spacing:0.399000px;}
.ws283{word-spacing:0.495000px;}
.ws164{word-spacing:0.513000px;}
.ws2e9{word-spacing:0.540000px;}
.ws7c{word-spacing:0.570000px;}
.wsdf{word-spacing:0.627000px;}
.ws2aa{word-spacing:0.675000px;}
.ws261{word-spacing:0.720000px;}
.ws1bb{word-spacing:0.741000px;}
.ws24c{word-spacing:0.765000px;}
.ws5e{word-spacing:0.798000px;}
.wsb8{word-spacing:0.855000px;}
.ws2f3{word-spacing:0.882000px;}
.ws2a0{word-spacing:0.900000px;}
.wsac{word-spacing:0.912000px;}
.wsad{word-spacing:0.969000px;}
.ws2f2{word-spacing:0.990000px;}
.ws14d{word-spacing:1.026000px;}
.ws277{word-spacing:1.035000px;}
.ws2a3{word-spacing:1.038000px;}
.ws174{word-spacing:1.083000px;}
.ws1f8{word-spacing:1.140000px;}
.ws270{word-spacing:1.215000px;}
.ws33{word-spacing:1.254000px;}
.ws233{word-spacing:1.260000px;}
.ws1f{word-spacing:1.311000px;}
.ws2c1{word-spacing:1.350000px;}
.ws1ee{word-spacing:1.368000px;}
.ws260{word-spacing:1.395000px;}
.wsc5{word-spacing:1.425000px;}
.ws15c{word-spacing:1.482000px;}
.ws2af{word-spacing:1.485000px;}
.ws2b2{word-spacing:1.575000px;}
.wse1{word-spacing:1.596000px;}
.ws2b6{word-spacing:1.620000px;}
.ws2d9{word-spacing:1.665000px;}
.ws14a{word-spacing:1.710000px;}
.ws2b{word-spacing:1.767000px;}
.ws2a6{word-spacing:1.800000px;}
.ws149{word-spacing:1.824000px;}
.ws25b{word-spacing:1.890000px;}
.ws114{word-spacing:1.938000px;}
.ws25c{word-spacing:1.980000px;}
.ws1f3{word-spacing:1.995000px;}
.ws244{word-spacing:2.025000px;}
.ws172{word-spacing:2.109000px;}
.ws27c{word-spacing:2.115000px;}
.ws15{word-spacing:2.160000px;}
.ws104{word-spacing:2.166000px;}
.ws2f6{word-spacing:2.205000px;}
.ws245{word-spacing:2.211000px;}
.ws2b3{word-spacing:2.250000px;}
.ws159{word-spacing:2.280000px;}
.ws26e{word-spacing:2.295000px;}
.ws30{word-spacing:2.337000px;}
.ws14{word-spacing:2.340000px;}
.ws190{word-spacing:2.352000px;}
.ws25a{word-spacing:2.430000px;}
.ws253{word-spacing:2.436000px;}
.ws105{word-spacing:2.451000px;}
.ws19c{word-spacing:2.508000px;}
.ws252{word-spacing:2.520000px;}
.ws2c0{word-spacing:2.562000px;}
.ws156{word-spacing:2.565000px;}
.ws2f5{word-spacing:2.577000px;}
.ws10{word-spacing:2.580000px;}
.ws192{word-spacing:2.592000px;}
.ws191{word-spacing:2.604000px;}
.ws2ed{word-spacing:2.610000px;}
.wse9{word-spacing:2.622000px;}
.ws2bf{word-spacing:2.655000px;}
.ws46{word-spacing:2.679000px;}
.wsae{word-spacing:2.736000px;}
.ws2b1{word-spacing:2.790000px;}
.ws139{word-spacing:2.793000px;}
.ws1e1{word-spacing:2.850000px;}
.ws226{word-spacing:2.859000px;}
.ws2cc{word-spacing:2.880000px;}
.ws225{word-spacing:2.925000px;}
.ws168{word-spacing:2.964000px;}
.ws7{word-spacing:2.988000px;}
.ws273{word-spacing:3.015000px;}
.ws126{word-spacing:3.021000px;}
.ws274{word-spacing:3.060000px;}
.wsd8{word-spacing:3.078000px;}
.ws23c{word-spacing:3.081000px;}
.ws15d{word-spacing:3.105000px;}
.ws15e{word-spacing:3.135000px;}
.ws23b{word-spacing:3.150000px;}
.wsa{word-spacing:3.180000px;}
.wsce{word-spacing:3.192000px;}
.ws210{word-spacing:3.195000px;}
.ws24f{word-spacing:3.240000px;}
.ws42{word-spacing:3.249000px;}
.ws286{word-spacing:3.273000px;}
.ws2c2{word-spacing:3.285000px;}
.ws37{word-spacing:3.306000px;}
.ws285{word-spacing:3.330000px;}
.ws1f2{word-spacing:3.336000px;}
.wse6{word-spacing:3.363000px;}
.ws287{word-spacing:3.375000px;}
.ws10c{word-spacing:3.420000px;}
.ws289{word-spacing:3.465000px;}
.wsa3{word-spacing:3.477000px;}
.ws28a{word-spacing:3.510000px;}
.ws61{word-spacing:3.534000px;}
.ws2be{word-spacing:3.555000px;}
.ws18e{word-spacing:3.570000px;}
.ws2ec{word-spacing:3.612000px;}
.ws254{word-spacing:3.645000px;}
.ws101{word-spacing:3.648000px;}
.ws2eb{word-spacing:3.690000px;}
.ws2f{word-spacing:3.762000px;}
.ws238{word-spacing:3.780000px;}
.ws106{word-spacing:3.819000px;}
.ws2da{word-spacing:3.825000px;}
.ws2c6{word-spacing:3.870000px;}
.ws68{word-spacing:3.876000px;}
.ws263{word-spacing:3.915000px;}
.ws80{word-spacing:3.933000px;}
.ws1db{word-spacing:3.990000px;}
.ws215{word-spacing:4.005000px;}
.ws13{word-spacing:4.020000px;}
.ws1c2{word-spacing:4.047000px;}
.ws2d6{word-spacing:4.050000px;}
.ws15b{word-spacing:4.092000px;}
.ws15a{word-spacing:4.104000px;}
.wsee{word-spacing:4.161000px;}
.ws23a{word-spacing:4.185000px;}
.ws150{word-spacing:4.218000px;}
.ws2c4{word-spacing:4.230000px;}
.ws16c{word-spacing:4.275000px;}
.ws166{word-spacing:4.332000px;}
.ws2d0{word-spacing:4.365000px;}
.wsc3{word-spacing:4.389000px;}
.ws250{word-spacing:4.401000px;}
.ws22a{word-spacing:4.404000px;}
.ws28e{word-spacing:4.410000px;}
.ws3d{word-spacing:4.446000px;}
.ws29c{word-spacing:4.455000px;}
.ws229{word-spacing:4.500000px;}
.ws89{word-spacing:4.503000px;}
.ws165{word-spacing:4.560000px;}
.ws92{word-spacing:4.617000px;}
.ws4f{word-spacing:4.674000px;}
.ws16{word-spacing:4.680000px;}
.ws69{word-spacing:4.731000px;}
.ws239{word-spacing:4.770000px;}
.wsab{word-spacing:4.788000px;}
.wsd{word-spacing:4.800000px;}
.ws1d5{word-spacing:4.845000px;}
.ws24e{word-spacing:4.860000px;}
.ws198{word-spacing:4.902000px;}
.ws16e{word-spacing:4.959000px;}
.ws1e9{word-spacing:5.016000px;}
.ws2c9{word-spacing:5.040000px;}
.ws12f{word-spacing:5.073000px;}
.ws9e{word-spacing:5.130000px;}
.wsc8{word-spacing:5.133000px;}
.ws22c{word-spacing:5.175000px;}
.ws9f{word-spacing:5.187000px;}
.ws22d{word-spacing:5.220000px;}
.ws1a5{word-spacing:5.244000px;}
.ws59{word-spacing:5.301000px;}
.ws234{word-spacing:5.355000px;}
.ws4a{word-spacing:5.358000px;}
.ws236{word-spacing:5.400000px;}
.ws1b7{word-spacing:5.415000px;}
.ws18f{word-spacing:5.460000px;}
.wsdb{word-spacing:5.472000px;}
.ws100{word-spacing:5.529000px;}
.ws1cb{word-spacing:5.586000px;}
.ws242{word-spacing:5.625000px;}
.ws12{word-spacing:5.640000px;}
.ws202{word-spacing:5.643000px;}
.ws24b{word-spacing:5.670000px;}
.ws1e0{word-spacing:5.700000px;}
.ws241{word-spacing:5.715000px;}
.ws2c{word-spacing:5.757000px;}
.ws290{word-spacing:5.760000px;}
.ws291{word-spacing:5.805000px;}
.ws66{word-spacing:5.814000px;}
.ws224{word-spacing:5.850000px;}
.ws288{word-spacing:5.895000px;}
.ws1cf{word-spacing:5.928000px;}
.ws1a{word-spacing:5.964000px;}
.ws72{word-spacing:5.985000px;}
.ws3a{word-spacing:6.042000px;}
.ws29a{word-spacing:6.075000px;}
.ws16b{word-spacing:6.099000px;}
.ws53{word-spacing:6.156000px;}
.ws284{word-spacing:6.165000px;}
.ws28{word-spacing:6.213000px;}
.ws1da{word-spacing:6.270000px;}
.ws4d{word-spacing:6.327000px;}
.ws267{word-spacing:6.345000px;}
.ws175{word-spacing:6.384000px;}
.ws251{word-spacing:6.390000px;}
.ws1af{word-spacing:6.441000px;}
.ws137{word-spacing:6.498000px;}
.ws1d9{word-spacing:6.555000px;}
.ws214{word-spacing:6.567000px;}
.ws257{word-spacing:6.570000px;}
.ws141{word-spacing:6.612000px;}
.ws213{word-spacing:6.660000px;}
.ws193{word-spacing:6.669000px;}
.ws266{word-spacing:6.705000px;}
.ws1c{word-spacing:6.726000px;}
.ws16d{word-spacing:6.783000px;}
.ws132{word-spacing:6.840000px;}
.ws160{word-spacing:6.897000px;}
.ws2a2{word-spacing:6.930000px;}
.wsaa{word-spacing:6.954000px;}
.ws247{word-spacing:6.975000px;}
.ws5f{word-spacing:7.011000px;}
.ws2ca{word-spacing:7.020000px;}
.ws60{word-spacing:7.068000px;}
.ws243{word-spacing:7.155000px;}
.ws9b{word-spacing:7.239000px;}
.ws272{word-spacing:7.245000px;}
.ws34{word-spacing:7.296000px;}
.ws256{word-spacing:7.335000px;}
.ws102{word-spacing:7.353000px;}
.wse7{word-spacing:7.410000px;}
.ws170{word-spacing:7.467000px;}
.ws278{word-spacing:7.515000px;}
.ws19a{word-spacing:7.524000px;}
.ws2a1{word-spacing:7.560000px;}
.ws109{word-spacing:7.581000px;}
.ws28f{word-spacing:7.605000px;}
.ws1ea{word-spacing:7.695000px;}
.ws292{word-spacing:7.740000px;}
.ws299{word-spacing:7.785000px;}
.ws35{word-spacing:7.809000px;}
.ws2ac{word-spacing:7.830000px;}
.ws1c4{word-spacing:7.866000px;}
.ws2ad{word-spacing:7.875000px;}
.ws2d7{word-spacing:7.920000px;}
.ws5d{word-spacing:7.923000px;}
.ws231{word-spacing:7.965000px;}
.ws22{word-spacing:7.980000px;}
.ws25e{word-spacing:8.010000px;}
.wse0{word-spacing:8.037000px;}
.wsf{word-spacing:8.040000px;}
.ws246{word-spacing:8.055000px;}
.ws23{word-spacing:8.094000px;}
.ws2ea{word-spacing:8.100000px;}
.wsc4{word-spacing:8.151000px;}
.ws39{word-spacing:8.208000px;}
.ws32{word-spacing:8.265000px;}
.wsfb{word-spacing:8.322000px;}
.ws276{word-spacing:8.325000px;}
.wsfa{word-spacing:8.328000px;}
.ws21{word-spacing:8.379000px;}
.ws29f{word-spacing:8.415000px;}
.ws208{word-spacing:8.493000px;}
.ws83{word-spacing:8.550000px;}
.ws85{word-spacing:8.607000px;}
.ws2d3{word-spacing:8.658000px;}
.ws84{word-spacing:8.664000px;}
.ws2d5{word-spacing:8.685000px;}
.ws16f{word-spacing:8.721000px;}
.ws2d4{word-spacing:8.730000px;}
.ws95{word-spacing:8.778000px;}
.ws268{word-spacing:8.820000px;}
.wsa2{word-spacing:8.835000px;}
.ws2e3{word-spacing:8.865000px;}
.ws19f{word-spacing:8.892000px;}
.ws269{word-spacing:8.910000px;}
.wsde{word-spacing:8.949000px;}
.ws24d{word-spacing:9.000000px;}
.ws161{word-spacing:9.006000px;}
.ws240{word-spacing:9.045000px;}
.wsf9{word-spacing:9.063000px;}
.ws27a{word-spacing:9.069000px;}
.ws281{word-spacing:9.090000px;}
.ws18{word-spacing:9.120000px;}
.ws2f8{word-spacing:9.135000px;}
.ws49{word-spacing:9.177000px;}
.ws279{word-spacing:9.180000px;}
.ws2a{word-spacing:9.234000px;}
.ws52{word-spacing:9.291000px;}
.ws2bb{word-spacing:9.315000px;}
.ws1ac{word-spacing:9.348000px;}
.ws2f4{word-spacing:9.360000px;}
.ws1f6{word-spacing:9.405000px;}
.wsb5{word-spacing:9.462000px;}
.ws222{word-spacing:9.495000px;}
.ws220{word-spacing:9.498000px;}
.ws64{word-spacing:9.519000px;}
.ws221{word-spacing:9.540000px;}
.ws138{word-spacing:9.576000px;}
.ws27b{word-spacing:9.585000px;}
.ws111{word-spacing:9.633000px;}
.ws81{word-spacing:9.690000px;}
.ws82{word-spacing:9.747000px;}
.ws13f{word-spacing:9.771000px;}
.ws140{word-spacing:9.804000px;}
.ws9{word-spacing:9.840000px;}
.ws297{word-spacing:9.855000px;}
.ws112{word-spacing:9.861000px;}
.ws13b{word-spacing:9.918000px;}
.ws13a{word-spacing:9.924000px;}
.ws151{word-spacing:9.975000px;}
.ws217{word-spacing:9.990000px;}
.ws1df{word-spacing:10.032000px;}
.ws25f{word-spacing:10.035000px;}
.ws218{word-spacing:10.080000px;}
.ws1a6{word-spacing:10.089000px;}
.ws21d{word-spacing:10.125000px;}
.ws1c6{word-spacing:10.146000px;}
.ws293{word-spacing:10.170000px;}
.ws1c5{word-spacing:10.203000px;}
.ws5a{word-spacing:10.260000px;}
.ws5c{word-spacing:10.317000px;}
.ws155{word-spacing:10.374000px;}
.ws1bd{word-spacing:10.431000px;}
.ws249{word-spacing:10.464000px;}
.wsa1{word-spacing:10.488000px;}
.ws24a{word-spacing:10.530000px;}
.ws176{word-spacing:10.545000px;}
.ws248{word-spacing:10.548000px;}
.ws29b{word-spacing:10.620000px;}
.wsa0{word-spacing:10.659000px;}
.ws22e{word-spacing:10.665000px;}
.ws74{word-spacing:10.749000px;}
.ws73{word-spacing:10.773000px;}
.ws1ae{word-spacing:10.779000px;}
.ws47{word-spacing:10.830000px;}
.wsd6{word-spacing:10.887000px;}
.ws2c7{word-spacing:10.890000px;}
.ws153{word-spacing:10.944000px;}
.ws1aa{word-spacing:11.001000px;}
.ws19{word-spacing:11.040000px;}
.ws1ab{word-spacing:11.058000px;}
.ws2f1{word-spacing:11.070000px;}
.ws223{word-spacing:11.115000px;}
.ws1a2{word-spacing:11.172000px;}
.ws29e{word-spacing:11.205000px;}
.ws71{word-spacing:11.229000px;}
.ws1bc{word-spacing:11.286000px;}
.ws54{word-spacing:11.343000px;}
.ws75{word-spacing:11.400000px;}
.ws237{word-spacing:11.430000px;}
.ws48{word-spacing:11.457000px;}
.ws216{word-spacing:11.475000px;}
.ws63{word-spacing:11.514000px;}
.ws1e2{word-spacing:11.571000px;}
.ws2b5{word-spacing:11.610000px;}
.ws1e3{word-spacing:11.628000px;}
.ws1{word-spacing:11.634000px;}
.ws2e7{word-spacing:11.655000px;}
.ws97{word-spacing:11.685000px;}
.wse3{word-spacing:11.742000px;}
.ws26{word-spacing:11.799000px;}
.ws56{word-spacing:11.856000px;}
.wsc{word-spacing:11.880000px;}
.ws57{word-spacing:11.913000px;}
.ws6f{word-spacing:11.970000px;}
.ws1de{word-spacing:12.027000px;}
.ws1d0{word-spacing:12.084000px;}
.ws1c1{word-spacing:12.141000px;}
.wsf8{word-spacing:12.198000px;}
.ws96{word-spacing:12.255000px;}
.ws212{word-spacing:12.285000px;}
.ws11d{word-spacing:12.312000px;}
.ws21f{word-spacing:12.330000px;}
.ws21e{word-spacing:12.333000px;}
.wsff{word-spacing:12.369000px;}
.ws1ef{word-spacing:12.426000px;}
.ws14e{word-spacing:12.483000px;}
.ws158{word-spacing:12.540000px;}
.ws157{word-spacing:12.597000px;}
.ws8d{word-spacing:12.654000px;}
.ws203{word-spacing:12.711000px;}
.ws173{word-spacing:12.768000px;}
.wsd3{word-spacing:12.825000px;}
.ws65{word-spacing:12.882000px;}
.ws41{word-spacing:12.996000px;}
.ws2ab{word-spacing:13.050000px;}
.ws1a0{word-spacing:13.053000px;}
.ws29{word-spacing:13.167000px;}
.ws24{word-spacing:13.224000px;}
.ws25{word-spacing:13.281000px;}
.ws88{word-spacing:13.338000px;}
.ws50{word-spacing:13.395000px;}
.ws4c{word-spacing:13.452000px;}
.ws8{word-spacing:13.500000px;}
.ws10e{word-spacing:13.509000px;}
.ws2d8{word-spacing:13.545000px;}
.wsc6{word-spacing:13.623000px;}
.ws51{word-spacing:13.680000px;}
.ws12d{word-spacing:13.737000px;}
.ws1fe{word-spacing:13.794000px;}
.ws103{word-spacing:13.851000px;}
.ws13c{word-spacing:13.908000px;}
.ws5b{word-spacing:13.965000px;}
.ws58{word-spacing:14.022000px;}
.ws258{word-spacing:14.040000px;}
.ws14b{word-spacing:14.079000px;}
.ws19b{word-spacing:14.136000px;}
.wsf1{word-spacing:14.193000px;}
.ws2a4{word-spacing:14.220000px;}
.ws1ce{word-spacing:14.250000px;}
.ws296{word-spacing:14.265000px;}
.ws148{word-spacing:14.307000px;}
.ws219{word-spacing:14.310000px;}
.ws21a{word-spacing:14.355000px;}
.ws4e{word-spacing:14.421000px;}
.ws2c3{word-spacing:14.445000px;}
.ws1f1{word-spacing:14.478000px;}
.ws1fc{word-spacing:14.535000px;}
.ws2e4{word-spacing:14.562000px;}
.ws2e6{word-spacing:14.580000px;}
.ws14c{word-spacing:14.592000px;}
.ws2e5{word-spacing:14.670000px;}
.ws62{word-spacing:14.706000px;}
.ws2f0{word-spacing:14.715000px;}
.wsd9{word-spacing:14.763000px;}
.ws10d{word-spacing:14.820000px;}
.ws90{word-spacing:14.877000px;}
.ws4{word-spacing:14.958000px;}
.ws28d{word-spacing:14.985000px;}
.ws8c{word-spacing:14.991000px;}
.ws26b{word-spacing:15.030000px;}
.ws1fb{word-spacing:15.048000px;}
.ws22f{word-spacing:15.075000px;}
.ws115{word-spacing:15.105000px;}
.ws3e{word-spacing:15.162000px;}
.ws2e{word-spacing:15.219000px;}
.ws2c8{word-spacing:15.255000px;}
.ws131{word-spacing:15.276000px;}
.ws259{word-spacing:15.354000px;}
.wsa5{word-spacing:15.390000px;}
.ws8e{word-spacing:15.447000px;}
.ws8a{word-spacing:15.504000px;}
.ws6a{word-spacing:15.561000px;}
.ws2dc{word-spacing:15.615000px;}
.ws130{word-spacing:15.618000px;}
.ws2de{word-spacing:15.660000px;}
.ws1d{word-spacing:15.675000px;}
.wsf3{word-spacing:15.732000px;}
.ws2dd{word-spacing:15.750000px;}
.ws6c{word-spacing:15.789000px;}
.ws77{word-spacing:15.846000px;}
.ws7b{word-spacing:15.903000px;}
.ws227{word-spacing:15.930000px;}
.ws125{word-spacing:15.960000px;}
.ws1e4{word-spacing:16.074000px;}
.ws1ec{word-spacing:16.131000px;}
.ws171{word-spacing:16.188000px;}
.ws28b{word-spacing:16.200000px;}
.ws197{word-spacing:16.245000px;}
.ws26a{word-spacing:16.290000px;}
.ws1a1{word-spacing:16.302000px;}
.ws10b{word-spacing:16.359000px;}
.ws11b{word-spacing:16.416000px;}
.ws55{word-spacing:16.473000px;}
.wsd5{word-spacing:16.530000px;}
.ws1d1{word-spacing:16.587000px;}
.wsc1{word-spacing:16.701000px;}
.ws70{word-spacing:16.758000px;}
.wsfd{word-spacing:16.815000px;}
.ws26d{word-spacing:16.863000px;}
.ws13e{word-spacing:16.872000px;}
.ws107{word-spacing:16.929000px;}
.ws26c{word-spacing:16.965000px;}
.ws116{word-spacing:16.986000px;}
.ws1b4{word-spacing:16.989000px;}
.ws40{word-spacing:17.043000px;}
.ws199{word-spacing:17.100000px;}
.ws17{word-spacing:17.160000px;}
.ws282{word-spacing:17.190000px;}
.ws201{word-spacing:17.214000px;}
.ws1e{word-spacing:17.271000px;}
.ws135{word-spacing:17.328000px;}
.wsf4{word-spacing:17.385000px;}
.ws78{word-spacing:17.442000px;}
.ws79{word-spacing:17.499000px;}
.ws1ca{word-spacing:17.556000px;}
.wsb1{word-spacing:17.613000px;}
.ws2df{word-spacing:17.640000px;}
.ws1d3{word-spacing:17.670000px;}
.ws143{word-spacing:17.727000px;}
.ws230{word-spacing:17.730000px;}
.ws99{word-spacing:17.784000px;}
.ws228{word-spacing:17.820000px;}
.wsc2{word-spacing:17.841000px;}
.ws67{word-spacing:17.898000px;}
.ws110{word-spacing:18.012000px;}
.wsec{word-spacing:18.069000px;}
.ws6e{word-spacing:18.126000px;}
.ws27d{word-spacing:18.180000px;}
.wsd0{word-spacing:18.183000px;}
.ws7f{word-spacing:18.354000px;}
.wsb9{word-spacing:18.582000px;}
.wsba{word-spacing:18.639000px;}
.ws195{word-spacing:18.696000px;}
.ws2cf{word-spacing:18.720000px;}
.ws196{word-spacing:18.810000px;}
.ws12c{word-spacing:19.095000px;}
.ws4b{word-spacing:19.209000px;}
.ws3f{word-spacing:19.437000px;}
.ws8f{word-spacing:19.494000px;}
.wsa9{word-spacing:19.722000px;}
.ws1a3{word-spacing:19.779000px;}
.wse5{word-spacing:19.836000px;}
.wsea{word-spacing:20.007000px;}
.ws2cb{word-spacing:20.115000px;}
.ws1fd{word-spacing:20.121000px;}
.wsbf{word-spacing:20.349000px;}
.ws20{word-spacing:20.406000px;}
.ws1dd{word-spacing:20.463000px;}
.ws200{word-spacing:20.691000px;}
.ws124{word-spacing:20.748000px;}
.ws10f{word-spacing:20.919000px;}
.ws1b2{word-spacing:20.976000px;}
.wsd1{word-spacing:21.033000px;}
.ws1c7{word-spacing:21.090000px;}
.ws6d{word-spacing:21.147000px;}
.ws15f{word-spacing:21.261000px;}
.wsb{word-spacing:21.300000px;}
.wsc0{word-spacing:21.318000px;}
.ws1d4{word-spacing:21.375000px;}
.wsbe{word-spacing:21.447000px;}
.ws1c8{word-spacing:21.546000px;}
.ws31{word-spacing:21.660000px;}
.ws134{word-spacing:21.774000px;}
.ws117{word-spacing:21.831000px;}
.wscd{word-spacing:21.888000px;}
.ws2d2{word-spacing:21.915000px;}
.ws1b8{word-spacing:21.945000px;}
.ws211{word-spacing:21.960000px;}
.ws7a{word-spacing:22.116000px;}
.ws87{word-spacing:22.287000px;}
.wsa8{word-spacing:22.344000px;}
.wsfe{word-spacing:22.401000px;}
.ws2ae{word-spacing:22.455000px;}
.ws12a{word-spacing:22.458000px;}
.ws136{word-spacing:22.572000px;}
.wsa6{word-spacing:22.743000px;}
.ws9d{word-spacing:22.800000px;}
.ws1ed{word-spacing:22.857000px;}
.ws13d{word-spacing:22.914000px;}
.ws113{word-spacing:23.085000px;}
.ws9a{word-spacing:23.142000px;}
.ws127{word-spacing:23.199000px;}
.ws1ad{word-spacing:23.256000px;}
.ws1a9{word-spacing:23.313000px;}
.ws1eb{word-spacing:23.370000px;}
.ws93{word-spacing:23.427000px;}
.ws22b{word-spacing:23.625000px;}
.ws1fa{word-spacing:23.655000px;}
.ws1e6{word-spacing:23.712000px;}
.ws9c{word-spacing:23.826000px;}
.ws1c9{word-spacing:23.883000px;}
.ws205{word-spacing:23.997000px;}
.ws27{word-spacing:24.054000px;}
.ws1f0{word-spacing:24.111000px;}
.ws98{word-spacing:24.225000px;}
.ws1a8{word-spacing:24.396000px;}
.ws1b1{word-spacing:24.453000px;}
.ws119{word-spacing:24.510000px;}
.ws144{word-spacing:24.567000px;}
.ws8b{word-spacing:24.795000px;}
.ws1e7{word-spacing:24.852000px;}
.ws152{word-spacing:24.909000px;}
.wseb{word-spacing:25.080000px;}
.ws194{word-spacing:25.308000px;}
.wsc7{word-spacing:25.593000px;}
.wsf7{word-spacing:25.650000px;}
.ws86{word-spacing:25.707000px;}
.ws209{word-spacing:25.764000px;}
.ws36{word-spacing:25.821000px;}
.ws12b{word-spacing:25.935000px;}
.ws11c{word-spacing:25.992000px;}
.ws20a{word-spacing:26.163000px;}
.ws1ff{word-spacing:26.220000px;}
.ws204{word-spacing:26.391000px;}
.ws2e1{word-spacing:26.415000px;}
.ws7d{word-spacing:26.790000px;}
.wse8{word-spacing:26.817000px;}
.ws1b5{word-spacing:26.904000px;}
.ws1c0{word-spacing:27.417000px;}
.ws1d8{word-spacing:27.588000px;}
.wscf{word-spacing:27.816000px;}
.wsd4{word-spacing:28.272000px;}
.ws10a{word-spacing:28.329000px;}
.ws20c{word-spacing:28.500000px;}
.ws94{word-spacing:28.557000px;}
.ws38{word-spacing:28.842000px;}
.ws169{word-spacing:29.298000px;}
.ws11a{word-spacing:29.412000px;}
.wse4{word-spacing:29.526000px;}
.ws1a7{word-spacing:29.583000px;}
.wsf0{word-spacing:30.552000px;}
.ws1e5{word-spacing:30.780000px;}
.wsb3{word-spacing:30.837000px;}
.wsd2{word-spacing:30.894000px;}
.ws1bf{word-spacing:31.065000px;}
.ws3b{word-spacing:31.464000px;}
.wsbd{word-spacing:31.977000px;}
.wsb0{word-spacing:32.661000px;}
.ws142{word-spacing:32.775000px;}
.wsf6{word-spacing:32.889000px;}
.ws1b3{word-spacing:33.288000px;}
.ws145{word-spacing:33.402000px;}
.ws20b{word-spacing:33.630000px;}
.ws76{word-spacing:33.915000px;}
.wsb2{word-spacing:34.143000px;}
.wsb4{word-spacing:34.257000px;}
.ws19e{word-spacing:34.314000px;}
.ws7e{word-spacing:34.770000px;}
.ws1d6{word-spacing:34.998000px;}
.ws1b9{word-spacing:35.682000px;}
.ws1ba{word-spacing:38.988000px;}
.ws183{word-spacing:122.640000px;}
.ws184{word-spacing:129.108000px;}
.ws180{word-spacing:129.150000px;}
.ws17e{word-spacing:136.122000px;}
.ws186{word-spacing:138.852000px;}
.ws179{word-spacing:140.826000px;}
.ws182{word-spacing:143.892000px;}
.ws18c{word-spacing:145.362000px;}
.ws189{word-spacing:152.334000px;}
.ws17b{word-spacing:152.502000px;}
.ws178{word-spacing:154.518000px;}
.ws18b{word-spacing:157.038000px;}
.ws17a{word-spacing:164.178000px;}
.ws18d{word-spacing:168.714000px;}
.ws17d{word-spacing:174.474000px;}
.ws17f{word-spacing:174.480000px;}
.ws18a{word-spacing:180.390000px;}
.ws188{word-spacing:190.686000px;}
.ws181{word-spacing:217.476000px;}
.ws187{word-spacing:399.930000px;}
.ws17c{word-spacing:456.660000px;}
.ws1b0{word-spacing:791.754000px;}
.ws185{word-spacing:1703.880000px;}
.ws177{word-spacing:1732.242000px;}
._4{margin-left:-11.592000px;}
._12{margin-left:-7.992000px;}
._e{margin-left:-6.624000px;}
._3{margin-left:-5.418000px;}
._2{margin-left:-3.864000px;}
._5{margin-left:-2.268000px;}
._8{margin-left:-1.140000px;}
._6{width:1.788000px;}
._7{width:2.991000px;}
._f{width:7.077000px;}
._79{width:9.267000px;}
._10{width:10.668000px;}
._78{width:11.844000px;}
._1{width:13.152000px;}
._13{width:14.934000px;}
._c{width:17.259000px;}
._77{width:19.575000px;}
._76{width:21.546000px;}
._b{width:23.187000px;}
._75{width:24.876000px;}
._d{width:32.376000px;}
._11{width:38.532000px;}
._0{width:95.616000px;}
._50{width:121.380000px;}
._60{width:122.724000px;}
._5b{width:139.860000px;}
._44{width:141.204000px;}
._74{width:145.614000px;}
._41{width:148.176000px;}
._5e{width:152.922000px;}
._1e{width:155.610000px;}
._71{width:157.164000px;}
._5c{width:158.256000px;}
._4e{width:164.178000px;}
._40{width:172.200000px;}
._1d{width:175.854000px;}
._6b{width:179.592000px;}
._1f{width:183.960000px;}
._56{width:187.530000px;}
._6a{width:192.066000px;}
._18{width:195.552000px;}
._24{width:206.466000px;}
._2d{width:218.904000px;}
._6e{width:223.440000px;}
._72{width:226.254000px;}
._34{width:229.404000px;}
._5a{width:230.706000px;}
._70{width:235.746000px;}
._42{width:238.392000px;}
._1c{width:242.256000px;}
._48{width:243.726000px;}
._3d{width:245.322000px;}
._6c{width:250.614000px;}
._5f{width:251.628000px;}
._55{width:253.932000px;}
._20{width:255.414000px;}
._65{width:258.468000px;}
._46{width:261.282000px;}
._4b{width:262.842000px;}
._52{width:263.928000px;}
._4f{width:265.608000px;}
._57{width:268.716000px;}
._3b{width:270.900000px;}
._30{width:273.336000px;}
._69{width:277.830000px;}
._2e{width:279.090000px;}
._27{width:281.106000px;}
._61{width:283.458000px;}
._2a{width:290.808000px;}
._35{width:300.132000px;}
._1b{width:302.820000px;}
._3e{width:304.374000px;}
._25{width:306.936000px;}
._73{width:311.640000px;}
._23{width:312.942000px;}
._68{width:318.150000px;}
._1a{width:324.618000px;}
._15{width:329.280000px;}
._31{width:332.388000px;}
._39{width:334.572000px;}
._64{width:336.252000px;}
._2b{width:337.428000px;}
._38{width:339.402000px;}
._9{width:340.710000px;}
._47{width:342.468000px;}
._28{width:351.834000px;}
._4c{width:354.354000px;}
._6d{width:356.412000px;}
._3a{width:370.608000px;}
._3f{width:390.642000px;}
._33{width:392.994000px;}
._66{width:395.766000px;}
._54{width:399.798000px;}
._58{width:401.478000px;}
._6f{width:411.684000px;}
._3c{width:413.154000px;}
._67{width:414.792000px;}
._59{width:416.478000px;}
._22{width:436.002000px;}
._37{width:439.068000px;}
._21{width:442.008000px;}
._53{width:443.730000px;}
._43{width:444.864000px;}
._19{width:447.636000px;}
._32{width:451.500000px;}
._4d{width:453.684000px;}
._45{width:456.666000px;}
._51{width:461.202000px;}
._17{width:465.318000px;}
._2f{width:469.182000px;}
._36{width:471.534000px;}
._4a{width:476.994000px;}
._2c{width:479.910000px;}
._29{width:491.694000px;}
._26{width:496.398000px;}
._63{width:991.326000px;}
._16{width:1008.294000px;}
._62{width:1070.118000px;}
._5d{width:1078.224000px;}
._14{width:1110.144000px;}
._49{width:1173.060000px;}
._a{width:2148.660000px;}
.fc4{color:rgb(16,15,13);}
.fc3{color:transparent;}
.fc1{color:rgb(101,98,99);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:20.598000px;}
.fs7{font-size:24.000000px;}
.fsd{font-size:27.000000px;}
.fs2{font-size:31.260000px;}
.fs5{font-size:31.500000px;}
.fs11{font-size:31.920000px;}
.fse{font-size:33.000000px;}
.fs1{font-size:42.000000px;}
.fsb{font-size:43.320000px;}
.fsf{font-size:45.000000px;}
.fs10{font-size:47.039794px;}
.fs0{font-size:48.000000px;}
.fs6{font-size:53.796000px;}
.fs4{font-size:54.000000px;}
.fsa{font-size:57.000000px;}
.fs8{font-size:60.000000px;}
.fs9{font-size:72.000000px;}
.fs3{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.y58{bottom:47.929500px;}
.y112{bottom:84.318000px;}
.y174{bottom:85.173000px;}
.y152{bottom:88.252500px;}
.y166{bottom:88.674000px;}
.y1b5{bottom:99.867000px;}
.y111{bottom:101.503500px;}
.y135{bottom:102.124500px;}
.yca{bottom:102.252000px;}
.y91{bottom:102.289500px;}
.y173{bottom:102.358500px;}
.y2c{bottom:102.550500px;}
.y57{bottom:102.849000px;}
.y21c{bottom:104.136000px;}
.y23d{bottom:104.142000px;}
.y151{bottom:105.438000px;}
.y141{bottom:108.360000px;}
.y2ca{bottom:109.911000px;}
.y2b6{bottom:109.948500px;}
.y25b{bottom:110.794500px;}
.y306{bottom:113.460000px;}
.y56{bottom:116.299500px;}
.y165{bottom:116.628000px;}
.y2b{bottom:117.493500px;}
.y110{bottom:118.689000px;}
.y181{bottom:118.690500px;}
.yc9{bottom:119.437500px;}
.y90{bottom:119.475000px;}
.y172{bottom:119.544000px;}
.y21b{bottom:121.321500px;}
.y23c{bottom:121.327500px;}
.y1b4{bottom:122.572500px;}
.y150{bottom:122.623500px;}
.y2c9{bottom:124.107000px;}
.y2b5{bottom:124.144500px;}
.y140{bottom:125.545500px;}
.y305{bottom:127.656000px;}
.y25a{bottom:127.980000px;}
.y2a{bottom:132.438000px;}
.y134{bottom:133.179000px;}
.y164{bottom:133.813500px;}
.y10f{bottom:135.874500px;}
.y17f{bottom:135.876000px;}
.yc8{bottom:136.623000px;}
.y8f{bottom:136.660500px;}
.y171{bottom:136.729500px;}
.y1e6{bottom:137.370000px;}
.y2c8{bottom:138.304500px;}
.y2b4{bottom:138.342000px;}
.y21a{bottom:138.507000px;}
.y23b{bottom:138.513000px;}
.y1b3{bottom:139.609500px;}
.y304{bottom:141.853500px;}
.y142{bottom:142.731000px;}
.y13f{bottom:142.732500px;}
.y55{bottom:143.946000px;}
.y259{bottom:145.165500px;}
.y29{bottom:147.382500px;}
.y133{bottom:150.364500px;}
.y163{bottom:150.999000px;}
.y2c7{bottom:152.500500px;}
.y2b3{bottom:152.538000px;}
.y10e{bottom:153.061500px;}
.yc7{bottom:153.808500px;}
.y8e{bottom:153.846000px;}
.y170{bottom:153.915000px;}
.y219{bottom:155.692500px;}
.y21d{bottom:155.694000px;}
.y23a{bottom:155.698500px;}
.y303{bottom:156.049500px;}
.y1b2{bottom:156.495000px;}
.y1e5{bottom:158.292000px;}
.y28{bottom:162.325500px;}
.y258{bottom:162.352500px;}
.y54{bottom:164.866500px;}
.y2c6{bottom:166.698000px;}
.y2b2{bottom:166.735500px;}
.y132{bottom:167.551500px;}
.y162{bottom:168.186000px;}
.y10d{bottom:170.247000px;}
.yc6{bottom:170.994000px;}
.y8d{bottom:171.031500px;}
.y16f{bottom:171.100500px;}
.y14f{bottom:172.123500px;}
.y218{bottom:172.879500px;}
.y239{bottom:172.884000px;}
.y1b1{bottom:173.382000px;}
.y27{bottom:177.270000px;}
.y1e4{bottom:179.212500px;}
.y257{bottom:179.538000px;}
.y2c5{bottom:180.894000px;}
.y2b1{bottom:180.931500px;}
.y302{bottom:184.443000px;}
.y131{bottom:184.737000px;}
.y161{bottom:185.371500px;}
.y53{bottom:185.788500px;}
.y14e{bottom:186.321000px;}
.y10c{bottom:187.432500px;}
.yc5{bottom:188.179500px;}
.y8c{bottom:188.217000px;}
.y16e{bottom:188.286000px;}
.y217{bottom:190.065000px;}
.y238{bottom:190.069500px;}
.y1b0{bottom:190.269000px;}
.y26{bottom:192.214500px;}
.y13e{bottom:192.384000px;}
.y2c4{bottom:195.091500px;}
.y2b0{bottom:195.129000px;}
.y256{bottom:196.723500px;}
.y301{bottom:198.640500px;}
.y14d{bottom:200.517000px;}
.y130{bottom:201.922500px;}
.y160{bottom:202.557000px;}
.y10b{bottom:204.618000px;}
.yc4{bottom:205.365000px;}
.y8b{bottom:205.402500px;}
.y16d{bottom:205.471500px;}
.y13d{bottom:206.580000px;}
.y52{bottom:206.710500px;}
.y1af{bottom:207.154500px;}
.y25{bottom:207.157500px;}
.y216{bottom:207.250500px;}
.y237{bottom:207.255000px;}
.y2c3{bottom:209.287500px;}
.y2af{bottom:209.325000px;}
.y300{bottom:212.836500px;}
.y255{bottom:213.909000px;}
.y14c{bottom:214.714500px;}
.y12f{bottom:219.108000px;}
.y15f{bottom:219.742500px;}
.y274{bottom:219.861000px;}
.y13c{bottom:220.777500px;}
.y10a{bottom:221.803500px;}
.y24{bottom:222.102000px;}
.yc3{bottom:222.550500px;}
.y8a{bottom:222.588000px;}
.y16c{bottom:222.657000px;}
.y2c2{bottom:223.485000px;}
.y2ae{bottom:223.522500px;}
.y1ae{bottom:224.041500px;}
.y215{bottom:224.436000px;}
.y236{bottom:224.440500px;}
.y1e3{bottom:225.223500px;}
.y2ff{bottom:227.034000px;}
.y51{bottom:227.631000px;}
.y14b{bottom:228.910500px;}
.y254{bottom:231.094500px;}
.y13b{bottom:234.973500px;}
.y12e{bottom:236.293500px;}
.y15e{bottom:236.928000px;}
.y23{bottom:237.045000px;}
.y2c1{bottom:237.681000px;}
.y2ad{bottom:237.718500px;}
.y109{bottom:238.989000px;}
.yc2{bottom:239.736000px;}
.y89{bottom:239.773500px;}
.y16b{bottom:239.842500px;}
.y1ad{bottom:241.077000px;}
.y2fe{bottom:241.230000px;}
.y214{bottom:241.621500px;}
.y235{bottom:241.626000px;}
.y1e2{bottom:242.409000px;}
.y14a{bottom:243.108000px;}
.y253{bottom:248.280000px;}
.y50{bottom:248.553000px;}
.y13a{bottom:249.171000px;}
.y2c0{bottom:251.878500px;}
.y2ac{bottom:251.916000px;}
.y22{bottom:251.989500px;}
.y12d{bottom:253.479000px;}
.y15d{bottom:254.113500px;}
.y271{bottom:254.232000px;}
.y2fd{bottom:255.427500px;}
.y108{bottom:256.174500px;}
.yc1{bottom:256.921500px;}
.y88{bottom:256.959000px;}
.y16a{bottom:257.028000px;}
.y213{bottom:258.807000px;}
.y234{bottom:258.811500px;}
.y1e1{bottom:259.594500px;}
.y139{bottom:263.367000px;}
.y252{bottom:265.465500px;}
.y2bf{bottom:266.074500px;}
.y2ab{bottom:266.112000px;}
.y1ac{bottom:266.557500px;}
.y21{bottom:266.934000px;}
.y4f{bottom:269.475000px;}
.y2fc{bottom:269.623500px;}
.y12c{bottom:270.664500px;}
.y15c{bottom:271.299000px;}
.y107{bottom:273.360000px;}
.yc0{bottom:274.107000px;}
.y87{bottom:274.144500px;}
.y169{bottom:274.213500px;}
.y212{bottom:275.992500px;}
.y233{bottom:275.997000px;}
.y1e0{bottom:276.780000px;}
.y2be{bottom:280.272000px;}
.y2aa{bottom:280.309500px;}
.y20{bottom:281.877000px;}
.y251{bottom:282.651000px;}
.y2fb{bottom:283.821000px;}
.y12b{bottom:287.850000px;}
.y15b{bottom:289.231500px;}
.y4e{bottom:290.397000px;}
.y106{bottom:290.545500px;}
.ybf{bottom:291.292500px;}
.y86{bottom:291.330000px;}
.y273{bottom:291.384000px;}
.y168{bottom:291.399000px;}
.y1ea{bottom:292.039500px;}
.y211{bottom:293.178000px;}
.y232{bottom:293.182500px;}
.y136{bottom:293.255997px;}
.y1df{bottom:293.965500px;}
.y2bd{bottom:294.468000px;}
.y2a9{bottom:294.505500px;}
.y1ab{bottom:295.921500px;}
.y1f{bottom:296.821500px;}
.y2fa{bottom:298.017000px;}
.y250{bottom:299.836500px;}
.y12a{bottom:305.035500px;}
.y138{bottom:305.514786px;}
.y105{bottom:307.731000px;}
.ybe{bottom:308.478000px;}
.y85{bottom:308.515500px;}
.y270{bottom:308.569500px;}
.y167{bottom:308.584500px;}
.y2bc{bottom:308.665500px;}
.y2a8{bottom:308.703000px;}
.y210{bottom:310.363500px;}
.y231{bottom:310.368000px;}
.y1de{bottom:311.151000px;}
.y4d{bottom:311.317500px;}
.y2f9{bottom:312.214500px;}
.y1e9{bottom:312.961500px;}
.y24f{bottom:317.022000px;}
.y1e{bottom:317.743500px;}
.y1aa{bottom:321.550500px;}
.y129{bottom:322.221000px;}
.y2bb{bottom:322.861500px;}
.y2a7{bottom:322.899000px;}
.y104{bottom:324.916500px;}
.ybd{bottom:325.663500px;}
.y84{bottom:325.701000px;}
.y26f{bottom:325.755000px;}
.y15a{bottom:325.770000px;}
.y2f8{bottom:326.410500px;}
.y20f{bottom:327.549000px;}
.y230{bottom:327.553500px;}
.y1dd{bottom:328.338000px;}
.y4c{bottom:332.239500px;}
.y1d{bottom:332.686500px;}
.y1e8{bottom:333.883500px;}
.y24e{bottom:334.207500px;}
.y2ba{bottom:337.059000px;}
.y2a6{bottom:337.096500px;}
.y1a9{bottom:338.436000px;}
.y128{bottom:339.406500px;}
.y2f7{bottom:340.608000px;}
.y103{bottom:342.102000px;}
.ybc{bottom:342.849000px;}
.y83{bottom:342.886500px;}
.y26e{bottom:342.940500px;}
.y159{bottom:342.955500px;}
.y20e{bottom:344.734500px;}
.y22f{bottom:344.739000px;}
.y1dc{bottom:345.523500px;}
.y1c{bottom:347.631000px;}
.y2b9{bottom:351.255000px;}
.y2a5{bottom:351.292500px;}
.y24d{bottom:351.393000px;}
.y4b{bottom:353.161500px;}
.y1e7{bottom:354.804000px;}
.y1a8{bottom:355.323000px;}
.y127{bottom:356.592000px;}
.y102{bottom:359.287500px;}
.ybb{bottom:360.034500px;}
.y82{bottom:360.072000px;}
.y26d{bottom:360.126000px;}
.y20d{bottom:361.920000px;}
.y22e{bottom:361.924500px;}
.y1db{bottom:362.709000px;}
.y2b8{bottom:365.452500px;}
.y1b{bottom:368.553000px;}
.y24c{bottom:368.578500px;}
.y2f6{bottom:369.001500px;}
.y1a7{bottom:372.360000px;}
.y126{bottom:373.777500px;}
.y4a{bottom:374.082000px;}
.y101{bottom:376.473000px;}
.y2a4{bottom:376.996500px;}
.yba{bottom:377.220000px;}
.y81{bottom:377.257500px;}
.y26c{bottom:377.311500px;}
.y20c{bottom:379.105500px;}
.y22d{bottom:379.110000px;}
.y2b7{bottom:379.648500px;}
.y1da{bottom:379.894500px;}
.y2f5{bottom:383.197500px;}
.y1a{bottom:383.496000px;}
.y24b{bottom:385.764000px;}
.y1a6{bottom:389.395500px;}
.y125{bottom:390.963000px;}
.y158{bottom:392.455500px;}
.y100{bottom:393.658500px;}
.yb9{bottom:394.405500px;}
.y80{bottom:394.443000px;}
.y26b{bottom:394.497000px;}
.y49{bottom:395.004000px;}
.yf0{bottom:395.152500px;}
.y20b{bottom:396.291000px;}
.y22c{bottom:396.295500px;}
.y1d9{bottom:397.080000px;}
.y2f4{bottom:397.395000px;}
.y19{bottom:398.440500px;}
.y24a{bottom:402.949500px;}
.y1a5{bottom:406.431000px;}
.y157{bottom:406.653000px;}
.y124{bottom:408.148500px;}
.yff{bottom:410.844000px;}
.yb8{bottom:411.591000px;}
.y7f{bottom:411.628500px;}
.y26a{bottom:411.682500px;}
.y18{bottom:413.385000px;}
.y20a{bottom:413.476500px;}
.y22b{bottom:413.481000px;}
.y1d8{bottom:414.265500px;}
.y48{bottom:415.926000px;}
.yef{bottom:416.074500px;}
.y249{bottom:420.135000px;}
.y156{bottom:420.849000px;}
.y1a4{bottom:423.468000px;}
.y123{bottom:425.334000px;}
.y2f3{bottom:425.788500px;}
.yfe{bottom:428.029500px;}
.y17{bottom:428.328000px;}
.yb7{bottom:428.776500px;}
.y7e{bottom:428.814000px;}
.y269{bottom:428.868000px;}
.y272{bottom:428.869500px;}
.y289{bottom:429.711000px;}
.y209{bottom:430.662000px;}
.y22a{bottom:430.668000px;}
.y1d7{bottom:431.451000px;}
.y155{bottom:435.046500px;}
.y47{bottom:436.846500px;}
.y248{bottom:437.320500px;}
.y2f2{bottom:439.984500px;}
.y1a3{bottom:440.353500px;}
.y122{bottom:442.519500px;}
.y16{bottom:443.272500px;}
.y2a3{bottom:443.908500px;}
.yfd{bottom:445.215000px;}
.yb6{bottom:445.962000px;}
.y7d{bottom:445.999500px;}
.y268{bottom:446.055000px;}
.y288{bottom:446.896500px;}
.y208{bottom:447.847500px;}
.y229{bottom:447.853500px;}
.y1d6{bottom:448.636500px;}
.y154{bottom:449.242500px;}
.y2f1{bottom:454.182000px;}
.y247{bottom:454.506000px;}
.yee{bottom:456.423000px;}
.y1a2{bottom:457.390500px;}
.y46{bottom:457.768500px;}
.y2a2{bottom:458.104500px;}
.y121{bottom:459.705000px;}
.yfc{bottom:462.400500px;}
.yb5{bottom:463.147500px;}
.y7c{bottom:463.186500px;}
.y267{bottom:463.240500px;}
.y153{bottom:463.440000px;}
.y287{bottom:464.082000px;}
.y207{bottom:465.033000px;}
.y228{bottom:465.039000px;}
.y1d5{bottom:465.822000px;}
.y2f0{bottom:468.378000px;}
.y246{bottom:471.691500px;}
.yed{bottom:473.608500px;}
.y1a1{bottom:474.426000px;}
.y15{bottom:475.402500px;}
.y120{bottom:476.890500px;}
.y45{bottom:478.690500px;}
.yfb{bottom:479.586000px;}
.yb4{bottom:480.333000px;}
.y7b{bottom:480.372000px;}
.y266{bottom:480.426000px;}
.y286{bottom:481.267500px;}
.y227{bottom:482.224500px;}
.y2ef{bottom:482.575500px;}
.y1d4{bottom:483.007500px;}
.y2a1{bottom:483.808500px;}
.y245{bottom:488.877000px;}
.yec{bottom:490.794000px;}
.y1a0{bottom:491.461500px;}
.y11f{bottom:494.076000px;}
.y14{bottom:494.157000px;}
.yfa{bottom:496.771500px;}
.yb3{bottom:497.518500px;}
.y7a{bottom:497.557500px;}
.y265{bottom:497.611500px;}
.y2a0{bottom:498.004500px;}
.y285{bottom:498.453000px;}
.y226{bottom:499.410000px;}
.y44{bottom:499.612500px;}
.y1d3{bottom:500.193000px;}
.y180{bottom:501.255000px;}
.y244{bottom:506.062500px;}
.yeb{bottom:507.979500px;}
.y19f{bottom:508.348500px;}
.y13{bottom:510.520500px;}
.y2ee{bottom:510.969000px;}
.y11e{bottom:511.261500px;}
.y1fe{bottom:512.014500px;}
.y29f{bottom:512.202000px;}
.yf9{bottom:513.957000px;}
.y206{bottom:514.533000px;}
.yb2{bottom:514.704000px;}
.y79{bottom:514.743000px;}
.y264{bottom:514.797000px;}
.y284{bottom:515.638500px;}
.y225{bottom:516.595500px;}
.y1d2{bottom:517.378500px;}
.y43{bottom:520.533000px;}
.y243{bottom:523.248000px;}
.yea{bottom:525.165000px;}
.y19e{bottom:525.384000px;}
.y12{bottom:525.465000px;}
.y11d{bottom:528.447000px;}
.y205{bottom:528.729000px;}
.yf8{bottom:531.142500px;}
.yb1{bottom:531.889500px;}
.y78{bottom:531.928500px;}
.y263{bottom:531.982500px;}
.y283{bottom:532.824000px;}
.y224{bottom:533.781000px;}
.y1d1{bottom:534.564000px;}
.y29e{bottom:538.054500px;}
.y2ed{bottom:539.362500px;}
.y11{bottom:540.408000px;}
.y242{bottom:540.433500px;}
.y19d{bottom:542.271000px;}
.ye9{bottom:542.350500px;}
.y204{bottom:542.926500px;}
.y11b{bottom:545.632500px;}
.yf7{bottom:548.328000px;}
.y1ff{bottom:549.075000px;}
.yb0{bottom:549.076500px;}
.y77{bottom:549.114000px;}
.y262{bottom:549.168000px;}
.y282{bottom:550.009500px;}
.y11c{bottom:550.806000px;}
.y223{bottom:550.966500px;}
.y1d0{bottom:551.749500px;}
.y29d{bottom:552.252000px;}
.y2ec{bottom:553.558500px;}
.y10{bottom:555.352500px;}
.y203{bottom:557.122500px;}
.y19c{bottom:559.158000px;}
.ye8{bottom:559.536000px;}
.y42{bottom:562.198500px;}
.y11a{bottom:562.818000px;}
.yf6{bottom:565.513500px;}
.yaf{bottom:566.262000px;}
.y76{bottom:566.299500px;}
.y261{bottom:566.353500px;}
.y29c{bottom:566.448000px;}
.y1fd{bottom:567.606000px;}
.y2eb{bottom:567.756000px;}
.y1cf{bottom:568.935000px;}
.yf{bottom:570.295500px;}
.y202{bottom:571.320000px;}
.y19b{bottom:576.043500px;}
.ye7{bottom:576.721500px;}
.y41{bottom:577.143000px;}
.y119{bottom:580.003500px;}
.y29b{bottom:580.645500px;}
.y281{bottom:581.691000px;}
.y2ea{bottom:581.952000px;}
.yf5{bottom:582.699000px;}
.yae{bottom:583.447500px;}
.y75{bottom:583.485000px;}
.y1fc{bottom:584.791500px;}
.y201{bottom:585.516000px;}
.y1ce{bottom:586.120500px;}
.y241{bottom:590.086500px;}
.ye{bottom:591.217500px;}
.y40{bottom:592.086000px;}
.y19a{bottom:593.080500px;}
.ye6{bottom:593.907000px;}
.y29a{bottom:594.841500px;}
.y2e9{bottom:596.149500px;}
.y118{bottom:597.189000px;}
.y200{bottom:599.713500px;}
.yf4{bottom:599.884500px;}
.y17e{bottom:599.886000px;}
.y222{bottom:600.618000px;}
.yad{bottom:600.633000px;}
.y74{bottom:600.670500px;}
.y1fb{bottom:601.977000px;}
.y1cd{bottom:603.306000px;}
.y240{bottom:604.282500px;}
.yd{bottom:606.162000px;}
.y3f{bottom:607.030500px;}
.y299{bottom:609.039000px;}
.y2e8{bottom:610.345500px;}
.ye5{bottom:611.094000px;}
.y117{bottom:614.374500px;}
.y221{bottom:614.815500px;}
.y260{bottom:616.005000px;}
.y149{bottom:616.233000px;}
.yf3{bottom:617.071500px;}
.yac{bottom:617.818500px;}
.y73{bottom:617.856000px;}
.y23f{bottom:618.480000px;}
.y199{bottom:618.559500px;}
.y1fa{bottom:619.162500px;}
.y1cc{bottom:620.491500px;}
.yc{bottom:621.105000px;}
.y3e{bottom:621.975000px;}
.y2e7{bottom:624.543000px;}
.ye4{bottom:628.279500px;}
.y220{bottom:629.011500px;}
.y25f{bottom:630.202500px;}
.y148{bottom:630.429000px;}
.y116{bottom:631.560000px;}
.y298{bottom:632.202000px;}
.y23e{bottom:632.676000px;}
.yf2{bottom:634.257000px;}
.yab{bottom:635.004000px;}
.y72{bottom:635.041500px;}
.y280{bottom:635.490000px;}
.ycd{bottom:635.751000px;}
.yb{bottom:636.049500px;}
.y1f9{bottom:636.348000px;}
.y3d{bottom:636.918000px;}
.y1cb{bottom:637.677000px;}
.y2e6{bottom:638.739000px;}
.y21f{bottom:643.209000px;}
.y25e{bottom:644.398500px;}
.y147{bottom:644.626500px;}
.ye3{bottom:645.465000px;}
.y297{bottom:646.398000px;}
.y198{bottom:647.923500px;}
.y115{bottom:649.494000px;}
.ya{bottom:650.994000px;}
.y17d{bottom:651.442500px;}
.y3c{bottom:651.862500px;}
.yaa{bottom:652.189500px;}
.y71{bottom:652.227000px;}
.y27f{bottom:652.675500px;}
.y2e5{bottom:652.936500px;}
.y1f8{bottom:653.533500px;}
.y1ca{bottom:654.862500px;}
.ycc{bottom:656.673000px;}
.y21e{bottom:657.405000px;}
.y25d{bottom:658.596000px;}
.y146{bottom:658.824000px;}
.y296{bottom:660.595500px;}
.ye2{bottom:662.650500px;}
.y9{bottom:665.937000px;}
.y2e4{bottom:667.132500px;}
.y17c{bottom:668.628000px;}
.ya9{bottom:669.375000px;}
.y70{bottom:669.412500px;}
.y27e{bottom:669.861000px;}
.y3b{bottom:670.618500px;}
.y1f7{bottom:670.719000px;}
.y1c9{bottom:672.048000px;}
.y25c{bottom:672.792000px;}
.y145{bottom:673.020000px;}
.yf1{bottom:673.110000px;}
.y197{bottom:673.552500px;}
.y295{bottom:674.791500px;}
.ye1{bottom:679.836000px;}
.y2e3{bottom:681.330000px;}
.y3a{bottom:685.561500px;}
.y17b{bottom:685.813500px;}
.ya8{bottom:686.560500px;}
.y6f{bottom:686.598000px;}
.y8{bottom:686.859000px;}
.y27d{bottom:687.046500px;}
.y144{bottom:687.217500px;}
.y1f6{bottom:687.904500px;}
.y294{bottom:688.989000px;}
.y1c8{bottom:689.233500px;}
.y196{bottom:690.589500px;}
.ycb{bottom:692.089500px;}
.y2e2{bottom:695.526000px;}
.y39{bottom:696.694500px;}
.ye0{bottom:697.021500px;}
.y143{bottom:701.413500px;}
.y7{bottom:701.803500px;}
.y17a{bottom:702.999000px;}
.y293{bottom:703.185000px;}
.ya7{bottom:703.746000px;}
.y6e{bottom:703.783500px;}
.y27c{bottom:704.232000px;}
.y1f5{bottom:705.091500px;}
.y1c7{bottom:706.419000px;}
.y195{bottom:707.475000px;}
.y2e1{bottom:709.723500px;}
.y38{bottom:711.639000px;}
.ydf{bottom:714.207000px;}
.y6{bottom:716.746500px;}
.y292{bottom:717.382500px;}
.y179{bottom:720.184500px;}
.ya6{bottom:720.931500px;}
.y6d{bottom:720.969000px;}
.y27b{bottom:721.417500px;}
.y1f4{bottom:722.277000px;}
.y2e0{bottom:723.919500px;}
.y194{bottom:724.362000px;}
.y37{bottom:726.582000px;}
.yde{bottom:731.392500px;}
.y291{bottom:731.578500px;}
.y5{bottom:731.691000px;}
.y178{bottom:737.370000px;}
.ya5{bottom:738.117000px;}
.y6c{bottom:738.154500px;}
.y27a{bottom:738.603000px;}
.y1f3{bottom:739.462500px;}
.y193{bottom:741.249000px;}
.y36{bottom:745.338000px;}
.y290{bottom:745.776000px;}
.y1c6{bottom:746.721000px;}
.ydd{bottom:748.578000px;}
.y2df{bottom:752.313000px;}
.y177{bottom:754.555500px;}
.ya4{bottom:755.302500px;}
.y6b{bottom:755.340000px;}
.y279{bottom:755.788500px;}
.y1f2{bottom:756.648000px;}
.y192{bottom:758.134500px;}
.y1c5{bottom:760.170000px;}
.y137{bottom:762.420534px;}
.ydc{bottom:765.763500px;}
.y2de{bottom:766.510500px;}
.y35{bottom:768.426000px;}
.ya3{bottom:772.488000px;}
.y6a{bottom:772.525500px;}
.y278{bottom:772.974000px;}
.y1c4{bottom:773.620500px;}
.y1f1{bottom:773.833500px;}
.y191{bottom:775.171500px;}
.y28f{bottom:775.468500px;}
.y2dd{bottom:780.706500px;}
.ydb{bottom:782.949000px;}
.y34{bottom:784.864500px;}
.y1c3{bottom:787.069500px;}
.ya2{bottom:789.673500px;}
.y69{bottom:789.711000px;}
.y277{bottom:790.159500px;}
.y1f0{bottom:791.019000px;}
.y190{bottom:792.207000px;}
.y28e{bottom:792.654000px;}
.y176{bottom:793.410000px;}
.y2dc{bottom:794.904000px;}
.yda{bottom:800.134500px;}
.y1c2{bottom:800.518500px;}
.y33{bottom:801.301500px;}
.ya1{bottom:806.859000px;}
.y68{bottom:806.896500px;}
.y276{bottom:807.345000px;}
.y1ef{bottom:808.204500px;}
.y2db{bottom:809.100000px;}
.y308{bottom:809.101500px;}
.y18f{bottom:809.242500px;}
.y28d{bottom:809.839500px;}
.yd9{bottom:817.320000px;}
.y32{bottom:817.740000px;}
.y1c1{bottom:823.224000px;}
.y2da{bottom:823.297500px;}
.ya0{bottom:824.044500px;}
.y67{bottom:824.082000px;}
.y1ee{bottom:826.137000px;}
.y18e{bottom:826.279500px;}
.y175{bottom:828.826500px;}
.yd8{bottom:834.505500px;}
.y31{bottom:836.823000px;}
.y2d9{bottom:837.493500px;}
.y307{bottom:837.495000px;}
.y275{bottom:839.026500px;}
.y1c0{bottom:840.111000px;}
.y9f{bottom:841.230000px;}
.y66{bottom:841.267500px;}
.y28c{bottom:841.521000px;}
.y18d{bottom:843.165000px;}
.y1ed{bottom:847.059000px;}
.yd7{bottom:851.691000px;}
.y1bf{bottom:856.998000px;}
.y9e{bottom:858.415500px;}
.y65{bottom:858.453000px;}
.y18c{bottom:860.052000px;}
.y2d8{bottom:865.888500px;}
.y1ec{bottom:867.979500px;}
.yd6{bottom:868.876500px;}
.y1be{bottom:873.883500px;}
.y30{bottom:874.023000px;}
.y9d{bottom:875.601000px;}
.y64{bottom:875.638500px;}
.y18b{bottom:876.939000px;}
.y2d7{bottom:880.084500px;}
.yd5{bottom:886.062000px;}
.y1eb{bottom:888.901500px;}
.y1bd{bottom:890.770500px;}
.y9c{bottom:892.786500px;}
.y63{bottom:892.824000px;}
.y18a{bottom:893.824500px;}
.y2d6{bottom:894.282000px;}
.yd4{bottom:903.247500px;}
.y1bc{bottom:907.806000px;}
.y2f{bottom:908.394000px;}
.y2d5{bottom:908.478000px;}
.y9b{bottom:909.972000px;}
.y62{bottom:910.009500px;}
.y189{bottom:910.861500px;}
.yd3{bottom:920.433000px;}
.y2d4{bottom:922.675500px;}
.y1bb{bottom:924.693000px;}
.y9a{bottom:927.157500px;}
.y61{bottom:927.195000px;}
.y188{bottom:927.897000px;}
.y2d3{bottom:936.871500px;}
.yd2{bottom:937.618500px;}
.y1ba{bottom:941.728500px;}
.y2e{bottom:942.765000px;}
.y99{bottom:944.343000px;}
.y28b{bottom:944.380500px;}
.y60{bottom:944.382000px;}
.y187{bottom:944.784000px;}
.y2d2{bottom:951.069000px;}
.yd1{bottom:954.804000px;}
.y1b9{bottom:958.765500px;}
.y98{bottom:961.528500px;}
.y28a{bottom:961.566000px;}
.y5f{bottom:961.567500px;}
.y2d1{bottom:965.265000px;}
.y186{bottom:970.413000px;}
.yd0{bottom:971.989500px;}
.y2d{bottom:977.137500px;}
.y97{bottom:978.714000px;}
.y5e{bottom:978.753000px;}
.y2d0{bottom:979.462500px;}
.y1b8{bottom:984.394500px;}
.ycf{bottom:989.175000px;}
.y2cf{bottom:993.658500px;}
.y96{bottom:995.899500px;}
.y5d{bottom:995.938500px;}
.y185{bottom:999.777000px;}
.yce{bottom:1007.107500px;}
.y2ce{bottom:1007.856000px;}
.y114{bottom:1013.085000px;}
.y95{bottom:1013.086500px;}
.y5c{bottom:1013.124000px;}
.y1b7{bottom:1013.758500px;}
.y2cd{bottom:1022.052000px;}
.y184{bottom:1025.406000px;}
.y113{bottom:1030.270500px;}
.y94{bottom:1030.272000px;}
.y5b{bottom:1030.309500px;}
.y2cc{bottom:1036.249500px;}
.y1b6{bottom:1039.387500px;}
.y93{bottom:1047.457500px;}
.y2cb{bottom:1050.445500px;}
.y183{bottom:1052.758500px;}
.y5a{bottom:1061.989500px;}
.y92{bottom:1064.643000px;}
.y182{bottom:1066.954500px;}
.y4{bottom:1083.001500px;}
.y3{bottom:1094.956500px;}
.y2{bottom:1106.911500px;}
.y59{bottom:1117.117500px;}
.y1{bottom:1201.588500px;}
.h9{height:22.848000px;}
.hf{height:25.533000px;}
.h12{height:26.763000px;}
.h6{height:28.352820px;}
.h4{height:30.702000px;}
.h18{height:32.040000px;}
.h3{height:33.012000px;}
.h13{height:36.495000px;}
.h5{height:38.094000px;}
.h2{height:38.928000px;}
.h16{height:40.335120px;}
.h17{height:44.197440px;}
.hc{height:46.227000px;}
.ha{height:47.160000px;}
.h10{height:47.457000px;}
.h15{height:48.969160px;}
.h11{height:50.102280px;}
.h8{height:50.112000px;}
.hd{height:55.820520px;}
.he{height:55.826520px;}
.hb{height:56.592000px;}
.h7{height:99.036000px;}
.h14{height:772.509540px;}
.h1{height:1169.250000px;}
.h0{height:1169.292000px;}
.w2{width:658.310151px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:12.051000px;}
.x24{left:67.470000px;}
.x1c{left:68.521500px;}
.x1b{left:75.556500px;}
.x2a{left:76.809000px;}
.x15{left:79.851000px;}
.x31{left:82.410000px;}
.x25{left:84.655500px;}
.x19{left:88.167000px;}
.x10{left:91.285500px;}
.x6{left:92.850000px;}
.x22{left:96.514500px;}
.x21{left:98.667000px;}
.x1a{left:102.405000px;}
.x7{left:107.046000px;}
.x13{left:110.206500px;}
.xa{left:112.306500px;}
.x29{left:115.760994px;}
.x17{left:121.063500px;}
.xd{left:124.570500px;}
.x1d{left:128.854500px;}
.xc{left:133.222500px;}
.x14{left:137.212500px;}
.x20{left:138.766500px;}
.x1e{left:143.239500px;}
.xe{left:148.699500px;}
.x9{left:150.831000px;}
.x12{left:152.784000px;}
.xf{left:154.537500px;}
.x1f{left:162.486000px;}
.x8{left:172.818000px;}
.x11{left:174.351000px;}
.xb{left:178.068000px;}
.x2f{left:181.506000px;}
.x4{left:189.156000px;}
.x5{left:190.500000px;}
.x2b{left:195.688500px;}
.x18{left:196.747500px;}
.x16{left:206.061000px;}
.x2d{left:211.423500px;}
.x30{left:235.407000px;}
.x2c{left:247.563000px;}
.x23{left:266.224500px;}
.x26{left:455.499000px;}
.x32{left:469.977000px;}
.x27{left:472.686000px;}
.x28{left:520.971000px;}
.x3{left:682.785000px;}
.x2{left:713.224500px;}
.x2e{left:773.484000px;}
@media print{
.v6{vertical-align:-18.394667pt;}
.v3{vertical-align:-15.808000pt;}
.v1{vertical-align:-13.552000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.290667pt;}
.v4{vertical-align:15.808000pt;}
.v5{vertical-align:18.389333pt;}
.ls8{letter-spacing:0.000000pt;}
.ls44{letter-spacing:0.002667pt;}
.ls2f{letter-spacing:0.261333pt;}
.ls38{letter-spacing:0.810667pt;}
.ls5{letter-spacing:1.851872pt;}
.ls3{letter-spacing:1.857205pt;}
.ls4c{letter-spacing:2.652800pt;}
.ls1{letter-spacing:2.656000pt;}
.ls2b{letter-spacing:2.656427pt;}
.ls0{letter-spacing:2.657280pt;}
.ls46{letter-spacing:2.658133pt;}
.ls27{letter-spacing:2.659200pt;}
.ls2{letter-spacing:2.661333pt;}
.ls4d{letter-spacing:2.661760pt;}
.ls29{letter-spacing:3.098667pt;}
.ls83{letter-spacing:7.824000pt;}
.ls6{letter-spacing:8.586667pt;}
.ls7b{letter-spacing:9.069333pt;}
.ls33{letter-spacing:9.450667pt;}
.ls9{letter-spacing:9.706667pt;}
.ls2e{letter-spacing:10.032000pt;}
.ls2d{letter-spacing:10.037333pt;}
.ls19{letter-spacing:10.213333pt;}
.ls28{letter-spacing:10.378667pt;}
.ls7e{letter-spacing:10.752000pt;}
.ls7d{letter-spacing:10.754667pt;}
.ls48{letter-spacing:10.954667pt;}
.ls25{letter-spacing:11.498667pt;}
.ls10{letter-spacing:11.501333pt;}
.ls26{letter-spacing:11.504000pt;}
.ls71{letter-spacing:12.357333pt;}
.ls4f{letter-spacing:12.485333pt;}
.ls50{letter-spacing:12.688000pt;}
.ls2a{letter-spacing:13.036160pt;}
.ls6a{letter-spacing:13.114667pt;}
.ls61{letter-spacing:14.538667pt;}
.ls60{letter-spacing:14.541333pt;}
.ls62{letter-spacing:14.640000pt;}
.ls1b{letter-spacing:14.722133pt;}
.ls4e{letter-spacing:15.242667pt;}
.ls72{letter-spacing:15.269333pt;}
.ls67{letter-spacing:15.322667pt;}
.ls6f{letter-spacing:15.447467pt;}
.lsb{letter-spacing:15.504000pt;}
.lsd{letter-spacing:15.706667pt;}
.ls4{letter-spacing:16.001280pt;}
.ls18{letter-spacing:16.085333pt;}
.ls66{letter-spacing:16.096000pt;}
.ls7c{letter-spacing:16.264000pt;}
.ls69{letter-spacing:16.588800pt;}
.ls40{letter-spacing:16.624000pt;}
.ls3f{letter-spacing:16.629333pt;}
.ls70{letter-spacing:16.768000pt;}
.ls4a{letter-spacing:16.898133pt;}
.ls47{letter-spacing:16.919467pt;}
.ls58{letter-spacing:17.018667pt;}
.ls6d{letter-spacing:17.026133pt;}
.ls59{letter-spacing:17.053333pt;}
.ls56{letter-spacing:17.090133pt;}
.ls63{letter-spacing:17.128000pt;}
.ls64{letter-spacing:17.176000pt;}
.ls51{letter-spacing:17.418667pt;}
.lsc{letter-spacing:17.733333pt;}
.ls45{letter-spacing:17.815467pt;}
.ls3b{letter-spacing:17.900800pt;}
.ls1c{letter-spacing:18.074667pt;}
.ls6b{letter-spacing:18.407467pt;}
.ls16{letter-spacing:18.768000pt;}
.ls22{letter-spacing:18.928000pt;}
.ls79{letter-spacing:19.402667pt;}
.ls78{letter-spacing:19.405333pt;}
.ls55{letter-spacing:19.530667pt;}
.ls21{letter-spacing:19.608000pt;}
.ls82{letter-spacing:19.912000pt;}
.ls12{letter-spacing:20.117333pt;}
.ls13{letter-spacing:20.154667pt;}
.ls52{letter-spacing:20.170667pt;}
.ls37{letter-spacing:20.330667pt;}
.ls36{letter-spacing:20.336000pt;}
.ls3d{letter-spacing:20.368000pt;}
.ls74{letter-spacing:20.418667pt;}
.ls1a{letter-spacing:20.604800pt;}
.ls41{letter-spacing:20.709333pt;}
.ls42{letter-spacing:20.714667pt;}
.lse{letter-spacing:21.066667pt;}
.lsf{letter-spacing:21.072000pt;}
.ls5d{letter-spacing:21.085333pt;}
.ls5e{letter-spacing:21.093333pt;}
.ls5f{letter-spacing:21.098667pt;}
.ls3e{letter-spacing:21.210667pt;}
.ls17{letter-spacing:21.420800pt;}
.ls23{letter-spacing:21.586133pt;}
.ls1e{letter-spacing:21.634667pt;}
.ls1f{letter-spacing:21.685333pt;}
.ls75{letter-spacing:21.837333pt;}
.ls7f{letter-spacing:21.936000pt;}
.ls81{letter-spacing:21.938667pt;}
.ls80{letter-spacing:21.941333pt;}
.lsa{letter-spacing:22.090667pt;}
.ls49{letter-spacing:22.327467pt;}
.ls4b{letter-spacing:22.394667pt;}
.ls3c{letter-spacing:23.020800pt;}
.ls6c{letter-spacing:23.207467pt;}
.ls11{letter-spacing:23.306667pt;}
.ls3a{letter-spacing:24.010667pt;}
.ls57{letter-spacing:24.090667pt;}
.ls68{letter-spacing:24.240000pt;}
.ls34{letter-spacing:25.072000pt;}
.ls35{letter-spacing:25.077333pt;}
.ls5c{letter-spacing:25.079467pt;}
.ls65{letter-spacing:25.280000pt;}
.ls43{letter-spacing:25.330133pt;}
.ls77{letter-spacing:25.536000pt;}
.ls7a{letter-spacing:25.890667pt;}
.ls5b{letter-spacing:27.362667pt;}
.ls5a{letter-spacing:27.386667pt;}
.ls54{letter-spacing:27.836800pt;}
.ls14{letter-spacing:28.042667pt;}
.ls76{letter-spacing:29.184000pt;}
.ls15{letter-spacing:30.700800pt;}
.ls53{letter-spacing:30.764800pt;}
.ls73{letter-spacing:32.072000pt;}
.ls6e{letter-spacing:32.914133pt;}
.ls30{letter-spacing:33.973333pt;}
.ls32{letter-spacing:34.597333pt;}
.ls31{letter-spacing:34.602667pt;}
.ls1d{letter-spacing:35.338667pt;}
.ls20{letter-spacing:38.640000pt;}
.ls24{letter-spacing:39.317333pt;}
.ls39{letter-spacing:40.362667pt;}
.ls7{letter-spacing:724.538667pt;}
.ls2c{letter-spacing:1194.538972pt;}
.ws3{word-spacing:-31.136000pt;}
.ws122{word-spacing:-18.149973pt;}
.ws129{word-spacing:-18.148480pt;}
.ws123{word-spacing:-18.143147pt;}
.ws147{word-spacing:-17.792000pt;}
.ws1f5{word-spacing:-11.602667pt;}
.ws43{word-spacing:-11.501333pt;}
.wsb7{word-spacing:-10.994667pt;}
.ws2{word-spacing:-10.378667pt;}
.ws271{word-spacing:-9.160000pt;}
.ws118{word-spacing:-9.080000pt;}
.wse{word-spacing:-3.520000pt;}
.ws1e8{word-spacing:-2.634667pt;}
.wsc9{word-spacing:-2.584000pt;}
.wsf5{word-spacing:-2.533333pt;}
.wsaf{word-spacing:-2.432000pt;}
.ws44{word-spacing:-2.330667pt;}
.ws45{word-spacing:-2.280000pt;}
.ws295{word-spacing:-2.250667pt;}
.ws91{word-spacing:-2.229333pt;}
.ws294{word-spacing:-2.160000pt;}
.ws1f4{word-spacing:-2.128000pt;}
.ws2a8{word-spacing:-2.080000pt;}
.wse2{word-spacing:-2.077333pt;}
.ws2a7{word-spacing:-2.040000pt;}
.ws12e{word-spacing:-2.026667pt;}
.ws1dc{word-spacing:-1.976000pt;}
.ws298{word-spacing:-1.960000pt;}
.ws28c{word-spacing:-1.920000pt;}
.ws16a{word-spacing:-1.874667pt;}
.ws2f7{word-spacing:-1.840000pt;}
.ws2ef{word-spacing:-1.832000pt;}
.ws108{word-spacing:-1.824000pt;}
.ws1f7{word-spacing:-1.800000pt;}
.ws2d{word-spacing:-1.773333pt;}
.ws2ee{word-spacing:-1.760000pt;}
.wsd7{word-spacing:-1.722667pt;}
.wsda{word-spacing:-1.672000pt;}
.wsed{word-spacing:-1.621333pt;}
.ws1d2{word-spacing:-1.570667pt;}
.ws1d7{word-spacing:-1.520000pt;}
.ws2a5{word-spacing:-1.480000pt;}
.ws6b{word-spacing:-1.469333pt;}
.ws2e2{word-spacing:-1.440000pt;}
.ws19d{word-spacing:-1.368000pt;}
.ws23e{word-spacing:-1.360000pt;}
.ws2cd{word-spacing:-1.328000pt;}
.wsca{word-spacing:-1.317333pt;}
.ws2e8{word-spacing:-1.304000pt;}
.wscc{word-spacing:-1.290667pt;}
.wscb{word-spacing:-1.266667pt;}
.ws264{word-spacing:-1.240000pt;}
.wsdc{word-spacing:-1.216000pt;}
.ws2ba{word-spacing:-1.120000pt;}
.ws1a4{word-spacing:-1.064000pt;}
.ws163{word-spacing:-1.013333pt;}
.ws2e0{word-spacing:-1.000000pt;}
.ws162{word-spacing:-0.962667pt;}
.ws2c5{word-spacing:-0.960000pt;}
.ws146{word-spacing:-0.912000pt;}
.ws29d{word-spacing:-0.880000pt;}
.ws133{word-spacing:-0.861333pt;}
.ws1b6{word-spacing:-0.810667pt;}
.wsb6{word-spacing:-0.760000pt;}
.ws25d{word-spacing:-0.720000pt;}
.ws14f{word-spacing:-0.709333pt;}
.ws3c{word-spacing:-0.658667pt;}
.ws2a9{word-spacing:-0.640000pt;}
.wsa4{word-spacing:-0.608000pt;}
.ws167{word-spacing:-0.557333pt;}
.ws2d1{word-spacing:-0.538667pt;}
.ws27f{word-spacing:-0.530667pt;}
.ws1f9{word-spacing:-0.506667pt;}
.ws2bd{word-spacing:-0.485333pt;}
.wsef{word-spacing:-0.456000pt;}
.ws1cc{word-spacing:-0.448000pt;}
.ws27e{word-spacing:-0.442667pt;}
.ws280{word-spacing:-0.440000pt;}
.ws1cd{word-spacing:-0.426667pt;}
.ws1be{word-spacing:-0.405333pt;}
.ws2bc{word-spacing:-0.400000pt;}
.ws21c{word-spacing:-0.394667pt;}
.ws21b{word-spacing:-0.360000pt;}
.ws1b{word-spacing:-0.354667pt;}
.ws120{word-spacing:-0.352000pt;}
.ws121{word-spacing:-0.346667pt;}
.ws11f{word-spacing:-0.341333pt;}
.ws11e{word-spacing:-0.336000pt;}
.ws2b0{word-spacing:-0.320000pt;}
.ws207{word-spacing:-0.304000pt;}
.ws2b8{word-spacing:-0.266667pt;}
.ws20d{word-spacing:-0.261333pt;}
.ws154{word-spacing:-0.253333pt;}
.ws2b7{word-spacing:-0.210667pt;}
.ws2b9{word-spacing:-0.200000pt;}
.ws20e{word-spacing:-0.160000pt;}
.wsfc{word-spacing:-0.152000pt;}
.ws232{word-spacing:-0.120000pt;}
.ws6{word-spacing:-0.112000pt;}
.ws265{word-spacing:-0.085333pt;}
.ws235{word-spacing:-0.082667pt;}
.ws23f{word-spacing:-0.080000pt;}
.ws2b4{word-spacing:-0.077333pt;}
.ws5{word-spacing:-0.028000pt;}
.ws128{word-spacing:-0.005333pt;}
.ws255{word-spacing:-0.002667pt;}
.ws0{word-spacing:0.000000pt;}
.ws2ce{word-spacing:0.040000pt;}
.wsdd{word-spacing:0.050667pt;}
.ws275{word-spacing:0.080000pt;}
.ws206{word-spacing:0.101333pt;}
.wsf2{word-spacing:0.152000pt;}
.ws2db{word-spacing:0.157333pt;}
.ws23d{word-spacing:0.160000pt;}
.ws20f{word-spacing:0.200000pt;}
.ws1c3{word-spacing:0.202667pt;}
.ws262{word-spacing:0.240000pt;}
.wsbb{word-spacing:0.253333pt;}
.ws26f{word-spacing:0.280000pt;}
.wsa7{word-spacing:0.304000pt;}
.ws11{word-spacing:0.320000pt;}
.wsbc{word-spacing:0.354667pt;}
.ws283{word-spacing:0.440000pt;}
.ws164{word-spacing:0.456000pt;}
.ws2e9{word-spacing:0.480000pt;}
.ws7c{word-spacing:0.506667pt;}
.wsdf{word-spacing:0.557333pt;}
.ws2aa{word-spacing:0.600000pt;}
.ws261{word-spacing:0.640000pt;}
.ws1bb{word-spacing:0.658667pt;}
.ws24c{word-spacing:0.680000pt;}
.ws5e{word-spacing:0.709333pt;}
.wsb8{word-spacing:0.760000pt;}
.ws2f3{word-spacing:0.784000pt;}
.ws2a0{word-spacing:0.800000pt;}
.wsac{word-spacing:0.810667pt;}
.wsad{word-spacing:0.861333pt;}
.ws2f2{word-spacing:0.880000pt;}
.ws14d{word-spacing:0.912000pt;}
.ws277{word-spacing:0.920000pt;}
.ws2a3{word-spacing:0.922667pt;}
.ws174{word-spacing:0.962667pt;}
.ws1f8{word-spacing:1.013333pt;}
.ws270{word-spacing:1.080000pt;}
.ws33{word-spacing:1.114667pt;}
.ws233{word-spacing:1.120000pt;}
.ws1f{word-spacing:1.165333pt;}
.ws2c1{word-spacing:1.200000pt;}
.ws1ee{word-spacing:1.216000pt;}
.ws260{word-spacing:1.240000pt;}
.wsc5{word-spacing:1.266667pt;}
.ws15c{word-spacing:1.317333pt;}
.ws2af{word-spacing:1.320000pt;}
.ws2b2{word-spacing:1.400000pt;}
.wse1{word-spacing:1.418667pt;}
.ws2b6{word-spacing:1.440000pt;}
.ws2d9{word-spacing:1.480000pt;}
.ws14a{word-spacing:1.520000pt;}
.ws2b{word-spacing:1.570667pt;}
.ws2a6{word-spacing:1.600000pt;}
.ws149{word-spacing:1.621333pt;}
.ws25b{word-spacing:1.680000pt;}
.ws114{word-spacing:1.722667pt;}
.ws25c{word-spacing:1.760000pt;}
.ws1f3{word-spacing:1.773333pt;}
.ws244{word-spacing:1.800000pt;}
.ws172{word-spacing:1.874667pt;}
.ws27c{word-spacing:1.880000pt;}
.ws15{word-spacing:1.920000pt;}
.ws104{word-spacing:1.925333pt;}
.ws2f6{word-spacing:1.960000pt;}
.ws245{word-spacing:1.965333pt;}
.ws2b3{word-spacing:2.000000pt;}
.ws159{word-spacing:2.026667pt;}
.ws26e{word-spacing:2.040000pt;}
.ws30{word-spacing:2.077333pt;}
.ws14{word-spacing:2.080000pt;}
.ws190{word-spacing:2.090667pt;}
.ws25a{word-spacing:2.160000pt;}
.ws253{word-spacing:2.165333pt;}
.ws105{word-spacing:2.178667pt;}
.ws19c{word-spacing:2.229333pt;}
.ws252{word-spacing:2.240000pt;}
.ws2c0{word-spacing:2.277333pt;}
.ws156{word-spacing:2.280000pt;}
.ws2f5{word-spacing:2.290667pt;}
.ws10{word-spacing:2.293333pt;}
.ws192{word-spacing:2.304000pt;}
.ws191{word-spacing:2.314667pt;}
.ws2ed{word-spacing:2.320000pt;}
.wse9{word-spacing:2.330667pt;}
.ws2bf{word-spacing:2.360000pt;}
.ws46{word-spacing:2.381333pt;}
.wsae{word-spacing:2.432000pt;}
.ws2b1{word-spacing:2.480000pt;}
.ws139{word-spacing:2.482667pt;}
.ws1e1{word-spacing:2.533333pt;}
.ws226{word-spacing:2.541333pt;}
.ws2cc{word-spacing:2.560000pt;}
.ws225{word-spacing:2.600000pt;}
.ws168{word-spacing:2.634667pt;}
.ws7{word-spacing:2.656000pt;}
.ws273{word-spacing:2.680000pt;}
.ws126{word-spacing:2.685333pt;}
.ws274{word-spacing:2.720000pt;}
.wsd8{word-spacing:2.736000pt;}
.ws23c{word-spacing:2.738667pt;}
.ws15d{word-spacing:2.760000pt;}
.ws15e{word-spacing:2.786667pt;}
.ws23b{word-spacing:2.800000pt;}
.wsa{word-spacing:2.826667pt;}
.wsce{word-spacing:2.837333pt;}
.ws210{word-spacing:2.840000pt;}
.ws24f{word-spacing:2.880000pt;}
.ws42{word-spacing:2.888000pt;}
.ws286{word-spacing:2.909333pt;}
.ws2c2{word-spacing:2.920000pt;}
.ws37{word-spacing:2.938667pt;}
.ws285{word-spacing:2.960000pt;}
.ws1f2{word-spacing:2.965333pt;}
.wse6{word-spacing:2.989333pt;}
.ws287{word-spacing:3.000000pt;}
.ws10c{word-spacing:3.040000pt;}
.ws289{word-spacing:3.080000pt;}
.wsa3{word-spacing:3.090667pt;}
.ws28a{word-spacing:3.120000pt;}
.ws61{word-spacing:3.141333pt;}
.ws2be{word-spacing:3.160000pt;}
.ws18e{word-spacing:3.173333pt;}
.ws2ec{word-spacing:3.210667pt;}
.ws254{word-spacing:3.240000pt;}
.ws101{word-spacing:3.242667pt;}
.ws2eb{word-spacing:3.280000pt;}
.ws2f{word-spacing:3.344000pt;}
.ws238{word-spacing:3.360000pt;}
.ws106{word-spacing:3.394667pt;}
.ws2da{word-spacing:3.400000pt;}
.ws2c6{word-spacing:3.440000pt;}
.ws68{word-spacing:3.445333pt;}
.ws263{word-spacing:3.480000pt;}
.ws80{word-spacing:3.496000pt;}
.ws1db{word-spacing:3.546667pt;}
.ws215{word-spacing:3.560000pt;}
.ws13{word-spacing:3.573333pt;}
.ws1c2{word-spacing:3.597333pt;}
.ws2d6{word-spacing:3.600000pt;}
.ws15b{word-spacing:3.637333pt;}
.ws15a{word-spacing:3.648000pt;}
.wsee{word-spacing:3.698667pt;}
.ws23a{word-spacing:3.720000pt;}
.ws150{word-spacing:3.749333pt;}
.ws2c4{word-spacing:3.760000pt;}
.ws16c{word-spacing:3.800000pt;}
.ws166{word-spacing:3.850667pt;}
.ws2d0{word-spacing:3.880000pt;}
.wsc3{word-spacing:3.901333pt;}
.ws250{word-spacing:3.912000pt;}
.ws22a{word-spacing:3.914667pt;}
.ws28e{word-spacing:3.920000pt;}
.ws3d{word-spacing:3.952000pt;}
.ws29c{word-spacing:3.960000pt;}
.ws229{word-spacing:4.000000pt;}
.ws89{word-spacing:4.002667pt;}
.ws165{word-spacing:4.053333pt;}
.ws92{word-spacing:4.104000pt;}
.ws4f{word-spacing:4.154667pt;}
.ws16{word-spacing:4.160000pt;}
.ws69{word-spacing:4.205333pt;}
.ws239{word-spacing:4.240000pt;}
.wsab{word-spacing:4.256000pt;}
.wsd{word-spacing:4.266667pt;}
.ws1d5{word-spacing:4.306667pt;}
.ws24e{word-spacing:4.320000pt;}
.ws198{word-spacing:4.357333pt;}
.ws16e{word-spacing:4.408000pt;}
.ws1e9{word-spacing:4.458667pt;}
.ws2c9{word-spacing:4.480000pt;}
.ws12f{word-spacing:4.509333pt;}
.ws9e{word-spacing:4.560000pt;}
.wsc8{word-spacing:4.562667pt;}
.ws22c{word-spacing:4.600000pt;}
.ws9f{word-spacing:4.610667pt;}
.ws22d{word-spacing:4.640000pt;}
.ws1a5{word-spacing:4.661333pt;}
.ws59{word-spacing:4.712000pt;}
.ws234{word-spacing:4.760000pt;}
.ws4a{word-spacing:4.762667pt;}
.ws236{word-spacing:4.800000pt;}
.ws1b7{word-spacing:4.813333pt;}
.ws18f{word-spacing:4.853333pt;}
.wsdb{word-spacing:4.864000pt;}
.ws100{word-spacing:4.914667pt;}
.ws1cb{word-spacing:4.965333pt;}
.ws242{word-spacing:5.000000pt;}
.ws12{word-spacing:5.013333pt;}
.ws202{word-spacing:5.016000pt;}
.ws24b{word-spacing:5.040000pt;}
.ws1e0{word-spacing:5.066667pt;}
.ws241{word-spacing:5.080000pt;}
.ws2c{word-spacing:5.117333pt;}
.ws290{word-spacing:5.120000pt;}
.ws291{word-spacing:5.160000pt;}
.ws66{word-spacing:5.168000pt;}
.ws224{word-spacing:5.200000pt;}
.ws288{word-spacing:5.240000pt;}
.ws1cf{word-spacing:5.269333pt;}
.ws1a{word-spacing:5.301333pt;}
.ws72{word-spacing:5.320000pt;}
.ws3a{word-spacing:5.370667pt;}
.ws29a{word-spacing:5.400000pt;}
.ws16b{word-spacing:5.421333pt;}
.ws53{word-spacing:5.472000pt;}
.ws284{word-spacing:5.480000pt;}
.ws28{word-spacing:5.522667pt;}
.ws1da{word-spacing:5.573333pt;}
.ws4d{word-spacing:5.624000pt;}
.ws267{word-spacing:5.640000pt;}
.ws175{word-spacing:5.674667pt;}
.ws251{word-spacing:5.680000pt;}
.ws1af{word-spacing:5.725333pt;}
.ws137{word-spacing:5.776000pt;}
.ws1d9{word-spacing:5.826667pt;}
.ws214{word-spacing:5.837333pt;}
.ws257{word-spacing:5.840000pt;}
.ws141{word-spacing:5.877333pt;}
.ws213{word-spacing:5.920000pt;}
.ws193{word-spacing:5.928000pt;}
.ws266{word-spacing:5.960000pt;}
.ws1c{word-spacing:5.978667pt;}
.ws16d{word-spacing:6.029333pt;}
.ws132{word-spacing:6.080000pt;}
.ws160{word-spacing:6.130667pt;}
.ws2a2{word-spacing:6.160000pt;}
.wsaa{word-spacing:6.181333pt;}
.ws247{word-spacing:6.200000pt;}
.ws5f{word-spacing:6.232000pt;}
.ws2ca{word-spacing:6.240000pt;}
.ws60{word-spacing:6.282667pt;}
.ws243{word-spacing:6.360000pt;}
.ws9b{word-spacing:6.434667pt;}
.ws272{word-spacing:6.440000pt;}
.ws34{word-spacing:6.485333pt;}
.ws256{word-spacing:6.520000pt;}
.ws102{word-spacing:6.536000pt;}
.wse7{word-spacing:6.586667pt;}
.ws170{word-spacing:6.637333pt;}
.ws278{word-spacing:6.680000pt;}
.ws19a{word-spacing:6.688000pt;}
.ws2a1{word-spacing:6.720000pt;}
.ws109{word-spacing:6.738667pt;}
.ws28f{word-spacing:6.760000pt;}
.ws1ea{word-spacing:6.840000pt;}
.ws292{word-spacing:6.880000pt;}
.ws299{word-spacing:6.920000pt;}
.ws35{word-spacing:6.941333pt;}
.ws2ac{word-spacing:6.960000pt;}
.ws1c4{word-spacing:6.992000pt;}
.ws2ad{word-spacing:7.000000pt;}
.ws2d7{word-spacing:7.040000pt;}
.ws5d{word-spacing:7.042667pt;}
.ws231{word-spacing:7.080000pt;}
.ws22{word-spacing:7.093333pt;}
.ws25e{word-spacing:7.120000pt;}
.wse0{word-spacing:7.144000pt;}
.wsf{word-spacing:7.146667pt;}
.ws246{word-spacing:7.160000pt;}
.ws23{word-spacing:7.194667pt;}
.ws2ea{word-spacing:7.200000pt;}
.wsc4{word-spacing:7.245333pt;}
.ws39{word-spacing:7.296000pt;}
.ws32{word-spacing:7.346667pt;}
.wsfb{word-spacing:7.397333pt;}
.ws276{word-spacing:7.400000pt;}
.wsfa{word-spacing:7.402667pt;}
.ws21{word-spacing:7.448000pt;}
.ws29f{word-spacing:7.480000pt;}
.ws208{word-spacing:7.549333pt;}
.ws83{word-spacing:7.600000pt;}
.ws85{word-spacing:7.650667pt;}
.ws2d3{word-spacing:7.696000pt;}
.ws84{word-spacing:7.701333pt;}
.ws2d5{word-spacing:7.720000pt;}
.ws16f{word-spacing:7.752000pt;}
.ws2d4{word-spacing:7.760000pt;}
.ws95{word-spacing:7.802667pt;}
.ws268{word-spacing:7.840000pt;}
.wsa2{word-spacing:7.853333pt;}
.ws2e3{word-spacing:7.880000pt;}
.ws19f{word-spacing:7.904000pt;}
.ws269{word-spacing:7.920000pt;}
.wsde{word-spacing:7.954667pt;}
.ws24d{word-spacing:8.000000pt;}
.ws161{word-spacing:8.005333pt;}
.ws240{word-spacing:8.040000pt;}
.wsf9{word-spacing:8.056000pt;}
.ws27a{word-spacing:8.061333pt;}
.ws281{word-spacing:8.080000pt;}
.ws18{word-spacing:8.106667pt;}
.ws2f8{word-spacing:8.120000pt;}
.ws49{word-spacing:8.157333pt;}
.ws279{word-spacing:8.160000pt;}
.ws2a{word-spacing:8.208000pt;}
.ws52{word-spacing:8.258667pt;}
.ws2bb{word-spacing:8.280000pt;}
.ws1ac{word-spacing:8.309333pt;}
.ws2f4{word-spacing:8.320000pt;}
.ws1f6{word-spacing:8.360000pt;}
.wsb5{word-spacing:8.410667pt;}
.ws222{word-spacing:8.440000pt;}
.ws220{word-spacing:8.442667pt;}
.ws64{word-spacing:8.461333pt;}
.ws221{word-spacing:8.480000pt;}
.ws138{word-spacing:8.512000pt;}
.ws27b{word-spacing:8.520000pt;}
.ws111{word-spacing:8.562667pt;}
.ws81{word-spacing:8.613333pt;}
.ws82{word-spacing:8.664000pt;}
.ws13f{word-spacing:8.685333pt;}
.ws140{word-spacing:8.714667pt;}
.ws9{word-spacing:8.746667pt;}
.ws297{word-spacing:8.760000pt;}
.ws112{word-spacing:8.765333pt;}
.ws13b{word-spacing:8.816000pt;}
.ws13a{word-spacing:8.821333pt;}
.ws151{word-spacing:8.866667pt;}
.ws217{word-spacing:8.880000pt;}
.ws1df{word-spacing:8.917333pt;}
.ws25f{word-spacing:8.920000pt;}
.ws218{word-spacing:8.960000pt;}
.ws1a6{word-spacing:8.968000pt;}
.ws21d{word-spacing:9.000000pt;}
.ws1c6{word-spacing:9.018667pt;}
.ws293{word-spacing:9.040000pt;}
.ws1c5{word-spacing:9.069333pt;}
.ws5a{word-spacing:9.120000pt;}
.ws5c{word-spacing:9.170667pt;}
.ws155{word-spacing:9.221333pt;}
.ws1bd{word-spacing:9.272000pt;}
.ws249{word-spacing:9.301333pt;}
.wsa1{word-spacing:9.322667pt;}
.ws24a{word-spacing:9.360000pt;}
.ws176{word-spacing:9.373333pt;}
.ws248{word-spacing:9.376000pt;}
.ws29b{word-spacing:9.440000pt;}
.wsa0{word-spacing:9.474667pt;}
.ws22e{word-spacing:9.480000pt;}
.ws74{word-spacing:9.554667pt;}
.ws73{word-spacing:9.576000pt;}
.ws1ae{word-spacing:9.581333pt;}
.ws47{word-spacing:9.626667pt;}
.wsd6{word-spacing:9.677333pt;}
.ws2c7{word-spacing:9.680000pt;}
.ws153{word-spacing:9.728000pt;}
.ws1aa{word-spacing:9.778667pt;}
.ws19{word-spacing:9.813333pt;}
.ws1ab{word-spacing:9.829333pt;}
.ws2f1{word-spacing:9.840000pt;}
.ws223{word-spacing:9.880000pt;}
.ws1a2{word-spacing:9.930667pt;}
.ws29e{word-spacing:9.960000pt;}
.ws71{word-spacing:9.981333pt;}
.ws1bc{word-spacing:10.032000pt;}
.ws54{word-spacing:10.082667pt;}
.ws75{word-spacing:10.133333pt;}
.ws237{word-spacing:10.160000pt;}
.ws48{word-spacing:10.184000pt;}
.ws216{word-spacing:10.200000pt;}
.ws63{word-spacing:10.234667pt;}
.ws1e2{word-spacing:10.285333pt;}
.ws2b5{word-spacing:10.320000pt;}
.ws1e3{word-spacing:10.336000pt;}
.ws1{word-spacing:10.341333pt;}
.ws2e7{word-spacing:10.360000pt;}
.ws97{word-spacing:10.386667pt;}
.wse3{word-spacing:10.437333pt;}
.ws26{word-spacing:10.488000pt;}
.ws56{word-spacing:10.538667pt;}
.wsc{word-spacing:10.560000pt;}
.ws57{word-spacing:10.589333pt;}
.ws6f{word-spacing:10.640000pt;}
.ws1de{word-spacing:10.690667pt;}
.ws1d0{word-spacing:10.741333pt;}
.ws1c1{word-spacing:10.792000pt;}
.wsf8{word-spacing:10.842667pt;}
.ws96{word-spacing:10.893333pt;}
.ws212{word-spacing:10.920000pt;}
.ws11d{word-spacing:10.944000pt;}
.ws21f{word-spacing:10.960000pt;}
.ws21e{word-spacing:10.962667pt;}
.wsff{word-spacing:10.994667pt;}
.ws1ef{word-spacing:11.045333pt;}
.ws14e{word-spacing:11.096000pt;}
.ws158{word-spacing:11.146667pt;}
.ws157{word-spacing:11.197333pt;}
.ws8d{word-spacing:11.248000pt;}
.ws203{word-spacing:11.298667pt;}
.ws173{word-spacing:11.349333pt;}
.wsd3{word-spacing:11.400000pt;}
.ws65{word-spacing:11.450667pt;}
.ws41{word-spacing:11.552000pt;}
.ws2ab{word-spacing:11.600000pt;}
.ws1a0{word-spacing:11.602667pt;}
.ws29{word-spacing:11.704000pt;}
.ws24{word-spacing:11.754667pt;}
.ws25{word-spacing:11.805333pt;}
.ws88{word-spacing:11.856000pt;}
.ws50{word-spacing:11.906667pt;}
.ws4c{word-spacing:11.957333pt;}
.ws8{word-spacing:12.000000pt;}
.ws10e{word-spacing:12.008000pt;}
.ws2d8{word-spacing:12.040000pt;}
.wsc6{word-spacing:12.109333pt;}
.ws51{word-spacing:12.160000pt;}
.ws12d{word-spacing:12.210667pt;}
.ws1fe{word-spacing:12.261333pt;}
.ws103{word-spacing:12.312000pt;}
.ws13c{word-spacing:12.362667pt;}
.ws5b{word-spacing:12.413333pt;}
.ws58{word-spacing:12.464000pt;}
.ws258{word-spacing:12.480000pt;}
.ws14b{word-spacing:12.514667pt;}
.ws19b{word-spacing:12.565333pt;}
.wsf1{word-spacing:12.616000pt;}
.ws2a4{word-spacing:12.640000pt;}
.ws1ce{word-spacing:12.666667pt;}
.ws296{word-spacing:12.680000pt;}
.ws148{word-spacing:12.717333pt;}
.ws219{word-spacing:12.720000pt;}
.ws21a{word-spacing:12.760000pt;}
.ws4e{word-spacing:12.818667pt;}
.ws2c3{word-spacing:12.840000pt;}
.ws1f1{word-spacing:12.869333pt;}
.ws1fc{word-spacing:12.920000pt;}
.ws2e4{word-spacing:12.944000pt;}
.ws2e6{word-spacing:12.960000pt;}
.ws14c{word-spacing:12.970667pt;}
.ws2e5{word-spacing:13.040000pt;}
.ws62{word-spacing:13.072000pt;}
.ws2f0{word-spacing:13.080000pt;}
.wsd9{word-spacing:13.122667pt;}
.ws10d{word-spacing:13.173333pt;}
.ws90{word-spacing:13.224000pt;}
.ws4{word-spacing:13.296000pt;}
.ws28d{word-spacing:13.320000pt;}
.ws8c{word-spacing:13.325333pt;}
.ws26b{word-spacing:13.360000pt;}
.ws1fb{word-spacing:13.376000pt;}
.ws22f{word-spacing:13.400000pt;}
.ws115{word-spacing:13.426667pt;}
.ws3e{word-spacing:13.477333pt;}
.ws2e{word-spacing:13.528000pt;}
.ws2c8{word-spacing:13.560000pt;}
.ws131{word-spacing:13.578667pt;}
.ws259{word-spacing:13.648000pt;}
.wsa5{word-spacing:13.680000pt;}
.ws8e{word-spacing:13.730667pt;}
.ws8a{word-spacing:13.781333pt;}
.ws6a{word-spacing:13.832000pt;}
.ws2dc{word-spacing:13.880000pt;}
.ws130{word-spacing:13.882667pt;}
.ws2de{word-spacing:13.920000pt;}
.ws1d{word-spacing:13.933333pt;}
.wsf3{word-spacing:13.984000pt;}
.ws2dd{word-spacing:14.000000pt;}
.ws6c{word-spacing:14.034667pt;}
.ws77{word-spacing:14.085333pt;}
.ws7b{word-spacing:14.136000pt;}
.ws227{word-spacing:14.160000pt;}
.ws125{word-spacing:14.186667pt;}
.ws1e4{word-spacing:14.288000pt;}
.ws1ec{word-spacing:14.338667pt;}
.ws171{word-spacing:14.389333pt;}
.ws28b{word-spacing:14.400000pt;}
.ws197{word-spacing:14.440000pt;}
.ws26a{word-spacing:14.480000pt;}
.ws1a1{word-spacing:14.490667pt;}
.ws10b{word-spacing:14.541333pt;}
.ws11b{word-spacing:14.592000pt;}
.ws55{word-spacing:14.642667pt;}
.wsd5{word-spacing:14.693333pt;}
.ws1d1{word-spacing:14.744000pt;}
.wsc1{word-spacing:14.845333pt;}
.ws70{word-spacing:14.896000pt;}
.wsfd{word-spacing:14.946667pt;}
.ws26d{word-spacing:14.989333pt;}
.ws13e{word-spacing:14.997333pt;}
.ws107{word-spacing:15.048000pt;}
.ws26c{word-spacing:15.080000pt;}
.ws116{word-spacing:15.098667pt;}
.ws1b4{word-spacing:15.101333pt;}
.ws40{word-spacing:15.149333pt;}
.ws199{word-spacing:15.200000pt;}
.ws17{word-spacing:15.253333pt;}
.ws282{word-spacing:15.280000pt;}
.ws201{word-spacing:15.301333pt;}
.ws1e{word-spacing:15.352000pt;}
.ws135{word-spacing:15.402667pt;}
.wsf4{word-spacing:15.453333pt;}
.ws78{word-spacing:15.504000pt;}
.ws79{word-spacing:15.554667pt;}
.ws1ca{word-spacing:15.605333pt;}
.wsb1{word-spacing:15.656000pt;}
.ws2df{word-spacing:15.680000pt;}
.ws1d3{word-spacing:15.706667pt;}
.ws143{word-spacing:15.757333pt;}
.ws230{word-spacing:15.760000pt;}
.ws99{word-spacing:15.808000pt;}
.ws228{word-spacing:15.840000pt;}
.wsc2{word-spacing:15.858667pt;}
.ws67{word-spacing:15.909333pt;}
.ws110{word-spacing:16.010667pt;}
.wsec{word-spacing:16.061333pt;}
.ws6e{word-spacing:16.112000pt;}
.ws27d{word-spacing:16.160000pt;}
.wsd0{word-spacing:16.162667pt;}
.ws7f{word-spacing:16.314667pt;}
.wsb9{word-spacing:16.517333pt;}
.wsba{word-spacing:16.568000pt;}
.ws195{word-spacing:16.618667pt;}
.ws2cf{word-spacing:16.640000pt;}
.ws196{word-spacing:16.720000pt;}
.ws12c{word-spacing:16.973333pt;}
.ws4b{word-spacing:17.074667pt;}
.ws3f{word-spacing:17.277333pt;}
.ws8f{word-spacing:17.328000pt;}
.wsa9{word-spacing:17.530667pt;}
.ws1a3{word-spacing:17.581333pt;}
.wse5{word-spacing:17.632000pt;}
.wsea{word-spacing:17.784000pt;}
.ws2cb{word-spacing:17.880000pt;}
.ws1fd{word-spacing:17.885333pt;}
.wsbf{word-spacing:18.088000pt;}
.ws20{word-spacing:18.138667pt;}
.ws1dd{word-spacing:18.189333pt;}
.ws200{word-spacing:18.392000pt;}
.ws124{word-spacing:18.442667pt;}
.ws10f{word-spacing:18.594667pt;}
.ws1b2{word-spacing:18.645333pt;}
.wsd1{word-spacing:18.696000pt;}
.ws1c7{word-spacing:18.746667pt;}
.ws6d{word-spacing:18.797333pt;}
.ws15f{word-spacing:18.898667pt;}
.wsb{word-spacing:18.933333pt;}
.wsc0{word-spacing:18.949333pt;}
.ws1d4{word-spacing:19.000000pt;}
.wsbe{word-spacing:19.064000pt;}
.ws1c8{word-spacing:19.152000pt;}
.ws31{word-spacing:19.253333pt;}
.ws134{word-spacing:19.354667pt;}
.ws117{word-spacing:19.405333pt;}
.wscd{word-spacing:19.456000pt;}
.ws2d2{word-spacing:19.480000pt;}
.ws1b8{word-spacing:19.506667pt;}
.ws211{word-spacing:19.520000pt;}
.ws7a{word-spacing:19.658667pt;}
.ws87{word-spacing:19.810667pt;}
.wsa8{word-spacing:19.861333pt;}
.wsfe{word-spacing:19.912000pt;}
.ws2ae{word-spacing:19.960000pt;}
.ws12a{word-spacing:19.962667pt;}
.ws136{word-spacing:20.064000pt;}
.wsa6{word-spacing:20.216000pt;}
.ws9d{word-spacing:20.266667pt;}
.ws1ed{word-spacing:20.317333pt;}
.ws13d{word-spacing:20.368000pt;}
.ws113{word-spacing:20.520000pt;}
.ws9a{word-spacing:20.570667pt;}
.ws127{word-spacing:20.621333pt;}
.ws1ad{word-spacing:20.672000pt;}
.ws1a9{word-spacing:20.722667pt;}
.ws1eb{word-spacing:20.773333pt;}
.ws93{word-spacing:20.824000pt;}
.ws22b{word-spacing:21.000000pt;}
.ws1fa{word-spacing:21.026667pt;}
.ws1e6{word-spacing:21.077333pt;}
.ws9c{word-spacing:21.178667pt;}
.ws1c9{word-spacing:21.229333pt;}
.ws205{word-spacing:21.330667pt;}
.ws27{word-spacing:21.381333pt;}
.ws1f0{word-spacing:21.432000pt;}
.ws98{word-spacing:21.533333pt;}
.ws1a8{word-spacing:21.685333pt;}
.ws1b1{word-spacing:21.736000pt;}
.ws119{word-spacing:21.786667pt;}
.ws144{word-spacing:21.837333pt;}
.ws8b{word-spacing:22.040000pt;}
.ws1e7{word-spacing:22.090667pt;}
.ws152{word-spacing:22.141333pt;}
.wseb{word-spacing:22.293333pt;}
.ws194{word-spacing:22.496000pt;}
.wsc7{word-spacing:22.749333pt;}
.wsf7{word-spacing:22.800000pt;}
.ws86{word-spacing:22.850667pt;}
.ws209{word-spacing:22.901333pt;}
.ws36{word-spacing:22.952000pt;}
.ws12b{word-spacing:23.053333pt;}
.ws11c{word-spacing:23.104000pt;}
.ws20a{word-spacing:23.256000pt;}
.ws1ff{word-spacing:23.306667pt;}
.ws204{word-spacing:23.458667pt;}
.ws2e1{word-spacing:23.480000pt;}
.ws7d{word-spacing:23.813333pt;}
.wse8{word-spacing:23.837333pt;}
.ws1b5{word-spacing:23.914667pt;}
.ws1c0{word-spacing:24.370667pt;}
.ws1d8{word-spacing:24.522667pt;}
.wscf{word-spacing:24.725333pt;}
.wsd4{word-spacing:25.130667pt;}
.ws10a{word-spacing:25.181333pt;}
.ws20c{word-spacing:25.333333pt;}
.ws94{word-spacing:25.384000pt;}
.ws38{word-spacing:25.637333pt;}
.ws169{word-spacing:26.042667pt;}
.ws11a{word-spacing:26.144000pt;}
.wse4{word-spacing:26.245333pt;}
.ws1a7{word-spacing:26.296000pt;}
.wsf0{word-spacing:27.157333pt;}
.ws1e5{word-spacing:27.360000pt;}
.wsb3{word-spacing:27.410667pt;}
.wsd2{word-spacing:27.461333pt;}
.ws1bf{word-spacing:27.613333pt;}
.ws3b{word-spacing:27.968000pt;}
.wsbd{word-spacing:28.424000pt;}
.wsb0{word-spacing:29.032000pt;}
.ws142{word-spacing:29.133333pt;}
.wsf6{word-spacing:29.234667pt;}
.ws1b3{word-spacing:29.589333pt;}
.ws145{word-spacing:29.690667pt;}
.ws20b{word-spacing:29.893333pt;}
.ws76{word-spacing:30.146667pt;}
.wsb2{word-spacing:30.349333pt;}
.wsb4{word-spacing:30.450667pt;}
.ws19e{word-spacing:30.501333pt;}
.ws7e{word-spacing:30.906667pt;}
.ws1d6{word-spacing:31.109333pt;}
.ws1b9{word-spacing:31.717333pt;}
.ws1ba{word-spacing:34.656000pt;}
.ws183{word-spacing:109.013333pt;}
.ws184{word-spacing:114.762667pt;}
.ws180{word-spacing:114.800000pt;}
.ws17e{word-spacing:120.997333pt;}
.ws186{word-spacing:123.424000pt;}
.ws179{word-spacing:125.178667pt;}
.ws182{word-spacing:127.904000pt;}
.ws18c{word-spacing:129.210667pt;}
.ws189{word-spacing:135.408000pt;}
.ws17b{word-spacing:135.557333pt;}
.ws178{word-spacing:137.349333pt;}
.ws18b{word-spacing:139.589333pt;}
.ws17a{word-spacing:145.936000pt;}
.ws18d{word-spacing:149.968000pt;}
.ws17d{word-spacing:155.088000pt;}
.ws17f{word-spacing:155.093333pt;}
.ws18a{word-spacing:160.346667pt;}
.ws188{word-spacing:169.498667pt;}
.ws181{word-spacing:193.312000pt;}
.ws187{word-spacing:355.493333pt;}
.ws17c{word-spacing:405.920000pt;}
.ws1b0{word-spacing:703.781333pt;}
.ws185{word-spacing:1514.560000pt;}
.ws177{word-spacing:1539.770667pt;}
._4{margin-left:-10.304000pt;}
._12{margin-left:-7.104000pt;}
._e{margin-left:-5.888000pt;}
._3{margin-left:-4.816000pt;}
._2{margin-left:-3.434667pt;}
._5{margin-left:-2.016000pt;}
._8{margin-left:-1.013333pt;}
._6{width:1.589333pt;}
._7{width:2.658667pt;}
._f{width:6.290667pt;}
._79{width:8.237333pt;}
._10{width:9.482667pt;}
._78{width:10.528000pt;}
._1{width:11.690667pt;}
._13{width:13.274667pt;}
._c{width:15.341333pt;}
._77{width:17.400000pt;}
._76{width:19.152000pt;}
._b{width:20.610667pt;}
._75{width:22.112000pt;}
._d{width:28.778667pt;}
._11{width:34.250667pt;}
._0{width:84.992000pt;}
._50{width:107.893333pt;}
._60{width:109.088000pt;}
._5b{width:124.320000pt;}
._44{width:125.514667pt;}
._74{width:129.434667pt;}
._41{width:131.712000pt;}
._5e{width:135.930667pt;}
._1e{width:138.320000pt;}
._71{width:139.701333pt;}
._5c{width:140.672000pt;}
._4e{width:145.936000pt;}
._40{width:153.066667pt;}
._1d{width:156.314667pt;}
._6b{width:159.637333pt;}
._1f{width:163.520000pt;}
._56{width:166.693333pt;}
._6a{width:170.725333pt;}
._18{width:173.824000pt;}
._24{width:183.525333pt;}
._2d{width:194.581333pt;}
._6e{width:198.613333pt;}
._72{width:201.114667pt;}
._34{width:203.914667pt;}
._5a{width:205.072000pt;}
._70{width:209.552000pt;}
._42{width:211.904000pt;}
._1c{width:215.338667pt;}
._48{width:216.645333pt;}
._3d{width:218.064000pt;}
._6c{width:222.768000pt;}
._5f{width:223.669333pt;}
._55{width:225.717333pt;}
._20{width:227.034667pt;}
._65{width:229.749333pt;}
._46{width:232.250667pt;}
._4b{width:233.637333pt;}
._52{width:234.602667pt;}
._4f{width:236.096000pt;}
._57{width:238.858667pt;}
._3b{width:240.800000pt;}
._30{width:242.965333pt;}
._69{width:246.960000pt;}
._2e{width:248.080000pt;}
._27{width:249.872000pt;}
._61{width:251.962667pt;}
._2a{width:258.496000pt;}
._35{width:266.784000pt;}
._1b{width:269.173333pt;}
._3e{width:270.554667pt;}
._25{width:272.832000pt;}
._73{width:277.013333pt;}
._23{width:278.170667pt;}
._68{width:282.800000pt;}
._1a{width:288.549333pt;}
._15{width:292.693333pt;}
._31{width:295.456000pt;}
._39{width:297.397333pt;}
._64{width:298.890667pt;}
._2b{width:299.936000pt;}
._38{width:301.690667pt;}
._9{width:302.853333pt;}
._47{width:304.416000pt;}
._28{width:312.741333pt;}
._4c{width:314.981333pt;}
._6d{width:316.810667pt;}
._3a{width:329.429333pt;}
._3f{width:347.237333pt;}
._33{width:349.328000pt;}
._66{width:351.792000pt;}
._54{width:355.376000pt;}
._58{width:356.869333pt;}
._6f{width:365.941333pt;}
._3c{width:367.248000pt;}
._67{width:368.704000pt;}
._59{width:370.202667pt;}
._22{width:387.557333pt;}
._37{width:390.282667pt;}
._21{width:392.896000pt;}
._53{width:394.426667pt;}
._43{width:395.434667pt;}
._19{width:397.898667pt;}
._32{width:401.333333pt;}
._4d{width:403.274667pt;}
._45{width:405.925333pt;}
._51{width:409.957333pt;}
._17{width:413.616000pt;}
._2f{width:417.050667pt;}
._36{width:419.141333pt;}
._4a{width:423.994667pt;}
._2c{width:426.586667pt;}
._29{width:437.061333pt;}
._26{width:441.242667pt;}
._63{width:881.178667pt;}
._16{width:896.261333pt;}
._62{width:951.216000pt;}
._5d{width:958.421333pt;}
._14{width:986.794667pt;}
._49{width:1042.720000pt;}
._a{width:1909.920000pt;}
.fsc{font-size:18.309333pt;}
.fs7{font-size:21.333333pt;}
.fsd{font-size:24.000000pt;}
.fs2{font-size:27.786667pt;}
.fs5{font-size:28.000000pt;}
.fs11{font-size:28.373333pt;}
.fse{font-size:29.333333pt;}
.fs1{font-size:37.333333pt;}
.fsb{font-size:38.506667pt;}
.fsf{font-size:40.000000pt;}
.fs10{font-size:41.813150pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:47.818667pt;}
.fs4{font-size:48.000000pt;}
.fsa{font-size:50.666667pt;}
.fs8{font-size:53.333333pt;}
.fs9{font-size:64.000000pt;}
.fs3{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.y58{bottom:42.604000pt;}
.y112{bottom:74.949333pt;}
.y174{bottom:75.709333pt;}
.y152{bottom:78.446667pt;}
.y166{bottom:78.821333pt;}
.y1b5{bottom:88.770667pt;}
.y111{bottom:90.225333pt;}
.y135{bottom:90.777333pt;}
.yca{bottom:90.890667pt;}
.y91{bottom:90.924000pt;}
.y173{bottom:90.985333pt;}
.y2c{bottom:91.156000pt;}
.y57{bottom:91.421333pt;}
.y21c{bottom:92.565333pt;}
.y23d{bottom:92.570667pt;}
.y151{bottom:93.722667pt;}
.y141{bottom:96.320000pt;}
.y2ca{bottom:97.698667pt;}
.y2b6{bottom:97.732000pt;}
.y25b{bottom:98.484000pt;}
.y306{bottom:100.853333pt;}
.y56{bottom:103.377333pt;}
.y165{bottom:103.669333pt;}
.y2b{bottom:104.438667pt;}
.y110{bottom:105.501333pt;}
.y181{bottom:105.502667pt;}
.yc9{bottom:106.166667pt;}
.y90{bottom:106.200000pt;}
.y172{bottom:106.261333pt;}
.y21b{bottom:107.841333pt;}
.y23c{bottom:107.846667pt;}
.y1b4{bottom:108.953333pt;}
.y150{bottom:108.998667pt;}
.y2c9{bottom:110.317333pt;}
.y2b5{bottom:110.350667pt;}
.y140{bottom:111.596000pt;}
.y305{bottom:113.472000pt;}
.y25a{bottom:113.760000pt;}
.y2a{bottom:117.722667pt;}
.y134{bottom:118.381333pt;}
.y164{bottom:118.945333pt;}
.y10f{bottom:120.777333pt;}
.y17f{bottom:120.778667pt;}
.yc8{bottom:121.442667pt;}
.y8f{bottom:121.476000pt;}
.y171{bottom:121.537333pt;}
.y1e6{bottom:122.106667pt;}
.y2c8{bottom:122.937333pt;}
.y2b4{bottom:122.970667pt;}
.y21a{bottom:123.117333pt;}
.y23b{bottom:123.122667pt;}
.y1b3{bottom:124.097333pt;}
.y304{bottom:126.092000pt;}
.y142{bottom:126.872000pt;}
.y13f{bottom:126.873333pt;}
.y55{bottom:127.952000pt;}
.y259{bottom:129.036000pt;}
.y29{bottom:131.006667pt;}
.y133{bottom:133.657333pt;}
.y163{bottom:134.221333pt;}
.y2c7{bottom:135.556000pt;}
.y2b3{bottom:135.589333pt;}
.y10e{bottom:136.054667pt;}
.yc7{bottom:136.718667pt;}
.y8e{bottom:136.752000pt;}
.y170{bottom:136.813333pt;}
.y219{bottom:138.393333pt;}
.y21d{bottom:138.394667pt;}
.y23a{bottom:138.398667pt;}
.y303{bottom:138.710667pt;}
.y1b2{bottom:139.106667pt;}
.y1e5{bottom:140.704000pt;}
.y28{bottom:144.289333pt;}
.y258{bottom:144.313333pt;}
.y54{bottom:146.548000pt;}
.y2c6{bottom:148.176000pt;}
.y2b2{bottom:148.209333pt;}
.y132{bottom:148.934667pt;}
.y162{bottom:149.498667pt;}
.y10d{bottom:151.330667pt;}
.yc6{bottom:151.994667pt;}
.y8d{bottom:152.028000pt;}
.y16f{bottom:152.089333pt;}
.y14f{bottom:152.998667pt;}
.y218{bottom:153.670667pt;}
.y239{bottom:153.674667pt;}
.y1b1{bottom:154.117333pt;}
.y27{bottom:157.573333pt;}
.y1e4{bottom:159.300000pt;}
.y257{bottom:159.589333pt;}
.y2c5{bottom:160.794667pt;}
.y2b1{bottom:160.828000pt;}
.y302{bottom:163.949333pt;}
.y131{bottom:164.210667pt;}
.y161{bottom:164.774667pt;}
.y53{bottom:165.145333pt;}
.y14e{bottom:165.618667pt;}
.y10c{bottom:166.606667pt;}
.yc5{bottom:167.270667pt;}
.y8c{bottom:167.304000pt;}
.y16e{bottom:167.365333pt;}
.y217{bottom:168.946667pt;}
.y238{bottom:168.950667pt;}
.y1b0{bottom:169.128000pt;}
.y26{bottom:170.857333pt;}
.y13e{bottom:171.008000pt;}
.y2c4{bottom:173.414667pt;}
.y2b0{bottom:173.448000pt;}
.y256{bottom:174.865333pt;}
.y301{bottom:176.569333pt;}
.y14d{bottom:178.237333pt;}
.y130{bottom:179.486667pt;}
.y160{bottom:180.050667pt;}
.y10b{bottom:181.882667pt;}
.yc4{bottom:182.546667pt;}
.y8b{bottom:182.580000pt;}
.y16d{bottom:182.641333pt;}
.y13d{bottom:183.626667pt;}
.y52{bottom:183.742667pt;}
.y1af{bottom:184.137333pt;}
.y25{bottom:184.140000pt;}
.y216{bottom:184.222667pt;}
.y237{bottom:184.226667pt;}
.y2c3{bottom:186.033333pt;}
.y2af{bottom:186.066667pt;}
.y300{bottom:189.188000pt;}
.y255{bottom:190.141333pt;}
.y14c{bottom:190.857333pt;}
.y12f{bottom:194.762667pt;}
.y15f{bottom:195.326667pt;}
.y274{bottom:195.432000pt;}
.y13c{bottom:196.246667pt;}
.y10a{bottom:197.158667pt;}
.y24{bottom:197.424000pt;}
.yc3{bottom:197.822667pt;}
.y8a{bottom:197.856000pt;}
.y16c{bottom:197.917333pt;}
.y2c2{bottom:198.653333pt;}
.y2ae{bottom:198.686667pt;}
.y1ae{bottom:199.148000pt;}
.y215{bottom:199.498667pt;}
.y236{bottom:199.502667pt;}
.y1e3{bottom:200.198667pt;}
.y2ff{bottom:201.808000pt;}
.y51{bottom:202.338667pt;}
.y14b{bottom:203.476000pt;}
.y254{bottom:205.417333pt;}
.y13b{bottom:208.865333pt;}
.y12e{bottom:210.038667pt;}
.y15e{bottom:210.602667pt;}
.y23{bottom:210.706667pt;}
.y2c1{bottom:211.272000pt;}
.y2ad{bottom:211.305333pt;}
.y109{bottom:212.434667pt;}
.yc2{bottom:213.098667pt;}
.y89{bottom:213.132000pt;}
.y16b{bottom:213.193333pt;}
.y1ad{bottom:214.290667pt;}
.y2fe{bottom:214.426667pt;}
.y214{bottom:214.774667pt;}
.y235{bottom:214.778667pt;}
.y1e2{bottom:215.474667pt;}
.y14a{bottom:216.096000pt;}
.y253{bottom:220.693333pt;}
.y50{bottom:220.936000pt;}
.y13a{bottom:221.485333pt;}
.y2c0{bottom:223.892000pt;}
.y2ac{bottom:223.925333pt;}
.y22{bottom:223.990667pt;}
.y12d{bottom:225.314667pt;}
.y15d{bottom:225.878667pt;}
.y271{bottom:225.984000pt;}
.y2fd{bottom:227.046667pt;}
.y108{bottom:227.710667pt;}
.yc1{bottom:228.374667pt;}
.y88{bottom:228.408000pt;}
.y16a{bottom:228.469333pt;}
.y213{bottom:230.050667pt;}
.y234{bottom:230.054667pt;}
.y1e1{bottom:230.750667pt;}
.y139{bottom:234.104000pt;}
.y252{bottom:235.969333pt;}
.y2bf{bottom:236.510667pt;}
.y2ab{bottom:236.544000pt;}
.y1ac{bottom:236.940000pt;}
.y21{bottom:237.274667pt;}
.y4f{bottom:239.533333pt;}
.y2fc{bottom:239.665333pt;}
.y12c{bottom:240.590667pt;}
.y15c{bottom:241.154667pt;}
.y107{bottom:242.986667pt;}
.yc0{bottom:243.650667pt;}
.y87{bottom:243.684000pt;}
.y169{bottom:243.745333pt;}
.y212{bottom:245.326667pt;}
.y233{bottom:245.330667pt;}
.y1e0{bottom:246.026667pt;}
.y2be{bottom:249.130667pt;}
.y2aa{bottom:249.164000pt;}
.y20{bottom:250.557333pt;}
.y251{bottom:251.245333pt;}
.y2fb{bottom:252.285333pt;}
.y12b{bottom:255.866667pt;}
.y15b{bottom:257.094667pt;}
.y4e{bottom:258.130667pt;}
.y106{bottom:258.262667pt;}
.ybf{bottom:258.926667pt;}
.y86{bottom:258.960000pt;}
.y273{bottom:259.008000pt;}
.y168{bottom:259.021333pt;}
.y1ea{bottom:259.590667pt;}
.y211{bottom:260.602667pt;}
.y232{bottom:260.606667pt;}
.y136{bottom:260.671997pt;}
.y1df{bottom:261.302667pt;}
.y2bd{bottom:261.749333pt;}
.y2a9{bottom:261.782667pt;}
.y1ab{bottom:263.041333pt;}
.y1f{bottom:263.841333pt;}
.y2fa{bottom:264.904000pt;}
.y250{bottom:266.521333pt;}
.y12a{bottom:271.142667pt;}
.y138{bottom:271.568699pt;}
.y105{bottom:273.538667pt;}
.ybe{bottom:274.202667pt;}
.y85{bottom:274.236000pt;}
.y270{bottom:274.284000pt;}
.y167{bottom:274.297333pt;}
.y2bc{bottom:274.369333pt;}
.y2a8{bottom:274.402667pt;}
.y210{bottom:275.878667pt;}
.y231{bottom:275.882667pt;}
.y1de{bottom:276.578667pt;}
.y4d{bottom:276.726667pt;}
.y2f9{bottom:277.524000pt;}
.y1e9{bottom:278.188000pt;}
.y24f{bottom:281.797333pt;}
.y1e{bottom:282.438667pt;}
.y1aa{bottom:285.822667pt;}
.y129{bottom:286.418667pt;}
.y2bb{bottom:286.988000pt;}
.y2a7{bottom:287.021333pt;}
.y104{bottom:288.814667pt;}
.ybd{bottom:289.478667pt;}
.y84{bottom:289.512000pt;}
.y26f{bottom:289.560000pt;}
.y15a{bottom:289.573333pt;}
.y2f8{bottom:290.142667pt;}
.y20f{bottom:291.154667pt;}
.y230{bottom:291.158667pt;}
.y1dd{bottom:291.856000pt;}
.y4c{bottom:295.324000pt;}
.y1d{bottom:295.721333pt;}
.y1e8{bottom:296.785333pt;}
.y24e{bottom:297.073333pt;}
.y2ba{bottom:299.608000pt;}
.y2a6{bottom:299.641333pt;}
.y1a9{bottom:300.832000pt;}
.y128{bottom:301.694667pt;}
.y2f7{bottom:302.762667pt;}
.y103{bottom:304.090667pt;}
.ybc{bottom:304.754667pt;}
.y83{bottom:304.788000pt;}
.y26e{bottom:304.836000pt;}
.y159{bottom:304.849333pt;}
.y20e{bottom:306.430667pt;}
.y22f{bottom:306.434667pt;}
.y1dc{bottom:307.132000pt;}
.y1c{bottom:309.005333pt;}
.y2b9{bottom:312.226667pt;}
.y2a5{bottom:312.260000pt;}
.y24d{bottom:312.349333pt;}
.y4b{bottom:313.921333pt;}
.y1e7{bottom:315.381333pt;}
.y1a8{bottom:315.842667pt;}
.y127{bottom:316.970667pt;}
.y102{bottom:319.366667pt;}
.ybb{bottom:320.030667pt;}
.y82{bottom:320.064000pt;}
.y26d{bottom:320.112000pt;}
.y20d{bottom:321.706667pt;}
.y22e{bottom:321.710667pt;}
.y1db{bottom:322.408000pt;}
.y2b8{bottom:324.846667pt;}
.y1b{bottom:327.602667pt;}
.y24c{bottom:327.625333pt;}
.y2f6{bottom:328.001333pt;}
.y1a7{bottom:330.986667pt;}
.y126{bottom:332.246667pt;}
.y4a{bottom:332.517333pt;}
.y101{bottom:334.642667pt;}
.y2a4{bottom:335.108000pt;}
.yba{bottom:335.306667pt;}
.y81{bottom:335.340000pt;}
.y26c{bottom:335.388000pt;}
.y20c{bottom:336.982667pt;}
.y22d{bottom:336.986667pt;}
.y2b7{bottom:337.465333pt;}
.y1da{bottom:337.684000pt;}
.y2f5{bottom:340.620000pt;}
.y1a{bottom:340.885333pt;}
.y24b{bottom:342.901333pt;}
.y1a6{bottom:346.129333pt;}
.y125{bottom:347.522667pt;}
.y158{bottom:348.849333pt;}
.y100{bottom:349.918667pt;}
.yb9{bottom:350.582667pt;}
.y80{bottom:350.616000pt;}
.y26b{bottom:350.664000pt;}
.y49{bottom:351.114667pt;}
.yf0{bottom:351.246667pt;}
.y20b{bottom:352.258667pt;}
.y22c{bottom:352.262667pt;}
.y1d9{bottom:352.960000pt;}
.y2f4{bottom:353.240000pt;}
.y19{bottom:354.169333pt;}
.y24a{bottom:358.177333pt;}
.y1a5{bottom:361.272000pt;}
.y157{bottom:361.469333pt;}
.y124{bottom:362.798667pt;}
.yff{bottom:365.194667pt;}
.yb8{bottom:365.858667pt;}
.y7f{bottom:365.892000pt;}
.y26a{bottom:365.940000pt;}
.y18{bottom:367.453333pt;}
.y20a{bottom:367.534667pt;}
.y22b{bottom:367.538667pt;}
.y1d8{bottom:368.236000pt;}
.y48{bottom:369.712000pt;}
.yef{bottom:369.844000pt;}
.y249{bottom:373.453333pt;}
.y156{bottom:374.088000pt;}
.y1a4{bottom:376.416000pt;}
.y123{bottom:378.074667pt;}
.y2f3{bottom:378.478667pt;}
.yfe{bottom:380.470667pt;}
.y17{bottom:380.736000pt;}
.yb7{bottom:381.134667pt;}
.y7e{bottom:381.168000pt;}
.y269{bottom:381.216000pt;}
.y272{bottom:381.217333pt;}
.y289{bottom:381.965333pt;}
.y209{bottom:382.810667pt;}
.y22a{bottom:382.816000pt;}
.y1d7{bottom:383.512000pt;}
.y155{bottom:386.708000pt;}
.y47{bottom:388.308000pt;}
.y248{bottom:388.729333pt;}
.y2f2{bottom:391.097333pt;}
.y1a3{bottom:391.425333pt;}
.y122{bottom:393.350667pt;}
.y16{bottom:394.020000pt;}
.y2a3{bottom:394.585333pt;}
.yfd{bottom:395.746667pt;}
.yb6{bottom:396.410667pt;}
.y7d{bottom:396.444000pt;}
.y268{bottom:396.493333pt;}
.y288{bottom:397.241333pt;}
.y208{bottom:398.086667pt;}
.y229{bottom:398.092000pt;}
.y1d6{bottom:398.788000pt;}
.y154{bottom:399.326667pt;}
.y2f1{bottom:403.717333pt;}
.y247{bottom:404.005333pt;}
.yee{bottom:405.709333pt;}
.y1a2{bottom:406.569333pt;}
.y46{bottom:406.905333pt;}
.y2a2{bottom:407.204000pt;}
.y121{bottom:408.626667pt;}
.yfc{bottom:411.022667pt;}
.yb5{bottom:411.686667pt;}
.y7c{bottom:411.721333pt;}
.y267{bottom:411.769333pt;}
.y153{bottom:411.946667pt;}
.y287{bottom:412.517333pt;}
.y207{bottom:413.362667pt;}
.y228{bottom:413.368000pt;}
.y1d5{bottom:414.064000pt;}
.y2f0{bottom:416.336000pt;}
.y246{bottom:419.281333pt;}
.yed{bottom:420.985333pt;}
.y1a1{bottom:421.712000pt;}
.y15{bottom:422.580000pt;}
.y120{bottom:423.902667pt;}
.y45{bottom:425.502667pt;}
.yfb{bottom:426.298667pt;}
.yb4{bottom:426.962667pt;}
.y7b{bottom:426.997333pt;}
.y266{bottom:427.045333pt;}
.y286{bottom:427.793333pt;}
.y227{bottom:428.644000pt;}
.y2ef{bottom:428.956000pt;}
.y1d4{bottom:429.340000pt;}
.y2a1{bottom:430.052000pt;}
.y245{bottom:434.557333pt;}
.yec{bottom:436.261333pt;}
.y1a0{bottom:436.854667pt;}
.y11f{bottom:439.178667pt;}
.y14{bottom:439.250667pt;}
.yfa{bottom:441.574667pt;}
.yb3{bottom:442.238667pt;}
.y7a{bottom:442.273333pt;}
.y265{bottom:442.321333pt;}
.y2a0{bottom:442.670667pt;}
.y285{bottom:443.069333pt;}
.y226{bottom:443.920000pt;}
.y44{bottom:444.100000pt;}
.y1d3{bottom:444.616000pt;}
.y180{bottom:445.560000pt;}
.y244{bottom:449.833333pt;}
.yeb{bottom:451.537333pt;}
.y19f{bottom:451.865333pt;}
.y13{bottom:453.796000pt;}
.y2ee{bottom:454.194667pt;}
.y11e{bottom:454.454667pt;}
.y1fe{bottom:455.124000pt;}
.y29f{bottom:455.290667pt;}
.yf9{bottom:456.850667pt;}
.y206{bottom:457.362667pt;}
.yb2{bottom:457.514667pt;}
.y79{bottom:457.549333pt;}
.y264{bottom:457.597333pt;}
.y284{bottom:458.345333pt;}
.y225{bottom:459.196000pt;}
.y1d2{bottom:459.892000pt;}
.y43{bottom:462.696000pt;}
.y243{bottom:465.109333pt;}
.yea{bottom:466.813333pt;}
.y19e{bottom:467.008000pt;}
.y12{bottom:467.080000pt;}
.y11d{bottom:469.730667pt;}
.y205{bottom:469.981333pt;}
.yf8{bottom:472.126667pt;}
.yb1{bottom:472.790667pt;}
.y78{bottom:472.825333pt;}
.y263{bottom:472.873333pt;}
.y283{bottom:473.621333pt;}
.y224{bottom:474.472000pt;}
.y1d1{bottom:475.168000pt;}
.y29e{bottom:478.270667pt;}
.y2ed{bottom:479.433333pt;}
.y11{bottom:480.362667pt;}
.y242{bottom:480.385333pt;}
.y19d{bottom:482.018667pt;}
.ye9{bottom:482.089333pt;}
.y204{bottom:482.601333pt;}
.y11b{bottom:485.006667pt;}
.yf7{bottom:487.402667pt;}
.y1ff{bottom:488.066667pt;}
.yb0{bottom:488.068000pt;}
.y77{bottom:488.101333pt;}
.y262{bottom:488.149333pt;}
.y282{bottom:488.897333pt;}
.y11c{bottom:489.605333pt;}
.y223{bottom:489.748000pt;}
.y1d0{bottom:490.444000pt;}
.y29d{bottom:490.890667pt;}
.y2ec{bottom:492.052000pt;}
.y10{bottom:493.646667pt;}
.y203{bottom:495.220000pt;}
.y19c{bottom:497.029333pt;}
.ye8{bottom:497.365333pt;}
.y42{bottom:499.732000pt;}
.y11a{bottom:500.282667pt;}
.yf6{bottom:502.678667pt;}
.yaf{bottom:503.344000pt;}
.y76{bottom:503.377333pt;}
.y261{bottom:503.425333pt;}
.y29c{bottom:503.509333pt;}
.y1fd{bottom:504.538667pt;}
.y2eb{bottom:504.672000pt;}
.y1cf{bottom:505.720000pt;}
.yf{bottom:506.929333pt;}
.y202{bottom:507.840000pt;}
.y19b{bottom:512.038667pt;}
.ye7{bottom:512.641333pt;}
.y41{bottom:513.016000pt;}
.y119{bottom:515.558667pt;}
.y29b{bottom:516.129333pt;}
.y281{bottom:517.058667pt;}
.y2ea{bottom:517.290667pt;}
.yf5{bottom:517.954667pt;}
.yae{bottom:518.620000pt;}
.y75{bottom:518.653333pt;}
.y1fc{bottom:519.814667pt;}
.y201{bottom:520.458667pt;}
.y1ce{bottom:520.996000pt;}
.y241{bottom:524.521333pt;}
.ye{bottom:525.526667pt;}
.y40{bottom:526.298667pt;}
.y19a{bottom:527.182667pt;}
.ye6{bottom:527.917333pt;}
.y29a{bottom:528.748000pt;}
.y2e9{bottom:529.910667pt;}
.y118{bottom:530.834667pt;}
.y200{bottom:533.078667pt;}
.yf4{bottom:533.230667pt;}
.y17e{bottom:533.232000pt;}
.y222{bottom:533.882667pt;}
.yad{bottom:533.896000pt;}
.y74{bottom:533.929333pt;}
.y1fb{bottom:535.090667pt;}
.y1cd{bottom:536.272000pt;}
.y240{bottom:537.140000pt;}
.yd{bottom:538.810667pt;}
.y3f{bottom:539.582667pt;}
.y299{bottom:541.368000pt;}
.y2e8{bottom:542.529333pt;}
.ye5{bottom:543.194667pt;}
.y117{bottom:546.110667pt;}
.y221{bottom:546.502667pt;}
.y260{bottom:547.560000pt;}
.y149{bottom:547.762667pt;}
.yf3{bottom:548.508000pt;}
.yac{bottom:549.172000pt;}
.y73{bottom:549.205333pt;}
.y23f{bottom:549.760000pt;}
.y199{bottom:549.830667pt;}
.y1fa{bottom:550.366667pt;}
.y1cc{bottom:551.548000pt;}
.yc{bottom:552.093333pt;}
.y3e{bottom:552.866667pt;}
.y2e7{bottom:555.149333pt;}
.ye4{bottom:558.470667pt;}
.y220{bottom:559.121333pt;}
.y25f{bottom:560.180000pt;}
.y148{bottom:560.381333pt;}
.y116{bottom:561.386667pt;}
.y298{bottom:561.957333pt;}
.y23e{bottom:562.378667pt;}
.yf2{bottom:563.784000pt;}
.yab{bottom:564.448000pt;}
.y72{bottom:564.481333pt;}
.y280{bottom:564.880000pt;}
.ycd{bottom:565.112000pt;}
.yb{bottom:565.377333pt;}
.y1f9{bottom:565.642667pt;}
.y3d{bottom:566.149333pt;}
.y1cb{bottom:566.824000pt;}
.y2e6{bottom:567.768000pt;}
.y21f{bottom:571.741333pt;}
.y25e{bottom:572.798667pt;}
.y147{bottom:573.001333pt;}
.ye3{bottom:573.746667pt;}
.y297{bottom:574.576000pt;}
.y198{bottom:575.932000pt;}
.y115{bottom:577.328000pt;}
.ya{bottom:578.661333pt;}
.y17d{bottom:579.060000pt;}
.y3c{bottom:579.433333pt;}
.yaa{bottom:579.724000pt;}
.y71{bottom:579.757333pt;}
.y27f{bottom:580.156000pt;}
.y2e5{bottom:580.388000pt;}
.y1f8{bottom:580.918667pt;}
.y1ca{bottom:582.100000pt;}
.ycc{bottom:583.709333pt;}
.y21e{bottom:584.360000pt;}
.y25d{bottom:585.418667pt;}
.y146{bottom:585.621333pt;}
.y296{bottom:587.196000pt;}
.ye2{bottom:589.022667pt;}
.y9{bottom:591.944000pt;}
.y2e4{bottom:593.006667pt;}
.y17c{bottom:594.336000pt;}
.ya9{bottom:595.000000pt;}
.y70{bottom:595.033333pt;}
.y27e{bottom:595.432000pt;}
.y3b{bottom:596.105333pt;}
.y1f7{bottom:596.194667pt;}
.y1c9{bottom:597.376000pt;}
.y25c{bottom:598.037333pt;}
.y145{bottom:598.240000pt;}
.yf1{bottom:598.320000pt;}
.y197{bottom:598.713333pt;}
.y295{bottom:599.814667pt;}
.ye1{bottom:604.298667pt;}
.y2e3{bottom:605.626667pt;}
.y3a{bottom:609.388000pt;}
.y17b{bottom:609.612000pt;}
.ya8{bottom:610.276000pt;}
.y6f{bottom:610.309333pt;}
.y8{bottom:610.541333pt;}
.y27d{bottom:610.708000pt;}
.y144{bottom:610.860000pt;}
.y1f6{bottom:611.470667pt;}
.y294{bottom:612.434667pt;}
.y1c8{bottom:612.652000pt;}
.y196{bottom:613.857333pt;}
.ycb{bottom:615.190667pt;}
.y2e2{bottom:618.245333pt;}
.y39{bottom:619.284000pt;}
.ye0{bottom:619.574667pt;}
.y143{bottom:623.478667pt;}
.y7{bottom:623.825333pt;}
.y17a{bottom:624.888000pt;}
.y293{bottom:625.053333pt;}
.ya7{bottom:625.552000pt;}
.y6e{bottom:625.585333pt;}
.y27c{bottom:625.984000pt;}
.y1f5{bottom:626.748000pt;}
.y1c7{bottom:627.928000pt;}
.y195{bottom:628.866667pt;}
.y2e1{bottom:630.865333pt;}
.y38{bottom:632.568000pt;}
.ydf{bottom:634.850667pt;}
.y6{bottom:637.108000pt;}
.y292{bottom:637.673333pt;}
.y179{bottom:640.164000pt;}
.ya6{bottom:640.828000pt;}
.y6d{bottom:640.861333pt;}
.y27b{bottom:641.260000pt;}
.y1f4{bottom:642.024000pt;}
.y2e0{bottom:643.484000pt;}
.y194{bottom:643.877333pt;}
.y37{bottom:645.850667pt;}
.yde{bottom:650.126667pt;}
.y291{bottom:650.292000pt;}
.y5{bottom:650.392000pt;}
.y178{bottom:655.440000pt;}
.ya5{bottom:656.104000pt;}
.y6c{bottom:656.137333pt;}
.y27a{bottom:656.536000pt;}
.y1f3{bottom:657.300000pt;}
.y193{bottom:658.888000pt;}
.y36{bottom:662.522667pt;}
.y290{bottom:662.912000pt;}
.y1c6{bottom:663.752000pt;}
.ydd{bottom:665.402667pt;}
.y2df{bottom:668.722667pt;}
.y177{bottom:670.716000pt;}
.ya4{bottom:671.380000pt;}
.y6b{bottom:671.413333pt;}
.y279{bottom:671.812000pt;}
.y1f2{bottom:672.576000pt;}
.y192{bottom:673.897333pt;}
.y1c5{bottom:675.706667pt;}
.y137{bottom:677.707141pt;}
.ydc{bottom:680.678667pt;}
.y2de{bottom:681.342667pt;}
.y35{bottom:683.045333pt;}
.ya3{bottom:686.656000pt;}
.y6a{bottom:686.689333pt;}
.y278{bottom:687.088000pt;}
.y1c4{bottom:687.662667pt;}
.y1f1{bottom:687.852000pt;}
.y191{bottom:689.041333pt;}
.y28f{bottom:689.305333pt;}
.y2dd{bottom:693.961333pt;}
.ydb{bottom:695.954667pt;}
.y34{bottom:697.657333pt;}
.y1c3{bottom:699.617333pt;}
.ya2{bottom:701.932000pt;}
.y69{bottom:701.965333pt;}
.y277{bottom:702.364000pt;}
.y1f0{bottom:703.128000pt;}
.y190{bottom:704.184000pt;}
.y28e{bottom:704.581333pt;}
.y176{bottom:705.253333pt;}
.y2dc{bottom:706.581333pt;}
.yda{bottom:711.230667pt;}
.y1c2{bottom:711.572000pt;}
.y33{bottom:712.268000pt;}
.ya1{bottom:717.208000pt;}
.y68{bottom:717.241333pt;}
.y276{bottom:717.640000pt;}
.y1ef{bottom:718.404000pt;}
.y2db{bottom:719.200000pt;}
.y308{bottom:719.201333pt;}
.y18f{bottom:719.326667pt;}
.y28d{bottom:719.857333pt;}
.yd9{bottom:726.506667pt;}
.y32{bottom:726.880000pt;}
.y1c1{bottom:731.754667pt;}
.y2da{bottom:731.820000pt;}
.ya0{bottom:732.484000pt;}
.y67{bottom:732.517333pt;}
.y1ee{bottom:734.344000pt;}
.y18e{bottom:734.470667pt;}
.y175{bottom:736.734667pt;}
.yd8{bottom:741.782667pt;}
.y31{bottom:743.842667pt;}
.y2d9{bottom:744.438667pt;}
.y307{bottom:744.440000pt;}
.y275{bottom:745.801333pt;}
.y1c0{bottom:746.765333pt;}
.y9f{bottom:747.760000pt;}
.y66{bottom:747.793333pt;}
.y28c{bottom:748.018667pt;}
.y18d{bottom:749.480000pt;}
.y1ed{bottom:752.941333pt;}
.yd7{bottom:757.058667pt;}
.y1bf{bottom:761.776000pt;}
.y9e{bottom:763.036000pt;}
.y65{bottom:763.069333pt;}
.y18c{bottom:764.490667pt;}
.y2d8{bottom:769.678667pt;}
.y1ec{bottom:771.537333pt;}
.yd6{bottom:772.334667pt;}
.y1be{bottom:776.785333pt;}
.y30{bottom:776.909333pt;}
.y9d{bottom:778.312000pt;}
.y64{bottom:778.345333pt;}
.y18b{bottom:779.501333pt;}
.y2d7{bottom:782.297333pt;}
.yd5{bottom:787.610667pt;}
.y1eb{bottom:790.134667pt;}
.y1bd{bottom:791.796000pt;}
.y9c{bottom:793.588000pt;}
.y63{bottom:793.621333pt;}
.y18a{bottom:794.510667pt;}
.y2d6{bottom:794.917333pt;}
.yd4{bottom:802.886667pt;}
.y1bc{bottom:806.938667pt;}
.y2f{bottom:807.461333pt;}
.y2d5{bottom:807.536000pt;}
.y9b{bottom:808.864000pt;}
.y62{bottom:808.897333pt;}
.y189{bottom:809.654667pt;}
.yd3{bottom:818.162667pt;}
.y2d4{bottom:820.156000pt;}
.y1bb{bottom:821.949333pt;}
.y9a{bottom:824.140000pt;}
.y61{bottom:824.173333pt;}
.y188{bottom:824.797333pt;}
.y2d3{bottom:832.774667pt;}
.yd2{bottom:833.438667pt;}
.y1ba{bottom:837.092000pt;}
.y2e{bottom:838.013333pt;}
.y99{bottom:839.416000pt;}
.y28b{bottom:839.449333pt;}
.y60{bottom:839.450667pt;}
.y187{bottom:839.808000pt;}
.y2d2{bottom:845.394667pt;}
.yd1{bottom:848.714667pt;}
.y1b9{bottom:852.236000pt;}
.y98{bottom:854.692000pt;}
.y28a{bottom:854.725333pt;}
.y5f{bottom:854.726667pt;}
.y2d1{bottom:858.013333pt;}
.y186{bottom:862.589333pt;}
.yd0{bottom:863.990667pt;}
.y2d{bottom:868.566667pt;}
.y97{bottom:869.968000pt;}
.y5e{bottom:870.002667pt;}
.y2d0{bottom:870.633333pt;}
.y1b8{bottom:875.017333pt;}
.ycf{bottom:879.266667pt;}
.y2cf{bottom:883.252000pt;}
.y96{bottom:885.244000pt;}
.y5d{bottom:885.278667pt;}
.y185{bottom:888.690667pt;}
.yce{bottom:895.206667pt;}
.y2ce{bottom:895.872000pt;}
.y114{bottom:900.520000pt;}
.y95{bottom:900.521333pt;}
.y5c{bottom:900.554667pt;}
.y1b7{bottom:901.118667pt;}
.y2cd{bottom:908.490667pt;}
.y184{bottom:911.472000pt;}
.y113{bottom:915.796000pt;}
.y94{bottom:915.797333pt;}
.y5b{bottom:915.830667pt;}
.y2cc{bottom:921.110667pt;}
.y1b6{bottom:923.900000pt;}
.y93{bottom:931.073333pt;}
.y2cb{bottom:933.729333pt;}
.y183{bottom:935.785333pt;}
.y5a{bottom:943.990667pt;}
.y92{bottom:946.349333pt;}
.y182{bottom:948.404000pt;}
.y4{bottom:962.668000pt;}
.y3{bottom:973.294667pt;}
.y2{bottom:983.921333pt;}
.y59{bottom:992.993333pt;}
.y1{bottom:1068.078667pt;}
.h9{height:20.309333pt;}
.hf{height:22.696000pt;}
.h12{height:23.789333pt;}
.h6{height:25.202507pt;}
.h4{height:27.290667pt;}
.h18{height:28.480000pt;}
.h3{height:29.344000pt;}
.h13{height:32.440000pt;}
.h5{height:33.861333pt;}
.h2{height:34.602667pt;}
.h16{height:35.853440pt;}
.h17{height:39.286613pt;}
.hc{height:41.090667pt;}
.ha{height:41.920000pt;}
.h10{height:42.184000pt;}
.h15{height:43.528142pt;}
.h11{height:44.535360pt;}
.h8{height:44.544000pt;}
.hd{height:49.618240pt;}
.he{height:49.623573pt;}
.hb{height:50.304000pt;}
.h7{height:88.032000pt;}
.h14{height:686.675147pt;}
.h1{height:1039.333333pt;}
.h0{height:1039.370667pt;}
.w2{width:585.164579pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:10.712000pt;}
.x24{left:59.973333pt;}
.x1c{left:60.908000pt;}
.x1b{left:67.161333pt;}
.x2a{left:68.274667pt;}
.x15{left:70.978667pt;}
.x31{left:73.253333pt;}
.x25{left:75.249333pt;}
.x19{left:78.370667pt;}
.x10{left:81.142667pt;}
.x6{left:82.533333pt;}
.x22{left:85.790667pt;}
.x21{left:87.704000pt;}
.x1a{left:91.026667pt;}
.x7{left:95.152000pt;}
.x13{left:97.961333pt;}
.xa{left:99.828000pt;}
.x29{left:102.898661pt;}
.x17{left:107.612000pt;}
.xd{left:110.729333pt;}
.x1d{left:114.537333pt;}
.xc{left:118.420000pt;}
.x14{left:121.966667pt;}
.x20{left:123.348000pt;}
.x1e{left:127.324000pt;}
.xe{left:132.177333pt;}
.x9{left:134.072000pt;}
.x12{left:135.808000pt;}
.xf{left:137.366667pt;}
.x1f{left:144.432000pt;}
.x8{left:153.616000pt;}
.x11{left:154.978667pt;}
.xb{left:158.282667pt;}
.x2f{left:161.338667pt;}
.x4{left:168.138667pt;}
.x5{left:169.333333pt;}
.x2b{left:173.945333pt;}
.x18{left:174.886667pt;}
.x16{left:183.165333pt;}
.x2d{left:187.932000pt;}
.x30{left:209.250667pt;}
.x2c{left:220.056000pt;}
.x23{left:236.644000pt;}
.x26{left:404.888000pt;}
.x32{left:417.757333pt;}
.x27{left:420.165333pt;}
.x28{left:463.085333pt;}
.x3{left:606.920000pt;}
.x2{left:633.977333pt;}
.x2e{left:687.541333pt;}
}




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