
    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_a15fae6e9772462aa766c5d2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_a0d85ab97365e4ec1f3ca43d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.666504;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_5a8f12ae20affc1cb4bc0d68.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893555;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_ce96d61cdde6377a5ce27ef6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_4bd4c6a551d06c4e21c366a0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.074707;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_474ff691a58ebcd64e6e3bdc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.893555;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_af0f81a381154f8a490da42c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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_b45d6afae0b17eb0d322670a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_fcb1df575a4c4ec9571d68e7.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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_ec328d71de6842b50e1cfa4c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.682617;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_757c9614d5772f2b72d1ca8c.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.074707;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_3edee46ebc35c1fd71c8c135.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_6a48fb856978e87dc35ed570.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910156;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_5ff0ea31118a1b9f03805d80.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910645;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_44f212cae95c3a13a38aade8.woff2')format("woff");}.fff{font-family:fff;line-height:0.895996;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_a1b4c62e7d4ae9bbd91b783d.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.666504;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_e5d829ef188b6c16c4719c83.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_a8e3a141786f328ae5cd1edc.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_1c2fce586bbb6b9c72de1672.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_c7db395910ead7c0319d1931.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.074707;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;}
.m1{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);}
.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);}
.v2{vertical-align:-27.000000px;}
.v5{vertical-align:-6.119676px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:5.388816px;}
.v6{vertical-align:24.120000px;}
.v1{vertical-align:26.987232px;}
.v4{vertical-align:48.962016px;}
.ls61{letter-spacing:-0.959040px;}
.ls53{letter-spacing:-0.361800px;}
.ls32{letter-spacing:-0.335988px;}
.ls4c{letter-spacing:-0.270108px;}
.ls1a{letter-spacing:-0.243756px;}
.ls28{letter-spacing:-0.189540px;}
.ls54{letter-spacing:-0.189000px;}
.ls27{letter-spacing:-0.181116px;}
.ls31{letter-spacing:-0.168336px;}
.ls2f{letter-spacing:-0.162324px;}
.ls6c{letter-spacing:-0.159372px;}
.ls44{letter-spacing:-0.131760px;}
.ls5d{letter-spacing:-0.129600px;}
.ls57{letter-spacing:-0.125172px;}
.ls4a{letter-spacing:-0.122148px;}
.ls63{letter-spacing:-0.112320px;}
.ls24{letter-spacing:-0.108216px;}
.ls6b{letter-spacing:-0.092268px;}
.ls64{letter-spacing:-0.086400px;}
.ls29{letter-spacing:-0.079056px;}
.ls2c{letter-spacing:-0.078156px;}
.ls60{letter-spacing:-0.077760px;}
.ls41{letter-spacing:-0.065880px;}
.ls2d{letter-spacing:-0.059292px;}
.ls58{letter-spacing:-0.052704px;}
.ls33{letter-spacing:-0.046116px;}
.ls5e{letter-spacing:-0.043200px;}
.ls6d{letter-spacing:-0.037800px;}
.ls65{letter-spacing:-0.036000px;}
.ls62{letter-spacing:-0.034560px;}
.ls59{letter-spacing:-0.032940px;}
.ls56{letter-spacing:-0.027000px;}
.ls2b{letter-spacing:-0.026352px;}
.ls23{letter-spacing:-0.019764px;}
.ls4b{letter-spacing:-0.016848px;}
.ls25{letter-spacing:-0.013176px;}
.ls69{letter-spacing:-0.010800px;}
.ls5f{letter-spacing:-0.008640px;}
.ls14{letter-spacing:-0.006588px;}
.ls11{letter-spacing:0.000000px;}
.ls52{letter-spacing:0.005400px;}
.lsc{letter-spacing:0.006588px;}
.ls51{letter-spacing:0.010800px;}
.ls7{letter-spacing:0.013176px;}
.ls5b{letter-spacing:0.014400px;}
.lse{letter-spacing:0.019764px;}
.ls17{letter-spacing:0.026352px;}
.ls4{letter-spacing:0.032940px;}
.ls67{letter-spacing:0.037800px;}
.lsb{letter-spacing:0.039528px;}
.ls1{letter-spacing:0.041940px;}
.ls10{letter-spacing:0.042000px;}
.ls8{letter-spacing:0.046116px;}
.ls5c{letter-spacing:0.050400px;}
.lsd{letter-spacing:0.052704px;}
.ls9{letter-spacing:0.059292px;}
.ls55{letter-spacing:0.059400px;}
.ls6a{letter-spacing:0.060120px;}
.ls40{letter-spacing:0.062244px;}
.ls4e{letter-spacing:0.064800px;}
.ls48{letter-spacing:0.065664px;}
.ls0{letter-spacing:0.065880px;}
.ls12{letter-spacing:0.067104px;}
.ls47{letter-spacing:0.067896px;}
.ls46{letter-spacing:0.070020px;}
.ls5{letter-spacing:0.072468px;}
.ls2{letter-spacing:0.075492px;}
.ls3{letter-spacing:0.079056px;}
.ls4f{letter-spacing:0.081000px;}
.ls6{letter-spacing:0.085644px;}
.ls50{letter-spacing:0.091800px;}
.lsa{letter-spacing:0.092232px;}
.ls16{letter-spacing:0.098820px;}
.ls4d{letter-spacing:0.102600px;}
.ls3d{letter-spacing:0.105336px;}
.ls15{letter-spacing:0.105408px;}
.ls2a{letter-spacing:0.111996px;}
.ls22{letter-spacing:0.118584px;}
.ls1f{letter-spacing:0.125172px;}
.ls19{letter-spacing:0.126252px;}
.lsf{letter-spacing:0.131760px;}
.ls34{letter-spacing:0.138348px;}
.ls18{letter-spacing:0.144936px;}
.ls3b{letter-spacing:0.151524px;}
.ls1d{letter-spacing:0.158112px;}
.ls3e{letter-spacing:0.168480px;}
.ls66{letter-spacing:0.171288px;}
.ls43{letter-spacing:0.176904px;}
.ls13{letter-spacing:0.177876px;}
.ls1c{letter-spacing:0.180000px;}
.ls30{letter-spacing:0.180360px;}
.ls38{letter-spacing:0.181116px;}
.ls3f{letter-spacing:0.181944px;}
.ls42{letter-spacing:0.230580px;}
.ls5a{letter-spacing:0.276480px;}
.ls49{letter-spacing:0.282204px;}
.ls26{letter-spacing:0.441396px;}
.ls39{letter-spacing:0.447984px;}
.ls37{letter-spacing:0.540000px;}
.ls2e{letter-spacing:0.811620px;}
.ls68{letter-spacing:0.847188px;}
.ls3a{letter-spacing:6.030000px;}
.ls35{letter-spacing:7.246800px;}
.ls36{letter-spacing:49.008132px;}
.ls21{letter-spacing:50.088564px;}
.ls45{letter-spacing:54.087480px;}
.ls20{letter-spacing:59.443524px;}
.ls1e{letter-spacing:98.688240px;}
.ls1b{letter-spacing:144.402372px;}
.ls3c{letter-spacing:847.533024px;}
.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;}
}
.ws27c{word-spacing:-86.400000px;}
.ws281{word-spacing:-72.000000px;}
.ws9c{word-spacing:-65.880000px;}
.ws201{word-spacing:-37.156320px;}
.ws54{word-spacing:-16.647876px;}
.ws7f{word-spacing:-16.628112px;}
.ws184{word-spacing:-16.608348px;}
.ws18f{word-spacing:-16.601760px;}
.ws1ff{word-spacing:-16.522704px;}
.ws200{word-spacing:-16.502940px;}
.ws134{word-spacing:-15.210360px;}
.ws11a{word-spacing:-15.030000px;}
.ws1{word-spacing:-13.542000px;}
.ws25b{word-spacing:-10.812204px;}
.ws19c{word-spacing:-10.711116px;}
.ws24b{word-spacing:-10.706904px;}
.ws247{word-spacing:-10.698480px;}
.ws25c{word-spacing:-10.513152px;}
.ws25d{word-spacing:-10.407852px;}
.wsb3{word-spacing:-10.348884px;}
.wsb4{word-spacing:-10.340460px;}
.ws242{word-spacing:-0.415044px;}
.ws209{word-spacing:-0.408456px;}
.ws256{word-spacing:-0.395280px;}
.ws22f{word-spacing:-0.388692px;}
.ws249{word-spacing:-0.382104px;}
.ws255{word-spacing:-0.375516px;}
.wsc3{word-spacing:-0.355752px;}
.ws12e{word-spacing:-0.342576px;}
.wse6{word-spacing:-0.329400px;}
.ws1fe{word-spacing:-0.303048px;}
.ws270{word-spacing:-0.270000px;}
.ws24a{word-spacing:-0.196308px;}
.ws2c{word-spacing:-0.186372px;}
.ws5{word-spacing:-0.167760px;}
.ws119{word-spacing:-0.158112px;}
.ws283{word-spacing:-0.122400px;}
.ws28d{word-spacing:-0.079056px;}
.ws27a{word-spacing:-0.077760px;}
.ws2b{word-spacing:-0.065880px;}
.ws211{word-spacing:-0.059292px;}
.ws1f0{word-spacing:-0.052704px;}
.ws27e{word-spacing:-0.051840px;}
.ws215{word-spacing:-0.046116px;}
.wsac{word-spacing:-0.039528px;}
.ws280{word-spacing:-0.036000px;}
.ws93{word-spacing:-0.032940px;}
.ws284{word-spacing:-0.028800px;}
.ws1a7{word-spacing:-0.026352px;}
.wsf9{word-spacing:-0.019764px;}
.ws28b{word-spacing:-0.016200px;}
.wsa7{word-spacing:-0.013176px;}
.ws27b{word-spacing:-0.008640px;}
.wsa3{word-spacing:-0.006588px;}
.ws2{word-spacing:0.000000px;}
.wsb{word-spacing:0.006588px;}
.ws289{word-spacing:0.008388px;}
.wsb0{word-spacing:0.013176px;}
.wsa{word-spacing:0.019764px;}
.ws27f{word-spacing:0.025920px;}
.ws14{word-spacing:0.026352px;}
.ws63{word-spacing:0.032940px;}
.ws3e{word-spacing:0.039528px;}
.ws44{word-spacing:0.046116px;}
.ws1a{word-spacing:0.052704px;}
.ws5c{word-spacing:0.059292px;}
.ws97{word-spacing:0.065880px;}
.ws10b{word-spacing:0.072468px;}
.ws55{word-spacing:0.079056px;}
.ws7e{word-spacing:0.085644px;}
.ws18b{word-spacing:0.092232px;}
.ws1bb{word-spacing:0.098820px;}
.wsa8{word-spacing:0.105408px;}
.wsa2{word-spacing:0.111996px;}
.wsf3{word-spacing:0.118584px;}
.ws278{word-spacing:0.125172px;}
.ws170{word-spacing:0.138348px;}
.ws277{word-spacing:0.144936px;}
.ws11b{word-spacing:0.168336px;}
.ws272{word-spacing:0.205200px;}
.ws1a2{word-spacing:0.335988px;}
.ws2e{word-spacing:0.342576px;}
.ws24d{word-spacing:0.349164px;}
.ws17a{word-spacing:0.355752px;}
.ws2d{word-spacing:0.362340px;}
.ws271{word-spacing:0.367200px;}
.ws1c6{word-spacing:0.368928px;}
.ws1a1{word-spacing:0.375516px;}
.ws10f{word-spacing:0.388692px;}
.ws45{word-spacing:0.408456px;}
.ws150{word-spacing:0.415044px;}
.wsea{word-spacing:0.421632px;}
.ws110{word-spacing:0.428220px;}
.ws13f{word-spacing:0.434808px;}
.ws10e{word-spacing:0.441396px;}
.ws25e{word-spacing:0.467748px;}
.ws1c3{word-spacing:0.711504px;}
.ws5e{word-spacing:0.724680px;}
.ws1c2{word-spacing:0.737856px;}
.ws5f{word-spacing:0.744444px;}
.ws239{word-spacing:0.751032px;}
.ws147{word-spacing:0.757620px;}
.ws1c7{word-spacing:0.764208px;}
.ws9{word-spacing:0.777384px;}
.ws116{word-spacing:0.783972px;}
.ws265{word-spacing:0.790560px;}
.ws8{word-spacing:0.810324px;}
.ws27d{word-spacing:0.872640px;}
.ws46{word-spacing:1.054080px;}
.ws1f7{word-spacing:1.067256px;}
.wsc5{word-spacing:1.087020px;}
.ws59{word-spacing:1.093608px;}
.ws1ba{word-spacing:1.100196px;}
.wse8{word-spacing:1.113372px;}
.ws58{word-spacing:1.119960px;}
.wsc4{word-spacing:1.126548px;}
.wsf2{word-spacing:1.133136px;}
.wsf4{word-spacing:1.146312px;}
.wse7{word-spacing:1.152900px;}
.wsfd{word-spacing:1.166076px;}
.ws105{word-spacing:1.172664px;}
.ws1f6{word-spacing:1.185840px;}
.ws1af{word-spacing:1.390068px;}
.wsb9{word-spacing:1.442772px;}
.wsc7{word-spacing:1.455948px;}
.ws90{word-spacing:1.462536px;}
.wsc6{word-spacing:1.469124px;}
.wsad{word-spacing:1.475712px;}
.wsb8{word-spacing:1.482300px;}
.ws7c{word-spacing:1.488888px;}
.wsb7{word-spacing:1.495476px;}
.ws8f{word-spacing:1.502064px;}
.ws7d{word-spacing:1.508652px;}
.ws91{word-spacing:1.515240px;}
.wsae{word-spacing:1.521828px;}
.ws16f{word-spacing:1.535004px;}
.ws5a{word-spacing:1.805112px;}
.ws89{word-spacing:1.811700px;}
.ws1dd{word-spacing:1.818288px;}
.ws220{word-spacing:1.824876px;}
.ws1d{word-spacing:1.831464px;}
.ws159{word-spacing:1.838052px;}
.ws88{word-spacing:1.844640px;}
.ws84{word-spacing:1.851228px;}
.ws5b{word-spacing:1.864404px;}
.ws1cc{word-spacing:1.870992px;}
.ws1c{word-spacing:1.884168px;}
.ws80{word-spacing:1.890756px;}
.ws67{word-spacing:2.108160px;}
.ws13{word-spacing:2.160864px;}
.wse5{word-spacing:2.167452px;}
.ws23f{word-spacing:2.174040px;}
.ws69{word-spacing:2.180628px;}
.wse9{word-spacing:2.187216px;}
.ws12{word-spacing:2.193804px;}
.ws145{word-spacing:2.200392px;}
.wsbb{word-spacing:2.206980px;}
.ws68{word-spacing:2.220156px;}
.wscb{word-spacing:2.233332px;}
.wsba{word-spacing:2.239920px;}
.ws1b0{word-spacing:2.272860px;}
.wse4{word-spacing:2.516616px;}
.wseb{word-spacing:2.542968px;}
.ws244{word-spacing:2.549556px;}
.ws103{word-spacing:2.556144px;}
.ws15a{word-spacing:2.562732px;}
.ws2a{word-spacing:2.569320px;}
.ws1c8{word-spacing:2.575908px;}
.ws14f{word-spacing:2.582496px;}
.ws104{word-spacing:2.589084px;}
.ws1c9{word-spacing:2.602260px;}
.ws1a5{word-spacing:2.615436px;}
.ws26d{word-spacing:2.674728px;}
.ws139{word-spacing:2.771532px;}
.ws20c{word-spacing:2.878956px;}
.ws246{word-spacing:2.885544px;}
.ws20d{word-spacing:2.892132px;}
.wsc0{word-spacing:2.898720px;}
.ws8e{word-spacing:2.905308px;}
.ws3b{word-spacing:2.911896px;}
.ws245{word-spacing:2.918484px;}
.ws11d{word-spacing:2.925072px;}
.wsbf{word-spacing:2.931660px;}
.ws1a8{word-spacing:2.938248px;}
.ws152{word-spacing:2.944836px;}
.ws109{word-spacing:2.951424px;}
.ws1d3{word-spacing:2.958012px;}
.ws275{word-spacing:2.971188px;}
.ws6a{word-spacing:3.195180px;}
.ws26{word-spacing:3.241296px;}
.ws18e{word-spacing:3.247884px;}
.ws47{word-spacing:3.261060px;}
.ws23d{word-spacing:3.267648px;}
.ws6c{word-spacing:3.274236px;}
.ws25{word-spacing:3.280824px;}
.wsfb{word-spacing:3.294000px;}
.ws6d{word-spacing:3.313764px;}
.ws48{word-spacing:3.320352px;}
.ws6b{word-spacing:3.333528px;}
.wsfc{word-spacing:3.340116px;}
.ws8c{word-spacing:3.597048px;}
.ws15f{word-spacing:3.603636px;}
.ws3a{word-spacing:3.610224px;}
.ws8d{word-spacing:3.616812px;}
.wsc1{word-spacing:3.623400px;}
.ws96{word-spacing:3.629988px;}
.ws14a{word-spacing:3.636576px;}
.ws1c0{word-spacing:3.643164px;}
.wsa1{word-spacing:3.649752px;}
.ws39{word-spacing:3.656340px;}
.ws1bf{word-spacing:3.662928px;}
.wsc2{word-spacing:3.676104px;}
.ws37{word-spacing:3.965976px;}
.ws13a{word-spacing:3.972564px;}
.ws21f{word-spacing:3.979152px;}
.ws38{word-spacing:3.985740px;}
.ws1eb{word-spacing:3.992328px;}
.ws95{word-spacing:3.998916px;}
.ws5d{word-spacing:4.005504px;}
.ws36{word-spacing:4.012092px;}
.ws137{word-spacing:4.018680px;}
.wsce{word-spacing:4.025268px;}
.ws138{word-spacing:4.031856px;}
.ws114{word-spacing:4.038444px;}
.ws70{word-spacing:4.308552px;}
.ws16c{word-spacing:4.315140px;}
.ws112{word-spacing:4.334904px;}
.ws71{word-spacing:4.341492px;}
.ws16b{word-spacing:4.348080px;}
.ws1f3{word-spacing:4.354668px;}
.wsda{word-spacing:4.361256px;}
.ws197{word-spacing:4.367844px;}
.ws231{word-spacing:4.374432px;}
.ws228{word-spacing:4.381020px;}
.ws20e{word-spacing:4.387608px;}
.wsd9{word-spacing:4.394196px;}
.ws225{word-spacing:4.400784px;}
.ws65{word-spacing:4.684068px;}
.ws122{word-spacing:4.690656px;}
.wsef{word-spacing:4.710420px;}
.ws7a{word-spacing:4.717008px;}
.ws117{word-spacing:4.723596px;}
.wsd3{word-spacing:4.730184px;}
.ws121{word-spacing:4.736772px;}
.ws14b{word-spacing:4.749948px;}
.ws66{word-spacing:4.756536px;}
.wsd2{word-spacing:4.763124px;}
.ws1ab{word-spacing:4.776300px;}
.ws214{word-spacing:5.026644px;}
.ws9d{word-spacing:5.046408px;}
.ws6f{word-spacing:5.052996px;}
.ws9e{word-spacing:5.059584px;}
.ws1f9{word-spacing:5.066172px;}
.ws136{word-spacing:5.072760px;}
.ws1d2{word-spacing:5.079348px;}
.ws8a{word-spacing:5.085936px;}
.ws6e{word-spacing:5.092524px;}
.ws1ac{word-spacing:5.099112px;}
.ws8b{word-spacing:5.105700px;}
.ws18c{word-spacing:5.112288px;}
.ws1ad{word-spacing:5.118876px;}
.ws146{word-spacing:5.125464px;}
.ws18d{word-spacing:5.132052px;}
.ws100{word-spacing:5.375808px;}
.ws20f{word-spacing:5.402160px;}
.ws34{word-spacing:5.408748px;}
.ws177{word-spacing:5.415336px;}
.ws218{word-spacing:5.421924px;}
.wsff{word-spacing:5.428512px;}
.ws86{word-spacing:5.435100px;}
.wsf0{word-spacing:5.441688px;}
.wsf1{word-spacing:5.448276px;}
.ws19b{word-spacing:5.454864px;}
.wsdf{word-spacing:5.468040px;}
.ws1a4{word-spacing:5.481216px;}
.ws1e5{word-spacing:5.487804px;}
.ws87{word-spacing:5.494392px;}
.wse0{word-spacing:5.507568px;}
.ws13d{word-spacing:5.657292px;}
.ws24{word-spacing:5.718384px;}
.ws203{word-spacing:5.738148px;}
.ws81{word-spacing:5.764500px;}
.ws23{word-spacing:5.771088px;}
.ws106{word-spacing:5.777676px;}
.ws192{word-spacing:5.784264px;}
.wsa0{word-spacing:5.790852px;}
.ws1ca{word-spacing:5.797440px;}
.ws243{word-spacing:5.804028px;}
.ws9f{word-spacing:5.810616px;}
.ws16a{word-spacing:5.817204px;}
.ws1d7{word-spacing:5.830380px;}
.ws1e4{word-spacing:5.843556px;}
.ws169{word-spacing:5.850144px;}
.ws13e{word-spacing:6.107076px;}
.wsd0{word-spacing:6.120252px;}
.ws166{word-spacing:6.126840px;}
.ws49{word-spacing:6.140016px;}
.ws10a{word-spacing:6.146604px;}
.wsdb{word-spacing:6.153192px;}
.wscf{word-spacing:6.159780px;}
.ws198{word-spacing:6.166368px;}
.ws1fa{word-spacing:6.172956px;}
.wsd6{word-spacing:6.179544px;}
.ws14d{word-spacing:6.186132px;}
.ws157{word-spacing:6.192720px;}
.ws217{word-spacing:6.199308px;}
.ws14e{word-spacing:6.205896px;}
.ws1ae{word-spacing:6.476004px;}
.ws226{word-spacing:6.495768px;}
.ws19{word-spacing:6.502356px;}
.wsc9{word-spacing:6.508944px;}
.wse3{word-spacing:6.522120px;}
.ws1e6{word-spacing:6.528708px;}
.ws140{word-spacing:6.541884px;}
.ws17b{word-spacing:6.548472px;}
.ws10{word-spacing:6.555060px;}
.wsf{word-spacing:6.568236px;}
.ws11{word-spacing:6.574824px;}
.wsca{word-spacing:6.831756px;}
.ws16{word-spacing:6.838344px;}
.ws4e{word-spacing:6.858108px;}
.ws15{word-spacing:6.864696px;}
.ws1b{word-spacing:6.871284px;}
.ws4f{word-spacing:6.877872px;}
.ws188{word-spacing:6.884460px;}
.ws23e{word-spacing:6.891048px;}
.ws171{word-spacing:6.897636px;}
.ws21b{word-spacing:6.904224px;}
.ws14c{word-spacing:6.910812px;}
.ws172{word-spacing:6.917400px;}
.ws241{word-spacing:7.187508px;}
.ws12c{word-spacing:7.207272px;}
.ws1fd{word-spacing:7.213860px;}
.ws204{word-spacing:7.220448px;}
.ws60{word-spacing:7.227036px;}
.ws7b{word-spacing:7.233624px;}
.ws13c{word-spacing:7.240212px;}
.ws61{word-spacing:7.246800px;}
.ws162{word-spacing:7.253388px;}
.ws18{word-spacing:7.259976px;}
.ws163{word-spacing:7.266564px;}
.ws13b{word-spacing:7.273152px;}
.ws12d{word-spacing:7.279740px;}
.ws21d{word-spacing:7.286328px;}
.ws21c{word-spacing:7.299504px;}
.ws240{word-spacing:7.556436px;}
.ws3c{word-spacing:7.563024px;}
.ws15b{word-spacing:7.569612px;}
.wsed{word-spacing:7.582788px;}
.wsec{word-spacing:7.589376px;}
.wse1{word-spacing:7.595964px;}
.ws22{word-spacing:7.602552px;}
.ws120{word-spacing:7.609140px;}
.wsd1{word-spacing:7.615728px;}
.ws189{word-spacing:7.628904px;}
.ws3d{word-spacing:7.938540px;}
.ws31{word-spacing:7.945128px;}
.ws1d8{word-spacing:7.964892px;}
.ws113{word-spacing:7.971480px;}
.ws1cb{word-spacing:7.978068px;}
.ws151{word-spacing:7.991244px;}
.ws19a{word-spacing:7.997832px;}
.ws1da{word-spacing:8.004420px;}
.wsa5{word-spacing:8.116200px;}
.ws233{word-spacing:8.274528px;}
.ws287{word-spacing:8.294292px;}
.ws29{word-spacing:8.300880px;}
.ws118{word-spacing:8.320644px;}
.ws202{word-spacing:8.327232px;}
.ws154{word-spacing:8.333820px;}
.ws17e{word-spacing:8.340408px;}
.ws153{word-spacing:8.346996px;}
.ws168{word-spacing:8.617104px;}
.ws194{word-spacing:8.656632px;}
.wsbc{word-spacing:8.663220px;}
.ws21{word-spacing:8.669808px;}
.ws167{word-spacing:8.682984px;}
.ws11c{word-spacing:8.696160px;}
.ws20{word-spacing:8.709336px;}
.ws135{word-spacing:8.715924px;}
.ws18a{word-spacing:8.722512px;}
.ws30{word-spacing:8.992620px;}
.ws181{word-spacing:9.012384px;}
.ws2f{word-spacing:9.025560px;}
.wsee{word-spacing:9.032148px;}
.ws76{word-spacing:9.038736px;}
.ws50{word-spacing:9.045324px;}
.ws51{word-spacing:9.051912px;}
.ws1f1{word-spacing:9.058500px;}
.ws77{word-spacing:9.078264px;}
.ws1b8{word-spacing:9.322020px;}
.wsa6{word-spacing:9.328608px;}
.ws1ea{word-spacing:9.361548px;}
.ws130{word-spacing:9.374724px;}
.ws1d9{word-spacing:9.381312px;}
.ws94{word-spacing:9.387900px;}
.ws131{word-spacing:9.394488px;}
.wsb5{word-spacing:9.401076px;}
.ws1b9{word-spacing:9.407664px;}
.ws10c{word-spacing:9.414252px;}
.wsa4{word-spacing:9.440604px;}
.wsb6{word-spacing:9.447192px;}
.ws1e7{word-spacing:9.651420px;}
.ws158{word-spacing:9.743652px;}
.ws43{word-spacing:9.750240px;}
.ws1e8{word-spacing:9.756828px;}
.wsd8{word-spacing:9.783180px;}
.ws1e9{word-spacing:9.789768px;}
.wsc{word-spacing:9.796356px;}
.wsd{word-spacing:9.809532px;}
.ws17c{word-spacing:10.092816px;}
.ws19e{word-spacing:10.099404px;}
.ws123{word-spacing:10.105992px;}
.ws17d{word-spacing:10.112580px;}
.ws124{word-spacing:10.119168px;}
.ws79{word-spacing:10.125756px;}
.wscc{word-spacing:10.132344px;}
.wscd{word-spacing:10.138932px;}
.ws173{word-spacing:10.145520px;}
.ws279{word-spacing:10.152108px;}
.ws111{word-spacing:10.461744px;}
.wsf8{word-spacing:10.494684px;}
.wsf7{word-spacing:10.514448px;}
.ws127{word-spacing:10.804320px;}
.ws32{word-spacing:10.817496px;}
.ws1a6{word-spacing:10.824084px;}
.ws64{word-spacing:10.830672px;}
.ws1e{word-spacing:10.837260px;}
.ws1f{word-spacing:10.843848px;}
.ws1ec{word-spacing:10.850436px;}
.ws125{word-spacing:10.857024px;}
.ws148{word-spacing:10.863612px;}
.ws126{word-spacing:10.870200px;}
.ws149{word-spacing:10.889964px;}
.ws219{word-spacing:11.186424px;}
.ws1bc{word-spacing:11.193012px;}
.ws1ee{word-spacing:11.199600px;}
.ws1ed{word-spacing:11.212776px;}
.ws21a{word-spacing:11.219364px;}
.ws98{word-spacing:11.509236px;}
.ws285{word-spacing:11.515824px;}
.ws286{word-spacing:11.522412px;}
.ws206{word-spacing:11.535588px;}
.ws205{word-spacing:11.542176px;}
.wsde{word-spacing:11.548764px;}
.ws23c{word-spacing:11.561940px;}
.ws99{word-spacing:11.568528px;}
.ws1b1{word-spacing:11.588292px;}
.ws21e{word-spacing:11.904516px;}
.ws183{word-spacing:11.911104px;}
.ws17{word-spacing:11.924280px;}
.ws207{word-spacing:11.930868px;}
.ws62{word-spacing:11.937456px;}
.ws1d4{word-spacing:11.950632px;}
.wsfe{word-spacing:11.957220px;}
.ws1d1{word-spacing:12.247092px;}
.ws1d0{word-spacing:12.293208px;}
.wsd5{word-spacing:12.299796px;}
.wsd4{word-spacing:12.306384px;}
.ws144{word-spacing:12.602844px;}
.ws1b6{word-spacing:12.609432px;}
.ws4d{word-spacing:12.616020px;}
.ws143{word-spacing:12.622608px;}
.ws16d{word-spacing:12.629196px;}
.ws4c{word-spacing:12.635784px;}
.ws16e{word-spacing:12.648960px;}
.ws1e0{word-spacing:12.655548px;}
.ws1de{word-spacing:12.662136px;}
.ws7{word-spacing:12.971772px;}
.ws3f{word-spacing:12.978360px;}
.ws6{word-spacing:12.984948px;}
.ws40{word-spacing:12.998124px;}
.ws101{word-spacing:13.004712px;}
.ws102{word-spacing:13.024476px;}
.ws160{word-spacing:13.031064px;}
.ws161{word-spacing:13.037652px;}
.ws1be{word-spacing:13.044240px;}
.ws175{word-spacing:13.347288px;}
.wsfa{word-spacing:13.360464px;}
.ws19f{word-spacing:13.380228px;}
.ws1a0{word-spacing:13.393404px;}
.ws174{word-spacing:13.413168px;}
.ws142{word-spacing:13.683276px;}
.ws141{word-spacing:13.716216px;}
.wsdc{word-spacing:13.749156px;}
.wsdd{word-spacing:13.775508px;}
.ws227{word-spacing:14.052204px;}
.ws15d{word-spacing:14.058792px;}
.ws15e{word-spacing:14.085144px;}
.ws23b{word-spacing:14.091732px;}
.ws190{word-spacing:14.098320px;}
.ws15c{word-spacing:14.104908px;}
.ws78{word-spacing:14.118084px;}
.ws133{word-spacing:14.440896px;}
.ws132{word-spacing:14.454072px;}
.ws178{word-spacing:14.460660px;}
.ws1b3{word-spacing:14.480424px;}
.ws1d6{word-spacing:14.809824px;}
.ws1d5{word-spacing:14.823000px;}
.ws234{word-spacing:15.139224px;}
.ws235{word-spacing:15.145812px;}
.ws20b{word-spacing:15.158988px;}
.ws12b{word-spacing:15.494976px;}
.ws186{word-spacing:15.501564px;}
.ws42{word-spacing:15.514740px;}
.ws185{word-spacing:15.521328px;}
.ws12a{word-spacing:15.527916px;}
.ws1e3{word-spacing:15.541092px;}
.ws41{word-spacing:15.554268px;}
.ws193{word-spacing:15.844140px;}
.ws35{word-spacing:15.870492px;}
.wsc8{word-spacing:15.877080px;}
.ws1b5{word-spacing:15.903432px;}
.ws1b4{word-spacing:15.910020px;}
.ws23a{word-spacing:15.936372px;}
.ws1aa{word-spacing:16.232832px;}
.ws210{word-spacing:16.239420px;}
.ws1a9{word-spacing:16.252596px;}
.ws1ef{word-spacing:16.265772px;}
.ws33{word-spacing:16.575408px;}
.ws1df{word-spacing:16.588584px;}
.ws165{word-spacing:16.595172px;}
.wsf6{word-spacing:16.601760px;}
.ws164{word-spacing:16.608348px;}
.ws22e{word-spacing:16.614936px;}
.wsf5{word-spacing:16.621524px;}
.ws1f2{word-spacing:16.931160px;}
.ws1c4{word-spacing:16.944336px;}
.ws82{word-spacing:16.950924px;}
.ws1c5{word-spacing:16.970688px;}
.ws73{word-spacing:16.977276px;}
.ws83{word-spacing:16.983864px;}
.ws72{word-spacing:16.990452px;}
.ws115{word-spacing:17.313264px;}
.ws57{word-spacing:17.688780px;}
.ws199{word-spacing:17.695368px;}
.ws1cd{word-spacing:17.701956px;}
.ws56{word-spacing:17.708544px;}
.ws28c{word-spacing:18.011592px;}
.ws1fb{word-spacing:18.024768px;}
.ws17f{word-spacing:18.031356px;}
.ws128{word-spacing:18.037944px;}
.ws180{word-spacing:18.044532px;}
.ws1b2{word-spacing:18.070884px;}
.ws1fc{word-spacing:18.090648px;}
.ws129{word-spacing:18.097236px;}
.ws196{word-spacing:18.334404px;}
.ws1a3{word-spacing:18.347580px;}
.wsaf{word-spacing:18.367344px;}
.ws10d{word-spacing:18.387108px;}
.ws11f{word-spacing:18.393696px;}
.wsd7{word-spacing:18.406872px;}
.ws19d{word-spacing:18.413460px;}
.ws1bd{word-spacing:18.426636px;}
.ws11e{word-spacing:18.433224px;}
.ws216{word-spacing:18.446400px;}
.ws1e1{word-spacing:19.105200px;}
.wsbd{word-spacing:19.118376px;}
.ws1e2{word-spacing:19.138140px;}
.wsbe{word-spacing:19.144728px;}
.ws22c{word-spacing:19.493892px;}
.ws182{word-spacing:20.185632px;}
.ws9b{word-spacing:20.192220px;}
.ws9a{word-spacing:20.198808px;}
.ws187{word-spacing:20.211984px;}
.ws74{word-spacing:20.534796px;}
.ws75{word-spacing:20.541384px;}
.ws195{word-spacing:20.587500px;}
.ws236{word-spacing:20.903724px;}
.ws237{word-spacing:20.910312px;}
.ws191{word-spacing:21.239712px;}
.ws222{word-spacing:21.957804px;}
.ws221{word-spacing:22.017096px;}
.wsb2{word-spacing:22.326732px;}
.wsb1{word-spacing:22.339908px;}
.ws12f{word-spacing:22.379436px;}
.ws1c1{word-spacing:22.708836px;}
.wse{word-spacing:22.722012px;}
.ws155{word-spacing:22.728600px;}
.ws156{word-spacing:22.794480px;}
.ws1f4{word-spacing:23.413752px;}
.ws1f5{word-spacing:23.446692px;}
.ws22d{word-spacing:23.802444px;}
.wsab{word-spacing:23.809032px;}
.ws208{word-spacing:24.131844px;}
.ws4b{word-spacing:24.138432px;}
.ws238{word-spacing:24.158196px;}
.ws4a{word-spacing:24.171372px;}
.ws213{word-spacing:24.836760px;}
.ws212{word-spacing:24.863112px;}
.ws27{word-spacing:24.869700px;}
.ws28{word-spacing:24.889464px;}
.ws263{word-spacing:25.574616px;}
.ws1ce{word-spacing:25.594380px;}
.ws1cf{word-spacing:25.607556px;}
.ws232{word-spacing:26.266356px;}
.ws1b7{word-spacing:26.312472px;}
.wse2{word-spacing:26.345412px;}
.wsaa{word-spacing:27.439020px;}
.ws1dc{word-spacing:27.728892px;}
.wsa9{word-spacing:27.748656px;}
.ws1db{word-spacing:27.761832px;}
.ws92{word-spacing:28.815912px;}
.ws85{word-spacing:28.855440px;}
.ws53{word-spacing:29.586708px;}
.ws52{word-spacing:29.599884px;}
.ws3{word-spacing:30.221964px;}
.ws4{word-spacing:30.255516px;}
.ws108{word-spacing:30.285036px;}
.ws107{word-spacing:30.298212px;}
.ws179{word-spacing:31.365468px;}
.ws229{word-spacing:32.452488px;}
.ws22a{word-spacing:32.511780px;}
.ws20a{word-spacing:32.847768px;}
.ws223{word-spacing:33.493392px;}
.ws224{word-spacing:33.532920px;}
.ws176{word-spacing:35.733312px;}
.ws260{word-spacing:41.767920px;}
.ws25f{word-spacing:42.163200px;}
.ws268{word-spacing:50.055624px;}
.ws22b{word-spacing:59.772924px;}
.ws288{word-spacing:66.997800px;}
.ws26e{word-spacing:67.780800px;}
.ws26f{word-spacing:68.223600px;}
.ws28a{word-spacing:94.503600px;}
.ws1f8{word-spacing:102.601512px;}
.ws264{word-spacing:112.997376px;}
.ws26a{word-spacing:116.232084px;}
.ws269{word-spacing:116.238672px;}
.ws26b{word-spacing:116.245260px;}
.ws259{word-spacing:123.432768px;}
.ws230{word-spacing:134.263440px;}
.ws0{word-spacing:145.983372px;}
.ws257{word-spacing:150.226164px;}
.ws282{word-spacing:154.814400px;}
.ws25a{word-spacing:156.550644px;}
.ws274{word-spacing:178.244928px;}
.ws261{word-spacing:197.383068px;}
.ws258{word-spacing:199.030068px;}
.ws266{word-spacing:200.624364px;}
.ws253{word-spacing:205.512660px;}
.ws252{word-spacing:205.519248px;}
.ws26c{word-spacing:227.839392px;}
.ws24e{word-spacing:432.396792px;}
.ws250{word-spacing:457.233552px;}
.ws254{word-spacing:508.731948px;}
.ws24f{word-spacing:509.436864px;}
.ws251{word-spacing:534.280212px;}
.ws273{word-spacing:616.063644px;}
.ws276{word-spacing:636.941016px;}
.ws267{word-spacing:747.428364px;}
.ws262{word-spacing:750.669660px;}
.ws24c{word-spacing:1918.524168px;}
.ws248{word-spacing:1958.846112px;}
._8f{margin-left:-635.801292px;}
._87{margin-left:-613.211040px;}
._2b{margin-left:-508.679244px;}
._2c{margin-left:-456.482520px;}
._88{margin-left:-293.403168px;}
._15{margin-left:-205.558776px;}
._3c{margin-left:-199.076184px;}
._89{margin-left:-178.198812px;}
._16{margin-left:-168.428808px;}
._4c{margin-left:-156.596760px;}
._1c{margin-left:-140.350752px;}
._3d{margin-left:-128.116836px;}
._49{margin-left:-123.478884px;}
._74{margin-left:-112.035528px;}
._40{margin-left:-110.474172px;}
._17{margin-left:-107.232876px;}
._90{margin-left:-103.319604px;}
._19{margin-left:-83.107620px;}
._3e{margin-left:-77.356296px;}
._1a{margin-left:-71.591796px;}
._80{margin-left:-68.040000px;}
._18{margin-left:-63.620316px;}
._4d{margin-left:-44.238420px;}
._75{margin-left:-35.232624px;}
._4e{margin-left:-33.796440px;}
._1d{margin-left:-30.548556px;}
._76{margin-left:-28.341576px;}
._27{margin-left:-21.984156px;}
._4{margin-left:-19.441188px;}
._81{margin-left:-12.241800px;}
._4a{margin-left:-11.120544px;}
._3{margin-left:-9.770004px;}
._2{margin-left:-3.182004px;}
._0{margin-left:-1.311012px;}
._1{width:1.014552px;}
._5{width:4.868496px;}
._6{width:9.757368px;}
._6d{width:12.240504px;}
._6c{width:16.562232px;}
._60{width:24.085728px;}
._10{width:25.554852px;}
._4b{width:32.123088px;}
._12{width:33.480216px;}
._85{width:35.582832px;}
._1e{width:37.129968px;}
._f{width:40.252680px;}
._41{width:49.047660px;}
._3a{width:57.954636px;}
._42{width:62.006256px;}
._3f{width:63.409500px;}
._11{width:65.517660px;}
._95{width:68.895900px;}
._3b{width:71.268984px;}
._45{width:72.356004px;}
._5a{width:74.516868px;}
._65{width:76.282452px;}
._70{width:78.937416px;}
._67{width:81.078516px;}
._b{width:82.442232px;}
._6f{width:83.568780px;}
._73{width:88.990704px;}
._14{width:90.361008px;}
._13{width:93.595716px;}
._59{width:96.369264px;}
._28{width:98.325900px;}
._5b{width:99.353628px;}
._71{width:101.395908px;}
._68{width:104.742612px;}
._4f{width:105.928452px;}
._44{width:107.950968px;}
._61{width:109.413504px;}
._6e{width:110.935332px;}
._46{width:112.364928px;}
._64{width:114.170040px;}
._e{width:116.278200px;}
._22{width:122.451156px;}
._51{width:123.762168px;}
._63{width:126.048204px;}
._23{width:133.966980px;}
._7a{width:138.670812px;}
._66{width:140.489100px;}
._62{width:141.530004px;}
._29{width:142.557732px;}
._7b{width:144.040032px;}
._6a{width:146.668644px;}
._58{width:149.429016px;}
._47{width:155.931372px;}
._7f{width:163.738152px;}
._21{width:172.487016px;}
._20{width:175.319856px;}
._50{width:184.312476px;}
._1b{width:187.744824px;}
._43{width:191.519748px;}
._72{width:193.687200px;}
._7c{width:194.754456px;}
._69{width:196.921908px;}
._8b{width:203.720724px;}
._1f{width:204.939504px;}
._83{width:207.826200px;}
._5e{width:208.991124px;}
._78{width:221.837724px;}
._52{width:229.420512px;}
._86{width:234.826200px;}
._25{width:237.998088px;}
._8e{width:240.277536px;}
._84{width:248.742000px;}
._53{width:261.260316px;}
._48{width:263.203776px;}
._54{width:264.422556px;}
._8{width:267.268572px;}
._82{width:275.742000px;}
._30{width:287.361972px;}
._57{width:297.777600px;}
._55{width:301.354884px;}
._79{width:304.042788px;}
._77{width:305.663436px;}
._8d{width:313.285752px;}
._39{width:317.673360px;}
._7{width:335.908944px;}
._32{width:339.841980px;}
._34{width:342.075312px;}
._56{width:345.198024px;}
._38{width:354.941676px;}
._5d{width:360.725940px;}
._2e{width:362.155536px;}
._2f{width:363.960648px;}
._33{width:372.959856px;}
._31{width:375.120720px;}
._24{width:393.349716px;}
._2d{width:394.917660px;}
._26{width:410.412636px;}
._6b{width:414.292968px;}
._5f{width:418.252356px;}
._37{width:421.776936px;}
._35{width:437.719896px;}
._7e{width:441.923040px;}
._2a{width:443.023236px;}
._7d{width:458.498448px;}
._36{width:459.717228px;}
._5c{width:477.359892px;}
._9{width:499.680036px;}
._c{width:524.523384px;}
._d{width:539.010396px;}
._8a{width:547.984368px;}
._93{width:549.015192px;}
._a{width:563.484816px;}
._8c{width:568.379700px;}
._94{width:769.739544px;}
._92{width:790.842564px;}
._91{width:824.902524px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.120000px;}
.fs5{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs3{font-size:60.120000px;}
.fs0{font-size:65.880000px;}
.fs6{font-size:72.000000px;}
.fs1{font-size:83.880000px;}
.fs7{font-size:86.400000px;}
.y0{bottom:0.000000px;}
.y231{bottom:0.270450px;}
.y2a5{bottom:2.610450px;}
.y2a8{bottom:2.700450px;}
.y20{bottom:57.631320px;}
.y1{bottom:77.790600px;}
.ye8{bottom:110.918358px;}
.y15a{bottom:112.091022px;}
.y77{bottom:113.346273px;}
.y3c{bottom:114.064047px;}
.yde{bottom:116.765490px;}
.y143{bottom:116.850630px;}
.y125{bottom:116.852520px;}
.y1f3{bottom:116.853825px;}
.y4d{bottom:116.855715px;}
.y88{bottom:116.857020px;}
.y119{bottom:116.857440px;}
.yca{bottom:116.858451px;}
.y96{bottom:116.859087px;}
.y1d3{bottom:116.862381px;}
.y1c{bottom:134.058270px;}
.y1f2{bottom:135.843735px;}
.y1d2{bottom:135.852291px;}
.y165{bottom:138.637368px;}
.y19d{bottom:139.802610px;}
.yaf{bottom:144.128127px;}
.y100{bottom:147.732102px;}
.ye7{bottom:150.067548px;}
.y159{bottom:150.070842px;}
.y76{bottom:151.235508px;}
.y3b{bottom:152.043867px;}
.y178{bottom:152.400630px;}
.y12c{bottom:154.830873px;}
.y124{bottom:154.832340px;}
.y1f1{bottom:154.833645px;}
.y142{bottom:154.834149px;}
.y4c{bottom:154.835535px;}
.ydd{bottom:154.835895px;}
.y87{bottom:154.836840px;}
.y118{bottom:154.837260px;}
.yc9{bottom:154.838271px;}
.y95{bottom:154.838907px;}
.y1d1{bottom:154.842201px;}
.y19c{bottom:158.792520px;}
.y63{bottom:162.751545px;}
.y1b{bottom:171.955740px;}
.y1f0{bottom:173.823555px;}
.y1d0{bottom:173.832111px;}
.y164{bottom:176.617188px;}
.y19b{bottom:177.782430px;}
.yae{bottom:182.107947px;}
.yff{bottom:185.621337px;}
.y158{bottom:188.050662px;}
.y75{bottom:189.124743px;}
.ye6{bottom:189.218385px;}
.y3a{bottom:189.933102px;}
.y177{bottom:190.380630px;}
.y12b{bottom:192.720108px;}
.y123{bottom:192.721575px;}
.y141{bottom:192.723384px;}
.y4b{bottom:192.724770px;}
.ydc{bottom:192.725130px;}
.y86{bottom:192.726075px;}
.y117{bottom:192.726495px;}
.yc8{bottom:192.727506px;}
.y94{bottom:192.728142px;}
.y1ef{bottom:192.813465px;}
.y1cf{bottom:192.822021px;}
.y19a{bottom:196.772340px;}
.y62{bottom:200.731365px;}
.y1a{bottom:209.935560px;}
.y1ee{bottom:211.712790px;}
.y1ce{bottom:211.721346px;}
.y163{bottom:214.506423px;}
.y199{bottom:215.762250px;}
.yad{bottom:220.087767px;}
.yfe{bottom:223.601157px;}
.y157{bottom:225.939897px;}
.y74{bottom:227.104563px;}
.y39{bottom:227.912922px;}
.y176{bottom:228.361215px;}
.ye5{bottom:228.367575px;}
.y12a{bottom:230.699928px;}
.y122{bottom:230.701395px;}
.y1ed{bottom:230.702700px;}
.y140{bottom:230.703204px;}
.y4a{bottom:230.704590px;}
.ydb{bottom:230.704950px;}
.y85{bottom:230.705895px;}
.y116{bottom:230.706315px;}
.yc7{bottom:230.707326px;}
.y93{bottom:230.707962px;}
.y1cd{bottom:230.711256px;}
.y198{bottom:234.661575px;}
.y61{bottom:238.622700px;}
.y19{bottom:247.915380px;}
.y1ec{bottom:249.692610px;}
.y1cc{bottom:249.701166px;}
.y162{bottom:252.486243px;}
.y197{bottom:253.651485px;}
.yac{bottom:257.977002px;}
.yfd{bottom:261.580977px;}
.y156{bottom:263.919717px;}
.y73{bottom:265.084383px;}
.y38{bottom:265.892742px;}
.ye4{bottom:266.256810px;}
.y175{bottom:266.260104px;}
.y129{bottom:268.679748px;}
.y121{bottom:268.681215px;}
.y1eb{bottom:268.682520px;}
.y13f{bottom:268.683024px;}
.y49{bottom:268.684410px;}
.yda{bottom:268.684770px;}
.y84{bottom:268.685715px;}
.y115{bottom:268.686135px;}
.yc6{bottom:268.687146px;}
.y92{bottom:268.687782px;}
.y1cb{bottom:268.691076px;}
.y196{bottom:272.641395px;}
.y60{bottom:276.602520px;}
.y18{bottom:285.812850px;}
.y1ea{bottom:287.672430px;}
.y1ca{bottom:287.680986px;}
.y161{bottom:290.466063px;}
.y195{bottom:291.631305px;}
.yab{bottom:295.956822px;}
.yfc{bottom:299.470212px;}
.y155{bottom:301.808952px;}
.y72{bottom:303.064203px;}
.y37{bottom:303.781977px;}
.ye3{bottom:304.236630px;}
.y174{bottom:304.239924px;}
.y128{bottom:306.480045px;}
.y120{bottom:306.571575px;}
.y1e9{bottom:306.571755px;}
.y13e{bottom:306.572259px;}
.y48{bottom:306.573645px;}
.yd9{bottom:306.574005px;}
.y83{bottom:306.574950px;}
.y114{bottom:306.575370px;}
.yc5{bottom:306.576381px;}
.y91{bottom:306.577017px;}
.y1c9{bottom:306.580311px;}
.y194{bottom:310.621215px;}
.y5f{bottom:314.582340px;}
.y17{bottom:323.792670px;}
.y1e8{bottom:325.561665px;}
.y1c8{bottom:325.570221px;}
.y193{bottom:329.520540px;}
.y160{bottom:329.526315px;}
.yaa{bottom:333.846057px;}
.yfb{bottom:337.450032px;}
.y154{bottom:339.788772px;}
.y71{bottom:341.044023px;}
.y36{bottom:341.761797px;}
.y173{bottom:342.219744px;}
.ye2{bottom:343.387467px;}
.y82{bottom:344.464185px;}
.ye0{bottom:344.466252px;}
.y127{bottom:344.550630px;}
.y11f{bottom:344.551395px;}
.y1e7{bottom:344.551575px;}
.y13d{bottom:344.552079px;}
.y47{bottom:344.553465px;}
.yd8{bottom:344.553825px;}
.y113{bottom:344.555190px;}
.yc4{bottom:344.556201px;}
.y90{bottom:344.556837px;}
.y1c7{bottom:344.560131px;}
.y192{bottom:348.510450px;}
.y5e{bottom:352.471575px;}
.y16{bottom:361.772490px;}
.y1e6{bottom:363.541485px;}
.y1c6{bottom:363.550041px;}
.y15f{bottom:367.506135px;}
.y191{bottom:367.507782px;}
.ya9{bottom:371.825877px;}
.yfa{bottom:375.429852px;}
.y153{bottom:377.768592px;}
.y35{bottom:379.651032px;}
.y70{bottom:380.104275px;}
.y172{bottom:380.108979px;}
.y112{bottom:382.444425px;}
.y11e{bottom:382.531215px;}
.y1e5{bottom:382.531395px;}
.y13c{bottom:382.531899px;}
.y46{bottom:382.533285px;}
.yd7{bottom:382.533645px;}
.y81{bottom:382.534590px;}
.yc3{bottom:382.536021px;}
.y8f{bottom:382.536657px;}
.y1c5{bottom:382.539951px;}
.y190{bottom:386.497692px;}
.y5d{bottom:390.451395px;}
.y15{bottom:399.669960px;}
.y1e4{bottom:401.521305px;}
.y1c4{bottom:401.529861px;}
.y15e{bottom:405.485955px;}
.y18f{bottom:405.487602px;}
.ya8{bottom:409.805697px;}
.yf9{bottom:413.319087px;}
.y152{bottom:415.748412px;}
.y34{bottom:417.630852px;}
.y6f{bottom:418.084095px;}
.y171{bottom:418.088799px;}
.y1e3{bottom:420.420630px;}
.y13b{bottom:420.421134px;}
.y45{bottom:420.422520px;}
.y11d{bottom:420.422598px;}
.yd6{bottom:420.422880px;}
.y80{bottom:420.423825px;}
.y111{bottom:420.424245px;}
.yc2{bottom:420.425256px;}
.y8e{bottom:420.425892px;}
.y1c3{bottom:420.429186px;}
.y18e{bottom:424.477512px;}
.y5c{bottom:428.340630px;}
.y14{bottom:437.649780px;}
.y1e2{bottom:439.410540px;}
.y1c2{bottom:439.419096px;}
.y15d{bottom:443.375190px;}
.y18d{bottom:443.376837px;}
.ya7{bottom:448.954887px;}
.yf8{bottom:451.298907px;}
.y151{bottom:453.637647px;}
.y33{bottom:455.610672px;}
.y6e{bottom:455.973330px;}
.y170{bottom:455.978034px;}
.y110{bottom:458.313480px;}
.ye1{bottom:458.315127px;}
.y1e1{bottom:458.400450px;}
.y13a{bottom:458.400954px;}
.y44{bottom:458.402340px;}
.y11c{bottom:458.402418px;}
.yd5{bottom:458.402700px;}
.y7f{bottom:458.403645px;}
.yc1{bottom:458.405076px;}
.y8d{bottom:458.405712px;}
.y1c1{bottom:458.409006px;}
.y18c{bottom:462.366747px;}
.y5b{bottom:466.322115px;}
.y13{bottom:475.547250px;}
.y1e0{bottom:477.391305px;}
.y1c0{bottom:477.398916px;}
.y18b{bottom:481.356657px;}
.ya6{bottom:488.015139px;}
.yf7{bottom:489.188142px;}
.y150{bottom:491.617467px;}
.y32{bottom:493.862328px;}
.y6d{bottom:493.953150px;}
.y16f{bottom:493.957854px;}
.y139{bottom:496.201251px;}
.y11b{bottom:496.202715px;}
.y43{bottom:496.291575px;}
.yd4{bottom:496.291935px;}
.y7e{bottom:496.292880px;}
.y10f{bottom:496.293300px;}
.yc0{bottom:496.294311px;}
.y8c{bottom:496.294947px;}
.y1df{bottom:496.381215px;}
.y15c{bottom:496.385532px;}
.y1bf{bottom:496.388826px;}
.y18a{bottom:500.346567px;}
.y5a{bottom:504.301935px;}
.y12{bottom:513.527070px;}
.y1de{bottom:515.280540px;}
.y1be{bottom:515.288151px;}
.y189{bottom:519.336477px;}
.ya5{bottom:527.164329px;}
.yf6{bottom:527.167962px;}
.y14f{bottom:529.506702px;}
.y31{bottom:531.932733px;}
.y6c{bottom:531.932970px;}
.y16e{bottom:533.107044px;}
.y1dd{bottom:534.270450px;}
.y42{bottom:534.271395px;}
.y138{bottom:534.271656px;}
.yd3{bottom:534.271755px;}
.y7d{bottom:534.272700px;}
.y10e{bottom:534.273120px;}
.ybf{bottom:534.274131px;}
.y8b{bottom:534.274767px;}
.y1bd{bottom:534.278061px;}
.y188{bottom:538.235802px;}
.y59{bottom:542.191170px;}
.y11{bottom:551.506890px;}
.y1dc{bottom:553.262610px;}
.y1bc{bottom:553.267971px;}
.y187{bottom:557.225712px;}
.yf5{bottom:565.147782px;}
.ya4{bottom:566.315166px;}
.y14e{bottom:567.395937px;}
.y30{bottom:569.912553px;}
.y6b{bottom:571.082160px;}
.y16d{bottom:571.086864px;}
.y126{bottom:572.160630px;}
.y41{bottom:572.251215px;}
.y137{bottom:572.251476px;}
.yd2{bottom:572.251575px;}
.y7c{bottom:572.252520px;}
.y10d{bottom:572.252940px;}
.ybe{bottom:572.253951px;}
.y8a{bottom:572.254587px;}
.y1bb{bottom:572.257881px;}
.y186{bottom:576.215622px;}
.y10{bottom:589.404360px;}
.y1db{bottom:591.242430px;}
.y1ba{bottom:591.247791px;}
.y185{bottom:595.205532px;}
.y58{bottom:595.290333px;}
.yf4{bottom:603.037017px;}
.ya3{bottom:604.294986px;}
.y14d{bottom:605.466342px;}
.y2f{bottom:607.801788px;}
.y6a{bottom:608.971395px;}
.y16c{bottom:608.976099px;}
.y11a{bottom:610.053237px;}
.y40{bottom:610.140630px;}
.y136{bottom:610.140711px;}
.yd1{bottom:610.140810px;}
.y7b{bottom:610.141755px;}
.y10c{bottom:610.142175px;}
.ybd{bottom:610.143186px;}
.y89{bottom:610.143822px;}
.y1da{bottom:610.232340px;}
.y1b9{bottom:610.237701px;}
.y184{bottom:614.195442px;}
.yf{bottom:627.384180px;}
.y1d9{bottom:629.131665px;}
.y1b8{bottom:629.137026px;}
.y57{bottom:633.090630px;}
.y183{bottom:633.094767px;}
.yf3{bottom:641.016837px;}
.ya2{bottom:643.355238px;}
.y14c{bottom:643.355577px;}
.y2e{bottom:645.781608px;}
.y69{bottom:646.951215px;}
.y16b{bottom:646.955919px;}
.y10b{bottom:648.031410px;}
.y135{bottom:648.120531px;}
.yd0{bottom:648.120630px;}
.y7a{bottom:648.121575px;}
.ybc{bottom:648.123006px;}
.y3f{bottom:648.123642px;}
.y1b7{bottom:648.126936px;}
.y182{bottom:652.084677px;}
.y2bd{bottom:660.450216px;}
.ye{bottom:665.364000px;}
.y1d8{bottom:667.111485px;}
.y1b6{bottom:667.116846px;}
.y56{bottom:671.072670px;}
.y181{bottom:671.074587px;}
.yf2{bottom:680.166027px;}
.ya1{bottom:681.335058px;}
.y14b{bottom:681.335397px;}
.y68{bottom:684.845154px;}
.y2d{bottom:685.652184px;}
.ydf{bottom:686.012877px;}
.y134{bottom:686.100351px;}
.ycf{bottom:686.100450px;}
.y79{bottom:686.101395px;}
.y10a{bottom:686.101815px;}
.ybb{bottom:686.102826px;}
.y3e{bottom:686.103462px;}
.y1b5{bottom:686.106756px;}
.y180{bottom:690.064497px;}
.y2bc{bottom:693.660324px;}
.y28d{bottom:695.012160px;}
.y2b9{bottom:696.090711px;}
.yd{bottom:703.261470px;}
.y1d7{bottom:705.091305px;}
.y1b4{bottom:705.096666px;}
.y55{bottom:709.052490px;}
.y17f{bottom:709.054407px;}
.y216{bottom:709.950216px;}
.y28c{bottom:713.911485px;}
.y2cb{bottom:714.540450px;}
.y206{bottom:714.721575px;}
.y1f8{bottom:715.260144px;}
.yf1{bottom:718.055262px;}
.y14a{bottom:719.315217px;}
.ya0{bottom:720.484248px;}
.y67{bottom:722.824974px;}
.y133{bottom:723.900648px;}
.y78{bottom:723.990630px;}
.y109{bottom:723.991050px;}
.yba{bottom:723.992061px;}
.y2c{bottom:723.992697px;}
.y1b3{bottom:723.995991px;}
.y254{bottom:726.420000px;}
.y17e{bottom:728.044317px;}
.y275{bottom:729.120000px;}
.y2b8{bottom:729.210234px;}
.y2b7{bottom:732.451530px;}
.y28b{bottom:732.901395px;}
.y2ce{bottom:735.329424px;}
.y242{bottom:738.661062px;}
.yc{bottom:741.241290px;}
.y1d6{bottom:742.980540px;}
.y1b2{bottom:742.985901px;}
.y215{bottom:743.069739px;}
.y54{bottom:746.941725px;}
.y17d{bottom:746.943642px;}
.y205{bottom:747.841098px;}
.y1f7{bottom:748.379667px;}
.y1f6{bottom:749.909730px;}
.y28a{bottom:751.891305px;}
.y22d{bottom:752.070000px;}
.y245{bottom:752.790000px;}
.yf0{bottom:756.035082px;}
.y2cf{bottom:756.929829px;}
.y149{bottom:757.204452px;}
.y2b5{bottom:758.011323px;}
.y9f{bottom:759.633438px;}
.y66{bottom:760.804794px;}
.y1d5{bottom:761.970450px;}
.yce{bottom:761.970513px;}
.y108{bottom:761.970870px;}
.y132{bottom:761.971053px;}
.yb9{bottom:761.971881px;}
.y2b{bottom:761.972517px;}
.y1b1{bottom:761.975811px;}
.y253{bottom:763.230450px;}
.y2a0{bottom:764.401062px;}
.y2b6{bottom:765.571053px;}
.y274{bottom:765.930450px;}
.y17c{bottom:765.933552px;}
.y2cd{bottom:768.448947px;}
.y289{bottom:770.790630px;}
.y2bb{bottom:773.940045px;}
.y2de{bottom:774.570450px;}
.y241{bottom:775.560450px;}
.yb{bottom:779.221110px;}
.y1d4{bottom:780.960450px;}
.y1b0{bottom:780.965721px;}
.y53{bottom:784.921545px;}
.y17b{bottom:784.923462px;}
.y252{bottom:785.190450px;}
.y273{bottom:787.170450px;}
.y22c{bottom:788.880450px;}
.y244{bottom:789.600450px;}
.y288{bottom:789.780540px;}
.y2b4{bottom:791.130846px;}
.yef{bottom:795.184272px;}
.y240{bottom:796.710450px;}
.y9e{bottom:798.693690px;}
.y65{bottom:798.694029px;}
.y1f5{bottom:799.140207px;}
.ycd{bottom:799.861395px;}
.y107{bottom:799.861752px;}
.y131{bottom:799.861935px;}
.yb8{bottom:799.862763px;}
.y2a{bottom:799.863399px;}
.y1af{bottom:799.955631px;}
.y29f{bottom:801.300450px;}
.y17a{bottom:803.913372px;}
.y2db{bottom:804.543150px;}
.y251{bottom:806.520450px;}
.y2ba{bottom:807.059568px;}
.y272{bottom:808.410450px;}
.y287{bottom:808.770450px;}
.y22b{bottom:810.840450px;}
.y207{bottom:815.430600px;}
.y1f9{bottom:816.960450px;}
.ya{bottom:817.118580px;}
.y23f{bottom:818.040600px;}
.y1ae{bottom:818.854956px;}
.y29e{bottom:820.470450px;}
.y2da{bottom:822.093150px;}
.y52{bottom:822.810780px;}
.y179{bottom:822.903282px;}
.y250{bottom:827.760450px;}
.y286{bottom:828.480450px;}
.y271{bottom:829.740450px;}
.y22a{bottom:832.170450px;}
.yee{bottom:833.073507px;}
.y148{bottom:833.164092px;}
.y16a{bottom:836.673849px;}
.ycc{bottom:837.750630px;}
.y15b{bottom:837.752634px;}
.y106{bottom:837.841572px;}
.y130{bottom:837.841755px;}
.yb7{bottom:837.842583px;}
.y9d{bottom:837.842880px;}
.y29{bottom:837.843219px;}
.y1ad{bottom:837.844866px;}
.y23e{bottom:839.370450px;}
.y2d9{bottom:841.982700px;}
.y29d{bottom:843.780000px;}
.y285{bottom:848.190450px;}
.y24f{bottom:849.090450px;}
.y208{bottom:850.710978px;}
.y270{bottom:851.070450px;}
.y229{bottom:853.410450px;}
.y9{bottom:855.098400px;}
.y1ac{bottom:856.834776px;}
.y29c{bottom:859.260450px;}
.y23d{bottom:860.610600px;}
.y51{bottom:860.792517px;}
.y2d8{bottom:861.872250px;}
.y284{bottom:867.900450px;}
.y2be{bottom:867.990450px;}
.y24e{bottom:870.420450px;}
.yed{bottom:870.962742px;}
.y147{bottom:872.224344px;}
.y26f{bottom:872.310450px;}
.y169{bottom:874.653669px;}
.y228{bottom:874.740450px;}
.y29b{bottom:875.550900px;}
.ycb{bottom:875.732454px;}
.y105{bottom:875.821392px;}
.y12f{bottom:875.821575px;}
.yb6{bottom:875.822403px;}
.y9c{bottom:875.822700px;}
.y28{bottom:875.823039px;}
.y1ab{bottom:875.824686px;}
.y1fa{bottom:876.000081px;}
.y2d7{bottom:881.852250px;}
.y23c{bottom:881.940450px;}
.y25d{bottom:882.300000px;}
.y2bf{bottom:885.900450px;}
.y209{bottom:885.991356px;}
.y283{bottom:887.700450px;}
.y29a{bottom:891.120450px;}
.y24d{bottom:891.660450px;}
.y8{bottom:892.995870px;}
.y26e{bottom:893.640450px;}
.y2dc{bottom:894.180600px;}
.y1aa{bottom:894.814596px;}
.y227{bottom:896.070450px;}
.y50{bottom:898.772337px;}
.y21f{bottom:901.111062px;}
.y2d6{bottom:901.741800px;}
.y23b{bottom:903.270450px;}
.y203{bottom:903.720450px;}
.y2c0{bottom:903.810450px;}
.y299{bottom:907.320900px;}
.y282{bottom:907.410450px;}
.yec{bottom:909.033147px;}
.y146{bottom:911.373534px;}
.y168{bottom:912.542904px;}
.y24c{bottom:912.990450px;}
.y104{bottom:913.710627px;}
.y12e{bottom:913.710810px;}
.yb5{bottom:913.711638px;}
.y9b{bottom:913.711935px;}
.y27{bottom:913.712274px;}
.y1a9{bottom:913.804506px;}
.y26d{bottom:914.970450px;}
.y2c8{bottom:916.050450px;}
.y226{bottom:917.310450px;}
.y25c{bottom:919.110450px;}
.y20a{bottom:921.271734px;}
.y2c1{bottom:921.630450px;}
.y2d5{bottom:921.721800px;}
.y214{bottom:922.800450px;}
.y298{bottom:922.890450px;}
.y23a{bottom:924.510450px;}
.y281{bottom:927.120450px;}
.y202{bottom:929.820450px;}
.y7{bottom:930.975690px;}
.y2b3{bottom:932.430450px;}
.y1a8{bottom:932.703831px;}
.y24b{bottom:934.320450px;}
.y1fb{bottom:935.039712px;}
.y26c{bottom:936.210450px;}
.y4f{bottom:936.661572px;}
.y21e{bottom:938.010450px;}
.y225{bottom:938.640450px;}
.y2c2{bottom:939.540450px;}
.y25b{bottom:940.350450px;}
.y2ac{bottom:941.340000px;}
.y2d4{bottom:941.611350px;}
.y297{bottom:945.120450px;}
.y239{bottom:945.840450px;}
.y213{bottom:946.290600px;}
.y280{bottom:946.830450px;}
.yeb{bottom:948.182337px;}
.y145{bottom:949.353354px;}
.y167{bottom:950.522724px;}
.y103{bottom:951.690447px;}
.y12d{bottom:951.690630px;}
.yb4{bottom:951.691458px;}
.y9a{bottom:951.691755px;}
.y26{bottom:951.692094px;}
.y1a7{bottom:951.693741px;}
.y2b2{bottom:953.670450px;}
.y24a{bottom:955.560450px;}
.y201{bottom:955.830450px;}
.y20b{bottom:956.552112px;}
.y2c3{bottom:957.450450px;}
.y26b{bottom:957.540600px;}
.y21d{bottom:959.160450px;}
.y224{bottom:959.970450px;}
.y296{bottom:960.690450px;}
.y2d3{bottom:961.500900px;}
.y25a{bottom:961.680450px;}
.y27f{bottom:966.540600px;}
.y238{bottom:967.170450px;}
.y6{bottom:968.955510px;}
.y212{bottom:969.780450px;}
.y1a6{bottom:970.683651px;}
.y2b1{bottom:974.910450px;}
.y2c4{bottom:975.270450px;}
.y249{bottom:976.890450px;}
.y2ab{bottom:978.150450px;}
.y26a{bottom:978.870450px;}
.y21c{bottom:980.490450px;}
.y223{bottom:981.210450px;}
.y2d2{bottom:981.480900px;}
.y200{bottom:981.930450px;}
.y259{bottom:982.920450px;}
.y295{bottom:982.920900px;}
.y27e{bottom:986.250450px;}
.y27d{bottom:987.061125px;}
.yea{bottom:987.242589px;}
.y237{bottom:988.410450px;}
.y166{bottom:988.411959px;}
.y21b{bottom:989.580450px;}
.y64{bottom:989.581329px;}
.y102{bottom:989.670267px;}
.yb3{bottom:989.671278px;}
.y99{bottom:989.671575px;}
.y25{bottom:989.671914px;}
.y1a5{bottom:989.673561px;}
.y4e{bottom:989.760852px;}
.y20c{bottom:991.832490px;}
.y2c5{bottom:993.180450px;}
.y211{bottom:993.270450px;}
.y1fc{bottom:994.079343px;}
.y2b0{bottom:996.240450px;}
.y2aa{bottom:996.780000px;}
.y248{bottom:998.220450px;}
.y294{bottom:998.490450px;}
.y2a9{bottom:999.390450px;}
.y269{bottom:1000.110450px;}
.y2d1{bottom:1001.370450px;}
.y264{bottom:1002.090000px;}
.y222{bottom:1002.540450px;}
.y258{bottom:1004.250450px;}
.y27c{bottom:1005.960450px;}
.y5{bottom:1006.861200px;}
.y1ff{bottom:1007.940450px;}
.y1a4{bottom:1008.663471px;}
.y236{bottom:1009.740450px;}
.y2c6{bottom:1011.090450px;}
.y293{bottom:1014.780000px;}
.y210{bottom:1016.760450px;}
.y2af{bottom:1017.570450px;}
.y247{bottom:1018.740450px;}
.y2a7{bottom:1020.270000px;}
.y2d0{bottom:1021.350450px;}
.y268{bottom:1021.440450px;}
.y2a6{bottom:1022.970450px;}
.y21a{bottom:1023.060450px;}
.y221{bottom:1023.870450px;}
.y257{bottom:1025.580450px;}
.y27b{bottom:1025.760450px;}
.ye9{bottom:1026.391779px;}
.y20d{bottom:1027.112868px;}
.y101{bottom:1027.470564px;}
.yb2{bottom:1027.560513px;}
.y98{bottom:1027.560810px;}
.y24{bottom:1027.561149px;}
.y1a3{bottom:1027.562796px;}
.y2c7{bottom:1028.910450px;}
.y292{bottom:1030.260450px;}
.y235{bottom:1031.070450px;}
.y1fe{bottom:1034.040450px;}
.y2ae{bottom:1038.810450px;}
.y263{bottom:1038.900450px;}
.y20f{bottom:1040.250450px;}
.y267{bottom:1042.680450px;}
.y2a4{bottom:1043.850000px;}
.y219{bottom:1044.390450px;}
.y4{bottom:1044.750450px;}
.y27a{bottom:1045.470450px;}
.y2a3{bottom:1046.460450px;}
.y291{bottom:1046.550000px;}
.y1a2{bottom:1046.552706px;}
.y256{bottom:1046.820450px;}
.y278{bottom:1046.910531px;}
.y2dd{bottom:1049.610450px;}
.y234{bottom:1052.220450px;}
.y1fd{bottom:1053.118974px;}
.y218{bottom:1053.480450px;}
.y262{bottom:1060.140450px;}
.y2ca{bottom:1060.679730px;}
.y246{bottom:1061.850450px;}
.y290{bottom:1062.030450px;}
.y266{bottom:1062.390450px;}
.y20e{bottom:1062.393246px;}
.y144{bottom:1064.371599px;}
.y279{bottom:1065.180450px;}
.y2cc{bottom:1065.539748px;}
.yb1{bottom:1065.540333px;}
.y97{bottom:1065.540630px;}
.y23{bottom:1065.540969px;}
.y1a1{bottom:1065.542616px;}
.y243{bottom:1065.630450px;}
.y230{bottom:1068.420000px;}
.y22f{bottom:1068.689874px;}
.y232{bottom:1068.690450px;}
.y255{bottom:1068.871125px;}
.y2a2{bottom:1076.430450px;}
.y28f{bottom:1078.320900px;}
.y261{bottom:1081.470450px;}
.y25f{bottom:1081.830450px;}
.y204{bottom:1082.640450px;}
.y1a0{bottom:1084.532526px;}
.y277{bottom:1084.890351px;}
.y220{bottom:1085.341044px;}
.y217{bottom:1086.871107px;}
.y2c9{bottom:1086.960450px;}
.y22e{bottom:1087.679784px;}
.y233{bottom:1087.680360px;}
.y3{bottom:1088.769450px;}
.y28e{bottom:1093.890450px;}
.y2a1{bottom:1100.009811px;}
.y2ad{bottom:1102.620306px;}
.y260{bottom:1102.620531px;}
.y265{bottom:1103.519568px;}
.yb0{bottom:1103.520153px;}
.y22{bottom:1103.520789px;}
.y19f{bottom:1103.522436px;}
.y276{bottom:1122.511125px;}
.y19e{bottom:1122.512346px;}
.y2{bottom:1137.000450px;}
.y3d{bottom:1141.321086px;}
.y25e{bottom:1141.410450px;}
.y21{bottom:1141.411671px;}
.y1f4{bottom:1141.500450px;}
.y1f{bottom:1208.798550px;}
.y1e{bottom:1224.998550px;}
.y1d{bottom:1241.199000px;}
.h1e{height:15.300000px;}
.h24{height:17.280000px;}
.h25{height:17.370000px;}
.h1a{height:33.268184px;}
.h21{height:37.520508px;}
.h22{height:37.522308px;}
.h1c{height:38.657000px;}
.h28{height:38.759766px;}
.h29{height:43.152539px;}
.h7{height:43.909277px;}
.h4{height:44.649141px;}
.h5{height:45.775020px;}
.h1f{height:46.137684px;}
.h6{height:46.379883px;}
.h1{height:47.286914px;}
.h16{height:47.608594px;}
.h20{height:50.769393px;}
.h26{height:51.679688px;}
.h23{height:52.666172px;}
.h17{height:56.227380px;}
.h15{height:56.251200px;}
.h8{height:56.253228px;}
.h14{height:56.254656px;}
.hb{height:56.257116px;}
.h12{height:56.257404px;}
.he{height:56.257596px;}
.h10{height:56.257728px;}
.ha{height:56.258328px;}
.hd{height:56.259336px;}
.h13{height:56.261496px;}
.h18{height:56.262936px;}
.h11{height:56.264640px;}
.h9{height:56.265276px;}
.h19{height:56.265996px;}
.hc{height:56.266464px;}
.hf{height:56.583457px;}
.h2{height:56.848359px;}
.h3{height:58.281855px;}
.h2a{height:60.206836px;}
.h1b{height:60.994088px;}
.h27{height:62.015625px;}
.h1d{height:94.737036px;}
.h0{height:1263.000000px;}
.w2{width:105.750000px;}
.w3{width:153.000000px;}
.w4{width:209.070000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x23{left:54.540000px;}
.x3{left:69.580500px;}
.x17{left:73.710000px;}
.x2a{left:75.960000px;}
.x25{left:94.860000px;}
.x27{left:113.580000px;}
.x2{left:127.620000px;}
.x14{left:131.670000px;}
.x1e{left:135.990000px;}
.x4{left:154.618929px;}
.x9{left:159.118587px;}
.x39{left:160.650000px;}
.x32{left:163.440000px;}
.xf{left:164.789514px;}
.x36{left:169.110000px;}
.xe{left:170.820000px;}
.x31{left:172.800000px;}
.x11{left:175.500000px;}
.x37{left:180.090900px;}
.x7{left:181.627110px;}
.xa{left:186.119505px;}
.x24{left:190.440000px;}
.x5{left:208.617471px;}
.x38{left:209.881350px;}
.x22{left:217.890450px;}
.x33{left:228.870000px;}
.x26{left:230.760000px;}
.x6{left:235.620711px;}
.x28{left:249.570000px;}
.xb{left:262.619361px;}
.x35{left:266.130000px;}
.x15{left:270.810000px;}
.x1a{left:273.059982px;}
.x1d{left:286.379298px;}
.x1b{left:291.959307px;}
.x20{left:311.670000px;}
.x1f{left:314.460000px;}
.x34{left:333.990720px;}
.x3a{left:342.450000px;}
.x21{left:343.620756px;}
.x29{left:427.500000px;}
.x1c{left:433.350639px;}
.x13{left:446.309559px;}
.x2b{left:507.600000px;}
.x16{left:521.549460px;}
.x18{left:602.550000px;}
.x2e{left:643.050297px;}
.x19{left:652.859262px;}
.x30{left:667.620243px;}
.x10{left:669.600000px;}
.x2d{left:686.610153px;}
.x2f{left:687.779523px;}
.x2c{left:701.279982px;}
.x12{left:726.029451px;}
.xd{left:728.279262px;}
.x8{left:748.710000px;}
.x1{left:757.080000px;}
.xc{left:767.609613px;}
@media print{
.v2{vertical-align:-24.000000pt;}
.v5{vertical-align:-5.439712pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:4.790059pt;}
.v6{vertical-align:21.440000pt;}
.v1{vertical-align:23.988651pt;}
.v4{vertical-align:43.521792pt;}
.ls61{letter-spacing:-0.852480pt;}
.ls53{letter-spacing:-0.321600pt;}
.ls32{letter-spacing:-0.298656pt;}
.ls4c{letter-spacing:-0.240096pt;}
.ls1a{letter-spacing:-0.216672pt;}
.ls28{letter-spacing:-0.168480pt;}
.ls54{letter-spacing:-0.168000pt;}
.ls27{letter-spacing:-0.160992pt;}
.ls31{letter-spacing:-0.149632pt;}
.ls2f{letter-spacing:-0.144288pt;}
.ls6c{letter-spacing:-0.141664pt;}
.ls44{letter-spacing:-0.117120pt;}
.ls5d{letter-spacing:-0.115200pt;}
.ls57{letter-spacing:-0.111264pt;}
.ls4a{letter-spacing:-0.108576pt;}
.ls63{letter-spacing:-0.099840pt;}
.ls24{letter-spacing:-0.096192pt;}
.ls6b{letter-spacing:-0.082016pt;}
.ls64{letter-spacing:-0.076800pt;}
.ls29{letter-spacing:-0.070272pt;}
.ls2c{letter-spacing:-0.069472pt;}
.ls60{letter-spacing:-0.069120pt;}
.ls41{letter-spacing:-0.058560pt;}
.ls2d{letter-spacing:-0.052704pt;}
.ls58{letter-spacing:-0.046848pt;}
.ls33{letter-spacing:-0.040992pt;}
.ls5e{letter-spacing:-0.038400pt;}
.ls6d{letter-spacing:-0.033600pt;}
.ls65{letter-spacing:-0.032000pt;}
.ls62{letter-spacing:-0.030720pt;}
.ls59{letter-spacing:-0.029280pt;}
.ls56{letter-spacing:-0.024000pt;}
.ls2b{letter-spacing:-0.023424pt;}
.ls23{letter-spacing:-0.017568pt;}
.ls4b{letter-spacing:-0.014976pt;}
.ls25{letter-spacing:-0.011712pt;}
.ls69{letter-spacing:-0.009600pt;}
.ls5f{letter-spacing:-0.007680pt;}
.ls14{letter-spacing:-0.005856pt;}
.ls11{letter-spacing:0.000000pt;}
.ls52{letter-spacing:0.004800pt;}
.lsc{letter-spacing:0.005856pt;}
.ls51{letter-spacing:0.009600pt;}
.ls7{letter-spacing:0.011712pt;}
.ls5b{letter-spacing:0.012800pt;}
.lse{letter-spacing:0.017568pt;}
.ls17{letter-spacing:0.023424pt;}
.ls4{letter-spacing:0.029280pt;}
.ls67{letter-spacing:0.033600pt;}
.lsb{letter-spacing:0.035136pt;}
.ls1{letter-spacing:0.037280pt;}
.ls10{letter-spacing:0.037333pt;}
.ls8{letter-spacing:0.040992pt;}
.ls5c{letter-spacing:0.044800pt;}
.lsd{letter-spacing:0.046848pt;}
.ls9{letter-spacing:0.052704pt;}
.ls55{letter-spacing:0.052800pt;}
.ls6a{letter-spacing:0.053440pt;}
.ls40{letter-spacing:0.055328pt;}
.ls4e{letter-spacing:0.057600pt;}
.ls48{letter-spacing:0.058368pt;}
.ls0{letter-spacing:0.058560pt;}
.ls12{letter-spacing:0.059648pt;}
.ls47{letter-spacing:0.060352pt;}
.ls46{letter-spacing:0.062240pt;}
.ls5{letter-spacing:0.064416pt;}
.ls2{letter-spacing:0.067104pt;}
.ls3{letter-spacing:0.070272pt;}
.ls4f{letter-spacing:0.072000pt;}
.ls6{letter-spacing:0.076128pt;}
.ls50{letter-spacing:0.081600pt;}
.lsa{letter-spacing:0.081984pt;}
.ls16{letter-spacing:0.087840pt;}
.ls4d{letter-spacing:0.091200pt;}
.ls3d{letter-spacing:0.093632pt;}
.ls15{letter-spacing:0.093696pt;}
.ls2a{letter-spacing:0.099552pt;}
.ls22{letter-spacing:0.105408pt;}
.ls1f{letter-spacing:0.111264pt;}
.ls19{letter-spacing:0.112224pt;}
.lsf{letter-spacing:0.117120pt;}
.ls34{letter-spacing:0.122976pt;}
.ls18{letter-spacing:0.128832pt;}
.ls3b{letter-spacing:0.134688pt;}
.ls1d{letter-spacing:0.140544pt;}
.ls3e{letter-spacing:0.149760pt;}
.ls66{letter-spacing:0.152256pt;}
.ls43{letter-spacing:0.157248pt;}
.ls13{letter-spacing:0.158112pt;}
.ls1c{letter-spacing:0.160000pt;}
.ls30{letter-spacing:0.160320pt;}
.ls38{letter-spacing:0.160992pt;}
.ls3f{letter-spacing:0.161728pt;}
.ls42{letter-spacing:0.204960pt;}
.ls5a{letter-spacing:0.245760pt;}
.ls49{letter-spacing:0.250848pt;}
.ls26{letter-spacing:0.392352pt;}
.ls39{letter-spacing:0.398208pt;}
.ls37{letter-spacing:0.480000pt;}
.ls2e{letter-spacing:0.721440pt;}
.ls68{letter-spacing:0.753056pt;}
.ls3a{letter-spacing:5.360000pt;}
.ls35{letter-spacing:6.441600pt;}
.ls36{letter-spacing:43.562784pt;}
.ls21{letter-spacing:44.523168pt;}
.ls45{letter-spacing:48.077760pt;}
.ls20{letter-spacing:52.838688pt;}
.ls1e{letter-spacing:87.722880pt;}
.ls1b{letter-spacing:128.357664pt;}
.ls3c{letter-spacing:753.362688pt;}
.ws27c{word-spacing:-76.800000pt;}
.ws281{word-spacing:-64.000000pt;}
.ws9c{word-spacing:-58.560000pt;}
.ws201{word-spacing:-33.027840pt;}
.ws54{word-spacing:-14.798112pt;}
.ws7f{word-spacing:-14.780544pt;}
.ws184{word-spacing:-14.762976pt;}
.ws18f{word-spacing:-14.757120pt;}
.ws1ff{word-spacing:-14.686848pt;}
.ws200{word-spacing:-14.669280pt;}
.ws134{word-spacing:-13.520320pt;}
.ws11a{word-spacing:-13.360000pt;}
.ws1{word-spacing:-12.037333pt;}
.ws25b{word-spacing:-9.610848pt;}
.ws19c{word-spacing:-9.520992pt;}
.ws24b{word-spacing:-9.517248pt;}
.ws247{word-spacing:-9.509760pt;}
.ws25c{word-spacing:-9.345024pt;}
.ws25d{word-spacing:-9.251424pt;}
.wsb3{word-spacing:-9.199008pt;}
.wsb4{word-spacing:-9.191520pt;}
.ws242{word-spacing:-0.368928pt;}
.ws209{word-spacing:-0.363072pt;}
.ws256{word-spacing:-0.351360pt;}
.ws22f{word-spacing:-0.345504pt;}
.ws249{word-spacing:-0.339648pt;}
.ws255{word-spacing:-0.333792pt;}
.wsc3{word-spacing:-0.316224pt;}
.ws12e{word-spacing:-0.304512pt;}
.wse6{word-spacing:-0.292800pt;}
.ws1fe{word-spacing:-0.269376pt;}
.ws270{word-spacing:-0.240000pt;}
.ws24a{word-spacing:-0.174496pt;}
.ws2c{word-spacing:-0.165664pt;}
.ws5{word-spacing:-0.149120pt;}
.ws119{word-spacing:-0.140544pt;}
.ws283{word-spacing:-0.108800pt;}
.ws28d{word-spacing:-0.070272pt;}
.ws27a{word-spacing:-0.069120pt;}
.ws2b{word-spacing:-0.058560pt;}
.ws211{word-spacing:-0.052704pt;}
.ws1f0{word-spacing:-0.046848pt;}
.ws27e{word-spacing:-0.046080pt;}
.ws215{word-spacing:-0.040992pt;}
.wsac{word-spacing:-0.035136pt;}
.ws280{word-spacing:-0.032000pt;}
.ws93{word-spacing:-0.029280pt;}
.ws284{word-spacing:-0.025600pt;}
.ws1a7{word-spacing:-0.023424pt;}
.wsf9{word-spacing:-0.017568pt;}
.ws28b{word-spacing:-0.014400pt;}
.wsa7{word-spacing:-0.011712pt;}
.ws27b{word-spacing:-0.007680pt;}
.wsa3{word-spacing:-0.005856pt;}
.ws2{word-spacing:0.000000pt;}
.wsb{word-spacing:0.005856pt;}
.ws289{word-spacing:0.007456pt;}
.wsb0{word-spacing:0.011712pt;}
.wsa{word-spacing:0.017568pt;}
.ws27f{word-spacing:0.023040pt;}
.ws14{word-spacing:0.023424pt;}
.ws63{word-spacing:0.029280pt;}
.ws3e{word-spacing:0.035136pt;}
.ws44{word-spacing:0.040992pt;}
.ws1a{word-spacing:0.046848pt;}
.ws5c{word-spacing:0.052704pt;}
.ws97{word-spacing:0.058560pt;}
.ws10b{word-spacing:0.064416pt;}
.ws55{word-spacing:0.070272pt;}
.ws7e{word-spacing:0.076128pt;}
.ws18b{word-spacing:0.081984pt;}
.ws1bb{word-spacing:0.087840pt;}
.wsa8{word-spacing:0.093696pt;}
.wsa2{word-spacing:0.099552pt;}
.wsf3{word-spacing:0.105408pt;}
.ws278{word-spacing:0.111264pt;}
.ws170{word-spacing:0.122976pt;}
.ws277{word-spacing:0.128832pt;}
.ws11b{word-spacing:0.149632pt;}
.ws272{word-spacing:0.182400pt;}
.ws1a2{word-spacing:0.298656pt;}
.ws2e{word-spacing:0.304512pt;}
.ws24d{word-spacing:0.310368pt;}
.ws17a{word-spacing:0.316224pt;}
.ws2d{word-spacing:0.322080pt;}
.ws271{word-spacing:0.326400pt;}
.ws1c6{word-spacing:0.327936pt;}
.ws1a1{word-spacing:0.333792pt;}
.ws10f{word-spacing:0.345504pt;}
.ws45{word-spacing:0.363072pt;}
.ws150{word-spacing:0.368928pt;}
.wsea{word-spacing:0.374784pt;}
.ws110{word-spacing:0.380640pt;}
.ws13f{word-spacing:0.386496pt;}
.ws10e{word-spacing:0.392352pt;}
.ws25e{word-spacing:0.415776pt;}
.ws1c3{word-spacing:0.632448pt;}
.ws5e{word-spacing:0.644160pt;}
.ws1c2{word-spacing:0.655872pt;}
.ws5f{word-spacing:0.661728pt;}
.ws239{word-spacing:0.667584pt;}
.ws147{word-spacing:0.673440pt;}
.ws1c7{word-spacing:0.679296pt;}
.ws9{word-spacing:0.691008pt;}
.ws116{word-spacing:0.696864pt;}
.ws265{word-spacing:0.702720pt;}
.ws8{word-spacing:0.720288pt;}
.ws27d{word-spacing:0.775680pt;}
.ws46{word-spacing:0.936960pt;}
.ws1f7{word-spacing:0.948672pt;}
.wsc5{word-spacing:0.966240pt;}
.ws59{word-spacing:0.972096pt;}
.ws1ba{word-spacing:0.977952pt;}
.wse8{word-spacing:0.989664pt;}
.ws58{word-spacing:0.995520pt;}
.wsc4{word-spacing:1.001376pt;}
.wsf2{word-spacing:1.007232pt;}
.wsf4{word-spacing:1.018944pt;}
.wse7{word-spacing:1.024800pt;}
.wsfd{word-spacing:1.036512pt;}
.ws105{word-spacing:1.042368pt;}
.ws1f6{word-spacing:1.054080pt;}
.ws1af{word-spacing:1.235616pt;}
.wsb9{word-spacing:1.282464pt;}
.wsc7{word-spacing:1.294176pt;}
.ws90{word-spacing:1.300032pt;}
.wsc6{word-spacing:1.305888pt;}
.wsad{word-spacing:1.311744pt;}
.wsb8{word-spacing:1.317600pt;}
.ws7c{word-spacing:1.323456pt;}
.wsb7{word-spacing:1.329312pt;}
.ws8f{word-spacing:1.335168pt;}
.ws7d{word-spacing:1.341024pt;}
.ws91{word-spacing:1.346880pt;}
.wsae{word-spacing:1.352736pt;}
.ws16f{word-spacing:1.364448pt;}
.ws5a{word-spacing:1.604544pt;}
.ws89{word-spacing:1.610400pt;}
.ws1dd{word-spacing:1.616256pt;}
.ws220{word-spacing:1.622112pt;}
.ws1d{word-spacing:1.627968pt;}
.ws159{word-spacing:1.633824pt;}
.ws88{word-spacing:1.639680pt;}
.ws84{word-spacing:1.645536pt;}
.ws5b{word-spacing:1.657248pt;}
.ws1cc{word-spacing:1.663104pt;}
.ws1c{word-spacing:1.674816pt;}
.ws80{word-spacing:1.680672pt;}
.ws67{word-spacing:1.873920pt;}
.ws13{word-spacing:1.920768pt;}
.wse5{word-spacing:1.926624pt;}
.ws23f{word-spacing:1.932480pt;}
.ws69{word-spacing:1.938336pt;}
.wse9{word-spacing:1.944192pt;}
.ws12{word-spacing:1.950048pt;}
.ws145{word-spacing:1.955904pt;}
.wsbb{word-spacing:1.961760pt;}
.ws68{word-spacing:1.973472pt;}
.wscb{word-spacing:1.985184pt;}
.wsba{word-spacing:1.991040pt;}
.ws1b0{word-spacing:2.020320pt;}
.wse4{word-spacing:2.236992pt;}
.wseb{word-spacing:2.260416pt;}
.ws244{word-spacing:2.266272pt;}
.ws103{word-spacing:2.272128pt;}
.ws15a{word-spacing:2.277984pt;}
.ws2a{word-spacing:2.283840pt;}
.ws1c8{word-spacing:2.289696pt;}
.ws14f{word-spacing:2.295552pt;}
.ws104{word-spacing:2.301408pt;}
.ws1c9{word-spacing:2.313120pt;}
.ws1a5{word-spacing:2.324832pt;}
.ws26d{word-spacing:2.377536pt;}
.ws139{word-spacing:2.463584pt;}
.ws20c{word-spacing:2.559072pt;}
.ws246{word-spacing:2.564928pt;}
.ws20d{word-spacing:2.570784pt;}
.wsc0{word-spacing:2.576640pt;}
.ws8e{word-spacing:2.582496pt;}
.ws3b{word-spacing:2.588352pt;}
.ws245{word-spacing:2.594208pt;}
.ws11d{word-spacing:2.600064pt;}
.wsbf{word-spacing:2.605920pt;}
.ws1a8{word-spacing:2.611776pt;}
.ws152{word-spacing:2.617632pt;}
.ws109{word-spacing:2.623488pt;}
.ws1d3{word-spacing:2.629344pt;}
.ws275{word-spacing:2.641056pt;}
.ws6a{word-spacing:2.840160pt;}
.ws26{word-spacing:2.881152pt;}
.ws18e{word-spacing:2.887008pt;}
.ws47{word-spacing:2.898720pt;}
.ws23d{word-spacing:2.904576pt;}
.ws6c{word-spacing:2.910432pt;}
.ws25{word-spacing:2.916288pt;}
.wsfb{word-spacing:2.928000pt;}
.ws6d{word-spacing:2.945568pt;}
.ws48{word-spacing:2.951424pt;}
.ws6b{word-spacing:2.963136pt;}
.wsfc{word-spacing:2.968992pt;}
.ws8c{word-spacing:3.197376pt;}
.ws15f{word-spacing:3.203232pt;}
.ws3a{word-spacing:3.209088pt;}
.ws8d{word-spacing:3.214944pt;}
.wsc1{word-spacing:3.220800pt;}
.ws96{word-spacing:3.226656pt;}
.ws14a{word-spacing:3.232512pt;}
.ws1c0{word-spacing:3.238368pt;}
.wsa1{word-spacing:3.244224pt;}
.ws39{word-spacing:3.250080pt;}
.ws1bf{word-spacing:3.255936pt;}
.wsc2{word-spacing:3.267648pt;}
.ws37{word-spacing:3.525312pt;}
.ws13a{word-spacing:3.531168pt;}
.ws21f{word-spacing:3.537024pt;}
.ws38{word-spacing:3.542880pt;}
.ws1eb{word-spacing:3.548736pt;}
.ws95{word-spacing:3.554592pt;}
.ws5d{word-spacing:3.560448pt;}
.ws36{word-spacing:3.566304pt;}
.ws137{word-spacing:3.572160pt;}
.wsce{word-spacing:3.578016pt;}
.ws138{word-spacing:3.583872pt;}
.ws114{word-spacing:3.589728pt;}
.ws70{word-spacing:3.829824pt;}
.ws16c{word-spacing:3.835680pt;}
.ws112{word-spacing:3.853248pt;}
.ws71{word-spacing:3.859104pt;}
.ws16b{word-spacing:3.864960pt;}
.ws1f3{word-spacing:3.870816pt;}
.wsda{word-spacing:3.876672pt;}
.ws197{word-spacing:3.882528pt;}
.ws231{word-spacing:3.888384pt;}
.ws228{word-spacing:3.894240pt;}
.ws20e{word-spacing:3.900096pt;}
.wsd9{word-spacing:3.905952pt;}
.ws225{word-spacing:3.911808pt;}
.ws65{word-spacing:4.163616pt;}
.ws122{word-spacing:4.169472pt;}
.wsef{word-spacing:4.187040pt;}
.ws7a{word-spacing:4.192896pt;}
.ws117{word-spacing:4.198752pt;}
.wsd3{word-spacing:4.204608pt;}
.ws121{word-spacing:4.210464pt;}
.ws14b{word-spacing:4.222176pt;}
.ws66{word-spacing:4.228032pt;}
.wsd2{word-spacing:4.233888pt;}
.ws1ab{word-spacing:4.245600pt;}
.ws214{word-spacing:4.468128pt;}
.ws9d{word-spacing:4.485696pt;}
.ws6f{word-spacing:4.491552pt;}
.ws9e{word-spacing:4.497408pt;}
.ws1f9{word-spacing:4.503264pt;}
.ws136{word-spacing:4.509120pt;}
.ws1d2{word-spacing:4.514976pt;}
.ws8a{word-spacing:4.520832pt;}
.ws6e{word-spacing:4.526688pt;}
.ws1ac{word-spacing:4.532544pt;}
.ws8b{word-spacing:4.538400pt;}
.ws18c{word-spacing:4.544256pt;}
.ws1ad{word-spacing:4.550112pt;}
.ws146{word-spacing:4.555968pt;}
.ws18d{word-spacing:4.561824pt;}
.ws100{word-spacing:4.778496pt;}
.ws20f{word-spacing:4.801920pt;}
.ws34{word-spacing:4.807776pt;}
.ws177{word-spacing:4.813632pt;}
.ws218{word-spacing:4.819488pt;}
.wsff{word-spacing:4.825344pt;}
.ws86{word-spacing:4.831200pt;}
.wsf0{word-spacing:4.837056pt;}
.wsf1{word-spacing:4.842912pt;}
.ws19b{word-spacing:4.848768pt;}
.wsdf{word-spacing:4.860480pt;}
.ws1a4{word-spacing:4.872192pt;}
.ws1e5{word-spacing:4.878048pt;}
.ws87{word-spacing:4.883904pt;}
.wse0{word-spacing:4.895616pt;}
.ws13d{word-spacing:5.028704pt;}
.ws24{word-spacing:5.083008pt;}
.ws203{word-spacing:5.100576pt;}
.ws81{word-spacing:5.124000pt;}
.ws23{word-spacing:5.129856pt;}
.ws106{word-spacing:5.135712pt;}
.ws192{word-spacing:5.141568pt;}
.wsa0{word-spacing:5.147424pt;}
.ws1ca{word-spacing:5.153280pt;}
.ws243{word-spacing:5.159136pt;}
.ws9f{word-spacing:5.164992pt;}
.ws16a{word-spacing:5.170848pt;}
.ws1d7{word-spacing:5.182560pt;}
.ws1e4{word-spacing:5.194272pt;}
.ws169{word-spacing:5.200128pt;}
.ws13e{word-spacing:5.428512pt;}
.wsd0{word-spacing:5.440224pt;}
.ws166{word-spacing:5.446080pt;}
.ws49{word-spacing:5.457792pt;}
.ws10a{word-spacing:5.463648pt;}
.wsdb{word-spacing:5.469504pt;}
.wscf{word-spacing:5.475360pt;}
.ws198{word-spacing:5.481216pt;}
.ws1fa{word-spacing:5.487072pt;}
.wsd6{word-spacing:5.492928pt;}
.ws14d{word-spacing:5.498784pt;}
.ws157{word-spacing:5.504640pt;}
.ws217{word-spacing:5.510496pt;}
.ws14e{word-spacing:5.516352pt;}
.ws1ae{word-spacing:5.756448pt;}
.ws226{word-spacing:5.774016pt;}
.ws19{word-spacing:5.779872pt;}
.wsc9{word-spacing:5.785728pt;}
.wse3{word-spacing:5.797440pt;}
.ws1e6{word-spacing:5.803296pt;}
.ws140{word-spacing:5.815008pt;}
.ws17b{word-spacing:5.820864pt;}
.ws10{word-spacing:5.826720pt;}
.wsf{word-spacing:5.838432pt;}
.ws11{word-spacing:5.844288pt;}
.wsca{word-spacing:6.072672pt;}
.ws16{word-spacing:6.078528pt;}
.ws4e{word-spacing:6.096096pt;}
.ws15{word-spacing:6.101952pt;}
.ws1b{word-spacing:6.107808pt;}
.ws4f{word-spacing:6.113664pt;}
.ws188{word-spacing:6.119520pt;}
.ws23e{word-spacing:6.125376pt;}
.ws171{word-spacing:6.131232pt;}
.ws21b{word-spacing:6.137088pt;}
.ws14c{word-spacing:6.142944pt;}
.ws172{word-spacing:6.148800pt;}
.ws241{word-spacing:6.388896pt;}
.ws12c{word-spacing:6.406464pt;}
.ws1fd{word-spacing:6.412320pt;}
.ws204{word-spacing:6.418176pt;}
.ws60{word-spacing:6.424032pt;}
.ws7b{word-spacing:6.429888pt;}
.ws13c{word-spacing:6.435744pt;}
.ws61{word-spacing:6.441600pt;}
.ws162{word-spacing:6.447456pt;}
.ws18{word-spacing:6.453312pt;}
.ws163{word-spacing:6.459168pt;}
.ws13b{word-spacing:6.465024pt;}
.ws12d{word-spacing:6.470880pt;}
.ws21d{word-spacing:6.476736pt;}
.ws21c{word-spacing:6.488448pt;}
.ws240{word-spacing:6.716832pt;}
.ws3c{word-spacing:6.722688pt;}
.ws15b{word-spacing:6.728544pt;}
.wsed{word-spacing:6.740256pt;}
.wsec{word-spacing:6.746112pt;}
.wse1{word-spacing:6.751968pt;}
.ws22{word-spacing:6.757824pt;}
.ws120{word-spacing:6.763680pt;}
.wsd1{word-spacing:6.769536pt;}
.ws189{word-spacing:6.781248pt;}
.ws3d{word-spacing:7.056480pt;}
.ws31{word-spacing:7.062336pt;}
.ws1d8{word-spacing:7.079904pt;}
.ws113{word-spacing:7.085760pt;}
.ws1cb{word-spacing:7.091616pt;}
.ws151{word-spacing:7.103328pt;}
.ws19a{word-spacing:7.109184pt;}
.ws1da{word-spacing:7.115040pt;}
.wsa5{word-spacing:7.214400pt;}
.ws233{word-spacing:7.355136pt;}
.ws287{word-spacing:7.372704pt;}
.ws29{word-spacing:7.378560pt;}
.ws118{word-spacing:7.396128pt;}
.ws202{word-spacing:7.401984pt;}
.ws154{word-spacing:7.407840pt;}
.ws17e{word-spacing:7.413696pt;}
.ws153{word-spacing:7.419552pt;}
.ws168{word-spacing:7.659648pt;}
.ws194{word-spacing:7.694784pt;}
.wsbc{word-spacing:7.700640pt;}
.ws21{word-spacing:7.706496pt;}
.ws167{word-spacing:7.718208pt;}
.ws11c{word-spacing:7.729920pt;}
.ws20{word-spacing:7.741632pt;}
.ws135{word-spacing:7.747488pt;}
.ws18a{word-spacing:7.753344pt;}
.ws30{word-spacing:7.993440pt;}
.ws181{word-spacing:8.011008pt;}
.ws2f{word-spacing:8.022720pt;}
.wsee{word-spacing:8.028576pt;}
.ws76{word-spacing:8.034432pt;}
.ws50{word-spacing:8.040288pt;}
.ws51{word-spacing:8.046144pt;}
.ws1f1{word-spacing:8.052000pt;}
.ws77{word-spacing:8.069568pt;}
.ws1b8{word-spacing:8.286240pt;}
.wsa6{word-spacing:8.292096pt;}
.ws1ea{word-spacing:8.321376pt;}
.ws130{word-spacing:8.333088pt;}
.ws1d9{word-spacing:8.338944pt;}
.ws94{word-spacing:8.344800pt;}
.ws131{word-spacing:8.350656pt;}
.wsb5{word-spacing:8.356512pt;}
.ws1b9{word-spacing:8.362368pt;}
.ws10c{word-spacing:8.368224pt;}
.wsa4{word-spacing:8.391648pt;}
.wsb6{word-spacing:8.397504pt;}
.ws1e7{word-spacing:8.579040pt;}
.ws158{word-spacing:8.661024pt;}
.ws43{word-spacing:8.666880pt;}
.ws1e8{word-spacing:8.672736pt;}
.wsd8{word-spacing:8.696160pt;}
.ws1e9{word-spacing:8.702016pt;}
.wsc{word-spacing:8.707872pt;}
.wsd{word-spacing:8.719584pt;}
.ws17c{word-spacing:8.971392pt;}
.ws19e{word-spacing:8.977248pt;}
.ws123{word-spacing:8.983104pt;}
.ws17d{word-spacing:8.988960pt;}
.ws124{word-spacing:8.994816pt;}
.ws79{word-spacing:9.000672pt;}
.wscc{word-spacing:9.006528pt;}
.wscd{word-spacing:9.012384pt;}
.ws173{word-spacing:9.018240pt;}
.ws279{word-spacing:9.024096pt;}
.ws111{word-spacing:9.299328pt;}
.wsf8{word-spacing:9.328608pt;}
.wsf7{word-spacing:9.346176pt;}
.ws127{word-spacing:9.603840pt;}
.ws32{word-spacing:9.615552pt;}
.ws1a6{word-spacing:9.621408pt;}
.ws64{word-spacing:9.627264pt;}
.ws1e{word-spacing:9.633120pt;}
.ws1f{word-spacing:9.638976pt;}
.ws1ec{word-spacing:9.644832pt;}
.ws125{word-spacing:9.650688pt;}
.ws148{word-spacing:9.656544pt;}
.ws126{word-spacing:9.662400pt;}
.ws149{word-spacing:9.679968pt;}
.ws219{word-spacing:9.943488pt;}
.ws1bc{word-spacing:9.949344pt;}
.ws1ee{word-spacing:9.955200pt;}
.ws1ed{word-spacing:9.966912pt;}
.ws21a{word-spacing:9.972768pt;}
.ws98{word-spacing:10.230432pt;}
.ws285{word-spacing:10.236288pt;}
.ws286{word-spacing:10.242144pt;}
.ws206{word-spacing:10.253856pt;}
.ws205{word-spacing:10.259712pt;}
.wsde{word-spacing:10.265568pt;}
.ws23c{word-spacing:10.277280pt;}
.ws99{word-spacing:10.283136pt;}
.ws1b1{word-spacing:10.300704pt;}
.ws21e{word-spacing:10.581792pt;}
.ws183{word-spacing:10.587648pt;}
.ws17{word-spacing:10.599360pt;}
.ws207{word-spacing:10.605216pt;}
.ws62{word-spacing:10.611072pt;}
.ws1d4{word-spacing:10.622784pt;}
.wsfe{word-spacing:10.628640pt;}
.ws1d1{word-spacing:10.886304pt;}
.ws1d0{word-spacing:10.927296pt;}
.wsd5{word-spacing:10.933152pt;}
.wsd4{word-spacing:10.939008pt;}
.ws144{word-spacing:11.202528pt;}
.ws1b6{word-spacing:11.208384pt;}
.ws4d{word-spacing:11.214240pt;}
.ws143{word-spacing:11.220096pt;}
.ws16d{word-spacing:11.225952pt;}
.ws4c{word-spacing:11.231808pt;}
.ws16e{word-spacing:11.243520pt;}
.ws1e0{word-spacing:11.249376pt;}
.ws1de{word-spacing:11.255232pt;}
.ws7{word-spacing:11.530464pt;}
.ws3f{word-spacing:11.536320pt;}
.ws6{word-spacing:11.542176pt;}
.ws40{word-spacing:11.553888pt;}
.ws101{word-spacing:11.559744pt;}
.ws102{word-spacing:11.577312pt;}
.ws160{word-spacing:11.583168pt;}
.ws161{word-spacing:11.589024pt;}
.ws1be{word-spacing:11.594880pt;}
.ws175{word-spacing:11.864256pt;}
.wsfa{word-spacing:11.875968pt;}
.ws19f{word-spacing:11.893536pt;}
.ws1a0{word-spacing:11.905248pt;}
.ws174{word-spacing:11.922816pt;}
.ws142{word-spacing:12.162912pt;}
.ws141{word-spacing:12.192192pt;}
.wsdc{word-spacing:12.221472pt;}
.wsdd{word-spacing:12.244896pt;}
.ws227{word-spacing:12.490848pt;}
.ws15d{word-spacing:12.496704pt;}
.ws15e{word-spacing:12.520128pt;}
.ws23b{word-spacing:12.525984pt;}
.ws190{word-spacing:12.531840pt;}
.ws15c{word-spacing:12.537696pt;}
.ws78{word-spacing:12.549408pt;}
.ws133{word-spacing:12.836352pt;}
.ws132{word-spacing:12.848064pt;}
.ws178{word-spacing:12.853920pt;}
.ws1b3{word-spacing:12.871488pt;}
.ws1d6{word-spacing:13.164288pt;}
.ws1d5{word-spacing:13.176000pt;}
.ws234{word-spacing:13.457088pt;}
.ws235{word-spacing:13.462944pt;}
.ws20b{word-spacing:13.474656pt;}
.ws12b{word-spacing:13.773312pt;}
.ws186{word-spacing:13.779168pt;}
.ws42{word-spacing:13.790880pt;}
.ws185{word-spacing:13.796736pt;}
.ws12a{word-spacing:13.802592pt;}
.ws1e3{word-spacing:13.814304pt;}
.ws41{word-spacing:13.826016pt;}
.ws193{word-spacing:14.083680pt;}
.ws35{word-spacing:14.107104pt;}
.wsc8{word-spacing:14.112960pt;}
.ws1b5{word-spacing:14.136384pt;}
.ws1b4{word-spacing:14.142240pt;}
.ws23a{word-spacing:14.165664pt;}
.ws1aa{word-spacing:14.429184pt;}
.ws210{word-spacing:14.435040pt;}
.ws1a9{word-spacing:14.446752pt;}
.ws1ef{word-spacing:14.458464pt;}
.ws33{word-spacing:14.733696pt;}
.ws1df{word-spacing:14.745408pt;}
.ws165{word-spacing:14.751264pt;}
.wsf6{word-spacing:14.757120pt;}
.ws164{word-spacing:14.762976pt;}
.ws22e{word-spacing:14.768832pt;}
.wsf5{word-spacing:14.774688pt;}
.ws1f2{word-spacing:15.049920pt;}
.ws1c4{word-spacing:15.061632pt;}
.ws82{word-spacing:15.067488pt;}
.ws1c5{word-spacing:15.085056pt;}
.ws73{word-spacing:15.090912pt;}
.ws83{word-spacing:15.096768pt;}
.ws72{word-spacing:15.102624pt;}
.ws115{word-spacing:15.389568pt;}
.ws57{word-spacing:15.723360pt;}
.ws199{word-spacing:15.729216pt;}
.ws1cd{word-spacing:15.735072pt;}
.ws56{word-spacing:15.740928pt;}
.ws28c{word-spacing:16.010304pt;}
.ws1fb{word-spacing:16.022016pt;}
.ws17f{word-spacing:16.027872pt;}
.ws128{word-spacing:16.033728pt;}
.ws180{word-spacing:16.039584pt;}
.ws1b2{word-spacing:16.063008pt;}
.ws1fc{word-spacing:16.080576pt;}
.ws129{word-spacing:16.086432pt;}
.ws196{word-spacing:16.297248pt;}
.ws1a3{word-spacing:16.308960pt;}
.wsaf{word-spacing:16.326528pt;}
.ws10d{word-spacing:16.344096pt;}
.ws11f{word-spacing:16.349952pt;}
.wsd7{word-spacing:16.361664pt;}
.ws19d{word-spacing:16.367520pt;}
.ws1bd{word-spacing:16.379232pt;}
.ws11e{word-spacing:16.385088pt;}
.ws216{word-spacing:16.396800pt;}
.ws1e1{word-spacing:16.982400pt;}
.wsbd{word-spacing:16.994112pt;}
.ws1e2{word-spacing:17.011680pt;}
.wsbe{word-spacing:17.017536pt;}
.ws22c{word-spacing:17.327904pt;}
.ws182{word-spacing:17.942784pt;}
.ws9b{word-spacing:17.948640pt;}
.ws9a{word-spacing:17.954496pt;}
.ws187{word-spacing:17.966208pt;}
.ws74{word-spacing:18.253152pt;}
.ws75{word-spacing:18.259008pt;}
.ws195{word-spacing:18.300000pt;}
.ws236{word-spacing:18.581088pt;}
.ws237{word-spacing:18.586944pt;}
.ws191{word-spacing:18.879744pt;}
.ws222{word-spacing:19.518048pt;}
.ws221{word-spacing:19.570752pt;}
.wsb2{word-spacing:19.845984pt;}
.wsb1{word-spacing:19.857696pt;}
.ws12f{word-spacing:19.892832pt;}
.ws1c1{word-spacing:20.185632pt;}
.wse{word-spacing:20.197344pt;}
.ws155{word-spacing:20.203200pt;}
.ws156{word-spacing:20.261760pt;}
.ws1f4{word-spacing:20.812224pt;}
.ws1f5{word-spacing:20.841504pt;}
.ws22d{word-spacing:21.157728pt;}
.wsab{word-spacing:21.163584pt;}
.ws208{word-spacing:21.450528pt;}
.ws4b{word-spacing:21.456384pt;}
.ws238{word-spacing:21.473952pt;}
.ws4a{word-spacing:21.485664pt;}
.ws213{word-spacing:22.077120pt;}
.ws212{word-spacing:22.100544pt;}
.ws27{word-spacing:22.106400pt;}
.ws28{word-spacing:22.123968pt;}
.ws263{word-spacing:22.732992pt;}
.ws1ce{word-spacing:22.750560pt;}
.ws1cf{word-spacing:22.762272pt;}
.ws232{word-spacing:23.347872pt;}
.ws1b7{word-spacing:23.388864pt;}
.wse2{word-spacing:23.418144pt;}
.wsaa{word-spacing:24.390240pt;}
.ws1dc{word-spacing:24.647904pt;}
.wsa9{word-spacing:24.665472pt;}
.ws1db{word-spacing:24.677184pt;}
.ws92{word-spacing:25.614144pt;}
.ws85{word-spacing:25.649280pt;}
.ws53{word-spacing:26.299296pt;}
.ws52{word-spacing:26.311008pt;}
.ws3{word-spacing:26.863968pt;}
.ws4{word-spacing:26.893792pt;}
.ws108{word-spacing:26.920032pt;}
.ws107{word-spacing:26.931744pt;}
.ws179{word-spacing:27.880416pt;}
.ws229{word-spacing:28.846656pt;}
.ws22a{word-spacing:28.899360pt;}
.ws20a{word-spacing:29.198016pt;}
.ws223{word-spacing:29.771904pt;}
.ws224{word-spacing:29.807040pt;}
.ws176{word-spacing:31.762944pt;}
.ws260{word-spacing:37.127040pt;}
.ws25f{word-spacing:37.478400pt;}
.ws268{word-spacing:44.493888pt;}
.ws22b{word-spacing:53.131488pt;}
.ws288{word-spacing:59.553600pt;}
.ws26e{word-spacing:60.249600pt;}
.ws26f{word-spacing:60.643200pt;}
.ws28a{word-spacing:84.003200pt;}
.ws1f8{word-spacing:91.201344pt;}
.ws264{word-spacing:100.442112pt;}
.ws26a{word-spacing:103.317408pt;}
.ws269{word-spacing:103.323264pt;}
.ws26b{word-spacing:103.329120pt;}
.ws259{word-spacing:109.718016pt;}
.ws230{word-spacing:119.345280pt;}
.ws0{word-spacing:129.762997pt;}
.ws257{word-spacing:133.534368pt;}
.ws282{word-spacing:137.612800pt;}
.ws25a{word-spacing:139.156128pt;}
.ws274{word-spacing:158.439936pt;}
.ws261{word-spacing:175.451616pt;}
.ws258{word-spacing:176.915616pt;}
.ws266{word-spacing:178.332768pt;}
.ws253{word-spacing:182.677920pt;}
.ws252{word-spacing:182.683776pt;}
.ws26c{word-spacing:202.523904pt;}
.ws24e{word-spacing:384.352704pt;}
.ws250{word-spacing:406.429824pt;}
.ws254{word-spacing:452.206176pt;}
.ws24f{word-spacing:452.832768pt;}
.ws251{word-spacing:474.915744pt;}
.ws273{word-spacing:547.612128pt;}
.ws276{word-spacing:566.169792pt;}
.ws267{word-spacing:664.380768pt;}
.ws262{word-spacing:667.261920pt;}
.ws24c{word-spacing:1705.354816pt;}
.ws248{word-spacing:1741.196544pt;}
._8f{margin-left:-565.156704pt;}
._87{margin-left:-545.076480pt;}
._2b{margin-left:-452.159328pt;}
._2c{margin-left:-405.762240pt;}
._88{margin-left:-260.802816pt;}
._15{margin-left:-182.718912pt;}
._3c{margin-left:-176.956608pt;}
._89{margin-left:-158.398944pt;}
._16{margin-left:-149.714496pt;}
._4c{margin-left:-139.197120pt;}
._1c{margin-left:-124.756224pt;}
._3d{margin-left:-113.881632pt;}
._49{margin-left:-109.759008pt;}
._74{margin-left:-99.587136pt;}
._40{margin-left:-98.199264pt;}
._17{margin-left:-95.318112pt;}
._90{margin-left:-91.839648pt;}
._19{margin-left:-73.873440pt;}
._3e{margin-left:-68.761152pt;}
._1a{margin-left:-63.637152pt;}
._80{margin-left:-60.480000pt;}
._18{margin-left:-56.551392pt;}
._4d{margin-left:-39.323040pt;}
._75{margin-left:-31.317888pt;}
._4e{margin-left:-30.041280pt;}
._1d{margin-left:-27.154272pt;}
._76{margin-left:-25.192512pt;}
._27{margin-left:-19.541472pt;}
._4{margin-left:-17.281056pt;}
._81{margin-left:-10.881600pt;}
._4a{margin-left:-9.884928pt;}
._3{margin-left:-8.684448pt;}
._2{margin-left:-2.828448pt;}
._0{margin-left:-1.165344pt;}
._1{width:0.901824pt;}
._5{width:4.327552pt;}
._6{width:8.673216pt;}
._6d{width:10.880448pt;}
._6c{width:14.721984pt;}
._60{width:21.409536pt;}
._10{width:22.715424pt;}
._4b{width:28.553856pt;}
._12{width:29.760192pt;}
._85{width:31.629184pt;}
._1e{width:33.004416pt;}
._f{width:35.780160pt;}
._41{width:43.597920pt;}
._3a{width:51.515232pt;}
._42{width:55.116672pt;}
._3f{width:56.364000pt;}
._11{width:58.237920pt;}
._95{width:61.240800pt;}
._3b{width:63.350208pt;}
._45{width:64.316448pt;}
._5a{width:66.237216pt;}
._65{width:67.806624pt;}
._70{width:70.166592pt;}
._67{width:72.069792pt;}
._b{width:73.281984pt;}
._6f{width:74.283360pt;}
._73{width:79.102848pt;}
._14{width:80.320896pt;}
._13{width:83.196192pt;}
._59{width:85.661568pt;}
._28{width:87.400800pt;}
._5b{width:88.314336pt;}
._71{width:90.129696pt;}
._68{width:93.104544pt;}
._4f{width:94.158624pt;}
._44{width:95.956416pt;}
._61{width:97.256448pt;}
._6e{width:98.609184pt;}
._46{width:99.879936pt;}
._64{width:101.484480pt;}
._e{width:103.358400pt;}
._22{width:108.845472pt;}
._51{width:110.010816pt;}
._63{width:112.042848pt;}
._23{width:119.081760pt;}
._7a{width:123.262944pt;}
._66{width:124.879200pt;}
._62{width:125.804448pt;}
._29{width:126.717984pt;}
._7b{width:128.035584pt;}
._6a{width:130.372128pt;}
._58{width:132.825792pt;}
._47{width:138.605664pt;}
._7f{width:145.545024pt;}
._21{width:153.321792pt;}
._20{width:155.839872pt;}
._50{width:163.833312pt;}
._1b{width:166.884288pt;}
._43{width:170.239776pt;}
._72{width:172.166400pt;}
._7c{width:173.115072pt;}
._69{width:175.041696pt;}
._8b{width:181.085088pt;}
._1f{width:182.168448pt;}
._83{width:184.734400pt;}
._5e{width:185.769888pt;}
._78{width:197.189088pt;}
._52{width:203.929344pt;}
._86{width:208.734400pt;}
._25{width:211.553856pt;}
._8e{width:213.580032pt;}
._84{width:221.104000pt;}
._53{width:232.231392pt;}
._48{width:233.958912pt;}
._54{width:235.042272pt;}
._8{width:237.572064pt;}
._82{width:245.104000pt;}
._30{width:255.432864pt;}
._57{width:264.691200pt;}
._55{width:267.871008pt;}
._79{width:270.260256pt;}
._77{width:271.700832pt;}
._8d{width:278.476224pt;}
._39{width:282.376320pt;}
._7{width:298.585728pt;}
._32{width:302.081760pt;}
._34{width:304.066944pt;}
._56{width:306.842688pt;}
._38{width:315.503712pt;}
._5d{width:320.645280pt;}
._2e{width:321.916032pt;}
._2f{width:323.520576pt;}
._33{width:331.519872pt;}
._31{width:333.440640pt;}
._24{width:349.644192pt;}
._2d{width:351.037920pt;}
._26{width:364.811232pt;}
._6b{width:368.260416pt;}
._5f{width:371.779872pt;}
._37{width:374.912832pt;}
._35{width:389.084352pt;}
._7e{width:392.820480pt;}
._2a{width:393.798432pt;}
._7d{width:407.554176pt;}
._36{width:408.637536pt;}
._5c{width:424.319904pt;}
._9{width:444.160032pt;}
._c{width:466.243008pt;}
._d{width:479.120352pt;}
._8a{width:487.097216pt;}
._93{width:488.013504pt;}
._a{width:500.875392pt;}
._8c{width:505.226400pt;}
._94{width:684.212928pt;}
._92{width:702.971168pt;}
._91{width:733.246688pt;}
.fs4{font-size:37.440000pt;}
.fs5{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs3{font-size:53.440000pt;}
.fs0{font-size:58.560000pt;}
.fs6{font-size:64.000000pt;}
.fs1{font-size:74.560000pt;}
.fs7{font-size:76.800000pt;}
.y0{bottom:0.000000pt;}
.y231{bottom:0.240400pt;}
.y2a5{bottom:2.320400pt;}
.y2a8{bottom:2.400400pt;}
.y20{bottom:51.227840pt;}
.y1{bottom:69.147200pt;}
.ye8{bottom:98.594096pt;}
.y15a{bottom:99.636464pt;}
.y77{bottom:100.752243pt;}
.y3c{bottom:101.390264pt;}
.yde{bottom:103.791547pt;}
.y143{bottom:103.867227pt;}
.y125{bottom:103.868907pt;}
.y1f3{bottom:103.870067pt;}
.y4d{bottom:103.871747pt;}
.y88{bottom:103.872907pt;}
.y119{bottom:103.873280pt;}
.yca{bottom:103.874179pt;}
.y96{bottom:103.874744pt;}
.y1d3{bottom:103.877672pt;}
.y1c{bottom:119.162907pt;}
.y1f2{bottom:120.749987pt;}
.y1d2{bottom:120.757592pt;}
.y165{bottom:123.233216pt;}
.y19d{bottom:124.268987pt;}
.yaf{bottom:128.113891pt;}
.y100{bottom:131.317424pt;}
.ye7{bottom:133.393376pt;}
.y159{bottom:133.396304pt;}
.y76{bottom:134.431563pt;}
.y3b{bottom:135.150104pt;}
.y178{bottom:135.467227pt;}
.y12c{bottom:137.627443pt;}
.y124{bottom:137.628747pt;}
.y1f1{bottom:137.629907pt;}
.y142{bottom:137.630355pt;}
.y4c{bottom:137.631587pt;}
.ydd{bottom:137.631907pt;}
.y87{bottom:137.632747pt;}
.y118{bottom:137.633120pt;}
.yc9{bottom:137.634019pt;}
.y95{bottom:137.634584pt;}
.y1d1{bottom:137.637512pt;}
.y19c{bottom:141.148907pt;}
.y63{bottom:144.668040pt;}
.y1b{bottom:152.849547pt;}
.y1f0{bottom:154.509827pt;}
.y1d0{bottom:154.517432pt;}
.y164{bottom:156.993056pt;}
.y19b{bottom:158.028827pt;}
.yae{bottom:161.873731pt;}
.yff{bottom:164.996744pt;}
.y158{bottom:167.156144pt;}
.y75{bottom:168.110883pt;}
.ye6{bottom:168.194120pt;}
.y3a{bottom:168.829424pt;}
.y177{bottom:169.227227pt;}
.y12b{bottom:171.306763pt;}
.y123{bottom:171.308067pt;}
.y141{bottom:171.309675pt;}
.y4b{bottom:171.310907pt;}
.ydc{bottom:171.311227pt;}
.y86{bottom:171.312067pt;}
.y117{bottom:171.312440pt;}
.yc8{bottom:171.313339pt;}
.y94{bottom:171.313904pt;}
.y1ef{bottom:171.389747pt;}
.y1cf{bottom:171.397352pt;}
.y19a{bottom:174.908747pt;}
.y62{bottom:178.427880pt;}
.y1a{bottom:186.609387pt;}
.y1ee{bottom:188.189147pt;}
.y1ce{bottom:188.196752pt;}
.y163{bottom:190.672376pt;}
.y199{bottom:191.788667pt;}
.yad{bottom:195.633571pt;}
.yfe{bottom:198.756584pt;}
.y157{bottom:200.835464pt;}
.y74{bottom:201.870723pt;}
.y39{bottom:202.589264pt;}
.y176{bottom:202.987747pt;}
.ye5{bottom:202.993400pt;}
.y12a{bottom:205.066603pt;}
.y122{bottom:205.067907pt;}
.y1ed{bottom:205.069067pt;}
.y140{bottom:205.069515pt;}
.y4a{bottom:205.070747pt;}
.ydb{bottom:205.071067pt;}
.y85{bottom:205.071907pt;}
.y116{bottom:205.072280pt;}
.yc7{bottom:205.073179pt;}
.y93{bottom:205.073744pt;}
.y1cd{bottom:205.076672pt;}
.y198{bottom:208.588067pt;}
.y61{bottom:212.109067pt;}
.y19{bottom:220.369227pt;}
.y1ec{bottom:221.948987pt;}
.y1cc{bottom:221.956592pt;}
.y162{bottom:224.432216pt;}
.y197{bottom:225.467987pt;}
.yac{bottom:229.312891pt;}
.yfd{bottom:232.516424pt;}
.y156{bottom:234.595304pt;}
.y73{bottom:235.630563pt;}
.y38{bottom:236.349104pt;}
.ye4{bottom:236.672720pt;}
.y175{bottom:236.675648pt;}
.y129{bottom:238.826443pt;}
.y121{bottom:238.827747pt;}
.y1eb{bottom:238.828907pt;}
.y13f{bottom:238.829355pt;}
.y49{bottom:238.830587pt;}
.yda{bottom:238.830907pt;}
.y84{bottom:238.831747pt;}
.y115{bottom:238.832120pt;}
.yc6{bottom:238.833019pt;}
.y92{bottom:238.833584pt;}
.y1cb{bottom:238.836512pt;}
.y196{bottom:242.347907pt;}
.y60{bottom:245.868907pt;}
.y18{bottom:254.055867pt;}
.y1ea{bottom:255.708827pt;}
.y1ca{bottom:255.716432pt;}
.y161{bottom:258.192056pt;}
.y195{bottom:259.227827pt;}
.yab{bottom:263.072731pt;}
.yfc{bottom:266.195744pt;}
.y155{bottom:268.274624pt;}
.y72{bottom:269.390403pt;}
.y37{bottom:270.028424pt;}
.ye3{bottom:270.432560pt;}
.y174{bottom:270.435488pt;}
.y128{bottom:272.426707pt;}
.y120{bottom:272.508067pt;}
.y1e9{bottom:272.508227pt;}
.y13e{bottom:272.508675pt;}
.y48{bottom:272.509907pt;}
.yd9{bottom:272.510227pt;}
.y83{bottom:272.511067pt;}
.y114{bottom:272.511440pt;}
.yc5{bottom:272.512339pt;}
.y91{bottom:272.512904pt;}
.y1c9{bottom:272.515832pt;}
.y194{bottom:276.107747pt;}
.y5f{bottom:279.628747pt;}
.y17{bottom:287.815707pt;}
.y1e8{bottom:289.388147pt;}
.y1c8{bottom:289.395752pt;}
.y193{bottom:292.907147pt;}
.y160{bottom:292.912280pt;}
.yaa{bottom:296.752051pt;}
.yfb{bottom:299.955584pt;}
.y154{bottom:302.034464pt;}
.y71{bottom:303.150243pt;}
.y36{bottom:303.788264pt;}
.y173{bottom:304.195328pt;}
.ye2{bottom:305.233304pt;}
.y82{bottom:306.190387pt;}
.ye0{bottom:306.192224pt;}
.y127{bottom:306.267227pt;}
.y11f{bottom:306.267907pt;}
.y1e7{bottom:306.268067pt;}
.y13d{bottom:306.268515pt;}
.y47{bottom:306.269747pt;}
.yd8{bottom:306.270067pt;}
.y113{bottom:306.271280pt;}
.yc4{bottom:306.272179pt;}
.y90{bottom:306.272744pt;}
.y1c7{bottom:306.275672pt;}
.y192{bottom:309.787067pt;}
.y5e{bottom:313.308067pt;}
.y16{bottom:321.575547pt;}
.y1e6{bottom:323.147987pt;}
.y1c6{bottom:323.155592pt;}
.y15f{bottom:326.672120pt;}
.y191{bottom:326.673584pt;}
.ya9{bottom:330.511891pt;}
.yfa{bottom:333.715424pt;}
.y153{bottom:335.794304pt;}
.y35{bottom:337.467584pt;}
.y70{bottom:337.870467pt;}
.y172{bottom:337.874648pt;}
.y112{bottom:339.950600pt;}
.y11e{bottom:340.027747pt;}
.y1e5{bottom:340.027907pt;}
.y13c{bottom:340.028355pt;}
.y46{bottom:340.029587pt;}
.yd7{bottom:340.029907pt;}
.y81{bottom:340.030747pt;}
.yc3{bottom:340.032019pt;}
.y8f{bottom:340.032584pt;}
.y1c5{bottom:340.035512pt;}
.y190{bottom:343.553504pt;}
.y5d{bottom:347.067907pt;}
.y15{bottom:355.262187pt;}
.y1e4{bottom:356.907827pt;}
.y1c4{bottom:356.915432pt;}
.y15e{bottom:360.431960pt;}
.y18f{bottom:360.433424pt;}
.ya8{bottom:364.271731pt;}
.yf9{bottom:367.394744pt;}
.y152{bottom:369.554144pt;}
.y34{bottom:371.227424pt;}
.y6f{bottom:371.630307pt;}
.y171{bottom:371.634488pt;}
.y1e3{bottom:373.707227pt;}
.y13b{bottom:373.707675pt;}
.y45{bottom:373.708907pt;}
.y11d{bottom:373.708976pt;}
.yd6{bottom:373.709227pt;}
.y80{bottom:373.710067pt;}
.y111{bottom:373.710440pt;}
.yc2{bottom:373.711339pt;}
.y8e{bottom:373.711904pt;}
.y1c3{bottom:373.714832pt;}
.y18e{bottom:377.313344pt;}
.y5c{bottom:380.747227pt;}
.y14{bottom:389.022027pt;}
.y1e2{bottom:390.587147pt;}
.y1c2{bottom:390.594752pt;}
.y15d{bottom:394.111280pt;}
.y18d{bottom:394.112744pt;}
.ya7{bottom:399.071011pt;}
.yf8{bottom:401.154584pt;}
.y151{bottom:403.233464pt;}
.y33{bottom:404.987264pt;}
.y6e{bottom:405.309627pt;}
.y170{bottom:405.313808pt;}
.y110{bottom:407.389760pt;}
.ye1{bottom:407.391224pt;}
.y1e1{bottom:407.467067pt;}
.y13a{bottom:407.467515pt;}
.y44{bottom:407.468747pt;}
.y11c{bottom:407.468816pt;}
.yd5{bottom:407.469067pt;}
.y7f{bottom:407.469907pt;}
.yc1{bottom:407.471179pt;}
.y8d{bottom:407.471744pt;}
.y1c1{bottom:407.474672pt;}
.y18c{bottom:410.992664pt;}
.y5b{bottom:414.508547pt;}
.y13{bottom:422.708667pt;}
.y1e0{bottom:424.347827pt;}
.y1c0{bottom:424.354592pt;}
.y18b{bottom:427.872584pt;}
.ya6{bottom:433.791235pt;}
.yf7{bottom:434.833904pt;}
.y150{bottom:436.993304pt;}
.y32{bottom:438.988736pt;}
.y6d{bottom:439.069467pt;}
.y16f{bottom:439.073648pt;}
.y139{bottom:441.067779pt;}
.y11b{bottom:441.069080pt;}
.y43{bottom:441.148067pt;}
.yd4{bottom:441.148387pt;}
.y7e{bottom:441.149227pt;}
.y10f{bottom:441.149600pt;}
.yc0{bottom:441.150499pt;}
.y8c{bottom:441.151064pt;}
.y1df{bottom:441.227747pt;}
.y15c{bottom:441.231584pt;}
.y1bf{bottom:441.234512pt;}
.y18a{bottom:444.752504pt;}
.y5a{bottom:448.268387pt;}
.y12{bottom:456.468507pt;}
.y1de{bottom:458.027147pt;}
.y1be{bottom:458.033912pt;}
.y189{bottom:461.632424pt;}
.ya5{bottom:468.590515pt;}
.yf6{bottom:468.593744pt;}
.y14f{bottom:470.672624pt;}
.y31{bottom:472.829096pt;}
.y6c{bottom:472.829307pt;}
.y16e{bottom:473.872928pt;}
.y1dd{bottom:474.907067pt;}
.y42{bottom:474.907907pt;}
.y138{bottom:474.908139pt;}
.yd3{bottom:474.908227pt;}
.y7d{bottom:474.909067pt;}
.y10e{bottom:474.909440pt;}
.ybf{bottom:474.910339pt;}
.y8b{bottom:474.910904pt;}
.y1bd{bottom:474.913832pt;}
.y188{bottom:478.431824pt;}
.y59{bottom:481.947707pt;}
.y11{bottom:490.228347pt;}
.y1dc{bottom:491.788987pt;}
.y1bc{bottom:491.793752pt;}
.y187{bottom:495.311744pt;}
.yf5{bottom:502.353584pt;}
.ya4{bottom:503.391259pt;}
.y14e{bottom:504.351944pt;}
.y30{bottom:506.588936pt;}
.y6b{bottom:507.628587pt;}
.y16d{bottom:507.632768pt;}
.y126{bottom:508.587227pt;}
.y41{bottom:508.667747pt;}
.y137{bottom:508.667979pt;}
.yd2{bottom:508.668067pt;}
.y7c{bottom:508.668907pt;}
.y10d{bottom:508.669280pt;}
.ybe{bottom:508.670179pt;}
.y8a{bottom:508.670744pt;}
.y1bb{bottom:508.673672pt;}
.y186{bottom:512.191664pt;}
.y10{bottom:523.914987pt;}
.y1db{bottom:525.548827pt;}
.y1ba{bottom:525.553592pt;}
.y185{bottom:529.071584pt;}
.y58{bottom:529.146963pt;}
.yf4{bottom:536.032904pt;}
.ya3{bottom:537.151099pt;}
.y14d{bottom:538.192304pt;}
.y2f{bottom:540.268256pt;}
.y6a{bottom:541.307907pt;}
.y16c{bottom:541.312088pt;}
.y11a{bottom:542.269544pt;}
.y40{bottom:542.347227pt;}
.y136{bottom:542.347299pt;}
.yd1{bottom:542.347387pt;}
.y7b{bottom:542.348227pt;}
.y10c{bottom:542.348600pt;}
.ybd{bottom:542.349499pt;}
.y89{bottom:542.350064pt;}
.y1da{bottom:542.428747pt;}
.y1b9{bottom:542.433512pt;}
.y184{bottom:545.951504pt;}
.yf{bottom:557.674827pt;}
.y1d9{bottom:559.228147pt;}
.y1b8{bottom:559.232912pt;}
.y57{bottom:562.747227pt;}
.y183{bottom:562.750904pt;}
.yf3{bottom:569.792744pt;}
.ya2{bottom:571.871323pt;}
.y14c{bottom:571.871624pt;}
.y2e{bottom:574.028096pt;}
.y69{bottom:575.067747pt;}
.y16b{bottom:575.071928pt;}
.y10b{bottom:576.027920pt;}
.y135{bottom:576.107139pt;}
.yd0{bottom:576.107227pt;}
.y7a{bottom:576.108067pt;}
.ybc{bottom:576.109339pt;}
.y3f{bottom:576.109904pt;}
.y1b7{bottom:576.112832pt;}
.y182{bottom:579.630824pt;}
.y2bd{bottom:587.066859pt;}
.ye{bottom:591.434667pt;}
.y1d8{bottom:592.987987pt;}
.y1b6{bottom:592.992752pt;}
.y56{bottom:596.509040pt;}
.y181{bottom:596.510744pt;}
.yf2{bottom:604.592024pt;}
.ya1{bottom:605.631163pt;}
.y14b{bottom:605.631464pt;}
.y68{bottom:608.751248pt;}
.y2d{bottom:609.468608pt;}
.ydf{bottom:609.789224pt;}
.y134{bottom:609.866979pt;}
.ycf{bottom:609.867067pt;}
.y79{bottom:609.867907pt;}
.y10a{bottom:609.868280pt;}
.ybb{bottom:609.869179pt;}
.y3e{bottom:609.869744pt;}
.y1b5{bottom:609.872672pt;}
.y180{bottom:613.390664pt;}
.y2bc{bottom:616.586955pt;}
.y28d{bottom:617.788587pt;}
.y2b9{bottom:618.747299pt;}
.yd{bottom:625.121307pt;}
.y1d7{bottom:626.747827pt;}
.y1b4{bottom:626.752592pt;}
.y55{bottom:630.268880pt;}
.y17f{bottom:630.270584pt;}
.y216{bottom:631.066859pt;}
.y28c{bottom:634.587987pt;}
.y2cb{bottom:635.147067pt;}
.y206{bottom:635.308067pt;}
.y1f8{bottom:635.786795pt;}
.yf1{bottom:638.271344pt;}
.y14a{bottom:639.391304pt;}
.ya0{bottom:640.430443pt;}
.y67{bottom:642.511088pt;}
.y133{bottom:643.467243pt;}
.y78{bottom:643.547227pt;}
.y109{bottom:643.547600pt;}
.yba{bottom:643.548499pt;}
.y2c{bottom:643.549064pt;}
.y1b3{bottom:643.551992pt;}
.y254{bottom:645.706667pt;}
.y17e{bottom:647.150504pt;}
.y275{bottom:648.106667pt;}
.y2b8{bottom:648.186875pt;}
.y2b7{bottom:651.068027pt;}
.y28b{bottom:651.467907pt;}
.y2ce{bottom:653.626155pt;}
.y242{bottom:656.587611pt;}
.yc{bottom:658.881147pt;}
.y1d6{bottom:660.427147pt;}
.y1b2{bottom:660.431912pt;}
.y215{bottom:660.506435pt;}
.y54{bottom:663.948200pt;}
.y17d{bottom:663.949904pt;}
.y205{bottom:664.747643pt;}
.y1f7{bottom:665.226371pt;}
.y1f6{bottom:666.586427pt;}
.y28a{bottom:668.347827pt;}
.y22d{bottom:668.506667pt;}
.y245{bottom:669.146667pt;}
.yf0{bottom:672.031184pt;}
.y2cf{bottom:672.826515pt;}
.y149{bottom:673.070624pt;}
.y2b5{bottom:673.787843pt;}
.y9f{bottom:675.229723pt;}
.y66{bottom:676.270928pt;}
.y1d5{bottom:677.307067pt;}
.yce{bottom:677.307123pt;}
.y108{bottom:677.307440pt;}
.y132{bottom:677.307603pt;}
.yb9{bottom:677.308339pt;}
.y2b{bottom:677.308904pt;}
.y1b1{bottom:677.311832pt;}
.y253{bottom:678.427067pt;}
.y2a0{bottom:679.467611pt;}
.y2b6{bottom:680.507603pt;}
.y274{bottom:680.827067pt;}
.y17c{bottom:680.829824pt;}
.y2cd{bottom:683.065731pt;}
.y289{bottom:685.147227pt;}
.y2bb{bottom:687.946707pt;}
.y2de{bottom:688.507067pt;}
.y241{bottom:689.387067pt;}
.yb{bottom:692.640987pt;}
.y1d4{bottom:694.187067pt;}
.y1b0{bottom:694.191752pt;}
.y53{bottom:697.708040pt;}
.y17b{bottom:697.709744pt;}
.y252{bottom:697.947067pt;}
.y273{bottom:699.707067pt;}
.y22c{bottom:701.227067pt;}
.y244{bottom:701.867067pt;}
.y288{bottom:702.027147pt;}
.y2b4{bottom:703.227419pt;}
.yef{bottom:706.830464pt;}
.y240{bottom:708.187067pt;}
.y9e{bottom:709.949947pt;}
.y65{bottom:709.950248pt;}
.y1f5{bottom:710.346851pt;}
.ycd{bottom:710.987907pt;}
.y107{bottom:710.988224pt;}
.y131{bottom:710.988387pt;}
.yb8{bottom:710.989123pt;}
.y2a{bottom:710.989688pt;}
.y1af{bottom:711.071672pt;}
.y29f{bottom:712.267067pt;}
.y17a{bottom:714.589664pt;}
.y2db{bottom:715.149467pt;}
.y251{bottom:716.907067pt;}
.y2ba{bottom:717.386283pt;}
.y272{bottom:718.587067pt;}
.y287{bottom:718.907067pt;}
.y22b{bottom:720.747067pt;}
.y207{bottom:724.827200pt;}
.y1f9{bottom:726.187067pt;}
.ya{bottom:726.327627pt;}
.y23f{bottom:727.147200pt;}
.y1ae{bottom:727.871072pt;}
.y29e{bottom:729.307067pt;}
.y2da{bottom:730.749467pt;}
.y52{bottom:731.387360pt;}
.y179{bottom:731.469584pt;}
.y250{bottom:735.787067pt;}
.y286{bottom:736.427067pt;}
.y271{bottom:737.547067pt;}
.y22a{bottom:739.707067pt;}
.yee{bottom:740.509784pt;}
.y148{bottom:740.590304pt;}
.y16a{bottom:743.710088pt;}
.ycc{bottom:744.667227pt;}
.y15b{bottom:744.669008pt;}
.y106{bottom:744.748064pt;}
.y130{bottom:744.748227pt;}
.yb7{bottom:744.748963pt;}
.y9d{bottom:744.749227pt;}
.y29{bottom:744.749528pt;}
.y1ad{bottom:744.750992pt;}
.y23e{bottom:746.107067pt;}
.y2d9{bottom:748.429067pt;}
.y29d{bottom:750.026667pt;}
.y285{bottom:753.947067pt;}
.y24f{bottom:754.747067pt;}
.y208{bottom:756.187536pt;}
.y270{bottom:756.507067pt;}
.y229{bottom:758.587067pt;}
.y9{bottom:760.087467pt;}
.y1ac{bottom:761.630912pt;}
.y29c{bottom:763.787067pt;}
.y23d{bottom:764.987200pt;}
.y51{bottom:765.148904pt;}
.y2d8{bottom:766.108667pt;}
.y284{bottom:771.467067pt;}
.y2be{bottom:771.547067pt;}
.y24e{bottom:773.707067pt;}
.yed{bottom:774.189104pt;}
.y147{bottom:775.310528pt;}
.y26f{bottom:775.387067pt;}
.y169{bottom:777.469928pt;}
.y228{bottom:777.547067pt;}
.y29b{bottom:778.267467pt;}
.ycb{bottom:778.428848pt;}
.y105{bottom:778.507904pt;}
.y12f{bottom:778.508067pt;}
.yb6{bottom:778.508803pt;}
.y9c{bottom:778.509067pt;}
.y28{bottom:778.509368pt;}
.y1ab{bottom:778.510832pt;}
.y1fa{bottom:778.666739pt;}
.y2d7{bottom:783.868667pt;}
.y23c{bottom:783.947067pt;}
.y25d{bottom:784.266667pt;}
.y2bf{bottom:787.467067pt;}
.y209{bottom:787.547872pt;}
.y283{bottom:789.067067pt;}
.y29a{bottom:792.107067pt;}
.y24d{bottom:792.587067pt;}
.y8{bottom:793.774107pt;}
.y26e{bottom:794.347067pt;}
.y2dc{bottom:794.827200pt;}
.y1aa{bottom:795.390752pt;}
.y227{bottom:796.507067pt;}
.y50{bottom:798.908744pt;}
.y21f{bottom:800.987611pt;}
.y2d6{bottom:801.548267pt;}
.y23b{bottom:802.907067pt;}
.y203{bottom:803.307067pt;}
.y2c0{bottom:803.387067pt;}
.y299{bottom:806.507467pt;}
.y282{bottom:806.587067pt;}
.yec{bottom:808.029464pt;}
.y146{bottom:810.109808pt;}
.y168{bottom:811.149248pt;}
.y24c{bottom:811.547067pt;}
.y104{bottom:812.187224pt;}
.y12e{bottom:812.187387pt;}
.yb5{bottom:812.188123pt;}
.y9b{bottom:812.188387pt;}
.y27{bottom:812.188688pt;}
.y1a9{bottom:812.270672pt;}
.y26d{bottom:813.307067pt;}
.y2c8{bottom:814.267067pt;}
.y226{bottom:815.387067pt;}
.y25c{bottom:816.987067pt;}
.y20a{bottom:818.908208pt;}
.y2c1{bottom:819.227067pt;}
.y2d5{bottom:819.308267pt;}
.y214{bottom:820.267067pt;}
.y298{bottom:820.347067pt;}
.y23a{bottom:821.787067pt;}
.y281{bottom:824.107067pt;}
.y202{bottom:826.507067pt;}
.y7{bottom:827.533947pt;}
.y2b3{bottom:828.827067pt;}
.y1a8{bottom:829.070072pt;}
.y24b{bottom:830.507067pt;}
.y1fb{bottom:831.146411pt;}
.y26c{bottom:832.187067pt;}
.y4f{bottom:832.588064pt;}
.y21e{bottom:833.787067pt;}
.y225{bottom:834.347067pt;}
.y2c2{bottom:835.147067pt;}
.y25b{bottom:835.867067pt;}
.y2ac{bottom:836.746667pt;}
.y2d4{bottom:836.987867pt;}
.y297{bottom:840.107067pt;}
.y239{bottom:840.747067pt;}
.y213{bottom:841.147200pt;}
.y280{bottom:841.627067pt;}
.yeb{bottom:842.828744pt;}
.y145{bottom:843.869648pt;}
.y167{bottom:844.909088pt;}
.y103{bottom:845.947064pt;}
.y12d{bottom:845.947227pt;}
.yb4{bottom:845.947963pt;}
.y9a{bottom:845.948227pt;}
.y26{bottom:845.948528pt;}
.y1a7{bottom:845.949992pt;}
.y2b2{bottom:847.707067pt;}
.y24a{bottom:849.387067pt;}
.y201{bottom:849.627067pt;}
.y20b{bottom:850.268544pt;}
.y2c3{bottom:851.067067pt;}
.y26b{bottom:851.147200pt;}
.y21d{bottom:852.587067pt;}
.y224{bottom:853.307067pt;}
.y296{bottom:853.947067pt;}
.y2d3{bottom:854.667467pt;}
.y25a{bottom:854.827067pt;}
.y27f{bottom:859.147200pt;}
.y238{bottom:859.707067pt;}
.y6{bottom:861.293787pt;}
.y212{bottom:862.027067pt;}
.y1a6{bottom:862.829912pt;}
.y2b1{bottom:866.587067pt;}
.y2c4{bottom:866.907067pt;}
.y249{bottom:868.347067pt;}
.y2ab{bottom:869.467067pt;}
.y26a{bottom:870.107067pt;}
.y21c{bottom:871.547067pt;}
.y223{bottom:872.187067pt;}
.y2d2{bottom:872.427467pt;}
.y200{bottom:872.827067pt;}
.y259{bottom:873.707067pt;}
.y295{bottom:873.707467pt;}
.y27e{bottom:876.667067pt;}
.y27d{bottom:877.387667pt;}
.yea{bottom:877.548968pt;}
.y237{bottom:878.587067pt;}
.y166{bottom:878.588408pt;}
.y21b{bottom:879.627067pt;}
.y64{bottom:879.627848pt;}
.y102{bottom:879.706904pt;}
.yb3{bottom:879.707803pt;}
.y99{bottom:879.708067pt;}
.y25{bottom:879.708368pt;}
.y1a5{bottom:879.709832pt;}
.y4e{bottom:879.787424pt;}
.y20c{bottom:881.628880pt;}
.y2c5{bottom:882.827067pt;}
.y211{bottom:882.907067pt;}
.y1fc{bottom:883.626083pt;}
.y2b0{bottom:885.547067pt;}
.y2aa{bottom:886.026667pt;}
.y248{bottom:887.307067pt;}
.y294{bottom:887.547067pt;}
.y2a9{bottom:888.347067pt;}
.y269{bottom:888.987067pt;}
.y2d1{bottom:890.107067pt;}
.y264{bottom:890.746667pt;}
.y222{bottom:891.147067pt;}
.y258{bottom:892.667067pt;}
.y27c{bottom:894.187067pt;}
.y5{bottom:894.987733pt;}
.y1ff{bottom:895.947067pt;}
.y1a4{bottom:896.589752pt;}
.y236{bottom:897.547067pt;}
.y2c6{bottom:898.747067pt;}
.y293{bottom:902.026667pt;}
.y210{bottom:903.787067pt;}
.y2af{bottom:904.507067pt;}
.y247{bottom:905.547067pt;}
.y2a7{bottom:906.906667pt;}
.y2d0{bottom:907.867067pt;}
.y268{bottom:907.947067pt;}
.y2a6{bottom:909.307067pt;}
.y21a{bottom:909.387067pt;}
.y221{bottom:910.107067pt;}
.y257{bottom:911.627067pt;}
.y27b{bottom:911.787067pt;}
.ye9{bottom:912.348248pt;}
.y20d{bottom:912.989216pt;}
.y101{bottom:913.307168pt;}
.yb2{bottom:913.387123pt;}
.y98{bottom:913.387387pt;}
.y24{bottom:913.387688pt;}
.y1a3{bottom:913.389152pt;}
.y2c7{bottom:914.587067pt;}
.y292{bottom:915.787067pt;}
.y235{bottom:916.507067pt;}
.y1fe{bottom:919.147067pt;}
.y2ae{bottom:923.387067pt;}
.y263{bottom:923.467067pt;}
.y20f{bottom:924.667067pt;}
.y267{bottom:926.827067pt;}
.y2a4{bottom:927.866667pt;}
.y219{bottom:928.347067pt;}
.y4{bottom:928.667067pt;}
.y27a{bottom:929.307067pt;}
.y2a3{bottom:930.187067pt;}
.y291{bottom:930.266667pt;}
.y1a2{bottom:930.269072pt;}
.y256{bottom:930.507067pt;}
.y278{bottom:930.587139pt;}
.y2dd{bottom:932.987067pt;}
.y234{bottom:935.307067pt;}
.y1fd{bottom:936.105755pt;}
.y218{bottom:936.427067pt;}
.y262{bottom:942.347067pt;}
.y2ca{bottom:942.826427pt;}
.y246{bottom:943.867067pt;}
.y290{bottom:944.027067pt;}
.y266{bottom:944.347067pt;}
.y20e{bottom:944.349552pt;}
.y144{bottom:946.108088pt;}
.y279{bottom:946.827067pt;}
.y2cc{bottom:947.146443pt;}
.yb1{bottom:947.146963pt;}
.y97{bottom:947.147227pt;}
.y23{bottom:947.147528pt;}
.y1a1{bottom:947.148992pt;}
.y243{bottom:947.227067pt;}
.y230{bottom:949.706667pt;}
.y22f{bottom:949.946555pt;}
.y232{bottom:949.947067pt;}
.y255{bottom:950.107667pt;}
.y2a2{bottom:956.827067pt;}
.y28f{bottom:958.507467pt;}
.y261{bottom:961.307067pt;}
.y25f{bottom:961.627067pt;}
.y204{bottom:962.347067pt;}
.y1a0{bottom:964.028912pt;}
.y277{bottom:964.346979pt;}
.y220{bottom:964.747595pt;}
.y217{bottom:966.107651pt;}
.y2c9{bottom:966.187067pt;}
.y22e{bottom:966.826475pt;}
.y233{bottom:966.826987pt;}
.y3{bottom:967.795067pt;}
.y28e{bottom:972.347067pt;}
.y2a1{bottom:977.786499pt;}
.y2ad{bottom:980.106939pt;}
.y260{bottom:980.107139pt;}
.y265{bottom:980.906283pt;}
.yb0{bottom:980.906803pt;}
.y22{bottom:980.907368pt;}
.y19f{bottom:980.908832pt;}
.y276{bottom:997.787667pt;}
.y19e{bottom:997.788752pt;}
.y2{bottom:1010.667067pt;}
.y3d{bottom:1014.507632pt;}
.y25e{bottom:1014.587067pt;}
.y21{bottom:1014.588152pt;}
.y1f4{bottom:1014.667067pt;}
.y1f{bottom:1074.487600pt;}
.y1e{bottom:1088.887600pt;}
.y1d{bottom:1103.288000pt;}
.h1e{height:13.600000pt;}
.h24{height:15.360000pt;}
.h25{height:15.440000pt;}
.h1a{height:29.571719pt;}
.h21{height:33.351562pt;}
.h22{height:33.353163pt;}
.h1c{height:34.361777pt;}
.h28{height:34.453125pt;}
.h29{height:38.357812pt;}
.h7{height:39.030469pt;}
.h4{height:39.688125pt;}
.h5{height:40.688906pt;}
.h1f{height:41.011274pt;}
.h6{height:41.226562pt;}
.h1{height:42.032812pt;}
.h16{height:42.318750pt;}
.h20{height:45.128349pt;}
.h26{height:45.937500pt;}
.h23{height:46.814375pt;}
.h17{height:49.979893pt;}
.h15{height:50.001067pt;}
.h8{height:50.002869pt;}
.h14{height:50.004139pt;}
.hb{height:50.006325pt;}
.h12{height:50.006581pt;}
.he{height:50.006752pt;}
.h10{height:50.006869pt;}
.ha{height:50.007403pt;}
.hd{height:50.008299pt;}
.h13{height:50.010219pt;}
.h18{height:50.011499pt;}
.h11{height:50.013013pt;}
.h9{height:50.013579pt;}
.h19{height:50.014219pt;}
.hc{height:50.014635pt;}
.hf{height:50.296406pt;}
.h2{height:50.531875pt;}
.h3{height:51.806094pt;}
.h2a{height:53.517187pt;}
.h1b{height:54.216967pt;}
.h27{height:55.125000pt;}
.h1d{height:84.210698pt;}
.h0{height:1122.666667pt;}
.w2{width:94.000000pt;}
.w3{width:136.000000pt;}
.w4{width:185.840000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x23{left:48.480000pt;}
.x3{left:61.849333pt;}
.x17{left:65.520000pt;}
.x2a{left:67.520000pt;}
.x25{left:84.320000pt;}
.x27{left:100.960000pt;}
.x2{left:113.440000pt;}
.x14{left:117.040000pt;}
.x1e{left:120.880000pt;}
.x4{left:137.439048pt;}
.x9{left:141.438744pt;}
.x39{left:142.800000pt;}
.x32{left:145.280000pt;}
.xf{left:146.479568pt;}
.x36{left:150.320000pt;}
.xe{left:151.840000pt;}
.x31{left:153.600000pt;}
.x11{left:156.000000pt;}
.x37{left:160.080800pt;}
.x7{left:161.446320pt;}
.xa{left:165.439560pt;}
.x24{left:169.280000pt;}
.x5{left:185.437752pt;}
.x38{left:186.561200pt;}
.x22{left:193.680400pt;}
.x33{left:203.440000pt;}
.x26{left:205.120000pt;}
.x6{left:209.440632pt;}
.x28{left:221.840000pt;}
.xb{left:233.439432pt;}
.x35{left:236.560000pt;}
.x15{left:240.720000pt;}
.x1a{left:242.719984pt;}
.x1d{left:254.559376pt;}
.x1b{left:259.519384pt;}
.x20{left:277.040000pt;}
.x1f{left:279.520000pt;}
.x34{left:296.880640pt;}
.x3a{left:304.400000pt;}
.x21{left:305.440672pt;}
.x29{left:380.000000pt;}
.x1c{left:385.200568pt;}
.x13{left:396.719608pt;}
.x2b{left:451.200000pt;}
.x16{left:463.599520pt;}
.x18{left:535.600000pt;}
.x2e{left:571.600264pt;}
.x19{left:580.319344pt;}
.x30{left:593.440216pt;}
.x10{left:595.200000pt;}
.x2d{left:610.320136pt;}
.x2f{left:611.359576pt;}
.x2c{left:623.359984pt;}
.x12{left:645.359512pt;}
.xd{left:647.359344pt;}
.x8{left:665.520000pt;}
.x1{left:672.960000pt;}
.xc{left:682.319656pt;}
}




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