
    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_a58b53d9dfdc459b9af67c0f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.941000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_253c8f78cba803bd7a84ee6d.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_1ab7cddcbc32e1b97fe515a0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_a6062949528ecb1d4d0376b4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.711000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_490eb3888a8f761012ec82ee.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_4e711a53b9f24001c0e0650e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.730469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_8da3406ff9aad038b5f5f79e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.759766;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_023b3ea446999952b1af1703.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.953000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_20d03f1484d8a6c12dc53c15.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.026000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_41e1fb1acd855f42ed56a0b1.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.032000;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_82c9118ecb28aa6a48e63b50.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_e62d5eb314a72c329b20e586.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_137c939b8515c31e5b9cccac.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.716000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_2ee91071fe20e1ea3395c87a.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.962000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_c61af7dce7d280decf64a74e.woff2')format("woff");}.fff{font-family:fff;line-height:0.127000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_9c1cdb8cb69e6bb21d146968.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.066000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_a1ce1dbc01c12794df7949eb.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.684000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.375043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375043,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.375050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375050,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-37.080360px;}
.va{vertical-align:-12.927600px;}
.v4{vertical-align:-11.910000px;}
.vc{vertical-align:-2.041200px;}
.v2{vertical-align:-1.013992px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.013992px;}
.vb{vertical-align:2.041200px;}
.v3{vertical-align:6.120000px;}
.v9{vertical-align:12.927600px;}
.v7{vertical-align:18.697793px;}
.v8{vertical-align:23.814000px;}
.v6{vertical-align:48.301796px;}
.ls6{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.030000px;}
.ls21{letter-spacing:0.036000px;}
.ls13{letter-spacing:0.054000px;}
.ls40{letter-spacing:0.059400px;}
.ls3c{letter-spacing:0.108000px;}
.ls56{letter-spacing:0.113400px;}
.ls62{letter-spacing:0.129600px;}
.ls53{letter-spacing:0.199800px;}
.lsc{letter-spacing:0.205200px;}
.ls1b{letter-spacing:0.216000px;}
.ls20{letter-spacing:0.222000px;}
.ls43{letter-spacing:0.226800px;}
.ls14{letter-spacing:0.246000px;}
.lsd{letter-spacing:0.287967px;}
.ls3b{letter-spacing:0.291600px;}
.ls24{letter-spacing:0.300000px;}
.ls18{letter-spacing:0.312000px;}
.ls44{letter-spacing:0.313200px;}
.ls8{letter-spacing:0.324000px;}
.ls22{letter-spacing:0.348000px;}
.ls5e{letter-spacing:0.410400px;}
.lsa{letter-spacing:0.420000px;}
.ls10{letter-spacing:0.426000px;}
.ls7{letter-spacing:0.439949px;}
.ls9{letter-spacing:0.444000px;}
.ls3{letter-spacing:0.492000px;}
.ls51{letter-spacing:0.577800px;}
.ls11{letter-spacing:0.612000px;}
.ls4{letter-spacing:0.714000px;}
.ls1f{letter-spacing:0.719917px;}
.ls57{letter-spacing:0.723600px;}
.lsb{letter-spacing:0.756000px;}
.ls5{letter-spacing:0.792000px;}
.ls1e{letter-spacing:0.810000px;}
.lsf{letter-spacing:0.827890px;}
.ls19{letter-spacing:0.840000px;}
.ls17{letter-spacing:0.882000px;}
.ls2c{letter-spacing:0.924000px;}
.lse{letter-spacing:0.934200px;}
.ls25{letter-spacing:0.990000px;}
.ls2f{letter-spacing:1.020600px;}
.ls1d{letter-spacing:1.050000px;}
.ls1c{letter-spacing:1.170000px;}
.ls15{letter-spacing:1.314000px;}
.ls1{letter-spacing:1.357190px;}
.ls39{letter-spacing:1.366200px;}
.ls48{letter-spacing:1.566000px;}
.ls54{letter-spacing:1.571400px;}
.ls23{letter-spacing:1.626000px;}
.ls16{letter-spacing:1.662000px;}
.ls2a{letter-spacing:1.698000px;}
.ls2d{letter-spacing:1.704000px;}
.ls2{letter-spacing:1.764000px;}
.ls12{letter-spacing:1.902000px;}
.ls52{letter-spacing:2.041200px;}
.ls4f{letter-spacing:2.300400px;}
.ls60{letter-spacing:2.311200px;}
.ls4d{letter-spacing:2.602800px;}
.ls36{letter-spacing:3.029400px;}
.ls63{letter-spacing:3.969000px;}
.ls47{letter-spacing:5.783400px;}
.ls42{letter-spacing:7.144200px;}
.ls32{letter-spacing:12.933000px;}
.ls66{letter-spacing:13.613400px;}
.ls30{letter-spacing:13.953600px;}
.ls5a{letter-spacing:14.293800px;}
.ls4b{letter-spacing:14.634000px;}
.ls65{letter-spacing:15.314400px;}
.ls3f{letter-spacing:15.654600px;}
.ls4c{letter-spacing:16.675200px;}
.ls3d{letter-spacing:17.695800px;}
.ls4a{letter-spacing:17.836200px;}
.ls33{letter-spacing:18.030600px;}
.ls34{letter-spacing:18.036000px;}
.ls41{letter-spacing:18.176400px;}
.ls38{letter-spacing:18.376200px;}
.ls2b{letter-spacing:19.104000px;}
.ls28{letter-spacing:19.782000px;}
.ls27{letter-spacing:19.788000px;}
.ls29{letter-spacing:20.130000px;}
.ls31{letter-spacing:20.752200px;}
.ls59{letter-spacing:22.118400px;}
.ls46{letter-spacing:22.798800px;}
.ls5f{letter-spacing:23.139000px;}
.ls3e{letter-spacing:24.159600px;}
.ls5d{letter-spacing:24.499800px;}
.ls0{letter-spacing:27.081392px;}
.ls5c{letter-spacing:27.896400px;}
.ls5b{letter-spacing:28.998000px;}
.ls3a{letter-spacing:29.262600px;}
.ls35{letter-spacing:32.319000px;}
.ls45{letter-spacing:36.849600px;}
.ls58{letter-spacing:37.249200px;}
.ls2e{letter-spacing:37.738200px;}
.ls26{letter-spacing:38.082000px;}
.ls49{letter-spacing:38.982600px;}
.ls55{letter-spacing:39.306600px;}
.ls61{letter-spacing:40.764600px;}
.ls50{letter-spacing:40.807800px;}
.ls4e{letter-spacing:41.299200px;}
.ls37{letter-spacing:41.974200px;}
.ls64{letter-spacing:43.999200px;}
.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;}
}
.ws4e{word-spacing:-40.031500px;}
.ws22d{word-spacing:-35.847000px;}
.ws219{word-spacing:-29.700000px;}
.ws26a{word-spacing:-27.777600px;}
.ws2d7{word-spacing:-27.486000px;}
.ws7{word-spacing:-27.178200px;}
.ws226{word-spacing:-25.800000px;}
.ws1{word-spacing:-24.235057px;}
.ws0{word-spacing:-24.184058px;}
.ws50{word-spacing:-19.187280px;}
.ws4f{word-spacing:-19.134360px;}
.ws52{word-spacing:-18.187200px;}
.ws1c7{word-spacing:-16.752000px;}
.ws65{word-spacing:-16.710000px;}
.ws111{word-spacing:-16.548000px;}
.ws156{word-spacing:-16.542000px;}
.ws110{word-spacing:-16.422000px;}
.ws1ca{word-spacing:-16.416000px;}
.wse{word-spacing:-16.398000px;}
.ws1d5{word-spacing:-16.302000px;}
.wsc{word-spacing:-16.164000px;}
.ws1ac{word-spacing:-16.074000px;}
.ws19a{word-spacing:-15.972000px;}
.ws1af{word-spacing:-15.900000px;}
.ws1c1{word-spacing:-15.888000px;}
.ws190{word-spacing:-15.846000px;}
.ws151{word-spacing:-15.798000px;}
.ws15c{word-spacing:-15.792000px;}
.ws102{word-spacing:-15.738000px;}
.ws1e7{word-spacing:-15.690000px;}
.ws15f{word-spacing:-15.660000px;}
.ws15a{word-spacing:-15.576000px;}
.ws33{word-spacing:-15.516000px;}
.ws1b3{word-spacing:-15.486000px;}
.ws31{word-spacing:-15.468000px;}
.ws11b{word-spacing:-15.354000px;}
.ws26{word-spacing:-15.324000px;}
.ws120{word-spacing:-15.294000px;}
.wsf2{word-spacing:-15.216000px;}
.ws147{word-spacing:-15.162000px;}
.ws141{word-spacing:-15.138900px;}
.ws171{word-spacing:-15.120000px;}
.ws165{word-spacing:-15.101100px;}
.ws1d7{word-spacing:-15.048000px;}
.ws86{word-spacing:-15.031800px;}
.ws1e4{word-spacing:-15.018000px;}
.ws1d4{word-spacing:-14.994000px;}
.wsea{word-spacing:-14.968800px;}
.ws26f{word-spacing:-14.941800px;}
.ws2a6{word-spacing:-14.898600px;}
.ws172{word-spacing:-14.892000px;}
.ws353{word-spacing:-14.877000px;}
.ws310{word-spacing:-14.855400px;}
.wsfb{word-spacing:-14.838000px;}
.ws206{word-spacing:-14.808000px;}
.ws142{word-spacing:-14.766000px;}
.ws1ab{word-spacing:-14.760900px;}
.ws237{word-spacing:-14.731200px;}
.ws1dc{word-spacing:-14.706000px;}
.ws2c1{word-spacing:-14.644800px;}
.ws169{word-spacing:-14.634000px;}
.ws238{word-spacing:-14.612400px;}
.ws1da{word-spacing:-14.610000px;}
.ws1d2{word-spacing:-14.604000px;}
.ws2ab{word-spacing:-14.601600px;}
.ws312{word-spacing:-14.590800px;}
.ws7f{word-spacing:-14.550000px;}
.ws1fd{word-spacing:-14.538000px;}
.wsda{word-spacing:-14.536800px;}
.ws6f{word-spacing:-14.496000px;}
.ws123{word-spacing:-14.490000px;}
.ws2c7{word-spacing:-14.385600px;}
.ws15{word-spacing:-14.370000px;}
.ws6c{word-spacing:-14.328000px;}
.ws161{word-spacing:-14.316000px;}
.ws37f{word-spacing:-14.245200px;}
.ws9e{word-spacing:-14.226000px;}
.ws121{word-spacing:-14.220000px;}
.ws97{word-spacing:-14.218200px;}
.ws37d{word-spacing:-14.212800px;}
.ws159{word-spacing:-14.208000px;}
.ws380{word-spacing:-14.148000px;}
.ws16{word-spacing:-14.136000px;}
.ws34d{word-spacing:-14.131800px;}
.ws1df{word-spacing:-14.130000px;}
.ws36d{word-spacing:-14.115600px;}
.ws122{word-spacing:-14.088000px;}
.ws183{word-spacing:-14.034000px;}
.ws98{word-spacing:-13.986000px;}
.ws44{word-spacing:-13.854000px;}
.ws228{word-spacing:-13.824000px;}
.ws157{word-spacing:-13.818000px;}
.ws15b{word-spacing:-13.812000px;}
.ws1b2{word-spacing:-13.788000px;}
.ws100{word-spacing:-13.786200px;}
.ws166{word-spacing:-13.740000px;}
.ws230{word-spacing:-13.683600px;}
.ws24e{word-spacing:-13.656600px;}
.ws21f{word-spacing:-13.645800px;}
.wsac{word-spacing:-13.581000px;}
.ws258{word-spacing:-13.543200px;}
.ws14a{word-spacing:-13.536000px;}
.ws207{word-spacing:-13.530000px;}
.ws10f{word-spacing:-13.518000px;}
.ws24d{word-spacing:-13.516200px;}
.ws26b{word-spacing:-13.500000px;}
.ws12{word-spacing:-13.488000px;}
.ws358{word-spacing:-13.467600px;}
.ws20c{word-spacing:-13.457700px;}
.ws28b{word-spacing:-13.446000px;}
.ws2a0{word-spacing:-13.435200px;}
.ws84{word-spacing:-13.398000px;}
.ws35b{word-spacing:-13.381200px;}
.ws232{word-spacing:-13.375800px;}
.ws114{word-spacing:-13.350000px;}
.ws254{word-spacing:-13.278600px;}
.ws1b6{word-spacing:-13.278000px;}
.wsd7{word-spacing:-13.251600px;}
.ws14b{word-spacing:-13.206000px;}
.ws196{word-spacing:-13.194000px;}
.ws27e{word-spacing:-13.138200px;}
.ws327{word-spacing:-13.132800px;}
.ws25{word-spacing:-13.116000px;}
.ws139{word-spacing:-13.070237px;}
.ws1a0{word-spacing:-13.062000px;}
.ws1f4{word-spacing:-13.038000px;}
.ws326{word-spacing:-13.035600px;}
.ws31e{word-spacing:-13.019400px;}
.ws1a6{word-spacing:-13.008000px;}
.ws320{word-spacing:-12.992400px;}
.ws22b{word-spacing:-12.948000px;}
.ws64{word-spacing:-12.942000px;}
.ws23f{word-spacing:-12.916800px;}
.ws9b{word-spacing:-12.911400px;}
.ws2ce{word-spacing:-12.884400px;}
.ws5{word-spacing:-12.814200px;}
.ws22c{word-spacing:-12.804000px;}
.ws2cf{word-spacing:-12.792600px;}
.ws19{word-spacing:-12.768000px;}
.ws2cb{word-spacing:-12.765600px;}
.ws8{word-spacing:-12.744000px;}
.ws323{word-spacing:-12.722400px;}
.ws63{word-spacing:-12.708000px;}
.ws325{word-spacing:-12.695400px;}
.ws367{word-spacing:-12.657600px;}
.ws337{word-spacing:-12.603600px;}
.ws361{word-spacing:-12.565800px;}
.ws1ec{word-spacing:-12.534000px;}
.ws130{word-spacing:-12.484644px;}
.ws10a{word-spacing:-12.456000px;}
.ws2e{word-spacing:-12.450000px;}
.ws279{word-spacing:-12.414600px;}
.ws29f{word-spacing:-12.398400px;}
.ws136{word-spacing:-12.393445px;}
.ws90{word-spacing:-12.317400px;}
.ws163{word-spacing:-12.276000px;}
.ws379{word-spacing:-12.274200px;}
.ws356{word-spacing:-12.241800px;}
.ws55{word-spacing:-12.228000px;}
.ws2d1{word-spacing:-12.209400px;}
.ws1e9{word-spacing:-12.156000px;}
.ws83{word-spacing:-12.150000px;}
.ws2f1{word-spacing:-12.139200px;}
.ws113{word-spacing:-12.138000px;}
.ws2a5{word-spacing:-12.112200px;}
.ws187{word-spacing:-12.108000px;}
.ws1a3{word-spacing:-12.036000px;}
.ws372{word-spacing:-11.950200px;}
.ws1a4{word-spacing:-11.898000px;}
.ws2b{word-spacing:-11.892000px;}
.ws14f{word-spacing:-11.868000px;}
.ws37b{word-spacing:-11.863800px;}
.ws338{word-spacing:-11.853000px;}
.ws76{word-spacing:-11.832000px;}
.ws1a5{word-spacing:-11.820000px;}
.ws46{word-spacing:-11.790000px;}
.ws199{word-spacing:-11.778000px;}
.ws290{word-spacing:-11.745000px;}
.ws62{word-spacing:-11.742000px;}
.ws293{word-spacing:-11.680200px;}
.ws328{word-spacing:-11.674800px;}
.ws1a{word-spacing:-11.664000px;}
.ws208{word-spacing:-11.652000px;}
.wsd8{word-spacing:-11.631600px;}
.ws22f{word-spacing:-11.620800px;}
.ws9c{word-spacing:-11.610000px;}
.ws188{word-spacing:-11.580000px;}
.ws363{word-spacing:-11.566800px;}
.ws22e{word-spacing:-11.550600px;}
.ws2d8{word-spacing:-11.442600px;}
.ws1cb{word-spacing:-11.412000px;}
.ws35c{word-spacing:-11.329200px;}
.ws2ba{word-spacing:-11.280600px;}
.ws145{word-spacing:-11.238000px;}
.ws33c{word-spacing:-11.156400px;}
.ws33e{word-spacing:-11.145600px;}
.ws16b{word-spacing:-11.106000px;}
.ws2d0{word-spacing:-11.080800px;}
.ws2ff{word-spacing:-11.070000px;}
.ws2d6{word-spacing:-11.064600px;}
.ws357{word-spacing:-11.048400px;}
.wse7{word-spacing:-11.037600px;}
.ws134{word-spacing:-11.030262px;}
.ws2eb{word-spacing:-10.989000px;}
.ws8a{word-spacing:-10.983600px;}
.ws115{word-spacing:-10.920000px;}
.ws18e{word-spacing:-10.902000px;}
.ws30{word-spacing:-10.896000px;}
.ws37c{word-spacing:-10.881000px;}
.ws2f{word-spacing:-10.878000px;}
.ws1b9{word-spacing:-10.872000px;}
.ws34b{word-spacing:-10.848600px;}
.ws195{word-spacing:-10.848000px;}
.ws2d2{word-spacing:-10.837800px;}
.ws68{word-spacing:-10.812000px;}
.wsaa{word-spacing:-10.800000px;}
.ws149{word-spacing:-10.776000px;}
.ws77{word-spacing:-10.770000px;}
.ws18b{word-spacing:-10.764000px;}
.ws104{word-spacing:-10.758000px;}
.ws8b{word-spacing:-10.751400px;}
.ws39{word-spacing:-10.746000px;}
.wsfe{word-spacing:-10.728000px;}
.ws306{word-spacing:-10.724400px;}
.wseb{word-spacing:-10.722000px;}
.ws47{word-spacing:-10.716000px;}
.wsab{word-spacing:-10.713600px;}
.ws32f{word-spacing:-10.702800px;}
.ws85{word-spacing:-10.692000px;}
.ws1ce{word-spacing:-10.674000px;}
.ws1de{word-spacing:-10.668000px;}
.ws2d5{word-spacing:-10.659600px;}
.ws11c{word-spacing:-10.656000px;}
.ws32d{word-spacing:-10.643400px;}
.ws1c{word-spacing:-10.632000px;}
.ws66{word-spacing:-10.626000px;}
.ws22a{word-spacing:-10.614000px;}
.wsa9{word-spacing:-10.611000px;}
.ws330{word-spacing:-10.605600px;}
.ws2ee{word-spacing:-10.578600px;}
.ws129{word-spacing:-10.560000px;}
.ws349{word-spacing:-10.551600px;}
.ws15d{word-spacing:-10.548000px;}
.wsfd{word-spacing:-10.536000px;}
.ws1fc{word-spacing:-10.524000px;}
.wsa8{word-spacing:-10.519200px;}
.ws167{word-spacing:-10.482000px;}
.ws313{word-spacing:-10.481400px;}
.ws1f2{word-spacing:-10.464000px;}
.ws1d1{word-spacing:-10.434000px;}
.ws19c{word-spacing:-10.416000px;}
.ws34c{word-spacing:-10.411200px;}
.ws264{word-spacing:-10.384200px;}
.ws298{word-spacing:-10.378800px;}
.ws2f3{word-spacing:-10.368000px;}
.ws1b8{word-spacing:-10.362000px;}
.ws1aa{word-spacing:-10.296000px;}
.ws8c{word-spacing:-10.265400px;}
.ws34{word-spacing:-10.218000px;}
.ws368{word-spacing:-10.146600px;}
.ws377{word-spacing:-10.141200px;}
.ws214{word-spacing:-10.114200px;}
.ws376{word-spacing:-10.103400px;}
.wsf{word-spacing:-10.080000px;}
.ws155{word-spacing:-10.074000px;}
.ws2aa{word-spacing:-10.044000px;}
.ws96{word-spacing:-10.033200px;}
.ws10e{word-spacing:-9.996000px;}
.ws27b{word-spacing:-9.973800px;}
.ws95{word-spacing:-9.963000px;}
.ws179{word-spacing:-9.954000px;}
.ws15e{word-spacing:-9.948000px;}
.ws182{word-spacing:-9.900000px;}
.ws211{word-spacing:-9.888000px;}
.wse5{word-spacing:-9.871200px;}
.ws217{word-spacing:-9.816000px;}
.ws287{word-spacing:-9.790200px;}
.ws107{word-spacing:-9.780000px;}
.ws20d{word-spacing:-9.774000px;}
.ws233{word-spacing:-9.752400px;}
.ws304{word-spacing:-9.741600px;}
.wsff{word-spacing:-9.738000px;}
.ws2e4{word-spacing:-9.736200px;}
.ws21b{word-spacing:-9.732000px;}
.ws27c{word-spacing:-9.730800px;}
.ws334{word-spacing:-9.725400px;}
.ws2ec{word-spacing:-9.709200px;}
.wse9{word-spacing:-9.703800px;}
.wsad{word-spacing:-9.698400px;}
.wsd2{word-spacing:-9.693000px;}
.ws2ea{word-spacing:-9.682200px;}
.ws2a4{word-spacing:-9.655200px;}
.ws94{word-spacing:-9.649800px;}
.ws23a{word-spacing:-9.644400px;}
.ws245{word-spacing:-9.639000px;}
.ws49{word-spacing:-9.633600px;}
.ws4d{word-spacing:-9.628200px;}
.ws9d{word-spacing:-9.622800px;}
.ws1ef{word-spacing:-9.612000px;}
.ws276{word-spacing:-9.606600px;}
.ws240{word-spacing:-9.601200px;}
.ws280{word-spacing:-9.595800px;}
.ws24b{word-spacing:-9.590400px;}
.ws364{word-spacing:-9.585000px;}
.ws347{word-spacing:-9.552600px;}
.ws119{word-spacing:-9.534000px;}
.ws2af{word-spacing:-9.525600px;}
.wsd0{word-spacing:-9.509400px;}
.ws2b2{word-spacing:-9.493200px;}
.ws236{word-spacing:-9.487800px;}
.ws2bb{word-spacing:-9.482400px;}
.ws299{word-spacing:-9.477000px;}
.ws286{word-spacing:-9.460800px;}
.ws29d{word-spacing:-9.455400px;}
.ws1d3{word-spacing:-9.450000px;}
.wsdf{word-spacing:-9.433800px;}
.ws268{word-spacing:-9.396000px;}
.ws24c{word-spacing:-9.390600px;}
.ws2b9{word-spacing:-9.363600px;}
.ws140{word-spacing:-9.358200px;}
.ws35e{word-spacing:-9.336600px;}
.ws18{word-spacing:-9.330000px;}
.ws340{word-spacing:-9.309600px;}
.ws2ca{word-spacing:-9.304200px;}
.ws27f{word-spacing:-9.298800px;}
.ws2ac{word-spacing:-9.293400px;}
.ws270{word-spacing:-9.288000px;}
.wsae{word-spacing:-9.282600px;}
.ws28e{word-spacing:-9.250200px;}
.ws229{word-spacing:-9.216000px;}
.ws124{word-spacing:-9.192000px;}
.ws198{word-spacing:-9.162000px;}
.ws59{word-spacing:-9.144000px;}
.ws1ba{word-spacing:-9.114000px;}
.ws17e{word-spacing:-9.108000px;}
.ws259{word-spacing:-9.104400px;}
.ws201{word-spacing:-9.102000px;}
.ws6{word-spacing:-9.099000px;}
.ws27d{word-spacing:-9.061200px;}
.ws227{word-spacing:-9.060000px;}
.ws168{word-spacing:-9.042000px;}
.ws2e5{word-spacing:-9.023400px;}
.ws99{word-spacing:-8.969400px;}
.wsd9{word-spacing:-8.915400px;}
.ws106{word-spacing:-8.910000px;}
.ws241{word-spacing:-8.834400px;}
.ws2a7{word-spacing:-8.829000px;}
.ws45{word-spacing:-8.808000px;}
.ws25b{word-spacing:-8.764200px;}
.ws131{word-spacing:-8.745491px;}
.wsc2{word-spacing:-8.721491px;}
.ws204{word-spacing:-8.718000px;}
.wsb7{word-spacing:-8.716691px;}
.ws144{word-spacing:-8.694000px;}
.ws13a{word-spacing:-8.692691px;}
.ws138{word-spacing:-8.687891px;}
.ws89{word-spacing:-8.683200px;}
.ws12c{word-spacing:-8.673492px;}
.wsb5{word-spacing:-8.654292px;}
.ws1d9{word-spacing:-8.652000px;}
.ws137{word-spacing:-8.649492px;}
.ws38{word-spacing:-8.646000px;}
.wsbc{word-spacing:-8.639892px;}
.wsb4{word-spacing:-8.635092px;}
.ws12b{word-spacing:-8.630292px;}
.ws13c{word-spacing:-8.625492px;}
.ws13e{word-spacing:-8.620692px;}
.wsc4{word-spacing:-8.615892px;}
.ws9a{word-spacing:-8.613000px;}
.wsc5{word-spacing:-8.611092px;}
.wsee{word-spacing:-8.610000px;}
.ws17{word-spacing:-8.592000px;}
.ws12e{word-spacing:-8.591893px;}
.wsbb{word-spacing:-8.587093px;}
.ws112{word-spacing:-8.586000px;}
.wsb2{word-spacing:-8.577493px;}
.wscb{word-spacing:-8.572693px;}
.ws135{word-spacing:-8.563093px;}
.ws36c{word-spacing:-8.553600px;}
.wsb6{word-spacing:-8.553493px;}
.ws12d{word-spacing:-8.543893px;}
.ws12f{word-spacing:-8.539093px;}
.ws73{word-spacing:-8.532000px;}
.ws13f{word-spacing:-8.529493px;}
.ws153{word-spacing:-8.520000px;}
.wsc9{word-spacing:-8.519893px;}
.wsc1{word-spacing:-8.515094px;}
.ws1c9{word-spacing:-8.514000px;}
.wsc8{word-spacing:-8.510294px;}
.wsed{word-spacing:-8.502000px;}
.wscc{word-spacing:-8.495894px;}
.wsf6{word-spacing:-8.490000px;}
.wsbd{word-spacing:-8.452694px;}
.wscd{word-spacing:-8.443094px;}
.ws16a{word-spacing:-8.442000px;}
.wsc7{word-spacing:-8.438295px;}
.wsec{word-spacing:-8.436000px;}
.wsb9{word-spacing:-8.433495px;}
.ws311{word-spacing:-8.424000px;}
.ws133{word-spacing:-8.414295px;}
.ws242{word-spacing:-8.413200px;}
.ws108{word-spacing:-8.412000px;}
.wsca{word-spacing:-8.409495px;}
.ws294{word-spacing:-8.386200px;}
.ws239{word-spacing:-8.353800px;}
.ws1c2{word-spacing:-8.352000px;}
.wsc0{word-spacing:-8.351896px;}
.wsbe{word-spacing:-8.327896px;}
.ws200{word-spacing:-8.316000px;}
.ws370{word-spacing:-8.310600px;}
.ws132{word-spacing:-8.308696px;}
.wsc6{word-spacing:-8.294296px;}
.wscf{word-spacing:-8.279897px;}
.ws2fa{word-spacing:-8.278200px;}
.ws1ff{word-spacing:-8.274000px;}
.wsa4{word-spacing:-8.256600px;}
.ws11{word-spacing:-8.250000px;}
.wsc3{word-spacing:-8.227097px;}
.ws1bd{word-spacing:-8.202000px;}
.ws37{word-spacing:-8.184000px;}
.ws1cd{word-spacing:-8.178000px;}
.ws184{word-spacing:-8.172000px;}
.ws275{word-spacing:-8.164800px;}
.ws255{word-spacing:-8.148600px;}
.ws21{word-spacing:-8.094000px;}
.ws103{word-spacing:-8.070000px;}
.ws1c0{word-spacing:-8.058000px;}
.ws37e{word-spacing:-8.040600px;}
.ws81{word-spacing:-7.998000px;}
.ws265{word-spacing:-7.992000px;}
.ws177{word-spacing:-7.878000px;}
.ws176{word-spacing:-7.842000px;}
.ws36e{word-spacing:-7.797600px;}
.ws2a{word-spacing:-7.794000px;}
.ws29{word-spacing:-7.770000px;}
.ws178{word-spacing:-7.758000px;}
.ws2c8{word-spacing:-7.743600px;}
.ws1f6{word-spacing:-7.740000px;}
.ws19b{word-spacing:-7.734000px;}
.ws336{word-spacing:-7.657200px;}
.ws1d6{word-spacing:-7.638000px;}
.ws26e{word-spacing:-7.522200px;}
.ws3b{word-spacing:-7.500000px;}
.ws28c{word-spacing:-7.435800px;}
.ws7c{word-spacing:-7.428000px;}
.ws35a{word-spacing:-7.425000px;}
.ws231{word-spacing:-7.403400px;}
.ws359{word-spacing:-7.344000px;}
.ws11e{word-spacing:-7.314000px;}
.ws205{word-spacing:-7.284000px;}
.ws23b{word-spacing:-7.263000px;}
.ws2a1{word-spacing:-7.219800px;}
.ws35f{word-spacing:-7.182000px;}
.ws5b{word-spacing:-7.128000px;}
.ws54{word-spacing:-7.116000px;}
.ws28f{word-spacing:-7.052400px;}
.ws32a{word-spacing:-7.030800px;}
.ws5c{word-spacing:-7.026000px;}
.ws23d{word-spacing:-7.014600px;}
.ws31d{word-spacing:-6.982200px;}
.ws324{word-spacing:-6.966000px;}
.ws32{word-spacing:-6.942436px;}
.ws2c{word-spacing:-6.936000px;}
.ws234{word-spacing:-6.890400px;}
.ws2cd{word-spacing:-6.814800px;}
.ws18a{word-spacing:-6.720000px;}
.ws2d{word-spacing:-6.678000px;}
.ws1bf{word-spacing:-6.672000px;}
.ws23e{word-spacing:-6.663600px;}
.ws6e{word-spacing:-6.660000px;}
.ws31f{word-spacing:-6.636600px;}
.ws2c5{word-spacing:-6.593400px;}
.ws78{word-spacing:-6.534000px;}
.wsd5{word-spacing:-6.480000px;}
.ws202{word-spacing:-6.474000px;}
.ws128{word-spacing:-6.450000px;}
.ws7a{word-spacing:-6.390000px;}
.ws164{word-spacing:-6.342000px;}
.ws1f1{word-spacing:-6.312000px;}
.ws8f{word-spacing:-6.280200px;}
.wsf5{word-spacing:-6.270000px;}
.wse6{word-spacing:-6.269400px;}
.ws170{word-spacing:-6.264000px;}
.ws344{word-spacing:-6.226200px;}
.wsf3{word-spacing:-6.132000px;}
.ws247{word-spacing:-6.102000px;}
.wsb1{word-spacing:-6.048000px;}
.ws51{word-spacing:-6.019200px;}
.wsf4{word-spacing:-6.012000px;}
.ws1f0{word-spacing:-5.988000px;}
.ws37a{word-spacing:-5.956200px;}
.ws2ef{word-spacing:-5.950800px;}
.ws305{word-spacing:-5.891400px;}
.ws271{word-spacing:-5.886000px;}
.ws20a{word-spacing:-5.832000px;}
.ws23{word-spacing:-5.802000px;}
.ws16c{word-spacing:-5.760000px;}
.ws67{word-spacing:-5.718000px;}
.ws40{word-spacing:-5.712000px;}
.ws291{word-spacing:-5.675400px;}
.ws213{word-spacing:-5.670000px;}
.ws18c{word-spacing:-5.652000px;}
.ws75{word-spacing:-5.646000px;}
.ws1fb{word-spacing:-5.628000px;}
.ws74{word-spacing:-5.604000px;}
.ws319{word-spacing:-5.540400px;}
.wsa{word-spacing:-5.524731px;}
.ws329{word-spacing:-5.421600px;}
.ws373{word-spacing:-5.416200px;}
.ws292{word-spacing:-5.389200px;}
.ws282{word-spacing:-5.367600px;}
.ws18f{word-spacing:-5.352000px;}
.wsd1{word-spacing:-5.329800px;}
.ws2fb{word-spacing:-5.319000px;}
.ws31c{word-spacing:-5.216400px;}
.ws28a{word-spacing:-5.194800px;}
.ws1c5{word-spacing:-5.190000px;}
.ws117{word-spacing:-5.136000px;}
.ws125{word-spacing:-5.118000px;}
.ws33f{word-spacing:-5.043600px;}
.ws33d{word-spacing:-5.022000px;}
.ws1a8{word-spacing:-4.962000px;}
.ws1b5{word-spacing:-4.944000px;}
.ws14{word-spacing:-4.932000px;}
.ws1b4{word-spacing:-4.926000px;}
.ws189{word-spacing:-4.860000px;}
.ws2b7{word-spacing:-4.827600px;}
.ws345{word-spacing:-4.822200px;}
.wsde{word-spacing:-4.762800px;}
.wsdd{word-spacing:-4.735800px;}
.ws34f{word-spacing:-4.719600px;}
.ws371{word-spacing:-4.681800px;}
.ws21a{word-spacing:-4.656000px;}
.ws34a{word-spacing:-4.654800px;}
.ws2b8{word-spacing:-4.627800px;}
.wsf1{word-spacing:-4.620000px;}
.ws2fd{word-spacing:-4.617000px;}
.ws17b{word-spacing:-4.572000px;}
.ws32e{word-spacing:-4.563000px;}
.ws20{word-spacing:-4.548600px;}
.ws352{word-spacing:-4.536000px;}
.ws2d3{word-spacing:-4.530600px;}
.ws1db{word-spacing:-4.434000px;}
.ws2d4{word-spacing:-4.368600px;}
.ws41{word-spacing:-4.356000px;}
.ws307{word-spacing:-4.314600px;}
.ws11f{word-spacing:-4.284000px;}
.ws7e{word-spacing:-4.266000px;}
.ws297{word-spacing:-4.260600px;}
.ws109{word-spacing:-4.194000px;}
.ws2f4{word-spacing:-4.152600px;}
.ws24f{word-spacing:-4.071600px;}
.ws7d{word-spacing:-4.002000px;}
.ws20e{word-spacing:-3.978000px;}
.ws20f{word-spacing:-3.960000px;}
.ws21e{word-spacing:-3.948000px;}
.ws218{word-spacing:-3.924000px;}
.ws321{word-spacing:-3.920400px;}
.ws21d{word-spacing:-3.912000px;}
.ws26d{word-spacing:-3.909600px;}
.ws210{word-spacing:-3.906000px;}
.ws369{word-spacing:-3.904200px;}
.ws16f{word-spacing:-3.876000px;}
.ws21c{word-spacing:-3.834000px;}
.ws212{word-spacing:-3.798000px;}
.ws318{word-spacing:-3.780000px;}
.ws1e1{word-spacing:-3.750000px;}
.ws1f{word-spacing:-3.726000px;}
.ws194{word-spacing:-3.660000px;}
.ws27a{word-spacing:-3.655800px;}
.ws216{word-spacing:-3.648000px;}
.ws16e{word-spacing:-3.642000px;}
.ws29e{word-spacing:-3.634200px;}
.ws16d{word-spacing:-3.612000px;}
.ws288{word-spacing:-3.601800px;}
.ws1f3{word-spacing:-3.594000px;}
.ws203{word-spacing:-3.588000px;}
.ws1e{word-spacing:-3.564000px;}
.ws2c9{word-spacing:-3.515400px;}
.ws296{word-spacing:-3.504600px;}
.ws295{word-spacing:-3.493800px;}
.ws24a{word-spacing:-3.477600px;}
.ws1a1{word-spacing:-3.468000px;}
.ws267{word-spacing:-3.466800px;}
.wsa5{word-spacing:-3.380400px;}
.ws2da{word-spacing:-3.353400px;}
.ws244{word-spacing:-3.348000px;}
.ws2b1{word-spacing:-3.342600px;}
.ws266{word-spacing:-3.321000px;}
.ws1f5{word-spacing:-3.318000px;}
.ws92{word-spacing:-3.310200px;}
.ws335{word-spacing:-3.299400px;}
.ws10b{word-spacing:-3.288000px;}
.ws284{word-spacing:-3.272400px;}
.ws154{word-spacing:-3.252000px;}
.ws101{word-spacing:-3.246000px;}
.ws342{word-spacing:-3.240000px;}
.ws28d{word-spacing:-3.234600px;}
.ws332{word-spacing:-3.207600px;}
.ws2{word-spacing:-3.182376px;}
.ws2b0{word-spacing:-3.175200px;}
.ws301{word-spacing:-3.164400px;}
.ws2a8{word-spacing:-3.153600px;}
.ws289{word-spacing:-3.121200px;}
.ws333{word-spacing:-3.105000px;}
.ws2e6{word-spacing:-3.040200px;}
.ws3{word-spacing:-3.018577px;}
.ws4{word-spacing:-3.010777px;}
.ws331{word-spacing:-3.002400px;}
.ws2e7{word-spacing:-2.975400px;}
.wse1{word-spacing:-2.959200px;}
.ws162{word-spacing:-2.958000px;}
.ws146{word-spacing:-2.916000px;}
.wsa2{word-spacing:-2.818800px;}
.ws25a{word-spacing:-2.813400px;}
.wse0{word-spacing:-2.791800px;}
.ws1e2{word-spacing:-2.760000px;}
.ws1c3{word-spacing:-2.598000px;}
.wsfa{word-spacing:-2.574000px;}
.ws2cc{word-spacing:-2.565000px;}
.ws2a3{word-spacing:-2.548800px;}
.wse3{word-spacing:-2.532600px;}
.ws174{word-spacing:-2.526000px;}
.wsa3{word-spacing:-2.424600px;}
.ws2c6{word-spacing:-2.408400px;}
.ws80{word-spacing:-2.322000px;}
.ws1cc{word-spacing:-2.316000px;}
.ws91{word-spacing:-2.289600px;}
.ws243{word-spacing:-2.273400px;}
.wse8{word-spacing:-2.251800px;}
.wsa6{word-spacing:-2.197800px;}
.ws1fe{word-spacing:-2.190000px;}
.ws3d{word-spacing:-2.130000px;}
.ws2f7{word-spacing:-2.111400px;}
.ws6b{word-spacing:-2.052000px;}
.ws2f9{word-spacing:-2.025000px;}
.ws274{word-spacing:-2.019600px;}
.ws5d{word-spacing:-2.004000px;}
.ws273{word-spacing:-1.987200px;}
.wsfc{word-spacing:-1.968000px;}
.ws197{word-spacing:-1.848000px;}
.ws35{word-spacing:-1.818000px;}
.ws72{word-spacing:-1.710000px;}
.ws1c6{word-spacing:-1.668000px;}
.ws209{word-spacing:-1.626000px;}
.ws2ad{word-spacing:-1.506600px;}
.ws36{word-spacing:-1.452000px;}
.ws348{word-spacing:-1.393200px;}
.ws150{word-spacing:-1.374000px;}
.ws285{word-spacing:-1.269000px;}
.ws11a{word-spacing:-1.260000px;}
.ws365{word-spacing:-1.242000px;}
.wsdc{word-spacing:-1.193400px;}
.ws24{word-spacing:-1.164000px;}
.wsdb{word-spacing:-1.053000px;}
.wsf9{word-spacing:-0.996000px;}
.ws23c{word-spacing:-0.950400px;}
.ws360{word-spacing:-0.918000px;}
.ws1dd{word-spacing:-0.894000px;}
.ws118{word-spacing:-0.768000px;}
.ws235{word-spacing:-0.750600px;}
.ws13{word-spacing:-0.510000px;}
.ws29b{word-spacing:-0.324000px;}
.ws127{word-spacing:-0.264000px;}
.ws28{word-spacing:-0.144000px;}
.ws6a{word-spacing:-0.108000px;}
.ws53{word-spacing:0.000000px;}
.ws272{word-spacing:0.113400px;}
.ws339{word-spacing:0.167400px;}
.ws5e{word-spacing:0.246000px;}
.ws36a{word-spacing:0.302400px;}
.ws2db{word-spacing:0.351000px;}
.ws322{word-spacing:0.361800px;}
.ws5f{word-spacing:0.420000px;}
.ws33b{word-spacing:0.426600px;}
.ws1cf{word-spacing:0.474000px;}
.ws6d{word-spacing:0.498000px;}
.ws300{word-spacing:0.523800px;}
.ws2f2{word-spacing:0.588600px;}
.ws1c4{word-spacing:0.594000px;}
.ws246{word-spacing:0.631800px;}
.ws116{word-spacing:0.654000px;}
.ws1e0{word-spacing:0.672000px;}
.ws1a2{word-spacing:0.714000px;}
.ws31b{word-spacing:0.734400px;}
.ws31a{word-spacing:0.815400px;}
.ws8e{word-spacing:0.858600px;}
.ws1e3{word-spacing:0.870000px;}
.ws1b{word-spacing:0.894000px;}
.ws314{word-spacing:1.031400px;}
.ws181{word-spacing:1.092000px;}
.ws2ae{word-spacing:1.117800px;}
.wsd3{word-spacing:1.263600px;}
.ws346{word-spacing:1.269000px;}
.ws350{word-spacing:1.377000px;}
.ws2b6{word-spacing:1.387800px;}
.ws175{word-spacing:1.404000px;}
.ws351{word-spacing:1.414800px;}
.ws32b{word-spacing:1.425600px;}
.ws180{word-spacing:1.434000px;}
.wsd4{word-spacing:1.485000px;}
.ws1b1{word-spacing:1.488000px;}
.ws32c{word-spacing:1.490400px;}
.ws1b0{word-spacing:1.494000px;}
.ws1f9{word-spacing:1.530000px;}
.ws25e{word-spacing:1.549800px;}
.ws1f8{word-spacing:1.554000px;}
.ws262{word-spacing:1.587600px;}
.ws30f{word-spacing:1.609200px;}
.ws1f7{word-spacing:1.782000px;}
.ws263{word-spacing:1.836000px;}
.ws261{word-spacing:1.927800px;}
.ws5a{word-spacing:1.956000px;}
.ws148{word-spacing:2.028000px;}
.ws1c8{word-spacing:2.136000px;}
.ws25c{word-spacing:2.203200px;}
.ws3c{word-spacing:2.238000px;}
.ws3e{word-spacing:2.262000px;}
.wsb0{word-spacing:2.322000px;}
.wsf7{word-spacing:2.370000px;}
.ws2d9{word-spacing:2.538000px;}
.ws283{word-spacing:2.581200px;}
.wsd6{word-spacing:2.716200px;}
.ws1e6{word-spacing:2.796000px;}
.ws29a{word-spacing:2.818800px;}
.ws2fe{word-spacing:2.889000px;}
.ws71{word-spacing:2.904000px;}
.ws343{word-spacing:2.921400px;}
.ws1a7{word-spacing:2.976000px;}
.ws2a9{word-spacing:2.997000px;}
.ws70{word-spacing:3.048000px;}
.wsef{word-spacing:3.072000px;}
.ws302{word-spacing:3.110400px;}
.ws193{word-spacing:3.222000px;}
.ws61{word-spacing:3.234000px;}
.ws60{word-spacing:3.300000px;}
.ws281{word-spacing:3.402000px;}
.ws2bf{word-spacing:3.434400px;}
.ws2c0{word-spacing:3.499200px;}
.ws2bd{word-spacing:3.531600px;}
.wsd{word-spacing:3.558000px;}
.ws2bc{word-spacing:3.564000px;}
.ws20b{word-spacing:3.666000px;}
.ws2be{word-spacing:3.677400px;}
.ws18d{word-spacing:3.726000px;}
.ws1eb{word-spacing:3.756000px;}
.ws2a2{word-spacing:3.828600px;}
.ws2f8{word-spacing:3.909600px;}
.ws2b5{word-spacing:3.990600px;}
.ws1b7{word-spacing:3.996000px;}
.ws1d{word-spacing:4.062000px;}
.wsb{word-spacing:4.176000px;}
.ws1a9{word-spacing:4.350000px;}
.ws1ea{word-spacing:4.380000px;}
.ws1e8{word-spacing:4.410000px;}
.ws58{word-spacing:4.416000px;}
.wsaf{word-spacing:4.590000px;}
.wse4{word-spacing:4.617000px;}
.ws126{word-spacing:4.638000px;}
.ws252{word-spacing:4.698000px;}
.ws250{word-spacing:4.730400px;}
.ws248{word-spacing:4.811400px;}
.ws10c{word-spacing:4.830000px;}
.ws36f{word-spacing:4.849200px;}
.ws1bb{word-spacing:4.878000px;}
.ws253{word-spacing:4.897800px;}
.ws8d{word-spacing:5.086800px;}
.ws82{word-spacing:5.124000px;}
.ws1bc{word-spacing:5.214000px;}
.ws225{word-spacing:5.226000px;}
.ws1ed{word-spacing:5.346000px;}
.ws223{word-spacing:5.352000px;}
.ws215{word-spacing:5.454000px;}
.ws366{word-spacing:5.610600px;}
.ws14e{word-spacing:5.814000px;}
.ws36b{word-spacing:5.842800px;}
.ws14c{word-spacing:5.910000px;}
.wsf8{word-spacing:5.928000px;}
.ws160{word-spacing:5.952000px;}
.wse2{word-spacing:5.967000px;}
.ws14d{word-spacing:5.976000px;}
.ws79{word-spacing:6.252000px;}
.ws2dc{word-spacing:6.345000px;}
.ws33a{word-spacing:6.350400px;}
.ws341{word-spacing:6.739200px;}
.ws2f5{word-spacing:6.825600px;}
.ws22{word-spacing:6.960000px;}
.ws19e{word-spacing:7.056000px;}
.ws93{word-spacing:7.192800px;}
.ws10d{word-spacing:7.212000px;}
.ws186{word-spacing:7.236000px;}
.wsa7{word-spacing:7.252200px;}
.ws3f{word-spacing:7.296000px;}
.ws1be{word-spacing:7.302000px;}
.ws278{word-spacing:7.597800px;}
.ws303{word-spacing:7.716600px;}
.ws4c{word-spacing:7.867800px;}
.ws25f{word-spacing:7.905600px;}
.ws260{word-spacing:8.024400px;}
.ws158{word-spacing:8.076000px;}
.ws378{word-spacing:8.137800px;}
.ws2f6{word-spacing:8.164800px;}
.ws25d{word-spacing:8.202600px;}
.ws2e3{word-spacing:8.208000px;}
.ws2df{word-spacing:8.245800px;}
.ws30c{word-spacing:8.262000px;}
.wsa0{word-spacing:8.267400px;}
.ws2c4{word-spacing:8.294400px;}
.ws2e1{word-spacing:8.299800px;}
.ws87{word-spacing:8.321400px;}
.ws2b3{word-spacing:8.326800px;}
.wsa1{word-spacing:8.343000px;}
.ws269{word-spacing:8.348400px;}
.ws35d{word-spacing:8.353800px;}
.ws30a{word-spacing:8.359200px;}
.ws88{word-spacing:8.364600px;}
.ws355{word-spacing:8.397000px;}
.ws29c{word-spacing:8.418600px;}
.ws317{word-spacing:8.424000px;}
.ws375{word-spacing:8.429400px;}
.ws30d{word-spacing:8.434800px;}
.ws362{word-spacing:8.445600px;}
.ws1d0{word-spacing:8.454000px;}
.ws257{word-spacing:8.461800px;}
.ws30e{word-spacing:8.478000px;}
.ws19d{word-spacing:8.490000px;}
.ws354{word-spacing:8.510400px;}
.ws2f0{word-spacing:8.521200px;}
.ws2fc{word-spacing:8.526600px;}
.ws26c{word-spacing:8.537400px;}
.ws2e0{word-spacing:8.553600px;}
.ws316{word-spacing:8.564400px;}
.ws2c3{word-spacing:8.596800px;}
.ws2de{word-spacing:8.602200px;}
.ws34e{word-spacing:8.650800px;}
.ws30b{word-spacing:8.661600px;}
.ws277{word-spacing:8.683200px;}
.ws143{word-spacing:8.790000px;}
.ws43{word-spacing:8.970000px;}
.ws17a{word-spacing:9.132000px;}
.ws173{word-spacing:9.138000px;}
.ws1ad{word-spacing:9.150000px;}
.ws1ae{word-spacing:9.156000px;}
.ws152{word-spacing:9.162000px;}
.ws19f{word-spacing:9.180000px;}
.ws1d8{word-spacing:9.186000px;}
.ws191{word-spacing:9.216000px;}
.ws27{word-spacing:9.222000px;}
.ws7b{word-spacing:9.228000px;}
.ws3a{word-spacing:9.246000px;}
.ws1e5{word-spacing:9.252000px;}
.ws17d{word-spacing:9.258000px;}
.ws17c{word-spacing:9.270000px;}
.ws1fa{word-spacing:9.276000px;}
.ws192{word-spacing:9.312000px;}
.ws17f{word-spacing:9.318000px;}
.ws105{word-spacing:9.324000px;}
.ws1ee{word-spacing:9.330000px;}
.wsf0{word-spacing:9.342000px;}
.ws185{word-spacing:9.348000px;}
.ws220{word-spacing:9.378000px;}
.ws11d{word-spacing:9.384000px;}
.ws222{word-spacing:9.396000px;}
.ws10{word-spacing:9.408000px;}
.ws56{word-spacing:9.420000px;}
.ws57{word-spacing:9.426000px;}
.ws69{word-spacing:9.480000px;}
.ws42{word-spacing:9.606000px;}
.ws224{word-spacing:10.392000px;}
.ws251{word-spacing:10.648800px;}
.ws249{word-spacing:10.897200px;}
.ws2ed{word-spacing:11.728800px;}
.ws221{word-spacing:14.136000px;}
.ws2e8{word-spacing:14.396400px;}
.ws315{word-spacing:14.401800px;}
.ws2e2{word-spacing:14.418000px;}
.ws308{word-spacing:14.455800px;}
.ws2e9{word-spacing:14.466600px;}
.ws2c2{word-spacing:14.472000px;}
.ws2b4{word-spacing:14.526000px;}
.ws2dd{word-spacing:14.553000px;}
.ws256{word-spacing:14.585400px;}
.ws374{word-spacing:14.617800px;}
.ws309{word-spacing:14.725800px;}
.ws4b{word-spacing:22.879800px;}
.ws12a{word-spacing:23.591705px;}
.ws48{word-spacing:27.847800px;}
.wsb8{word-spacing:40.353096px;}
.ws4a{word-spacing:54.361800px;}
.wsb3{word-spacing:79.837402px;}
.wsba{word-spacing:119.120111px;}
.wsbf{word-spacing:189.871227px;}
.wsce{word-spacing:277.662129px;}
.ws9{word-spacing:547.055400px;}
.ws9f{word-spacing:873.829077px;}
.ws13d{word-spacing:1109.741328px;}
.ws13b{word-spacing:1117.906026px;}
._10{margin-left:-2981.957925px;}
._73{margin-left:-7.591210px;}
._75{margin-left:-6.393600px;}
._76{margin-left:-2.691010px;}
._0{margin-left:-1.294790px;}
._72{width:1.990200px;}
._4c{width:9.811077px;}
._60{width:10.982263px;}
._11{width:13.456800px;}
._2{width:15.402000px;}
._a{width:16.446000px;}
._4{width:18.150000px;}
._74{width:19.164600px;}
._8{width:20.226000px;}
._d{width:21.324000px;}
._7{width:22.362000px;}
._3{width:23.394000px;}
._c{width:24.498000px;}
._13{width:25.554000px;}
._6{width:26.724000px;}
._17{width:28.533600px;}
._e{width:29.616000px;}
._5{width:31.470000px;}
._9{width:32.754000px;}
._3f{width:34.646400px;}
._14{width:36.744000px;}
._15{width:37.854000px;}
._f{width:39.144000px;}
._b{width:41.376000px;}
._70{width:42.390000px;}
._2b{width:59.749653px;}
._44{width:70.880714px;}
._33{width:72.824690px;}
._24{width:77.576630px;}
._26{width:79.164005px;}
._71{width:80.394000px;}
._31{width:82.899764px;}
._54{width:84.090149px;}
._43{width:88.074099px;}
._29{width:89.960475px;}
._12{width:99.092280px;}
._5f{width:100.841939px;}
._5b{width:101.965125px;}
._4e{width:105.757078px;}
._37{width:113.273784px;}
._58{width:117.209735px;}
._5e{width:126.521618px;}
._5c{width:128.729591px;}
._52{width:130.985563px;}
._49{width:134.291316px;}
._61{width:138.041474px;}
._25{width:143.551806px;}
._5a{width:154.409270px;}
._1e{width:157.385233px;}
._47{width:161.081186px;}
._1b{width:172.197847px;}
._18{width:178.024975px;}
._68{width:195.976750px;}
._3b{width:204.117449px;}
._34{width:206.637417px;}
._40{width:207.779803px;}
._6c{width:214.312521px;}
._22{width:218.502869px;}
._1c{width:221.411632px;}
._4d{width:227.080361px;}
._66{width:252.904039px;}
._1f{width:258.587168px;}
._65{width:261.687929px;}
._23{width:271.239809px;}
._4b{width:274.743766px;}
._2f{width:297.010687px;}
._27{width:302.650617px;}
._5d{width:317.084036px;}
._35{width:343.690104px;}
._21{width:350.050024px;}
._50{width:389.894326px;}
._59{width:394.494684px;}
._3d{width:400.281396px;}
._2d{width:404.937338px;}
._6e{width:406.070124px;}
._2a{width:410.610867px;}
._63{width:414.230022px;}
._62{width:417.445982px;}
._57{width:471.761281px;}
._1d{width:490.072468px;}
._2c{width:561.405782px;}
._1a{width:618.155473px;}
._19{width:640.859189px;}
._28{width:763.176060px;}
._20{width:812.994637px;}
._48{width:825.356472px;}
._46{width:854.864184px;}
._16{width:859.205400px;}
._1{width:908.857763px;}
._53{width:928.399595px;}
._45{width:932.190142px;}
._36{width:937.625080px;}
._41{width:951.511306px;}
._38{width:952.543293px;}
._3a{width:983.166910px;}
._39{width:995.646754px;}
._42{width:997.091536px;}
._2e{width:1000.173098px;}
._30{width:1007.195410px;}
._32{width:1082.045674px;}
._64{width:1148.791321px;}
._4a{width:1211.168860px;}
._56{width:1214.623506px;}
._55{width:1266.243372px;}
._3c{width:1269.876926px;}
._6f{width:1360.970188px;}
._3e{width:1378.417970px;}
._67{width:1491.263153px;}
._6a{width:1553.398377px;}
._69{width:1566.129223px;}
._6b{width:1579.030056px;}
._51{width:1605.935126px;}
._4f{width:1710.938613px;}
._6d{width:1775.085011px;}
.fc4{color:rgb(209,163,84);}
.fc3{color:rgb(64,148,209);}
.fc2{color:rgb(31,76,161);}
.fc6{color:rgb(0,25,255);}
.fc1{color:rgb(13,84,166);}
.fc5{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsf{font-size:32.158200px;}
.fse{font-size:35.995200px;}
.fsb{font-size:36.000000px;}
.fs9{font-size:37.800000px;}
.fs7{font-size:39.995400px;}
.fs8{font-size:40.199400px;}
.fsc{font-size:42.000000px;}
.fsa{font-size:44.999400px;}
.fs4{font-size:47.999400px;}
.fsd{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs11{font-size:57.000000px;}
.fs5{font-size:60.000000px;}
.fs6{font-size:63.000000px;}
.fs1{font-size:77.999400px;}
.fs3{font-size:90.000000px;}
.fs0{font-size:101.999400px;}
.fs10{font-size:192.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:13.436250px;}
.yb0{bottom:22.621350px;}
.y51{bottom:27.553650px;}
.yaf{bottom:32.399850px;}
.y4f{bottom:35.207040px;}
.y50{bottom:37.332150px;}
.y4e{bottom:43.880250px;}
.yf8{bottom:59.952450px;}
.y1e5{bottom:59.953050px;}
.yaa{bottom:59.953200px;}
.y25c{bottom:59.953350px;}
.y85{bottom:59.953800px;}
.yb9{bottom:59.953950px;}
.y29b{bottom:59.954100px;}
.y1a0{bottom:59.954250px;}
.y10b{bottom:59.955750px;}
.y22f{bottom:60.039750px;}
.y38{bottom:68.712300px;}
.ya9{bottom:74.834250px;}
.y29a{bottom:75.005250px;}
.y364{bottom:75.175050px;}
.y2df{bottom:75.175350px;}
.y321{bottom:75.770400px;}
.yb8{bottom:76.365900px;}
.y25b{bottom:76.450350px;}
.y1e4{bottom:76.451550px;}
.yc0{bottom:76.536000px;}
.y19f{bottom:76.536750px;}
.y10a{bottom:76.877250px;}
.y122{bottom:77.219250px;}
.y84{bottom:77.470800px;}
.y82{bottom:77.472750px;}
.yf7{bottom:78.405600px;}
.y134{bottom:79.089750px;}
.y83{bottom:84.103800px;}
.y37{bottom:86.655300px;}
.ya8{bottom:89.716650px;}
.y299{bottom:89.972700px;}
.y363{bottom:90.397650px;}
.y2de{bottom:90.397950px;}
.y320{bottom:91.503300px;}
.ybf{bottom:92.268900px;}
.yb7{bottom:92.779200px;}
.y1e3{bottom:92.948550px;}
.y19e{bottom:93.035250px;}
.y22e{bottom:93.714750px;}
.y109{bottom:93.800250px;}
.y121{bottom:94.482750px;}
.y81{bottom:94.905750px;}
.yf6{bottom:96.860100px;}
.y25a{bottom:97.455000px;}
.y133{bottom:98.138250px;}
.ya7{bottom:104.514000px;}
.y36{bottom:104.598300px;}
.y34{bottom:104.599050px;}
.y298{bottom:104.940150px;}
.y362{bottom:105.365100px;}
.y2dd{bottom:105.535500px;}
.y31f{bottom:106.469400px;}
.y4c{bottom:107.405400px;}
.ybe{bottom:108.765900px;}
.yb6{bottom:109.106100px;}
.y1e2{bottom:109.445550px;}
.y19d{bottom:109.617750px;}
.y22d{bottom:110.552250px;}
.y108{bottom:110.723250px;}
.y35{bottom:111.231450px;}
.y120{bottom:111.744750px;}
.y80{bottom:112.338750px;}
.yf5{bottom:115.228200px;}
.y132{bottom:117.272250px;}
.ya6{bottom:119.395050px;}
.y297{bottom:119.991300px;}
.y2dc{bottom:120.501600px;}
.y361{bottom:120.586350px;}
.y31e{bottom:122.287350px;}
.y33{bottom:122.456550px;}
.y31{bottom:122.457750px;}
.y4b{bottom:123.903750px;}
.y259{bottom:124.752750px;}
.ybd{bottom:125.347950px;}
.ybb{bottom:125.348250px;}
.yb5{bottom:125.518050px;}
.yb3{bottom:125.518350px;}
.y1e0{bottom:125.945250px;}
.y19c{bottom:126.114750px;}
.y22c{bottom:127.389750px;}
.y107{bottom:127.560750px;}
.y11f{bottom:129.008250px;}
.y32{bottom:129.174750px;}
.y7f{bottom:129.771750px;}
.ybc{bottom:131.300700px;}
.yb4{bottom:131.470800px;}
.y1e1{bottom:132.661350px;}
.yf4{bottom:133.681350px;}
.ya5{bottom:134.192400px;}
.y296{bottom:134.958750px;}
.y360{bottom:135.723900px;}
.y2db{bottom:135.724200px;}
.y131{bottom:136.406250px;}
.y31d{bottom:138.020250px;}
.y30{bottom:140.400750px;}
.y258{bottom:141.251250px;}
.yba{bottom:141.844950px;}
.yb1{bottom:141.845250px;}
.y1df{bottom:142.442250px;}
.y19b{bottom:142.697250px;}
.y22b{bottom:144.227250px;}
.y106{bottom:144.483750px;}
.y11e{bottom:146.270250px;}
.y7e{bottom:147.204750px;}
.yb2{bottom:147.882750px;}
.ya4{bottom:149.074800px;}
.y295{bottom:150.011250px;}
.y35f{bottom:150.775050px;}
.y2da{bottom:150.945450px;}
.yf3{bottom:152.135850px;}
.y31c{bottom:153.836850px;}
.y130{bottom:155.454750px;}
.y4a{bottom:156.897750px;}
.y257{bottom:157.748250px;}
.y2f{bottom:158.343750px;}
.y1de{bottom:158.939250px;}
.y19a{bottom:159.194250px;}
.y198{bottom:159.195750px;}
.y229{bottom:161.064750px;}
.y105{bottom:161.406750px;}
.y11d{bottom:163.448250px;}
.ya3{bottom:163.955850px;}
.y7d{bottom:164.636250px;}
.y7b{bottom:164.637750px;}
.y294{bottom:164.977350px;}
.y199{bottom:165.827250px;}
.y35e{bottom:165.912600px;}
.y2d9{bottom:165.912900px;}
.y22a{bottom:167.783250px;}
.y31b{bottom:168.804300px;}
.yf2{bottom:170.589000px;}
.y7c{bottom:171.354750px;}
.ye2{bottom:172.629750px;}
.y256{bottom:174.245250px;}
.y12f{bottom:174.588750px;}
.y1dc{bottom:175.521750px;}
.y197{bottom:175.778250px;}
.y2e{bottom:176.286750px;}
.y2c{bottom:176.288250px;}
.y228{bottom:177.903750px;}
.y104{bottom:178.329750px;}
.ya2{bottom:178.753200px;}
.y293{bottom:179.944800px;}
.y11c{bottom:180.711750px;}
.y35d{bottom:181.135200px;}
.y2d8{bottom:181.135500px;}
.y1dd{bottom:182.154750px;}
.y7a{bottom:182.156250px;}
.y2d{bottom:183.005250px;}
.y31a{bottom:184.535850px;}
.yf1{bottom:188.957100px;}
.y1db{bottom:192.020250px;}
.y196{bottom:192.275250px;}
.ya1{bottom:193.634250px;}
.y12e{bottom:193.637250px;}
.y2b{bottom:194.231250px;}
.y227{bottom:194.825250px;}
.y292{bottom:194.995950px;}
.y49{bottom:195.167250px;}
.y255{bottom:195.249750px;}
.y35c{bottom:196.271400px;}
.y2d7{bottom:196.271700px;}
.y11b{bottom:197.973750px;}
.y79{bottom:199.589250px;}
.y319{bottom:200.353800px;}
.yef{bottom:207.410250px;}
.ya0{bottom:208.516650px;}
.y1da{bottom:208.517250px;}
.y195{bottom:208.857750px;}
.y254{bottom:209.111250px;}
.y291{bottom:209.963400px;}
.y35b{bottom:211.323900px;}
.y2d6{bottom:211.494300px;}
.y226{bottom:211.662750px;}
.y224{bottom:211.664250px;}
.y103{bottom:212.090250px;}
.y2a{bottom:212.174250px;}
.y48{bottom:212.175750px;}
.y12d{bottom:212.771250px;}
.yf0{bottom:213.449250px;}
.y11a{bottom:215.237250px;}
.y318{bottom:216.085350px;}
.y78{bottom:217.022250px;}
.y225{bottom:218.295750px;}
.y9f{bottom:223.314000px;}
.yed{bottom:224.078850px;}
.y1d9{bottom:225.014250px;}
.y1d7{bottom:225.015750px;}
.y290{bottom:225.015900px;}
.y194{bottom:225.354750px;}
.y35a{bottom:226.460100px;}
.y2d5{bottom:226.460400px;}
.y223{bottom:228.501750px;}
.y102{bottom:229.011750px;}
.y47{bottom:229.268250px;}
.yee{bottom:230.031750px;}
.y28{bottom:230.117250px;}
.y317{bottom:231.137850px;}
.y1d8{bottom:231.647250px;}
.y12c{bottom:231.819750px;}
.y119{bottom:232.500750px;}
.y77{bottom:234.455250px;}
.y29{bottom:236.750250px;}
.y9e{bottom:238.195050px;}
.y28f{bottom:239.982000px;}
.y1d6{bottom:241.512750px;}
.y359{bottom:241.682700px;}
.y2d4{bottom:241.683000px;}
.y193{bottom:241.937250px;}
.y191{bottom:241.938750px;}
.yec{bottom:242.446950px;}
.y222{bottom:245.339250px;}
.y253{bottom:245.850750px;}
.y101{bottom:245.934750px;}
.y46{bottom:246.360750px;}
.y316{bottom:246.869400px;}
.y27{bottom:248.060250px;}
.y192{bottom:248.570250px;}
.y118{bottom:249.762750px;}
.y12b{bottom:250.953750px;}
.y76{bottom:251.888250px;}
.y9d{bottom:252.992400px;}
.y28e{bottom:254.949450px;}
.y2d3{bottom:256.820550px;}
.y358{bottom:256.905300px;}
.y1d4{bottom:258.009750px;}
.y190{bottom:258.435750px;}
.yeb{bottom:260.900100px;}
.y221{bottom:262.176750px;}
.y252{bottom:262.347750px;}
.y315{bottom:262.602300px;}
.y100{bottom:262.772250px;}
.y45{bottom:263.369250px;}
.y1d5{bottom:264.642750px;}
.y25{bottom:266.003250px;}
.y117{bottom:266.600250px;}
.y9c{bottom:267.874800px;}
.y75{bottom:269.406750px;}
.y28d{bottom:270.000600px;}
.y12a{bottom:270.002250px;}
.y2d2{bottom:271.786650px;}
.y357{bottom:271.871400px;}
.y26{bottom:272.636250px;}
.y1d3{bottom:274.506750px;}
.y18f{bottom:275.018250px;}
.y314{bottom:278.420250px;}
.y251{bottom:278.846250px;}
.y220{bottom:279.014250px;}
.y21e{bottom:279.015750px;}
.yea{bottom:279.354600px;}
.yff{bottom:279.695250px;}
.y44{bottom:280.461750px;}
.y9b{bottom:282.755850px;}
.y116{bottom:283.863750px;}
.y24{bottom:283.946250px;}
.y28c{bottom:284.968050px;}
.y21f{bottom:285.732750px;}
.y74{bottom:286.839750px;}
.y2d1{bottom:287.009250px;}
.y356{bottom:287.094000px;}
.y129{bottom:289.136250px;}
.y18e{bottom:291.515250px;}
.y313{bottom:293.386350px;}
.y250{bottom:295.343250px;}
.y21d{bottom:295.853250px;}
.y1d2{bottom:296.021250px;}
.yfe{bottom:296.618250px;}
.y9a{bottom:297.553200px;}
.y43{bottom:297.554250px;}
.ye9{bottom:297.807750px;}
.y28b{bottom:300.020550px;}
.y115{bottom:301.127250px;}
.y22{bottom:301.890750px;}
.y355{bottom:302.060100px;}
.y2d0{bottom:302.230500px;}
.y73{bottom:304.272750px;}
.y18d{bottom:308.097750px;}
.y18b{bottom:308.099250px;}
.y128{bottom:308.184750px;}
.y23{bottom:308.522250px;}
.y312{bottom:309.119250px;}
.y24f{bottom:311.840250px;}
.y99{bottom:312.434250px;}
.y21c{bottom:312.776250px;}
.yfd{bottom:313.541250px;}
.y42{bottom:314.562750px;}
.y18c{bottom:314.730750px;}
.y28a{bottom:314.986650px;}
.ye8{bottom:316.175850px;}
.y354{bottom:317.197650px;}
.y2cf{bottom:317.197950px;}
.y114{bottom:318.389250px;}
.y21{bottom:319.835250px;}
.y72{bottom:321.705750px;}
.y18a{bottom:324.596250px;}
.y311{bottom:324.935850px;}
.y127{bottom:326.042250px;}
.y24e{bottom:328.338750px;}
.y1d1{bottom:328.508250px;}
.y21b{bottom:329.613750px;}
.y289{bottom:329.954100px;}
.yfc{bottom:330.378750px;}
.y41{bottom:331.655250px;}
.y2ce{bottom:332.335500px;}
.y353{bottom:332.420250px;}
.y98{bottom:333.525750px;}
.ye7{bottom:334.630350px;}
.y113{bottom:335.652750px;}
.y20{bottom:337.778250px;}
.y71{bottom:339.137250px;}
.y310{bottom:339.903300px;}
.y189{bottom:341.178750px;}
.y24d{bottom:344.835750px;}
.y1d0{bottom:345.005250px;}
.y126{bottom:345.092250px;}
.y21a{bottom:346.451250px;}
.yfb{bottom:347.301750px;}
.y352{bottom:347.386350px;}
.y2cd{bottom:347.556750px;}
.y40{bottom:348.747750px;}
.y97{bottom:350.787750px;}
.y112{bottom:352.830750px;}
.ye6{bottom:353.083500px;}
.y1f{bottom:355.635750px;}
.y30f{bottom:355.719900px;}
.y6f{bottom:356.145750px;}
.y54{bottom:357.195000px;}
.y188{bottom:357.677250px;}
.y288{bottom:359.972700px;}
.y24c{bottom:361.332750px;}
.y1cf{bottom:361.502250px;}
.y2cc{bottom:362.524200px;}
.y351{bottom:362.608950px;}
.y70{bottom:362.777250px;}
.y219{bottom:363.288750px;}
.yfa{bottom:364.223250px;}
.y125{bottom:364.224750px;}
.y3f{bottom:365.756250px;}
.y111{bottom:369.752250px;}
.ye5{bottom:371.451600px;}
.y30e{bottom:371.452800px;}
.y1e{bottom:373.578750px;}
.y187{bottom:374.259750px;}
.y287{bottom:375.025200px;}
.y350{bottom:377.575050px;}
.y2cb{bottom:377.745450px;}
.y24b{bottom:377.831250px;}
.y1ce{bottom:378.000750px;}
.y218{bottom:380.126250px;}
.y3e{bottom:382.848750px;}
.y124{bottom:383.274750px;}
.y96{bottom:386.846250px;}
.y110{bottom:387.015750px;}
.y30d{bottom:387.184350px;}
.yf9{bottom:387.693750px;}
.ye3{bottom:389.904750px;}
.y286{bottom:389.991300px;}
.y186{bottom:390.756750px;}
.y6e{bottom:391.010250px;}
.y1d{bottom:391.521750px;}
.y34f{bottom:392.797650px;}
.y2ca{bottom:392.968050px;}
.y24a{bottom:394.328250px;}
.y1cd{bottom:394.497750px;}
.ye4{bottom:395.943750px;}
.y217{bottom:396.963750px;}
.y3d{bottom:399.941250px;}
.y123{bottom:402.407250px;}
.y30c{bottom:403.002300px;}
.y95{bottom:403.343250px;}
.y10f{bottom:404.279250px;}
.y285{bottom:404.958750px;}
.y53{bottom:405.030000px;}
.y185{bottom:407.339250px;}
.y2c9{bottom:407.935500px;}
.y34e{bottom:408.020250px;}
.y6c{bottom:408.444750px;}
.y1c{bottom:409.464750px;}
.y249{bottom:410.825250px;}
.y1ca{bottom:410.993250px;}
.y1cc{bottom:410.994750px;}
.y215{bottom:413.631750px;}
.y6d{bottom:415.161750px;}
.y3a{bottom:416.944800px;}
.y3c{bottom:416.948250px;}
.y1cb{bottom:417.627750px;}
.y30b{bottom:417.969750px;}
.y94{bottom:419.840250px;}
.y284{bottom:420.011250px;}
.y216{bottom:420.348750px;}
.y10d{bottom:420.690150px;}
.y10e{bottom:421.455750px;}
.y34d{bottom:422.986350px;}
.y2c8{bottom:423.071700px;}
.y3b{bottom:423.665250px;}
.y184{bottom:423.836250px;}
.y6b{bottom:425.961750px;}
.y69{bottom:425.963250px;}
.y248{bottom:427.323750px;}
.y1c9{bottom:427.491750px;}
.y214{bottom:430.554750px;}
.y6a{bottom:432.594750px;}
.y1b{bottom:433.445250px;}
.y30a{bottom:433.786350px;}
.y39{bottom:434.037300px;}
.y283{bottom:434.977350px;}
.y10c{bottom:435.656250px;}
.y93{bottom:436.338750px;}
.y34c{bottom:438.208950px;}
.y2c7{bottom:438.294300px;}
.y183{bottom:440.418750px;}
.y67{bottom:443.394750px;}
.y247{bottom:443.820750px;}
.y1c8{bottom:443.988750px;}
.y213{bottom:447.392250px;}
.y309{bottom:449.519250px;}
.y282{bottom:449.944800px;}
.y68{bottom:450.027750px;}
.y92{bottom:452.835750px;}
.y2c6{bottom:453.260400px;}
.y34b{bottom:453.345150px;}
.y15c{bottom:453.770250px;}
.y15b{bottom:459.722250px;}
.y246{bottom:460.317750px;}
.y244{bottom:460.319250px;}
.y1c7{bottom:460.485750px;}
.y66{bottom:460.827750px;}
.y64{bottom:460.829250px;}
.y182{bottom:463.634250px;}
.y212{bottom:464.229750px;}
.y281{bottom:464.995950px;}
.y308{bottom:465.250800px;}
.y245{bottom:467.036250px;}
.y65{bottom:467.460750px;}
.y2c5{bottom:468.483000px;}
.y34a{bottom:468.567750px;}
.y91{bottom:469.332750px;}
.y15a{bottom:473.247302px;}
.y243{bottom:476.816250px;}
.y1c6{bottom:476.984250px;}
.y63{bottom:478.260750px;}
.y61{bottom:478.262250px;}
.y280{bottom:479.963400px;}
.y211{bottom:481.067250px;}
.y307{bottom:481.068750px;}
.y349{bottom:483.535200px;}
.y2c4{bottom:483.620550px;}
.y62{bottom:484.979250px;}
.y90{bottom:485.831250px;}
.y1a{bottom:485.832750px;}
.y159{bottom:489.660697px;}
.y242{bottom:493.313250px;}
.y1c5{bottom:493.481250px;}
.y27f{bottom:495.015900px;}
.y60{bottom:495.693750px;}
.y5e{bottom:495.695250px;}
.y306{bottom:496.034850px;}
.y210{bottom:497.904750px;}
.y20e{bottom:497.906250px;}
.y348{bottom:498.756450px;}
.y2c3{bottom:498.841800px;}
.y181{bottom:501.140250px;}
.y8f{bottom:502.328250px;}
.y19{bottom:502.329750px;}
.y5f{bottom:502.412250px;}
.y20f{bottom:504.539250px;}
.y158{bottom:506.072891px;}
.y1c4{bottom:509.978250px;}
.y27e{bottom:509.982000px;}
.y305{bottom:511.767750px;}
.y5d{bottom:513.128250px;}
.y2c2{bottom:513.809250px;}
.y347{bottom:513.894000px;}
.y20d{bottom:514.743750px;}
.y180{bottom:517.722750px;}
.y8e{bottom:518.825250px;}
.y157{bottom:522.485086px;}
.y18{bottom:523.334250px;}
.y27d{bottom:524.949450px;}
.y1c3{bottom:526.476750px;}
.y304{bottom:527.584350px;}
.y25f{bottom:528.349650px;}
.y346{bottom:528.945150px;}
.y2c1{bottom:529.030500px;}
.y5c{bottom:530.646750px;}
.y20c{bottom:531.581250px;}
.y17f{bottom:534.221250px;}
.y8d{bottom:535.323750px;}
.y156{bottom:538.897281px;}
.y17{bottom:539.832750px;}
.y27c{bottom:540.000600px;}
.y1c2{bottom:542.973750px;}
.y25e{bottom:543.317100px;}
.y303{bottom:543.317250px;}
.y345{bottom:544.082700px;}
.y2c0{bottom:544.253100px;}
.y5b{bottom:548.079750px;}
.y20b{bottom:548.504250px;}
.y17e{bottom:550.803750px;}
.y8c{bottom:551.820750px;}
.y27b{bottom:554.968050px;}
.y155{bottom:555.310676px;}
.y16{bottom:556.329750px;}
.y25d{bottom:558.368250px;}
.y302{bottom:559.135200px;}
.y344{bottom:559.305300px;}
.y2bf{bottom:559.390650px;}
.y1c1{bottom:559.470750px;}
.y20a{bottom:565.341750px;}
.y5a{bottom:565.512750px;}
.y17d{bottom:567.300750px;}
.y89{bottom:568.314300px;}
.y8b{bottom:568.317750px;}
.y27a{bottom:570.020550px;}
.y154{bottom:571.722871px;}
.y15{bottom:572.828250px;}
.y2be{bottom:574.356750px;}
.y343{bottom:574.526550px;}
.y301{bottom:574.866750px;}
.y8a{bottom:575.036250px;}
.y1c0{bottom:575.969250px;}
.y208{bottom:582.179250px;}
.y59{bottom:582.944250px;}
.y57{bottom:582.945750px;}
.y17c{bottom:583.883250px;}
.y88{bottom:584.811300px;}
.y279{bottom:584.986650px;}
.y153{bottom:588.135066px;}
.y209{bottom:588.812250px;}
.y14{bottom:589.325250px;}
.y342{bottom:589.494000px;}
.y2bd{bottom:589.579350px;}
.y58{bottom:589.662750px;}
.y300{bottom:589.834200px;}
.y1bf{bottom:592.466250px;}
.y207{bottom:599.016750px;}
.y278{bottom:599.954100px;}
.y56{bottom:600.378750px;}
.y17b{bottom:600.380250px;}
.y87{bottom:601.393800px;}
.y152{bottom:604.548460px;}
.y341{bottom:604.630200px;}
.y2bc{bottom:604.800600px;}
.y2ff{bottom:605.650800px;}
.y13{bottom:605.822250px;}
.y1be{bottom:608.963250px;}
.y277{bottom:615.005250px;}
.y206{bottom:615.854250px;}
.y17a{bottom:616.964250px;}
.y86{bottom:617.892300px;}
.y55{bottom:617.895750px;}
.y2bb{bottom:619.766700px;}
.y340{bottom:619.852800px;}
.y151{bottom:620.960655px;}
.y2fe{bottom:621.383700px;}
.y12{bottom:622.320750px;}
.y1bd{bottom:625.461750px;}
.y276{bottom:629.036250px;}
.ye1{bottom:632.267250px;}
.y204{bottom:632.693250px;}
.y179{bottom:633.461250px;}
.y2ba{bottom:634.904250px;}
.y33f{bottom:635.075400px;}
.y2fd{bottom:637.115250px;}
.y150{bottom:637.372850px;}
.ye0{bottom:638.304750px;}
.y11{bottom:638.817750px;}
.y205{bottom:639.410250px;}
.y1bc{bottom:641.958750px;}
.y203{bottom:649.532250px;}
.y33e{bottom:650.041500px;}
.y178{bottom:650.043750px;}
.y2b9{bottom:650.125500px;}
.yad{bottom:650.125650px;}
.ydf{bottom:651.829218px;}
.y2fc{bottom:652.933200px;}
.y14f{bottom:653.785045px;}
.y10{bottom:655.314750px;}
.y1bb{bottom:658.455750px;}
.y2b8{bottom:665.092950px;}
.yac{bottom:665.093100px;}
.y33d{bottom:665.264100px;}
.y202{bottom:666.369750px;}
.y177{bottom:666.540750px;}
.y275{bottom:667.560750px;}
.yde{bottom:668.241413px;}
.y2fb{bottom:668.664750px;}
.y14e{bottom:670.113241px;}
.yf{bottom:671.813250px;}
.y1ba{bottom:674.954250px;}
.yab{bottom:680.144250px;}
.y2b7{bottom:680.314200px;}
.y33c{bottom:680.400300px;}
.y176{bottom:683.039250px;}
.y201{bottom:683.291250px;}
.y2fa{bottom:683.717250px;}
.y274{bottom:684.057750px;}
.ydd{bottom:684.568409px;}
.y14d{bottom:686.525436px;}
.ye{bottom:688.310250px;}
.y1b9{bottom:691.451250px;}
.y2b6{bottom:695.281650px;}
.y33b{bottom:695.452800px;}
.ydc{bottom:696.643858px;}
.y14c{bottom:698.600885px;}
.y2f9{bottom:699.450150px;}
.y175{bottom:699.621750px;}
.y1ff{bottom:699.962250px;}
.y273{bottom:700.554750px;}
.yd{bottom:704.807250px;}
.y200{bottom:706.592250px;}
.y1b8{bottom:707.949750px;}
.y2b5{bottom:710.504250px;}
.y33a{bottom:710.590350px;}
.ydb{bottom:713.057253px;}
.y14b{bottom:715.013080px;}
.y2f8{bottom:715.181700px;}
.y272{bottom:716.115750px;}
.y174{bottom:716.118750px;}
.y1fe{bottom:716.799750px;}
.yc{bottom:721.305750px;}
.y1b7{bottom:724.446750px;}
.yda{bottom:725.047503px;}
.y2b4{bottom:725.640450px;}
.y339{bottom:725.811600px;}
.y14a{bottom:727.004530px;}
.y2f7{bottom:730.234200px;}
.y173{bottom:732.701250px;}
.y1fd{bottom:733.637250px;}
.yb{bottom:737.802750px;}
.y2b3{bottom:740.692950px;}
.y1b6{bottom:740.943750px;}
.y338{bottom:740.949150px;}
.yd9{bottom:741.459698px;}
.y149{bottom:743.416725px;}
.y2f6{bottom:745.965750px;}
.y172{bottom:749.198250px;}
.y1fc{bottom:750.474750px;}
.yd8{bottom:753.449948px;}
.ya{bottom:754.299750px;}
.y271{bottom:754.554750px;}
.y148{bottom:755.406975px;}
.y2b2{bottom:755.829150px;}
.y337{bottom:756.000300px;}
.y1b5{bottom:757.442250px;}
.yd7{bottom:757.871893px;}
.y2f5{bottom:761.783700px;}
.y171{bottom:765.780750px;}
.y1fb{bottom:767.312250px;}
.yd6{bottom:769.863343px;}
.y9{bottom:770.798250px;}
.y2b1{bottom:771.051750px;}
.y336{bottom:771.137850px;}
.y147{bottom:771.819170px;}
.y1b4{bottom:773.939250px;}
.y270{bottom:776.154750px;}
.y2f4{bottom:777.515250px;}
.y170{bottom:782.279250px;}
.y146{bottom:783.810620px;}
.y1fa{bottom:784.149750px;}
.y2b0{bottom:786.189300px;}
.y335{bottom:786.190350px;}
.yd5{bottom:786.275538px;}
.y8{bottom:787.295250px;}
.y1b3{bottom:790.436250px;}
.y2f3{bottom:792.482700px;}
.y26f{bottom:796.563750px;}
.y16f{bottom:798.861750px;}
.y145{bottom:800.222814px;}
.y1f9{bottom:801.072750px;}
.y2af{bottom:801.240450px;}
.y334{bottom:801.326550px;}
.yd4{bottom:802.687733px;}
.y7{bottom:803.792250px;}
.y1b2{bottom:806.934750px;}
.y2f2{bottom:808.299300px;}
.y26e{bottom:813.062250px;}
.yd3{bottom:814.677983px;}
.y16e{bottom:815.358750px;}
.y2ae{bottom:816.378000px;}
.y333{bottom:816.549150px;}
.y144{bottom:816.635009px;}
.y1f8{bottom:817.910250px;}
.y1b1{bottom:823.431750px;}
.y2f1{bottom:824.032200px;}
.y26d{bottom:829.559250px;}
.yd2{bottom:831.091378px;}
.y2ad{bottom:831.599250px;}
.y332{bottom:831.770400px;}
.y16d{bottom:831.941250px;}
.y143{bottom:833.047204px;}
.y1f7{bottom:834.749250px;}
.y6{bottom:838.998750px;}
.y2f0{bottom:839.765100px;}
.y1b0{bottom:839.928750px;}
.yd1{bottom:843.081628px;}
.y26c{bottom:846.056250px;}
.y2ac{bottom:846.736800px;}
.y331{bottom:846.737850px;}
.y16c{bottom:848.439750px;}
.y142{bottom:849.460599px;}
.y1f6{bottom:851.586750px;}
.y2ef{bottom:854.816250px;}
.y1af{bottom:856.511250px;}
.yd0{bottom:859.493823px;}
.y2ab{bottom:861.959400px;}
.y330{bottom:861.960450px;}
.y16b{bottom:865.022250px;}
.y141{bottom:865.872794px;}
.y26b{bottom:867.570750px;}
.y1f5{bottom:868.424250px;}
.y2ee{bottom:870.549150px;}
.ycf{bottom:871.484073px;}
.y1ae{bottom:873.009750px;}
.y2aa{bottom:876.925500px;}
.y32f{bottom:877.096650px;}
.y16a{bottom:881.519250px;}
.y140{bottom:882.284989px;}
.y1f4{bottom:885.261750px;}
.y2ed{bottom:886.365750px;}
.yce{bottom:887.897468px;}
.y1ad{bottom:889.506750px;}
.y2a9{bottom:892.148100px;}
.y32e{bottom:892.149150px;}
.y5{bottom:892.913250px;}
.y371{bottom:894.020250px;}
.y169{bottom:898.101750px;}
.y13f{bottom:898.613185px;}
.ycd{bottom:899.887718px;}
.y26a{bottom:899.972250px;}
.y2ec{bottom:902.098650px;}
.y1f3{bottom:902.099250px;}
.y240{bottom:902.949750px;}
.y1ac{bottom:906.005250px;}
.y32d{bottom:907.285350px;}
.y2a8{bottom:907.369350px;}
.y370{bottom:908.986350px;}
.y241{bottom:909.666750px;}
.y168{bottom:914.598750px;}
.y13e{bottom:915.025379px;}
.ycc{bottom:916.299913px;}
.y269{bottom:916.470750px;}
.y2eb{bottom:917.064750px;}
.y1f2{bottom:919.022250px;}
.y23f{bottom:919.787250px;}
.y2a7{bottom:922.336800px;}
.y1ab{bottom:922.502250px;}
.y32c{bottom:922.507950px;}
.y36f{bottom:923.953800px;}
.ycb{bottom:928.290163px;}
.y167{bottom:931.181250px;}
.y165{bottom:931.182750px;}
.y13d{bottom:931.437574px;}
.y2ea{bottom:932.882700px;}
.y1f1{bottom:935.859750px;}
.y23e{bottom:936.540750px;}
.y2a6{bottom:937.474350px;}
.y32b{bottom:937.645500px;}
.y166{bottom:937.814250px;}
.y1aa{bottom:938.999250px;}
.y36e{bottom:939.004950px;}
.y268{bottom:939.005250px;}
.y13c{bottom:943.513023px;}
.yca{bottom:944.702357px;}
.y4{bottom:944.957250px;}
.y164{bottom:947.679750px;}
.y2e9{bottom:948.614250px;}
.y2a5{bottom:952.695600px;}
.y32a{bottom:952.696650px;}
.y1f0{bottom:952.697250px;}
.y23d{bottom:953.292750px;}
.y36d{bottom:953.972400px;}
.y1a9{bottom:955.497750px;}
.y267{bottom:955.503750px;}
.yc9{bottom:956.693808px;}
.y13b{bottom:959.841219px;}
.y163{bottom:964.262250px;}
.y2e8{bottom:964.432200px;}
.y329{bottom:967.834200px;}
.y2a4{bottom:967.918200px;}
.y36c{bottom:968.939850px;}
.y1ef{bottom:969.534750px;}
.y23c{bottom:970.044750px;}
.y1a8{bottom:971.994750px;}
.y266{bottom:972.000750px;}
.yc8{bottom:973.106002px;}
.y3{bottom:974.978709px;}
.y13a{bottom:976.253414px;}
.y2e7{bottom:979.399650px;}
.y162{bottom:980.759250px;}
.y2a3{bottom:982.884300px;}
.y328{bottom:983.055450px;}
.y36b{bottom:983.991000px;}
.y1ee{bottom:986.372250px;}
.y23b{bottom:986.882250px;}
.y1a7{bottom:988.491750px;}
.y265{bottom:988.497750px;}
.yc7{bottom:989.518197px;}
.y139{bottom:992.665609px;}
.y2e6{bottom:995.131200px;}
.y161{bottom:997.341750px;}
.y2a2{bottom:998.021850px;}
.y327{bottom:998.022900px;}
.y36a{bottom:998.958450px;}
.yc6{bottom:1001.508447px;}
.y2{bottom:1002.018750px;}
.y1ec{bottom:1003.209750px;}
.y239{bottom:1003.635750px;}
.y1a6{bottom:1004.990250px;}
.y264{bottom:1004.996250px;}
.y138{bottom:1009.077804px;}
.y1ed{bottom:1009.926750px;}
.y23a{bottom:1010.267250px;}
.y2e5{bottom:1010.949150px;}
.y2a1{bottom:1013.244450px;}
.y326{bottom:1013.245500px;}
.y160{bottom:1013.840250px;}
.y369{bottom:1014.009600px;}
.yc5{bottom:1017.921842px;}
.y1eb{bottom:1020.047250px;}
.y238{bottom:1020.387750px;}
.y1a5{bottom:1021.487250px;}
.y263{bottom:1021.493250px;}
.y137{bottom:1025.491199px;}
.y2e4{bottom:1026.680700px;}
.y2a0{bottom:1028.210550px;}
.y325{bottom:1028.381700px;}
.y368{bottom:1028.977050px;}
.yc4{bottom:1029.912092px;}
.y15f{bottom:1030.337250px;}
.y1ea{bottom:1036.970250px;}
.y237{bottom:1037.139750px;}
.y235{bottom:1037.141250px;}
.y1a4{bottom:1037.984250px;}
.y262{bottom:1037.990250px;}
.y2e3{bottom:1041.648150px;}
.y136{bottom:1041.903393px;}
.y29f{bottom:1043.433150px;}
.y324{bottom:1043.604300px;}
.y236{bottom:1043.858250px;}
.y367{bottom:1043.944500px;}
.y15e{bottom:1046.919750px;}
.yc3{bottom:1049.300250px;}
.y4d{bottom:1050.746250px;}
.y1e9{bottom:1053.807750px;}
.y233{bottom:1053.893250px;}
.y1a3{bottom:1054.482750px;}
.y261{bottom:1054.488750px;}
.y2e2{bottom:1057.464750px;}
.y29e{bottom:1058.569350px;}
.y323{bottom:1058.570400px;}
.y366{bottom:1058.995650px;}
.y234{bottom:1060.610250px;}
.y135{bottom:1061.376750px;}
.y15d{bottom:1063.416750px;}
.y1e8{bottom:1070.645250px;}
.y230{bottom:1070.724750px;}
.y232{bottom:1070.730750px;}
.y1a2{bottom:1070.979750px;}
.y260{bottom:1070.985750px;}
.y2e1{bottom:1073.197650px;}
.y29d{bottom:1073.791950px;}
.y322{bottom:1073.793000px;}
.y365{bottom:1073.963100px;}
.y231{bottom:1077.363750px;}
.yc1{bottom:1086.717750px;}
.y52{bottom:1087.350000px;}
.y1a1{bottom:1087.476750px;}
.y1e6{bottom:1087.482750px;}
.y2e0{bottom:1089.014250px;}
.y29c{bottom:1089.014550px;}
.yc2{bottom:1093.436250px;}
.y1e7{bottom:1094.117250px;}
.yae{bottom:1117.502250px;}
.he{height:25.560000px;}
.hd{height:26.838000px;}
.h14{height:27.284362px;}
.h1b{height:27.500333px;}
.h16{height:27.996780px;}
.ha{height:30.316513px;}
.h13{height:32.444567px;}
.hc{height:34.079574px;}
.h18{height:36.383545px;}
.h5{height:38.934000px;}
.hb{height:40.932000px;}
.h1e{height:41.097000px;}
.h1f{height:41.256000px;}
.h15{height:41.580000px;}
.h1c{height:43.073709px;}
.h12{height:43.260000px;}
.hf{height:43.804688px;}
.h9{height:45.423000px;}
.h7{height:45.480000px;}
.h8{height:45.840000px;}
.h11{height:47.109375px;}
.h20{height:49.539600px;}
.h4{height:54.053584px;}
.h6{height:64.863281px;}
.h3{height:73.541567px;}
.h19{height:84.344546px;}
.h1a{height:84.349346px;}
.h17{height:84.685341px;}
.h1d{height:145.536000px;}
.h2{height:1174.479000px;}
.h10{height:1201.350000px;}
.h0{height:1201.351500px;}
.h1{height:1201.500000px;}
.w2{width:884.239500px;}
.w0{width:911.112000px;}
.w1{width:911.250000px;}
.x0{left:0.000000px;}
.x1{left:13.436250px;}
.x1a{left:27.000000px;}
.x2{left:63.779400px;}
.x3f{left:66.756841px;}
.x44{left:69.817200px;}
.x4a{left:71.008045px;}
.x42{left:75.259935px;}
.x1b{left:77.215650px;}
.x70{left:78.747750px;}
.x3c{left:86.059800px;}
.x61{left:87.590400px;}
.x26{left:89.631450px;}
.x6f{left:90.736950px;}
.x3{left:99.325950px;}
.x27{left:105.278700px;}
.x49{left:106.639200px;}
.x20{left:111.656550px;}
.x2c{left:112.847100px;}
.x33{left:113.867550px;}
.x62{left:121.691250px;}
.x2d{left:128.409300px;}
.x21{left:129.684900px;}
.x5c{left:135.042450px;}
.x63{left:136.233000px;}
.x51{left:138.528750px;}
.xe{left:141.761250px;}
.x34{left:146.267250px;}
.x60{left:150.774750px;}
.xf{left:152.900250px;}
.x52{left:173.394750px;}
.x29{left:175.605750px;}
.x41{left:180.453020px;}
.x8{left:186.746250px;}
.xc{left:189.893250px;}
.x9{left:198.227250px;}
.x5e{left:203.499750px;}
.x1c{left:208.431750px;}
.xd{left:210.132750px;}
.x5f{left:218.381250px;}
.x1d{left:224.078250px;}
.x48{left:226.034250px;}
.x22{left:230.031750px;}
.x23{left:248.654250px;}
.x1e{left:255.458250px;}
.x45{left:258.860250px;}
.x25{left:265.832250px;}
.x4b{left:268.044750px;}
.x15{left:269.489250px;}
.x1f{left:272.210250px;}
.xa{left:274.847250px;}
.x46{left:275.952750px;}
.x5d{left:283.860750px;}
.xb{left:285.306750px;}
.x16{left:298.827720px;}
.x4c{left:301.464750px;}
.x4d{left:309.033750px;}
.x32{left:311.583750px;}
.x3b{left:322.214250px;}
.x4e{left:326.636250px;}
.x4f{left:330.803250px;}
.x2a{left:340.157250px;}
.x50{left:345.515250px;}
.x5b{left:351.552750px;}
.x2b{left:359.376750px;}
.x35{left:368.304750px;}
.x6{left:371.876250px;}
.x7{left:383.102250px;}
.x36{left:384.293250px;}
.x24{left:400.025250px;}
.x47{left:406.488750px;}
.x5{left:410.484750px;}
.x28{left:412.866750px;}
.x31{left:432.680250px;}
.x11{left:459.719250px;}
.x71{left:465.760050px;}
.x10{left:473.240250px;}
.x6d{left:474.774750px;}
.x30{left:479.790900px;}
.x6e{left:486.764250px;}
.x4{left:492.717750px;}
.x64{left:503.858250px;}
.x12{left:508.875750px;}
.x2e{left:512.871750px;}
.x13{left:520.271250px;}
.x2f{left:524.522250px;}
.x66{left:529.794750px;}
.x19{left:535.230000px;}
.x65{left:538.214250px;}
.x67{left:546.717750px;}
.x57{left:564.150750px;}
.x53{left:577.757250px;}
.x55{left:582.689250px;}
.x6b{left:591.533250px;}
.x54{left:593.234250px;}
.x58{left:595.871250px;}
.x56{left:604.205250px;}
.x39{left:620.277750px;}
.x3a{left:634.308750px;}
.x40{left:644.085225px;}
.x17{left:645.788250px;}
.x59{left:649.700250px;}
.x3d{left:659.221835px;}
.x6c{left:661.350750px;}
.x37{left:667.218750px;}
.x5a{left:679.805250px;}
.x18{left:690.432750px;}
.x38{left:697.662750px;}
.x14{left:777.005250px;}
.x43{left:779.551531px;}
.x68{left:786.528750px;}
.x3e{left:788.141024px;}
.x69{left:802.515750px;}
.x6a{left:808.893750px;}
@media print{
.v5{vertical-align:-32.960320pt;}
.va{vertical-align:-11.491200pt;}
.v4{vertical-align:-10.586667pt;}
.vc{vertical-align:-1.814400pt;}
.v2{vertical-align:-0.901326pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:0.901326pt;}
.vb{vertical-align:1.814400pt;}
.v3{vertical-align:5.440000pt;}
.v9{vertical-align:11.491200pt;}
.v7{vertical-align:16.620261pt;}
.v8{vertical-align:21.168000pt;}
.v6{vertical-align:42.934930pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.026667pt;}
.ls21{letter-spacing:0.032000pt;}
.ls13{letter-spacing:0.048000pt;}
.ls40{letter-spacing:0.052800pt;}
.ls3c{letter-spacing:0.096000pt;}
.ls56{letter-spacing:0.100800pt;}
.ls62{letter-spacing:0.115200pt;}
.ls53{letter-spacing:0.177600pt;}
.lsc{letter-spacing:0.182400pt;}
.ls1b{letter-spacing:0.192000pt;}
.ls20{letter-spacing:0.197333pt;}
.ls43{letter-spacing:0.201600pt;}
.ls14{letter-spacing:0.218667pt;}
.lsd{letter-spacing:0.255971pt;}
.ls3b{letter-spacing:0.259200pt;}
.ls24{letter-spacing:0.266667pt;}
.ls18{letter-spacing:0.277333pt;}
.ls44{letter-spacing:0.278400pt;}
.ls8{letter-spacing:0.288000pt;}
.ls22{letter-spacing:0.309333pt;}
.ls5e{letter-spacing:0.364800pt;}
.lsa{letter-spacing:0.373333pt;}
.ls10{letter-spacing:0.378667pt;}
.ls7{letter-spacing:0.391066pt;}
.ls9{letter-spacing:0.394667pt;}
.ls3{letter-spacing:0.437333pt;}
.ls51{letter-spacing:0.513600pt;}
.ls11{letter-spacing:0.544000pt;}
.ls4{letter-spacing:0.634667pt;}
.ls1f{letter-spacing:0.639926pt;}
.ls57{letter-spacing:0.643200pt;}
.lsb{letter-spacing:0.672000pt;}
.ls5{letter-spacing:0.704000pt;}
.ls1e{letter-spacing:0.720000pt;}
.lsf{letter-spacing:0.735902pt;}
.ls19{letter-spacing:0.746667pt;}
.ls17{letter-spacing:0.784000pt;}
.ls2c{letter-spacing:0.821333pt;}
.lse{letter-spacing:0.830400pt;}
.ls25{letter-spacing:0.880000pt;}
.ls2f{letter-spacing:0.907200pt;}
.ls1d{letter-spacing:0.933333pt;}
.ls1c{letter-spacing:1.040000pt;}
.ls15{letter-spacing:1.168000pt;}
.ls1{letter-spacing:1.206391pt;}
.ls39{letter-spacing:1.214400pt;}
.ls48{letter-spacing:1.392000pt;}
.ls54{letter-spacing:1.396800pt;}
.ls23{letter-spacing:1.445333pt;}
.ls16{letter-spacing:1.477333pt;}
.ls2a{letter-spacing:1.509333pt;}
.ls2d{letter-spacing:1.514667pt;}
.ls2{letter-spacing:1.568000pt;}
.ls12{letter-spacing:1.690667pt;}
.ls52{letter-spacing:1.814400pt;}
.ls4f{letter-spacing:2.044800pt;}
.ls60{letter-spacing:2.054400pt;}
.ls4d{letter-spacing:2.313600pt;}
.ls36{letter-spacing:2.692800pt;}
.ls63{letter-spacing:3.528000pt;}
.ls47{letter-spacing:5.140800pt;}
.ls42{letter-spacing:6.350400pt;}
.ls32{letter-spacing:11.496000pt;}
.ls66{letter-spacing:12.100800pt;}
.ls30{letter-spacing:12.403200pt;}
.ls5a{letter-spacing:12.705600pt;}
.ls4b{letter-spacing:13.008000pt;}
.ls65{letter-spacing:13.612800pt;}
.ls3f{letter-spacing:13.915200pt;}
.ls4c{letter-spacing:14.822400pt;}
.ls3d{letter-spacing:15.729600pt;}
.ls4a{letter-spacing:15.854400pt;}
.ls33{letter-spacing:16.027200pt;}
.ls34{letter-spacing:16.032000pt;}
.ls41{letter-spacing:16.156800pt;}
.ls38{letter-spacing:16.334400pt;}
.ls2b{letter-spacing:16.981333pt;}
.ls28{letter-spacing:17.584000pt;}
.ls27{letter-spacing:17.589333pt;}
.ls29{letter-spacing:17.893333pt;}
.ls31{letter-spacing:18.446400pt;}
.ls59{letter-spacing:19.660800pt;}
.ls46{letter-spacing:20.265600pt;}
.ls5f{letter-spacing:20.568000pt;}
.ls3e{letter-spacing:21.475200pt;}
.ls5d{letter-spacing:21.777600pt;}
.ls0{letter-spacing:24.072348pt;}
.ls5c{letter-spacing:24.796800pt;}
.ls5b{letter-spacing:25.776000pt;}
.ls3a{letter-spacing:26.011200pt;}
.ls35{letter-spacing:28.728000pt;}
.ls45{letter-spacing:32.755200pt;}
.ls58{letter-spacing:33.110400pt;}
.ls2e{letter-spacing:33.545067pt;}
.ls26{letter-spacing:33.850667pt;}
.ls49{letter-spacing:34.651200pt;}
.ls55{letter-spacing:34.939200pt;}
.ls61{letter-spacing:36.235200pt;}
.ls50{letter-spacing:36.273600pt;}
.ls4e{letter-spacing:36.710400pt;}
.ls37{letter-spacing:37.310400pt;}
.ls64{letter-spacing:39.110400pt;}
.ws4e{word-spacing:-35.583555pt;}
.ws22d{word-spacing:-31.864000pt;}
.ws219{word-spacing:-26.400000pt;}
.ws26a{word-spacing:-24.691200pt;}
.ws2d7{word-spacing:-24.432000pt;}
.ws7{word-spacing:-24.158400pt;}
.ws226{word-spacing:-22.933333pt;}
.ws1{word-spacing:-21.542273pt;}
.ws0{word-spacing:-21.496940pt;}
.ws50{word-spacing:-17.055360pt;}
.ws4f{word-spacing:-17.008320pt;}
.ws52{word-spacing:-16.166400pt;}
.ws1c7{word-spacing:-14.890667pt;}
.ws65{word-spacing:-14.853333pt;}
.ws111{word-spacing:-14.709333pt;}
.ws156{word-spacing:-14.704000pt;}
.ws110{word-spacing:-14.597333pt;}
.ws1ca{word-spacing:-14.592000pt;}
.wse{word-spacing:-14.576000pt;}
.ws1d5{word-spacing:-14.490667pt;}
.wsc{word-spacing:-14.368000pt;}
.ws1ac{word-spacing:-14.288000pt;}
.ws19a{word-spacing:-14.197333pt;}
.ws1af{word-spacing:-14.133333pt;}
.ws1c1{word-spacing:-14.122667pt;}
.ws190{word-spacing:-14.085333pt;}
.ws151{word-spacing:-14.042667pt;}
.ws15c{word-spacing:-14.037333pt;}
.ws102{word-spacing:-13.989333pt;}
.ws1e7{word-spacing:-13.946667pt;}
.ws15f{word-spacing:-13.920000pt;}
.ws15a{word-spacing:-13.845333pt;}
.ws33{word-spacing:-13.792000pt;}
.ws1b3{word-spacing:-13.765333pt;}
.ws31{word-spacing:-13.749333pt;}
.ws11b{word-spacing:-13.648000pt;}
.ws26{word-spacing:-13.621333pt;}
.ws120{word-spacing:-13.594667pt;}
.wsf2{word-spacing:-13.525333pt;}
.ws147{word-spacing:-13.477333pt;}
.ws141{word-spacing:-13.456800pt;}
.ws171{word-spacing:-13.440000pt;}
.ws165{word-spacing:-13.423200pt;}
.ws1d7{word-spacing:-13.376000pt;}
.ws86{word-spacing:-13.361600pt;}
.ws1e4{word-spacing:-13.349333pt;}
.ws1d4{word-spacing:-13.328000pt;}
.wsea{word-spacing:-13.305600pt;}
.ws26f{word-spacing:-13.281600pt;}
.ws2a6{word-spacing:-13.243200pt;}
.ws172{word-spacing:-13.237333pt;}
.ws353{word-spacing:-13.224000pt;}
.ws310{word-spacing:-13.204800pt;}
.wsfb{word-spacing:-13.189333pt;}
.ws206{word-spacing:-13.162667pt;}
.ws142{word-spacing:-13.125333pt;}
.ws1ab{word-spacing:-13.120800pt;}
.ws237{word-spacing:-13.094400pt;}
.ws1dc{word-spacing:-13.072000pt;}
.ws2c1{word-spacing:-13.017600pt;}
.ws169{word-spacing:-13.008000pt;}
.ws238{word-spacing:-12.988800pt;}
.ws1da{word-spacing:-12.986667pt;}
.ws1d2{word-spacing:-12.981333pt;}
.ws2ab{word-spacing:-12.979200pt;}
.ws312{word-spacing:-12.969600pt;}
.ws7f{word-spacing:-12.933333pt;}
.ws1fd{word-spacing:-12.922667pt;}
.wsda{word-spacing:-12.921600pt;}
.ws6f{word-spacing:-12.885333pt;}
.ws123{word-spacing:-12.880000pt;}
.ws2c7{word-spacing:-12.787200pt;}
.ws15{word-spacing:-12.773333pt;}
.ws6c{word-spacing:-12.736000pt;}
.ws161{word-spacing:-12.725333pt;}
.ws37f{word-spacing:-12.662400pt;}
.ws9e{word-spacing:-12.645333pt;}
.ws121{word-spacing:-12.640000pt;}
.ws97{word-spacing:-12.638400pt;}
.ws37d{word-spacing:-12.633600pt;}
.ws159{word-spacing:-12.629333pt;}
.ws380{word-spacing:-12.576000pt;}
.ws16{word-spacing:-12.565333pt;}
.ws34d{word-spacing:-12.561600pt;}
.ws1df{word-spacing:-12.560000pt;}
.ws36d{word-spacing:-12.547200pt;}
.ws122{word-spacing:-12.522667pt;}
.ws183{word-spacing:-12.474667pt;}
.ws98{word-spacing:-12.432000pt;}
.ws44{word-spacing:-12.314667pt;}
.ws228{word-spacing:-12.288000pt;}
.ws157{word-spacing:-12.282667pt;}
.ws15b{word-spacing:-12.277333pt;}
.ws1b2{word-spacing:-12.256000pt;}
.ws100{word-spacing:-12.254400pt;}
.ws166{word-spacing:-12.213333pt;}
.ws230{word-spacing:-12.163200pt;}
.ws24e{word-spacing:-12.139200pt;}
.ws21f{word-spacing:-12.129600pt;}
.wsac{word-spacing:-12.072000pt;}
.ws258{word-spacing:-12.038400pt;}
.ws14a{word-spacing:-12.032000pt;}
.ws207{word-spacing:-12.026667pt;}
.ws10f{word-spacing:-12.016000pt;}
.ws24d{word-spacing:-12.014400pt;}
.ws26b{word-spacing:-12.000000pt;}
.ws12{word-spacing:-11.989333pt;}
.ws358{word-spacing:-11.971200pt;}
.ws20c{word-spacing:-11.962400pt;}
.ws28b{word-spacing:-11.952000pt;}
.ws2a0{word-spacing:-11.942400pt;}
.ws84{word-spacing:-11.909333pt;}
.ws35b{word-spacing:-11.894400pt;}
.ws232{word-spacing:-11.889600pt;}
.ws114{word-spacing:-11.866667pt;}
.ws254{word-spacing:-11.803200pt;}
.ws1b6{word-spacing:-11.802667pt;}
.wsd7{word-spacing:-11.779200pt;}
.ws14b{word-spacing:-11.738667pt;}
.ws196{word-spacing:-11.728000pt;}
.ws27e{word-spacing:-11.678400pt;}
.ws327{word-spacing:-11.673600pt;}
.ws25{word-spacing:-11.658667pt;}
.ws139{word-spacing:-11.617988pt;}
.ws1a0{word-spacing:-11.610667pt;}
.ws1f4{word-spacing:-11.589333pt;}
.ws326{word-spacing:-11.587200pt;}
.ws31e{word-spacing:-11.572800pt;}
.ws1a6{word-spacing:-11.562667pt;}
.ws320{word-spacing:-11.548800pt;}
.ws22b{word-spacing:-11.509333pt;}
.ws64{word-spacing:-11.504000pt;}
.ws23f{word-spacing:-11.481600pt;}
.ws9b{word-spacing:-11.476800pt;}
.ws2ce{word-spacing:-11.452800pt;}
.ws5{word-spacing:-11.390400pt;}
.ws22c{word-spacing:-11.381333pt;}
.ws2cf{word-spacing:-11.371200pt;}
.ws19{word-spacing:-11.349333pt;}
.ws2cb{word-spacing:-11.347200pt;}
.ws8{word-spacing:-11.328000pt;}
.ws323{word-spacing:-11.308800pt;}
.ws63{word-spacing:-11.296000pt;}
.ws325{word-spacing:-11.284800pt;}
.ws367{word-spacing:-11.251200pt;}
.ws337{word-spacing:-11.203200pt;}
.ws361{word-spacing:-11.169600pt;}
.ws1ec{word-spacing:-11.141333pt;}
.ws130{word-spacing:-11.097461pt;}
.ws10a{word-spacing:-11.072000pt;}
.ws2e{word-spacing:-11.066667pt;}
.ws279{word-spacing:-11.035200pt;}
.ws29f{word-spacing:-11.020800pt;}
.ws136{word-spacing:-11.016396pt;}
.ws90{word-spacing:-10.948800pt;}
.ws163{word-spacing:-10.912000pt;}
.ws379{word-spacing:-10.910400pt;}
.ws356{word-spacing:-10.881600pt;}
.ws55{word-spacing:-10.869333pt;}
.ws2d1{word-spacing:-10.852800pt;}
.ws1e9{word-spacing:-10.805333pt;}
.ws83{word-spacing:-10.800000pt;}
.ws2f1{word-spacing:-10.790400pt;}
.ws113{word-spacing:-10.789333pt;}
.ws2a5{word-spacing:-10.766400pt;}
.ws187{word-spacing:-10.762667pt;}
.ws1a3{word-spacing:-10.698667pt;}
.ws372{word-spacing:-10.622400pt;}
.ws1a4{word-spacing:-10.576000pt;}
.ws2b{word-spacing:-10.570667pt;}
.ws14f{word-spacing:-10.549333pt;}
.ws37b{word-spacing:-10.545600pt;}
.ws338{word-spacing:-10.536000pt;}
.ws76{word-spacing:-10.517333pt;}
.ws1a5{word-spacing:-10.506667pt;}
.ws46{word-spacing:-10.480000pt;}
.ws199{word-spacing:-10.469333pt;}
.ws290{word-spacing:-10.440000pt;}
.ws62{word-spacing:-10.437333pt;}
.ws293{word-spacing:-10.382400pt;}
.ws328{word-spacing:-10.377600pt;}
.ws1a{word-spacing:-10.368000pt;}
.ws208{word-spacing:-10.357333pt;}
.wsd8{word-spacing:-10.339200pt;}
.ws22f{word-spacing:-10.329600pt;}
.ws9c{word-spacing:-10.320000pt;}
.ws188{word-spacing:-10.293333pt;}
.ws363{word-spacing:-10.281600pt;}
.ws22e{word-spacing:-10.267200pt;}
.ws2d8{word-spacing:-10.171200pt;}
.ws1cb{word-spacing:-10.144000pt;}
.ws35c{word-spacing:-10.070400pt;}
.ws2ba{word-spacing:-10.027200pt;}
.ws145{word-spacing:-9.989333pt;}
.ws33c{word-spacing:-9.916800pt;}
.ws33e{word-spacing:-9.907200pt;}
.ws16b{word-spacing:-9.872000pt;}
.ws2d0{word-spacing:-9.849600pt;}
.ws2ff{word-spacing:-9.840000pt;}
.ws2d6{word-spacing:-9.835200pt;}
.ws357{word-spacing:-9.820800pt;}
.wse7{word-spacing:-9.811200pt;}
.ws134{word-spacing:-9.804677pt;}
.ws2eb{word-spacing:-9.768000pt;}
.ws8a{word-spacing:-9.763200pt;}
.ws115{word-spacing:-9.706667pt;}
.ws18e{word-spacing:-9.690667pt;}
.ws30{word-spacing:-9.685333pt;}
.ws37c{word-spacing:-9.672000pt;}
.ws2f{word-spacing:-9.669333pt;}
.ws1b9{word-spacing:-9.664000pt;}
.ws34b{word-spacing:-9.643200pt;}
.ws195{word-spacing:-9.642667pt;}
.ws2d2{word-spacing:-9.633600pt;}
.ws68{word-spacing:-9.610667pt;}
.wsaa{word-spacing:-9.600000pt;}
.ws149{word-spacing:-9.578667pt;}
.ws77{word-spacing:-9.573333pt;}
.ws18b{word-spacing:-9.568000pt;}
.ws104{word-spacing:-9.562667pt;}
.ws8b{word-spacing:-9.556800pt;}
.ws39{word-spacing:-9.552000pt;}
.wsfe{word-spacing:-9.536000pt;}
.ws306{word-spacing:-9.532800pt;}
.wseb{word-spacing:-9.530667pt;}
.ws47{word-spacing:-9.525333pt;}
.wsab{word-spacing:-9.523200pt;}
.ws32f{word-spacing:-9.513600pt;}
.ws85{word-spacing:-9.504000pt;}
.ws1ce{word-spacing:-9.488000pt;}
.ws1de{word-spacing:-9.482667pt;}
.ws2d5{word-spacing:-9.475200pt;}
.ws11c{word-spacing:-9.472000pt;}
.ws32d{word-spacing:-9.460800pt;}
.ws1c{word-spacing:-9.450667pt;}
.ws66{word-spacing:-9.445333pt;}
.ws22a{word-spacing:-9.434667pt;}
.wsa9{word-spacing:-9.432000pt;}
.ws330{word-spacing:-9.427200pt;}
.ws2ee{word-spacing:-9.403200pt;}
.ws129{word-spacing:-9.386667pt;}
.ws349{word-spacing:-9.379200pt;}
.ws15d{word-spacing:-9.376000pt;}
.wsfd{word-spacing:-9.365333pt;}
.ws1fc{word-spacing:-9.354667pt;}
.wsa8{word-spacing:-9.350400pt;}
.ws167{word-spacing:-9.317333pt;}
.ws313{word-spacing:-9.316800pt;}
.ws1f2{word-spacing:-9.301333pt;}
.ws1d1{word-spacing:-9.274667pt;}
.ws19c{word-spacing:-9.258667pt;}
.ws34c{word-spacing:-9.254400pt;}
.ws264{word-spacing:-9.230400pt;}
.ws298{word-spacing:-9.225600pt;}
.ws2f3{word-spacing:-9.216000pt;}
.ws1b8{word-spacing:-9.210667pt;}
.ws1aa{word-spacing:-9.152000pt;}
.ws8c{word-spacing:-9.124800pt;}
.ws34{word-spacing:-9.082667pt;}
.ws368{word-spacing:-9.019200pt;}
.ws377{word-spacing:-9.014400pt;}
.ws214{word-spacing:-8.990400pt;}
.ws376{word-spacing:-8.980800pt;}
.wsf{word-spacing:-8.960000pt;}
.ws155{word-spacing:-8.954667pt;}
.ws2aa{word-spacing:-8.928000pt;}
.ws96{word-spacing:-8.918400pt;}
.ws10e{word-spacing:-8.885333pt;}
.ws27b{word-spacing:-8.865600pt;}
.ws95{word-spacing:-8.856000pt;}
.ws179{word-spacing:-8.848000pt;}
.ws15e{word-spacing:-8.842667pt;}
.ws182{word-spacing:-8.800000pt;}
.ws211{word-spacing:-8.789333pt;}
.wse5{word-spacing:-8.774400pt;}
.ws217{word-spacing:-8.725333pt;}
.ws287{word-spacing:-8.702400pt;}
.ws107{word-spacing:-8.693333pt;}
.ws20d{word-spacing:-8.688000pt;}
.ws233{word-spacing:-8.668800pt;}
.ws304{word-spacing:-8.659200pt;}
.wsff{word-spacing:-8.656000pt;}
.ws2e4{word-spacing:-8.654400pt;}
.ws21b{word-spacing:-8.650667pt;}
.ws27c{word-spacing:-8.649600pt;}
.ws334{word-spacing:-8.644800pt;}
.ws2ec{word-spacing:-8.630400pt;}
.wse9{word-spacing:-8.625600pt;}
.wsad{word-spacing:-8.620800pt;}
.wsd2{word-spacing:-8.616000pt;}
.ws2ea{word-spacing:-8.606400pt;}
.ws2a4{word-spacing:-8.582400pt;}
.ws94{word-spacing:-8.577600pt;}
.ws23a{word-spacing:-8.572800pt;}
.ws245{word-spacing:-8.568000pt;}
.ws49{word-spacing:-8.563200pt;}
.ws4d{word-spacing:-8.558400pt;}
.ws9d{word-spacing:-8.553600pt;}
.ws1ef{word-spacing:-8.544000pt;}
.ws276{word-spacing:-8.539200pt;}
.ws240{word-spacing:-8.534400pt;}
.ws280{word-spacing:-8.529600pt;}
.ws24b{word-spacing:-8.524800pt;}
.ws364{word-spacing:-8.520000pt;}
.ws347{word-spacing:-8.491200pt;}
.ws119{word-spacing:-8.474667pt;}
.ws2af{word-spacing:-8.467200pt;}
.wsd0{word-spacing:-8.452800pt;}
.ws2b2{word-spacing:-8.438400pt;}
.ws236{word-spacing:-8.433600pt;}
.ws2bb{word-spacing:-8.428800pt;}
.ws299{word-spacing:-8.424000pt;}
.ws286{word-spacing:-8.409600pt;}
.ws29d{word-spacing:-8.404800pt;}
.ws1d3{word-spacing:-8.400000pt;}
.wsdf{word-spacing:-8.385600pt;}
.ws268{word-spacing:-8.352000pt;}
.ws24c{word-spacing:-8.347200pt;}
.ws2b9{word-spacing:-8.323200pt;}
.ws140{word-spacing:-8.318400pt;}
.ws35e{word-spacing:-8.299200pt;}
.ws18{word-spacing:-8.293333pt;}
.ws340{word-spacing:-8.275200pt;}
.ws2ca{word-spacing:-8.270400pt;}
.ws27f{word-spacing:-8.265600pt;}
.ws2ac{word-spacing:-8.260800pt;}
.ws270{word-spacing:-8.256000pt;}
.wsae{word-spacing:-8.251200pt;}
.ws28e{word-spacing:-8.222400pt;}
.ws229{word-spacing:-8.192000pt;}
.ws124{word-spacing:-8.170667pt;}
.ws198{word-spacing:-8.144000pt;}
.ws59{word-spacing:-8.128000pt;}
.ws1ba{word-spacing:-8.101333pt;}
.ws17e{word-spacing:-8.096000pt;}
.ws259{word-spacing:-8.092800pt;}
.ws201{word-spacing:-8.090667pt;}
.ws6{word-spacing:-8.088000pt;}
.ws27d{word-spacing:-8.054400pt;}
.ws227{word-spacing:-8.053333pt;}
.ws168{word-spacing:-8.037333pt;}
.ws2e5{word-spacing:-8.020800pt;}
.ws99{word-spacing:-7.972800pt;}
.wsd9{word-spacing:-7.924800pt;}
.ws106{word-spacing:-7.920000pt;}
.ws241{word-spacing:-7.852800pt;}
.ws2a7{word-spacing:-7.848000pt;}
.ws45{word-spacing:-7.829333pt;}
.ws25b{word-spacing:-7.790400pt;}
.ws131{word-spacing:-7.773769pt;}
.wsc2{word-spacing:-7.752436pt;}
.ws204{word-spacing:-7.749333pt;}
.wsb7{word-spacing:-7.748170pt;}
.ws144{word-spacing:-7.728000pt;}
.ws13a{word-spacing:-7.726837pt;}
.ws138{word-spacing:-7.722570pt;}
.ws89{word-spacing:-7.718400pt;}
.ws12c{word-spacing:-7.709770pt;}
.wsb5{word-spacing:-7.692704pt;}
.ws1d9{word-spacing:-7.690667pt;}
.ws137{word-spacing:-7.688437pt;}
.ws38{word-spacing:-7.685333pt;}
.wsbc{word-spacing:-7.679904pt;}
.wsb4{word-spacing:-7.675637pt;}
.ws12b{word-spacing:-7.671371pt;}
.ws13c{word-spacing:-7.667104pt;}
.ws13e{word-spacing:-7.662838pt;}
.wsc4{word-spacing:-7.658571pt;}
.ws9a{word-spacing:-7.656000pt;}
.wsc5{word-spacing:-7.654304pt;}
.wsee{word-spacing:-7.653333pt;}
.ws17{word-spacing:-7.637333pt;}
.ws12e{word-spacing:-7.637238pt;}
.wsbb{word-spacing:-7.632971pt;}
.ws112{word-spacing:-7.632000pt;}
.wsb2{word-spacing:-7.624438pt;}
.wscb{word-spacing:-7.620171pt;}
.ws135{word-spacing:-7.611638pt;}
.ws36c{word-spacing:-7.603200pt;}
.wsb6{word-spacing:-7.603105pt;}
.ws12d{word-spacing:-7.594572pt;}
.ws12f{word-spacing:-7.590305pt;}
.ws73{word-spacing:-7.584000pt;}
.ws13f{word-spacing:-7.581772pt;}
.ws153{word-spacing:-7.573333pt;}
.wsc9{word-spacing:-7.573239pt;}
.wsc1{word-spacing:-7.568972pt;}
.ws1c9{word-spacing:-7.568000pt;}
.wsc8{word-spacing:-7.564705pt;}
.wsed{word-spacing:-7.557333pt;}
.wscc{word-spacing:-7.551906pt;}
.wsf6{word-spacing:-7.546667pt;}
.wsbd{word-spacing:-7.513506pt;}
.wscd{word-spacing:-7.504973pt;}
.ws16a{word-spacing:-7.504000pt;}
.wsc7{word-spacing:-7.500706pt;}
.wsec{word-spacing:-7.498667pt;}
.wsb9{word-spacing:-7.496440pt;}
.ws311{word-spacing:-7.488000pt;}
.ws133{word-spacing:-7.479373pt;}
.ws242{word-spacing:-7.478400pt;}
.ws108{word-spacing:-7.477333pt;}
.wsca{word-spacing:-7.475107pt;}
.ws294{word-spacing:-7.454400pt;}
.ws239{word-spacing:-7.425600pt;}
.ws1c2{word-spacing:-7.424000pt;}
.wsc0{word-spacing:-7.423907pt;}
.wsbe{word-spacing:-7.402574pt;}
.ws200{word-spacing:-7.392000pt;}
.ws370{word-spacing:-7.387200pt;}
.ws132{word-spacing:-7.385508pt;}
.wsc6{word-spacing:-7.372708pt;}
.wscf{word-spacing:-7.359908pt;}
.ws2fa{word-spacing:-7.358400pt;}
.ws1ff{word-spacing:-7.354667pt;}
.wsa4{word-spacing:-7.339200pt;}
.ws11{word-spacing:-7.333333pt;}
.wsc3{word-spacing:-7.312975pt;}
.ws1bd{word-spacing:-7.290667pt;}
.ws37{word-spacing:-7.274667pt;}
.ws1cd{word-spacing:-7.269333pt;}
.ws184{word-spacing:-7.264000pt;}
.ws275{word-spacing:-7.257600pt;}
.ws255{word-spacing:-7.243200pt;}
.ws21{word-spacing:-7.194667pt;}
.ws103{word-spacing:-7.173333pt;}
.ws1c0{word-spacing:-7.162667pt;}
.ws37e{word-spacing:-7.147200pt;}
.ws81{word-spacing:-7.109333pt;}
.ws265{word-spacing:-7.104000pt;}
.ws177{word-spacing:-7.002667pt;}
.ws176{word-spacing:-6.970667pt;}
.ws36e{word-spacing:-6.931200pt;}
.ws2a{word-spacing:-6.928000pt;}
.ws29{word-spacing:-6.906667pt;}
.ws178{word-spacing:-6.896000pt;}
.ws2c8{word-spacing:-6.883200pt;}
.ws1f6{word-spacing:-6.880000pt;}
.ws19b{word-spacing:-6.874667pt;}
.ws336{word-spacing:-6.806400pt;}
.ws1d6{word-spacing:-6.789333pt;}
.ws26e{word-spacing:-6.686400pt;}
.ws3b{word-spacing:-6.666667pt;}
.ws28c{word-spacing:-6.609600pt;}
.ws7c{word-spacing:-6.602667pt;}
.ws35a{word-spacing:-6.600000pt;}
.ws231{word-spacing:-6.580800pt;}
.ws359{word-spacing:-6.528000pt;}
.ws11e{word-spacing:-6.501333pt;}
.ws205{word-spacing:-6.474667pt;}
.ws23b{word-spacing:-6.456000pt;}
.ws2a1{word-spacing:-6.417600pt;}
.ws35f{word-spacing:-6.384000pt;}
.ws5b{word-spacing:-6.336000pt;}
.ws54{word-spacing:-6.325333pt;}
.ws28f{word-spacing:-6.268800pt;}
.ws32a{word-spacing:-6.249600pt;}
.ws5c{word-spacing:-6.245333pt;}
.ws23d{word-spacing:-6.235200pt;}
.ws31d{word-spacing:-6.206400pt;}
.ws324{word-spacing:-6.192000pt;}
.ws32{word-spacing:-6.171055pt;}
.ws2c{word-spacing:-6.165333pt;}
.ws234{word-spacing:-6.124800pt;}
.ws2cd{word-spacing:-6.057600pt;}
.ws18a{word-spacing:-5.973333pt;}
.ws2d{word-spacing:-5.936000pt;}
.ws1bf{word-spacing:-5.930667pt;}
.ws23e{word-spacing:-5.923200pt;}
.ws6e{word-spacing:-5.920000pt;}
.ws31f{word-spacing:-5.899200pt;}
.ws2c5{word-spacing:-5.860800pt;}
.ws78{word-spacing:-5.808000pt;}
.wsd5{word-spacing:-5.760000pt;}
.ws202{word-spacing:-5.754667pt;}
.ws128{word-spacing:-5.733333pt;}
.ws7a{word-spacing:-5.680000pt;}
.ws164{word-spacing:-5.637333pt;}
.ws1f1{word-spacing:-5.610667pt;}
.ws8f{word-spacing:-5.582400pt;}
.wsf5{word-spacing:-5.573333pt;}
.wse6{word-spacing:-5.572800pt;}
.ws170{word-spacing:-5.568000pt;}
.ws344{word-spacing:-5.534400pt;}
.wsf3{word-spacing:-5.450667pt;}
.ws247{word-spacing:-5.424000pt;}
.wsb1{word-spacing:-5.376000pt;}
.ws51{word-spacing:-5.350400pt;}
.wsf4{word-spacing:-5.344000pt;}
.ws1f0{word-spacing:-5.322667pt;}
.ws37a{word-spacing:-5.294400pt;}
.ws2ef{word-spacing:-5.289600pt;}
.ws305{word-spacing:-5.236800pt;}
.ws271{word-spacing:-5.232000pt;}
.ws20a{word-spacing:-5.184000pt;}
.ws23{word-spacing:-5.157333pt;}
.ws16c{word-spacing:-5.120000pt;}
.ws67{word-spacing:-5.082667pt;}
.ws40{word-spacing:-5.077333pt;}
.ws291{word-spacing:-5.044800pt;}
.ws213{word-spacing:-5.040000pt;}
.ws18c{word-spacing:-5.024000pt;}
.ws75{word-spacing:-5.018667pt;}
.ws1fb{word-spacing:-5.002667pt;}
.ws74{word-spacing:-4.981333pt;}
.ws319{word-spacing:-4.924800pt;}
.wsa{word-spacing:-4.910872pt;}
.ws329{word-spacing:-4.819200pt;}
.ws373{word-spacing:-4.814400pt;}
.ws292{word-spacing:-4.790400pt;}
.ws282{word-spacing:-4.771200pt;}
.ws18f{word-spacing:-4.757333pt;}
.wsd1{word-spacing:-4.737600pt;}
.ws2fb{word-spacing:-4.728000pt;}
.ws31c{word-spacing:-4.636800pt;}
.ws28a{word-spacing:-4.617600pt;}
.ws1c5{word-spacing:-4.613333pt;}
.ws117{word-spacing:-4.565333pt;}
.ws125{word-spacing:-4.549333pt;}
.ws33f{word-spacing:-4.483200pt;}
.ws33d{word-spacing:-4.464000pt;}
.ws1a8{word-spacing:-4.410667pt;}
.ws1b5{word-spacing:-4.394667pt;}
.ws14{word-spacing:-4.384000pt;}
.ws1b4{word-spacing:-4.378667pt;}
.ws189{word-spacing:-4.320000pt;}
.ws2b7{word-spacing:-4.291200pt;}
.ws345{word-spacing:-4.286400pt;}
.wsde{word-spacing:-4.233600pt;}
.wsdd{word-spacing:-4.209600pt;}
.ws34f{word-spacing:-4.195200pt;}
.ws371{word-spacing:-4.161600pt;}
.ws21a{word-spacing:-4.138667pt;}
.ws34a{word-spacing:-4.137600pt;}
.ws2b8{word-spacing:-4.113600pt;}
.wsf1{word-spacing:-4.106667pt;}
.ws2fd{word-spacing:-4.104000pt;}
.ws17b{word-spacing:-4.064000pt;}
.ws32e{word-spacing:-4.056000pt;}
.ws20{word-spacing:-4.043200pt;}
.ws352{word-spacing:-4.032000pt;}
.ws2d3{word-spacing:-4.027200pt;}
.ws1db{word-spacing:-3.941333pt;}
.ws2d4{word-spacing:-3.883200pt;}
.ws41{word-spacing:-3.872000pt;}
.ws307{word-spacing:-3.835200pt;}
.ws11f{word-spacing:-3.808000pt;}
.ws7e{word-spacing:-3.792000pt;}
.ws297{word-spacing:-3.787200pt;}
.ws109{word-spacing:-3.728000pt;}
.ws2f4{word-spacing:-3.691200pt;}
.ws24f{word-spacing:-3.619200pt;}
.ws7d{word-spacing:-3.557333pt;}
.ws20e{word-spacing:-3.536000pt;}
.ws20f{word-spacing:-3.520000pt;}
.ws21e{word-spacing:-3.509333pt;}
.ws218{word-spacing:-3.488000pt;}
.ws321{word-spacing:-3.484800pt;}
.ws21d{word-spacing:-3.477333pt;}
.ws26d{word-spacing:-3.475200pt;}
.ws210{word-spacing:-3.472000pt;}
.ws369{word-spacing:-3.470400pt;}
.ws16f{word-spacing:-3.445333pt;}
.ws21c{word-spacing:-3.408000pt;}
.ws212{word-spacing:-3.376000pt;}
.ws318{word-spacing:-3.360000pt;}
.ws1e1{word-spacing:-3.333333pt;}
.ws1f{word-spacing:-3.312000pt;}
.ws194{word-spacing:-3.253333pt;}
.ws27a{word-spacing:-3.249600pt;}
.ws216{word-spacing:-3.242667pt;}
.ws16e{word-spacing:-3.237333pt;}
.ws29e{word-spacing:-3.230400pt;}
.ws16d{word-spacing:-3.210667pt;}
.ws288{word-spacing:-3.201600pt;}
.ws1f3{word-spacing:-3.194667pt;}
.ws203{word-spacing:-3.189333pt;}
.ws1e{word-spacing:-3.168000pt;}
.ws2c9{word-spacing:-3.124800pt;}
.ws296{word-spacing:-3.115200pt;}
.ws295{word-spacing:-3.105600pt;}
.ws24a{word-spacing:-3.091200pt;}
.ws1a1{word-spacing:-3.082667pt;}
.ws267{word-spacing:-3.081600pt;}
.wsa5{word-spacing:-3.004800pt;}
.ws2da{word-spacing:-2.980800pt;}
.ws244{word-spacing:-2.976000pt;}
.ws2b1{word-spacing:-2.971200pt;}
.ws266{word-spacing:-2.952000pt;}
.ws1f5{word-spacing:-2.949333pt;}
.ws92{word-spacing:-2.942400pt;}
.ws335{word-spacing:-2.932800pt;}
.ws10b{word-spacing:-2.922667pt;}
.ws284{word-spacing:-2.908800pt;}
.ws154{word-spacing:-2.890667pt;}
.ws101{word-spacing:-2.885333pt;}
.ws342{word-spacing:-2.880000pt;}
.ws28d{word-spacing:-2.875200pt;}
.ws332{word-spacing:-2.851200pt;}
.ws2{word-spacing:-2.828778pt;}
.ws2b0{word-spacing:-2.822400pt;}
.ws301{word-spacing:-2.812800pt;}
.ws2a8{word-spacing:-2.803200pt;}
.ws289{word-spacing:-2.774400pt;}
.ws333{word-spacing:-2.760000pt;}
.ws2e6{word-spacing:-2.702400pt;}
.ws3{word-spacing:-2.683179pt;}
.ws4{word-spacing:-2.676246pt;}
.ws331{word-spacing:-2.668800pt;}
.ws2e7{word-spacing:-2.644800pt;}
.wse1{word-spacing:-2.630400pt;}
.ws162{word-spacing:-2.629333pt;}
.ws146{word-spacing:-2.592000pt;}
.wsa2{word-spacing:-2.505600pt;}
.ws25a{word-spacing:-2.500800pt;}
.wse0{word-spacing:-2.481600pt;}
.ws1e2{word-spacing:-2.453333pt;}
.ws1c3{word-spacing:-2.309333pt;}
.wsfa{word-spacing:-2.288000pt;}
.ws2cc{word-spacing:-2.280000pt;}
.ws2a3{word-spacing:-2.265600pt;}
.wse3{word-spacing:-2.251200pt;}
.ws174{word-spacing:-2.245333pt;}
.wsa3{word-spacing:-2.155200pt;}
.ws2c6{word-spacing:-2.140800pt;}
.ws80{word-spacing:-2.064000pt;}
.ws1cc{word-spacing:-2.058667pt;}
.ws91{word-spacing:-2.035200pt;}
.ws243{word-spacing:-2.020800pt;}
.wse8{word-spacing:-2.001600pt;}
.wsa6{word-spacing:-1.953600pt;}
.ws1fe{word-spacing:-1.946667pt;}
.ws3d{word-spacing:-1.893333pt;}
.ws2f7{word-spacing:-1.876800pt;}
.ws6b{word-spacing:-1.824000pt;}
.ws2f9{word-spacing:-1.800000pt;}
.ws274{word-spacing:-1.795200pt;}
.ws5d{word-spacing:-1.781333pt;}
.ws273{word-spacing:-1.766400pt;}
.wsfc{word-spacing:-1.749333pt;}
.ws197{word-spacing:-1.642667pt;}
.ws35{word-spacing:-1.616000pt;}
.ws72{word-spacing:-1.520000pt;}
.ws1c6{word-spacing:-1.482667pt;}
.ws209{word-spacing:-1.445333pt;}
.ws2ad{word-spacing:-1.339200pt;}
.ws36{word-spacing:-1.290667pt;}
.ws348{word-spacing:-1.238400pt;}
.ws150{word-spacing:-1.221333pt;}
.ws285{word-spacing:-1.128000pt;}
.ws11a{word-spacing:-1.120000pt;}
.ws365{word-spacing:-1.104000pt;}
.wsdc{word-spacing:-1.060800pt;}
.ws24{word-spacing:-1.034667pt;}
.wsdb{word-spacing:-0.936000pt;}
.wsf9{word-spacing:-0.885333pt;}
.ws23c{word-spacing:-0.844800pt;}
.ws360{word-spacing:-0.816000pt;}
.ws1dd{word-spacing:-0.794667pt;}
.ws118{word-spacing:-0.682667pt;}
.ws235{word-spacing:-0.667200pt;}
.ws13{word-spacing:-0.453333pt;}
.ws29b{word-spacing:-0.288000pt;}
.ws127{word-spacing:-0.234667pt;}
.ws28{word-spacing:-0.128000pt;}
.ws6a{word-spacing:-0.096000pt;}
.ws53{word-spacing:0.000000pt;}
.ws272{word-spacing:0.100800pt;}
.ws339{word-spacing:0.148800pt;}
.ws5e{word-spacing:0.218667pt;}
.ws36a{word-spacing:0.268800pt;}
.ws2db{word-spacing:0.312000pt;}
.ws322{word-spacing:0.321600pt;}
.ws5f{word-spacing:0.373333pt;}
.ws33b{word-spacing:0.379200pt;}
.ws1cf{word-spacing:0.421333pt;}
.ws6d{word-spacing:0.442667pt;}
.ws300{word-spacing:0.465600pt;}
.ws2f2{word-spacing:0.523200pt;}
.ws1c4{word-spacing:0.528000pt;}
.ws246{word-spacing:0.561600pt;}
.ws116{word-spacing:0.581333pt;}
.ws1e0{word-spacing:0.597333pt;}
.ws1a2{word-spacing:0.634667pt;}
.ws31b{word-spacing:0.652800pt;}
.ws31a{word-spacing:0.724800pt;}
.ws8e{word-spacing:0.763200pt;}
.ws1e3{word-spacing:0.773333pt;}
.ws1b{word-spacing:0.794667pt;}
.ws314{word-spacing:0.916800pt;}
.ws181{word-spacing:0.970667pt;}
.ws2ae{word-spacing:0.993600pt;}
.wsd3{word-spacing:1.123200pt;}
.ws346{word-spacing:1.128000pt;}
.ws350{word-spacing:1.224000pt;}
.ws2b6{word-spacing:1.233600pt;}
.ws175{word-spacing:1.248000pt;}
.ws351{word-spacing:1.257600pt;}
.ws32b{word-spacing:1.267200pt;}
.ws180{word-spacing:1.274667pt;}
.wsd4{word-spacing:1.320000pt;}
.ws1b1{word-spacing:1.322667pt;}
.ws32c{word-spacing:1.324800pt;}
.ws1b0{word-spacing:1.328000pt;}
.ws1f9{word-spacing:1.360000pt;}
.ws25e{word-spacing:1.377600pt;}
.ws1f8{word-spacing:1.381333pt;}
.ws262{word-spacing:1.411200pt;}
.ws30f{word-spacing:1.430400pt;}
.ws1f7{word-spacing:1.584000pt;}
.ws263{word-spacing:1.632000pt;}
.ws261{word-spacing:1.713600pt;}
.ws5a{word-spacing:1.738667pt;}
.ws148{word-spacing:1.802667pt;}
.ws1c8{word-spacing:1.898667pt;}
.ws25c{word-spacing:1.958400pt;}
.ws3c{word-spacing:1.989333pt;}
.ws3e{word-spacing:2.010667pt;}
.wsb0{word-spacing:2.064000pt;}
.wsf7{word-spacing:2.106667pt;}
.ws2d9{word-spacing:2.256000pt;}
.ws283{word-spacing:2.294400pt;}
.wsd6{word-spacing:2.414400pt;}
.ws1e6{word-spacing:2.485333pt;}
.ws29a{word-spacing:2.505600pt;}
.ws2fe{word-spacing:2.568000pt;}
.ws71{word-spacing:2.581333pt;}
.ws343{word-spacing:2.596800pt;}
.ws1a7{word-spacing:2.645333pt;}
.ws2a9{word-spacing:2.664000pt;}
.ws70{word-spacing:2.709333pt;}
.wsef{word-spacing:2.730667pt;}
.ws302{word-spacing:2.764800pt;}
.ws193{word-spacing:2.864000pt;}
.ws61{word-spacing:2.874667pt;}
.ws60{word-spacing:2.933333pt;}
.ws281{word-spacing:3.024000pt;}
.ws2bf{word-spacing:3.052800pt;}
.ws2c0{word-spacing:3.110400pt;}
.ws2bd{word-spacing:3.139200pt;}
.wsd{word-spacing:3.162667pt;}
.ws2bc{word-spacing:3.168000pt;}
.ws20b{word-spacing:3.258667pt;}
.ws2be{word-spacing:3.268800pt;}
.ws18d{word-spacing:3.312000pt;}
.ws1eb{word-spacing:3.338667pt;}
.ws2a2{word-spacing:3.403200pt;}
.ws2f8{word-spacing:3.475200pt;}
.ws2b5{word-spacing:3.547200pt;}
.ws1b7{word-spacing:3.552000pt;}
.ws1d{word-spacing:3.610667pt;}
.wsb{word-spacing:3.712000pt;}
.ws1a9{word-spacing:3.866667pt;}
.ws1ea{word-spacing:3.893333pt;}
.ws1e8{word-spacing:3.920000pt;}
.ws58{word-spacing:3.925333pt;}
.wsaf{word-spacing:4.080000pt;}
.wse4{word-spacing:4.104000pt;}
.ws126{word-spacing:4.122667pt;}
.ws252{word-spacing:4.176000pt;}
.ws250{word-spacing:4.204800pt;}
.ws248{word-spacing:4.276800pt;}
.ws10c{word-spacing:4.293333pt;}
.ws36f{word-spacing:4.310400pt;}
.ws1bb{word-spacing:4.336000pt;}
.ws253{word-spacing:4.353600pt;}
.ws8d{word-spacing:4.521600pt;}
.ws82{word-spacing:4.554667pt;}
.ws1bc{word-spacing:4.634667pt;}
.ws225{word-spacing:4.645333pt;}
.ws1ed{word-spacing:4.752000pt;}
.ws223{word-spacing:4.757333pt;}
.ws215{word-spacing:4.848000pt;}
.ws366{word-spacing:4.987200pt;}
.ws14e{word-spacing:5.168000pt;}
.ws36b{word-spacing:5.193600pt;}
.ws14c{word-spacing:5.253333pt;}
.wsf8{word-spacing:5.269333pt;}
.ws160{word-spacing:5.290667pt;}
.wse2{word-spacing:5.304000pt;}
.ws14d{word-spacing:5.312000pt;}
.ws79{word-spacing:5.557333pt;}
.ws2dc{word-spacing:5.640000pt;}
.ws33a{word-spacing:5.644800pt;}
.ws341{word-spacing:5.990400pt;}
.ws2f5{word-spacing:6.067200pt;}
.ws22{word-spacing:6.186667pt;}
.ws19e{word-spacing:6.272000pt;}
.ws93{word-spacing:6.393600pt;}
.ws10d{word-spacing:6.410667pt;}
.ws186{word-spacing:6.432000pt;}
.wsa7{word-spacing:6.446400pt;}
.ws3f{word-spacing:6.485333pt;}
.ws1be{word-spacing:6.490667pt;}
.ws278{word-spacing:6.753600pt;}
.ws303{word-spacing:6.859200pt;}
.ws4c{word-spacing:6.993600pt;}
.ws25f{word-spacing:7.027200pt;}
.ws260{word-spacing:7.132800pt;}
.ws158{word-spacing:7.178667pt;}
.ws378{word-spacing:7.233600pt;}
.ws2f6{word-spacing:7.257600pt;}
.ws25d{word-spacing:7.291200pt;}
.ws2e3{word-spacing:7.296000pt;}
.ws2df{word-spacing:7.329600pt;}
.ws30c{word-spacing:7.344000pt;}
.wsa0{word-spacing:7.348800pt;}
.ws2c4{word-spacing:7.372800pt;}
.ws2e1{word-spacing:7.377600pt;}
.ws87{word-spacing:7.396800pt;}
.ws2b3{word-spacing:7.401600pt;}
.wsa1{word-spacing:7.416000pt;}
.ws269{word-spacing:7.420800pt;}
.ws35d{word-spacing:7.425600pt;}
.ws30a{word-spacing:7.430400pt;}
.ws88{word-spacing:7.435200pt;}
.ws355{word-spacing:7.464000pt;}
.ws29c{word-spacing:7.483200pt;}
.ws317{word-spacing:7.488000pt;}
.ws375{word-spacing:7.492800pt;}
.ws30d{word-spacing:7.497600pt;}
.ws362{word-spacing:7.507200pt;}
.ws1d0{word-spacing:7.514667pt;}
.ws257{word-spacing:7.521600pt;}
.ws30e{word-spacing:7.536000pt;}
.ws19d{word-spacing:7.546667pt;}
.ws354{word-spacing:7.564800pt;}
.ws2f0{word-spacing:7.574400pt;}
.ws2fc{word-spacing:7.579200pt;}
.ws26c{word-spacing:7.588800pt;}
.ws2e0{word-spacing:7.603200pt;}
.ws316{word-spacing:7.612800pt;}
.ws2c3{word-spacing:7.641600pt;}
.ws2de{word-spacing:7.646400pt;}
.ws34e{word-spacing:7.689600pt;}
.ws30b{word-spacing:7.699200pt;}
.ws277{word-spacing:7.718400pt;}
.ws143{word-spacing:7.813333pt;}
.ws43{word-spacing:7.973333pt;}
.ws17a{word-spacing:8.117333pt;}
.ws173{word-spacing:8.122667pt;}
.ws1ad{word-spacing:8.133333pt;}
.ws1ae{word-spacing:8.138667pt;}
.ws152{word-spacing:8.144000pt;}
.ws19f{word-spacing:8.160000pt;}
.ws1d8{word-spacing:8.165333pt;}
.ws191{word-spacing:8.192000pt;}
.ws27{word-spacing:8.197333pt;}
.ws7b{word-spacing:8.202667pt;}
.ws3a{word-spacing:8.218667pt;}
.ws1e5{word-spacing:8.224000pt;}
.ws17d{word-spacing:8.229333pt;}
.ws17c{word-spacing:8.240000pt;}
.ws1fa{word-spacing:8.245333pt;}
.ws192{word-spacing:8.277333pt;}
.ws17f{word-spacing:8.282667pt;}
.ws105{word-spacing:8.288000pt;}
.ws1ee{word-spacing:8.293333pt;}
.wsf0{word-spacing:8.304000pt;}
.ws185{word-spacing:8.309333pt;}
.ws220{word-spacing:8.336000pt;}
.ws11d{word-spacing:8.341333pt;}
.ws222{word-spacing:8.352000pt;}
.ws10{word-spacing:8.362667pt;}
.ws56{word-spacing:8.373333pt;}
.ws57{word-spacing:8.378667pt;}
.ws69{word-spacing:8.426667pt;}
.ws42{word-spacing:8.538667pt;}
.ws224{word-spacing:9.237333pt;}
.ws251{word-spacing:9.465600pt;}
.ws249{word-spacing:9.686400pt;}
.ws2ed{word-spacing:10.425600pt;}
.ws221{word-spacing:12.565333pt;}
.ws2e8{word-spacing:12.796800pt;}
.ws315{word-spacing:12.801600pt;}
.ws2e2{word-spacing:12.816000pt;}
.ws308{word-spacing:12.849600pt;}
.ws2e9{word-spacing:12.859200pt;}
.ws2c2{word-spacing:12.864000pt;}
.ws2b4{word-spacing:12.912000pt;}
.ws2dd{word-spacing:12.936000pt;}
.ws256{word-spacing:12.964800pt;}
.ws374{word-spacing:12.993600pt;}
.ws309{word-spacing:13.089600pt;}
.ws4b{word-spacing:20.337600pt;}
.ws12a{word-spacing:20.970405pt;}
.ws48{word-spacing:24.753600pt;}
.wsb8{word-spacing:35.869418pt;}
.ws4a{word-spacing:48.321600pt;}
.wsb3{word-spacing:70.966580pt;}
.wsba{word-spacing:105.884543pt;}
.wsbf{word-spacing:168.774424pt;}
.wsce{word-spacing:246.810781pt;}
.ws9{word-spacing:486.271467pt;}
.ws9f{word-spacing:776.736957pt;}
.ws13d{word-spacing:986.436736pt;}
.ws13b{word-spacing:993.694245pt;}
._10{margin-left:-2650.629267pt;}
._73{margin-left:-6.747742pt;}
._75{margin-left:-5.683200pt;}
._76{margin-left:-2.392009pt;}
._0{margin-left:-1.150924pt;}
._72{width:1.769067pt;}
._4c{width:8.720958pt;}
._60{width:9.762011pt;}
._11{width:11.961600pt;}
._2{width:13.690667pt;}
._a{width:14.618667pt;}
._4{width:16.133333pt;}
._74{width:17.035200pt;}
._8{width:17.978667pt;}
._d{width:18.954667pt;}
._7{width:19.877333pt;}
._3{width:20.794667pt;}
._c{width:21.776000pt;}
._13{width:22.714667pt;}
._6{width:23.754667pt;}
._17{width:25.363200pt;}
._e{width:26.325333pt;}
._5{width:27.973333pt;}
._9{width:29.114667pt;}
._3f{width:30.796800pt;}
._14{width:32.661333pt;}
._15{width:33.648000pt;}
._f{width:34.794667pt;}
._b{width:36.778667pt;}
._70{width:37.680000pt;}
._2b{width:53.110803pt;}
._44{width:63.005079pt;}
._33{width:64.733057pt;}
._24{width:68.957005pt;}
._26{width:70.368004pt;}
._71{width:71.461333pt;}
._31{width:73.688679pt;}
._54{width:74.746799pt;}
._43{width:78.288088pt;}
._29{width:79.964867pt;}
._12{width:88.082027pt;}
._5f{width:89.637280pt;}
._5b{width:90.635667pt;}
._4e{width:94.006292pt;}
._37{width:100.687808pt;}
._58{width:104.186431pt;}
._5e{width:112.463661pt;}
._5c{width:114.426303pt;}
._52{width:116.431611pt;}
._49{width:119.370058pt;}
._61{width:122.703533pt;}
._25{width:127.601605pt;}
._5a{width:137.252684pt;}
._1e{width:139.897985pt;}
._47{width:143.183277pt;}
._1b{width:153.064753pt;}
._18{width:158.244422pt;}
._68{width:174.201556pt;}
._3b{width:181.437732pt;}
._34{width:183.677704pt;}
._40{width:184.693158pt;}
._6c{width:190.500019pt;}
._22{width:194.224772pt;}
._1c{width:196.810340pt;}
._4d{width:201.849210pt;}
._66{width:224.803590pt;}
._1f{width:229.855260pt;}
._65{width:232.611492pt;}
._23{width:241.102053pt;}
._4b{width:244.216681pt;}
._2f{width:264.009500pt;}
._27{width:269.022771pt;}
._5d{width:281.852477pt;}
._35{width:305.502315pt;}
._21{width:311.155577pt;}
._50{width:346.572734pt;}
._59{width:350.661941pt;}
._3d{width:355.805686pt;}
._2d{width:359.944301pt;}
._6e{width:360.951221pt;}
._2a{width:364.987438pt;}
._63{width:368.204464pt;}
._62{width:371.063095pt;}
._57{width:419.343361pt;}
._1d{width:435.619972pt;}
._2c{width:499.027362pt;}
._1a{width:549.471532pt;}
._19{width:569.652613pt;}
._28{width:678.378720pt;}
._20{width:722.661900pt;}
._48{width:733.650197pt;}
._46{width:759.879275pt;}
._16{width:763.738133pt;}
._1{width:807.873567pt;}
._53{width:825.244084pt;}
._45{width:828.613459pt;}
._36{width:833.444515pt;}
._41{width:845.787828pt;}
._38{width:846.705149pt;}
._3a{width:873.926142pt;}
._39{width:885.019337pt;}
._42{width:886.303588pt;}
._2e{width:889.042753pt;}
._30{width:895.284809pt;}
._32{width:961.818377pt;}
._64{width:1021.147841pt;}
._4a{width:1076.594542pt;}
._56{width:1079.665339pt;}
._55{width:1125.549664pt;}
._3c{width:1128.779490pt;}
._6f{width:1209.751278pt;}
._3e{width:1225.260417pt;}
._67{width:1325.567247pt;}
._6a{width:1380.798557pt;}
._69{width:1392.114865pt;}
._6b{width:1403.582272pt;}
._51{width:1427.497889pt;}
._4f{width:1520.834323pt;}
._6d{width:1577.853343pt;}
.fsf{font-size:28.585067pt;}
.fse{font-size:31.995733pt;}
.fsb{font-size:32.000000pt;}
.fs9{font-size:33.600000pt;}
.fs7{font-size:35.551467pt;}
.fs8{font-size:35.732800pt;}
.fsc{font-size:37.333333pt;}
.fsa{font-size:39.999467pt;}
.fs4{font-size:42.666133pt;}
.fsd{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs11{font-size:50.666667pt;}
.fs5{font-size:53.333333pt;}
.fs6{font-size:56.000000pt;}
.fs1{font-size:69.332800pt;}
.fs3{font-size:80.000000pt;}
.fs0{font-size:90.666133pt;}
.fs10{font-size:170.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:11.943333pt;}
.yb0{bottom:20.107867pt;}
.y51{bottom:24.492133pt;}
.yaf{bottom:28.799867pt;}
.y4f{bottom:31.295147pt;}
.y50{bottom:33.184133pt;}
.y4e{bottom:39.004667pt;}
.yf8{bottom:53.291067pt;}
.y1e5{bottom:53.291600pt;}
.yaa{bottom:53.291733pt;}
.y25c{bottom:53.291867pt;}
.y85{bottom:53.292267pt;}
.yb9{bottom:53.292400pt;}
.y29b{bottom:53.292533pt;}
.y1a0{bottom:53.292667pt;}
.y10b{bottom:53.294000pt;}
.y22f{bottom:53.368667pt;}
.y38{bottom:61.077600pt;}
.ya9{bottom:66.519333pt;}
.y29a{bottom:66.671333pt;}
.y364{bottom:66.822267pt;}
.y2df{bottom:66.822533pt;}
.y321{bottom:67.351467pt;}
.yb8{bottom:67.880800pt;}
.y25b{bottom:67.955867pt;}
.y1e4{bottom:67.956933pt;}
.yc0{bottom:68.032000pt;}
.y19f{bottom:68.032667pt;}
.y10a{bottom:68.335333pt;}
.y122{bottom:68.639333pt;}
.y84{bottom:68.862933pt;}
.y82{bottom:68.864667pt;}
.yf7{bottom:69.693867pt;}
.y134{bottom:70.302000pt;}
.y83{bottom:74.758933pt;}
.y37{bottom:77.026933pt;}
.ya8{bottom:79.748133pt;}
.y299{bottom:79.975733pt;}
.y363{bottom:80.353467pt;}
.y2de{bottom:80.353733pt;}
.y320{bottom:81.336267pt;}
.ybf{bottom:82.016800pt;}
.yb7{bottom:82.470400pt;}
.y1e3{bottom:82.620933pt;}
.y19e{bottom:82.698000pt;}
.y22e{bottom:83.302000pt;}
.y109{bottom:83.378000pt;}
.y121{bottom:83.984667pt;}
.y81{bottom:84.360667pt;}
.yf6{bottom:86.097867pt;}
.y25a{bottom:86.626667pt;}
.y133{bottom:87.234000pt;}
.ya7{bottom:92.901333pt;}
.y36{bottom:92.976267pt;}
.y34{bottom:92.976933pt;}
.y298{bottom:93.280133pt;}
.y362{bottom:93.657867pt;}
.y2dd{bottom:93.809333pt;}
.y31f{bottom:94.639467pt;}
.y4c{bottom:95.471467pt;}
.ybe{bottom:96.680800pt;}
.yb6{bottom:96.983200pt;}
.y1e2{bottom:97.284933pt;}
.y19d{bottom:97.438000pt;}
.y22d{bottom:98.268667pt;}
.y108{bottom:98.420667pt;}
.y35{bottom:98.872400pt;}
.y120{bottom:99.328667pt;}
.y80{bottom:99.856667pt;}
.yf5{bottom:102.425067pt;}
.y132{bottom:104.242000pt;}
.ya6{bottom:106.128933pt;}
.y297{bottom:106.658933pt;}
.y2dc{bottom:107.112533pt;}
.y361{bottom:107.187867pt;}
.y31e{bottom:108.699867pt;}
.y33{bottom:108.850267pt;}
.y31{bottom:108.851333pt;}
.y4b{bottom:110.136667pt;}
.y259{bottom:110.891333pt;}
.ybd{bottom:111.420400pt;}
.ybb{bottom:111.420667pt;}
.yb5{bottom:111.571600pt;}
.yb3{bottom:111.571867pt;}
.y1e0{bottom:111.951333pt;}
.y19c{bottom:112.102000pt;}
.y22c{bottom:113.235333pt;}
.y107{bottom:113.387333pt;}
.y11f{bottom:114.674000pt;}
.y32{bottom:114.822000pt;}
.y7f{bottom:115.352667pt;}
.ybc{bottom:116.711733pt;}
.yb4{bottom:116.862933pt;}
.y1e1{bottom:117.921200pt;}
.yf4{bottom:118.827867pt;}
.ya5{bottom:119.282133pt;}
.y296{bottom:119.963333pt;}
.y360{bottom:120.643467pt;}
.y2db{bottom:120.643733pt;}
.y131{bottom:121.250000pt;}
.y31d{bottom:122.684667pt;}
.y30{bottom:124.800667pt;}
.y258{bottom:125.556667pt;}
.yba{bottom:126.084400pt;}
.yb1{bottom:126.084667pt;}
.y1df{bottom:126.615333pt;}
.y19b{bottom:126.842000pt;}
.y22b{bottom:128.202000pt;}
.y106{bottom:128.430000pt;}
.y11e{bottom:130.018000pt;}
.y7e{bottom:130.848667pt;}
.yb2{bottom:131.451333pt;}
.ya4{bottom:132.510933pt;}
.y295{bottom:133.343333pt;}
.y35f{bottom:134.022267pt;}
.y2da{bottom:134.173733pt;}
.yf3{bottom:135.231867pt;}
.y31c{bottom:136.743867pt;}
.y130{bottom:138.182000pt;}
.y4a{bottom:139.464667pt;}
.y257{bottom:140.220667pt;}
.y2f{bottom:140.750000pt;}
.y1de{bottom:141.279333pt;}
.y19a{bottom:141.506000pt;}
.y198{bottom:141.507333pt;}
.y229{bottom:143.168667pt;}
.y105{bottom:143.472667pt;}
.y11d{bottom:145.287333pt;}
.ya3{bottom:145.738533pt;}
.y7d{bottom:146.343333pt;}
.y7b{bottom:146.344667pt;}
.y294{bottom:146.646533pt;}
.y199{bottom:147.402000pt;}
.y35e{bottom:147.477867pt;}
.y2d9{bottom:147.478133pt;}
.y22a{bottom:149.140667pt;}
.y31b{bottom:150.048267pt;}
.yf2{bottom:151.634667pt;}
.y7c{bottom:152.315333pt;}
.ye2{bottom:153.448667pt;}
.y256{bottom:154.884667pt;}
.y12f{bottom:155.190000pt;}
.y1dc{bottom:156.019333pt;}
.y197{bottom:156.247333pt;}
.y2e{bottom:156.699333pt;}
.y2c{bottom:156.700667pt;}
.y228{bottom:158.136667pt;}
.y104{bottom:158.515333pt;}
.ya2{bottom:158.891733pt;}
.y293{bottom:159.950933pt;}
.y11c{bottom:160.632667pt;}
.y35d{bottom:161.009067pt;}
.y2d8{bottom:161.009333pt;}
.y1dd{bottom:161.915333pt;}
.y7a{bottom:161.916667pt;}
.y2d{bottom:162.671333pt;}
.y31a{bottom:164.031867pt;}
.yf1{bottom:167.961867pt;}
.y1db{bottom:170.684667pt;}
.y196{bottom:170.911333pt;}
.ya1{bottom:172.119333pt;}
.y12e{bottom:172.122000pt;}
.y2b{bottom:172.650000pt;}
.y227{bottom:173.178000pt;}
.y292{bottom:173.329733pt;}
.y49{bottom:173.482000pt;}
.y255{bottom:173.555333pt;}
.y35c{bottom:174.463467pt;}
.y2d7{bottom:174.463733pt;}
.y11b{bottom:175.976667pt;}
.y79{bottom:177.412667pt;}
.y319{bottom:178.092267pt;}
.yef{bottom:184.364667pt;}
.ya0{bottom:185.348133pt;}
.y1da{bottom:185.348667pt;}
.y195{bottom:185.651333pt;}
.y254{bottom:185.876667pt;}
.y291{bottom:186.634133pt;}
.y35b{bottom:187.843467pt;}
.y2d6{bottom:187.994933pt;}
.y226{bottom:188.144667pt;}
.y224{bottom:188.146000pt;}
.y103{bottom:188.524667pt;}
.y2a{bottom:188.599333pt;}
.y48{bottom:188.600667pt;}
.y12d{bottom:189.130000pt;}
.yf0{bottom:189.732667pt;}
.y11a{bottom:191.322000pt;}
.y318{bottom:192.075867pt;}
.y78{bottom:192.908667pt;}
.y225{bottom:194.040667pt;}
.y9f{bottom:198.501333pt;}
.yed{bottom:199.181200pt;}
.y1d9{bottom:200.012667pt;}
.y1d7{bottom:200.014000pt;}
.y290{bottom:200.014133pt;}
.y194{bottom:200.315333pt;}
.y35a{bottom:201.297867pt;}
.y2d5{bottom:201.298133pt;}
.y223{bottom:203.112667pt;}
.y102{bottom:203.566000pt;}
.y47{bottom:203.794000pt;}
.yee{bottom:204.472667pt;}
.y28{bottom:204.548667pt;}
.y317{bottom:205.455867pt;}
.y1d8{bottom:205.908667pt;}
.y12c{bottom:206.062000pt;}
.y119{bottom:206.667333pt;}
.y77{bottom:208.404667pt;}
.y29{bottom:210.444667pt;}
.y9e{bottom:211.728933pt;}
.y28f{bottom:213.317333pt;}
.y1d6{bottom:214.678000pt;}
.y359{bottom:214.829067pt;}
.y2d4{bottom:214.829333pt;}
.y193{bottom:215.055333pt;}
.y191{bottom:215.056667pt;}
.yec{bottom:215.508400pt;}
.y222{bottom:218.079333pt;}
.y253{bottom:218.534000pt;}
.y101{bottom:218.608667pt;}
.y46{bottom:218.987333pt;}
.y316{bottom:219.439467pt;}
.y27{bottom:220.498000pt;}
.y192{bottom:220.951333pt;}
.y118{bottom:222.011333pt;}
.y12b{bottom:223.070000pt;}
.y76{bottom:223.900667pt;}
.y9d{bottom:224.882133pt;}
.y28e{bottom:226.621733pt;}
.y2d3{bottom:228.284933pt;}
.y358{bottom:228.360267pt;}
.y1d4{bottom:229.342000pt;}
.y190{bottom:229.720667pt;}
.yeb{bottom:231.911200pt;}
.y221{bottom:233.046000pt;}
.y252{bottom:233.198000pt;}
.y315{bottom:233.424267pt;}
.y100{bottom:233.575333pt;}
.y45{bottom:234.106000pt;}
.y1d5{bottom:235.238000pt;}
.y25{bottom:236.447333pt;}
.y117{bottom:236.978000pt;}
.y9c{bottom:238.110933pt;}
.y75{bottom:239.472667pt;}
.y28d{bottom:240.000533pt;}
.y12a{bottom:240.002000pt;}
.y2d2{bottom:241.588133pt;}
.y357{bottom:241.663467pt;}
.y26{bottom:242.343333pt;}
.y1d3{bottom:244.006000pt;}
.y18f{bottom:244.460667pt;}
.y314{bottom:247.484667pt;}
.y251{bottom:247.863333pt;}
.y220{bottom:248.012667pt;}
.y21e{bottom:248.014000pt;}
.yea{bottom:248.315200pt;}
.yff{bottom:248.618000pt;}
.y44{bottom:249.299333pt;}
.y9b{bottom:251.338533pt;}
.y116{bottom:252.323333pt;}
.y24{bottom:252.396667pt;}
.y28c{bottom:253.304933pt;}
.y21f{bottom:253.984667pt;}
.y74{bottom:254.968667pt;}
.y2d1{bottom:255.119333pt;}
.y356{bottom:255.194667pt;}
.y129{bottom:257.010000pt;}
.y18e{bottom:259.124667pt;}
.y313{bottom:260.787867pt;}
.y250{bottom:262.527333pt;}
.y21d{bottom:262.980667pt;}
.y1d2{bottom:263.130000pt;}
.yfe{bottom:263.660667pt;}
.y9a{bottom:264.491733pt;}
.y43{bottom:264.492667pt;}
.ye9{bottom:264.718000pt;}
.y28b{bottom:266.684933pt;}
.y115{bottom:267.668667pt;}
.y22{bottom:268.347333pt;}
.y355{bottom:268.497867pt;}
.y2d0{bottom:268.649333pt;}
.y73{bottom:270.464667pt;}
.y18d{bottom:273.864667pt;}
.y18b{bottom:273.866000pt;}
.y128{bottom:273.942000pt;}
.y23{bottom:274.242000pt;}
.y312{bottom:274.772667pt;}
.y24f{bottom:277.191333pt;}
.y99{bottom:277.719333pt;}
.y21c{bottom:278.023333pt;}
.yfd{bottom:278.703333pt;}
.y42{bottom:279.611333pt;}
.y18c{bottom:279.760667pt;}
.y28a{bottom:279.988133pt;}
.ye8{bottom:281.045200pt;}
.y354{bottom:281.953467pt;}
.y2cf{bottom:281.953733pt;}
.y114{bottom:283.012667pt;}
.y21{bottom:284.298000pt;}
.y72{bottom:285.960667pt;}
.y18a{bottom:288.530000pt;}
.y311{bottom:288.831867pt;}
.y127{bottom:289.815333pt;}
.y24e{bottom:291.856667pt;}
.y1d1{bottom:292.007333pt;}
.y21b{bottom:292.990000pt;}
.y289{bottom:293.292533pt;}
.yfc{bottom:293.670000pt;}
.y41{bottom:294.804667pt;}
.y2ce{bottom:295.409333pt;}
.y353{bottom:295.484667pt;}
.y98{bottom:296.467333pt;}
.ye7{bottom:297.449200pt;}
.y113{bottom:298.358000pt;}
.y20{bottom:300.247333pt;}
.y71{bottom:301.455333pt;}
.y310{bottom:302.136267pt;}
.y189{bottom:303.270000pt;}
.y24d{bottom:306.520667pt;}
.y1d0{bottom:306.671333pt;}
.y126{bottom:306.748667pt;}
.y21a{bottom:307.956667pt;}
.yfb{bottom:308.712667pt;}
.y352{bottom:308.787867pt;}
.y2cd{bottom:308.939333pt;}
.y40{bottom:309.998000pt;}
.y97{bottom:311.811333pt;}
.y112{bottom:313.627333pt;}
.ye6{bottom:313.852000pt;}
.y1f{bottom:316.120667pt;}
.y30f{bottom:316.195467pt;}
.y6f{bottom:316.574000pt;}
.y54{bottom:317.506667pt;}
.y188{bottom:317.935333pt;}
.y288{bottom:319.975733pt;}
.y24c{bottom:321.184667pt;}
.y1cf{bottom:321.335333pt;}
.y2cc{bottom:322.243733pt;}
.y351{bottom:322.319067pt;}
.y70{bottom:322.468667pt;}
.y219{bottom:322.923333pt;}
.yfa{bottom:323.754000pt;}
.y125{bottom:323.755333pt;}
.y3f{bottom:325.116667pt;}
.y111{bottom:328.668667pt;}
.ye5{bottom:330.179200pt;}
.y30e{bottom:330.180267pt;}
.y1e{bottom:332.070000pt;}
.y187{bottom:332.675333pt;}
.y287{bottom:333.355733pt;}
.y350{bottom:335.622267pt;}
.y2cb{bottom:335.773733pt;}
.y24b{bottom:335.850000pt;}
.y1ce{bottom:336.000667pt;}
.y218{bottom:337.890000pt;}
.y3e{bottom:340.310000pt;}
.y124{bottom:340.688667pt;}
.y96{bottom:343.863333pt;}
.y110{bottom:344.014000pt;}
.y30d{bottom:344.163867pt;}
.yf9{bottom:344.616667pt;}
.ye3{bottom:346.582000pt;}
.y286{bottom:346.658933pt;}
.y186{bottom:347.339333pt;}
.y6e{bottom:347.564667pt;}
.y1d{bottom:348.019333pt;}
.y34f{bottom:349.153467pt;}
.y2ca{bottom:349.304933pt;}
.y24a{bottom:350.514000pt;}
.y1cd{bottom:350.664667pt;}
.ye4{bottom:351.950000pt;}
.y217{bottom:352.856667pt;}
.y3d{bottom:355.503333pt;}
.y123{bottom:357.695333pt;}
.y30c{bottom:358.224267pt;}
.y95{bottom:358.527333pt;}
.y10f{bottom:359.359333pt;}
.y285{bottom:359.963333pt;}
.y53{bottom:360.026667pt;}
.y185{bottom:362.079333pt;}
.y2c9{bottom:362.609333pt;}
.y34e{bottom:362.684667pt;}
.y6c{bottom:363.062000pt;}
.y1c{bottom:363.968667pt;}
.y249{bottom:365.178000pt;}
.y1ca{bottom:365.327333pt;}
.y1cc{bottom:365.328667pt;}
.y215{bottom:367.672667pt;}
.y6d{bottom:369.032667pt;}
.y3a{bottom:370.617600pt;}
.y3c{bottom:370.620667pt;}
.y1cb{bottom:371.224667pt;}
.y30b{bottom:371.528667pt;}
.y94{bottom:373.191333pt;}
.y284{bottom:373.343333pt;}
.y216{bottom:373.643333pt;}
.y10d{bottom:373.946800pt;}
.y10e{bottom:374.627333pt;}
.y34d{bottom:375.987867pt;}
.y2c8{bottom:376.063733pt;}
.y3b{bottom:376.591333pt;}
.y184{bottom:376.743333pt;}
.y6b{bottom:378.632667pt;}
.y69{bottom:378.634000pt;}
.y248{bottom:379.843333pt;}
.y1c9{bottom:379.992667pt;}
.y214{bottom:382.715333pt;}
.y6a{bottom:384.528667pt;}
.y1b{bottom:385.284667pt;}
.y30a{bottom:385.587867pt;}
.y39{bottom:385.810933pt;}
.y283{bottom:386.646533pt;}
.y10c{bottom:387.250000pt;}
.y93{bottom:387.856667pt;}
.y34c{bottom:389.519067pt;}
.y2c7{bottom:389.594933pt;}
.y183{bottom:391.483333pt;}
.y67{bottom:394.128667pt;}
.y247{bottom:394.507333pt;}
.y1c8{bottom:394.656667pt;}
.y213{bottom:397.682000pt;}
.y309{bottom:399.572667pt;}
.y282{bottom:399.950933pt;}
.y68{bottom:400.024667pt;}
.y92{bottom:402.520667pt;}
.y2c6{bottom:402.898133pt;}
.y34b{bottom:402.973467pt;}
.y15c{bottom:403.351333pt;}
.y15b{bottom:408.642000pt;}
.y246{bottom:409.171333pt;}
.y244{bottom:409.172667pt;}
.y1c7{bottom:409.320667pt;}
.y66{bottom:409.624667pt;}
.y64{bottom:409.626000pt;}
.y182{bottom:412.119333pt;}
.y212{bottom:412.648667pt;}
.y281{bottom:413.329733pt;}
.y308{bottom:413.556267pt;}
.y245{bottom:415.143333pt;}
.y65{bottom:415.520667pt;}
.y2c5{bottom:416.429333pt;}
.y34a{bottom:416.504667pt;}
.y91{bottom:417.184667pt;}
.y15a{bottom:420.664268pt;}
.y243{bottom:423.836667pt;}
.y1c6{bottom:423.986000pt;}
.y63{bottom:425.120667pt;}
.y61{bottom:425.122000pt;}
.y280{bottom:426.634133pt;}
.y211{bottom:427.615333pt;}
.y307{bottom:427.616667pt;}
.y349{bottom:429.809067pt;}
.y2c4{bottom:429.884933pt;}
.y62{bottom:431.092667pt;}
.y90{bottom:431.850000pt;}
.y1a{bottom:431.851333pt;}
.y159{bottom:435.253952pt;}
.y242{bottom:438.500667pt;}
.y1c5{bottom:438.650000pt;}
.y27f{bottom:440.014133pt;}
.y60{bottom:440.616667pt;}
.y5e{bottom:440.618000pt;}
.y306{bottom:440.919867pt;}
.y210{bottom:442.582000pt;}
.y20e{bottom:442.583333pt;}
.y348{bottom:443.339067pt;}
.y2c3{bottom:443.414933pt;}
.y181{bottom:445.458000pt;}
.y8f{bottom:446.514000pt;}
.y19{bottom:446.515333pt;}
.y5f{bottom:446.588667pt;}
.y20f{bottom:448.479333pt;}
.y158{bottom:449.842570pt;}
.y1c4{bottom:453.314000pt;}
.y27e{bottom:453.317333pt;}
.y305{bottom:454.904667pt;}
.y5d{bottom:456.114000pt;}
.y2c2{bottom:456.719333pt;}
.y347{bottom:456.794667pt;}
.y20d{bottom:457.550000pt;}
.y180{bottom:460.198000pt;}
.y8e{bottom:461.178000pt;}
.y157{bottom:464.431188pt;}
.y18{bottom:465.186000pt;}
.y27d{bottom:466.621733pt;}
.y1c3{bottom:467.979333pt;}
.y304{bottom:468.963867pt;}
.y25f{bottom:469.644133pt;}
.y346{bottom:470.173467pt;}
.y2c1{bottom:470.249333pt;}
.y5c{bottom:471.686000pt;}
.y20c{bottom:472.516667pt;}
.y17f{bottom:474.863333pt;}
.y8d{bottom:475.843333pt;}
.y156{bottom:479.019805pt;}
.y17{bottom:479.851333pt;}
.y27c{bottom:480.000533pt;}
.y1c2{bottom:482.643333pt;}
.y25e{bottom:482.948533pt;}
.y303{bottom:482.948667pt;}
.y345{bottom:483.629067pt;}
.y2c0{bottom:483.780533pt;}
.y5b{bottom:487.182000pt;}
.y20b{bottom:487.559333pt;}
.y17e{bottom:489.603333pt;}
.y8c{bottom:490.507333pt;}
.y27b{bottom:493.304933pt;}
.y155{bottom:493.609490pt;}
.y16{bottom:494.515333pt;}
.y25d{bottom:496.327333pt;}
.y302{bottom:497.009067pt;}
.y344{bottom:497.160267pt;}
.y2bf{bottom:497.236133pt;}
.y1c1{bottom:497.307333pt;}
.y20a{bottom:502.526000pt;}
.y5a{bottom:502.678000pt;}
.y17d{bottom:504.267333pt;}
.y89{bottom:505.168267pt;}
.y8b{bottom:505.171333pt;}
.y27a{bottom:506.684933pt;}
.y154{bottom:508.198107pt;}
.y15{bottom:509.180667pt;}
.y2be{bottom:510.539333pt;}
.y343{bottom:510.690267pt;}
.y301{bottom:510.992667pt;}
.y8a{bottom:511.143333pt;}
.y1c0{bottom:511.972667pt;}
.y208{bottom:517.492667pt;}
.y59{bottom:518.172667pt;}
.y57{bottom:518.174000pt;}
.y17c{bottom:519.007333pt;}
.y88{bottom:519.832267pt;}
.y279{bottom:519.988133pt;}
.y153{bottom:522.786725pt;}
.y209{bottom:523.388667pt;}
.y14{bottom:523.844667pt;}
.y342{bottom:523.994667pt;}
.y2bd{bottom:524.070533pt;}
.y58{bottom:524.144667pt;}
.y300{bottom:524.297067pt;}
.y1bf{bottom:526.636667pt;}
.y207{bottom:532.459333pt;}
.y278{bottom:533.292533pt;}
.y56{bottom:533.670000pt;}
.y17b{bottom:533.671333pt;}
.y87{bottom:534.572267pt;}
.y152{bottom:537.376409pt;}
.y341{bottom:537.449067pt;}
.y2bc{bottom:537.600533pt;}
.y2ff{bottom:538.356267pt;}
.y13{bottom:538.508667pt;}
.y1be{bottom:541.300667pt;}
.y277{bottom:546.671333pt;}
.y206{bottom:547.426000pt;}
.y17a{bottom:548.412667pt;}
.y86{bottom:549.237600pt;}
.y55{bottom:549.240667pt;}
.y2bb{bottom:550.903733pt;}
.y340{bottom:550.980267pt;}
.y151{bottom:551.965027pt;}
.y2fe{bottom:552.341067pt;}
.y12{bottom:553.174000pt;}
.y1bd{bottom:555.966000pt;}
.y276{bottom:559.143333pt;}
.ye1{bottom:562.015333pt;}
.y204{bottom:562.394000pt;}
.y179{bottom:563.076667pt;}
.y2ba{bottom:564.359333pt;}
.y33f{bottom:564.511467pt;}
.y2fd{bottom:566.324667pt;}
.y150{bottom:566.553645pt;}
.ye0{bottom:567.382000pt;}
.y11{bottom:567.838000pt;}
.y205{bottom:568.364667pt;}
.y1bc{bottom:570.630000pt;}
.y203{bottom:577.362000pt;}
.y33e{bottom:577.814667pt;}
.y178{bottom:577.816667pt;}
.y2b9{bottom:577.889333pt;}
.yad{bottom:577.889467pt;}
.ydf{bottom:579.403750pt;}
.y2fc{bottom:580.385067pt;}
.y14f{bottom:581.142262pt;}
.y10{bottom:582.502000pt;}
.y1bb{bottom:585.294000pt;}
.y2b8{bottom:591.193733pt;}
.yac{bottom:591.193867pt;}
.y33d{bottom:591.345867pt;}
.y202{bottom:592.328667pt;}
.y177{bottom:592.480667pt;}
.y275{bottom:593.387333pt;}
.yde{bottom:593.992367pt;}
.y2fb{bottom:594.368667pt;}
.y14e{bottom:595.656214pt;}
.yf{bottom:597.167333pt;}
.y1ba{bottom:599.959333pt;}
.yab{bottom:604.572667pt;}
.y2b7{bottom:604.723733pt;}
.y33c{bottom:604.800267pt;}
.y176{bottom:607.146000pt;}
.y201{bottom:607.370000pt;}
.y2fa{bottom:607.748667pt;}
.y274{bottom:608.051333pt;}
.ydd{bottom:608.505253pt;}
.y14d{bottom:610.244832pt;}
.ye{bottom:611.831333pt;}
.y1b9{bottom:614.623333pt;}
.y2b6{bottom:618.028133pt;}
.y33b{bottom:618.180267pt;}
.ydc{bottom:619.238985pt;}
.y14c{bottom:620.978564pt;}
.y2f9{bottom:621.733467pt;}
.y175{bottom:621.886000pt;}
.y1ff{bottom:622.188667pt;}
.y273{bottom:622.715333pt;}
.yd{bottom:626.495333pt;}
.y200{bottom:628.082000pt;}
.y1b8{bottom:629.288667pt;}
.y2b5{bottom:631.559333pt;}
.y33a{bottom:631.635867pt;}
.ydb{bottom:633.828669pt;}
.y14b{bottom:635.567182pt;}
.y2f8{bottom:635.717067pt;}
.y272{bottom:636.547333pt;}
.y174{bottom:636.550000pt;}
.y1fe{bottom:637.155333pt;}
.yc{bottom:641.160667pt;}
.y1b7{bottom:643.952667pt;}
.yda{bottom:644.486670pt;}
.y2b4{bottom:645.013733pt;}
.y339{bottom:645.165867pt;}
.y14a{bottom:646.226249pt;}
.y2f7{bottom:649.097067pt;}
.y173{bottom:651.290000pt;}
.y1fd{bottom:652.122000pt;}
.yb{bottom:655.824667pt;}
.y2b3{bottom:658.393733pt;}
.y1b6{bottom:658.616667pt;}
.y338{bottom:658.621467pt;}
.yd9{bottom:659.075287pt;}
.y149{bottom:660.814866pt;}
.y2f6{bottom:663.080667pt;}
.y172{bottom:665.954000pt;}
.y1fc{bottom:667.088667pt;}
.yd8{bottom:669.733287pt;}
.ya{bottom:670.488667pt;}
.y271{bottom:670.715333pt;}
.y148{bottom:671.472866pt;}
.y2b2{bottom:671.848133pt;}
.y337{bottom:672.000267pt;}
.y1b5{bottom:673.282000pt;}
.yd7{bottom:673.663905pt;}
.y2f5{bottom:677.141067pt;}
.y171{bottom:680.694000pt;}
.y1fb{bottom:682.055333pt;}
.yd6{bottom:684.322972pt;}
.y9{bottom:685.154000pt;}
.y2b1{bottom:685.379333pt;}
.y336{bottom:685.455867pt;}
.y147{bottom:686.061484pt;}
.y1b4{bottom:687.946000pt;}
.y270{bottom:689.915333pt;}
.y2f4{bottom:691.124667pt;}
.y170{bottom:695.359333pt;}
.y146{bottom:696.720551pt;}
.y1fa{bottom:697.022000pt;}
.y2b0{bottom:698.834933pt;}
.y335{bottom:698.835867pt;}
.yd5{bottom:698.911589pt;}
.y8{bottom:699.818000pt;}
.y1b3{bottom:702.610000pt;}
.y2f3{bottom:704.429067pt;}
.y26f{bottom:708.056667pt;}
.y16f{bottom:710.099333pt;}
.y145{bottom:711.309168pt;}
.y1f9{bottom:712.064667pt;}
.y2af{bottom:712.213733pt;}
.y334{bottom:712.290267pt;}
.yd4{bottom:713.500207pt;}
.y7{bottom:714.482000pt;}
.y1b2{bottom:717.275333pt;}
.y2f2{bottom:718.488267pt;}
.y26e{bottom:722.722000pt;}
.yd3{bottom:724.158207pt;}
.y16e{bottom:724.763333pt;}
.y2ae{bottom:725.669333pt;}
.y333{bottom:725.821467pt;}
.y144{bottom:725.897786pt;}
.y1f8{bottom:727.031333pt;}
.y1b1{bottom:731.939333pt;}
.y2f1{bottom:732.473067pt;}
.y26d{bottom:737.386000pt;}
.yd2{bottom:738.747891pt;}
.y2ad{bottom:739.199333pt;}
.y332{bottom:739.351467pt;}
.y16d{bottom:739.503333pt;}
.y143{bottom:740.486404pt;}
.y1f7{bottom:741.999333pt;}
.y6{bottom:745.776667pt;}
.y2f0{bottom:746.457867pt;}
.y1b0{bottom:746.603333pt;}
.yd1{bottom:749.405891pt;}
.y26c{bottom:752.050000pt;}
.y2ac{bottom:752.654933pt;}
.y331{bottom:752.655867pt;}
.y16c{bottom:754.168667pt;}
.y142{bottom:755.076088pt;}
.y1f6{bottom:756.966000pt;}
.y2ef{bottom:759.836667pt;}
.y1af{bottom:761.343333pt;}
.yd0{bottom:763.994509pt;}
.y2ab{bottom:766.186133pt;}
.y330{bottom:766.187067pt;}
.y16b{bottom:768.908667pt;}
.y141{bottom:769.664706pt;}
.y26b{bottom:771.174000pt;}
.y1f5{bottom:771.932667pt;}
.y2ee{bottom:773.821467pt;}
.ycf{bottom:774.652509pt;}
.y1ae{bottom:776.008667pt;}
.y2aa{bottom:779.489333pt;}
.y32f{bottom:779.641467pt;}
.y16a{bottom:783.572667pt;}
.y140{bottom:784.253323pt;}
.y1f4{bottom:786.899333pt;}
.y2ed{bottom:787.880667pt;}
.yce{bottom:789.242193pt;}
.y1ad{bottom:790.672667pt;}
.y2a9{bottom:793.020533pt;}
.y32e{bottom:793.021467pt;}
.y5{bottom:793.700667pt;}
.y371{bottom:794.684667pt;}
.y169{bottom:798.312667pt;}
.y13f{bottom:798.767275pt;}
.ycd{bottom:799.900193pt;}
.y26a{bottom:799.975333pt;}
.y2ec{bottom:801.865467pt;}
.y1f3{bottom:801.866000pt;}
.y240{bottom:802.622000pt;}
.y1ac{bottom:805.338000pt;}
.y32d{bottom:806.475867pt;}
.y2a8{bottom:806.550533pt;}
.y370{bottom:807.987867pt;}
.y241{bottom:808.592667pt;}
.y168{bottom:812.976667pt;}
.y13e{bottom:813.355893pt;}
.ycc{bottom:814.488811pt;}
.y269{bottom:814.640667pt;}
.y2eb{bottom:815.168667pt;}
.y1f2{bottom:816.908667pt;}
.y23f{bottom:817.588667pt;}
.y2a7{bottom:819.854933pt;}
.y1ab{bottom:820.002000pt;}
.y32c{bottom:820.007067pt;}
.y36f{bottom:821.292267pt;}
.ycb{bottom:825.146811pt;}
.y167{bottom:827.716667pt;}
.y165{bottom:827.718000pt;}
.y13d{bottom:827.944510pt;}
.y2ea{bottom:829.229067pt;}
.y1f1{bottom:831.875333pt;}
.y23e{bottom:832.480667pt;}
.y2a6{bottom:833.310533pt;}
.y32b{bottom:833.462667pt;}
.y166{bottom:833.612667pt;}
.y1aa{bottom:834.666000pt;}
.y36e{bottom:834.671067pt;}
.y268{bottom:834.671333pt;}
.y13c{bottom:838.678243pt;}
.yca{bottom:839.735429pt;}
.y4{bottom:839.962000pt;}
.y164{bottom:842.382000pt;}
.y2e9{bottom:843.212667pt;}
.y2a5{bottom:846.840533pt;}
.y32a{bottom:846.841467pt;}
.y1f0{bottom:846.842000pt;}
.y23d{bottom:847.371333pt;}
.y36d{bottom:847.975467pt;}
.y1a9{bottom:849.331333pt;}
.y267{bottom:849.336667pt;}
.yc9{bottom:850.394496pt;}
.y13b{bottom:853.192195pt;}
.y163{bottom:857.122000pt;}
.y2e8{bottom:857.273067pt;}
.y329{bottom:860.297067pt;}
.y2a4{bottom:860.371733pt;}
.y36c{bottom:861.279867pt;}
.y1ef{bottom:861.808667pt;}
.y23c{bottom:862.262000pt;}
.y1a8{bottom:863.995333pt;}
.y266{bottom:864.000667pt;}
.yc8{bottom:864.983113pt;}
.y3{bottom:866.647741pt;}
.y13a{bottom:867.780812pt;}
.y2e7{bottom:870.577467pt;}
.y162{bottom:871.786000pt;}
.y2a3{bottom:873.674933pt;}
.y328{bottom:873.827067pt;}
.y36b{bottom:874.658667pt;}
.y1ee{bottom:876.775333pt;}
.y23b{bottom:877.228667pt;}
.y1a7{bottom:878.659333pt;}
.y265{bottom:878.664667pt;}
.yc7{bottom:879.571731pt;}
.y139{bottom:882.369430pt;}
.y2e6{bottom:884.561067pt;}
.y161{bottom:886.526000pt;}
.y2a2{bottom:887.130533pt;}
.y327{bottom:887.131467pt;}
.y36a{bottom:887.963067pt;}
.yc6{bottom:890.229731pt;}
.y2{bottom:890.683333pt;}
.y1ec{bottom:891.742000pt;}
.y239{bottom:892.120667pt;}
.y1a6{bottom:893.324667pt;}
.y264{bottom:893.330000pt;}
.y138{bottom:896.958048pt;}
.y1ed{bottom:897.712667pt;}
.y23a{bottom:898.015333pt;}
.y2e5{bottom:898.621467pt;}
.y2a1{bottom:900.661733pt;}
.y326{bottom:900.662667pt;}
.y160{bottom:901.191333pt;}
.y369{bottom:901.341867pt;}
.yc5{bottom:904.819415pt;}
.y1eb{bottom:906.708667pt;}
.y238{bottom:907.011333pt;}
.y1a5{bottom:907.988667pt;}
.y263{bottom:907.994000pt;}
.y137{bottom:911.547732pt;}
.y2e4{bottom:912.605067pt;}
.y2a0{bottom:913.964933pt;}
.y325{bottom:914.117067pt;}
.y368{bottom:914.646267pt;}
.yc4{bottom:915.477415pt;}
.y15f{bottom:915.855333pt;}
.y1ea{bottom:921.751333pt;}
.y237{bottom:921.902000pt;}
.y235{bottom:921.903333pt;}
.y1a4{bottom:922.652667pt;}
.y262{bottom:922.658000pt;}
.y2e3{bottom:925.909467pt;}
.y136{bottom:926.136350pt;}
.y29f{bottom:927.496133pt;}
.y324{bottom:927.648267pt;}
.y236{bottom:927.874000pt;}
.y367{bottom:927.950667pt;}
.y15e{bottom:930.595333pt;}
.yc3{bottom:932.711333pt;}
.y4d{bottom:933.996667pt;}
.y1e9{bottom:936.718000pt;}
.y233{bottom:936.794000pt;}
.y1a3{bottom:937.318000pt;}
.y261{bottom:937.323333pt;}
.y2e2{bottom:939.968667pt;}
.y29e{bottom:940.950533pt;}
.y323{bottom:940.951467pt;}
.y366{bottom:941.329467pt;}
.y234{bottom:942.764667pt;}
.y135{bottom:943.446000pt;}
.y15d{bottom:945.259333pt;}
.y1e8{bottom:951.684667pt;}
.y230{bottom:951.755333pt;}
.y232{bottom:951.760667pt;}
.y1a2{bottom:951.982000pt;}
.y260{bottom:951.987333pt;}
.y2e1{bottom:953.953467pt;}
.y29d{bottom:954.481733pt;}
.y322{bottom:954.482667pt;}
.y365{bottom:954.633867pt;}
.y231{bottom:957.656667pt;}
.yc1{bottom:965.971333pt;}
.y52{bottom:966.533333pt;}
.y1a1{bottom:966.646000pt;}
.y1e6{bottom:966.651333pt;}
.y2e0{bottom:968.012667pt;}
.y29c{bottom:968.012933pt;}
.yc2{bottom:971.943333pt;}
.y1e7{bottom:972.548667pt;}
.yae{bottom:993.335333pt;}
.he{height:22.720000pt;}
.hd{height:23.856000pt;}
.h14{height:24.252766pt;}
.h1b{height:24.444740pt;}
.h16{height:24.886027pt;}
.ha{height:26.948012pt;}
.h13{height:28.839615pt;}
.hc{height:30.292955pt;}
.h18{height:32.340929pt;}
.h5{height:34.608000pt;}
.hb{height:36.384000pt;}
.h1e{height:36.530667pt;}
.h1f{height:36.672000pt;}
.h15{height:36.960000pt;}
.h1c{height:38.287741pt;}
.h12{height:38.453333pt;}
.hf{height:38.937500pt;}
.h9{height:40.376000pt;}
.h7{height:40.426667pt;}
.h8{height:40.746667pt;}
.h11{height:41.875000pt;}
.h20{height:44.035200pt;}
.h4{height:48.047630pt;}
.h6{height:57.656250pt;}
.h3{height:65.370282pt;}
.h19{height:74.972929pt;}
.h1a{height:74.977196pt;}
.h17{height:75.275859pt;}
.h1d{height:129.365333pt;}
.h2{height:1043.981333pt;}
.h10{height:1067.866667pt;}
.h0{height:1067.868000pt;}
.h1{height:1068.000000pt;}
.w2{width:785.990667pt;}
.w0{width:809.877333pt;}
.w1{width:810.000000pt;}
.x0{left:0.000000pt;}
.x1{left:11.943333pt;}
.x1a{left:24.000000pt;}
.x2{left:56.692800pt;}
.x3f{left:59.339414pt;}
.x44{left:62.059733pt;}
.x4a{left:63.118263pt;}
.x42{left:66.897720pt;}
.x1b{left:68.636133pt;}
.x70{left:69.998000pt;}
.x3c{left:76.497600pt;}
.x61{left:77.858133pt;}
.x26{left:79.672400pt;}
.x6f{left:80.655067pt;}
.x3{left:88.289733pt;}
.x27{left:93.581067pt;}
.x49{left:94.790400pt;}
.x20{left:99.250267pt;}
.x2c{left:100.308533pt;}
.x33{left:101.215600pt;}
.x62{left:108.170000pt;}
.x2d{left:114.141600pt;}
.x21{left:115.275467pt;}
.x5c{left:120.037733pt;}
.x63{left:121.096000pt;}
.x51{left:123.136667pt;}
.xe{left:126.010000pt;}
.x34{left:130.015333pt;}
.x60{left:134.022000pt;}
.xf{left:135.911333pt;}
.x52{left:154.128667pt;}
.x29{left:156.094000pt;}
.x41{left:160.402685pt;}
.x8{left:165.996667pt;}
.xc{left:168.794000pt;}
.x9{left:176.202000pt;}
.x5e{left:180.888667pt;}
.x1c{left:185.272667pt;}
.xd{left:186.784667pt;}
.x5f{left:194.116667pt;}
.x1d{left:199.180667pt;}
.x48{left:200.919333pt;}
.x22{left:204.472667pt;}
.x23{left:221.026000pt;}
.x1e{left:227.074000pt;}
.x45{left:230.098000pt;}
.x25{left:236.295333pt;}
.x4b{left:238.262000pt;}
.x15{left:239.546000pt;}
.x1f{left:241.964667pt;}
.xa{left:244.308667pt;}
.x46{left:245.291333pt;}
.x5d{left:252.320667pt;}
.xb{left:253.606000pt;}
.x16{left:265.624640pt;}
.x4c{left:267.968667pt;}
.x4d{left:274.696667pt;}
.x32{left:276.963333pt;}
.x3b{left:286.412667pt;}
.x4e{left:290.343333pt;}
.x4f{left:294.047333pt;}
.x2a{left:302.362000pt;}
.x50{left:307.124667pt;}
.x5b{left:312.491333pt;}
.x2b{left:319.446000pt;}
.x35{left:327.382000pt;}
.x6{left:330.556667pt;}
.x7{left:340.535333pt;}
.x36{left:341.594000pt;}
.x24{left:355.578000pt;}
.x47{left:361.323333pt;}
.x5{left:364.875333pt;}
.x28{left:366.992667pt;}
.x31{left:384.604667pt;}
.x11{left:408.639333pt;}
.x71{left:414.008933pt;}
.x10{left:420.658000pt;}
.x6d{left:422.022000pt;}
.x30{left:426.480800pt;}
.x6e{left:432.679333pt;}
.x4{left:437.971333pt;}
.x64{left:447.874000pt;}
.x12{left:452.334000pt;}
.x2e{left:455.886000pt;}
.x13{left:462.463333pt;}
.x2f{left:466.242000pt;}
.x66{left:470.928667pt;}
.x19{left:475.760000pt;}
.x65{left:478.412667pt;}
.x67{left:485.971333pt;}
.x57{left:501.467333pt;}
.x53{left:513.562000pt;}
.x55{left:517.946000pt;}
.x6b{left:525.807333pt;}
.x54{left:527.319333pt;}
.x58{left:529.663333pt;}
.x56{left:537.071333pt;}
.x39{left:551.358000pt;}
.x3a{left:563.830000pt;}
.x40{left:572.520200pt;}
.x17{left:574.034000pt;}
.x59{left:577.511333pt;}
.x3d{left:585.974965pt;}
.x6c{left:587.867333pt;}
.x37{left:593.083333pt;}
.x5a{left:604.271333pt;}
.x18{left:613.718000pt;}
.x38{left:620.144667pt;}
.x14{left:690.671333pt;}
.x43{left:692.934694pt;}
.x68{left:699.136667pt;}
.x3e{left:700.569799pt;}
.x69{left:713.347333pt;}
.x6a{left:719.016667pt;}
}




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